]>
Commit | Line | Data |
---|---|---|
b534c6d3 | 1 | /* tc-i386.c -- Assemble code for the Intel 80386 |
b3adc24a | 2 | Copyright (C) 1989-2020 Free Software Foundation, Inc. |
252b5132 RH |
3 | |
4 | This file is part of GAS, the GNU Assembler. | |
5 | ||
6 | GAS is free software; you can redistribute it and/or modify | |
7 | it under the terms of the GNU General Public License as published by | |
ec2655a6 | 8 | the Free Software Foundation; either version 3, or (at your option) |
252b5132 RH |
9 | any later version. |
10 | ||
11 | GAS is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
17 | along with GAS; see the file COPYING. If not, write to the Free | |
4b4da160 NC |
18 | Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA |
19 | 02110-1301, USA. */ | |
252b5132 | 20 | |
47926f60 KH |
21 | /* Intel 80386 machine specific gas. |
22 | Written by Eliot Dresselhaus ([email protected]). | |
3e73aa7c | 23 | x86_64 support by Jan Hubicka ([email protected]) |
0f10071e | 24 | VIA PadLock support by Michal Ludvig ([email protected]) |
47926f60 KH |
25 | Bugs & suggestions are completely welcome. This is free software. |
26 | Please help us make it better. */ | |
252b5132 | 27 | |
252b5132 | 28 | #include "as.h" |
3882b010 | 29 | #include "safe-ctype.h" |
252b5132 | 30 | #include "subsegs.h" |
316e2c05 | 31 | #include "dwarf2dbg.h" |
54cfded0 | 32 | #include "dw2gencfi.h" |
d2b2c203 | 33 | #include "elf/x86-64.h" |
40fb9820 | 34 | #include "opcodes/i386-init.h" |
252b5132 | 35 | |
41fd2579 L |
36 | #ifdef HAVE_LIMITS_H |
37 | #include <limits.h> | |
38 | #else | |
39 | #ifdef HAVE_SYS_PARAM_H | |
40 | #include <sys/param.h> | |
41 | #endif | |
42 | #ifndef INT_MAX | |
43 | #define INT_MAX (int) (((unsigned) (-1)) >> 1) | |
44 | #endif | |
45 | #endif | |
46 | ||
c3332e24 | 47 | #ifndef INFER_ADDR_PREFIX |
eecb386c | 48 | #define INFER_ADDR_PREFIX 1 |
c3332e24 AM |
49 | #endif |
50 | ||
29b0f896 AM |
51 | #ifndef DEFAULT_ARCH |
52 | #define DEFAULT_ARCH "i386" | |
246fcdee | 53 | #endif |
252b5132 | 54 | |
edde18a5 AM |
55 | #ifndef INLINE |
56 | #if __GNUC__ >= 2 | |
57 | #define INLINE __inline__ | |
58 | #else | |
59 | #define INLINE | |
60 | #endif | |
61 | #endif | |
62 | ||
6305a203 L |
63 | /* Prefixes will be emitted in the order defined below. |
64 | WAIT_PREFIX must be the first prefix since FWAIT is really is an | |
65 | instruction, and so must come before any prefixes. | |
66 | The preferred prefix order is SEG_PREFIX, ADDR_PREFIX, DATA_PREFIX, | |
42164a71 | 67 | REP_PREFIX/HLE_PREFIX, LOCK_PREFIX. */ |
6305a203 L |
68 | #define WAIT_PREFIX 0 |
69 | #define SEG_PREFIX 1 | |
70 | #define ADDR_PREFIX 2 | |
71 | #define DATA_PREFIX 3 | |
c32fa91d | 72 | #define REP_PREFIX 4 |
42164a71 | 73 | #define HLE_PREFIX REP_PREFIX |
7e8b059b | 74 | #define BND_PREFIX REP_PREFIX |
c32fa91d | 75 | #define LOCK_PREFIX 5 |
4e9ac44a L |
76 | #define REX_PREFIX 6 /* must come last. */ |
77 | #define MAX_PREFIXES 7 /* max prefixes per opcode */ | |
6305a203 L |
78 | |
79 | /* we define the syntax here (modulo base,index,scale syntax) */ | |
80 | #define REGISTER_PREFIX '%' | |
81 | #define IMMEDIATE_PREFIX '$' | |
82 | #define ABSOLUTE_PREFIX '*' | |
83 | ||
84 | /* these are the instruction mnemonic suffixes in AT&T syntax or | |
85 | memory operand size in Intel syntax. */ | |
86 | #define WORD_MNEM_SUFFIX 'w' | |
87 | #define BYTE_MNEM_SUFFIX 'b' | |
88 | #define SHORT_MNEM_SUFFIX 's' | |
89 | #define LONG_MNEM_SUFFIX 'l' | |
90 | #define QWORD_MNEM_SUFFIX 'q' | |
6305a203 L |
91 | /* Intel Syntax. Use a non-ascii letter since since it never appears |
92 | in instructions. */ | |
93 | #define LONG_DOUBLE_MNEM_SUFFIX '\1' | |
94 | ||
95 | #define END_OF_INSN '\0' | |
96 | ||
79dec6b7 JB |
97 | /* This matches the C -> StaticRounding alias in the opcode table. */ |
98 | #define commutative staticrounding | |
99 | ||
6305a203 L |
100 | /* |
101 | 'templates' is for grouping together 'template' structures for opcodes | |
102 | of the same name. This is only used for storing the insns in the grand | |
103 | ole hash table of insns. | |
104 | The templates themselves start at START and range up to (but not including) | |
105 | END. | |
106 | */ | |
107 | typedef struct | |
108 | { | |
d3ce72d0 NC |
109 | const insn_template *start; |
110 | const insn_template *end; | |
6305a203 L |
111 | } |
112 | templates; | |
113 | ||
114 | /* 386 operand encoding bytes: see 386 book for details of this. */ | |
115 | typedef struct | |
116 | { | |
117 | unsigned int regmem; /* codes register or memory operand */ | |
118 | unsigned int reg; /* codes register operand (or extended opcode) */ | |
119 | unsigned int mode; /* how to interpret regmem & reg */ | |
120 | } | |
121 | modrm_byte; | |
122 | ||
123 | /* x86-64 extension prefix. */ | |
124 | typedef int rex_byte; | |
125 | ||
6305a203 L |
126 | /* 386 opcode byte to code indirect addressing. */ |
127 | typedef struct | |
128 | { | |
129 | unsigned base; | |
130 | unsigned index; | |
131 | unsigned scale; | |
132 | } | |
133 | sib_byte; | |
134 | ||
6305a203 L |
135 | /* x86 arch names, types and features */ |
136 | typedef struct | |
137 | { | |
138 | const char *name; /* arch name */ | |
8a2c8fef | 139 | unsigned int len; /* arch string length */ |
6305a203 L |
140 | enum processor_type type; /* arch type */ |
141 | i386_cpu_flags flags; /* cpu feature flags */ | |
8a2c8fef | 142 | unsigned int skip; /* show_arch should skip this. */ |
6305a203 L |
143 | } |
144 | arch_entry; | |
145 | ||
293f5f65 L |
146 | /* Used to turn off indicated flags. */ |
147 | typedef struct | |
148 | { | |
149 | const char *name; /* arch name */ | |
150 | unsigned int len; /* arch string length */ | |
151 | i386_cpu_flags flags; /* cpu feature flags */ | |
152 | } | |
153 | noarch_entry; | |
154 | ||
78f12dd3 | 155 | static void update_code_flag (int, int); |
e3bb37b5 L |
156 | static void set_code_flag (int); |
157 | static void set_16bit_gcc_code_flag (int); | |
158 | static void set_intel_syntax (int); | |
1efbbeb4 | 159 | static void set_intel_mnemonic (int); |
db51cc60 | 160 | static void set_allow_index_reg (int); |
7bab8ab5 | 161 | static void set_check (int); |
e3bb37b5 | 162 | static void set_cpu_arch (int); |
6482c264 | 163 | #ifdef TE_PE |
e3bb37b5 | 164 | static void pe_directive_secrel (int); |
6482c264 | 165 | #endif |
e3bb37b5 L |
166 | static void signed_cons (int); |
167 | static char *output_invalid (int c); | |
ee86248c JB |
168 | static int i386_finalize_immediate (segT, expressionS *, i386_operand_type, |
169 | const char *); | |
170 | static int i386_finalize_displacement (segT, expressionS *, i386_operand_type, | |
171 | const char *); | |
a7619375 | 172 | static int i386_att_operand (char *); |
e3bb37b5 | 173 | static int i386_intel_operand (char *, int); |
ee86248c JB |
174 | static int i386_intel_simplify (expressionS *); |
175 | static int i386_intel_parse_name (const char *, expressionS *); | |
e3bb37b5 L |
176 | static const reg_entry *parse_register (char *, char **); |
177 | static char *parse_insn (char *, char *); | |
178 | static char *parse_operands (char *, const char *); | |
179 | static void swap_operands (void); | |
4d456e3d | 180 | static void swap_2_operands (int, int); |
48bcea9f | 181 | static enum flag_code i386_addressing_mode (void); |
e3bb37b5 L |
182 | static void optimize_imm (void); |
183 | static void optimize_disp (void); | |
83b16ac6 | 184 | static const insn_template *match_template (char); |
e3bb37b5 L |
185 | static int check_string (void); |
186 | static int process_suffix (void); | |
187 | static int check_byte_reg (void); | |
188 | static int check_long_reg (void); | |
189 | static int check_qword_reg (void); | |
190 | static int check_word_reg (void); | |
191 | static int finalize_imm (void); | |
192 | static int process_operands (void); | |
193 | static const seg_entry *build_modrm_byte (void); | |
194 | static void output_insn (void); | |
195 | static void output_imm (fragS *, offsetT); | |
196 | static void output_disp (fragS *, offsetT); | |
29b0f896 | 197 | #ifndef I386COFF |
e3bb37b5 | 198 | static void s_bss (int); |
252b5132 | 199 | #endif |
17d4e2a2 L |
200 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
201 | static void handle_large_common (int small ATTRIBUTE_UNUSED); | |
b4a3a7b4 L |
202 | |
203 | /* GNU_PROPERTY_X86_ISA_1_USED. */ | |
204 | static unsigned int x86_isa_1_used; | |
205 | /* GNU_PROPERTY_X86_FEATURE_2_USED. */ | |
206 | static unsigned int x86_feature_2_used; | |
207 | /* Generate x86 used ISA and feature properties. */ | |
208 | static unsigned int x86_used_note = DEFAULT_X86_USED_NOTE; | |
17d4e2a2 | 209 | #endif |
252b5132 | 210 | |
a847613f | 211 | static const char *default_arch = DEFAULT_ARCH; |
3e73aa7c | 212 | |
8a6fb3f9 JB |
213 | /* parse_register() returns this when a register alias cannot be used. */ |
214 | static const reg_entry bad_reg = { "<bad>", OPERAND_TYPE_NONE, 0, 0, | |
215 | { Dw2Inval, Dw2Inval } }; | |
216 | ||
43234a1e L |
217 | /* This struct describes rounding control and SAE in the instruction. */ |
218 | struct RC_Operation | |
219 | { | |
220 | enum rc_type | |
221 | { | |
222 | rne = 0, | |
223 | rd, | |
224 | ru, | |
225 | rz, | |
226 | saeonly | |
227 | } type; | |
228 | int operand; | |
229 | }; | |
230 | ||
231 | static struct RC_Operation rc_op; | |
232 | ||
233 | /* The struct describes masking, applied to OPERAND in the instruction. | |
234 | MASK is a pointer to the corresponding mask register. ZEROING tells | |
235 | whether merging or zeroing mask is used. */ | |
236 | struct Mask_Operation | |
237 | { | |
238 | const reg_entry *mask; | |
239 | unsigned int zeroing; | |
240 | /* The operand where this operation is associated. */ | |
241 | int operand; | |
242 | }; | |
243 | ||
244 | static struct Mask_Operation mask_op; | |
245 | ||
246 | /* The struct describes broadcasting, applied to OPERAND. FACTOR is | |
247 | broadcast factor. */ | |
248 | struct Broadcast_Operation | |
249 | { | |
8e6e0792 | 250 | /* Type of broadcast: {1to2}, {1to4}, {1to8}, or {1to16}. */ |
43234a1e L |
251 | int type; |
252 | ||
253 | /* Index of broadcasted operand. */ | |
254 | int operand; | |
4a1b91ea L |
255 | |
256 | /* Number of bytes to broadcast. */ | |
257 | int bytes; | |
43234a1e L |
258 | }; |
259 | ||
260 | static struct Broadcast_Operation broadcast_op; | |
261 | ||
c0f3af97 L |
262 | /* VEX prefix. */ |
263 | typedef struct | |
264 | { | |
43234a1e L |
265 | /* VEX prefix is either 2 byte or 3 byte. EVEX is 4 byte. */ |
266 | unsigned char bytes[4]; | |
c0f3af97 L |
267 | unsigned int length; |
268 | /* Destination or source register specifier. */ | |
269 | const reg_entry *register_specifier; | |
270 | } vex_prefix; | |
271 | ||
252b5132 | 272 | /* 'md_assemble ()' gathers together information and puts it into a |
47926f60 | 273 | i386_insn. */ |
252b5132 | 274 | |
520dc8e8 AM |
275 | union i386_op |
276 | { | |
277 | expressionS *disps; | |
278 | expressionS *imms; | |
279 | const reg_entry *regs; | |
280 | }; | |
281 | ||
a65babc9 L |
282 | enum i386_error |
283 | { | |
86e026a4 | 284 | operand_size_mismatch, |
a65babc9 L |
285 | operand_type_mismatch, |
286 | register_type_mismatch, | |
287 | number_of_operands_mismatch, | |
288 | invalid_instruction_suffix, | |
289 | bad_imm4, | |
a65babc9 L |
290 | unsupported_with_intel_mnemonic, |
291 | unsupported_syntax, | |
6c30d220 | 292 | unsupported, |
260cd341 | 293 | invalid_sib_address, |
6c30d220 | 294 | invalid_vsib_address, |
7bab8ab5 | 295 | invalid_vector_register_set, |
260cd341 | 296 | invalid_tmm_register_set, |
43234a1e L |
297 | unsupported_vector_index_register, |
298 | unsupported_broadcast, | |
43234a1e L |
299 | broadcast_needed, |
300 | unsupported_masking, | |
301 | mask_not_on_destination, | |
302 | no_default_mask, | |
303 | unsupported_rc_sae, | |
304 | rc_sae_operand_not_last_imm, | |
305 | invalid_register_operand, | |
a65babc9 L |
306 | }; |
307 | ||
252b5132 RH |
308 | struct _i386_insn |
309 | { | |
47926f60 | 310 | /* TM holds the template for the insn were currently assembling. */ |
d3ce72d0 | 311 | insn_template tm; |
252b5132 | 312 | |
7d5e4556 L |
313 | /* SUFFIX holds the instruction size suffix for byte, word, dword |
314 | or qword, if given. */ | |
252b5132 RH |
315 | char suffix; |
316 | ||
47926f60 | 317 | /* OPERANDS gives the number of given operands. */ |
252b5132 RH |
318 | unsigned int operands; |
319 | ||
320 | /* REG_OPERANDS, DISP_OPERANDS, MEM_OPERANDS, IMM_OPERANDS give the number | |
321 | of given register, displacement, memory operands and immediate | |
47926f60 | 322 | operands. */ |
252b5132 RH |
323 | unsigned int reg_operands, disp_operands, mem_operands, imm_operands; |
324 | ||
325 | /* TYPES [i] is the type (see above #defines) which tells us how to | |
520dc8e8 | 326 | use OP[i] for the corresponding operand. */ |
40fb9820 | 327 | i386_operand_type types[MAX_OPERANDS]; |
252b5132 | 328 | |
520dc8e8 AM |
329 | /* Displacement expression, immediate expression, or register for each |
330 | operand. */ | |
331 | union i386_op op[MAX_OPERANDS]; | |
252b5132 | 332 | |
3e73aa7c JH |
333 | /* Flags for operands. */ |
334 | unsigned int flags[MAX_OPERANDS]; | |
335 | #define Operand_PCrel 1 | |
c48dadc9 | 336 | #define Operand_Mem 2 |
3e73aa7c | 337 | |
252b5132 | 338 | /* Relocation type for operand */ |
f86103b7 | 339 | enum bfd_reloc_code_real reloc[MAX_OPERANDS]; |
252b5132 | 340 | |
252b5132 RH |
341 | /* BASE_REG, INDEX_REG, and LOG2_SCALE_FACTOR are used to encode |
342 | the base index byte below. */ | |
343 | const reg_entry *base_reg; | |
344 | const reg_entry *index_reg; | |
345 | unsigned int log2_scale_factor; | |
346 | ||
347 | /* SEG gives the seg_entries of this insn. They are zero unless | |
47926f60 | 348 | explicit segment overrides are given. */ |
ce8a8b2f | 349 | const seg_entry *seg[2]; |
252b5132 | 350 | |
8325cc63 JB |
351 | /* Copied first memory operand string, for re-checking. */ |
352 | char *memop1_string; | |
353 | ||
252b5132 RH |
354 | /* PREFIX holds all the given prefix opcodes (usually null). |
355 | PREFIXES is the number of prefix opcodes. */ | |
356 | unsigned int prefixes; | |
357 | unsigned char prefix[MAX_PREFIXES]; | |
358 | ||
50128d0c JB |
359 | /* Register is in low 3 bits of opcode. */ |
360 | bfd_boolean short_form; | |
361 | ||
6f2f06be JB |
362 | /* The operand to a branch insn indicates an absolute branch. */ |
363 | bfd_boolean jumpabsolute; | |
364 | ||
921eafea L |
365 | /* Extended states. */ |
366 | enum | |
367 | { | |
368 | /* Use MMX state. */ | |
369 | xstate_mmx = 1 << 0, | |
370 | /* Use XMM state. */ | |
371 | xstate_xmm = 1 << 1, | |
372 | /* Use YMM state. */ | |
373 | xstate_ymm = 1 << 2 | xstate_xmm, | |
374 | /* Use ZMM state. */ | |
375 | xstate_zmm = 1 << 3 | xstate_ymm, | |
376 | /* Use TMM state. */ | |
32930e4e L |
377 | xstate_tmm = 1 << 4, |
378 | /* Use MASK state. */ | |
379 | xstate_mask = 1 << 5 | |
921eafea | 380 | } xstate; |
260cd341 | 381 | |
e379e5f3 L |
382 | /* Has GOTPC or TLS relocation. */ |
383 | bfd_boolean has_gotpc_tls_reloc; | |
384 | ||
252b5132 | 385 | /* RM and SIB are the modrm byte and the sib byte where the |
c1e679ec | 386 | addressing modes of this insn are encoded. */ |
252b5132 | 387 | modrm_byte rm; |
3e73aa7c | 388 | rex_byte rex; |
43234a1e | 389 | rex_byte vrex; |
252b5132 | 390 | sib_byte sib; |
c0f3af97 | 391 | vex_prefix vex; |
b6169b20 | 392 | |
43234a1e L |
393 | /* Masking attributes. */ |
394 | struct Mask_Operation *mask; | |
395 | ||
396 | /* Rounding control and SAE attributes. */ | |
397 | struct RC_Operation *rounding; | |
398 | ||
399 | /* Broadcasting attributes. */ | |
400 | struct Broadcast_Operation *broadcast; | |
401 | ||
402 | /* Compressed disp8*N attribute. */ | |
403 | unsigned int memshift; | |
404 | ||
86fa6981 L |
405 | /* Prefer load or store in encoding. */ |
406 | enum | |
407 | { | |
408 | dir_encoding_default = 0, | |
409 | dir_encoding_load, | |
64c49ab3 JB |
410 | dir_encoding_store, |
411 | dir_encoding_swap | |
86fa6981 | 412 | } dir_encoding; |
891edac4 | 413 | |
41eb8e88 | 414 | /* Prefer 8bit, 16bit, 32bit displacement in encoding. */ |
a501d77e L |
415 | enum |
416 | { | |
417 | disp_encoding_default = 0, | |
418 | disp_encoding_8bit, | |
41eb8e88 | 419 | disp_encoding_16bit, |
a501d77e L |
420 | disp_encoding_32bit |
421 | } disp_encoding; | |
f8a5c266 | 422 | |
6b6b6807 L |
423 | /* Prefer the REX byte in encoding. */ |
424 | bfd_boolean rex_encoding; | |
425 | ||
b6f8c7c4 L |
426 | /* Disable instruction size optimization. */ |
427 | bfd_boolean no_optimize; | |
428 | ||
86fa6981 L |
429 | /* How to encode vector instructions. */ |
430 | enum | |
431 | { | |
432 | vex_encoding_default = 0, | |
42e04b36 | 433 | vex_encoding_vex, |
86fa6981 | 434 | vex_encoding_vex3, |
da4977e0 JB |
435 | vex_encoding_evex, |
436 | vex_encoding_error | |
86fa6981 L |
437 | } vec_encoding; |
438 | ||
d5de92cf L |
439 | /* REP prefix. */ |
440 | const char *rep_prefix; | |
441 | ||
165de32a L |
442 | /* HLE prefix. */ |
443 | const char *hle_prefix; | |
42164a71 | 444 | |
7e8b059b L |
445 | /* Have BND prefix. */ |
446 | const char *bnd_prefix; | |
447 | ||
04ef582a L |
448 | /* Have NOTRACK prefix. */ |
449 | const char *notrack_prefix; | |
450 | ||
891edac4 | 451 | /* Error message. */ |
a65babc9 | 452 | enum i386_error error; |
252b5132 RH |
453 | }; |
454 | ||
455 | typedef struct _i386_insn i386_insn; | |
456 | ||
43234a1e L |
457 | /* Link RC type with corresponding string, that'll be looked for in |
458 | asm. */ | |
459 | struct RC_name | |
460 | { | |
461 | enum rc_type type; | |
462 | const char *name; | |
463 | unsigned int len; | |
464 | }; | |
465 | ||
466 | static const struct RC_name RC_NamesTable[] = | |
467 | { | |
468 | { rne, STRING_COMMA_LEN ("rn-sae") }, | |
469 | { rd, STRING_COMMA_LEN ("rd-sae") }, | |
470 | { ru, STRING_COMMA_LEN ("ru-sae") }, | |
471 | { rz, STRING_COMMA_LEN ("rz-sae") }, | |
472 | { saeonly, STRING_COMMA_LEN ("sae") }, | |
473 | }; | |
474 | ||
252b5132 RH |
475 | /* List of chars besides those in app.c:symbol_chars that can start an |
476 | operand. Used to prevent the scrubber eating vital white-space. */ | |
86fa6981 | 477 | const char extra_symbol_chars[] = "*%-([{}" |
252b5132 | 478 | #ifdef LEX_AT |
32137342 NC |
479 | "@" |
480 | #endif | |
481 | #ifdef LEX_QM | |
482 | "?" | |
252b5132 | 483 | #endif |
32137342 | 484 | ; |
252b5132 | 485 | |
b3983e5f JB |
486 | #if ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) \ |
487 | && !defined (TE_GNU) \ | |
488 | && !defined (TE_LINUX) \ | |
489 | && !defined (TE_FreeBSD) \ | |
490 | && !defined (TE_DragonFly) \ | |
491 | && !defined (TE_NetBSD)) | |
252b5132 | 492 | /* This array holds the chars that always start a comment. If the |
b3b91714 AM |
493 | pre-processor is disabled, these aren't very useful. The option |
494 | --divide will remove '/' from this list. */ | |
495 | const char *i386_comment_chars = "#/"; | |
496 | #define SVR4_COMMENT_CHARS 1 | |
252b5132 | 497 | #define PREFIX_SEPARATOR '\\' |
252b5132 | 498 | |
b3b91714 AM |
499 | #else |
500 | const char *i386_comment_chars = "#"; | |
501 | #define PREFIX_SEPARATOR '/' | |
502 | #endif | |
503 | ||
252b5132 RH |
504 | /* This array holds the chars that only start a comment at the beginning of |
505 | a line. If the line seems to have the form '# 123 filename' | |
ce8a8b2f AM |
506 | .line and .file directives will appear in the pre-processed output. |
507 | Note that input_file.c hand checks for '#' at the beginning of the | |
252b5132 | 508 | first line of the input file. This is because the compiler outputs |
ce8a8b2f AM |
509 | #NO_APP at the beginning of its output. |
510 | Also note that comments started like this one will always work if | |
252b5132 | 511 | '/' isn't otherwise defined. */ |
b3b91714 | 512 | const char line_comment_chars[] = "#/"; |
252b5132 | 513 | |
63a0b638 | 514 | const char line_separator_chars[] = ";"; |
252b5132 | 515 | |
ce8a8b2f AM |
516 | /* Chars that can be used to separate mant from exp in floating point |
517 | nums. */ | |
252b5132 RH |
518 | const char EXP_CHARS[] = "eE"; |
519 | ||
ce8a8b2f AM |
520 | /* Chars that mean this number is a floating point constant |
521 | As in 0f12.456 | |
522 | or 0d1.2345e12. */ | |
252b5132 RH |
523 | const char FLT_CHARS[] = "fFdDxX"; |
524 | ||
ce8a8b2f | 525 | /* Tables for lexical analysis. */ |
252b5132 RH |
526 | static char mnemonic_chars[256]; |
527 | static char register_chars[256]; | |
528 | static char operand_chars[256]; | |
529 | static char identifier_chars[256]; | |
530 | static char digit_chars[256]; | |
531 | ||
ce8a8b2f | 532 | /* Lexical macros. */ |
252b5132 RH |
533 | #define is_mnemonic_char(x) (mnemonic_chars[(unsigned char) x]) |
534 | #define is_operand_char(x) (operand_chars[(unsigned char) x]) | |
535 | #define is_register_char(x) (register_chars[(unsigned char) x]) | |
536 | #define is_space_char(x) ((x) == ' ') | |
537 | #define is_identifier_char(x) (identifier_chars[(unsigned char) x]) | |
538 | #define is_digit_char(x) (digit_chars[(unsigned char) x]) | |
539 | ||
0234cb7c | 540 | /* All non-digit non-letter characters that may occur in an operand. */ |
252b5132 RH |
541 | static char operand_special_chars[] = "%$-+(,)*._~/<>|&^!:[@]"; |
542 | ||
543 | /* md_assemble() always leaves the strings it's passed unaltered. To | |
544 | effect this we maintain a stack of saved characters that we've smashed | |
545 | with '\0's (indicating end of strings for various sub-fields of the | |
47926f60 | 546 | assembler instruction). */ |
252b5132 | 547 | static char save_stack[32]; |
ce8a8b2f | 548 | static char *save_stack_p; |
252b5132 RH |
549 | #define END_STRING_AND_SAVE(s) \ |
550 | do { *save_stack_p++ = *(s); *(s) = '\0'; } while (0) | |
551 | #define RESTORE_END_STRING(s) \ | |
552 | do { *(s) = *--save_stack_p; } while (0) | |
553 | ||
47926f60 | 554 | /* The instruction we're assembling. */ |
252b5132 RH |
555 | static i386_insn i; |
556 | ||
557 | /* Possible templates for current insn. */ | |
558 | static const templates *current_templates; | |
559 | ||
31b2323c L |
560 | /* Per instruction expressionS buffers: max displacements & immediates. */ |
561 | static expressionS disp_expressions[MAX_MEMORY_OPERANDS]; | |
562 | static expressionS im_expressions[MAX_IMMEDIATE_OPERANDS]; | |
252b5132 | 563 | |
47926f60 | 564 | /* Current operand we are working on. */ |
ee86248c | 565 | static int this_operand = -1; |
252b5132 | 566 | |
3e73aa7c JH |
567 | /* We support four different modes. FLAG_CODE variable is used to distinguish |
568 | these. */ | |
569 | ||
570 | enum flag_code { | |
571 | CODE_32BIT, | |
572 | CODE_16BIT, | |
573 | CODE_64BIT }; | |
574 | ||
575 | static enum flag_code flag_code; | |
4fa24527 | 576 | static unsigned int object_64bit; |
862be3fb | 577 | static unsigned int disallow_64bit_reloc; |
3e73aa7c | 578 | static int use_rela_relocations = 0; |
e379e5f3 L |
579 | /* __tls_get_addr/___tls_get_addr symbol for TLS. */ |
580 | static const char *tls_get_addr; | |
3e73aa7c | 581 | |
7af8ed2d NC |
582 | #if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \ |
583 | || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \ | |
584 | || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O)) | |
585 | ||
351f65ca L |
586 | /* The ELF ABI to use. */ |
587 | enum x86_elf_abi | |
588 | { | |
589 | I386_ABI, | |
7f56bc95 L |
590 | X86_64_ABI, |
591 | X86_64_X32_ABI | |
351f65ca L |
592 | }; |
593 | ||
594 | static enum x86_elf_abi x86_elf_abi = I386_ABI; | |
7af8ed2d | 595 | #endif |
351f65ca | 596 | |
167ad85b TG |
597 | #if defined (TE_PE) || defined (TE_PEP) |
598 | /* Use big object file format. */ | |
599 | static int use_big_obj = 0; | |
600 | #endif | |
601 | ||
8dcea932 L |
602 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
603 | /* 1 if generating code for a shared library. */ | |
604 | static int shared = 0; | |
605 | #endif | |
606 | ||
47926f60 KH |
607 | /* 1 for intel syntax, |
608 | 0 if att syntax. */ | |
609 | static int intel_syntax = 0; | |
252b5132 | 610 | |
4b5aaf5f L |
611 | static enum x86_64_isa |
612 | { | |
613 | amd64 = 1, /* AMD64 ISA. */ | |
614 | intel64 /* Intel64 ISA. */ | |
615 | } isa64; | |
e89c5eaa | 616 | |
1efbbeb4 L |
617 | /* 1 for intel mnemonic, |
618 | 0 if att mnemonic. */ | |
619 | static int intel_mnemonic = !SYSV386_COMPAT; | |
620 | ||
a60de03c JB |
621 | /* 1 if pseudo registers are permitted. */ |
622 | static int allow_pseudo_reg = 0; | |
623 | ||
47926f60 KH |
624 | /* 1 if register prefix % not required. */ |
625 | static int allow_naked_reg = 0; | |
252b5132 | 626 | |
33eaf5de | 627 | /* 1 if the assembler should add BND prefix for all control-transferring |
7e8b059b L |
628 | instructions supporting it, even if this prefix wasn't specified |
629 | explicitly. */ | |
630 | static int add_bnd_prefix = 0; | |
631 | ||
ba104c83 | 632 | /* 1 if pseudo index register, eiz/riz, is allowed . */ |
db51cc60 L |
633 | static int allow_index_reg = 0; |
634 | ||
d022bddd IT |
635 | /* 1 if the assembler should ignore LOCK prefix, even if it was |
636 | specified explicitly. */ | |
637 | static int omit_lock_prefix = 0; | |
638 | ||
e4e00185 AS |
639 | /* 1 if the assembler should encode lfence, mfence, and sfence as |
640 | "lock addl $0, (%{re}sp)". */ | |
641 | static int avoid_fence = 0; | |
642 | ||
ae531041 L |
643 | /* 1 if lfence should be inserted after every load. */ |
644 | static int lfence_after_load = 0; | |
645 | ||
646 | /* Non-zero if lfence should be inserted before indirect branch. */ | |
647 | static enum lfence_before_indirect_branch_kind | |
648 | { | |
649 | lfence_branch_none = 0, | |
650 | lfence_branch_register, | |
651 | lfence_branch_memory, | |
652 | lfence_branch_all | |
653 | } | |
654 | lfence_before_indirect_branch; | |
655 | ||
656 | /* Non-zero if lfence should be inserted before ret. */ | |
657 | static enum lfence_before_ret_kind | |
658 | { | |
659 | lfence_before_ret_none = 0, | |
660 | lfence_before_ret_not, | |
a09f656b | 661 | lfence_before_ret_or, |
662 | lfence_before_ret_shl | |
ae531041 L |
663 | } |
664 | lfence_before_ret; | |
665 | ||
666 | /* Types of previous instruction is .byte or prefix. */ | |
e379e5f3 L |
667 | static struct |
668 | { | |
669 | segT seg; | |
670 | const char *file; | |
671 | const char *name; | |
672 | unsigned int line; | |
673 | enum last_insn_kind | |
674 | { | |
675 | last_insn_other = 0, | |
676 | last_insn_directive, | |
677 | last_insn_prefix | |
678 | } kind; | |
679 | } last_insn; | |
680 | ||
0cb4071e L |
681 | /* 1 if the assembler should generate relax relocations. */ |
682 | ||
683 | static int generate_relax_relocations | |
684 | = DEFAULT_GENERATE_X86_RELAX_RELOCATIONS; | |
685 | ||
7bab8ab5 | 686 | static enum check_kind |
daf50ae7 | 687 | { |
7bab8ab5 JB |
688 | check_none = 0, |
689 | check_warning, | |
690 | check_error | |
daf50ae7 | 691 | } |
7bab8ab5 | 692 | sse_check, operand_check = check_warning; |
daf50ae7 | 693 | |
e379e5f3 L |
694 | /* Non-zero if branches should be aligned within power of 2 boundary. */ |
695 | static int align_branch_power = 0; | |
696 | ||
697 | /* Types of branches to align. */ | |
698 | enum align_branch_kind | |
699 | { | |
700 | align_branch_none = 0, | |
701 | align_branch_jcc = 1, | |
702 | align_branch_fused = 2, | |
703 | align_branch_jmp = 3, | |
704 | align_branch_call = 4, | |
705 | align_branch_indirect = 5, | |
706 | align_branch_ret = 6 | |
707 | }; | |
708 | ||
709 | /* Type bits of branches to align. */ | |
710 | enum align_branch_bit | |
711 | { | |
712 | align_branch_jcc_bit = 1 << align_branch_jcc, | |
713 | align_branch_fused_bit = 1 << align_branch_fused, | |
714 | align_branch_jmp_bit = 1 << align_branch_jmp, | |
715 | align_branch_call_bit = 1 << align_branch_call, | |
716 | align_branch_indirect_bit = 1 << align_branch_indirect, | |
717 | align_branch_ret_bit = 1 << align_branch_ret | |
718 | }; | |
719 | ||
720 | static unsigned int align_branch = (align_branch_jcc_bit | |
721 | | align_branch_fused_bit | |
722 | | align_branch_jmp_bit); | |
723 | ||
79d72f45 HL |
724 | /* Types of condition jump used by macro-fusion. */ |
725 | enum mf_jcc_kind | |
726 | { | |
727 | mf_jcc_jo = 0, /* base opcode 0x70 */ | |
728 | mf_jcc_jc, /* base opcode 0x72 */ | |
729 | mf_jcc_je, /* base opcode 0x74 */ | |
730 | mf_jcc_jna, /* base opcode 0x76 */ | |
731 | mf_jcc_js, /* base opcode 0x78 */ | |
732 | mf_jcc_jp, /* base opcode 0x7a */ | |
733 | mf_jcc_jl, /* base opcode 0x7c */ | |
734 | mf_jcc_jle, /* base opcode 0x7e */ | |
735 | }; | |
736 | ||
737 | /* Types of compare flag-modifying insntructions used by macro-fusion. */ | |
738 | enum mf_cmp_kind | |
739 | { | |
740 | mf_cmp_test_and, /* test/cmp */ | |
741 | mf_cmp_alu_cmp, /* add/sub/cmp */ | |
742 | mf_cmp_incdec /* inc/dec */ | |
743 | }; | |
744 | ||
e379e5f3 L |
745 | /* The maximum padding size for fused jcc. CMP like instruction can |
746 | be 9 bytes and jcc can be 6 bytes. Leave room just in case for | |
747 | prefixes. */ | |
748 | #define MAX_FUSED_JCC_PADDING_SIZE 20 | |
749 | ||
750 | /* The maximum number of prefixes added for an instruction. */ | |
751 | static unsigned int align_branch_prefix_size = 5; | |
752 | ||
b6f8c7c4 L |
753 | /* Optimization: |
754 | 1. Clear the REX_W bit with register operand if possible. | |
755 | 2. Above plus use 128bit vector instruction to clear the full vector | |
756 | register. | |
757 | */ | |
758 | static int optimize = 0; | |
759 | ||
760 | /* Optimization: | |
761 | 1. Clear the REX_W bit with register operand if possible. | |
762 | 2. Above plus use 128bit vector instruction to clear the full vector | |
763 | register. | |
764 | 3. Above plus optimize "test{q,l,w} $imm8,%r{64,32,16}" to | |
765 | "testb $imm7,%r8". | |
766 | */ | |
767 | static int optimize_for_space = 0; | |
768 | ||
2ca3ace5 L |
769 | /* Register prefix used for error message. */ |
770 | static const char *register_prefix = "%"; | |
771 | ||
47926f60 KH |
772 | /* Used in 16 bit gcc mode to add an l suffix to call, ret, enter, |
773 | leave, push, and pop instructions so that gcc has the same stack | |
774 | frame as in 32 bit mode. */ | |
775 | static char stackop_size = '\0'; | |
eecb386c | 776 | |
12b55ccc L |
777 | /* Non-zero to optimize code alignment. */ |
778 | int optimize_align_code = 1; | |
779 | ||
47926f60 KH |
780 | /* Non-zero to quieten some warnings. */ |
781 | static int quiet_warnings = 0; | |
a38cf1db | 782 | |
47926f60 KH |
783 | /* CPU name. */ |
784 | static const char *cpu_arch_name = NULL; | |
6305a203 | 785 | static char *cpu_sub_arch_name = NULL; |
a38cf1db | 786 | |
47926f60 | 787 | /* CPU feature flags. */ |
40fb9820 L |
788 | static i386_cpu_flags cpu_arch_flags = CPU_UNKNOWN_FLAGS; |
789 | ||
ccc9c027 L |
790 | /* If we have selected a cpu we are generating instructions for. */ |
791 | static int cpu_arch_tune_set = 0; | |
792 | ||
9103f4f4 | 793 | /* Cpu we are generating instructions for. */ |
fbf3f584 | 794 | enum processor_type cpu_arch_tune = PROCESSOR_UNKNOWN; |
9103f4f4 L |
795 | |
796 | /* CPU feature flags of cpu we are generating instructions for. */ | |
40fb9820 | 797 | static i386_cpu_flags cpu_arch_tune_flags; |
9103f4f4 | 798 | |
ccc9c027 | 799 | /* CPU instruction set architecture used. */ |
fbf3f584 | 800 | enum processor_type cpu_arch_isa = PROCESSOR_UNKNOWN; |
ccc9c027 | 801 | |
9103f4f4 | 802 | /* CPU feature flags of instruction set architecture used. */ |
fbf3f584 | 803 | i386_cpu_flags cpu_arch_isa_flags; |
9103f4f4 | 804 | |
fddf5b5b AM |
805 | /* If set, conditional jumps are not automatically promoted to handle |
806 | larger than a byte offset. */ | |
807 | static unsigned int no_cond_jump_promotion = 0; | |
808 | ||
c0f3af97 L |
809 | /* Encode SSE instructions with VEX prefix. */ |
810 | static unsigned int sse2avx; | |
811 | ||
539f890d L |
812 | /* Encode scalar AVX instructions with specific vector length. */ |
813 | static enum | |
814 | { | |
815 | vex128 = 0, | |
816 | vex256 | |
817 | } avxscalar; | |
818 | ||
03751133 L |
819 | /* Encode VEX WIG instructions with specific vex.w. */ |
820 | static enum | |
821 | { | |
822 | vexw0 = 0, | |
823 | vexw1 | |
824 | } vexwig; | |
825 | ||
43234a1e L |
826 | /* Encode scalar EVEX LIG instructions with specific vector length. */ |
827 | static enum | |
828 | { | |
829 | evexl128 = 0, | |
830 | evexl256, | |
831 | evexl512 | |
832 | } evexlig; | |
833 | ||
834 | /* Encode EVEX WIG instructions with specific evex.w. */ | |
835 | static enum | |
836 | { | |
837 | evexw0 = 0, | |
838 | evexw1 | |
839 | } evexwig; | |
840 | ||
d3d3c6db IT |
841 | /* Value to encode in EVEX RC bits, for SAE-only instructions. */ |
842 | static enum rc_type evexrcig = rne; | |
843 | ||
29b0f896 | 844 | /* Pre-defined "_GLOBAL_OFFSET_TABLE_". */ |
87c245cc | 845 | static symbolS *GOT_symbol; |
29b0f896 | 846 | |
a4447b93 RH |
847 | /* The dwarf2 return column, adjusted for 32 or 64 bit. */ |
848 | unsigned int x86_dwarf2_return_column; | |
849 | ||
850 | /* The dwarf2 data alignment, adjusted for 32 or 64 bit. */ | |
851 | int x86_cie_data_alignment; | |
852 | ||
252b5132 | 853 | /* Interface to relax_segment. |
fddf5b5b AM |
854 | There are 3 major relax states for 386 jump insns because the |
855 | different types of jumps add different sizes to frags when we're | |
e379e5f3 L |
856 | figuring out what sort of jump to choose to reach a given label. |
857 | ||
858 | BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING are used to align | |
859 | branches which are handled by md_estimate_size_before_relax() and | |
860 | i386_generic_table_relax_frag(). */ | |
252b5132 | 861 | |
47926f60 | 862 | /* Types. */ |
93c2a809 AM |
863 | #define UNCOND_JUMP 0 |
864 | #define COND_JUMP 1 | |
865 | #define COND_JUMP86 2 | |
e379e5f3 L |
866 | #define BRANCH_PADDING 3 |
867 | #define BRANCH_PREFIX 4 | |
868 | #define FUSED_JCC_PADDING 5 | |
fddf5b5b | 869 | |
47926f60 | 870 | /* Sizes. */ |
252b5132 RH |
871 | #define CODE16 1 |
872 | #define SMALL 0 | |
29b0f896 | 873 | #define SMALL16 (SMALL | CODE16) |
252b5132 | 874 | #define BIG 2 |
29b0f896 | 875 | #define BIG16 (BIG | CODE16) |
252b5132 RH |
876 | |
877 | #ifndef INLINE | |
878 | #ifdef __GNUC__ | |
879 | #define INLINE __inline__ | |
880 | #else | |
881 | #define INLINE | |
882 | #endif | |
883 | #endif | |
884 | ||
fddf5b5b AM |
885 | #define ENCODE_RELAX_STATE(type, size) \ |
886 | ((relax_substateT) (((type) << 2) | (size))) | |
887 | #define TYPE_FROM_RELAX_STATE(s) \ | |
888 | ((s) >> 2) | |
889 | #define DISP_SIZE_FROM_RELAX_STATE(s) \ | |
890 | ((((s) & 3) == BIG ? 4 : (((s) & 3) == BIG16 ? 2 : 1))) | |
252b5132 RH |
891 | |
892 | /* This table is used by relax_frag to promote short jumps to long | |
893 | ones where necessary. SMALL (short) jumps may be promoted to BIG | |
894 | (32 bit long) ones, and SMALL16 jumps to BIG16 (16 bit long). We | |
895 | don't allow a short jump in a 32 bit code segment to be promoted to | |
896 | a 16 bit offset jump because it's slower (requires data size | |
897 | prefix), and doesn't work, unless the destination is in the bottom | |
898 | 64k of the code segment (The top 16 bits of eip are zeroed). */ | |
899 | ||
900 | const relax_typeS md_relax_table[] = | |
901 | { | |
24eab124 AM |
902 | /* The fields are: |
903 | 1) most positive reach of this state, | |
904 | 2) most negative reach of this state, | |
93c2a809 | 905 | 3) how many bytes this mode will have in the variable part of the frag |
ce8a8b2f | 906 | 4) which index into the table to try if we can't fit into this one. */ |
252b5132 | 907 | |
fddf5b5b | 908 | /* UNCOND_JUMP states. */ |
93c2a809 AM |
909 | {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG)}, |
910 | {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16)}, | |
911 | /* dword jmp adds 4 bytes to frag: | |
912 | 0 extra opcode bytes, 4 displacement bytes. */ | |
252b5132 | 913 | {0, 0, 4, 0}, |
93c2a809 AM |
914 | /* word jmp adds 2 byte2 to frag: |
915 | 0 extra opcode bytes, 2 displacement bytes. */ | |
252b5132 RH |
916 | {0, 0, 2, 0}, |
917 | ||
93c2a809 AM |
918 | /* COND_JUMP states. */ |
919 | {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG)}, | |
920 | {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG16)}, | |
921 | /* dword conditionals adds 5 bytes to frag: | |
922 | 1 extra opcode byte, 4 displacement bytes. */ | |
923 | {0, 0, 5, 0}, | |
fddf5b5b | 924 | /* word conditionals add 3 bytes to frag: |
93c2a809 AM |
925 | 1 extra opcode byte, 2 displacement bytes. */ |
926 | {0, 0, 3, 0}, | |
927 | ||
928 | /* COND_JUMP86 states. */ | |
929 | {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG)}, | |
930 | {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG16)}, | |
931 | /* dword conditionals adds 5 bytes to frag: | |
932 | 1 extra opcode byte, 4 displacement bytes. */ | |
933 | {0, 0, 5, 0}, | |
934 | /* word conditionals add 4 bytes to frag: | |
935 | 1 displacement byte and a 3 byte long branch insn. */ | |
936 | {0, 0, 4, 0} | |
252b5132 RH |
937 | }; |
938 | ||
9103f4f4 L |
939 | static const arch_entry cpu_arch[] = |
940 | { | |
89507696 JB |
941 | /* Do not replace the first two entries - i386_target_format() |
942 | relies on them being there in this order. */ | |
8a2c8fef | 943 | { STRING_COMMA_LEN ("generic32"), PROCESSOR_GENERIC32, |
293f5f65 | 944 | CPU_GENERIC32_FLAGS, 0 }, |
8a2c8fef | 945 | { STRING_COMMA_LEN ("generic64"), PROCESSOR_GENERIC64, |
293f5f65 | 946 | CPU_GENERIC64_FLAGS, 0 }, |
8a2c8fef | 947 | { STRING_COMMA_LEN ("i8086"), PROCESSOR_UNKNOWN, |
293f5f65 | 948 | CPU_NONE_FLAGS, 0 }, |
8a2c8fef | 949 | { STRING_COMMA_LEN ("i186"), PROCESSOR_UNKNOWN, |
293f5f65 | 950 | CPU_I186_FLAGS, 0 }, |
8a2c8fef | 951 | { STRING_COMMA_LEN ("i286"), PROCESSOR_UNKNOWN, |
293f5f65 | 952 | CPU_I286_FLAGS, 0 }, |
8a2c8fef | 953 | { STRING_COMMA_LEN ("i386"), PROCESSOR_I386, |
293f5f65 | 954 | CPU_I386_FLAGS, 0 }, |
8a2c8fef | 955 | { STRING_COMMA_LEN ("i486"), PROCESSOR_I486, |
293f5f65 | 956 | CPU_I486_FLAGS, 0 }, |
8a2c8fef | 957 | { STRING_COMMA_LEN ("i586"), PROCESSOR_PENTIUM, |
293f5f65 | 958 | CPU_I586_FLAGS, 0 }, |
8a2c8fef | 959 | { STRING_COMMA_LEN ("i686"), PROCESSOR_PENTIUMPRO, |
293f5f65 | 960 | CPU_I686_FLAGS, 0 }, |
8a2c8fef | 961 | { STRING_COMMA_LEN ("pentium"), PROCESSOR_PENTIUM, |
293f5f65 | 962 | CPU_I586_FLAGS, 0 }, |
8a2c8fef | 963 | { STRING_COMMA_LEN ("pentiumpro"), PROCESSOR_PENTIUMPRO, |
293f5f65 | 964 | CPU_PENTIUMPRO_FLAGS, 0 }, |
8a2c8fef | 965 | { STRING_COMMA_LEN ("pentiumii"), PROCESSOR_PENTIUMPRO, |
293f5f65 | 966 | CPU_P2_FLAGS, 0 }, |
8a2c8fef | 967 | { STRING_COMMA_LEN ("pentiumiii"),PROCESSOR_PENTIUMPRO, |
293f5f65 | 968 | CPU_P3_FLAGS, 0 }, |
8a2c8fef | 969 | { STRING_COMMA_LEN ("pentium4"), PROCESSOR_PENTIUM4, |
293f5f65 | 970 | CPU_P4_FLAGS, 0 }, |
8a2c8fef | 971 | { STRING_COMMA_LEN ("prescott"), PROCESSOR_NOCONA, |
293f5f65 | 972 | CPU_CORE_FLAGS, 0 }, |
8a2c8fef | 973 | { STRING_COMMA_LEN ("nocona"), PROCESSOR_NOCONA, |
293f5f65 | 974 | CPU_NOCONA_FLAGS, 0 }, |
8a2c8fef | 975 | { STRING_COMMA_LEN ("yonah"), PROCESSOR_CORE, |
293f5f65 | 976 | CPU_CORE_FLAGS, 1 }, |
8a2c8fef | 977 | { STRING_COMMA_LEN ("core"), PROCESSOR_CORE, |
293f5f65 | 978 | CPU_CORE_FLAGS, 0 }, |
8a2c8fef | 979 | { STRING_COMMA_LEN ("merom"), PROCESSOR_CORE2, |
293f5f65 | 980 | CPU_CORE2_FLAGS, 1 }, |
8a2c8fef | 981 | { STRING_COMMA_LEN ("core2"), PROCESSOR_CORE2, |
293f5f65 | 982 | CPU_CORE2_FLAGS, 0 }, |
8a2c8fef | 983 | { STRING_COMMA_LEN ("corei7"), PROCESSOR_COREI7, |
293f5f65 | 984 | CPU_COREI7_FLAGS, 0 }, |
8a2c8fef | 985 | { STRING_COMMA_LEN ("l1om"), PROCESSOR_L1OM, |
293f5f65 | 986 | CPU_L1OM_FLAGS, 0 }, |
7a9068fe | 987 | { STRING_COMMA_LEN ("k1om"), PROCESSOR_K1OM, |
293f5f65 | 988 | CPU_K1OM_FLAGS, 0 }, |
81486035 | 989 | { STRING_COMMA_LEN ("iamcu"), PROCESSOR_IAMCU, |
293f5f65 | 990 | CPU_IAMCU_FLAGS, 0 }, |
8a2c8fef | 991 | { STRING_COMMA_LEN ("k6"), PROCESSOR_K6, |
293f5f65 | 992 | CPU_K6_FLAGS, 0 }, |
8a2c8fef | 993 | { STRING_COMMA_LEN ("k6_2"), PROCESSOR_K6, |
293f5f65 | 994 | CPU_K6_2_FLAGS, 0 }, |
8a2c8fef | 995 | { STRING_COMMA_LEN ("athlon"), PROCESSOR_ATHLON, |
293f5f65 | 996 | CPU_ATHLON_FLAGS, 0 }, |
8a2c8fef | 997 | { STRING_COMMA_LEN ("sledgehammer"), PROCESSOR_K8, |
293f5f65 | 998 | CPU_K8_FLAGS, 1 }, |
8a2c8fef | 999 | { STRING_COMMA_LEN ("opteron"), PROCESSOR_K8, |
293f5f65 | 1000 | CPU_K8_FLAGS, 0 }, |
8a2c8fef | 1001 | { STRING_COMMA_LEN ("k8"), PROCESSOR_K8, |
293f5f65 | 1002 | CPU_K8_FLAGS, 0 }, |
8a2c8fef | 1003 | { STRING_COMMA_LEN ("amdfam10"), PROCESSOR_AMDFAM10, |
293f5f65 | 1004 | CPU_AMDFAM10_FLAGS, 0 }, |
8aedb9fe | 1005 | { STRING_COMMA_LEN ("bdver1"), PROCESSOR_BD, |
293f5f65 | 1006 | CPU_BDVER1_FLAGS, 0 }, |
8aedb9fe | 1007 | { STRING_COMMA_LEN ("bdver2"), PROCESSOR_BD, |
293f5f65 | 1008 | CPU_BDVER2_FLAGS, 0 }, |
5e5c50d3 | 1009 | { STRING_COMMA_LEN ("bdver3"), PROCESSOR_BD, |
293f5f65 | 1010 | CPU_BDVER3_FLAGS, 0 }, |
c7b0bd56 | 1011 | { STRING_COMMA_LEN ("bdver4"), PROCESSOR_BD, |
293f5f65 | 1012 | CPU_BDVER4_FLAGS, 0 }, |
029f3522 | 1013 | { STRING_COMMA_LEN ("znver1"), PROCESSOR_ZNVER, |
293f5f65 | 1014 | CPU_ZNVER1_FLAGS, 0 }, |
a9660a6f AP |
1015 | { STRING_COMMA_LEN ("znver2"), PROCESSOR_ZNVER, |
1016 | CPU_ZNVER2_FLAGS, 0 }, | |
7b458c12 | 1017 | { STRING_COMMA_LEN ("btver1"), PROCESSOR_BT, |
293f5f65 | 1018 | CPU_BTVER1_FLAGS, 0 }, |
7b458c12 | 1019 | { STRING_COMMA_LEN ("btver2"), PROCESSOR_BT, |
293f5f65 | 1020 | CPU_BTVER2_FLAGS, 0 }, |
8a2c8fef | 1021 | { STRING_COMMA_LEN (".8087"), PROCESSOR_UNKNOWN, |
293f5f65 | 1022 | CPU_8087_FLAGS, 0 }, |
8a2c8fef | 1023 | { STRING_COMMA_LEN (".287"), PROCESSOR_UNKNOWN, |
293f5f65 | 1024 | CPU_287_FLAGS, 0 }, |
8a2c8fef | 1025 | { STRING_COMMA_LEN (".387"), PROCESSOR_UNKNOWN, |
293f5f65 | 1026 | CPU_387_FLAGS, 0 }, |
1848e567 L |
1027 | { STRING_COMMA_LEN (".687"), PROCESSOR_UNKNOWN, |
1028 | CPU_687_FLAGS, 0 }, | |
d871f3f4 L |
1029 | { STRING_COMMA_LEN (".cmov"), PROCESSOR_UNKNOWN, |
1030 | CPU_CMOV_FLAGS, 0 }, | |
1031 | { STRING_COMMA_LEN (".fxsr"), PROCESSOR_UNKNOWN, | |
1032 | CPU_FXSR_FLAGS, 0 }, | |
8a2c8fef | 1033 | { STRING_COMMA_LEN (".mmx"), PROCESSOR_UNKNOWN, |
293f5f65 | 1034 | CPU_MMX_FLAGS, 0 }, |
8a2c8fef | 1035 | { STRING_COMMA_LEN (".sse"), PROCESSOR_UNKNOWN, |
293f5f65 | 1036 | CPU_SSE_FLAGS, 0 }, |
8a2c8fef | 1037 | { STRING_COMMA_LEN (".sse2"), PROCESSOR_UNKNOWN, |
293f5f65 | 1038 | CPU_SSE2_FLAGS, 0 }, |
8a2c8fef | 1039 | { STRING_COMMA_LEN (".sse3"), PROCESSOR_UNKNOWN, |
293f5f65 | 1040 | CPU_SSE3_FLAGS, 0 }, |
af5c13b0 L |
1041 | { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN, |
1042 | CPU_SSE4A_FLAGS, 0 }, | |
8a2c8fef | 1043 | { STRING_COMMA_LEN (".ssse3"), PROCESSOR_UNKNOWN, |
293f5f65 | 1044 | CPU_SSSE3_FLAGS, 0 }, |
8a2c8fef | 1045 | { STRING_COMMA_LEN (".sse4.1"), PROCESSOR_UNKNOWN, |
293f5f65 | 1046 | CPU_SSE4_1_FLAGS, 0 }, |
8a2c8fef | 1047 | { STRING_COMMA_LEN (".sse4.2"), PROCESSOR_UNKNOWN, |
293f5f65 | 1048 | CPU_SSE4_2_FLAGS, 0 }, |
8a2c8fef | 1049 | { STRING_COMMA_LEN (".sse4"), PROCESSOR_UNKNOWN, |
293f5f65 | 1050 | CPU_SSE4_2_FLAGS, 0 }, |
8a2c8fef | 1051 | { STRING_COMMA_LEN (".avx"), PROCESSOR_UNKNOWN, |
293f5f65 | 1052 | CPU_AVX_FLAGS, 0 }, |
6c30d220 | 1053 | { STRING_COMMA_LEN (".avx2"), PROCESSOR_UNKNOWN, |
293f5f65 | 1054 | CPU_AVX2_FLAGS, 0 }, |
43234a1e | 1055 | { STRING_COMMA_LEN (".avx512f"), PROCESSOR_UNKNOWN, |
293f5f65 | 1056 | CPU_AVX512F_FLAGS, 0 }, |
43234a1e | 1057 | { STRING_COMMA_LEN (".avx512cd"), PROCESSOR_UNKNOWN, |
293f5f65 | 1058 | CPU_AVX512CD_FLAGS, 0 }, |
43234a1e | 1059 | { STRING_COMMA_LEN (".avx512er"), PROCESSOR_UNKNOWN, |
293f5f65 | 1060 | CPU_AVX512ER_FLAGS, 0 }, |
43234a1e | 1061 | { STRING_COMMA_LEN (".avx512pf"), PROCESSOR_UNKNOWN, |
293f5f65 | 1062 | CPU_AVX512PF_FLAGS, 0 }, |
1dfc6506 | 1063 | { STRING_COMMA_LEN (".avx512dq"), PROCESSOR_UNKNOWN, |
293f5f65 | 1064 | CPU_AVX512DQ_FLAGS, 0 }, |
1dfc6506 | 1065 | { STRING_COMMA_LEN (".avx512bw"), PROCESSOR_UNKNOWN, |
293f5f65 | 1066 | CPU_AVX512BW_FLAGS, 0 }, |
1dfc6506 | 1067 | { STRING_COMMA_LEN (".avx512vl"), PROCESSOR_UNKNOWN, |
293f5f65 | 1068 | CPU_AVX512VL_FLAGS, 0 }, |
8a2c8fef | 1069 | { STRING_COMMA_LEN (".vmx"), PROCESSOR_UNKNOWN, |
293f5f65 | 1070 | CPU_VMX_FLAGS, 0 }, |
8729a6f6 | 1071 | { STRING_COMMA_LEN (".vmfunc"), PROCESSOR_UNKNOWN, |
293f5f65 | 1072 | CPU_VMFUNC_FLAGS, 0 }, |
8a2c8fef | 1073 | { STRING_COMMA_LEN (".smx"), PROCESSOR_UNKNOWN, |
293f5f65 | 1074 | CPU_SMX_FLAGS, 0 }, |
8a2c8fef | 1075 | { STRING_COMMA_LEN (".xsave"), PROCESSOR_UNKNOWN, |
293f5f65 | 1076 | CPU_XSAVE_FLAGS, 0 }, |
c7b8aa3a | 1077 | { STRING_COMMA_LEN (".xsaveopt"), PROCESSOR_UNKNOWN, |
293f5f65 | 1078 | CPU_XSAVEOPT_FLAGS, 0 }, |
1dfc6506 | 1079 | { STRING_COMMA_LEN (".xsavec"), PROCESSOR_UNKNOWN, |
293f5f65 | 1080 | CPU_XSAVEC_FLAGS, 0 }, |
1dfc6506 | 1081 | { STRING_COMMA_LEN (".xsaves"), PROCESSOR_UNKNOWN, |
293f5f65 | 1082 | CPU_XSAVES_FLAGS, 0 }, |
8a2c8fef | 1083 | { STRING_COMMA_LEN (".aes"), PROCESSOR_UNKNOWN, |
293f5f65 | 1084 | CPU_AES_FLAGS, 0 }, |
8a2c8fef | 1085 | { STRING_COMMA_LEN (".pclmul"), PROCESSOR_UNKNOWN, |
293f5f65 | 1086 | CPU_PCLMUL_FLAGS, 0 }, |
8a2c8fef | 1087 | { STRING_COMMA_LEN (".clmul"), PROCESSOR_UNKNOWN, |
293f5f65 | 1088 | CPU_PCLMUL_FLAGS, 1 }, |
c7b8aa3a | 1089 | { STRING_COMMA_LEN (".fsgsbase"), PROCESSOR_UNKNOWN, |
293f5f65 | 1090 | CPU_FSGSBASE_FLAGS, 0 }, |
c7b8aa3a | 1091 | { STRING_COMMA_LEN (".rdrnd"), PROCESSOR_UNKNOWN, |
293f5f65 | 1092 | CPU_RDRND_FLAGS, 0 }, |
c7b8aa3a | 1093 | { STRING_COMMA_LEN (".f16c"), PROCESSOR_UNKNOWN, |
293f5f65 | 1094 | CPU_F16C_FLAGS, 0 }, |
6c30d220 | 1095 | { STRING_COMMA_LEN (".bmi2"), PROCESSOR_UNKNOWN, |
293f5f65 | 1096 | CPU_BMI2_FLAGS, 0 }, |
8a2c8fef | 1097 | { STRING_COMMA_LEN (".fma"), PROCESSOR_UNKNOWN, |
293f5f65 | 1098 | CPU_FMA_FLAGS, 0 }, |
8a2c8fef | 1099 | { STRING_COMMA_LEN (".fma4"), PROCESSOR_UNKNOWN, |
293f5f65 | 1100 | CPU_FMA4_FLAGS, 0 }, |
8a2c8fef | 1101 | { STRING_COMMA_LEN (".xop"), PROCESSOR_UNKNOWN, |
293f5f65 | 1102 | CPU_XOP_FLAGS, 0 }, |
8a2c8fef | 1103 | { STRING_COMMA_LEN (".lwp"), PROCESSOR_UNKNOWN, |
293f5f65 | 1104 | CPU_LWP_FLAGS, 0 }, |
8a2c8fef | 1105 | { STRING_COMMA_LEN (".movbe"), PROCESSOR_UNKNOWN, |
293f5f65 | 1106 | CPU_MOVBE_FLAGS, 0 }, |
60aa667e | 1107 | { STRING_COMMA_LEN (".cx16"), PROCESSOR_UNKNOWN, |
293f5f65 | 1108 | CPU_CX16_FLAGS, 0 }, |
8a2c8fef | 1109 | { STRING_COMMA_LEN (".ept"), PROCESSOR_UNKNOWN, |
293f5f65 | 1110 | CPU_EPT_FLAGS, 0 }, |
6c30d220 | 1111 | { STRING_COMMA_LEN (".lzcnt"), PROCESSOR_UNKNOWN, |
293f5f65 | 1112 | CPU_LZCNT_FLAGS, 0 }, |
272a84b1 L |
1113 | { STRING_COMMA_LEN (".popcnt"), PROCESSOR_UNKNOWN, |
1114 | CPU_POPCNT_FLAGS, 0 }, | |
42164a71 | 1115 | { STRING_COMMA_LEN (".hle"), PROCESSOR_UNKNOWN, |
293f5f65 | 1116 | CPU_HLE_FLAGS, 0 }, |
42164a71 | 1117 | { STRING_COMMA_LEN (".rtm"), PROCESSOR_UNKNOWN, |
293f5f65 | 1118 | CPU_RTM_FLAGS, 0 }, |
6c30d220 | 1119 | { STRING_COMMA_LEN (".invpcid"), PROCESSOR_UNKNOWN, |
293f5f65 | 1120 | CPU_INVPCID_FLAGS, 0 }, |
8a2c8fef | 1121 | { STRING_COMMA_LEN (".clflush"), PROCESSOR_UNKNOWN, |
293f5f65 | 1122 | CPU_CLFLUSH_FLAGS, 0 }, |
22109423 | 1123 | { STRING_COMMA_LEN (".nop"), PROCESSOR_UNKNOWN, |
293f5f65 | 1124 | CPU_NOP_FLAGS, 0 }, |
8a2c8fef | 1125 | { STRING_COMMA_LEN (".syscall"), PROCESSOR_UNKNOWN, |
293f5f65 | 1126 | CPU_SYSCALL_FLAGS, 0 }, |
8a2c8fef | 1127 | { STRING_COMMA_LEN (".rdtscp"), PROCESSOR_UNKNOWN, |
293f5f65 | 1128 | CPU_RDTSCP_FLAGS, 0 }, |
8a2c8fef | 1129 | { STRING_COMMA_LEN (".3dnow"), PROCESSOR_UNKNOWN, |
293f5f65 | 1130 | CPU_3DNOW_FLAGS, 0 }, |
8a2c8fef | 1131 | { STRING_COMMA_LEN (".3dnowa"), PROCESSOR_UNKNOWN, |
293f5f65 | 1132 | CPU_3DNOWA_FLAGS, 0 }, |
8a2c8fef | 1133 | { STRING_COMMA_LEN (".padlock"), PROCESSOR_UNKNOWN, |
293f5f65 | 1134 | CPU_PADLOCK_FLAGS, 0 }, |
8a2c8fef | 1135 | { STRING_COMMA_LEN (".pacifica"), PROCESSOR_UNKNOWN, |
293f5f65 | 1136 | CPU_SVME_FLAGS, 1 }, |
8a2c8fef | 1137 | { STRING_COMMA_LEN (".svme"), PROCESSOR_UNKNOWN, |
293f5f65 | 1138 | CPU_SVME_FLAGS, 0 }, |
8a2c8fef | 1139 | { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN, |
293f5f65 | 1140 | CPU_SSE4A_FLAGS, 0 }, |
8a2c8fef | 1141 | { STRING_COMMA_LEN (".abm"), PROCESSOR_UNKNOWN, |
293f5f65 | 1142 | CPU_ABM_FLAGS, 0 }, |
87973e9f | 1143 | { STRING_COMMA_LEN (".bmi"), PROCESSOR_UNKNOWN, |
293f5f65 | 1144 | CPU_BMI_FLAGS, 0 }, |
2a2a0f38 | 1145 | { STRING_COMMA_LEN (".tbm"), PROCESSOR_UNKNOWN, |
293f5f65 | 1146 | CPU_TBM_FLAGS, 0 }, |
e2e1fcde | 1147 | { STRING_COMMA_LEN (".adx"), PROCESSOR_UNKNOWN, |
293f5f65 | 1148 | CPU_ADX_FLAGS, 0 }, |
e2e1fcde | 1149 | { STRING_COMMA_LEN (".rdseed"), PROCESSOR_UNKNOWN, |
293f5f65 | 1150 | CPU_RDSEED_FLAGS, 0 }, |
e2e1fcde | 1151 | { STRING_COMMA_LEN (".prfchw"), PROCESSOR_UNKNOWN, |
293f5f65 | 1152 | CPU_PRFCHW_FLAGS, 0 }, |
5c111e37 | 1153 | { STRING_COMMA_LEN (".smap"), PROCESSOR_UNKNOWN, |
293f5f65 | 1154 | CPU_SMAP_FLAGS, 0 }, |
7e8b059b | 1155 | { STRING_COMMA_LEN (".mpx"), PROCESSOR_UNKNOWN, |
293f5f65 | 1156 | CPU_MPX_FLAGS, 0 }, |
a0046408 | 1157 | { STRING_COMMA_LEN (".sha"), PROCESSOR_UNKNOWN, |
293f5f65 | 1158 | CPU_SHA_FLAGS, 0 }, |
963f3586 | 1159 | { STRING_COMMA_LEN (".clflushopt"), PROCESSOR_UNKNOWN, |
293f5f65 | 1160 | CPU_CLFLUSHOPT_FLAGS, 0 }, |
dcf893b5 | 1161 | { STRING_COMMA_LEN (".prefetchwt1"), PROCESSOR_UNKNOWN, |
293f5f65 | 1162 | CPU_PREFETCHWT1_FLAGS, 0 }, |
2cf200a4 | 1163 | { STRING_COMMA_LEN (".se1"), PROCESSOR_UNKNOWN, |
293f5f65 | 1164 | CPU_SE1_FLAGS, 0 }, |
c5e7287a | 1165 | { STRING_COMMA_LEN (".clwb"), PROCESSOR_UNKNOWN, |
293f5f65 | 1166 | CPU_CLWB_FLAGS, 0 }, |
2cc1b5aa | 1167 | { STRING_COMMA_LEN (".avx512ifma"), PROCESSOR_UNKNOWN, |
293f5f65 | 1168 | CPU_AVX512IFMA_FLAGS, 0 }, |
14f195c9 | 1169 | { STRING_COMMA_LEN (".avx512vbmi"), PROCESSOR_UNKNOWN, |
293f5f65 | 1170 | CPU_AVX512VBMI_FLAGS, 0 }, |
920d2ddc IT |
1171 | { STRING_COMMA_LEN (".avx512_4fmaps"), PROCESSOR_UNKNOWN, |
1172 | CPU_AVX512_4FMAPS_FLAGS, 0 }, | |
47acf0bd IT |
1173 | { STRING_COMMA_LEN (".avx512_4vnniw"), PROCESSOR_UNKNOWN, |
1174 | CPU_AVX512_4VNNIW_FLAGS, 0 }, | |
620214f7 IT |
1175 | { STRING_COMMA_LEN (".avx512_vpopcntdq"), PROCESSOR_UNKNOWN, |
1176 | CPU_AVX512_VPOPCNTDQ_FLAGS, 0 }, | |
53467f57 IT |
1177 | { STRING_COMMA_LEN (".avx512_vbmi2"), PROCESSOR_UNKNOWN, |
1178 | CPU_AVX512_VBMI2_FLAGS, 0 }, | |
8cfcb765 IT |
1179 | { STRING_COMMA_LEN (".avx512_vnni"), PROCESSOR_UNKNOWN, |
1180 | CPU_AVX512_VNNI_FLAGS, 0 }, | |
ee6872be IT |
1181 | { STRING_COMMA_LEN (".avx512_bitalg"), PROCESSOR_UNKNOWN, |
1182 | CPU_AVX512_BITALG_FLAGS, 0 }, | |
58bf9b6a L |
1183 | { STRING_COMMA_LEN (".avx_vnni"), PROCESSOR_UNKNOWN, |
1184 | CPU_AVX_VNNI_FLAGS, 0 }, | |
029f3522 | 1185 | { STRING_COMMA_LEN (".clzero"), PROCESSOR_UNKNOWN, |
293f5f65 | 1186 | CPU_CLZERO_FLAGS, 0 }, |
9916071f | 1187 | { STRING_COMMA_LEN (".mwaitx"), PROCESSOR_UNKNOWN, |
293f5f65 | 1188 | CPU_MWAITX_FLAGS, 0 }, |
8eab4136 | 1189 | { STRING_COMMA_LEN (".ospke"), PROCESSOR_UNKNOWN, |
293f5f65 | 1190 | CPU_OSPKE_FLAGS, 0 }, |
8bc52696 | 1191 | { STRING_COMMA_LEN (".rdpid"), PROCESSOR_UNKNOWN, |
293f5f65 | 1192 | CPU_RDPID_FLAGS, 0 }, |
6b40c462 L |
1193 | { STRING_COMMA_LEN (".ptwrite"), PROCESSOR_UNKNOWN, |
1194 | CPU_PTWRITE_FLAGS, 0 }, | |
d777820b IT |
1195 | { STRING_COMMA_LEN (".ibt"), PROCESSOR_UNKNOWN, |
1196 | CPU_IBT_FLAGS, 0 }, | |
1197 | { STRING_COMMA_LEN (".shstk"), PROCESSOR_UNKNOWN, | |
1198 | CPU_SHSTK_FLAGS, 0 }, | |
48521003 IT |
1199 | { STRING_COMMA_LEN (".gfni"), PROCESSOR_UNKNOWN, |
1200 | CPU_GFNI_FLAGS, 0 }, | |
8dcf1fad IT |
1201 | { STRING_COMMA_LEN (".vaes"), PROCESSOR_UNKNOWN, |
1202 | CPU_VAES_FLAGS, 0 }, | |
ff1982d5 IT |
1203 | { STRING_COMMA_LEN (".vpclmulqdq"), PROCESSOR_UNKNOWN, |
1204 | CPU_VPCLMULQDQ_FLAGS, 0 }, | |
3233d7d0 IT |
1205 | { STRING_COMMA_LEN (".wbnoinvd"), PROCESSOR_UNKNOWN, |
1206 | CPU_WBNOINVD_FLAGS, 0 }, | |
be3a8dca IT |
1207 | { STRING_COMMA_LEN (".pconfig"), PROCESSOR_UNKNOWN, |
1208 | CPU_PCONFIG_FLAGS, 0 }, | |
de89d0a3 IT |
1209 | { STRING_COMMA_LEN (".waitpkg"), PROCESSOR_UNKNOWN, |
1210 | CPU_WAITPKG_FLAGS, 0 }, | |
c48935d7 IT |
1211 | { STRING_COMMA_LEN (".cldemote"), PROCESSOR_UNKNOWN, |
1212 | CPU_CLDEMOTE_FLAGS, 0 }, | |
260cd341 LC |
1213 | { STRING_COMMA_LEN (".amx_int8"), PROCESSOR_UNKNOWN, |
1214 | CPU_AMX_INT8_FLAGS, 0 }, | |
1215 | { STRING_COMMA_LEN (".amx_bf16"), PROCESSOR_UNKNOWN, | |
1216 | CPU_AMX_BF16_FLAGS, 0 }, | |
1217 | { STRING_COMMA_LEN (".amx_tile"), PROCESSOR_UNKNOWN, | |
1218 | CPU_AMX_TILE_FLAGS, 0 }, | |
c0a30a9f L |
1219 | { STRING_COMMA_LEN (".movdiri"), PROCESSOR_UNKNOWN, |
1220 | CPU_MOVDIRI_FLAGS, 0 }, | |
1221 | { STRING_COMMA_LEN (".movdir64b"), PROCESSOR_UNKNOWN, | |
1222 | CPU_MOVDIR64B_FLAGS, 0 }, | |
d6aab7a1 XG |
1223 | { STRING_COMMA_LEN (".avx512_bf16"), PROCESSOR_UNKNOWN, |
1224 | CPU_AVX512_BF16_FLAGS, 0 }, | |
9186c494 L |
1225 | { STRING_COMMA_LEN (".avx512_vp2intersect"), PROCESSOR_UNKNOWN, |
1226 | CPU_AVX512_VP2INTERSECT_FLAGS, 0 }, | |
81d54bb7 CL |
1227 | { STRING_COMMA_LEN (".tdx"), PROCESSOR_UNKNOWN, |
1228 | CPU_TDX_FLAGS, 0 }, | |
dd455cf5 L |
1229 | { STRING_COMMA_LEN (".enqcmd"), PROCESSOR_UNKNOWN, |
1230 | CPU_ENQCMD_FLAGS, 0 }, | |
4b27d27c L |
1231 | { STRING_COMMA_LEN (".serialize"), PROCESSOR_UNKNOWN, |
1232 | CPU_SERIALIZE_FLAGS, 0 }, | |
142861df JB |
1233 | { STRING_COMMA_LEN (".rdpru"), PROCESSOR_UNKNOWN, |
1234 | CPU_RDPRU_FLAGS, 0 }, | |
1235 | { STRING_COMMA_LEN (".mcommit"), PROCESSOR_UNKNOWN, | |
1236 | CPU_MCOMMIT_FLAGS, 0 }, | |
a847e322 JB |
1237 | { STRING_COMMA_LEN (".sev_es"), PROCESSOR_UNKNOWN, |
1238 | CPU_SEV_ES_FLAGS, 0 }, | |
bb651e8b CL |
1239 | { STRING_COMMA_LEN (".tsxldtrk"), PROCESSOR_UNKNOWN, |
1240 | CPU_TSXLDTRK_FLAGS, 0 }, | |
c4694f17 TG |
1241 | { STRING_COMMA_LEN (".kl"), PROCESSOR_UNKNOWN, |
1242 | CPU_KL_FLAGS, 0 }, | |
1243 | { STRING_COMMA_LEN (".widekl"), PROCESSOR_UNKNOWN, | |
1244 | CPU_WIDEKL_FLAGS, 0 }, | |
f64c42a9 LC |
1245 | { STRING_COMMA_LEN (".uintr"), PROCESSOR_UNKNOWN, |
1246 | CPU_UINTR_FLAGS, 0 }, | |
c1fa250a LC |
1247 | { STRING_COMMA_LEN (".hreset"), PROCESSOR_UNKNOWN, |
1248 | CPU_HRESET_FLAGS, 0 }, | |
293f5f65 L |
1249 | }; |
1250 | ||
1251 | static const noarch_entry cpu_noarch[] = | |
1252 | { | |
1253 | { STRING_COMMA_LEN ("no87"), CPU_ANY_X87_FLAGS }, | |
1848e567 L |
1254 | { STRING_COMMA_LEN ("no287"), CPU_ANY_287_FLAGS }, |
1255 | { STRING_COMMA_LEN ("no387"), CPU_ANY_387_FLAGS }, | |
1256 | { STRING_COMMA_LEN ("no687"), CPU_ANY_687_FLAGS }, | |
d871f3f4 L |
1257 | { STRING_COMMA_LEN ("nocmov"), CPU_ANY_CMOV_FLAGS }, |
1258 | { STRING_COMMA_LEN ("nofxsr"), CPU_ANY_FXSR_FLAGS }, | |
293f5f65 L |
1259 | { STRING_COMMA_LEN ("nommx"), CPU_ANY_MMX_FLAGS }, |
1260 | { STRING_COMMA_LEN ("nosse"), CPU_ANY_SSE_FLAGS }, | |
1848e567 L |
1261 | { STRING_COMMA_LEN ("nosse2"), CPU_ANY_SSE2_FLAGS }, |
1262 | { STRING_COMMA_LEN ("nosse3"), CPU_ANY_SSE3_FLAGS }, | |
af5c13b0 | 1263 | { STRING_COMMA_LEN ("nosse4a"), CPU_ANY_SSE4A_FLAGS }, |
1848e567 L |
1264 | { STRING_COMMA_LEN ("nossse3"), CPU_ANY_SSSE3_FLAGS }, |
1265 | { STRING_COMMA_LEN ("nosse4.1"), CPU_ANY_SSE4_1_FLAGS }, | |
1266 | { STRING_COMMA_LEN ("nosse4.2"), CPU_ANY_SSE4_2_FLAGS }, | |
af5c13b0 | 1267 | { STRING_COMMA_LEN ("nosse4"), CPU_ANY_SSE4_1_FLAGS }, |
293f5f65 | 1268 | { STRING_COMMA_LEN ("noavx"), CPU_ANY_AVX_FLAGS }, |
1848e567 | 1269 | { STRING_COMMA_LEN ("noavx2"), CPU_ANY_AVX2_FLAGS }, |
144b71e2 L |
1270 | { STRING_COMMA_LEN ("noavx512f"), CPU_ANY_AVX512F_FLAGS }, |
1271 | { STRING_COMMA_LEN ("noavx512cd"), CPU_ANY_AVX512CD_FLAGS }, | |
1272 | { STRING_COMMA_LEN ("noavx512er"), CPU_ANY_AVX512ER_FLAGS }, | |
1273 | { STRING_COMMA_LEN ("noavx512pf"), CPU_ANY_AVX512PF_FLAGS }, | |
1274 | { STRING_COMMA_LEN ("noavx512dq"), CPU_ANY_AVX512DQ_FLAGS }, | |
1275 | { STRING_COMMA_LEN ("noavx512bw"), CPU_ANY_AVX512BW_FLAGS }, | |
1276 | { STRING_COMMA_LEN ("noavx512vl"), CPU_ANY_AVX512VL_FLAGS }, | |
1277 | { STRING_COMMA_LEN ("noavx512ifma"), CPU_ANY_AVX512IFMA_FLAGS }, | |
1278 | { STRING_COMMA_LEN ("noavx512vbmi"), CPU_ANY_AVX512VBMI_FLAGS }, | |
920d2ddc | 1279 | { STRING_COMMA_LEN ("noavx512_4fmaps"), CPU_ANY_AVX512_4FMAPS_FLAGS }, |
47acf0bd | 1280 | { STRING_COMMA_LEN ("noavx512_4vnniw"), CPU_ANY_AVX512_4VNNIW_FLAGS }, |
620214f7 | 1281 | { STRING_COMMA_LEN ("noavx512_vpopcntdq"), CPU_ANY_AVX512_VPOPCNTDQ_FLAGS }, |
53467f57 | 1282 | { STRING_COMMA_LEN ("noavx512_vbmi2"), CPU_ANY_AVX512_VBMI2_FLAGS }, |
8cfcb765 | 1283 | { STRING_COMMA_LEN ("noavx512_vnni"), CPU_ANY_AVX512_VNNI_FLAGS }, |
ee6872be | 1284 | { STRING_COMMA_LEN ("noavx512_bitalg"), CPU_ANY_AVX512_BITALG_FLAGS }, |
58bf9b6a | 1285 | { STRING_COMMA_LEN ("noavx_vnni"), CPU_ANY_AVX_VNNI_FLAGS }, |
d777820b IT |
1286 | { STRING_COMMA_LEN ("noibt"), CPU_ANY_IBT_FLAGS }, |
1287 | { STRING_COMMA_LEN ("noshstk"), CPU_ANY_SHSTK_FLAGS }, | |
260cd341 LC |
1288 | { STRING_COMMA_LEN ("noamx_int8"), CPU_ANY_AMX_INT8_FLAGS }, |
1289 | { STRING_COMMA_LEN ("noamx_bf16"), CPU_ANY_AMX_BF16_FLAGS }, | |
1290 | { STRING_COMMA_LEN ("noamx_tile"), CPU_ANY_AMX_TILE_FLAGS }, | |
c0a30a9f L |
1291 | { STRING_COMMA_LEN ("nomovdiri"), CPU_ANY_MOVDIRI_FLAGS }, |
1292 | { STRING_COMMA_LEN ("nomovdir64b"), CPU_ANY_MOVDIR64B_FLAGS }, | |
d6aab7a1 | 1293 | { STRING_COMMA_LEN ("noavx512_bf16"), CPU_ANY_AVX512_BF16_FLAGS }, |
708a2fff CL |
1294 | { STRING_COMMA_LEN ("noavx512_vp2intersect"), |
1295 | CPU_ANY_AVX512_VP2INTERSECT_FLAGS }, | |
81d54bb7 | 1296 | { STRING_COMMA_LEN ("notdx"), CPU_ANY_TDX_FLAGS }, |
dd455cf5 | 1297 | { STRING_COMMA_LEN ("noenqcmd"), CPU_ANY_ENQCMD_FLAGS }, |
4b27d27c | 1298 | { STRING_COMMA_LEN ("noserialize"), CPU_ANY_SERIALIZE_FLAGS }, |
bb651e8b | 1299 | { STRING_COMMA_LEN ("notsxldtrk"), CPU_ANY_TSXLDTRK_FLAGS }, |
c4694f17 TG |
1300 | { STRING_COMMA_LEN ("nokl"), CPU_ANY_KL_FLAGS }, |
1301 | { STRING_COMMA_LEN ("nowidekl"), CPU_ANY_WIDEKL_FLAGS }, | |
f64c42a9 | 1302 | { STRING_COMMA_LEN ("nouintr"), CPU_ANY_UINTR_FLAGS }, |
c1fa250a | 1303 | { STRING_COMMA_LEN ("nohreset"), CPU_ANY_HRESET_FLAGS }, |
e413e4e9 AM |
1304 | }; |
1305 | ||
704209c0 | 1306 | #ifdef I386COFF |
a6c24e68 NC |
1307 | /* Like s_lcomm_internal in gas/read.c but the alignment string |
1308 | is allowed to be optional. */ | |
1309 | ||
1310 | static symbolS * | |
1311 | pe_lcomm_internal (int needs_align, symbolS *symbolP, addressT size) | |
1312 | { | |
1313 | addressT align = 0; | |
1314 | ||
1315 | SKIP_WHITESPACE (); | |
1316 | ||
7ab9ffdd | 1317 | if (needs_align |
a6c24e68 NC |
1318 | && *input_line_pointer == ',') |
1319 | { | |
1320 | align = parse_align (needs_align - 1); | |
7ab9ffdd | 1321 | |
a6c24e68 NC |
1322 | if (align == (addressT) -1) |
1323 | return NULL; | |
1324 | } | |
1325 | else | |
1326 | { | |
1327 | if (size >= 8) | |
1328 | align = 3; | |
1329 | else if (size >= 4) | |
1330 | align = 2; | |
1331 | else if (size >= 2) | |
1332 | align = 1; | |
1333 | else | |
1334 | align = 0; | |
1335 | } | |
1336 | ||
1337 | bss_alloc (symbolP, size, align); | |
1338 | return symbolP; | |
1339 | } | |
1340 | ||
704209c0 | 1341 | static void |
a6c24e68 NC |
1342 | pe_lcomm (int needs_align) |
1343 | { | |
1344 | s_comm_internal (needs_align * 2, pe_lcomm_internal); | |
1345 | } | |
704209c0 | 1346 | #endif |
a6c24e68 | 1347 | |
29b0f896 AM |
1348 | const pseudo_typeS md_pseudo_table[] = |
1349 | { | |
1350 | #if !defined(OBJ_AOUT) && !defined(USE_ALIGN_PTWO) | |
1351 | {"align", s_align_bytes, 0}, | |
1352 | #else | |
1353 | {"align", s_align_ptwo, 0}, | |
1354 | #endif | |
1355 | {"arch", set_cpu_arch, 0}, | |
1356 | #ifndef I386COFF | |
1357 | {"bss", s_bss, 0}, | |
a6c24e68 NC |
1358 | #else |
1359 | {"lcomm", pe_lcomm, 1}, | |
29b0f896 AM |
1360 | #endif |
1361 | {"ffloat", float_cons, 'f'}, | |
1362 | {"dfloat", float_cons, 'd'}, | |
1363 | {"tfloat", float_cons, 'x'}, | |
1364 | {"value", cons, 2}, | |
d182319b | 1365 | {"slong", signed_cons, 4}, |
29b0f896 AM |
1366 | {"noopt", s_ignore, 0}, |
1367 | {"optim", s_ignore, 0}, | |
1368 | {"code16gcc", set_16bit_gcc_code_flag, CODE_16BIT}, | |
1369 | {"code16", set_code_flag, CODE_16BIT}, | |
1370 | {"code32", set_code_flag, CODE_32BIT}, | |
da5f19a2 | 1371 | #ifdef BFD64 |
29b0f896 | 1372 | {"code64", set_code_flag, CODE_64BIT}, |
da5f19a2 | 1373 | #endif |
29b0f896 AM |
1374 | {"intel_syntax", set_intel_syntax, 1}, |
1375 | {"att_syntax", set_intel_syntax, 0}, | |
1efbbeb4 L |
1376 | {"intel_mnemonic", set_intel_mnemonic, 1}, |
1377 | {"att_mnemonic", set_intel_mnemonic, 0}, | |
db51cc60 L |
1378 | {"allow_index_reg", set_allow_index_reg, 1}, |
1379 | {"disallow_index_reg", set_allow_index_reg, 0}, | |
7bab8ab5 JB |
1380 | {"sse_check", set_check, 0}, |
1381 | {"operand_check", set_check, 1}, | |
3b22753a L |
1382 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
1383 | {"largecomm", handle_large_common, 0}, | |
07a53e5c | 1384 | #else |
68d20676 | 1385 | {"file", dwarf2_directive_file, 0}, |
07a53e5c RH |
1386 | {"loc", dwarf2_directive_loc, 0}, |
1387 | {"loc_mark_labels", dwarf2_directive_loc_mark_labels, 0}, | |
3b22753a | 1388 | #endif |
6482c264 NC |
1389 | #ifdef TE_PE |
1390 | {"secrel32", pe_directive_secrel, 0}, | |
1391 | #endif | |
29b0f896 AM |
1392 | {0, 0, 0} |
1393 | }; | |
1394 | ||
1395 | /* For interface with expression (). */ | |
1396 | extern char *input_line_pointer; | |
1397 | ||
1398 | /* Hash table for instruction mnemonic lookup. */ | |
629310ab | 1399 | static htab_t op_hash; |
29b0f896 AM |
1400 | |
1401 | /* Hash table for register lookup. */ | |
629310ab | 1402 | static htab_t reg_hash; |
29b0f896 | 1403 | \f |
ce8a8b2f AM |
1404 | /* Various efficient no-op patterns for aligning code labels. |
1405 | Note: Don't try to assemble the instructions in the comments. | |
1406 | 0L and 0w are not legal. */ | |
62a02d25 L |
1407 | static const unsigned char f32_1[] = |
1408 | {0x90}; /* nop */ | |
1409 | static const unsigned char f32_2[] = | |
1410 | {0x66,0x90}; /* xchg %ax,%ax */ | |
1411 | static const unsigned char f32_3[] = | |
1412 | {0x8d,0x76,0x00}; /* leal 0(%esi),%esi */ | |
1413 | static const unsigned char f32_4[] = | |
1414 | {0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */ | |
62a02d25 L |
1415 | static const unsigned char f32_6[] = |
1416 | {0x8d,0xb6,0x00,0x00,0x00,0x00}; /* leal 0L(%esi),%esi */ | |
1417 | static const unsigned char f32_7[] = | |
1418 | {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */ | |
62a02d25 | 1419 | static const unsigned char f16_3[] = |
3ae729d5 | 1420 | {0x8d,0x74,0x00}; /* lea 0(%si),%si */ |
62a02d25 | 1421 | static const unsigned char f16_4[] = |
3ae729d5 L |
1422 | {0x8d,0xb4,0x00,0x00}; /* lea 0W(%si),%si */ |
1423 | static const unsigned char jump_disp8[] = | |
1424 | {0xeb}; /* jmp disp8 */ | |
1425 | static const unsigned char jump32_disp32[] = | |
1426 | {0xe9}; /* jmp disp32 */ | |
1427 | static const unsigned char jump16_disp32[] = | |
1428 | {0x66,0xe9}; /* jmp disp32 */ | |
62a02d25 L |
1429 | /* 32-bit NOPs patterns. */ |
1430 | static const unsigned char *const f32_patt[] = { | |
3ae729d5 | 1431 | f32_1, f32_2, f32_3, f32_4, NULL, f32_6, f32_7 |
62a02d25 L |
1432 | }; |
1433 | /* 16-bit NOPs patterns. */ | |
1434 | static const unsigned char *const f16_patt[] = { | |
3ae729d5 | 1435 | f32_1, f32_2, f16_3, f16_4 |
62a02d25 L |
1436 | }; |
1437 | /* nopl (%[re]ax) */ | |
1438 | static const unsigned char alt_3[] = | |
1439 | {0x0f,0x1f,0x00}; | |
1440 | /* nopl 0(%[re]ax) */ | |
1441 | static const unsigned char alt_4[] = | |
1442 | {0x0f,0x1f,0x40,0x00}; | |
1443 | /* nopl 0(%[re]ax,%[re]ax,1) */ | |
1444 | static const unsigned char alt_5[] = | |
1445 | {0x0f,0x1f,0x44,0x00,0x00}; | |
1446 | /* nopw 0(%[re]ax,%[re]ax,1) */ | |
1447 | static const unsigned char alt_6[] = | |
1448 | {0x66,0x0f,0x1f,0x44,0x00,0x00}; | |
1449 | /* nopl 0L(%[re]ax) */ | |
1450 | static const unsigned char alt_7[] = | |
1451 | {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00}; | |
1452 | /* nopl 0L(%[re]ax,%[re]ax,1) */ | |
1453 | static const unsigned char alt_8[] = | |
1454 | {0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00}; | |
1455 | /* nopw 0L(%[re]ax,%[re]ax,1) */ | |
1456 | static const unsigned char alt_9[] = | |
1457 | {0x66,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00}; | |
1458 | /* nopw %cs:0L(%[re]ax,%[re]ax,1) */ | |
1459 | static const unsigned char alt_10[] = | |
1460 | {0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00}; | |
3ae729d5 L |
1461 | /* data16 nopw %cs:0L(%eax,%eax,1) */ |
1462 | static const unsigned char alt_11[] = | |
1463 | {0x66,0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00}; | |
62a02d25 L |
1464 | /* 32-bit and 64-bit NOPs patterns. */ |
1465 | static const unsigned char *const alt_patt[] = { | |
1466 | f32_1, f32_2, alt_3, alt_4, alt_5, alt_6, alt_7, alt_8, | |
3ae729d5 | 1467 | alt_9, alt_10, alt_11 |
62a02d25 L |
1468 | }; |
1469 | ||
1470 | /* Genenerate COUNT bytes of NOPs to WHERE from PATT with the maximum | |
1471 | size of a single NOP instruction MAX_SINGLE_NOP_SIZE. */ | |
1472 | ||
1473 | static void | |
1474 | i386_output_nops (char *where, const unsigned char *const *patt, | |
1475 | int count, int max_single_nop_size) | |
1476 | ||
1477 | { | |
3ae729d5 L |
1478 | /* Place the longer NOP first. */ |
1479 | int last; | |
1480 | int offset; | |
3076e594 NC |
1481 | const unsigned char *nops; |
1482 | ||
1483 | if (max_single_nop_size < 1) | |
1484 | { | |
1485 | as_fatal (_("i386_output_nops called to generate nops of at most %d bytes!"), | |
1486 | max_single_nop_size); | |
1487 | return; | |
1488 | } | |
1489 | ||
1490 | nops = patt[max_single_nop_size - 1]; | |
3ae729d5 L |
1491 | |
1492 | /* Use the smaller one if the requsted one isn't available. */ | |
1493 | if (nops == NULL) | |
62a02d25 | 1494 | { |
3ae729d5 L |
1495 | max_single_nop_size--; |
1496 | nops = patt[max_single_nop_size - 1]; | |
62a02d25 L |
1497 | } |
1498 | ||
3ae729d5 L |
1499 | last = count % max_single_nop_size; |
1500 | ||
1501 | count -= last; | |
1502 | for (offset = 0; offset < count; offset += max_single_nop_size) | |
1503 | memcpy (where + offset, nops, max_single_nop_size); | |
1504 | ||
1505 | if (last) | |
1506 | { | |
1507 | nops = patt[last - 1]; | |
1508 | if (nops == NULL) | |
1509 | { | |
1510 | /* Use the smaller one plus one-byte NOP if the needed one | |
1511 | isn't available. */ | |
1512 | last--; | |
1513 | nops = patt[last - 1]; | |
1514 | memcpy (where + offset, nops, last); | |
1515 | where[offset + last] = *patt[0]; | |
1516 | } | |
1517 | else | |
1518 | memcpy (where + offset, nops, last); | |
1519 | } | |
62a02d25 L |
1520 | } |
1521 | ||
3ae729d5 L |
1522 | static INLINE int |
1523 | fits_in_imm7 (offsetT num) | |
1524 | { | |
1525 | return (num & 0x7f) == num; | |
1526 | } | |
1527 | ||
1528 | static INLINE int | |
1529 | fits_in_imm31 (offsetT num) | |
1530 | { | |
1531 | return (num & 0x7fffffff) == num; | |
1532 | } | |
62a02d25 L |
1533 | |
1534 | /* Genenerate COUNT bytes of NOPs to WHERE with the maximum size of a | |
1535 | single NOP instruction LIMIT. */ | |
1536 | ||
1537 | void | |
3ae729d5 | 1538 | i386_generate_nops (fragS *fragP, char *where, offsetT count, int limit) |
62a02d25 | 1539 | { |
3ae729d5 | 1540 | const unsigned char *const *patt = NULL; |
62a02d25 | 1541 | int max_single_nop_size; |
3ae729d5 L |
1542 | /* Maximum number of NOPs before switching to jump over NOPs. */ |
1543 | int max_number_of_nops; | |
62a02d25 | 1544 | |
3ae729d5 | 1545 | switch (fragP->fr_type) |
62a02d25 | 1546 | { |
3ae729d5 L |
1547 | case rs_fill_nop: |
1548 | case rs_align_code: | |
1549 | break; | |
e379e5f3 L |
1550 | case rs_machine_dependent: |
1551 | /* Allow NOP padding for jumps and calls. */ | |
1552 | if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING | |
1553 | || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING) | |
1554 | break; | |
1555 | /* Fall through. */ | |
3ae729d5 | 1556 | default: |
62a02d25 L |
1557 | return; |
1558 | } | |
1559 | ||
ccc9c027 L |
1560 | /* We need to decide which NOP sequence to use for 32bit and |
1561 | 64bit. When -mtune= is used: | |
4eed87de | 1562 | |
76bc74dc L |
1563 | 1. For PROCESSOR_I386, PROCESSOR_I486, PROCESSOR_PENTIUM and |
1564 | PROCESSOR_GENERIC32, f32_patt will be used. | |
80b8656c L |
1565 | 2. For the rest, alt_patt will be used. |
1566 | ||
1567 | When -mtune= isn't used, alt_patt will be used if | |
22109423 | 1568 | cpu_arch_isa_flags has CpuNop. Otherwise, f32_patt will |
76bc74dc | 1569 | be used. |
ccc9c027 L |
1570 | |
1571 | When -march= or .arch is used, we can't use anything beyond | |
1572 | cpu_arch_isa_flags. */ | |
1573 | ||
1574 | if (flag_code == CODE_16BIT) | |
1575 | { | |
3ae729d5 L |
1576 | patt = f16_patt; |
1577 | max_single_nop_size = sizeof (f16_patt) / sizeof (f16_patt[0]); | |
1578 | /* Limit number of NOPs to 2 in 16-bit mode. */ | |
1579 | max_number_of_nops = 2; | |
252b5132 | 1580 | } |
33fef721 | 1581 | else |
ccc9c027 | 1582 | { |
fbf3f584 | 1583 | if (fragP->tc_frag_data.isa == PROCESSOR_UNKNOWN) |
ccc9c027 L |
1584 | { |
1585 | /* PROCESSOR_UNKNOWN means that all ISAs may be used. */ | |
1586 | switch (cpu_arch_tune) | |
1587 | { | |
1588 | case PROCESSOR_UNKNOWN: | |
1589 | /* We use cpu_arch_isa_flags to check if we SHOULD | |
22109423 L |
1590 | optimize with nops. */ |
1591 | if (fragP->tc_frag_data.isa_flags.bitfield.cpunop) | |
80b8656c | 1592 | patt = alt_patt; |
ccc9c027 L |
1593 | else |
1594 | patt = f32_patt; | |
1595 | break; | |
ccc9c027 L |
1596 | case PROCESSOR_PENTIUM4: |
1597 | case PROCESSOR_NOCONA: | |
ef05d495 | 1598 | case PROCESSOR_CORE: |
76bc74dc | 1599 | case PROCESSOR_CORE2: |
bd5295b2 | 1600 | case PROCESSOR_COREI7: |
3632d14b | 1601 | case PROCESSOR_L1OM: |
7a9068fe | 1602 | case PROCESSOR_K1OM: |
76bc74dc | 1603 | case PROCESSOR_GENERIC64: |
ccc9c027 L |
1604 | case PROCESSOR_K6: |
1605 | case PROCESSOR_ATHLON: | |
1606 | case PROCESSOR_K8: | |
4eed87de | 1607 | case PROCESSOR_AMDFAM10: |
8aedb9fe | 1608 | case PROCESSOR_BD: |
029f3522 | 1609 | case PROCESSOR_ZNVER: |
7b458c12 | 1610 | case PROCESSOR_BT: |
80b8656c | 1611 | patt = alt_patt; |
ccc9c027 | 1612 | break; |
76bc74dc | 1613 | case PROCESSOR_I386: |
ccc9c027 L |
1614 | case PROCESSOR_I486: |
1615 | case PROCESSOR_PENTIUM: | |
2dde1948 | 1616 | case PROCESSOR_PENTIUMPRO: |
81486035 | 1617 | case PROCESSOR_IAMCU: |
ccc9c027 L |
1618 | case PROCESSOR_GENERIC32: |
1619 | patt = f32_patt; | |
1620 | break; | |
4eed87de | 1621 | } |
ccc9c027 L |
1622 | } |
1623 | else | |
1624 | { | |
fbf3f584 | 1625 | switch (fragP->tc_frag_data.tune) |
ccc9c027 L |
1626 | { |
1627 | case PROCESSOR_UNKNOWN: | |
e6a14101 | 1628 | /* When cpu_arch_isa is set, cpu_arch_tune shouldn't be |
ccc9c027 L |
1629 | PROCESSOR_UNKNOWN. */ |
1630 | abort (); | |
1631 | break; | |
1632 | ||
76bc74dc | 1633 | case PROCESSOR_I386: |
ccc9c027 L |
1634 | case PROCESSOR_I486: |
1635 | case PROCESSOR_PENTIUM: | |
81486035 | 1636 | case PROCESSOR_IAMCU: |
ccc9c027 L |
1637 | case PROCESSOR_K6: |
1638 | case PROCESSOR_ATHLON: | |
1639 | case PROCESSOR_K8: | |
4eed87de | 1640 | case PROCESSOR_AMDFAM10: |
8aedb9fe | 1641 | case PROCESSOR_BD: |
029f3522 | 1642 | case PROCESSOR_ZNVER: |
7b458c12 | 1643 | case PROCESSOR_BT: |
ccc9c027 L |
1644 | case PROCESSOR_GENERIC32: |
1645 | /* We use cpu_arch_isa_flags to check if we CAN optimize | |
22109423 L |
1646 | with nops. */ |
1647 | if (fragP->tc_frag_data.isa_flags.bitfield.cpunop) | |
80b8656c | 1648 | patt = alt_patt; |
ccc9c027 L |
1649 | else |
1650 | patt = f32_patt; | |
1651 | break; | |
76bc74dc L |
1652 | case PROCESSOR_PENTIUMPRO: |
1653 | case PROCESSOR_PENTIUM4: | |
1654 | case PROCESSOR_NOCONA: | |
1655 | case PROCESSOR_CORE: | |
ef05d495 | 1656 | case PROCESSOR_CORE2: |
bd5295b2 | 1657 | case PROCESSOR_COREI7: |
3632d14b | 1658 | case PROCESSOR_L1OM: |
7a9068fe | 1659 | case PROCESSOR_K1OM: |
22109423 | 1660 | if (fragP->tc_frag_data.isa_flags.bitfield.cpunop) |
80b8656c | 1661 | patt = alt_patt; |
ccc9c027 L |
1662 | else |
1663 | patt = f32_patt; | |
1664 | break; | |
1665 | case PROCESSOR_GENERIC64: | |
80b8656c | 1666 | patt = alt_patt; |
ccc9c027 | 1667 | break; |
4eed87de | 1668 | } |
ccc9c027 L |
1669 | } |
1670 | ||
76bc74dc L |
1671 | if (patt == f32_patt) |
1672 | { | |
3ae729d5 L |
1673 | max_single_nop_size = sizeof (f32_patt) / sizeof (f32_patt[0]); |
1674 | /* Limit number of NOPs to 2 for older processors. */ | |
1675 | max_number_of_nops = 2; | |
76bc74dc L |
1676 | } |
1677 | else | |
1678 | { | |
3ae729d5 L |
1679 | max_single_nop_size = sizeof (alt_patt) / sizeof (alt_patt[0]); |
1680 | /* Limit number of NOPs to 7 for newer processors. */ | |
1681 | max_number_of_nops = 7; | |
1682 | } | |
1683 | } | |
1684 | ||
1685 | if (limit == 0) | |
1686 | limit = max_single_nop_size; | |
1687 | ||
1688 | if (fragP->fr_type == rs_fill_nop) | |
1689 | { | |
1690 | /* Output NOPs for .nop directive. */ | |
1691 | if (limit > max_single_nop_size) | |
1692 | { | |
1693 | as_bad_where (fragP->fr_file, fragP->fr_line, | |
1694 | _("invalid single nop size: %d " | |
1695 | "(expect within [0, %d])"), | |
1696 | limit, max_single_nop_size); | |
1697 | return; | |
1698 | } | |
1699 | } | |
e379e5f3 | 1700 | else if (fragP->fr_type != rs_machine_dependent) |
3ae729d5 L |
1701 | fragP->fr_var = count; |
1702 | ||
1703 | if ((count / max_single_nop_size) > max_number_of_nops) | |
1704 | { | |
1705 | /* Generate jump over NOPs. */ | |
1706 | offsetT disp = count - 2; | |
1707 | if (fits_in_imm7 (disp)) | |
1708 | { | |
1709 | /* Use "jmp disp8" if possible. */ | |
1710 | count = disp; | |
1711 | where[0] = jump_disp8[0]; | |
1712 | where[1] = count; | |
1713 | where += 2; | |
1714 | } | |
1715 | else | |
1716 | { | |
1717 | unsigned int size_of_jump; | |
1718 | ||
1719 | if (flag_code == CODE_16BIT) | |
1720 | { | |
1721 | where[0] = jump16_disp32[0]; | |
1722 | where[1] = jump16_disp32[1]; | |
1723 | size_of_jump = 2; | |
1724 | } | |
1725 | else | |
1726 | { | |
1727 | where[0] = jump32_disp32[0]; | |
1728 | size_of_jump = 1; | |
1729 | } | |
1730 | ||
1731 | count -= size_of_jump + 4; | |
1732 | if (!fits_in_imm31 (count)) | |
1733 | { | |
1734 | as_bad_where (fragP->fr_file, fragP->fr_line, | |
1735 | _("jump over nop padding out of range")); | |
1736 | return; | |
1737 | } | |
1738 | ||
1739 | md_number_to_chars (where + size_of_jump, count, 4); | |
1740 | where += size_of_jump + 4; | |
76bc74dc | 1741 | } |
ccc9c027 | 1742 | } |
3ae729d5 L |
1743 | |
1744 | /* Generate multiple NOPs. */ | |
1745 | i386_output_nops (where, patt, count, limit); | |
252b5132 RH |
1746 | } |
1747 | ||
c6fb90c8 | 1748 | static INLINE int |
0dfbf9d7 | 1749 | operand_type_all_zero (const union i386_operand_type *x) |
40fb9820 | 1750 | { |
0dfbf9d7 | 1751 | switch (ARRAY_SIZE(x->array)) |
c6fb90c8 L |
1752 | { |
1753 | case 3: | |
0dfbf9d7 | 1754 | if (x->array[2]) |
c6fb90c8 | 1755 | return 0; |
1a0670f3 | 1756 | /* Fall through. */ |
c6fb90c8 | 1757 | case 2: |
0dfbf9d7 | 1758 | if (x->array[1]) |
c6fb90c8 | 1759 | return 0; |
1a0670f3 | 1760 | /* Fall through. */ |
c6fb90c8 | 1761 | case 1: |
0dfbf9d7 | 1762 | return !x->array[0]; |
c6fb90c8 L |
1763 | default: |
1764 | abort (); | |
1765 | } | |
40fb9820 L |
1766 | } |
1767 | ||
c6fb90c8 | 1768 | static INLINE void |
0dfbf9d7 | 1769 | operand_type_set (union i386_operand_type *x, unsigned int v) |
40fb9820 | 1770 | { |
0dfbf9d7 | 1771 | switch (ARRAY_SIZE(x->array)) |
c6fb90c8 L |
1772 | { |
1773 | case 3: | |
0dfbf9d7 | 1774 | x->array[2] = v; |
1a0670f3 | 1775 | /* Fall through. */ |
c6fb90c8 | 1776 | case 2: |
0dfbf9d7 | 1777 | x->array[1] = v; |
1a0670f3 | 1778 | /* Fall through. */ |
c6fb90c8 | 1779 | case 1: |
0dfbf9d7 | 1780 | x->array[0] = v; |
1a0670f3 | 1781 | /* Fall through. */ |
c6fb90c8 L |
1782 | break; |
1783 | default: | |
1784 | abort (); | |
1785 | } | |
bab6aec1 JB |
1786 | |
1787 | x->bitfield.class = ClassNone; | |
75e5731b | 1788 | x->bitfield.instance = InstanceNone; |
c6fb90c8 | 1789 | } |
40fb9820 | 1790 | |
c6fb90c8 | 1791 | static INLINE int |
0dfbf9d7 L |
1792 | operand_type_equal (const union i386_operand_type *x, |
1793 | const union i386_operand_type *y) | |
c6fb90c8 | 1794 | { |
0dfbf9d7 | 1795 | switch (ARRAY_SIZE(x->array)) |
c6fb90c8 L |
1796 | { |
1797 | case 3: | |
0dfbf9d7 | 1798 | if (x->array[2] != y->array[2]) |
c6fb90c8 | 1799 | return 0; |
1a0670f3 | 1800 | /* Fall through. */ |
c6fb90c8 | 1801 | case 2: |
0dfbf9d7 | 1802 | if (x->array[1] != y->array[1]) |
c6fb90c8 | 1803 | return 0; |
1a0670f3 | 1804 | /* Fall through. */ |
c6fb90c8 | 1805 | case 1: |
0dfbf9d7 | 1806 | return x->array[0] == y->array[0]; |
c6fb90c8 L |
1807 | break; |
1808 | default: | |
1809 | abort (); | |
1810 | } | |
1811 | } | |
40fb9820 | 1812 | |
0dfbf9d7 L |
1813 | static INLINE int |
1814 | cpu_flags_all_zero (const union i386_cpu_flags *x) | |
1815 | { | |
1816 | switch (ARRAY_SIZE(x->array)) | |
1817 | { | |
53467f57 IT |
1818 | case 4: |
1819 | if (x->array[3]) | |
1820 | return 0; | |
1821 | /* Fall through. */ | |
0dfbf9d7 L |
1822 | case 3: |
1823 | if (x->array[2]) | |
1824 | return 0; | |
1a0670f3 | 1825 | /* Fall through. */ |
0dfbf9d7 L |
1826 | case 2: |
1827 | if (x->array[1]) | |
1828 | return 0; | |
1a0670f3 | 1829 | /* Fall through. */ |
0dfbf9d7 L |
1830 | case 1: |
1831 | return !x->array[0]; | |
1832 | default: | |
1833 | abort (); | |
1834 | } | |
1835 | } | |
1836 | ||
0dfbf9d7 L |
1837 | static INLINE int |
1838 | cpu_flags_equal (const union i386_cpu_flags *x, | |
1839 | const union i386_cpu_flags *y) | |
1840 | { | |
1841 | switch (ARRAY_SIZE(x->array)) | |
1842 | { | |
53467f57 IT |
1843 | case 4: |
1844 | if (x->array[3] != y->array[3]) | |
1845 | return 0; | |
1846 | /* Fall through. */ | |
0dfbf9d7 L |
1847 | case 3: |
1848 | if (x->array[2] != y->array[2]) | |
1849 | return 0; | |
1a0670f3 | 1850 | /* Fall through. */ |
0dfbf9d7 L |
1851 | case 2: |
1852 | if (x->array[1] != y->array[1]) | |
1853 | return 0; | |
1a0670f3 | 1854 | /* Fall through. */ |
0dfbf9d7 L |
1855 | case 1: |
1856 | return x->array[0] == y->array[0]; | |
1857 | break; | |
1858 | default: | |
1859 | abort (); | |
1860 | } | |
1861 | } | |
c6fb90c8 L |
1862 | |
1863 | static INLINE int | |
1864 | cpu_flags_check_cpu64 (i386_cpu_flags f) | |
1865 | { | |
1866 | return !((flag_code == CODE_64BIT && f.bitfield.cpuno64) | |
1867 | || (flag_code != CODE_64BIT && f.bitfield.cpu64)); | |
40fb9820 L |
1868 | } |
1869 | ||
c6fb90c8 L |
1870 | static INLINE i386_cpu_flags |
1871 | cpu_flags_and (i386_cpu_flags x, i386_cpu_flags y) | |
40fb9820 | 1872 | { |
c6fb90c8 L |
1873 | switch (ARRAY_SIZE (x.array)) |
1874 | { | |
53467f57 IT |
1875 | case 4: |
1876 | x.array [3] &= y.array [3]; | |
1877 | /* Fall through. */ | |
c6fb90c8 L |
1878 | case 3: |
1879 | x.array [2] &= y.array [2]; | |
1a0670f3 | 1880 | /* Fall through. */ |
c6fb90c8 L |
1881 | case 2: |
1882 | x.array [1] &= y.array [1]; | |
1a0670f3 | 1883 | /* Fall through. */ |
c6fb90c8 L |
1884 | case 1: |
1885 | x.array [0] &= y.array [0]; | |
1886 | break; | |
1887 | default: | |
1888 | abort (); | |
1889 | } | |
1890 | return x; | |
1891 | } | |
40fb9820 | 1892 | |
c6fb90c8 L |
1893 | static INLINE i386_cpu_flags |
1894 | cpu_flags_or (i386_cpu_flags x, i386_cpu_flags y) | |
40fb9820 | 1895 | { |
c6fb90c8 | 1896 | switch (ARRAY_SIZE (x.array)) |
40fb9820 | 1897 | { |
53467f57 IT |
1898 | case 4: |
1899 | x.array [3] |= y.array [3]; | |
1900 | /* Fall through. */ | |
c6fb90c8 L |
1901 | case 3: |
1902 | x.array [2] |= y.array [2]; | |
1a0670f3 | 1903 | /* Fall through. */ |
c6fb90c8 L |
1904 | case 2: |
1905 | x.array [1] |= y.array [1]; | |
1a0670f3 | 1906 | /* Fall through. */ |
c6fb90c8 L |
1907 | case 1: |
1908 | x.array [0] |= y.array [0]; | |
40fb9820 L |
1909 | break; |
1910 | default: | |
1911 | abort (); | |
1912 | } | |
40fb9820 L |
1913 | return x; |
1914 | } | |
1915 | ||
309d3373 JB |
1916 | static INLINE i386_cpu_flags |
1917 | cpu_flags_and_not (i386_cpu_flags x, i386_cpu_flags y) | |
1918 | { | |
1919 | switch (ARRAY_SIZE (x.array)) | |
1920 | { | |
53467f57 IT |
1921 | case 4: |
1922 | x.array [3] &= ~y.array [3]; | |
1923 | /* Fall through. */ | |
309d3373 JB |
1924 | case 3: |
1925 | x.array [2] &= ~y.array [2]; | |
1a0670f3 | 1926 | /* Fall through. */ |
309d3373 JB |
1927 | case 2: |
1928 | x.array [1] &= ~y.array [1]; | |
1a0670f3 | 1929 | /* Fall through. */ |
309d3373 JB |
1930 | case 1: |
1931 | x.array [0] &= ~y.array [0]; | |
1932 | break; | |
1933 | default: | |
1934 | abort (); | |
1935 | } | |
1936 | return x; | |
1937 | } | |
1938 | ||
6c0946d0 JB |
1939 | static const i386_cpu_flags avx512 = CPU_ANY_AVX512F_FLAGS; |
1940 | ||
c0f3af97 L |
1941 | #define CPU_FLAGS_ARCH_MATCH 0x1 |
1942 | #define CPU_FLAGS_64BIT_MATCH 0x2 | |
1943 | ||
c0f3af97 | 1944 | #define CPU_FLAGS_PERFECT_MATCH \ |
db12e14e | 1945 | (CPU_FLAGS_ARCH_MATCH | CPU_FLAGS_64BIT_MATCH) |
c0f3af97 L |
1946 | |
1947 | /* Return CPU flags match bits. */ | |
3629bb00 | 1948 | |
40fb9820 | 1949 | static int |
d3ce72d0 | 1950 | cpu_flags_match (const insn_template *t) |
40fb9820 | 1951 | { |
c0f3af97 L |
1952 | i386_cpu_flags x = t->cpu_flags; |
1953 | int match = cpu_flags_check_cpu64 (x) ? CPU_FLAGS_64BIT_MATCH : 0; | |
40fb9820 L |
1954 | |
1955 | x.bitfield.cpu64 = 0; | |
1956 | x.bitfield.cpuno64 = 0; | |
1957 | ||
0dfbf9d7 | 1958 | if (cpu_flags_all_zero (&x)) |
c0f3af97 L |
1959 | { |
1960 | /* This instruction is available on all archs. */ | |
db12e14e | 1961 | match |= CPU_FLAGS_ARCH_MATCH; |
c0f3af97 | 1962 | } |
3629bb00 L |
1963 | else |
1964 | { | |
c0f3af97 | 1965 | /* This instruction is available only on some archs. */ |
3629bb00 L |
1966 | i386_cpu_flags cpu = cpu_arch_flags; |
1967 | ||
ab592e75 JB |
1968 | /* AVX512VL is no standalone feature - match it and then strip it. */ |
1969 | if (x.bitfield.cpuavx512vl && !cpu.bitfield.cpuavx512vl) | |
1970 | return match; | |
1971 | x.bitfield.cpuavx512vl = 0; | |
1972 | ||
3629bb00 | 1973 | cpu = cpu_flags_and (x, cpu); |
c0f3af97 L |
1974 | if (!cpu_flags_all_zero (&cpu)) |
1975 | { | |
57392598 | 1976 | if (x.bitfield.cpuavx) |
a5ff0eb2 | 1977 | { |
929f69fa | 1978 | /* We need to check a few extra flags with AVX. */ |
b9d49817 | 1979 | if (cpu.bitfield.cpuavx |
40d231b4 JB |
1980 | && (!t->opcode_modifier.sse2avx |
1981 | || (sse2avx && !i.prefix[DATA_PREFIX])) | |
b9d49817 | 1982 | && (!x.bitfield.cpuaes || cpu.bitfield.cpuaes) |
929f69fa | 1983 | && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni) |
b9d49817 JB |
1984 | && (!x.bitfield.cpupclmul || cpu.bitfield.cpupclmul)) |
1985 | match |= CPU_FLAGS_ARCH_MATCH; | |
a5ff0eb2 | 1986 | } |
929f69fa JB |
1987 | else if (x.bitfield.cpuavx512f) |
1988 | { | |
1989 | /* We need to check a few extra flags with AVX512F. */ | |
1990 | if (cpu.bitfield.cpuavx512f | |
1991 | && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni) | |
1992 | && (!x.bitfield.cpuvaes || cpu.bitfield.cpuvaes) | |
1993 | && (!x.bitfield.cpuvpclmulqdq || cpu.bitfield.cpuvpclmulqdq)) | |
1994 | match |= CPU_FLAGS_ARCH_MATCH; | |
1995 | } | |
a5ff0eb2 | 1996 | else |
db12e14e | 1997 | match |= CPU_FLAGS_ARCH_MATCH; |
c0f3af97 | 1998 | } |
3629bb00 | 1999 | } |
c0f3af97 | 2000 | return match; |
40fb9820 L |
2001 | } |
2002 | ||
c6fb90c8 L |
2003 | static INLINE i386_operand_type |
2004 | operand_type_and (i386_operand_type x, i386_operand_type y) | |
40fb9820 | 2005 | { |
bab6aec1 JB |
2006 | if (x.bitfield.class != y.bitfield.class) |
2007 | x.bitfield.class = ClassNone; | |
75e5731b JB |
2008 | if (x.bitfield.instance != y.bitfield.instance) |
2009 | x.bitfield.instance = InstanceNone; | |
bab6aec1 | 2010 | |
c6fb90c8 L |
2011 | switch (ARRAY_SIZE (x.array)) |
2012 | { | |
2013 | case 3: | |
2014 | x.array [2] &= y.array [2]; | |
1a0670f3 | 2015 | /* Fall through. */ |
c6fb90c8 L |
2016 | case 2: |
2017 | x.array [1] &= y.array [1]; | |
1a0670f3 | 2018 | /* Fall through. */ |
c6fb90c8 L |
2019 | case 1: |
2020 | x.array [0] &= y.array [0]; | |
2021 | break; | |
2022 | default: | |
2023 | abort (); | |
2024 | } | |
2025 | return x; | |
40fb9820 L |
2026 | } |
2027 | ||
73053c1f JB |
2028 | static INLINE i386_operand_type |
2029 | operand_type_and_not (i386_operand_type x, i386_operand_type y) | |
2030 | { | |
bab6aec1 | 2031 | gas_assert (y.bitfield.class == ClassNone); |
75e5731b | 2032 | gas_assert (y.bitfield.instance == InstanceNone); |
bab6aec1 | 2033 | |
73053c1f JB |
2034 | switch (ARRAY_SIZE (x.array)) |
2035 | { | |
2036 | case 3: | |
2037 | x.array [2] &= ~y.array [2]; | |
2038 | /* Fall through. */ | |
2039 | case 2: | |
2040 | x.array [1] &= ~y.array [1]; | |
2041 | /* Fall through. */ | |
2042 | case 1: | |
2043 | x.array [0] &= ~y.array [0]; | |
2044 | break; | |
2045 | default: | |
2046 | abort (); | |
2047 | } | |
2048 | return x; | |
2049 | } | |
2050 | ||
c6fb90c8 L |
2051 | static INLINE i386_operand_type |
2052 | operand_type_or (i386_operand_type x, i386_operand_type y) | |
40fb9820 | 2053 | { |
bab6aec1 JB |
2054 | gas_assert (x.bitfield.class == ClassNone || |
2055 | y.bitfield.class == ClassNone || | |
2056 | x.bitfield.class == y.bitfield.class); | |
75e5731b JB |
2057 | gas_assert (x.bitfield.instance == InstanceNone || |
2058 | y.bitfield.instance == InstanceNone || | |
2059 | x.bitfield.instance == y.bitfield.instance); | |
bab6aec1 | 2060 | |
c6fb90c8 | 2061 | switch (ARRAY_SIZE (x.array)) |
40fb9820 | 2062 | { |
c6fb90c8 L |
2063 | case 3: |
2064 | x.array [2] |= y.array [2]; | |
1a0670f3 | 2065 | /* Fall through. */ |
c6fb90c8 L |
2066 | case 2: |
2067 | x.array [1] |= y.array [1]; | |
1a0670f3 | 2068 | /* Fall through. */ |
c6fb90c8 L |
2069 | case 1: |
2070 | x.array [0] |= y.array [0]; | |
40fb9820 L |
2071 | break; |
2072 | default: | |
2073 | abort (); | |
2074 | } | |
c6fb90c8 L |
2075 | return x; |
2076 | } | |
40fb9820 | 2077 | |
c6fb90c8 L |
2078 | static INLINE i386_operand_type |
2079 | operand_type_xor (i386_operand_type x, i386_operand_type y) | |
2080 | { | |
bab6aec1 | 2081 | gas_assert (y.bitfield.class == ClassNone); |
75e5731b | 2082 | gas_assert (y.bitfield.instance == InstanceNone); |
bab6aec1 | 2083 | |
c6fb90c8 L |
2084 | switch (ARRAY_SIZE (x.array)) |
2085 | { | |
2086 | case 3: | |
2087 | x.array [2] ^= y.array [2]; | |
1a0670f3 | 2088 | /* Fall through. */ |
c6fb90c8 L |
2089 | case 2: |
2090 | x.array [1] ^= y.array [1]; | |
1a0670f3 | 2091 | /* Fall through. */ |
c6fb90c8 L |
2092 | case 1: |
2093 | x.array [0] ^= y.array [0]; | |
2094 | break; | |
2095 | default: | |
2096 | abort (); | |
2097 | } | |
40fb9820 L |
2098 | return x; |
2099 | } | |
2100 | ||
40fb9820 L |
2101 | static const i386_operand_type disp16 = OPERAND_TYPE_DISP16; |
2102 | static const i386_operand_type disp32 = OPERAND_TYPE_DISP32; | |
2103 | static const i386_operand_type disp32s = OPERAND_TYPE_DISP32S; | |
2104 | static const i386_operand_type disp16_32 = OPERAND_TYPE_DISP16_32; | |
bab6aec1 JB |
2105 | static const i386_operand_type anydisp = OPERAND_TYPE_ANYDISP; |
2106 | static const i386_operand_type anyimm = OPERAND_TYPE_ANYIMM; | |
40fb9820 | 2107 | static const i386_operand_type regxmm = OPERAND_TYPE_REGXMM; |
43234a1e | 2108 | static const i386_operand_type regmask = OPERAND_TYPE_REGMASK; |
40fb9820 L |
2109 | static const i386_operand_type imm8 = OPERAND_TYPE_IMM8; |
2110 | static const i386_operand_type imm8s = OPERAND_TYPE_IMM8S; | |
2111 | static const i386_operand_type imm16 = OPERAND_TYPE_IMM16; | |
2112 | static const i386_operand_type imm32 = OPERAND_TYPE_IMM32; | |
2113 | static const i386_operand_type imm32s = OPERAND_TYPE_IMM32S; | |
2114 | static const i386_operand_type imm64 = OPERAND_TYPE_IMM64; | |
2115 | static const i386_operand_type imm16_32 = OPERAND_TYPE_IMM16_32; | |
2116 | static const i386_operand_type imm16_32s = OPERAND_TYPE_IMM16_32S; | |
2117 | static const i386_operand_type imm16_32_32s = OPERAND_TYPE_IMM16_32_32S; | |
2118 | ||
2119 | enum operand_type | |
2120 | { | |
2121 | reg, | |
40fb9820 L |
2122 | imm, |
2123 | disp, | |
2124 | anymem | |
2125 | }; | |
2126 | ||
c6fb90c8 | 2127 | static INLINE int |
40fb9820 L |
2128 | operand_type_check (i386_operand_type t, enum operand_type c) |
2129 | { | |
2130 | switch (c) | |
2131 | { | |
2132 | case reg: | |
bab6aec1 | 2133 | return t.bitfield.class == Reg; |
40fb9820 | 2134 | |
40fb9820 L |
2135 | case imm: |
2136 | return (t.bitfield.imm8 | |
2137 | || t.bitfield.imm8s | |
2138 | || t.bitfield.imm16 | |
2139 | || t.bitfield.imm32 | |
2140 | || t.bitfield.imm32s | |
2141 | || t.bitfield.imm64); | |
2142 | ||
2143 | case disp: | |
2144 | return (t.bitfield.disp8 | |
2145 | || t.bitfield.disp16 | |
2146 | || t.bitfield.disp32 | |
2147 | || t.bitfield.disp32s | |
2148 | || t.bitfield.disp64); | |
2149 | ||
2150 | case anymem: | |
2151 | return (t.bitfield.disp8 | |
2152 | || t.bitfield.disp16 | |
2153 | || t.bitfield.disp32 | |
2154 | || t.bitfield.disp32s | |
2155 | || t.bitfield.disp64 | |
2156 | || t.bitfield.baseindex); | |
2157 | ||
2158 | default: | |
2159 | abort (); | |
2160 | } | |
2cfe26b6 AM |
2161 | |
2162 | return 0; | |
40fb9820 L |
2163 | } |
2164 | ||
7a54636a L |
2165 | /* Return 1 if there is no conflict in 8bit/16bit/32bit/64bit/80bit size |
2166 | between operand GIVEN and opeand WANTED for instruction template T. */ | |
5c07affc L |
2167 | |
2168 | static INLINE int | |
7a54636a L |
2169 | match_operand_size (const insn_template *t, unsigned int wanted, |
2170 | unsigned int given) | |
5c07affc | 2171 | { |
3ac21baa JB |
2172 | return !((i.types[given].bitfield.byte |
2173 | && !t->operand_types[wanted].bitfield.byte) | |
2174 | || (i.types[given].bitfield.word | |
2175 | && !t->operand_types[wanted].bitfield.word) | |
2176 | || (i.types[given].bitfield.dword | |
2177 | && !t->operand_types[wanted].bitfield.dword) | |
2178 | || (i.types[given].bitfield.qword | |
2179 | && !t->operand_types[wanted].bitfield.qword) | |
2180 | || (i.types[given].bitfield.tbyte | |
2181 | && !t->operand_types[wanted].bitfield.tbyte)); | |
5c07affc L |
2182 | } |
2183 | ||
dd40ce22 L |
2184 | /* Return 1 if there is no conflict in SIMD register between operand |
2185 | GIVEN and opeand WANTED for instruction template T. */ | |
1b54b8d7 JB |
2186 | |
2187 | static INLINE int | |
dd40ce22 L |
2188 | match_simd_size (const insn_template *t, unsigned int wanted, |
2189 | unsigned int given) | |
1b54b8d7 | 2190 | { |
3ac21baa JB |
2191 | return !((i.types[given].bitfield.xmmword |
2192 | && !t->operand_types[wanted].bitfield.xmmword) | |
2193 | || (i.types[given].bitfield.ymmword | |
2194 | && !t->operand_types[wanted].bitfield.ymmword) | |
2195 | || (i.types[given].bitfield.zmmword | |
260cd341 LC |
2196 | && !t->operand_types[wanted].bitfield.zmmword) |
2197 | || (i.types[given].bitfield.tmmword | |
2198 | && !t->operand_types[wanted].bitfield.tmmword)); | |
1b54b8d7 JB |
2199 | } |
2200 | ||
7a54636a L |
2201 | /* Return 1 if there is no conflict in any size between operand GIVEN |
2202 | and opeand WANTED for instruction template T. */ | |
5c07affc L |
2203 | |
2204 | static INLINE int | |
dd40ce22 L |
2205 | match_mem_size (const insn_template *t, unsigned int wanted, |
2206 | unsigned int given) | |
5c07affc | 2207 | { |
7a54636a | 2208 | return (match_operand_size (t, wanted, given) |
3ac21baa | 2209 | && !((i.types[given].bitfield.unspecified |
af508cb9 | 2210 | && !i.broadcast |
3ac21baa JB |
2211 | && !t->operand_types[wanted].bitfield.unspecified) |
2212 | || (i.types[given].bitfield.fword | |
2213 | && !t->operand_types[wanted].bitfield.fword) | |
1b54b8d7 JB |
2214 | /* For scalar opcode templates to allow register and memory |
2215 | operands at the same time, some special casing is needed | |
d6793fa1 JB |
2216 | here. Also for v{,p}broadcast*, {,v}pmov{s,z}*, and |
2217 | down-conversion vpmov*. */ | |
3528c362 | 2218 | || ((t->operand_types[wanted].bitfield.class == RegSIMD |
bc49bfd8 JB |
2219 | && t->operand_types[wanted].bitfield.byte |
2220 | + t->operand_types[wanted].bitfield.word | |
2221 | + t->operand_types[wanted].bitfield.dword | |
2222 | + t->operand_types[wanted].bitfield.qword | |
2223 | > !!t->opcode_modifier.broadcast) | |
3ac21baa JB |
2224 | ? (i.types[given].bitfield.xmmword |
2225 | || i.types[given].bitfield.ymmword | |
2226 | || i.types[given].bitfield.zmmword) | |
2227 | : !match_simd_size(t, wanted, given)))); | |
5c07affc L |
2228 | } |
2229 | ||
3ac21baa JB |
2230 | /* Return value has MATCH_STRAIGHT set if there is no size conflict on any |
2231 | operands for instruction template T, and it has MATCH_REVERSE set if there | |
2232 | is no size conflict on any operands for the template with operands reversed | |
2233 | (and the template allows for reversing in the first place). */ | |
5c07affc | 2234 | |
3ac21baa JB |
2235 | #define MATCH_STRAIGHT 1 |
2236 | #define MATCH_REVERSE 2 | |
2237 | ||
2238 | static INLINE unsigned int | |
d3ce72d0 | 2239 | operand_size_match (const insn_template *t) |
5c07affc | 2240 | { |
3ac21baa | 2241 | unsigned int j, match = MATCH_STRAIGHT; |
5c07affc | 2242 | |
0cfa3eb3 | 2243 | /* Don't check non-absolute jump instructions. */ |
5c07affc | 2244 | if (t->opcode_modifier.jump |
0cfa3eb3 | 2245 | && t->opcode_modifier.jump != JUMP_ABSOLUTE) |
5c07affc L |
2246 | return match; |
2247 | ||
2248 | /* Check memory and accumulator operand size. */ | |
2249 | for (j = 0; j < i.operands; j++) | |
2250 | { | |
3528c362 JB |
2251 | if (i.types[j].bitfield.class != Reg |
2252 | && i.types[j].bitfield.class != RegSIMD | |
601e8564 | 2253 | && t->opcode_modifier.anysize) |
5c07affc L |
2254 | continue; |
2255 | ||
bab6aec1 | 2256 | if (t->operand_types[j].bitfield.class == Reg |
7a54636a | 2257 | && !match_operand_size (t, j, j)) |
5c07affc L |
2258 | { |
2259 | match = 0; | |
2260 | break; | |
2261 | } | |
2262 | ||
3528c362 | 2263 | if (t->operand_types[j].bitfield.class == RegSIMD |
3ac21baa | 2264 | && !match_simd_size (t, j, j)) |
1b54b8d7 JB |
2265 | { |
2266 | match = 0; | |
2267 | break; | |
2268 | } | |
2269 | ||
75e5731b | 2270 | if (t->operand_types[j].bitfield.instance == Accum |
7a54636a | 2271 | && (!match_operand_size (t, j, j) || !match_simd_size (t, j, j))) |
1b54b8d7 JB |
2272 | { |
2273 | match = 0; | |
2274 | break; | |
2275 | } | |
2276 | ||
c48dadc9 | 2277 | if ((i.flags[j] & Operand_Mem) && !match_mem_size (t, j, j)) |
5c07affc L |
2278 | { |
2279 | match = 0; | |
2280 | break; | |
2281 | } | |
2282 | } | |
2283 | ||
3ac21baa | 2284 | if (!t->opcode_modifier.d) |
891edac4 | 2285 | { |
dc1e8a47 | 2286 | mismatch: |
3ac21baa JB |
2287 | if (!match) |
2288 | i.error = operand_size_mismatch; | |
2289 | return match; | |
891edac4 | 2290 | } |
5c07affc L |
2291 | |
2292 | /* Check reverse. */ | |
f5eb1d70 | 2293 | gas_assert (i.operands >= 2 && i.operands <= 3); |
5c07affc | 2294 | |
f5eb1d70 | 2295 | for (j = 0; j < i.operands; j++) |
5c07affc | 2296 | { |
f5eb1d70 JB |
2297 | unsigned int given = i.operands - j - 1; |
2298 | ||
bab6aec1 | 2299 | if (t->operand_types[j].bitfield.class == Reg |
f5eb1d70 | 2300 | && !match_operand_size (t, j, given)) |
891edac4 | 2301 | goto mismatch; |
5c07affc | 2302 | |
3528c362 | 2303 | if (t->operand_types[j].bitfield.class == RegSIMD |
f5eb1d70 | 2304 | && !match_simd_size (t, j, given)) |
dbbc8b7e JB |
2305 | goto mismatch; |
2306 | ||
75e5731b | 2307 | if (t->operand_types[j].bitfield.instance == Accum |
f5eb1d70 JB |
2308 | && (!match_operand_size (t, j, given) |
2309 | || !match_simd_size (t, j, given))) | |
dbbc8b7e JB |
2310 | goto mismatch; |
2311 | ||
f5eb1d70 | 2312 | if ((i.flags[given] & Operand_Mem) && !match_mem_size (t, j, given)) |
891edac4 | 2313 | goto mismatch; |
5c07affc L |
2314 | } |
2315 | ||
3ac21baa | 2316 | return match | MATCH_REVERSE; |
5c07affc L |
2317 | } |
2318 | ||
c6fb90c8 | 2319 | static INLINE int |
40fb9820 L |
2320 | operand_type_match (i386_operand_type overlap, |
2321 | i386_operand_type given) | |
2322 | { | |
2323 | i386_operand_type temp = overlap; | |
2324 | ||
7d5e4556 | 2325 | temp.bitfield.unspecified = 0; |
5c07affc L |
2326 | temp.bitfield.byte = 0; |
2327 | temp.bitfield.word = 0; | |
2328 | temp.bitfield.dword = 0; | |
2329 | temp.bitfield.fword = 0; | |
2330 | temp.bitfield.qword = 0; | |
2331 | temp.bitfield.tbyte = 0; | |
2332 | temp.bitfield.xmmword = 0; | |
c0f3af97 | 2333 | temp.bitfield.ymmword = 0; |
43234a1e | 2334 | temp.bitfield.zmmword = 0; |
260cd341 | 2335 | temp.bitfield.tmmword = 0; |
0dfbf9d7 | 2336 | if (operand_type_all_zero (&temp)) |
891edac4 | 2337 | goto mismatch; |
40fb9820 | 2338 | |
6f2f06be | 2339 | if (given.bitfield.baseindex == overlap.bitfield.baseindex) |
891edac4 L |
2340 | return 1; |
2341 | ||
dc1e8a47 | 2342 | mismatch: |
a65babc9 | 2343 | i.error = operand_type_mismatch; |
891edac4 | 2344 | return 0; |
40fb9820 L |
2345 | } |
2346 | ||
7d5e4556 | 2347 | /* If given types g0 and g1 are registers they must be of the same type |
10c17abd | 2348 | unless the expected operand type register overlap is null. |
5de4d9ef | 2349 | Some Intel syntax memory operand size checking also happens here. */ |
40fb9820 | 2350 | |
c6fb90c8 | 2351 | static INLINE int |
dc821c5f | 2352 | operand_type_register_match (i386_operand_type g0, |
40fb9820 | 2353 | i386_operand_type t0, |
40fb9820 L |
2354 | i386_operand_type g1, |
2355 | i386_operand_type t1) | |
2356 | { | |
bab6aec1 | 2357 | if (g0.bitfield.class != Reg |
3528c362 | 2358 | && g0.bitfield.class != RegSIMD |
10c17abd JB |
2359 | && (!operand_type_check (g0, anymem) |
2360 | || g0.bitfield.unspecified | |
5de4d9ef JB |
2361 | || (t0.bitfield.class != Reg |
2362 | && t0.bitfield.class != RegSIMD))) | |
40fb9820 L |
2363 | return 1; |
2364 | ||
bab6aec1 | 2365 | if (g1.bitfield.class != Reg |
3528c362 | 2366 | && g1.bitfield.class != RegSIMD |
10c17abd JB |
2367 | && (!operand_type_check (g1, anymem) |
2368 | || g1.bitfield.unspecified | |
5de4d9ef JB |
2369 | || (t1.bitfield.class != Reg |
2370 | && t1.bitfield.class != RegSIMD))) | |
40fb9820 L |
2371 | return 1; |
2372 | ||
dc821c5f JB |
2373 | if (g0.bitfield.byte == g1.bitfield.byte |
2374 | && g0.bitfield.word == g1.bitfield.word | |
2375 | && g0.bitfield.dword == g1.bitfield.dword | |
10c17abd JB |
2376 | && g0.bitfield.qword == g1.bitfield.qword |
2377 | && g0.bitfield.xmmword == g1.bitfield.xmmword | |
2378 | && g0.bitfield.ymmword == g1.bitfield.ymmword | |
2379 | && g0.bitfield.zmmword == g1.bitfield.zmmword) | |
40fb9820 L |
2380 | return 1; |
2381 | ||
dc821c5f JB |
2382 | if (!(t0.bitfield.byte & t1.bitfield.byte) |
2383 | && !(t0.bitfield.word & t1.bitfield.word) | |
2384 | && !(t0.bitfield.dword & t1.bitfield.dword) | |
10c17abd JB |
2385 | && !(t0.bitfield.qword & t1.bitfield.qword) |
2386 | && !(t0.bitfield.xmmword & t1.bitfield.xmmword) | |
2387 | && !(t0.bitfield.ymmword & t1.bitfield.ymmword) | |
2388 | && !(t0.bitfield.zmmword & t1.bitfield.zmmword)) | |
891edac4 L |
2389 | return 1; |
2390 | ||
a65babc9 | 2391 | i.error = register_type_mismatch; |
891edac4 L |
2392 | |
2393 | return 0; | |
40fb9820 L |
2394 | } |
2395 | ||
4c692bc7 JB |
2396 | static INLINE unsigned int |
2397 | register_number (const reg_entry *r) | |
2398 | { | |
2399 | unsigned int nr = r->reg_num; | |
2400 | ||
2401 | if (r->reg_flags & RegRex) | |
2402 | nr += 8; | |
2403 | ||
200cbe0f L |
2404 | if (r->reg_flags & RegVRex) |
2405 | nr += 16; | |
2406 | ||
4c692bc7 JB |
2407 | return nr; |
2408 | } | |
2409 | ||
252b5132 | 2410 | static INLINE unsigned int |
40fb9820 | 2411 | mode_from_disp_size (i386_operand_type t) |
252b5132 | 2412 | { |
b5014f7a | 2413 | if (t.bitfield.disp8) |
40fb9820 L |
2414 | return 1; |
2415 | else if (t.bitfield.disp16 | |
2416 | || t.bitfield.disp32 | |
2417 | || t.bitfield.disp32s) | |
2418 | return 2; | |
2419 | else | |
2420 | return 0; | |
252b5132 RH |
2421 | } |
2422 | ||
2423 | static INLINE int | |
65879393 | 2424 | fits_in_signed_byte (addressT num) |
252b5132 | 2425 | { |
65879393 | 2426 | return num + 0x80 <= 0xff; |
47926f60 | 2427 | } |
252b5132 RH |
2428 | |
2429 | static INLINE int | |
65879393 | 2430 | fits_in_unsigned_byte (addressT num) |
252b5132 | 2431 | { |
65879393 | 2432 | return num <= 0xff; |
47926f60 | 2433 | } |
252b5132 RH |
2434 | |
2435 | static INLINE int | |
65879393 | 2436 | fits_in_unsigned_word (addressT num) |
252b5132 | 2437 | { |
65879393 | 2438 | return num <= 0xffff; |
47926f60 | 2439 | } |
252b5132 RH |
2440 | |
2441 | static INLINE int | |
65879393 | 2442 | fits_in_signed_word (addressT num) |
252b5132 | 2443 | { |
65879393 | 2444 | return num + 0x8000 <= 0xffff; |
47926f60 | 2445 | } |
2a962e6d | 2446 | |
3e73aa7c | 2447 | static INLINE int |
65879393 | 2448 | fits_in_signed_long (addressT num ATTRIBUTE_UNUSED) |
3e73aa7c JH |
2449 | { |
2450 | #ifndef BFD64 | |
2451 | return 1; | |
2452 | #else | |
65879393 | 2453 | return num + 0x80000000 <= 0xffffffff; |
3e73aa7c JH |
2454 | #endif |
2455 | } /* fits_in_signed_long() */ | |
2a962e6d | 2456 | |
3e73aa7c | 2457 | static INLINE int |
65879393 | 2458 | fits_in_unsigned_long (addressT num ATTRIBUTE_UNUSED) |
3e73aa7c JH |
2459 | { |
2460 | #ifndef BFD64 | |
2461 | return 1; | |
2462 | #else | |
65879393 | 2463 | return num <= 0xffffffff; |
3e73aa7c JH |
2464 | #endif |
2465 | } /* fits_in_unsigned_long() */ | |
252b5132 | 2466 | |
43234a1e | 2467 | static INLINE int |
b5014f7a | 2468 | fits_in_disp8 (offsetT num) |
43234a1e L |
2469 | { |
2470 | int shift = i.memshift; | |
2471 | unsigned int mask; | |
2472 | ||
2473 | if (shift == -1) | |
2474 | abort (); | |
2475 | ||
2476 | mask = (1 << shift) - 1; | |
2477 | ||
2478 | /* Return 0 if NUM isn't properly aligned. */ | |
2479 | if ((num & mask)) | |
2480 | return 0; | |
2481 | ||
2482 | /* Check if NUM will fit in 8bit after shift. */ | |
2483 | return fits_in_signed_byte (num >> shift); | |
2484 | } | |
2485 | ||
a683cc34 SP |
2486 | static INLINE int |
2487 | fits_in_imm4 (offsetT num) | |
2488 | { | |
2489 | return (num & 0xf) == num; | |
2490 | } | |
2491 | ||
40fb9820 | 2492 | static i386_operand_type |
e3bb37b5 | 2493 | smallest_imm_type (offsetT num) |
252b5132 | 2494 | { |
40fb9820 | 2495 | i386_operand_type t; |
7ab9ffdd | 2496 | |
0dfbf9d7 | 2497 | operand_type_set (&t, 0); |
40fb9820 L |
2498 | t.bitfield.imm64 = 1; |
2499 | ||
2500 | if (cpu_arch_tune != PROCESSOR_I486 && num == 1) | |
e413e4e9 AM |
2501 | { |
2502 | /* This code is disabled on the 486 because all the Imm1 forms | |
2503 | in the opcode table are slower on the i486. They're the | |
2504 | versions with the implicitly specified single-position | |
2505 | displacement, which has another syntax if you really want to | |
2506 | use that form. */ | |
40fb9820 L |
2507 | t.bitfield.imm1 = 1; |
2508 | t.bitfield.imm8 = 1; | |
2509 | t.bitfield.imm8s = 1; | |
2510 | t.bitfield.imm16 = 1; | |
2511 | t.bitfield.imm32 = 1; | |
2512 | t.bitfield.imm32s = 1; | |
2513 | } | |
2514 | else if (fits_in_signed_byte (num)) | |
2515 | { | |
2516 | t.bitfield.imm8 = 1; | |
2517 | t.bitfield.imm8s = 1; | |
2518 | t.bitfield.imm16 = 1; | |
2519 | t.bitfield.imm32 = 1; | |
2520 | t.bitfield.imm32s = 1; | |
2521 | } | |
2522 | else if (fits_in_unsigned_byte (num)) | |
2523 | { | |
2524 | t.bitfield.imm8 = 1; | |
2525 | t.bitfield.imm16 = 1; | |
2526 | t.bitfield.imm32 = 1; | |
2527 | t.bitfield.imm32s = 1; | |
2528 | } | |
2529 | else if (fits_in_signed_word (num) || fits_in_unsigned_word (num)) | |
2530 | { | |
2531 | t.bitfield.imm16 = 1; | |
2532 | t.bitfield.imm32 = 1; | |
2533 | t.bitfield.imm32s = 1; | |
2534 | } | |
2535 | else if (fits_in_signed_long (num)) | |
2536 | { | |
2537 | t.bitfield.imm32 = 1; | |
2538 | t.bitfield.imm32s = 1; | |
2539 | } | |
2540 | else if (fits_in_unsigned_long (num)) | |
2541 | t.bitfield.imm32 = 1; | |
2542 | ||
2543 | return t; | |
47926f60 | 2544 | } |
252b5132 | 2545 | |
847f7ad4 | 2546 | static offsetT |
e3bb37b5 | 2547 | offset_in_range (offsetT val, int size) |
847f7ad4 | 2548 | { |
508866be | 2549 | addressT mask; |
ba2adb93 | 2550 | |
847f7ad4 AM |
2551 | switch (size) |
2552 | { | |
508866be L |
2553 | case 1: mask = ((addressT) 1 << 8) - 1; break; |
2554 | case 2: mask = ((addressT) 1 << 16) - 1; break; | |
3b0ec529 | 2555 | case 4: mask = ((addressT) 2 << 31) - 1; break; |
3e73aa7c JH |
2556 | #ifdef BFD64 |
2557 | case 8: mask = ((addressT) 2 << 63) - 1; break; | |
2558 | #endif | |
47926f60 | 2559 | default: abort (); |
847f7ad4 AM |
2560 | } |
2561 | ||
47926f60 | 2562 | if ((val & ~mask) != 0 && (val & ~mask) != ~mask) |
847f7ad4 AM |
2563 | { |
2564 | char buf1[40], buf2[40]; | |
2565 | ||
2566 | sprint_value (buf1, val); | |
2567 | sprint_value (buf2, val & mask); | |
2568 | as_warn (_("%s shortened to %s"), buf1, buf2); | |
2569 | } | |
2570 | return val & mask; | |
2571 | } | |
2572 | ||
c32fa91d L |
2573 | enum PREFIX_GROUP |
2574 | { | |
2575 | PREFIX_EXIST = 0, | |
2576 | PREFIX_LOCK, | |
2577 | PREFIX_REP, | |
04ef582a | 2578 | PREFIX_DS, |
c32fa91d L |
2579 | PREFIX_OTHER |
2580 | }; | |
2581 | ||
2582 | /* Returns | |
2583 | a. PREFIX_EXIST if attempting to add a prefix where one from the | |
2584 | same class already exists. | |
2585 | b. PREFIX_LOCK if lock prefix is added. | |
2586 | c. PREFIX_REP if rep/repne prefix is added. | |
04ef582a L |
2587 | d. PREFIX_DS if ds prefix is added. |
2588 | e. PREFIX_OTHER if other prefix is added. | |
c32fa91d L |
2589 | */ |
2590 | ||
2591 | static enum PREFIX_GROUP | |
e3bb37b5 | 2592 | add_prefix (unsigned int prefix) |
252b5132 | 2593 | { |
c32fa91d | 2594 | enum PREFIX_GROUP ret = PREFIX_OTHER; |
b1905489 | 2595 | unsigned int q; |
252b5132 | 2596 | |
29b0f896 AM |
2597 | if (prefix >= REX_OPCODE && prefix < REX_OPCODE + 16 |
2598 | && flag_code == CODE_64BIT) | |
b1905489 | 2599 | { |
161a04f6 | 2600 | if ((i.prefix[REX_PREFIX] & prefix & REX_W) |
44846f29 JB |
2601 | || (i.prefix[REX_PREFIX] & prefix & REX_R) |
2602 | || (i.prefix[REX_PREFIX] & prefix & REX_X) | |
2603 | || (i.prefix[REX_PREFIX] & prefix & REX_B)) | |
c32fa91d | 2604 | ret = PREFIX_EXIST; |
b1905489 JB |
2605 | q = REX_PREFIX; |
2606 | } | |
3e73aa7c | 2607 | else |
b1905489 JB |
2608 | { |
2609 | switch (prefix) | |
2610 | { | |
2611 | default: | |
2612 | abort (); | |
2613 | ||
b1905489 | 2614 | case DS_PREFIX_OPCODE: |
04ef582a L |
2615 | ret = PREFIX_DS; |
2616 | /* Fall through. */ | |
2617 | case CS_PREFIX_OPCODE: | |
b1905489 JB |
2618 | case ES_PREFIX_OPCODE: |
2619 | case FS_PREFIX_OPCODE: | |
2620 | case GS_PREFIX_OPCODE: | |
2621 | case SS_PREFIX_OPCODE: | |
2622 | q = SEG_PREFIX; | |
2623 | break; | |
2624 | ||
2625 | case REPNE_PREFIX_OPCODE: | |
2626 | case REPE_PREFIX_OPCODE: | |
c32fa91d L |
2627 | q = REP_PREFIX; |
2628 | ret = PREFIX_REP; | |
2629 | break; | |
2630 | ||
b1905489 | 2631 | case LOCK_PREFIX_OPCODE: |
c32fa91d L |
2632 | q = LOCK_PREFIX; |
2633 | ret = PREFIX_LOCK; | |
b1905489 JB |
2634 | break; |
2635 | ||
2636 | case FWAIT_OPCODE: | |
2637 | q = WAIT_PREFIX; | |
2638 | break; | |
2639 | ||
2640 | case ADDR_PREFIX_OPCODE: | |
2641 | q = ADDR_PREFIX; | |
2642 | break; | |
2643 | ||
2644 | case DATA_PREFIX_OPCODE: | |
2645 | q = DATA_PREFIX; | |
2646 | break; | |
2647 | } | |
2648 | if (i.prefix[q] != 0) | |
c32fa91d | 2649 | ret = PREFIX_EXIST; |
b1905489 | 2650 | } |
252b5132 | 2651 | |
b1905489 | 2652 | if (ret) |
252b5132 | 2653 | { |
b1905489 JB |
2654 | if (!i.prefix[q]) |
2655 | ++i.prefixes; | |
2656 | i.prefix[q] |= prefix; | |
252b5132 | 2657 | } |
b1905489 JB |
2658 | else |
2659 | as_bad (_("same type of prefix used twice")); | |
252b5132 | 2660 | |
252b5132 RH |
2661 | return ret; |
2662 | } | |
2663 | ||
2664 | static void | |
78f12dd3 | 2665 | update_code_flag (int value, int check) |
eecb386c | 2666 | { |
78f12dd3 L |
2667 | PRINTF_LIKE ((*as_error)); |
2668 | ||
1e9cc1c2 | 2669 | flag_code = (enum flag_code) value; |
40fb9820 L |
2670 | if (flag_code == CODE_64BIT) |
2671 | { | |
2672 | cpu_arch_flags.bitfield.cpu64 = 1; | |
2673 | cpu_arch_flags.bitfield.cpuno64 = 0; | |
40fb9820 L |
2674 | } |
2675 | else | |
2676 | { | |
2677 | cpu_arch_flags.bitfield.cpu64 = 0; | |
2678 | cpu_arch_flags.bitfield.cpuno64 = 1; | |
40fb9820 L |
2679 | } |
2680 | if (value == CODE_64BIT && !cpu_arch_flags.bitfield.cpulm ) | |
3e73aa7c | 2681 | { |
78f12dd3 L |
2682 | if (check) |
2683 | as_error = as_fatal; | |
2684 | else | |
2685 | as_error = as_bad; | |
2686 | (*as_error) (_("64bit mode not supported on `%s'."), | |
2687 | cpu_arch_name ? cpu_arch_name : default_arch); | |
3e73aa7c | 2688 | } |
40fb9820 | 2689 | if (value == CODE_32BIT && !cpu_arch_flags.bitfield.cpui386) |
3e73aa7c | 2690 | { |
78f12dd3 L |
2691 | if (check) |
2692 | as_error = as_fatal; | |
2693 | else | |
2694 | as_error = as_bad; | |
2695 | (*as_error) (_("32bit mode not supported on `%s'."), | |
2696 | cpu_arch_name ? cpu_arch_name : default_arch); | |
3e73aa7c | 2697 | } |
eecb386c AM |
2698 | stackop_size = '\0'; |
2699 | } | |
2700 | ||
78f12dd3 L |
2701 | static void |
2702 | set_code_flag (int value) | |
2703 | { | |
2704 | update_code_flag (value, 0); | |
2705 | } | |
2706 | ||
eecb386c | 2707 | static void |
e3bb37b5 | 2708 | set_16bit_gcc_code_flag (int new_code_flag) |
252b5132 | 2709 | { |
1e9cc1c2 | 2710 | flag_code = (enum flag_code) new_code_flag; |
40fb9820 L |
2711 | if (flag_code != CODE_16BIT) |
2712 | abort (); | |
2713 | cpu_arch_flags.bitfield.cpu64 = 0; | |
2714 | cpu_arch_flags.bitfield.cpuno64 = 1; | |
9306ca4a | 2715 | stackop_size = LONG_MNEM_SUFFIX; |
252b5132 RH |
2716 | } |
2717 | ||
2718 | static void | |
e3bb37b5 | 2719 | set_intel_syntax (int syntax_flag) |
252b5132 RH |
2720 | { |
2721 | /* Find out if register prefixing is specified. */ | |
2722 | int ask_naked_reg = 0; | |
2723 | ||
2724 | SKIP_WHITESPACE (); | |
29b0f896 | 2725 | if (!is_end_of_line[(unsigned char) *input_line_pointer]) |
252b5132 | 2726 | { |
d02603dc NC |
2727 | char *string; |
2728 | int e = get_symbol_name (&string); | |
252b5132 | 2729 | |
47926f60 | 2730 | if (strcmp (string, "prefix") == 0) |
252b5132 | 2731 | ask_naked_reg = 1; |
47926f60 | 2732 | else if (strcmp (string, "noprefix") == 0) |
252b5132 RH |
2733 | ask_naked_reg = -1; |
2734 | else | |
d0b47220 | 2735 | as_bad (_("bad argument to syntax directive.")); |
d02603dc | 2736 | (void) restore_line_pointer (e); |
252b5132 RH |
2737 | } |
2738 | demand_empty_rest_of_line (); | |
c3332e24 | 2739 | |
252b5132 RH |
2740 | intel_syntax = syntax_flag; |
2741 | ||
2742 | if (ask_naked_reg == 0) | |
f86103b7 AM |
2743 | allow_naked_reg = (intel_syntax |
2744 | && (bfd_get_symbol_leading_char (stdoutput) != '\0')); | |
252b5132 RH |
2745 | else |
2746 | allow_naked_reg = (ask_naked_reg < 0); | |
9306ca4a | 2747 | |
ee86248c | 2748 | expr_set_rank (O_full_ptr, syntax_flag ? 10 : 0); |
7ab9ffdd | 2749 | |
e4a3b5a4 | 2750 | identifier_chars['%'] = intel_syntax && allow_naked_reg ? '%' : 0; |
9306ca4a | 2751 | identifier_chars['$'] = intel_syntax ? '$' : 0; |
e4a3b5a4 | 2752 | register_prefix = allow_naked_reg ? "" : "%"; |
252b5132 RH |
2753 | } |
2754 | ||
1efbbeb4 L |
2755 | static void |
2756 | set_intel_mnemonic (int mnemonic_flag) | |
2757 | { | |
e1d4d893 | 2758 | intel_mnemonic = mnemonic_flag; |
1efbbeb4 L |
2759 | } |
2760 | ||
db51cc60 L |
2761 | static void |
2762 | set_allow_index_reg (int flag) | |
2763 | { | |
2764 | allow_index_reg = flag; | |
2765 | } | |
2766 | ||
cb19c032 | 2767 | static void |
7bab8ab5 | 2768 | set_check (int what) |
cb19c032 | 2769 | { |
7bab8ab5 JB |
2770 | enum check_kind *kind; |
2771 | const char *str; | |
2772 | ||
2773 | if (what) | |
2774 | { | |
2775 | kind = &operand_check; | |
2776 | str = "operand"; | |
2777 | } | |
2778 | else | |
2779 | { | |
2780 | kind = &sse_check; | |
2781 | str = "sse"; | |
2782 | } | |
2783 | ||
cb19c032 L |
2784 | SKIP_WHITESPACE (); |
2785 | ||
2786 | if (!is_end_of_line[(unsigned char) *input_line_pointer]) | |
2787 | { | |
d02603dc NC |
2788 | char *string; |
2789 | int e = get_symbol_name (&string); | |
cb19c032 L |
2790 | |
2791 | if (strcmp (string, "none") == 0) | |
7bab8ab5 | 2792 | *kind = check_none; |
cb19c032 | 2793 | else if (strcmp (string, "warning") == 0) |
7bab8ab5 | 2794 | *kind = check_warning; |
cb19c032 | 2795 | else if (strcmp (string, "error") == 0) |
7bab8ab5 | 2796 | *kind = check_error; |
cb19c032 | 2797 | else |
7bab8ab5 | 2798 | as_bad (_("bad argument to %s_check directive."), str); |
d02603dc | 2799 | (void) restore_line_pointer (e); |
cb19c032 L |
2800 | } |
2801 | else | |
7bab8ab5 | 2802 | as_bad (_("missing argument for %s_check directive"), str); |
cb19c032 L |
2803 | |
2804 | demand_empty_rest_of_line (); | |
2805 | } | |
2806 | ||
8a9036a4 L |
2807 | static void |
2808 | check_cpu_arch_compatible (const char *name ATTRIBUTE_UNUSED, | |
1e9cc1c2 | 2809 | i386_cpu_flags new_flag ATTRIBUTE_UNUSED) |
8a9036a4 L |
2810 | { |
2811 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) | |
2812 | static const char *arch; | |
2813 | ||
2814 | /* Intel LIOM is only supported on ELF. */ | |
2815 | if (!IS_ELF) | |
2816 | return; | |
2817 | ||
2818 | if (!arch) | |
2819 | { | |
2820 | /* Use cpu_arch_name if it is set in md_parse_option. Otherwise | |
2821 | use default_arch. */ | |
2822 | arch = cpu_arch_name; | |
2823 | if (!arch) | |
2824 | arch = default_arch; | |
2825 | } | |
2826 | ||
81486035 L |
2827 | /* If we are targeting Intel MCU, we must enable it. */ |
2828 | if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_IAMCU | |
2829 | || new_flag.bitfield.cpuiamcu) | |
2830 | return; | |
2831 | ||
3632d14b | 2832 | /* If we are targeting Intel L1OM, we must enable it. */ |
8a9036a4 | 2833 | if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_L1OM |
1e9cc1c2 | 2834 | || new_flag.bitfield.cpul1om) |
8a9036a4 | 2835 | return; |
76ba9986 | 2836 | |
7a9068fe L |
2837 | /* If we are targeting Intel K1OM, we must enable it. */ |
2838 | if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_K1OM | |
2839 | || new_flag.bitfield.cpuk1om) | |
2840 | return; | |
2841 | ||
8a9036a4 L |
2842 | as_bad (_("`%s' is not supported on `%s'"), name, arch); |
2843 | #endif | |
2844 | } | |
2845 | ||
e413e4e9 | 2846 | static void |
e3bb37b5 | 2847 | set_cpu_arch (int dummy ATTRIBUTE_UNUSED) |
e413e4e9 | 2848 | { |
47926f60 | 2849 | SKIP_WHITESPACE (); |
e413e4e9 | 2850 | |
29b0f896 | 2851 | if (!is_end_of_line[(unsigned char) *input_line_pointer]) |
e413e4e9 | 2852 | { |
d02603dc NC |
2853 | char *string; |
2854 | int e = get_symbol_name (&string); | |
91d6fa6a | 2855 | unsigned int j; |
40fb9820 | 2856 | i386_cpu_flags flags; |
e413e4e9 | 2857 | |
91d6fa6a | 2858 | for (j = 0; j < ARRAY_SIZE (cpu_arch); j++) |
e413e4e9 | 2859 | { |
91d6fa6a | 2860 | if (strcmp (string, cpu_arch[j].name) == 0) |
e413e4e9 | 2861 | { |
91d6fa6a | 2862 | check_cpu_arch_compatible (string, cpu_arch[j].flags); |
8a9036a4 | 2863 | |
5c6af06e JB |
2864 | if (*string != '.') |
2865 | { | |
91d6fa6a | 2866 | cpu_arch_name = cpu_arch[j].name; |
5c6af06e | 2867 | cpu_sub_arch_name = NULL; |
91d6fa6a | 2868 | cpu_arch_flags = cpu_arch[j].flags; |
40fb9820 L |
2869 | if (flag_code == CODE_64BIT) |
2870 | { | |
2871 | cpu_arch_flags.bitfield.cpu64 = 1; | |
2872 | cpu_arch_flags.bitfield.cpuno64 = 0; | |
2873 | } | |
2874 | else | |
2875 | { | |
2876 | cpu_arch_flags.bitfield.cpu64 = 0; | |
2877 | cpu_arch_flags.bitfield.cpuno64 = 1; | |
2878 | } | |
91d6fa6a NC |
2879 | cpu_arch_isa = cpu_arch[j].type; |
2880 | cpu_arch_isa_flags = cpu_arch[j].flags; | |
ccc9c027 L |
2881 | if (!cpu_arch_tune_set) |
2882 | { | |
2883 | cpu_arch_tune = cpu_arch_isa; | |
2884 | cpu_arch_tune_flags = cpu_arch_isa_flags; | |
2885 | } | |
5c6af06e JB |
2886 | break; |
2887 | } | |
40fb9820 | 2888 | |
293f5f65 L |
2889 | flags = cpu_flags_or (cpu_arch_flags, |
2890 | cpu_arch[j].flags); | |
81486035 | 2891 | |
5b64d091 | 2892 | if (!cpu_flags_equal (&flags, &cpu_arch_flags)) |
5c6af06e | 2893 | { |
6305a203 L |
2894 | if (cpu_sub_arch_name) |
2895 | { | |
2896 | char *name = cpu_sub_arch_name; | |
2897 | cpu_sub_arch_name = concat (name, | |
91d6fa6a | 2898 | cpu_arch[j].name, |
1bf57e9f | 2899 | (const char *) NULL); |
6305a203 L |
2900 | free (name); |
2901 | } | |
2902 | else | |
91d6fa6a | 2903 | cpu_sub_arch_name = xstrdup (cpu_arch[j].name); |
40fb9820 | 2904 | cpu_arch_flags = flags; |
a586129e | 2905 | cpu_arch_isa_flags = flags; |
5c6af06e | 2906 | } |
0089dace L |
2907 | else |
2908 | cpu_arch_isa_flags | |
2909 | = cpu_flags_or (cpu_arch_isa_flags, | |
2910 | cpu_arch[j].flags); | |
d02603dc | 2911 | (void) restore_line_pointer (e); |
5c6af06e JB |
2912 | demand_empty_rest_of_line (); |
2913 | return; | |
e413e4e9 AM |
2914 | } |
2915 | } | |
293f5f65 L |
2916 | |
2917 | if (*string == '.' && j >= ARRAY_SIZE (cpu_arch)) | |
2918 | { | |
33eaf5de | 2919 | /* Disable an ISA extension. */ |
293f5f65 L |
2920 | for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++) |
2921 | if (strcmp (string + 1, cpu_noarch [j].name) == 0) | |
2922 | { | |
2923 | flags = cpu_flags_and_not (cpu_arch_flags, | |
2924 | cpu_noarch[j].flags); | |
2925 | if (!cpu_flags_equal (&flags, &cpu_arch_flags)) | |
2926 | { | |
2927 | if (cpu_sub_arch_name) | |
2928 | { | |
2929 | char *name = cpu_sub_arch_name; | |
2930 | cpu_sub_arch_name = concat (name, string, | |
2931 | (const char *) NULL); | |
2932 | free (name); | |
2933 | } | |
2934 | else | |
2935 | cpu_sub_arch_name = xstrdup (string); | |
2936 | cpu_arch_flags = flags; | |
2937 | cpu_arch_isa_flags = flags; | |
2938 | } | |
2939 | (void) restore_line_pointer (e); | |
2940 | demand_empty_rest_of_line (); | |
2941 | return; | |
2942 | } | |
2943 | ||
2944 | j = ARRAY_SIZE (cpu_arch); | |
2945 | } | |
2946 | ||
91d6fa6a | 2947 | if (j >= ARRAY_SIZE (cpu_arch)) |
e413e4e9 AM |
2948 | as_bad (_("no such architecture: `%s'"), string); |
2949 | ||
2950 | *input_line_pointer = e; | |
2951 | } | |
2952 | else | |
2953 | as_bad (_("missing cpu architecture")); | |
2954 | ||
fddf5b5b AM |
2955 | no_cond_jump_promotion = 0; |
2956 | if (*input_line_pointer == ',' | |
29b0f896 | 2957 | && !is_end_of_line[(unsigned char) input_line_pointer[1]]) |
fddf5b5b | 2958 | { |
d02603dc NC |
2959 | char *string; |
2960 | char e; | |
2961 | ||
2962 | ++input_line_pointer; | |
2963 | e = get_symbol_name (&string); | |
fddf5b5b AM |
2964 | |
2965 | if (strcmp (string, "nojumps") == 0) | |
2966 | no_cond_jump_promotion = 1; | |
2967 | else if (strcmp (string, "jumps") == 0) | |
2968 | ; | |
2969 | else | |
2970 | as_bad (_("no such architecture modifier: `%s'"), string); | |
2971 | ||
d02603dc | 2972 | (void) restore_line_pointer (e); |
fddf5b5b AM |
2973 | } |
2974 | ||
e413e4e9 AM |
2975 | demand_empty_rest_of_line (); |
2976 | } | |
2977 | ||
8a9036a4 L |
2978 | enum bfd_architecture |
2979 | i386_arch (void) | |
2980 | { | |
3632d14b | 2981 | if (cpu_arch_isa == PROCESSOR_L1OM) |
8a9036a4 L |
2982 | { |
2983 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour | |
2984 | || flag_code != CODE_64BIT) | |
2985 | as_fatal (_("Intel L1OM is 64bit ELF only")); | |
2986 | return bfd_arch_l1om; | |
2987 | } | |
7a9068fe L |
2988 | else if (cpu_arch_isa == PROCESSOR_K1OM) |
2989 | { | |
2990 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour | |
2991 | || flag_code != CODE_64BIT) | |
2992 | as_fatal (_("Intel K1OM is 64bit ELF only")); | |
2993 | return bfd_arch_k1om; | |
2994 | } | |
81486035 L |
2995 | else if (cpu_arch_isa == PROCESSOR_IAMCU) |
2996 | { | |
2997 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour | |
2998 | || flag_code == CODE_64BIT) | |
2999 | as_fatal (_("Intel MCU is 32bit ELF only")); | |
3000 | return bfd_arch_iamcu; | |
3001 | } | |
8a9036a4 L |
3002 | else |
3003 | return bfd_arch_i386; | |
3004 | } | |
3005 | ||
b9d79e03 | 3006 | unsigned long |
7016a5d5 | 3007 | i386_mach (void) |
b9d79e03 | 3008 | { |
351f65ca | 3009 | if (!strncmp (default_arch, "x86_64", 6)) |
8a9036a4 | 3010 | { |
3632d14b | 3011 | if (cpu_arch_isa == PROCESSOR_L1OM) |
8a9036a4 | 3012 | { |
351f65ca L |
3013 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour |
3014 | || default_arch[6] != '\0') | |
8a9036a4 L |
3015 | as_fatal (_("Intel L1OM is 64bit ELF only")); |
3016 | return bfd_mach_l1om; | |
3017 | } | |
7a9068fe L |
3018 | else if (cpu_arch_isa == PROCESSOR_K1OM) |
3019 | { | |
3020 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour | |
3021 | || default_arch[6] != '\0') | |
3022 | as_fatal (_("Intel K1OM is 64bit ELF only")); | |
3023 | return bfd_mach_k1om; | |
3024 | } | |
351f65ca | 3025 | else if (default_arch[6] == '\0') |
8a9036a4 | 3026 | return bfd_mach_x86_64; |
351f65ca L |
3027 | else |
3028 | return bfd_mach_x64_32; | |
8a9036a4 | 3029 | } |
5197d474 L |
3030 | else if (!strcmp (default_arch, "i386") |
3031 | || !strcmp (default_arch, "iamcu")) | |
81486035 L |
3032 | { |
3033 | if (cpu_arch_isa == PROCESSOR_IAMCU) | |
3034 | { | |
3035 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour) | |
3036 | as_fatal (_("Intel MCU is 32bit ELF only")); | |
3037 | return bfd_mach_i386_iamcu; | |
3038 | } | |
3039 | else | |
3040 | return bfd_mach_i386_i386; | |
3041 | } | |
b9d79e03 | 3042 | else |
2b5d6a91 | 3043 | as_fatal (_("unknown architecture")); |
b9d79e03 | 3044 | } |
b9d79e03 | 3045 | \f |
252b5132 | 3046 | void |
7016a5d5 | 3047 | md_begin (void) |
252b5132 | 3048 | { |
86fa6981 L |
3049 | /* Support pseudo prefixes like {disp32}. */ |
3050 | lex_type ['{'] = LEX_BEGIN_NAME; | |
3051 | ||
47926f60 | 3052 | /* Initialize op_hash hash table. */ |
629310ab | 3053 | op_hash = str_htab_create (); |
252b5132 RH |
3054 | |
3055 | { | |
d3ce72d0 | 3056 | const insn_template *optab; |
29b0f896 | 3057 | templates *core_optab; |
252b5132 | 3058 | |
47926f60 KH |
3059 | /* Setup for loop. */ |
3060 | optab = i386_optab; | |
add39d23 | 3061 | core_optab = XNEW (templates); |
252b5132 RH |
3062 | core_optab->start = optab; |
3063 | ||
3064 | while (1) | |
3065 | { | |
3066 | ++optab; | |
3067 | if (optab->name == NULL | |
3068 | || strcmp (optab->name, (optab - 1)->name) != 0) | |
3069 | { | |
3070 | /* different name --> ship out current template list; | |
47926f60 | 3071 | add to hash table; & begin anew. */ |
252b5132 | 3072 | core_optab->end = optab; |
fe0e921f AM |
3073 | if (str_hash_insert (op_hash, (optab - 1)->name, core_optab, 0)) |
3074 | as_fatal (_("duplicate %s"), (optab - 1)->name); | |
3075 | ||
252b5132 RH |
3076 | if (optab->name == NULL) |
3077 | break; | |
add39d23 | 3078 | core_optab = XNEW (templates); |
252b5132 RH |
3079 | core_optab->start = optab; |
3080 | } | |
3081 | } | |
3082 | } | |
3083 | ||
47926f60 | 3084 | /* Initialize reg_hash hash table. */ |
629310ab | 3085 | reg_hash = str_htab_create (); |
252b5132 | 3086 | { |
29b0f896 | 3087 | const reg_entry *regtab; |
c3fe08fa | 3088 | unsigned int regtab_size = i386_regtab_size; |
252b5132 | 3089 | |
c3fe08fa | 3090 | for (regtab = i386_regtab; regtab_size--; regtab++) |
fe0e921f AM |
3091 | if (str_hash_insert (reg_hash, regtab->reg_name, regtab, 0) != NULL) |
3092 | as_fatal (_("duplicate %s"), regtab->reg_name); | |
252b5132 RH |
3093 | } |
3094 | ||
47926f60 | 3095 | /* Fill in lexical tables: mnemonic_chars, operand_chars. */ |
252b5132 | 3096 | { |
29b0f896 AM |
3097 | int c; |
3098 | char *p; | |
252b5132 RH |
3099 | |
3100 | for (c = 0; c < 256; c++) | |
3101 | { | |
3882b010 | 3102 | if (ISDIGIT (c)) |
252b5132 RH |
3103 | { |
3104 | digit_chars[c] = c; | |
3105 | mnemonic_chars[c] = c; | |
3106 | register_chars[c] = c; | |
3107 | operand_chars[c] = c; | |
3108 | } | |
3882b010 | 3109 | else if (ISLOWER (c)) |
252b5132 RH |
3110 | { |
3111 | mnemonic_chars[c] = c; | |
3112 | register_chars[c] = c; | |
3113 | operand_chars[c] = c; | |
3114 | } | |
3882b010 | 3115 | else if (ISUPPER (c)) |
252b5132 | 3116 | { |
3882b010 | 3117 | mnemonic_chars[c] = TOLOWER (c); |
252b5132 RH |
3118 | register_chars[c] = mnemonic_chars[c]; |
3119 | operand_chars[c] = c; | |
3120 | } | |
43234a1e | 3121 | else if (c == '{' || c == '}') |
86fa6981 L |
3122 | { |
3123 | mnemonic_chars[c] = c; | |
3124 | operand_chars[c] = c; | |
3125 | } | |
b3983e5f JB |
3126 | #ifdef SVR4_COMMENT_CHARS |
3127 | else if (c == '\\' && strchr (i386_comment_chars, '/')) | |
3128 | operand_chars[c] = c; | |
3129 | #endif | |
252b5132 | 3130 | |
3882b010 | 3131 | if (ISALPHA (c) || ISDIGIT (c)) |
252b5132 RH |
3132 | identifier_chars[c] = c; |
3133 | else if (c >= 128) | |
3134 | { | |
3135 | identifier_chars[c] = c; | |
3136 | operand_chars[c] = c; | |
3137 | } | |
3138 | } | |
3139 | ||
3140 | #ifdef LEX_AT | |
3141 | identifier_chars['@'] = '@'; | |
32137342 NC |
3142 | #endif |
3143 | #ifdef LEX_QM | |
3144 | identifier_chars['?'] = '?'; | |
3145 | operand_chars['?'] = '?'; | |
252b5132 | 3146 | #endif |
252b5132 | 3147 | digit_chars['-'] = '-'; |
c0f3af97 | 3148 | mnemonic_chars['_'] = '_'; |
791fe849 | 3149 | mnemonic_chars['-'] = '-'; |
0003779b | 3150 | mnemonic_chars['.'] = '.'; |
252b5132 RH |
3151 | identifier_chars['_'] = '_'; |
3152 | identifier_chars['.'] = '.'; | |
3153 | ||
3154 | for (p = operand_special_chars; *p != '\0'; p++) | |
3155 | operand_chars[(unsigned char) *p] = *p; | |
3156 | } | |
3157 | ||
a4447b93 RH |
3158 | if (flag_code == CODE_64BIT) |
3159 | { | |
ca19b261 KT |
3160 | #if defined (OBJ_COFF) && defined (TE_PE) |
3161 | x86_dwarf2_return_column = (OUTPUT_FLAVOR == bfd_target_coff_flavour | |
3162 | ? 32 : 16); | |
3163 | #else | |
a4447b93 | 3164 | x86_dwarf2_return_column = 16; |
ca19b261 | 3165 | #endif |
61ff971f | 3166 | x86_cie_data_alignment = -8; |
a4447b93 RH |
3167 | } |
3168 | else | |
3169 | { | |
3170 | x86_dwarf2_return_column = 8; | |
3171 | x86_cie_data_alignment = -4; | |
3172 | } | |
e379e5f3 L |
3173 | |
3174 | /* NB: FUSED_JCC_PADDING frag must have sufficient room so that it | |
3175 | can be turned into BRANCH_PREFIX frag. */ | |
3176 | if (align_branch_prefix_size > MAX_FUSED_JCC_PADDING_SIZE) | |
3177 | abort (); | |
252b5132 RH |
3178 | } |
3179 | ||
3180 | void | |
e3bb37b5 | 3181 | i386_print_statistics (FILE *file) |
252b5132 | 3182 | { |
629310ab ML |
3183 | htab_print_statistics (file, "i386 opcode", op_hash); |
3184 | htab_print_statistics (file, "i386 register", reg_hash); | |
252b5132 RH |
3185 | } |
3186 | \f | |
252b5132 RH |
3187 | #ifdef DEBUG386 |
3188 | ||
ce8a8b2f | 3189 | /* Debugging routines for md_assemble. */ |
d3ce72d0 | 3190 | static void pte (insn_template *); |
40fb9820 | 3191 | static void pt (i386_operand_type); |
e3bb37b5 L |
3192 | static void pe (expressionS *); |
3193 | static void ps (symbolS *); | |
252b5132 RH |
3194 | |
3195 | static void | |
2c703856 | 3196 | pi (const char *line, i386_insn *x) |
252b5132 | 3197 | { |
09137c09 | 3198 | unsigned int j; |
252b5132 RH |
3199 | |
3200 | fprintf (stdout, "%s: template ", line); | |
3201 | pte (&x->tm); | |
09f131f2 JH |
3202 | fprintf (stdout, " address: base %s index %s scale %x\n", |
3203 | x->base_reg ? x->base_reg->reg_name : "none", | |
3204 | x->index_reg ? x->index_reg->reg_name : "none", | |
3205 | x->log2_scale_factor); | |
3206 | fprintf (stdout, " modrm: mode %x reg %x reg/mem %x\n", | |
252b5132 | 3207 | x->rm.mode, x->rm.reg, x->rm.regmem); |
09f131f2 JH |
3208 | fprintf (stdout, " sib: base %x index %x scale %x\n", |
3209 | x->sib.base, x->sib.index, x->sib.scale); | |
3210 | fprintf (stdout, " rex: 64bit %x extX %x extY %x extZ %x\n", | |
161a04f6 L |
3211 | (x->rex & REX_W) != 0, |
3212 | (x->rex & REX_R) != 0, | |
3213 | (x->rex & REX_X) != 0, | |
3214 | (x->rex & REX_B) != 0); | |
09137c09 | 3215 | for (j = 0; j < x->operands; j++) |
252b5132 | 3216 | { |
09137c09 SP |
3217 | fprintf (stdout, " #%d: ", j + 1); |
3218 | pt (x->types[j]); | |
252b5132 | 3219 | fprintf (stdout, "\n"); |
bab6aec1 | 3220 | if (x->types[j].bitfield.class == Reg |
3528c362 JB |
3221 | || x->types[j].bitfield.class == RegMMX |
3222 | || x->types[j].bitfield.class == RegSIMD | |
dd6b8a0b | 3223 | || x->types[j].bitfield.class == RegMask |
00cee14f | 3224 | || x->types[j].bitfield.class == SReg |
4a5c67ed JB |
3225 | || x->types[j].bitfield.class == RegCR |
3226 | || x->types[j].bitfield.class == RegDR | |
dd6b8a0b JB |
3227 | || x->types[j].bitfield.class == RegTR |
3228 | || x->types[j].bitfield.class == RegBND) | |
09137c09 SP |
3229 | fprintf (stdout, "%s\n", x->op[j].regs->reg_name); |
3230 | if (operand_type_check (x->types[j], imm)) | |
3231 | pe (x->op[j].imms); | |
3232 | if (operand_type_check (x->types[j], disp)) | |
3233 | pe (x->op[j].disps); | |
252b5132 RH |
3234 | } |
3235 | } | |
3236 | ||
3237 | static void | |
d3ce72d0 | 3238 | pte (insn_template *t) |
252b5132 | 3239 | { |
09137c09 | 3240 | unsigned int j; |
252b5132 | 3241 | fprintf (stdout, " %d operands ", t->operands); |
47926f60 | 3242 | fprintf (stdout, "opcode %x ", t->base_opcode); |
252b5132 RH |
3243 | if (t->extension_opcode != None) |
3244 | fprintf (stdout, "ext %x ", t->extension_opcode); | |
40fb9820 | 3245 | if (t->opcode_modifier.d) |
252b5132 | 3246 | fprintf (stdout, "D"); |
40fb9820 | 3247 | if (t->opcode_modifier.w) |
252b5132 RH |
3248 | fprintf (stdout, "W"); |
3249 | fprintf (stdout, "\n"); | |
09137c09 | 3250 | for (j = 0; j < t->operands; j++) |
252b5132 | 3251 | { |
09137c09 SP |
3252 | fprintf (stdout, " #%d type ", j + 1); |
3253 | pt (t->operand_types[j]); | |
252b5132 RH |
3254 | fprintf (stdout, "\n"); |
3255 | } | |
3256 | } | |
3257 | ||
3258 | static void | |
e3bb37b5 | 3259 | pe (expressionS *e) |
252b5132 | 3260 | { |
24eab124 | 3261 | fprintf (stdout, " operation %d\n", e->X_op); |
b77ad1d4 AM |
3262 | fprintf (stdout, " add_number %ld (%lx)\n", |
3263 | (long) e->X_add_number, (long) e->X_add_number); | |
252b5132 RH |
3264 | if (e->X_add_symbol) |
3265 | { | |
3266 | fprintf (stdout, " add_symbol "); | |
3267 | ps (e->X_add_symbol); | |
3268 | fprintf (stdout, "\n"); | |
3269 | } | |
3270 | if (e->X_op_symbol) | |
3271 | { | |
3272 | fprintf (stdout, " op_symbol "); | |
3273 | ps (e->X_op_symbol); | |
3274 | fprintf (stdout, "\n"); | |
3275 | } | |
3276 | } | |
3277 | ||
3278 | static void | |
e3bb37b5 | 3279 | ps (symbolS *s) |
252b5132 RH |
3280 | { |
3281 | fprintf (stdout, "%s type %s%s", | |
3282 | S_GET_NAME (s), | |
3283 | S_IS_EXTERNAL (s) ? "EXTERNAL " : "", | |
3284 | segment_name (S_GET_SEGMENT (s))); | |
3285 | } | |
3286 | ||
7b81dfbb | 3287 | static struct type_name |
252b5132 | 3288 | { |
40fb9820 L |
3289 | i386_operand_type mask; |
3290 | const char *name; | |
252b5132 | 3291 | } |
7b81dfbb | 3292 | const type_names[] = |
252b5132 | 3293 | { |
40fb9820 L |
3294 | { OPERAND_TYPE_REG8, "r8" }, |
3295 | { OPERAND_TYPE_REG16, "r16" }, | |
3296 | { OPERAND_TYPE_REG32, "r32" }, | |
3297 | { OPERAND_TYPE_REG64, "r64" }, | |
2c703856 JB |
3298 | { OPERAND_TYPE_ACC8, "acc8" }, |
3299 | { OPERAND_TYPE_ACC16, "acc16" }, | |
3300 | { OPERAND_TYPE_ACC32, "acc32" }, | |
3301 | { OPERAND_TYPE_ACC64, "acc64" }, | |
40fb9820 L |
3302 | { OPERAND_TYPE_IMM8, "i8" }, |
3303 | { OPERAND_TYPE_IMM8, "i8s" }, | |
3304 | { OPERAND_TYPE_IMM16, "i16" }, | |
3305 | { OPERAND_TYPE_IMM32, "i32" }, | |
3306 | { OPERAND_TYPE_IMM32S, "i32s" }, | |
3307 | { OPERAND_TYPE_IMM64, "i64" }, | |
3308 | { OPERAND_TYPE_IMM1, "i1" }, | |
3309 | { OPERAND_TYPE_BASEINDEX, "BaseIndex" }, | |
3310 | { OPERAND_TYPE_DISP8, "d8" }, | |
3311 | { OPERAND_TYPE_DISP16, "d16" }, | |
3312 | { OPERAND_TYPE_DISP32, "d32" }, | |
3313 | { OPERAND_TYPE_DISP32S, "d32s" }, | |
3314 | { OPERAND_TYPE_DISP64, "d64" }, | |
3315 | { OPERAND_TYPE_INOUTPORTREG, "InOutPortReg" }, | |
3316 | { OPERAND_TYPE_SHIFTCOUNT, "ShiftCount" }, | |
3317 | { OPERAND_TYPE_CONTROL, "control reg" }, | |
3318 | { OPERAND_TYPE_TEST, "test reg" }, | |
3319 | { OPERAND_TYPE_DEBUG, "debug reg" }, | |
3320 | { OPERAND_TYPE_FLOATREG, "FReg" }, | |
3321 | { OPERAND_TYPE_FLOATACC, "FAcc" }, | |
21df382b | 3322 | { OPERAND_TYPE_SREG, "SReg" }, |
40fb9820 L |
3323 | { OPERAND_TYPE_REGMMX, "rMMX" }, |
3324 | { OPERAND_TYPE_REGXMM, "rXMM" }, | |
0349dc08 | 3325 | { OPERAND_TYPE_REGYMM, "rYMM" }, |
43234a1e | 3326 | { OPERAND_TYPE_REGZMM, "rZMM" }, |
260cd341 | 3327 | { OPERAND_TYPE_REGTMM, "rTMM" }, |
43234a1e | 3328 | { OPERAND_TYPE_REGMASK, "Mask reg" }, |
252b5132 RH |
3329 | }; |
3330 | ||
3331 | static void | |
40fb9820 | 3332 | pt (i386_operand_type t) |
252b5132 | 3333 | { |
40fb9820 | 3334 | unsigned int j; |
c6fb90c8 | 3335 | i386_operand_type a; |
252b5132 | 3336 | |
40fb9820 | 3337 | for (j = 0; j < ARRAY_SIZE (type_names); j++) |
c6fb90c8 L |
3338 | { |
3339 | a = operand_type_and (t, type_names[j].mask); | |
2c703856 | 3340 | if (operand_type_equal (&a, &type_names[j].mask)) |
c6fb90c8 L |
3341 | fprintf (stdout, "%s, ", type_names[j].name); |
3342 | } | |
252b5132 RH |
3343 | fflush (stdout); |
3344 | } | |
3345 | ||
3346 | #endif /* DEBUG386 */ | |
3347 | \f | |
252b5132 | 3348 | static bfd_reloc_code_real_type |
3956db08 | 3349 | reloc (unsigned int size, |
64e74474 AM |
3350 | int pcrel, |
3351 | int sign, | |
3352 | bfd_reloc_code_real_type other) | |
252b5132 | 3353 | { |
47926f60 | 3354 | if (other != NO_RELOC) |
3956db08 | 3355 | { |
91d6fa6a | 3356 | reloc_howto_type *rel; |
3956db08 JB |
3357 | |
3358 | if (size == 8) | |
3359 | switch (other) | |
3360 | { | |
64e74474 AM |
3361 | case BFD_RELOC_X86_64_GOT32: |
3362 | return BFD_RELOC_X86_64_GOT64; | |
3363 | break; | |
553d1284 L |
3364 | case BFD_RELOC_X86_64_GOTPLT64: |
3365 | return BFD_RELOC_X86_64_GOTPLT64; | |
3366 | break; | |
64e74474 AM |
3367 | case BFD_RELOC_X86_64_PLTOFF64: |
3368 | return BFD_RELOC_X86_64_PLTOFF64; | |
3369 | break; | |
3370 | case BFD_RELOC_X86_64_GOTPC32: | |
3371 | other = BFD_RELOC_X86_64_GOTPC64; | |
3372 | break; | |
3373 | case BFD_RELOC_X86_64_GOTPCREL: | |
3374 | other = BFD_RELOC_X86_64_GOTPCREL64; | |
3375 | break; | |
3376 | case BFD_RELOC_X86_64_TPOFF32: | |
3377 | other = BFD_RELOC_X86_64_TPOFF64; | |
3378 | break; | |
3379 | case BFD_RELOC_X86_64_DTPOFF32: | |
3380 | other = BFD_RELOC_X86_64_DTPOFF64; | |
3381 | break; | |
3382 | default: | |
3383 | break; | |
3956db08 | 3384 | } |
e05278af | 3385 | |
8ce3d284 | 3386 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
8fd4256d L |
3387 | if (other == BFD_RELOC_SIZE32) |
3388 | { | |
3389 | if (size == 8) | |
1ab668bf | 3390 | other = BFD_RELOC_SIZE64; |
8fd4256d | 3391 | if (pcrel) |
1ab668bf AM |
3392 | { |
3393 | as_bad (_("there are no pc-relative size relocations")); | |
3394 | return NO_RELOC; | |
3395 | } | |
8fd4256d | 3396 | } |
8ce3d284 | 3397 | #endif |
8fd4256d | 3398 | |
e05278af | 3399 | /* Sign-checking 4-byte relocations in 16-/32-bit code is pointless. */ |
f2d8a97c | 3400 | if (size == 4 && (flag_code != CODE_64BIT || disallow_64bit_reloc)) |
e05278af JB |
3401 | sign = -1; |
3402 | ||
91d6fa6a NC |
3403 | rel = bfd_reloc_type_lookup (stdoutput, other); |
3404 | if (!rel) | |
3956db08 | 3405 | as_bad (_("unknown relocation (%u)"), other); |
91d6fa6a | 3406 | else if (size != bfd_get_reloc_size (rel)) |
3956db08 | 3407 | as_bad (_("%u-byte relocation cannot be applied to %u-byte field"), |
91d6fa6a | 3408 | bfd_get_reloc_size (rel), |
3956db08 | 3409 | size); |
91d6fa6a | 3410 | else if (pcrel && !rel->pc_relative) |
3956db08 | 3411 | as_bad (_("non-pc-relative relocation for pc-relative field")); |
91d6fa6a | 3412 | else if ((rel->complain_on_overflow == complain_overflow_signed |
3956db08 | 3413 | && !sign) |
91d6fa6a | 3414 | || (rel->complain_on_overflow == complain_overflow_unsigned |
64e74474 | 3415 | && sign > 0)) |
3956db08 JB |
3416 | as_bad (_("relocated field and relocation type differ in signedness")); |
3417 | else | |
3418 | return other; | |
3419 | return NO_RELOC; | |
3420 | } | |
252b5132 RH |
3421 | |
3422 | if (pcrel) | |
3423 | { | |
3e73aa7c | 3424 | if (!sign) |
3956db08 | 3425 | as_bad (_("there are no unsigned pc-relative relocations")); |
252b5132 RH |
3426 | switch (size) |
3427 | { | |
3428 | case 1: return BFD_RELOC_8_PCREL; | |
3429 | case 2: return BFD_RELOC_16_PCREL; | |
d258b828 | 3430 | case 4: return BFD_RELOC_32_PCREL; |
d6ab8113 | 3431 | case 8: return BFD_RELOC_64_PCREL; |
252b5132 | 3432 | } |
3956db08 | 3433 | as_bad (_("cannot do %u byte pc-relative relocation"), size); |
252b5132 RH |
3434 | } |
3435 | else | |
3436 | { | |
3956db08 | 3437 | if (sign > 0) |
e5cb08ac | 3438 | switch (size) |
3e73aa7c JH |
3439 | { |
3440 | case 4: return BFD_RELOC_X86_64_32S; | |
3441 | } | |
3442 | else | |
3443 | switch (size) | |
3444 | { | |
3445 | case 1: return BFD_RELOC_8; | |
3446 | case 2: return BFD_RELOC_16; | |
3447 | case 4: return BFD_RELOC_32; | |
3448 | case 8: return BFD_RELOC_64; | |
3449 | } | |
3956db08 JB |
3450 | as_bad (_("cannot do %s %u byte relocation"), |
3451 | sign > 0 ? "signed" : "unsigned", size); | |
252b5132 RH |
3452 | } |
3453 | ||
0cc9e1d3 | 3454 | return NO_RELOC; |
252b5132 RH |
3455 | } |
3456 | ||
47926f60 KH |
3457 | /* Here we decide which fixups can be adjusted to make them relative to |
3458 | the beginning of the section instead of the symbol. Basically we need | |
3459 | to make sure that the dynamic relocations are done correctly, so in | |
3460 | some cases we force the original symbol to be used. */ | |
3461 | ||
252b5132 | 3462 | int |
e3bb37b5 | 3463 | tc_i386_fix_adjustable (fixS *fixP ATTRIBUTE_UNUSED) |
252b5132 | 3464 | { |
6d249963 | 3465 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
718ddfc0 | 3466 | if (!IS_ELF) |
31312f95 AM |
3467 | return 1; |
3468 | ||
a161fe53 AM |
3469 | /* Don't adjust pc-relative references to merge sections in 64-bit |
3470 | mode. */ | |
3471 | if (use_rela_relocations | |
3472 | && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0 | |
3473 | && fixP->fx_pcrel) | |
252b5132 | 3474 | return 0; |
31312f95 | 3475 | |
8d01d9a9 AJ |
3476 | /* The x86_64 GOTPCREL are represented as 32bit PCrel relocations |
3477 | and changed later by validate_fix. */ | |
3478 | if (GOT_symbol && fixP->fx_subsy == GOT_symbol | |
3479 | && fixP->fx_r_type == BFD_RELOC_32_PCREL) | |
3480 | return 0; | |
3481 | ||
8fd4256d L |
3482 | /* Adjust_reloc_syms doesn't know about the GOT. Need to keep symbol |
3483 | for size relocations. */ | |
3484 | if (fixP->fx_r_type == BFD_RELOC_SIZE32 | |
3485 | || fixP->fx_r_type == BFD_RELOC_SIZE64 | |
3486 | || fixP->fx_r_type == BFD_RELOC_386_GOTOFF | |
252b5132 | 3487 | || fixP->fx_r_type == BFD_RELOC_386_GOT32 |
02a86693 | 3488 | || fixP->fx_r_type == BFD_RELOC_386_GOT32X |
13ae64f3 JJ |
3489 | || fixP->fx_r_type == BFD_RELOC_386_TLS_GD |
3490 | || fixP->fx_r_type == BFD_RELOC_386_TLS_LDM | |
3491 | || fixP->fx_r_type == BFD_RELOC_386_TLS_LDO_32 | |
3492 | || fixP->fx_r_type == BFD_RELOC_386_TLS_IE_32 | |
37e55690 JJ |
3493 | || fixP->fx_r_type == BFD_RELOC_386_TLS_IE |
3494 | || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTIE | |
13ae64f3 JJ |
3495 | || fixP->fx_r_type == BFD_RELOC_386_TLS_LE_32 |
3496 | || fixP->fx_r_type == BFD_RELOC_386_TLS_LE | |
67a4f2b7 AO |
3497 | || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTDESC |
3498 | || fixP->fx_r_type == BFD_RELOC_386_TLS_DESC_CALL | |
3e73aa7c | 3499 | || fixP->fx_r_type == BFD_RELOC_X86_64_GOT32 |
80b3ee89 | 3500 | || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCREL |
56ceb5b5 L |
3501 | || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCRELX |
3502 | || fixP->fx_r_type == BFD_RELOC_X86_64_REX_GOTPCRELX | |
bffbf940 JJ |
3503 | || fixP->fx_r_type == BFD_RELOC_X86_64_TLSGD |
3504 | || fixP->fx_r_type == BFD_RELOC_X86_64_TLSLD | |
3505 | || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF32 | |
d6ab8113 | 3506 | || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF64 |
bffbf940 JJ |
3507 | || fixP->fx_r_type == BFD_RELOC_X86_64_GOTTPOFF |
3508 | || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF32 | |
d6ab8113 JB |
3509 | || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF64 |
3510 | || fixP->fx_r_type == BFD_RELOC_X86_64_GOTOFF64 | |
67a4f2b7 AO |
3511 | || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPC32_TLSDESC |
3512 | || fixP->fx_r_type == BFD_RELOC_X86_64_TLSDESC_CALL | |
252b5132 RH |
3513 | || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT |
3514 | || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY) | |
3515 | return 0; | |
31312f95 | 3516 | #endif |
252b5132 RH |
3517 | return 1; |
3518 | } | |
252b5132 | 3519 | |
b4cac588 | 3520 | static int |
e3bb37b5 | 3521 | intel_float_operand (const char *mnemonic) |
252b5132 | 3522 | { |
9306ca4a JB |
3523 | /* Note that the value returned is meaningful only for opcodes with (memory) |
3524 | operands, hence the code here is free to improperly handle opcodes that | |
3525 | have no operands (for better performance and smaller code). */ | |
3526 | ||
3527 | if (mnemonic[0] != 'f') | |
3528 | return 0; /* non-math */ | |
3529 | ||
3530 | switch (mnemonic[1]) | |
3531 | { | |
3532 | /* fclex, fdecstp, fdisi, femms, feni, fincstp, finit, fsetpm, and | |
3533 | the fs segment override prefix not currently handled because no | |
3534 | call path can make opcodes without operands get here */ | |
3535 | case 'i': | |
3536 | return 2 /* integer op */; | |
3537 | case 'l': | |
3538 | if (mnemonic[2] == 'd' && (mnemonic[3] == 'c' || mnemonic[3] == 'e')) | |
3539 | return 3; /* fldcw/fldenv */ | |
3540 | break; | |
3541 | case 'n': | |
3542 | if (mnemonic[2] != 'o' /* fnop */) | |
3543 | return 3; /* non-waiting control op */ | |
3544 | break; | |
3545 | case 'r': | |
3546 | if (mnemonic[2] == 's') | |
3547 | return 3; /* frstor/frstpm */ | |
3548 | break; | |
3549 | case 's': | |
3550 | if (mnemonic[2] == 'a') | |
3551 | return 3; /* fsave */ | |
3552 | if (mnemonic[2] == 't') | |
3553 | { | |
3554 | switch (mnemonic[3]) | |
3555 | { | |
3556 | case 'c': /* fstcw */ | |
3557 | case 'd': /* fstdw */ | |
3558 | case 'e': /* fstenv */ | |
3559 | case 's': /* fsts[gw] */ | |
3560 | return 3; | |
3561 | } | |
3562 | } | |
3563 | break; | |
3564 | case 'x': | |
3565 | if (mnemonic[2] == 'r' || mnemonic[2] == 's') | |
3566 | return 0; /* fxsave/fxrstor are not really math ops */ | |
3567 | break; | |
3568 | } | |
252b5132 | 3569 | |
9306ca4a | 3570 | return 1; |
252b5132 RH |
3571 | } |
3572 | ||
c0f3af97 L |
3573 | /* Build the VEX prefix. */ |
3574 | ||
3575 | static void | |
d3ce72d0 | 3576 | build_vex_prefix (const insn_template *t) |
c0f3af97 L |
3577 | { |
3578 | unsigned int register_specifier; | |
3579 | unsigned int implied_prefix; | |
3580 | unsigned int vector_length; | |
03751133 | 3581 | unsigned int w; |
c0f3af97 L |
3582 | |
3583 | /* Check register specifier. */ | |
3584 | if (i.vex.register_specifier) | |
43234a1e L |
3585 | { |
3586 | register_specifier = | |
3587 | ~register_number (i.vex.register_specifier) & 0xf; | |
3588 | gas_assert ((i.vex.register_specifier->reg_flags & RegVRex) == 0); | |
3589 | } | |
c0f3af97 L |
3590 | else |
3591 | register_specifier = 0xf; | |
3592 | ||
79f0fa25 L |
3593 | /* Use 2-byte VEX prefix by swapping destination and source operand |
3594 | if there are more than 1 register operand. */ | |
3595 | if (i.reg_operands > 1 | |
3596 | && i.vec_encoding != vex_encoding_vex3 | |
86fa6981 | 3597 | && i.dir_encoding == dir_encoding_default |
fa99fab2 | 3598 | && i.operands == i.reg_operands |
dbbc8b7e | 3599 | && operand_type_equal (&i.types[0], &i.types[i.operands - 1]) |
7b47a312 | 3600 | && i.tm.opcode_modifier.opcodeprefix == VEX0F |
dbbc8b7e | 3601 | && (i.tm.opcode_modifier.load || i.tm.opcode_modifier.d) |
fa99fab2 L |
3602 | && i.rex == REX_B) |
3603 | { | |
3604 | unsigned int xchg = i.operands - 1; | |
3605 | union i386_op temp_op; | |
3606 | i386_operand_type temp_type; | |
3607 | ||
3608 | temp_type = i.types[xchg]; | |
3609 | i.types[xchg] = i.types[0]; | |
3610 | i.types[0] = temp_type; | |
3611 | temp_op = i.op[xchg]; | |
3612 | i.op[xchg] = i.op[0]; | |
3613 | i.op[0] = temp_op; | |
3614 | ||
9c2799c2 | 3615 | gas_assert (i.rm.mode == 3); |
fa99fab2 L |
3616 | |
3617 | i.rex = REX_R; | |
3618 | xchg = i.rm.regmem; | |
3619 | i.rm.regmem = i.rm.reg; | |
3620 | i.rm.reg = xchg; | |
3621 | ||
dbbc8b7e JB |
3622 | if (i.tm.opcode_modifier.d) |
3623 | i.tm.base_opcode ^= (i.tm.base_opcode & 0xee) != 0x6e | |
3624 | ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD; | |
3625 | else /* Use the next insn. */ | |
3626 | i.tm = t[1]; | |
fa99fab2 L |
3627 | } |
3628 | ||
79dec6b7 JB |
3629 | /* Use 2-byte VEX prefix by swapping commutative source operands if there |
3630 | are no memory operands and at least 3 register ones. */ | |
3631 | if (i.reg_operands >= 3 | |
3632 | && i.vec_encoding != vex_encoding_vex3 | |
3633 | && i.reg_operands == i.operands - i.imm_operands | |
3634 | && i.tm.opcode_modifier.vex | |
3635 | && i.tm.opcode_modifier.commutative | |
3636 | && (i.tm.opcode_modifier.sse2avx || optimize > 1) | |
3637 | && i.rex == REX_B | |
3638 | && i.vex.register_specifier | |
3639 | && !(i.vex.register_specifier->reg_flags & RegRex)) | |
3640 | { | |
3641 | unsigned int xchg = i.operands - i.reg_operands; | |
3642 | union i386_op temp_op; | |
3643 | i386_operand_type temp_type; | |
3644 | ||
7b47a312 | 3645 | gas_assert (i.tm.opcode_modifier.opcodeprefix == VEX0F); |
79dec6b7 JB |
3646 | gas_assert (!i.tm.opcode_modifier.sae); |
3647 | gas_assert (operand_type_equal (&i.types[i.operands - 2], | |
3648 | &i.types[i.operands - 3])); | |
3649 | gas_assert (i.rm.mode == 3); | |
3650 | ||
3651 | temp_type = i.types[xchg]; | |
3652 | i.types[xchg] = i.types[xchg + 1]; | |
3653 | i.types[xchg + 1] = temp_type; | |
3654 | temp_op = i.op[xchg]; | |
3655 | i.op[xchg] = i.op[xchg + 1]; | |
3656 | i.op[xchg + 1] = temp_op; | |
3657 | ||
3658 | i.rex = 0; | |
3659 | xchg = i.rm.regmem | 8; | |
3660 | i.rm.regmem = ~register_specifier & 0xf; | |
3661 | gas_assert (!(i.rm.regmem & 8)); | |
3662 | i.vex.register_specifier += xchg - i.rm.regmem; | |
3663 | register_specifier = ~xchg & 0xf; | |
3664 | } | |
3665 | ||
539f890d L |
3666 | if (i.tm.opcode_modifier.vex == VEXScalar) |
3667 | vector_length = avxscalar; | |
10c17abd JB |
3668 | else if (i.tm.opcode_modifier.vex == VEX256) |
3669 | vector_length = 1; | |
539f890d | 3670 | else |
10c17abd | 3671 | { |
56522fc5 | 3672 | unsigned int op; |
10c17abd | 3673 | |
c7213af9 L |
3674 | /* Determine vector length from the last multi-length vector |
3675 | operand. */ | |
10c17abd | 3676 | vector_length = 0; |
56522fc5 | 3677 | for (op = t->operands; op--;) |
10c17abd JB |
3678 | if (t->operand_types[op].bitfield.xmmword |
3679 | && t->operand_types[op].bitfield.ymmword | |
3680 | && i.types[op].bitfield.ymmword) | |
3681 | { | |
3682 | vector_length = 1; | |
3683 | break; | |
3684 | } | |
3685 | } | |
c0f3af97 | 3686 | |
8c190ce0 | 3687 | switch ((i.tm.base_opcode >> (i.tm.opcode_length << 3)) & 0xff) |
c0f3af97 L |
3688 | { |
3689 | case 0: | |
3690 | implied_prefix = 0; | |
3691 | break; | |
3692 | case DATA_PREFIX_OPCODE: | |
3693 | implied_prefix = 1; | |
3694 | break; | |
3695 | case REPE_PREFIX_OPCODE: | |
3696 | implied_prefix = 2; | |
3697 | break; | |
3698 | case REPNE_PREFIX_OPCODE: | |
3699 | implied_prefix = 3; | |
3700 | break; | |
3701 | default: | |
3702 | abort (); | |
3703 | } | |
3704 | ||
03751133 L |
3705 | /* Check the REX.W bit and VEXW. */ |
3706 | if (i.tm.opcode_modifier.vexw == VEXWIG) | |
3707 | w = (vexwig == vexw1 || (i.rex & REX_W)) ? 1 : 0; | |
3708 | else if (i.tm.opcode_modifier.vexw) | |
3709 | w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0; | |
3710 | else | |
931d03b7 | 3711 | w = (flag_code == CODE_64BIT ? i.rex & REX_W : vexwig == vexw1) ? 1 : 0; |
03751133 | 3712 | |
c0f3af97 | 3713 | /* Use 2-byte VEX prefix if possible. */ |
03751133 L |
3714 | if (w == 0 |
3715 | && i.vec_encoding != vex_encoding_vex3 | |
7b47a312 | 3716 | && i.tm.opcode_modifier.opcodeprefix == VEX0F |
c0f3af97 L |
3717 | && (i.rex & (REX_W | REX_X | REX_B)) == 0) |
3718 | { | |
3719 | /* 2-byte VEX prefix. */ | |
3720 | unsigned int r; | |
3721 | ||
3722 | i.vex.length = 2; | |
3723 | i.vex.bytes[0] = 0xc5; | |
3724 | ||
3725 | /* Check the REX.R bit. */ | |
3726 | r = (i.rex & REX_R) ? 0 : 1; | |
3727 | i.vex.bytes[1] = (r << 7 | |
3728 | | register_specifier << 3 | |
3729 | | vector_length << 2 | |
3730 | | implied_prefix); | |
3731 | } | |
3732 | else | |
3733 | { | |
3734 | /* 3-byte VEX prefix. */ | |
03751133 | 3735 | unsigned int m; |
c0f3af97 | 3736 | |
f88c9eb0 | 3737 | i.vex.length = 3; |
f88c9eb0 | 3738 | |
7b47a312 | 3739 | switch (i.tm.opcode_modifier.opcodeprefix) |
5dd85c99 | 3740 | { |
7f399153 L |
3741 | case VEX0F: |
3742 | m = 0x1; | |
80de6e00 | 3743 | i.vex.bytes[0] = 0xc4; |
7f399153 L |
3744 | break; |
3745 | case VEX0F38: | |
3746 | m = 0x2; | |
80de6e00 | 3747 | i.vex.bytes[0] = 0xc4; |
7f399153 L |
3748 | break; |
3749 | case VEX0F3A: | |
3750 | m = 0x3; | |
80de6e00 | 3751 | i.vex.bytes[0] = 0xc4; |
7f399153 L |
3752 | break; |
3753 | case XOP08: | |
5dd85c99 SP |
3754 | m = 0x8; |
3755 | i.vex.bytes[0] = 0x8f; | |
7f399153 L |
3756 | break; |
3757 | case XOP09: | |
f88c9eb0 SP |
3758 | m = 0x9; |
3759 | i.vex.bytes[0] = 0x8f; | |
7f399153 L |
3760 | break; |
3761 | case XOP0A: | |
f88c9eb0 SP |
3762 | m = 0xa; |
3763 | i.vex.bytes[0] = 0x8f; | |
7f399153 L |
3764 | break; |
3765 | default: | |
3766 | abort (); | |
f88c9eb0 | 3767 | } |
c0f3af97 | 3768 | |
c0f3af97 L |
3769 | /* The high 3 bits of the second VEX byte are 1's compliment |
3770 | of RXB bits from REX. */ | |
3771 | i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m; | |
3772 | ||
c0f3af97 L |
3773 | i.vex.bytes[2] = (w << 7 |
3774 | | register_specifier << 3 | |
3775 | | vector_length << 2 | |
3776 | | implied_prefix); | |
3777 | } | |
3778 | } | |
3779 | ||
e771e7c9 JB |
3780 | static INLINE bfd_boolean |
3781 | is_evex_encoding (const insn_template *t) | |
3782 | { | |
7091c612 | 3783 | return t->opcode_modifier.evex || t->opcode_modifier.disp8memshift |
e771e7c9 | 3784 | || t->opcode_modifier.broadcast || t->opcode_modifier.masking |
a80195f1 | 3785 | || t->opcode_modifier.sae; |
e771e7c9 JB |
3786 | } |
3787 | ||
7a8655d2 JB |
3788 | static INLINE bfd_boolean |
3789 | is_any_vex_encoding (const insn_template *t) | |
3790 | { | |
7b47a312 | 3791 | return t->opcode_modifier.vex || is_evex_encoding (t); |
7a8655d2 JB |
3792 | } |
3793 | ||
43234a1e L |
3794 | /* Build the EVEX prefix. */ |
3795 | ||
3796 | static void | |
3797 | build_evex_prefix (void) | |
3798 | { | |
3799 | unsigned int register_specifier; | |
3800 | unsigned int implied_prefix; | |
3801 | unsigned int m, w; | |
3802 | rex_byte vrex_used = 0; | |
3803 | ||
3804 | /* Check register specifier. */ | |
3805 | if (i.vex.register_specifier) | |
3806 | { | |
3807 | gas_assert ((i.vrex & REX_X) == 0); | |
3808 | ||
3809 | register_specifier = i.vex.register_specifier->reg_num; | |
3810 | if ((i.vex.register_specifier->reg_flags & RegRex)) | |
3811 | register_specifier += 8; | |
3812 | /* The upper 16 registers are encoded in the fourth byte of the | |
3813 | EVEX prefix. */ | |
3814 | if (!(i.vex.register_specifier->reg_flags & RegVRex)) | |
3815 | i.vex.bytes[3] = 0x8; | |
3816 | register_specifier = ~register_specifier & 0xf; | |
3817 | } | |
3818 | else | |
3819 | { | |
3820 | register_specifier = 0xf; | |
3821 | ||
3822 | /* Encode upper 16 vector index register in the fourth byte of | |
3823 | the EVEX prefix. */ | |
3824 | if (!(i.vrex & REX_X)) | |
3825 | i.vex.bytes[3] = 0x8; | |
3826 | else | |
3827 | vrex_used |= REX_X; | |
3828 | } | |
3829 | ||
3830 | switch ((i.tm.base_opcode >> 8) & 0xff) | |
3831 | { | |
3832 | case 0: | |
3833 | implied_prefix = 0; | |
3834 | break; | |
3835 | case DATA_PREFIX_OPCODE: | |
3836 | implied_prefix = 1; | |
3837 | break; | |
3838 | case REPE_PREFIX_OPCODE: | |
3839 | implied_prefix = 2; | |
3840 | break; | |
3841 | case REPNE_PREFIX_OPCODE: | |
3842 | implied_prefix = 3; | |
3843 | break; | |
3844 | default: | |
3845 | abort (); | |
3846 | } | |
3847 | ||
3848 | /* 4 byte EVEX prefix. */ | |
3849 | i.vex.length = 4; | |
3850 | i.vex.bytes[0] = 0x62; | |
3851 | ||
3852 | /* mmmm bits. */ | |
7b47a312 | 3853 | switch (i.tm.opcode_modifier.opcodeprefix) |
43234a1e L |
3854 | { |
3855 | case VEX0F: | |
3856 | m = 1; | |
3857 | break; | |
3858 | case VEX0F38: | |
3859 | m = 2; | |
3860 | break; | |
3861 | case VEX0F3A: | |
3862 | m = 3; | |
3863 | break; | |
3864 | default: | |
3865 | abort (); | |
3866 | break; | |
3867 | } | |
3868 | ||
3869 | /* The high 3 bits of the second EVEX byte are 1's compliment of RXB | |
3870 | bits from REX. */ | |
3871 | i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m; | |
3872 | ||
3873 | /* The fifth bit of the second EVEX byte is 1's compliment of the | |
3874 | REX_R bit in VREX. */ | |
3875 | if (!(i.vrex & REX_R)) | |
3876 | i.vex.bytes[1] |= 0x10; | |
3877 | else | |
3878 | vrex_used |= REX_R; | |
3879 | ||
3880 | if ((i.reg_operands + i.imm_operands) == i.operands) | |
3881 | { | |
3882 | /* When all operands are registers, the REX_X bit in REX is not | |
3883 | used. We reuse it to encode the upper 16 registers, which is | |
3884 | indicated by the REX_B bit in VREX. The REX_X bit is encoded | |
3885 | as 1's compliment. */ | |
3886 | if ((i.vrex & REX_B)) | |
3887 | { | |
3888 | vrex_used |= REX_B; | |
3889 | i.vex.bytes[1] &= ~0x40; | |
3890 | } | |
3891 | } | |
3892 | ||
3893 | /* EVEX instructions shouldn't need the REX prefix. */ | |
3894 | i.vrex &= ~vrex_used; | |
3895 | gas_assert (i.vrex == 0); | |
3896 | ||
6865c043 L |
3897 | /* Check the REX.W bit and VEXW. */ |
3898 | if (i.tm.opcode_modifier.vexw == VEXWIG) | |
3899 | w = (evexwig == evexw1 || (i.rex & REX_W)) ? 1 : 0; | |
3900 | else if (i.tm.opcode_modifier.vexw) | |
3901 | w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0; | |
3902 | else | |
931d03b7 | 3903 | w = (flag_code == CODE_64BIT ? i.rex & REX_W : evexwig == evexw1) ? 1 : 0; |
43234a1e L |
3904 | |
3905 | /* Encode the U bit. */ | |
3906 | implied_prefix |= 0x4; | |
3907 | ||
3908 | /* The third byte of the EVEX prefix. */ | |
3909 | i.vex.bytes[2] = (w << 7 | register_specifier << 3 | implied_prefix); | |
3910 | ||
3911 | /* The fourth byte of the EVEX prefix. */ | |
3912 | /* The zeroing-masking bit. */ | |
3913 | if (i.mask && i.mask->zeroing) | |
3914 | i.vex.bytes[3] |= 0x80; | |
3915 | ||
3916 | /* Don't always set the broadcast bit if there is no RC. */ | |
3917 | if (!i.rounding) | |
3918 | { | |
3919 | /* Encode the vector length. */ | |
3920 | unsigned int vec_length; | |
3921 | ||
e771e7c9 JB |
3922 | if (!i.tm.opcode_modifier.evex |
3923 | || i.tm.opcode_modifier.evex == EVEXDYN) | |
3924 | { | |
56522fc5 | 3925 | unsigned int op; |
e771e7c9 | 3926 | |
c7213af9 L |
3927 | /* Determine vector length from the last multi-length vector |
3928 | operand. */ | |
56522fc5 | 3929 | for (op = i.operands; op--;) |
e771e7c9 JB |
3930 | if (i.tm.operand_types[op].bitfield.xmmword |
3931 | + i.tm.operand_types[op].bitfield.ymmword | |
3932 | + i.tm.operand_types[op].bitfield.zmmword > 1) | |
3933 | { | |
3934 | if (i.types[op].bitfield.zmmword) | |
c7213af9 L |
3935 | { |
3936 | i.tm.opcode_modifier.evex = EVEX512; | |
3937 | break; | |
3938 | } | |
e771e7c9 | 3939 | else if (i.types[op].bitfield.ymmword) |
c7213af9 L |
3940 | { |
3941 | i.tm.opcode_modifier.evex = EVEX256; | |
3942 | break; | |
3943 | } | |
e771e7c9 | 3944 | else if (i.types[op].bitfield.xmmword) |
c7213af9 L |
3945 | { |
3946 | i.tm.opcode_modifier.evex = EVEX128; | |
3947 | break; | |
3948 | } | |
625cbd7a JB |
3949 | else if (i.broadcast && (int) op == i.broadcast->operand) |
3950 | { | |
4a1b91ea | 3951 | switch (i.broadcast->bytes) |
625cbd7a JB |
3952 | { |
3953 | case 64: | |
3954 | i.tm.opcode_modifier.evex = EVEX512; | |
3955 | break; | |
3956 | case 32: | |
3957 | i.tm.opcode_modifier.evex = EVEX256; | |
3958 | break; | |
3959 | case 16: | |
3960 | i.tm.opcode_modifier.evex = EVEX128; | |
3961 | break; | |
3962 | default: | |
c7213af9 | 3963 | abort (); |
625cbd7a | 3964 | } |
c7213af9 | 3965 | break; |
625cbd7a | 3966 | } |
e771e7c9 | 3967 | } |
c7213af9 | 3968 | |
56522fc5 | 3969 | if (op >= MAX_OPERANDS) |
c7213af9 | 3970 | abort (); |
e771e7c9 JB |
3971 | } |
3972 | ||
43234a1e L |
3973 | switch (i.tm.opcode_modifier.evex) |
3974 | { | |
3975 | case EVEXLIG: /* LL' is ignored */ | |
3976 | vec_length = evexlig << 5; | |
3977 | break; | |
3978 | case EVEX128: | |
3979 | vec_length = 0 << 5; | |
3980 | break; | |
3981 | case EVEX256: | |
3982 | vec_length = 1 << 5; | |
3983 | break; | |
3984 | case EVEX512: | |
3985 | vec_length = 2 << 5; | |
3986 | break; | |
3987 | default: | |
3988 | abort (); | |
3989 | break; | |
3990 | } | |
3991 | i.vex.bytes[3] |= vec_length; | |
3992 | /* Encode the broadcast bit. */ | |
3993 | if (i.broadcast) | |
3994 | i.vex.bytes[3] |= 0x10; | |
3995 | } | |
3996 | else | |
3997 | { | |
3998 | if (i.rounding->type != saeonly) | |
3999 | i.vex.bytes[3] |= 0x10 | (i.rounding->type << 5); | |
4000 | else | |
d3d3c6db | 4001 | i.vex.bytes[3] |= 0x10 | (evexrcig << 5); |
43234a1e L |
4002 | } |
4003 | ||
4004 | if (i.mask && i.mask->mask) | |
4005 | i.vex.bytes[3] |= i.mask->mask->reg_num; | |
4006 | } | |
4007 | ||
65da13b5 L |
4008 | static void |
4009 | process_immext (void) | |
4010 | { | |
4011 | expressionS *exp; | |
4012 | ||
c0f3af97 | 4013 | /* These AMD 3DNow! and SSE2 instructions have an opcode suffix |
65da13b5 L |
4014 | which is coded in the same place as an 8-bit immediate field |
4015 | would be. Here we fake an 8-bit immediate operand from the | |
4016 | opcode suffix stored in tm.extension_opcode. | |
4017 | ||
c1e679ec | 4018 | AVX instructions also use this encoding, for some of |
c0f3af97 | 4019 | 3 argument instructions. */ |
65da13b5 | 4020 | |
43234a1e | 4021 | gas_assert (i.imm_operands <= 1 |
7ab9ffdd | 4022 | && (i.operands <= 2 |
7a8655d2 | 4023 | || (is_any_vex_encoding (&i.tm) |
7ab9ffdd | 4024 | && i.operands <= 4))); |
65da13b5 L |
4025 | |
4026 | exp = &im_expressions[i.imm_operands++]; | |
4027 | i.op[i.operands].imms = exp; | |
4028 | i.types[i.operands] = imm8; | |
4029 | i.operands++; | |
4030 | exp->X_op = O_constant; | |
4031 | exp->X_add_number = i.tm.extension_opcode; | |
4032 | i.tm.extension_opcode = None; | |
4033 | } | |
4034 | ||
42164a71 L |
4035 | |
4036 | static int | |
4037 | check_hle (void) | |
4038 | { | |
4039 | switch (i.tm.opcode_modifier.hleprefixok) | |
4040 | { | |
4041 | default: | |
4042 | abort (); | |
82c2def5 | 4043 | case HLEPrefixNone: |
165de32a L |
4044 | as_bad (_("invalid instruction `%s' after `%s'"), |
4045 | i.tm.name, i.hle_prefix); | |
42164a71 | 4046 | return 0; |
82c2def5 | 4047 | case HLEPrefixLock: |
42164a71 L |
4048 | if (i.prefix[LOCK_PREFIX]) |
4049 | return 1; | |
165de32a | 4050 | as_bad (_("missing `lock' with `%s'"), i.hle_prefix); |
42164a71 | 4051 | return 0; |
82c2def5 | 4052 | case HLEPrefixAny: |
42164a71 | 4053 | return 1; |
82c2def5 | 4054 | case HLEPrefixRelease: |
42164a71 L |
4055 | if (i.prefix[HLE_PREFIX] != XRELEASE_PREFIX_OPCODE) |
4056 | { | |
4057 | as_bad (_("instruction `%s' after `xacquire' not allowed"), | |
4058 | i.tm.name); | |
4059 | return 0; | |
4060 | } | |
8dc0818e | 4061 | if (i.mem_operands == 0 || !(i.flags[i.operands - 1] & Operand_Mem)) |
42164a71 L |
4062 | { |
4063 | as_bad (_("memory destination needed for instruction `%s'" | |
4064 | " after `xrelease'"), i.tm.name); | |
4065 | return 0; | |
4066 | } | |
4067 | return 1; | |
4068 | } | |
4069 | } | |
4070 | ||
b6f8c7c4 L |
4071 | /* Try the shortest encoding by shortening operand size. */ |
4072 | ||
4073 | static void | |
4074 | optimize_encoding (void) | |
4075 | { | |
a0a1771e | 4076 | unsigned int j; |
b6f8c7c4 L |
4077 | |
4078 | if (optimize_for_space | |
72aea328 | 4079 | && !is_any_vex_encoding (&i.tm) |
b6f8c7c4 L |
4080 | && i.reg_operands == 1 |
4081 | && i.imm_operands == 1 | |
4082 | && !i.types[1].bitfield.byte | |
4083 | && i.op[0].imms->X_op == O_constant | |
4084 | && fits_in_imm7 (i.op[0].imms->X_add_number) | |
72aea328 | 4085 | && (i.tm.base_opcode == 0xa8 |
b6f8c7c4 L |
4086 | || (i.tm.base_opcode == 0xf6 |
4087 | && i.tm.extension_opcode == 0x0))) | |
4088 | { | |
4089 | /* Optimize: -Os: | |
4090 | test $imm7, %r64/%r32/%r16 -> test $imm7, %r8 | |
4091 | */ | |
4092 | unsigned int base_regnum = i.op[1].regs->reg_num; | |
4093 | if (flag_code == CODE_64BIT || base_regnum < 4) | |
4094 | { | |
4095 | i.types[1].bitfield.byte = 1; | |
4096 | /* Ignore the suffix. */ | |
4097 | i.suffix = 0; | |
7697afb6 JB |
4098 | /* Convert to byte registers. */ |
4099 | if (i.types[1].bitfield.word) | |
4100 | j = 16; | |
4101 | else if (i.types[1].bitfield.dword) | |
4102 | j = 32; | |
4103 | else | |
4104 | j = 48; | |
4105 | if (!(i.op[1].regs->reg_flags & RegRex) && base_regnum < 4) | |
4106 | j += 8; | |
4107 | i.op[1].regs -= j; | |
b6f8c7c4 L |
4108 | } |
4109 | } | |
4110 | else if (flag_code == CODE_64BIT | |
72aea328 | 4111 | && !is_any_vex_encoding (&i.tm) |
d3d50934 L |
4112 | && ((i.types[1].bitfield.qword |
4113 | && i.reg_operands == 1 | |
b6f8c7c4 L |
4114 | && i.imm_operands == 1 |
4115 | && i.op[0].imms->X_op == O_constant | |
507916b8 | 4116 | && ((i.tm.base_opcode == 0xb8 |
b6f8c7c4 L |
4117 | && i.tm.extension_opcode == None |
4118 | && fits_in_unsigned_long (i.op[0].imms->X_add_number)) | |
4119 | || (fits_in_imm31 (i.op[0].imms->X_add_number) | |
72aea328 JB |
4120 | && ((i.tm.base_opcode == 0x24 |
4121 | || i.tm.base_opcode == 0xa8) | |
b6f8c7c4 L |
4122 | || (i.tm.base_opcode == 0x80 |
4123 | && i.tm.extension_opcode == 0x4) | |
4124 | || ((i.tm.base_opcode == 0xf6 | |
507916b8 | 4125 | || (i.tm.base_opcode | 1) == 0xc7) |
b8364fa7 JB |
4126 | && i.tm.extension_opcode == 0x0))) |
4127 | || (fits_in_imm7 (i.op[0].imms->X_add_number) | |
4128 | && i.tm.base_opcode == 0x83 | |
4129 | && i.tm.extension_opcode == 0x4))) | |
d3d50934 L |
4130 | || (i.types[0].bitfield.qword |
4131 | && ((i.reg_operands == 2 | |
4132 | && i.op[0].regs == i.op[1].regs | |
72aea328 JB |
4133 | && (i.tm.base_opcode == 0x30 |
4134 | || i.tm.base_opcode == 0x28)) | |
d3d50934 L |
4135 | || (i.reg_operands == 1 |
4136 | && i.operands == 1 | |
72aea328 | 4137 | && i.tm.base_opcode == 0x30))))) |
b6f8c7c4 L |
4138 | { |
4139 | /* Optimize: -O: | |
4140 | andq $imm31, %r64 -> andl $imm31, %r32 | |
b8364fa7 | 4141 | andq $imm7, %r64 -> andl $imm7, %r32 |
b6f8c7c4 L |
4142 | testq $imm31, %r64 -> testl $imm31, %r32 |
4143 | xorq %r64, %r64 -> xorl %r32, %r32 | |
4144 | subq %r64, %r64 -> subl %r32, %r32 | |
4145 | movq $imm31, %r64 -> movl $imm31, %r32 | |
4146 | movq $imm32, %r64 -> movl $imm32, %r32 | |
4147 | */ | |
4148 | i.tm.opcode_modifier.norex64 = 1; | |
507916b8 | 4149 | if (i.tm.base_opcode == 0xb8 || (i.tm.base_opcode | 1) == 0xc7) |
b6f8c7c4 L |
4150 | { |
4151 | /* Handle | |
4152 | movq $imm31, %r64 -> movl $imm31, %r32 | |
4153 | movq $imm32, %r64 -> movl $imm32, %r32 | |
4154 | */ | |
4155 | i.tm.operand_types[0].bitfield.imm32 = 1; | |
4156 | i.tm.operand_types[0].bitfield.imm32s = 0; | |
4157 | i.tm.operand_types[0].bitfield.imm64 = 0; | |
4158 | i.types[0].bitfield.imm32 = 1; | |
4159 | i.types[0].bitfield.imm32s = 0; | |
4160 | i.types[0].bitfield.imm64 = 0; | |
4161 | i.types[1].bitfield.dword = 1; | |
4162 | i.types[1].bitfield.qword = 0; | |
507916b8 | 4163 | if ((i.tm.base_opcode | 1) == 0xc7) |
b6f8c7c4 L |
4164 | { |
4165 | /* Handle | |
4166 | movq $imm31, %r64 -> movl $imm31, %r32 | |
4167 | */ | |
507916b8 | 4168 | i.tm.base_opcode = 0xb8; |
b6f8c7c4 | 4169 | i.tm.extension_opcode = None; |
507916b8 | 4170 | i.tm.opcode_modifier.w = 0; |
b6f8c7c4 L |
4171 | i.tm.opcode_modifier.modrm = 0; |
4172 | } | |
4173 | } | |
4174 | } | |
5641ec01 JB |
4175 | else if (optimize > 1 |
4176 | && !optimize_for_space | |
72aea328 | 4177 | && !is_any_vex_encoding (&i.tm) |
5641ec01 JB |
4178 | && i.reg_operands == 2 |
4179 | && i.op[0].regs == i.op[1].regs | |
4180 | && ((i.tm.base_opcode & ~(Opcode_D | 1)) == 0x8 | |
4181 | || (i.tm.base_opcode & ~(Opcode_D | 1)) == 0x20) | |
4182 | && (flag_code != CODE_64BIT || !i.types[0].bitfield.dword)) | |
4183 | { | |
4184 | /* Optimize: -O2: | |
4185 | andb %rN, %rN -> testb %rN, %rN | |
4186 | andw %rN, %rN -> testw %rN, %rN | |
4187 | andq %rN, %rN -> testq %rN, %rN | |
4188 | orb %rN, %rN -> testb %rN, %rN | |
4189 | orw %rN, %rN -> testw %rN, %rN | |
4190 | orq %rN, %rN -> testq %rN, %rN | |
4191 | ||
4192 | and outside of 64-bit mode | |
4193 | ||
4194 | andl %rN, %rN -> testl %rN, %rN | |
4195 | orl %rN, %rN -> testl %rN, %rN | |
4196 | */ | |
4197 | i.tm.base_opcode = 0x84 | (i.tm.base_opcode & 1); | |
4198 | } | |
99112332 | 4199 | else if (i.reg_operands == 3 |
b6f8c7c4 L |
4200 | && i.op[0].regs == i.op[1].regs |
4201 | && !i.types[2].bitfield.xmmword | |
4202 | && (i.tm.opcode_modifier.vex | |
7a69eac3 | 4203 | || ((!i.mask || i.mask->zeroing) |
b6f8c7c4 | 4204 | && !i.rounding |
e771e7c9 | 4205 | && is_evex_encoding (&i.tm) |
80c34c38 | 4206 | && (i.vec_encoding != vex_encoding_evex |
dd22218c | 4207 | || cpu_arch_isa_flags.bitfield.cpuavx512vl |
80c34c38 | 4208 | || i.tm.cpu_flags.bitfield.cpuavx512vl |
7091c612 | 4209 | || (i.tm.operand_types[2].bitfield.zmmword |
dd22218c | 4210 | && i.types[2].bitfield.ymmword)))) |
b6f8c7c4 L |
4211 | && ((i.tm.base_opcode == 0x55 |
4212 | || i.tm.base_opcode == 0x6655 | |
4213 | || i.tm.base_opcode == 0x66df | |
4214 | || i.tm.base_opcode == 0x57 | |
4215 | || i.tm.base_opcode == 0x6657 | |
8305403a L |
4216 | || i.tm.base_opcode == 0x66ef |
4217 | || i.tm.base_opcode == 0x66f8 | |
4218 | || i.tm.base_opcode == 0x66f9 | |
4219 | || i.tm.base_opcode == 0x66fa | |
1424ad86 JB |
4220 | || i.tm.base_opcode == 0x66fb |
4221 | || i.tm.base_opcode == 0x42 | |
4222 | || i.tm.base_opcode == 0x6642 | |
4223 | || i.tm.base_opcode == 0x47 | |
4224 | || i.tm.base_opcode == 0x6647) | |
b6f8c7c4 L |
4225 | && i.tm.extension_opcode == None)) |
4226 | { | |
99112332 | 4227 | /* Optimize: -O1: |
8305403a L |
4228 | VOP, one of vandnps, vandnpd, vxorps, vxorpd, vpsubb, vpsubd, |
4229 | vpsubq and vpsubw: | |
b6f8c7c4 L |
4230 | EVEX VOP %zmmM, %zmmM, %zmmN |
4231 | -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16) | |
99112332 | 4232 | -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2) |
b6f8c7c4 L |
4233 | EVEX VOP %ymmM, %ymmM, %ymmN |
4234 | -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16) | |
99112332 | 4235 | -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2) |
b6f8c7c4 L |
4236 | VEX VOP %ymmM, %ymmM, %ymmN |
4237 | -> VEX VOP %xmmM, %xmmM, %xmmN | |
4238 | VOP, one of vpandn and vpxor: | |
4239 | VEX VOP %ymmM, %ymmM, %ymmN | |
4240 | -> VEX VOP %xmmM, %xmmM, %xmmN | |
4241 | VOP, one of vpandnd and vpandnq: | |
4242 | EVEX VOP %zmmM, %zmmM, %zmmN | |
4243 | -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16) | |
99112332 | 4244 | -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2) |
b6f8c7c4 L |
4245 | EVEX VOP %ymmM, %ymmM, %ymmN |
4246 | -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16) | |
99112332 | 4247 | -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2) |
b6f8c7c4 L |
4248 | VOP, one of vpxord and vpxorq: |
4249 | EVEX VOP %zmmM, %zmmM, %zmmN | |
4250 | -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16) | |
99112332 | 4251 | -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2) |
b6f8c7c4 L |
4252 | EVEX VOP %ymmM, %ymmM, %ymmN |
4253 | -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16) | |
99112332 | 4254 | -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2) |
1424ad86 JB |
4255 | VOP, one of kxord and kxorq: |
4256 | VEX VOP %kM, %kM, %kN | |
4257 | -> VEX kxorw %kM, %kM, %kN | |
4258 | VOP, one of kandnd and kandnq: | |
4259 | VEX VOP %kM, %kM, %kN | |
4260 | -> VEX kandnw %kM, %kM, %kN | |
b6f8c7c4 | 4261 | */ |
e771e7c9 | 4262 | if (is_evex_encoding (&i.tm)) |
b6f8c7c4 | 4263 | { |
7b1d7ca1 | 4264 | if (i.vec_encoding != vex_encoding_evex) |
b6f8c7c4 L |
4265 | { |
4266 | i.tm.opcode_modifier.vex = VEX128; | |
4267 | i.tm.opcode_modifier.vexw = VEXW0; | |
4268 | i.tm.opcode_modifier.evex = 0; | |
4269 | } | |
7b1d7ca1 | 4270 | else if (optimize > 1) |
dd22218c L |
4271 | i.tm.opcode_modifier.evex = EVEX128; |
4272 | else | |
4273 | return; | |
b6f8c7c4 | 4274 | } |
f74a6307 | 4275 | else if (i.tm.operand_types[0].bitfield.class == RegMask) |
1424ad86 JB |
4276 | { |
4277 | i.tm.base_opcode &= 0xff; | |
4278 | i.tm.opcode_modifier.vexw = VEXW0; | |
4279 | } | |
b6f8c7c4 L |
4280 | else |
4281 | i.tm.opcode_modifier.vex = VEX128; | |
4282 | ||
4283 | if (i.tm.opcode_modifier.vex) | |
4284 | for (j = 0; j < 3; j++) | |
4285 | { | |
4286 | i.types[j].bitfield.xmmword = 1; | |
4287 | i.types[j].bitfield.ymmword = 0; | |
4288 | } | |
4289 | } | |
392a5972 | 4290 | else if (i.vec_encoding != vex_encoding_evex |
97ed31ae | 4291 | && !i.types[0].bitfield.zmmword |
392a5972 | 4292 | && !i.types[1].bitfield.zmmword |
97ed31ae | 4293 | && !i.mask |
a0a1771e | 4294 | && !i.broadcast |
97ed31ae | 4295 | && is_evex_encoding (&i.tm) |
392a5972 L |
4296 | && ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0x666f |
4297 | || (i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf36f | |
a0a1771e JB |
4298 | || (i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf26f |
4299 | || (i.tm.base_opcode & ~4) == 0x66db | |
4300 | || (i.tm.base_opcode & ~4) == 0x66eb) | |
97ed31ae L |
4301 | && i.tm.extension_opcode == None) |
4302 | { | |
4303 | /* Optimize: -O1: | |
4304 | VOP, one of vmovdqa32, vmovdqa64, vmovdqu8, vmovdqu16, | |
4305 | vmovdqu32 and vmovdqu64: | |
4306 | EVEX VOP %xmmM, %xmmN | |
4307 | -> VEX vmovdqa|vmovdqu %xmmM, %xmmN (M and N < 16) | |
4308 | EVEX VOP %ymmM, %ymmN | |
4309 | -> VEX vmovdqa|vmovdqu %ymmM, %ymmN (M and N < 16) | |
4310 | EVEX VOP %xmmM, mem | |
4311 | -> VEX vmovdqa|vmovdqu %xmmM, mem (M < 16) | |
4312 | EVEX VOP %ymmM, mem | |
4313 | -> VEX vmovdqa|vmovdqu %ymmM, mem (M < 16) | |
4314 | EVEX VOP mem, %xmmN | |
4315 | -> VEX mvmovdqa|vmovdquem, %xmmN (N < 16) | |
4316 | EVEX VOP mem, %ymmN | |
4317 | -> VEX vmovdqa|vmovdqu mem, %ymmN (N < 16) | |
a0a1771e JB |
4318 | VOP, one of vpand, vpandn, vpor, vpxor: |
4319 | EVEX VOP{d,q} %xmmL, %xmmM, %xmmN | |
4320 | -> VEX VOP %xmmL, %xmmM, %xmmN (L, M, and N < 16) | |
4321 | EVEX VOP{d,q} %ymmL, %ymmM, %ymmN | |
4322 | -> VEX VOP %ymmL, %ymmM, %ymmN (L, M, and N < 16) | |
4323 | EVEX VOP{d,q} mem, %xmmM, %xmmN | |
4324 | -> VEX VOP mem, %xmmM, %xmmN (M and N < 16) | |
4325 | EVEX VOP{d,q} mem, %ymmM, %ymmN | |
4326 | -> VEX VOP mem, %ymmM, %ymmN (M and N < 16) | |
97ed31ae | 4327 | */ |
a0a1771e | 4328 | for (j = 0; j < i.operands; j++) |
392a5972 L |
4329 | if (operand_type_check (i.types[j], disp) |
4330 | && i.op[j].disps->X_op == O_constant) | |
4331 | { | |
4332 | /* Since the VEX prefix has 2 or 3 bytes, the EVEX prefix | |
4333 | has 4 bytes, EVEX Disp8 has 1 byte and VEX Disp32 has 4 | |
4334 | bytes, we choose EVEX Disp8 over VEX Disp32. */ | |
4335 | int evex_disp8, vex_disp8; | |
4336 | unsigned int memshift = i.memshift; | |
4337 | offsetT n = i.op[j].disps->X_add_number; | |
4338 | ||
4339 | evex_disp8 = fits_in_disp8 (n); | |
4340 | i.memshift = 0; | |
4341 | vex_disp8 = fits_in_disp8 (n); | |
4342 | if (evex_disp8 != vex_disp8) | |
4343 | { | |
4344 | i.memshift = memshift; | |
4345 | return; | |
4346 | } | |
4347 | ||
4348 | i.types[j].bitfield.disp8 = vex_disp8; | |
4349 | break; | |
4350 | } | |
4351 | if ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf26f) | |
4352 | i.tm.base_opcode ^= 0xf36f ^ 0xf26f; | |
97ed31ae L |
4353 | i.tm.opcode_modifier.vex |
4354 | = i.types[0].bitfield.ymmword ? VEX256 : VEX128; | |
4355 | i.tm.opcode_modifier.vexw = VEXW0; | |
79dec6b7 JB |
4356 | /* VPAND, VPOR, and VPXOR are commutative. */ |
4357 | if (i.reg_operands == 3 && i.tm.base_opcode != 0x66df) | |
4358 | i.tm.opcode_modifier.commutative = 1; | |
97ed31ae L |
4359 | i.tm.opcode_modifier.evex = 0; |
4360 | i.tm.opcode_modifier.masking = 0; | |
a0a1771e | 4361 | i.tm.opcode_modifier.broadcast = 0; |
97ed31ae L |
4362 | i.tm.opcode_modifier.disp8memshift = 0; |
4363 | i.memshift = 0; | |
a0a1771e JB |
4364 | if (j < i.operands) |
4365 | i.types[j].bitfield.disp8 | |
4366 | = fits_in_disp8 (i.op[j].disps->X_add_number); | |
97ed31ae | 4367 | } |
b6f8c7c4 L |
4368 | } |
4369 | ||
ae531041 L |
4370 | /* Return non-zero for load instruction. */ |
4371 | ||
4372 | static int | |
4373 | load_insn_p (void) | |
4374 | { | |
4375 | unsigned int dest; | |
4376 | int any_vex_p = is_any_vex_encoding (&i.tm); | |
4377 | unsigned int base_opcode = i.tm.base_opcode | 1; | |
4378 | ||
4379 | if (!any_vex_p) | |
4380 | { | |
a09f656b | 4381 | /* Anysize insns: lea, invlpg, clflush, prefetchnta, prefetcht0, |
4382 | prefetcht1, prefetcht2, prefetchtw, bndmk, bndcl, bndcu, bndcn, | |
4383 | bndstx, bndldx, prefetchwt1, clflushopt, clwb, cldemote. */ | |
4384 | if (i.tm.opcode_modifier.anysize) | |
ae531041 L |
4385 | return 0; |
4386 | ||
a09f656b | 4387 | /* pop, popf, popa. */ |
4388 | if (strcmp (i.tm.name, "pop") == 0 | |
4389 | || i.tm.base_opcode == 0x9d | |
4390 | || i.tm.base_opcode == 0x61) | |
ae531041 L |
4391 | return 1; |
4392 | ||
4393 | /* movs, cmps, lods, scas. */ | |
4394 | if ((i.tm.base_opcode | 0xb) == 0xaf) | |
4395 | return 1; | |
4396 | ||
a09f656b | 4397 | /* outs, xlatb. */ |
4398 | if (base_opcode == 0x6f | |
4399 | || i.tm.base_opcode == 0xd7) | |
ae531041 | 4400 | return 1; |
a09f656b | 4401 | /* NB: For AMD-specific insns with implicit memory operands, |
4402 | they're intentionally not covered. */ | |
ae531041 L |
4403 | } |
4404 | ||
4405 | /* No memory operand. */ | |
4406 | if (!i.mem_operands) | |
4407 | return 0; | |
4408 | ||
4409 | if (any_vex_p) | |
4410 | { | |
4411 | /* vldmxcsr. */ | |
4412 | if (i.tm.base_opcode == 0xae | |
4413 | && i.tm.opcode_modifier.vex | |
7b47a312 | 4414 | && i.tm.opcode_modifier.opcodeprefix == VEX0F |
ae531041 L |
4415 | && i.tm.extension_opcode == 2) |
4416 | return 1; | |
4417 | } | |
4418 | else | |
4419 | { | |
4420 | /* test, not, neg, mul, imul, div, idiv. */ | |
4421 | if ((i.tm.base_opcode == 0xf6 || i.tm.base_opcode == 0xf7) | |
4422 | && i.tm.extension_opcode != 1) | |
4423 | return 1; | |
4424 | ||
4425 | /* inc, dec. */ | |
4426 | if (base_opcode == 0xff && i.tm.extension_opcode <= 1) | |
4427 | return 1; | |
4428 | ||
4429 | /* add, or, adc, sbb, and, sub, xor, cmp. */ | |
4430 | if (i.tm.base_opcode >= 0x80 && i.tm.base_opcode <= 0x83) | |
4431 | return 1; | |
4432 | ||
4433 | /* bt, bts, btr, btc. */ | |
4434 | if (i.tm.base_opcode == 0xfba | |
4435 | && (i.tm.extension_opcode >= 4 && i.tm.extension_opcode <= 7)) | |
4436 | return 1; | |
4437 | ||
4438 | /* rol, ror, rcl, rcr, shl/sal, shr, sar. */ | |
4439 | if ((base_opcode == 0xc1 | |
4440 | || (i.tm.base_opcode >= 0xd0 && i.tm.base_opcode <= 0xd3)) | |
4441 | && i.tm.extension_opcode != 6) | |
4442 | return 1; | |
4443 | ||
4444 | /* cmpxchg8b, cmpxchg16b, xrstors. */ | |
4445 | if (i.tm.base_opcode == 0xfc7 | |
8b65b895 | 4446 | && i.tm.opcode_modifier.opcodeprefix == 0 |
ae531041 L |
4447 | && (i.tm.extension_opcode == 1 || i.tm.extension_opcode == 3)) |
4448 | return 1; | |
4449 | ||
4450 | /* fxrstor, ldmxcsr, xrstor. */ | |
4451 | if (i.tm.base_opcode == 0xfae | |
4452 | && (i.tm.extension_opcode == 1 | |
4453 | || i.tm.extension_opcode == 2 | |
4454 | || i.tm.extension_opcode == 5)) | |
4455 | return 1; | |
4456 | ||
4457 | /* lgdt, lidt, lmsw. */ | |
4458 | if (i.tm.base_opcode == 0xf01 | |
4459 | && (i.tm.extension_opcode == 2 | |
4460 | || i.tm.extension_opcode == 3 | |
4461 | || i.tm.extension_opcode == 6)) | |
4462 | return 1; | |
4463 | ||
4464 | /* vmptrld */ | |
4465 | if (i.tm.base_opcode == 0xfc7 | |
8b65b895 | 4466 | && i.tm.opcode_modifier.opcodeprefix == 0 |
ae531041 L |
4467 | && i.tm.extension_opcode == 6) |
4468 | return 1; | |
4469 | ||
4470 | /* Check for x87 instructions. */ | |
4471 | if (i.tm.base_opcode >= 0xd8 && i.tm.base_opcode <= 0xdf) | |
4472 | { | |
4473 | /* Skip fst, fstp, fstenv, fstcw. */ | |
4474 | if (i.tm.base_opcode == 0xd9 | |
4475 | && (i.tm.extension_opcode == 2 | |
4476 | || i.tm.extension_opcode == 3 | |
4477 | || i.tm.extension_opcode == 6 | |
4478 | || i.tm.extension_opcode == 7)) | |
4479 | return 0; | |
4480 | ||
4481 | /* Skip fisttp, fist, fistp, fstp. */ | |
4482 | if (i.tm.base_opcode == 0xdb | |
4483 | && (i.tm.extension_opcode == 1 | |
4484 | || i.tm.extension_opcode == 2 | |
4485 | || i.tm.extension_opcode == 3 | |
4486 | || i.tm.extension_opcode == 7)) | |
4487 | return 0; | |
4488 | ||
4489 | /* Skip fisttp, fst, fstp, fsave, fstsw. */ | |
4490 | if (i.tm.base_opcode == 0xdd | |
4491 | && (i.tm.extension_opcode == 1 | |
4492 | || i.tm.extension_opcode == 2 | |
4493 | || i.tm.extension_opcode == 3 | |
4494 | || i.tm.extension_opcode == 6 | |
4495 | || i.tm.extension_opcode == 7)) | |
4496 | return 0; | |
4497 | ||
4498 | /* Skip fisttp, fist, fistp, fbstp, fistp. */ | |
4499 | if (i.tm.base_opcode == 0xdf | |
4500 | && (i.tm.extension_opcode == 1 | |
4501 | || i.tm.extension_opcode == 2 | |
4502 | || i.tm.extension_opcode == 3 | |
4503 | || i.tm.extension_opcode == 6 | |
4504 | || i.tm.extension_opcode == 7)) | |
4505 | return 0; | |
4506 | ||
4507 | return 1; | |
4508 | } | |
4509 | } | |
4510 | ||
4511 | dest = i.operands - 1; | |
4512 | ||
4513 | /* Check fake imm8 operand and 3 source operands. */ | |
4514 | if ((i.tm.opcode_modifier.immext | |
4515 | || i.tm.opcode_modifier.vexsources == VEX3SOURCES) | |
4516 | && i.types[dest].bitfield.imm8) | |
4517 | dest--; | |
4518 | ||
4519 | /* add, or, adc, sbb, and, sub, xor, cmp, test, xchg, xadd */ | |
4520 | if (!any_vex_p | |
4521 | && (base_opcode == 0x1 | |
4522 | || base_opcode == 0x9 | |
4523 | || base_opcode == 0x11 | |
4524 | || base_opcode == 0x19 | |
4525 | || base_opcode == 0x21 | |
4526 | || base_opcode == 0x29 | |
4527 | || base_opcode == 0x31 | |
4528 | || base_opcode == 0x39 | |
4529 | || (i.tm.base_opcode >= 0x84 && i.tm.base_opcode <= 0x87) | |
4530 | || base_opcode == 0xfc1)) | |
4531 | return 1; | |
4532 | ||
4533 | /* Check for load instruction. */ | |
4534 | return (i.types[dest].bitfield.class != ClassNone | |
4535 | || i.types[dest].bitfield.instance == Accum); | |
4536 | } | |
4537 | ||
4538 | /* Output lfence, 0xfaee8, after instruction. */ | |
4539 | ||
4540 | static void | |
4541 | insert_lfence_after (void) | |
4542 | { | |
4543 | if (lfence_after_load && load_insn_p ()) | |
4544 | { | |
a09f656b | 4545 | /* There are also two REP string instructions that require |
4546 | special treatment. Specifically, the compare string (CMPS) | |
4547 | and scan string (SCAS) instructions set EFLAGS in a manner | |
4548 | that depends on the data being compared/scanned. When used | |
4549 | with a REP prefix, the number of iterations may therefore | |
4550 | vary depending on this data. If the data is a program secret | |
4551 | chosen by the adversary using an LVI method, | |
4552 | then this data-dependent behavior may leak some aspect | |
4553 | of the secret. */ | |
4554 | if (((i.tm.base_opcode | 0x1) == 0xa7 | |
4555 | || (i.tm.base_opcode | 0x1) == 0xaf) | |
4556 | && i.prefix[REP_PREFIX]) | |
4557 | { | |
4558 | as_warn (_("`%s` changes flags which would affect control flow behavior"), | |
4559 | i.tm.name); | |
4560 | } | |
ae531041 L |
4561 | char *p = frag_more (3); |
4562 | *p++ = 0xf; | |
4563 | *p++ = 0xae; | |
4564 | *p = 0xe8; | |
4565 | } | |
4566 | } | |
4567 | ||
4568 | /* Output lfence, 0xfaee8, before instruction. */ | |
4569 | ||
4570 | static void | |
4571 | insert_lfence_before (void) | |
4572 | { | |
4573 | char *p; | |
4574 | ||
4575 | if (is_any_vex_encoding (&i.tm)) | |
4576 | return; | |
4577 | ||
4578 | if (i.tm.base_opcode == 0xff | |
4579 | && (i.tm.extension_opcode == 2 || i.tm.extension_opcode == 4)) | |
4580 | { | |
4581 | /* Insert lfence before indirect branch if needed. */ | |
4582 | ||
4583 | if (lfence_before_indirect_branch == lfence_branch_none) | |
4584 | return; | |
4585 | ||
4586 | if (i.operands != 1) | |
4587 | abort (); | |
4588 | ||
4589 | if (i.reg_operands == 1) | |
4590 | { | |
4591 | /* Indirect branch via register. Don't insert lfence with | |
4592 | -mlfence-after-load=yes. */ | |
4593 | if (lfence_after_load | |
4594 | || lfence_before_indirect_branch == lfence_branch_memory) | |
4595 | return; | |
4596 | } | |
4597 | else if (i.mem_operands == 1 | |
4598 | && lfence_before_indirect_branch != lfence_branch_register) | |
4599 | { | |
4600 | as_warn (_("indirect `%s` with memory operand should be avoided"), | |
4601 | i.tm.name); | |
4602 | return; | |
4603 | } | |
4604 | else | |
4605 | return; | |
4606 | ||
4607 | if (last_insn.kind != last_insn_other | |
4608 | && last_insn.seg == now_seg) | |
4609 | { | |
4610 | as_warn_where (last_insn.file, last_insn.line, | |
4611 | _("`%s` skips -mlfence-before-indirect-branch on `%s`"), | |
4612 | last_insn.name, i.tm.name); | |
4613 | return; | |
4614 | } | |
4615 | ||
4616 | p = frag_more (3); | |
4617 | *p++ = 0xf; | |
4618 | *p++ = 0xae; | |
4619 | *p = 0xe8; | |
4620 | return; | |
4621 | } | |
4622 | ||
503648e4 | 4623 | /* Output or/not/shl and lfence before near ret. */ |
ae531041 L |
4624 | if (lfence_before_ret != lfence_before_ret_none |
4625 | && (i.tm.base_opcode == 0xc2 | |
503648e4 | 4626 | || i.tm.base_opcode == 0xc3)) |
ae531041 L |
4627 | { |
4628 | if (last_insn.kind != last_insn_other | |
4629 | && last_insn.seg == now_seg) | |
4630 | { | |
4631 | as_warn_where (last_insn.file, last_insn.line, | |
4632 | _("`%s` skips -mlfence-before-ret on `%s`"), | |
4633 | last_insn.name, i.tm.name); | |
4634 | return; | |
4635 | } | |
a09f656b | 4636 | |
a09f656b | 4637 | /* Near ret ingore operand size override under CPU64. */ |
503648e4 | 4638 | char prefix = flag_code == CODE_64BIT |
4639 | ? 0x48 | |
4640 | : i.prefix[DATA_PREFIX] ? 0x66 : 0x0; | |
a09f656b | 4641 | |
4642 | if (lfence_before_ret == lfence_before_ret_not) | |
4643 | { | |
4644 | /* not: 0xf71424, may add prefix | |
4645 | for operand size override or 64-bit code. */ | |
4646 | p = frag_more ((prefix ? 2 : 0) + 6 + 3); | |
4647 | if (prefix) | |
4648 | *p++ = prefix; | |
ae531041 L |
4649 | *p++ = 0xf7; |
4650 | *p++ = 0x14; | |
4651 | *p++ = 0x24; | |
a09f656b | 4652 | if (prefix) |
4653 | *p++ = prefix; | |
ae531041 L |
4654 | *p++ = 0xf7; |
4655 | *p++ = 0x14; | |
4656 | *p++ = 0x24; | |
4657 | } | |
a09f656b | 4658 | else |
4659 | { | |
4660 | p = frag_more ((prefix ? 1 : 0) + 4 + 3); | |
4661 | if (prefix) | |
4662 | *p++ = prefix; | |
4663 | if (lfence_before_ret == lfence_before_ret_or) | |
4664 | { | |
4665 | /* or: 0x830c2400, may add prefix | |
4666 | for operand size override or 64-bit code. */ | |
4667 | *p++ = 0x83; | |
4668 | *p++ = 0x0c; | |
4669 | } | |
4670 | else | |
4671 | { | |
4672 | /* shl: 0xc1242400, may add prefix | |
4673 | for operand size override or 64-bit code. */ | |
4674 | *p++ = 0xc1; | |
4675 | *p++ = 0x24; | |
4676 | } | |
4677 | ||
4678 | *p++ = 0x24; | |
4679 | *p++ = 0x0; | |
4680 | } | |
4681 | ||
ae531041 L |
4682 | *p++ = 0xf; |
4683 | *p++ = 0xae; | |
4684 | *p = 0xe8; | |
4685 | } | |
4686 | } | |
4687 | ||
252b5132 RH |
4688 | /* This is the guts of the machine-dependent assembler. LINE points to a |
4689 | machine dependent instruction. This function is supposed to emit | |
4690 | the frags/bytes it assembles to. */ | |
4691 | ||
4692 | void | |
65da13b5 | 4693 | md_assemble (char *line) |
252b5132 | 4694 | { |
40fb9820 | 4695 | unsigned int j; |
83b16ac6 | 4696 | char mnemonic[MAX_MNEM_SIZE], mnem_suffix; |
d3ce72d0 | 4697 | const insn_template *t; |
252b5132 | 4698 | |
47926f60 | 4699 | /* Initialize globals. */ |
252b5132 RH |
4700 | memset (&i, '\0', sizeof (i)); |
4701 | for (j = 0; j < MAX_OPERANDS; j++) | |
1ae12ab7 | 4702 | i.reloc[j] = NO_RELOC; |
252b5132 RH |
4703 | memset (disp_expressions, '\0', sizeof (disp_expressions)); |
4704 | memset (im_expressions, '\0', sizeof (im_expressions)); | |
ce8a8b2f | 4705 | save_stack_p = save_stack; |
252b5132 RH |
4706 | |
4707 | /* First parse an instruction mnemonic & call i386_operand for the operands. | |
4708 | We assume that the scrubber has arranged it so that line[0] is the valid | |
47926f60 | 4709 | start of a (possibly prefixed) mnemonic. */ |
252b5132 | 4710 | |
29b0f896 AM |
4711 | line = parse_insn (line, mnemonic); |
4712 | if (line == NULL) | |
4713 | return; | |
83b16ac6 | 4714 | mnem_suffix = i.suffix; |
252b5132 | 4715 | |
29b0f896 | 4716 | line = parse_operands (line, mnemonic); |
ee86248c | 4717 | this_operand = -1; |
8325cc63 JB |
4718 | xfree (i.memop1_string); |
4719 | i.memop1_string = NULL; | |
29b0f896 AM |
4720 | if (line == NULL) |
4721 | return; | |
252b5132 | 4722 | |
29b0f896 AM |
4723 | /* Now we've parsed the mnemonic into a set of templates, and have the |
4724 | operands at hand. */ | |
4725 | ||
b630c145 JB |
4726 | /* All Intel opcodes have reversed operands except for "bound", "enter", |
4727 | "monitor*", "mwait*", "tpause", and "umwait". We also don't reverse | |
4728 | intersegment "jmp" and "call" instructions with 2 immediate operands so | |
4729 | that the immediate segment precedes the offset, as it does when in AT&T | |
4730 | mode. */ | |
4d456e3d L |
4731 | if (intel_syntax |
4732 | && i.operands > 1 | |
29b0f896 | 4733 | && (strcmp (mnemonic, "bound") != 0) |
30123838 | 4734 | && (strcmp (mnemonic, "invlpga") != 0) |
eedb0f2c JB |
4735 | && (strncmp (mnemonic, "monitor", 7) != 0) |
4736 | && (strncmp (mnemonic, "mwait", 5) != 0) | |
b630c145 JB |
4737 | && (strcmp (mnemonic, "tpause") != 0) |
4738 | && (strcmp (mnemonic, "umwait") != 0) | |
40fb9820 L |
4739 | && !(operand_type_check (i.types[0], imm) |
4740 | && operand_type_check (i.types[1], imm))) | |
29b0f896 AM |
4741 | swap_operands (); |
4742 | ||
ec56d5c0 JB |
4743 | /* The order of the immediates should be reversed |
4744 | for 2 immediates extrq and insertq instructions */ | |
4745 | if (i.imm_operands == 2 | |
4746 | && (strcmp (mnemonic, "extrq") == 0 | |
4747 | || strcmp (mnemonic, "insertq") == 0)) | |
4748 | swap_2_operands (0, 1); | |
4749 | ||
29b0f896 AM |
4750 | if (i.imm_operands) |
4751 | optimize_imm (); | |
4752 | ||
b300c311 L |
4753 | /* Don't optimize displacement for movabs since it only takes 64bit |
4754 | displacement. */ | |
4755 | if (i.disp_operands | |
a501d77e | 4756 | && i.disp_encoding != disp_encoding_32bit |
862be3fb L |
4757 | && (flag_code != CODE_64BIT |
4758 | || strcmp (mnemonic, "movabs") != 0)) | |
4759 | optimize_disp (); | |
29b0f896 AM |
4760 | |
4761 | /* Next, we find a template that matches the given insn, | |
4762 | making sure the overlap of the given operands types is consistent | |
4763 | with the template operand types. */ | |
252b5132 | 4764 | |
83b16ac6 | 4765 | if (!(t = match_template (mnem_suffix))) |
29b0f896 | 4766 | return; |
252b5132 | 4767 | |
7bab8ab5 | 4768 | if (sse_check != check_none |
81f8a913 | 4769 | && !i.tm.opcode_modifier.noavx |
6e3e5c9e | 4770 | && !i.tm.cpu_flags.bitfield.cpuavx |
569d50f1 | 4771 | && !i.tm.cpu_flags.bitfield.cpuavx512f |
daf50ae7 L |
4772 | && (i.tm.cpu_flags.bitfield.cpusse |
4773 | || i.tm.cpu_flags.bitfield.cpusse2 | |
4774 | || i.tm.cpu_flags.bitfield.cpusse3 | |
4775 | || i.tm.cpu_flags.bitfield.cpussse3 | |
4776 | || i.tm.cpu_flags.bitfield.cpusse4_1 | |
6e3e5c9e JB |
4777 | || i.tm.cpu_flags.bitfield.cpusse4_2 |
4778 | || i.tm.cpu_flags.bitfield.cpupclmul | |
4779 | || i.tm.cpu_flags.bitfield.cpuaes | |
569d50f1 | 4780 | || i.tm.cpu_flags.bitfield.cpusha |
6e3e5c9e | 4781 | || i.tm.cpu_flags.bitfield.cpugfni)) |
daf50ae7 | 4782 | { |
7bab8ab5 | 4783 | (sse_check == check_warning |
daf50ae7 L |
4784 | ? as_warn |
4785 | : as_bad) (_("SSE instruction `%s' is used"), i.tm.name); | |
4786 | } | |
4787 | ||
40fb9820 | 4788 | if (i.tm.opcode_modifier.fwait) |
29b0f896 AM |
4789 | if (!add_prefix (FWAIT_OPCODE)) |
4790 | return; | |
252b5132 | 4791 | |
d5de92cf L |
4792 | /* Check if REP prefix is OK. */ |
4793 | if (i.rep_prefix && !i.tm.opcode_modifier.repprefixok) | |
4794 | { | |
4795 | as_bad (_("invalid instruction `%s' after `%s'"), | |
4796 | i.tm.name, i.rep_prefix); | |
4797 | return; | |
4798 | } | |
4799 | ||
c1ba0266 L |
4800 | /* Check for lock without a lockable instruction. Destination operand |
4801 | must be memory unless it is xchg (0x86). */ | |
c32fa91d L |
4802 | if (i.prefix[LOCK_PREFIX] |
4803 | && (!i.tm.opcode_modifier.islockable | |
c1ba0266 L |
4804 | || i.mem_operands == 0 |
4805 | || (i.tm.base_opcode != 0x86 | |
8dc0818e | 4806 | && !(i.flags[i.operands - 1] & Operand_Mem)))) |
c32fa91d L |
4807 | { |
4808 | as_bad (_("expecting lockable instruction after `lock'")); | |
4809 | return; | |
4810 | } | |
4811 | ||
40d231b4 JB |
4812 | /* Check for data size prefix on VEX/XOP/EVEX encoded and SIMD insns. */ |
4813 | if (i.prefix[DATA_PREFIX] | |
4814 | && (is_any_vex_encoding (&i.tm) | |
4815 | || i.tm.operand_types[i.imm_operands].bitfield.class >= RegMMX | |
4816 | || i.tm.operand_types[i.imm_operands + 1].bitfield.class >= RegMMX)) | |
7a8655d2 JB |
4817 | { |
4818 | as_bad (_("data size prefix invalid with `%s'"), i.tm.name); | |
4819 | return; | |
4820 | } | |
4821 | ||
42164a71 | 4822 | /* Check if HLE prefix is OK. */ |
165de32a | 4823 | if (i.hle_prefix && !check_hle ()) |
42164a71 L |
4824 | return; |
4825 | ||
7e8b059b L |
4826 | /* Check BND prefix. */ |
4827 | if (i.bnd_prefix && !i.tm.opcode_modifier.bndprefixok) | |
4828 | as_bad (_("expecting valid branch instruction after `bnd'")); | |
4829 | ||
04ef582a | 4830 | /* Check NOTRACK prefix. */ |
9fef80d6 L |
4831 | if (i.notrack_prefix && !i.tm.opcode_modifier.notrackprefixok) |
4832 | as_bad (_("expecting indirect branch instruction after `notrack'")); | |
04ef582a | 4833 | |
327e8c42 JB |
4834 | if (i.tm.cpu_flags.bitfield.cpumpx) |
4835 | { | |
4836 | if (flag_code == CODE_64BIT && i.prefix[ADDR_PREFIX]) | |
4837 | as_bad (_("32-bit address isn't allowed in 64-bit MPX instructions.")); | |
4838 | else if (flag_code != CODE_16BIT | |
4839 | ? i.prefix[ADDR_PREFIX] | |
4840 | : i.mem_operands && !i.prefix[ADDR_PREFIX]) | |
4841 | as_bad (_("16-bit address isn't allowed in MPX instructions")); | |
4842 | } | |
7e8b059b L |
4843 | |
4844 | /* Insert BND prefix. */ | |
76d3a78a JB |
4845 | if (add_bnd_prefix && i.tm.opcode_modifier.bndprefixok) |
4846 | { | |
4847 | if (!i.prefix[BND_PREFIX]) | |
4848 | add_prefix (BND_PREFIX_OPCODE); | |
4849 | else if (i.prefix[BND_PREFIX] != BND_PREFIX_OPCODE) | |
4850 | { | |
4851 | as_warn (_("replacing `rep'/`repe' prefix by `bnd'")); | |
4852 | i.prefix[BND_PREFIX] = BND_PREFIX_OPCODE; | |
4853 | } | |
4854 | } | |
7e8b059b | 4855 | |
29b0f896 | 4856 | /* Check string instruction segment overrides. */ |
51c8edf6 | 4857 | if (i.tm.opcode_modifier.isstring >= IS_STRING_ES_OP0) |
29b0f896 | 4858 | { |
51c8edf6 | 4859 | gas_assert (i.mem_operands); |
29b0f896 | 4860 | if (!check_string ()) |
5dd0794d | 4861 | return; |
fc0763e6 | 4862 | i.disp_operands = 0; |
29b0f896 | 4863 | } |
5dd0794d | 4864 | |
b6f8c7c4 L |
4865 | if (optimize && !i.no_optimize && i.tm.opcode_modifier.optimize) |
4866 | optimize_encoding (); | |
4867 | ||
29b0f896 AM |
4868 | if (!process_suffix ()) |
4869 | return; | |
e413e4e9 | 4870 | |
921eafea | 4871 | /* Update operand types and check extended states. */ |
bc0844ae | 4872 | for (j = 0; j < i.operands; j++) |
921eafea L |
4873 | { |
4874 | i.types[j] = operand_type_and (i.types[j], i.tm.operand_types[j]); | |
32930e4e | 4875 | switch (i.types[j].bitfield.class) |
921eafea L |
4876 | { |
4877 | default: | |
4878 | break; | |
4879 | case RegMMX: | |
4880 | i.xstate |= xstate_mmx; | |
4881 | break; | |
4882 | case RegMask: | |
32930e4e | 4883 | i.xstate |= xstate_mask; |
921eafea L |
4884 | break; |
4885 | case RegSIMD: | |
32930e4e | 4886 | if (i.types[j].bitfield.tmmword) |
921eafea | 4887 | i.xstate |= xstate_tmm; |
32930e4e | 4888 | else if (i.types[j].bitfield.zmmword) |
921eafea | 4889 | i.xstate |= xstate_zmm; |
32930e4e | 4890 | else if (i.types[j].bitfield.ymmword) |
921eafea | 4891 | i.xstate |= xstate_ymm; |
32930e4e | 4892 | else if (i.types[j].bitfield.xmmword) |
921eafea L |
4893 | i.xstate |= xstate_xmm; |
4894 | break; | |
4895 | } | |
4896 | } | |
bc0844ae | 4897 | |
29b0f896 AM |
4898 | /* Make still unresolved immediate matches conform to size of immediate |
4899 | given in i.suffix. */ | |
4900 | if (!finalize_imm ()) | |
4901 | return; | |
252b5132 | 4902 | |
40fb9820 | 4903 | if (i.types[0].bitfield.imm1) |
29b0f896 | 4904 | i.imm_operands = 0; /* kludge for shift insns. */ |
252b5132 | 4905 | |
9afe6eb8 L |
4906 | /* We only need to check those implicit registers for instructions |
4907 | with 3 operands or less. */ | |
4908 | if (i.operands <= 3) | |
4909 | for (j = 0; j < i.operands; j++) | |
75e5731b JB |
4910 | if (i.types[j].bitfield.instance != InstanceNone |
4911 | && !i.types[j].bitfield.xmmword) | |
9afe6eb8 | 4912 | i.reg_operands--; |
40fb9820 | 4913 | |
29b0f896 AM |
4914 | /* For insns with operands there are more diddles to do to the opcode. */ |
4915 | if (i.operands) | |
4916 | { | |
4917 | if (!process_operands ()) | |
4918 | return; | |
4919 | } | |
8c190ce0 | 4920 | else if (!quiet_warnings && i.tm.opcode_modifier.ugh) |
29b0f896 AM |
4921 | { |
4922 | /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. */ | |
4923 | as_warn (_("translating to `%sp'"), i.tm.name); | |
4924 | } | |
252b5132 | 4925 | |
7a8655d2 | 4926 | if (is_any_vex_encoding (&i.tm)) |
9e5e5283 | 4927 | { |
c1dc7af5 | 4928 | if (!cpu_arch_flags.bitfield.cpui286) |
9e5e5283 | 4929 | { |
c1dc7af5 | 4930 | as_bad (_("instruction `%s' isn't supported outside of protected mode."), |
9e5e5283 L |
4931 | i.tm.name); |
4932 | return; | |
4933 | } | |
c0f3af97 | 4934 | |
0b9404fd JB |
4935 | /* Check for explicit REX prefix. */ |
4936 | if (i.prefix[REX_PREFIX] || i.rex_encoding) | |
4937 | { | |
4938 | as_bad (_("REX prefix invalid with `%s'"), i.tm.name); | |
4939 | return; | |
4940 | } | |
4941 | ||
9e5e5283 L |
4942 | if (i.tm.opcode_modifier.vex) |
4943 | build_vex_prefix (t); | |
4944 | else | |
4945 | build_evex_prefix (); | |
0b9404fd JB |
4946 | |
4947 | /* The individual REX.RXBW bits got consumed. */ | |
4948 | i.rex &= REX_OPCODE; | |
9e5e5283 | 4949 | } |
43234a1e | 4950 | |
5dd85c99 SP |
4951 | /* Handle conversion of 'int $3' --> special int3 insn. XOP or FMA4 |
4952 | instructions may define INT_OPCODE as well, so avoid this corner | |
4953 | case for those instructions that use MODRM. */ | |
4954 | if (i.tm.base_opcode == INT_OPCODE | |
a6461c02 SP |
4955 | && !i.tm.opcode_modifier.modrm |
4956 | && i.op[0].imms->X_add_number == 3) | |
29b0f896 AM |
4957 | { |
4958 | i.tm.base_opcode = INT3_OPCODE; | |
4959 | i.imm_operands = 0; | |
4960 | } | |
252b5132 | 4961 | |
0cfa3eb3 JB |
4962 | if ((i.tm.opcode_modifier.jump == JUMP |
4963 | || i.tm.opcode_modifier.jump == JUMP_BYTE | |
4964 | || i.tm.opcode_modifier.jump == JUMP_DWORD) | |
29b0f896 AM |
4965 | && i.op[0].disps->X_op == O_constant) |
4966 | { | |
4967 | /* Convert "jmp constant" (and "call constant") to a jump (call) to | |
4968 | the absolute address given by the constant. Since ix86 jumps and | |
4969 | calls are pc relative, we need to generate a reloc. */ | |
4970 | i.op[0].disps->X_add_symbol = &abs_symbol; | |
4971 | i.op[0].disps->X_op = O_symbol; | |
4972 | } | |
252b5132 | 4973 | |
29b0f896 AM |
4974 | /* For 8 bit registers we need an empty rex prefix. Also if the |
4975 | instruction already has a prefix, we need to convert old | |
4976 | registers to new ones. */ | |
773f551c | 4977 | |
bab6aec1 | 4978 | if ((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte |
29b0f896 | 4979 | && (i.op[0].regs->reg_flags & RegRex64) != 0) |
bab6aec1 | 4980 | || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte |
29b0f896 | 4981 | && (i.op[1].regs->reg_flags & RegRex64) != 0) |
bab6aec1 JB |
4982 | || (((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte) |
4983 | || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte)) | |
29b0f896 AM |
4984 | && i.rex != 0)) |
4985 | { | |
4986 | int x; | |
726c5dcd | 4987 | |
29b0f896 AM |
4988 | i.rex |= REX_OPCODE; |
4989 | for (x = 0; x < 2; x++) | |
4990 | { | |
4991 | /* Look for 8 bit operand that uses old registers. */ | |
bab6aec1 | 4992 | if (i.types[x].bitfield.class == Reg && i.types[x].bitfield.byte |
29b0f896 | 4993 | && (i.op[x].regs->reg_flags & RegRex64) == 0) |
773f551c | 4994 | { |
3f93af61 | 4995 | gas_assert (!(i.op[x].regs->reg_flags & RegRex)); |
29b0f896 AM |
4996 | /* In case it is "hi" register, give up. */ |
4997 | if (i.op[x].regs->reg_num > 3) | |
a540244d | 4998 | as_bad (_("can't encode register '%s%s' in an " |
4eed87de | 4999 | "instruction requiring REX prefix."), |
a540244d | 5000 | register_prefix, i.op[x].regs->reg_name); |
773f551c | 5001 | |
29b0f896 AM |
5002 | /* Otherwise it is equivalent to the extended register. |
5003 | Since the encoding doesn't change this is merely | |
5004 | cosmetic cleanup for debug output. */ | |
5005 | ||
5006 | i.op[x].regs = i.op[x].regs + 8; | |
773f551c | 5007 | } |
29b0f896 AM |
5008 | } |
5009 | } | |
773f551c | 5010 | |
6b6b6807 L |
5011 | if (i.rex == 0 && i.rex_encoding) |
5012 | { | |
5013 | /* Check if we can add a REX_OPCODE byte. Look for 8 bit operand | |
3f93af61 | 5014 | that uses legacy register. If it is "hi" register, don't add |
6b6b6807 L |
5015 | the REX_OPCODE byte. */ |
5016 | int x; | |
5017 | for (x = 0; x < 2; x++) | |
bab6aec1 | 5018 | if (i.types[x].bitfield.class == Reg |
6b6b6807 L |
5019 | && i.types[x].bitfield.byte |
5020 | && (i.op[x].regs->reg_flags & RegRex64) == 0 | |
5021 | && i.op[x].regs->reg_num > 3) | |
5022 | { | |
3f93af61 | 5023 | gas_assert (!(i.op[x].regs->reg_flags & RegRex)); |
6b6b6807 L |
5024 | i.rex_encoding = FALSE; |
5025 | break; | |
5026 | } | |
5027 | ||
5028 | if (i.rex_encoding) | |
5029 | i.rex = REX_OPCODE; | |
5030 | } | |
5031 | ||
7ab9ffdd | 5032 | if (i.rex != 0) |
29b0f896 AM |
5033 | add_prefix (REX_OPCODE | i.rex); |
5034 | ||
ae531041 L |
5035 | insert_lfence_before (); |
5036 | ||
29b0f896 AM |
5037 | /* We are ready to output the insn. */ |
5038 | output_insn (); | |
e379e5f3 | 5039 | |
ae531041 L |
5040 | insert_lfence_after (); |
5041 | ||
e379e5f3 L |
5042 | last_insn.seg = now_seg; |
5043 | ||
5044 | if (i.tm.opcode_modifier.isprefix) | |
5045 | { | |
5046 | last_insn.kind = last_insn_prefix; | |
5047 | last_insn.name = i.tm.name; | |
5048 | last_insn.file = as_where (&last_insn.line); | |
5049 | } | |
5050 | else | |
5051 | last_insn.kind = last_insn_other; | |
29b0f896 AM |
5052 | } |
5053 | ||
5054 | static char * | |
e3bb37b5 | 5055 | parse_insn (char *line, char *mnemonic) |
29b0f896 AM |
5056 | { |
5057 | char *l = line; | |
5058 | char *token_start = l; | |
5059 | char *mnem_p; | |
5c6af06e | 5060 | int supported; |
d3ce72d0 | 5061 | const insn_template *t; |
b6169b20 | 5062 | char *dot_p = NULL; |
29b0f896 | 5063 | |
29b0f896 AM |
5064 | while (1) |
5065 | { | |
5066 | mnem_p = mnemonic; | |
5067 | while ((*mnem_p = mnemonic_chars[(unsigned char) *l]) != 0) | |
5068 | { | |
b6169b20 L |
5069 | if (*mnem_p == '.') |
5070 | dot_p = mnem_p; | |
29b0f896 AM |
5071 | mnem_p++; |
5072 | if (mnem_p >= mnemonic + MAX_MNEM_SIZE) | |
45288df1 | 5073 | { |
29b0f896 AM |
5074 | as_bad (_("no such instruction: `%s'"), token_start); |
5075 | return NULL; | |
5076 | } | |
5077 | l++; | |
5078 | } | |
5079 | if (!is_space_char (*l) | |
5080 | && *l != END_OF_INSN | |
e44823cf JB |
5081 | && (intel_syntax |
5082 | || (*l != PREFIX_SEPARATOR | |
5083 | && *l != ','))) | |
29b0f896 AM |
5084 | { |
5085 | as_bad (_("invalid character %s in mnemonic"), | |
5086 | output_invalid (*l)); | |
5087 | return NULL; | |
5088 | } | |
5089 | if (token_start == l) | |
5090 | { | |
e44823cf | 5091 | if (!intel_syntax && *l == PREFIX_SEPARATOR) |
29b0f896 AM |
5092 | as_bad (_("expecting prefix; got nothing")); |
5093 | else | |
5094 | as_bad (_("expecting mnemonic; got nothing")); | |
5095 | return NULL; | |
5096 | } | |
45288df1 | 5097 | |
29b0f896 | 5098 | /* Look up instruction (or prefix) via hash table. */ |
629310ab | 5099 | current_templates = (const templates *) str_hash_find (op_hash, mnemonic); |
47926f60 | 5100 | |
29b0f896 AM |
5101 | if (*l != END_OF_INSN |
5102 | && (!is_space_char (*l) || l[1] != END_OF_INSN) | |
5103 | && current_templates | |
40fb9820 | 5104 | && current_templates->start->opcode_modifier.isprefix) |
29b0f896 | 5105 | { |
c6fb90c8 | 5106 | if (!cpu_flags_check_cpu64 (current_templates->start->cpu_flags)) |
2dd88dca JB |
5107 | { |
5108 | as_bad ((flag_code != CODE_64BIT | |
5109 | ? _("`%s' is only supported in 64-bit mode") | |
5110 | : _("`%s' is not supported in 64-bit mode")), | |
5111 | current_templates->start->name); | |
5112 | return NULL; | |
5113 | } | |
29b0f896 AM |
5114 | /* If we are in 16-bit mode, do not allow addr16 or data16. |
5115 | Similarly, in 32-bit mode, do not allow addr32 or data32. */ | |
673fe0f0 JB |
5116 | if ((current_templates->start->opcode_modifier.size == SIZE16 |
5117 | || current_templates->start->opcode_modifier.size == SIZE32) | |
29b0f896 | 5118 | && flag_code != CODE_64BIT |
673fe0f0 | 5119 | && ((current_templates->start->opcode_modifier.size == SIZE32) |
29b0f896 AM |
5120 | ^ (flag_code == CODE_16BIT))) |
5121 | { | |
5122 | as_bad (_("redundant %s prefix"), | |
5123 | current_templates->start->name); | |
5124 | return NULL; | |
45288df1 | 5125 | } |
86fa6981 | 5126 | if (current_templates->start->opcode_length == 0) |
29b0f896 | 5127 | { |
86fa6981 L |
5128 | /* Handle pseudo prefixes. */ |
5129 | switch (current_templates->start->base_opcode) | |
5130 | { | |
41eb8e88 | 5131 | case Prefix_Disp8: |
86fa6981 L |
5132 | /* {disp8} */ |
5133 | i.disp_encoding = disp_encoding_8bit; | |
5134 | break; | |
41eb8e88 L |
5135 | case Prefix_Disp16: |
5136 | /* {disp16} */ | |
5137 | i.disp_encoding = disp_encoding_16bit; | |
5138 | break; | |
5139 | case Prefix_Disp32: | |
86fa6981 L |
5140 | /* {disp32} */ |
5141 | i.disp_encoding = disp_encoding_32bit; | |
5142 | break; | |
41eb8e88 | 5143 | case Prefix_Load: |
86fa6981 L |
5144 | /* {load} */ |
5145 | i.dir_encoding = dir_encoding_load; | |
5146 | break; | |
41eb8e88 | 5147 | case Prefix_Store: |
86fa6981 L |
5148 | /* {store} */ |
5149 | i.dir_encoding = dir_encoding_store; | |
5150 | break; | |
41eb8e88 | 5151 | case Prefix_VEX: |
42e04b36 L |
5152 | /* {vex} */ |
5153 | i.vec_encoding = vex_encoding_vex; | |
86fa6981 | 5154 | break; |
41eb8e88 | 5155 | case Prefix_VEX3: |
86fa6981 L |
5156 | /* {vex3} */ |
5157 | i.vec_encoding = vex_encoding_vex3; | |
5158 | break; | |
41eb8e88 | 5159 | case Prefix_EVEX: |
86fa6981 L |
5160 | /* {evex} */ |
5161 | i.vec_encoding = vex_encoding_evex; | |
5162 | break; | |
41eb8e88 | 5163 | case Prefix_REX: |
6b6b6807 L |
5164 | /* {rex} */ |
5165 | i.rex_encoding = TRUE; | |
5166 | break; | |
41eb8e88 | 5167 | case Prefix_NoOptimize: |
b6f8c7c4 L |
5168 | /* {nooptimize} */ |
5169 | i.no_optimize = TRUE; | |
5170 | break; | |
86fa6981 L |
5171 | default: |
5172 | abort (); | |
5173 | } | |
5174 | } | |
5175 | else | |
5176 | { | |
5177 | /* Add prefix, checking for repeated prefixes. */ | |
4e9ac44a | 5178 | switch (add_prefix (current_templates->start->base_opcode)) |
86fa6981 | 5179 | { |
4e9ac44a L |
5180 | case PREFIX_EXIST: |
5181 | return NULL; | |
5182 | case PREFIX_DS: | |
d777820b | 5183 | if (current_templates->start->cpu_flags.bitfield.cpuibt) |
4e9ac44a L |
5184 | i.notrack_prefix = current_templates->start->name; |
5185 | break; | |
5186 | case PREFIX_REP: | |
5187 | if (current_templates->start->cpu_flags.bitfield.cpuhle) | |
5188 | i.hle_prefix = current_templates->start->name; | |
5189 | else if (current_templates->start->cpu_flags.bitfield.cpumpx) | |
5190 | i.bnd_prefix = current_templates->start->name; | |
5191 | else | |
5192 | i.rep_prefix = current_templates->start->name; | |
5193 | break; | |
5194 | default: | |
5195 | break; | |
86fa6981 | 5196 | } |
29b0f896 AM |
5197 | } |
5198 | /* Skip past PREFIX_SEPARATOR and reset token_start. */ | |
5199 | token_start = ++l; | |
5200 | } | |
5201 | else | |
5202 | break; | |
5203 | } | |
45288df1 | 5204 | |
30a55f88 | 5205 | if (!current_templates) |
b6169b20 | 5206 | { |
07d5e953 JB |
5207 | /* Deprecated functionality (new code should use pseudo-prefixes instead): |
5208 | Check if we should swap operand or force 32bit displacement in | |
f8a5c266 | 5209 | encoding. */ |
30a55f88 | 5210 | if (mnem_p - 2 == dot_p && dot_p[1] == 's') |
64c49ab3 | 5211 | i.dir_encoding = dir_encoding_swap; |
8d63c93e | 5212 | else if (mnem_p - 3 == dot_p |
a501d77e L |
5213 | && dot_p[1] == 'd' |
5214 | && dot_p[2] == '8') | |
5215 | i.disp_encoding = disp_encoding_8bit; | |
8d63c93e | 5216 | else if (mnem_p - 4 == dot_p |
f8a5c266 L |
5217 | && dot_p[1] == 'd' |
5218 | && dot_p[2] == '3' | |
5219 | && dot_p[3] == '2') | |
a501d77e | 5220 | i.disp_encoding = disp_encoding_32bit; |
30a55f88 L |
5221 | else |
5222 | goto check_suffix; | |
5223 | mnem_p = dot_p; | |
5224 | *dot_p = '\0'; | |
629310ab | 5225 | current_templates = (const templates *) str_hash_find (op_hash, mnemonic); |
b6169b20 L |
5226 | } |
5227 | ||
29b0f896 AM |
5228 | if (!current_templates) |
5229 | { | |
dc1e8a47 | 5230 | check_suffix: |
1c529385 | 5231 | if (mnem_p > mnemonic) |
29b0f896 | 5232 | { |
1c529385 LH |
5233 | /* See if we can get a match by trimming off a suffix. */ |
5234 | switch (mnem_p[-1]) | |
29b0f896 | 5235 | { |
1c529385 LH |
5236 | case WORD_MNEM_SUFFIX: |
5237 | if (intel_syntax && (intel_float_operand (mnemonic) & 2)) | |
29b0f896 AM |
5238 | i.suffix = SHORT_MNEM_SUFFIX; |
5239 | else | |
1c529385 LH |
5240 | /* Fall through. */ |
5241 | case BYTE_MNEM_SUFFIX: | |
5242 | case QWORD_MNEM_SUFFIX: | |
5243 | i.suffix = mnem_p[-1]; | |
29b0f896 | 5244 | mnem_p[-1] = '\0'; |
fe0e921f AM |
5245 | current_templates |
5246 | = (const templates *) str_hash_find (op_hash, mnemonic); | |
1c529385 LH |
5247 | break; |
5248 | case SHORT_MNEM_SUFFIX: | |
5249 | case LONG_MNEM_SUFFIX: | |
5250 | if (!intel_syntax) | |
5251 | { | |
5252 | i.suffix = mnem_p[-1]; | |
5253 | mnem_p[-1] = '\0'; | |
fe0e921f AM |
5254 | current_templates |
5255 | = (const templates *) str_hash_find (op_hash, mnemonic); | |
1c529385 LH |
5256 | } |
5257 | break; | |
5258 | ||
5259 | /* Intel Syntax. */ | |
5260 | case 'd': | |
5261 | if (intel_syntax) | |
5262 | { | |
5263 | if (intel_float_operand (mnemonic) == 1) | |
5264 | i.suffix = SHORT_MNEM_SUFFIX; | |
5265 | else | |
5266 | i.suffix = LONG_MNEM_SUFFIX; | |
5267 | mnem_p[-1] = '\0'; | |
fe0e921f AM |
5268 | current_templates |
5269 | = (const templates *) str_hash_find (op_hash, mnemonic); | |
1c529385 LH |
5270 | } |
5271 | break; | |
29b0f896 | 5272 | } |
29b0f896 | 5273 | } |
1c529385 | 5274 | |
29b0f896 AM |
5275 | if (!current_templates) |
5276 | { | |
5277 | as_bad (_("no such instruction: `%s'"), token_start); | |
5278 | return NULL; | |
5279 | } | |
5280 | } | |
252b5132 | 5281 | |
0cfa3eb3 JB |
5282 | if (current_templates->start->opcode_modifier.jump == JUMP |
5283 | || current_templates->start->opcode_modifier.jump == JUMP_BYTE) | |
29b0f896 AM |
5284 | { |
5285 | /* Check for a branch hint. We allow ",pt" and ",pn" for | |
5286 | predict taken and predict not taken respectively. | |
5287 | I'm not sure that branch hints actually do anything on loop | |
5288 | and jcxz insns (JumpByte) for current Pentium4 chips. They | |
5289 | may work in the future and it doesn't hurt to accept them | |
5290 | now. */ | |
5291 | if (l[0] == ',' && l[1] == 'p') | |
5292 | { | |
5293 | if (l[2] == 't') | |
5294 | { | |
5295 | if (!add_prefix (DS_PREFIX_OPCODE)) | |
5296 | return NULL; | |
5297 | l += 3; | |
5298 | } | |
5299 | else if (l[2] == 'n') | |
5300 | { | |
5301 | if (!add_prefix (CS_PREFIX_OPCODE)) | |
5302 | return NULL; | |
5303 | l += 3; | |
5304 | } | |
5305 | } | |
5306 | } | |
5307 | /* Any other comma loses. */ | |
5308 | if (*l == ',') | |
5309 | { | |
5310 | as_bad (_("invalid character %s in mnemonic"), | |
5311 | output_invalid (*l)); | |
5312 | return NULL; | |
5313 | } | |
252b5132 | 5314 | |
29b0f896 | 5315 | /* Check if instruction is supported on specified architecture. */ |
5c6af06e JB |
5316 | supported = 0; |
5317 | for (t = current_templates->start; t < current_templates->end; ++t) | |
5318 | { | |
c0f3af97 L |
5319 | supported |= cpu_flags_match (t); |
5320 | if (supported == CPU_FLAGS_PERFECT_MATCH) | |
548d0ee6 JB |
5321 | { |
5322 | if (!cpu_arch_flags.bitfield.cpui386 && (flag_code != CODE_16BIT)) | |
5323 | as_warn (_("use .code16 to ensure correct addressing mode")); | |
3629bb00 | 5324 | |
548d0ee6 JB |
5325 | return l; |
5326 | } | |
29b0f896 | 5327 | } |
3629bb00 | 5328 | |
548d0ee6 JB |
5329 | if (!(supported & CPU_FLAGS_64BIT_MATCH)) |
5330 | as_bad (flag_code == CODE_64BIT | |
5331 | ? _("`%s' is not supported in 64-bit mode") | |
5332 | : _("`%s' is only supported in 64-bit mode"), | |
5333 | current_templates->start->name); | |
5334 | else | |
5335 | as_bad (_("`%s' is not supported on `%s%s'"), | |
5336 | current_templates->start->name, | |
5337 | cpu_arch_name ? cpu_arch_name : default_arch, | |
5338 | cpu_sub_arch_name ? cpu_sub_arch_name : ""); | |
252b5132 | 5339 | |
548d0ee6 | 5340 | return NULL; |
29b0f896 | 5341 | } |
252b5132 | 5342 | |
29b0f896 | 5343 | static char * |
e3bb37b5 | 5344 | parse_operands (char *l, const char *mnemonic) |
29b0f896 AM |
5345 | { |
5346 | char *token_start; | |
3138f287 | 5347 | |
29b0f896 AM |
5348 | /* 1 if operand is pending after ','. */ |
5349 | unsigned int expecting_operand = 0; | |
252b5132 | 5350 | |
29b0f896 AM |
5351 | /* Non-zero if operand parens not balanced. */ |
5352 | unsigned int paren_not_balanced; | |
5353 | ||
5354 | while (*l != END_OF_INSN) | |
5355 | { | |
5356 | /* Skip optional white space before operand. */ | |
5357 | if (is_space_char (*l)) | |
5358 | ++l; | |
d02603dc | 5359 | if (!is_operand_char (*l) && *l != END_OF_INSN && *l != '"') |
29b0f896 AM |
5360 | { |
5361 | as_bad (_("invalid character %s before operand %d"), | |
5362 | output_invalid (*l), | |
5363 | i.operands + 1); | |
5364 | return NULL; | |
5365 | } | |
d02603dc | 5366 | token_start = l; /* After white space. */ |
29b0f896 AM |
5367 | paren_not_balanced = 0; |
5368 | while (paren_not_balanced || *l != ',') | |
5369 | { | |
5370 | if (*l == END_OF_INSN) | |
5371 | { | |
5372 | if (paren_not_balanced) | |
5373 | { | |
5374 | if (!intel_syntax) | |
5375 | as_bad (_("unbalanced parenthesis in operand %d."), | |
5376 | i.operands + 1); | |
5377 | else | |
5378 | as_bad (_("unbalanced brackets in operand %d."), | |
5379 | i.operands + 1); | |
5380 | return NULL; | |
5381 | } | |
5382 | else | |
5383 | break; /* we are done */ | |
5384 | } | |
d02603dc | 5385 | else if (!is_operand_char (*l) && !is_space_char (*l) && *l != '"') |
29b0f896 AM |
5386 | { |
5387 | as_bad (_("invalid character %s in operand %d"), | |
5388 | output_invalid (*l), | |
5389 | i.operands + 1); | |
5390 | return NULL; | |
5391 | } | |
5392 | if (!intel_syntax) | |
5393 | { | |
5394 | if (*l == '(') | |
5395 | ++paren_not_balanced; | |
5396 | if (*l == ')') | |
5397 | --paren_not_balanced; | |
5398 | } | |
5399 | else | |
5400 | { | |
5401 | if (*l == '[') | |
5402 | ++paren_not_balanced; | |
5403 | if (*l == ']') | |
5404 | --paren_not_balanced; | |
5405 | } | |
5406 | l++; | |
5407 | } | |
5408 | if (l != token_start) | |
5409 | { /* Yes, we've read in another operand. */ | |
5410 | unsigned int operand_ok; | |
5411 | this_operand = i.operands++; | |
5412 | if (i.operands > MAX_OPERANDS) | |
5413 | { | |
5414 | as_bad (_("spurious operands; (%d operands/instruction max)"), | |
5415 | MAX_OPERANDS); | |
5416 | return NULL; | |
5417 | } | |
9d46ce34 | 5418 | i.types[this_operand].bitfield.unspecified = 1; |
29b0f896 AM |
5419 | /* Now parse operand adding info to 'i' as we go along. */ |
5420 | END_STRING_AND_SAVE (l); | |
5421 | ||
1286ab78 L |
5422 | if (i.mem_operands > 1) |
5423 | { | |
5424 | as_bad (_("too many memory references for `%s'"), | |
5425 | mnemonic); | |
5426 | return 0; | |
5427 | } | |
5428 | ||
29b0f896 AM |
5429 | if (intel_syntax) |
5430 | operand_ok = | |
5431 | i386_intel_operand (token_start, | |
5432 | intel_float_operand (mnemonic)); | |
5433 | else | |
a7619375 | 5434 | operand_ok = i386_att_operand (token_start); |
29b0f896 AM |
5435 | |
5436 | RESTORE_END_STRING (l); | |
5437 | if (!operand_ok) | |
5438 | return NULL; | |
5439 | } | |
5440 | else | |
5441 | { | |
5442 | if (expecting_operand) | |
5443 | { | |
5444 | expecting_operand_after_comma: | |
5445 | as_bad (_("expecting operand after ','; got nothing")); | |
5446 | return NULL; | |
5447 | } | |
5448 | if (*l == ',') | |
5449 | { | |
5450 | as_bad (_("expecting operand before ','; got nothing")); | |
5451 | return NULL; | |
5452 | } | |
5453 | } | |
7f3f1ea2 | 5454 | |
29b0f896 AM |
5455 | /* Now *l must be either ',' or END_OF_INSN. */ |
5456 | if (*l == ',') | |
5457 | { | |
5458 | if (*++l == END_OF_INSN) | |
5459 | { | |
5460 | /* Just skip it, if it's \n complain. */ | |
5461 | goto expecting_operand_after_comma; | |
5462 | } | |
5463 | expecting_operand = 1; | |
5464 | } | |
5465 | } | |
5466 | return l; | |
5467 | } | |
7f3f1ea2 | 5468 | |
050dfa73 | 5469 | static void |
4d456e3d | 5470 | swap_2_operands (int xchg1, int xchg2) |
050dfa73 MM |
5471 | { |
5472 | union i386_op temp_op; | |
40fb9820 | 5473 | i386_operand_type temp_type; |
c48dadc9 | 5474 | unsigned int temp_flags; |
050dfa73 | 5475 | enum bfd_reloc_code_real temp_reloc; |
4eed87de | 5476 | |
050dfa73 MM |
5477 | temp_type = i.types[xchg2]; |
5478 | i.types[xchg2] = i.types[xchg1]; | |
5479 | i.types[xchg1] = temp_type; | |
c48dadc9 JB |
5480 | |
5481 | temp_flags = i.flags[xchg2]; | |
5482 | i.flags[xchg2] = i.flags[xchg1]; | |
5483 | i.flags[xchg1] = temp_flags; | |
5484 | ||
050dfa73 MM |
5485 | temp_op = i.op[xchg2]; |
5486 | i.op[xchg2] = i.op[xchg1]; | |
5487 | i.op[xchg1] = temp_op; | |
c48dadc9 | 5488 | |
050dfa73 MM |
5489 | temp_reloc = i.reloc[xchg2]; |
5490 | i.reloc[xchg2] = i.reloc[xchg1]; | |
5491 | i.reloc[xchg1] = temp_reloc; | |
43234a1e L |
5492 | |
5493 | if (i.mask) | |
5494 | { | |
5495 | if (i.mask->operand == xchg1) | |
5496 | i.mask->operand = xchg2; | |
5497 | else if (i.mask->operand == xchg2) | |
5498 | i.mask->operand = xchg1; | |
5499 | } | |
5500 | if (i.broadcast) | |
5501 | { | |
5502 | if (i.broadcast->operand == xchg1) | |
5503 | i.broadcast->operand = xchg2; | |
5504 | else if (i.broadcast->operand == xchg2) | |
5505 | i.broadcast->operand = xchg1; | |
5506 | } | |
5507 | if (i.rounding) | |
5508 | { | |
5509 | if (i.rounding->operand == xchg1) | |
5510 | i.rounding->operand = xchg2; | |
5511 | else if (i.rounding->operand == xchg2) | |
5512 | i.rounding->operand = xchg1; | |
5513 | } | |
050dfa73 MM |
5514 | } |
5515 | ||
29b0f896 | 5516 | static void |
e3bb37b5 | 5517 | swap_operands (void) |
29b0f896 | 5518 | { |
b7c61d9a | 5519 | switch (i.operands) |
050dfa73 | 5520 | { |
c0f3af97 | 5521 | case 5: |
b7c61d9a | 5522 | case 4: |
4d456e3d | 5523 | swap_2_operands (1, i.operands - 2); |
1a0670f3 | 5524 | /* Fall through. */ |
b7c61d9a L |
5525 | case 3: |
5526 | case 2: | |
4d456e3d | 5527 | swap_2_operands (0, i.operands - 1); |
b7c61d9a L |
5528 | break; |
5529 | default: | |
5530 | abort (); | |
29b0f896 | 5531 | } |
29b0f896 AM |
5532 | |
5533 | if (i.mem_operands == 2) | |
5534 | { | |
5535 | const seg_entry *temp_seg; | |
5536 | temp_seg = i.seg[0]; | |
5537 | i.seg[0] = i.seg[1]; | |
5538 | i.seg[1] = temp_seg; | |
5539 | } | |
5540 | } | |
252b5132 | 5541 | |
29b0f896 AM |
5542 | /* Try to ensure constant immediates are represented in the smallest |
5543 | opcode possible. */ | |
5544 | static void | |
e3bb37b5 | 5545 | optimize_imm (void) |
29b0f896 AM |
5546 | { |
5547 | char guess_suffix = 0; | |
5548 | int op; | |
252b5132 | 5549 | |
29b0f896 AM |
5550 | if (i.suffix) |
5551 | guess_suffix = i.suffix; | |
5552 | else if (i.reg_operands) | |
5553 | { | |
5554 | /* Figure out a suffix from the last register operand specified. | |
75e5731b JB |
5555 | We can't do this properly yet, i.e. excluding special register |
5556 | instances, but the following works for instructions with | |
5557 | immediates. In any case, we can't set i.suffix yet. */ | |
29b0f896 | 5558 | for (op = i.operands; --op >= 0;) |
bab6aec1 JB |
5559 | if (i.types[op].bitfield.class != Reg) |
5560 | continue; | |
5561 | else if (i.types[op].bitfield.byte) | |
7ab9ffdd | 5562 | { |
40fb9820 L |
5563 | guess_suffix = BYTE_MNEM_SUFFIX; |
5564 | break; | |
5565 | } | |
bab6aec1 | 5566 | else if (i.types[op].bitfield.word) |
252b5132 | 5567 | { |
40fb9820 L |
5568 | guess_suffix = WORD_MNEM_SUFFIX; |
5569 | break; | |
5570 | } | |
bab6aec1 | 5571 | else if (i.types[op].bitfield.dword) |
40fb9820 L |
5572 | { |
5573 | guess_suffix = LONG_MNEM_SUFFIX; | |
5574 | break; | |
5575 | } | |
bab6aec1 | 5576 | else if (i.types[op].bitfield.qword) |
40fb9820 L |
5577 | { |
5578 | guess_suffix = QWORD_MNEM_SUFFIX; | |
29b0f896 | 5579 | break; |
252b5132 | 5580 | } |
29b0f896 AM |
5581 | } |
5582 | else if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0)) | |
5583 | guess_suffix = WORD_MNEM_SUFFIX; | |
5584 | ||
5585 | for (op = i.operands; --op >= 0;) | |
40fb9820 | 5586 | if (operand_type_check (i.types[op], imm)) |
29b0f896 AM |
5587 | { |
5588 | switch (i.op[op].imms->X_op) | |
252b5132 | 5589 | { |
29b0f896 AM |
5590 | case O_constant: |
5591 | /* If a suffix is given, this operand may be shortened. */ | |
5592 | switch (guess_suffix) | |
252b5132 | 5593 | { |
29b0f896 | 5594 | case LONG_MNEM_SUFFIX: |
40fb9820 L |
5595 | i.types[op].bitfield.imm32 = 1; |
5596 | i.types[op].bitfield.imm64 = 1; | |
29b0f896 AM |
5597 | break; |
5598 | case WORD_MNEM_SUFFIX: | |
40fb9820 L |
5599 | i.types[op].bitfield.imm16 = 1; |
5600 | i.types[op].bitfield.imm32 = 1; | |
5601 | i.types[op].bitfield.imm32s = 1; | |
5602 | i.types[op].bitfield.imm64 = 1; | |
29b0f896 AM |
5603 | break; |
5604 | case BYTE_MNEM_SUFFIX: | |
40fb9820 L |
5605 | i.types[op].bitfield.imm8 = 1; |
5606 | i.types[op].bitfield.imm8s = 1; | |
5607 | i.types[op].bitfield.imm16 = 1; | |
5608 | i.types[op].bitfield.imm32 = 1; | |
5609 | i.types[op].bitfield.imm32s = 1; | |
5610 | i.types[op].bitfield.imm64 = 1; | |
29b0f896 | 5611 | break; |
252b5132 | 5612 | } |
252b5132 | 5613 | |
29b0f896 AM |
5614 | /* If this operand is at most 16 bits, convert it |
5615 | to a signed 16 bit number before trying to see | |
5616 | whether it will fit in an even smaller size. | |
5617 | This allows a 16-bit operand such as $0xffe0 to | |
5618 | be recognised as within Imm8S range. */ | |
40fb9820 | 5619 | if ((i.types[op].bitfield.imm16) |
29b0f896 | 5620 | && (i.op[op].imms->X_add_number & ~(offsetT) 0xffff) == 0) |
252b5132 | 5621 | { |
29b0f896 AM |
5622 | i.op[op].imms->X_add_number = |
5623 | (((i.op[op].imms->X_add_number & 0xffff) ^ 0x8000) - 0x8000); | |
5624 | } | |
a28def75 L |
5625 | #ifdef BFD64 |
5626 | /* Store 32-bit immediate in 64-bit for 64-bit BFD. */ | |
40fb9820 | 5627 | if ((i.types[op].bitfield.imm32) |
29b0f896 AM |
5628 | && ((i.op[op].imms->X_add_number & ~(((offsetT) 2 << 31) - 1)) |
5629 | == 0)) | |
5630 | { | |
5631 | i.op[op].imms->X_add_number = ((i.op[op].imms->X_add_number | |
5632 | ^ ((offsetT) 1 << 31)) | |
5633 | - ((offsetT) 1 << 31)); | |
5634 | } | |
a28def75 | 5635 | #endif |
40fb9820 | 5636 | i.types[op] |
c6fb90c8 L |
5637 | = operand_type_or (i.types[op], |
5638 | smallest_imm_type (i.op[op].imms->X_add_number)); | |
252b5132 | 5639 | |
29b0f896 AM |
5640 | /* We must avoid matching of Imm32 templates when 64bit |
5641 | only immediate is available. */ | |
5642 | if (guess_suffix == QWORD_MNEM_SUFFIX) | |
40fb9820 | 5643 | i.types[op].bitfield.imm32 = 0; |
29b0f896 | 5644 | break; |
252b5132 | 5645 | |
29b0f896 AM |
5646 | case O_absent: |
5647 | case O_register: | |
5648 | abort (); | |
5649 | ||
5650 | /* Symbols and expressions. */ | |
5651 | default: | |
9cd96992 JB |
5652 | /* Convert symbolic operand to proper sizes for matching, but don't |
5653 | prevent matching a set of insns that only supports sizes other | |
5654 | than those matching the insn suffix. */ | |
5655 | { | |
40fb9820 | 5656 | i386_operand_type mask, allowed; |
d3ce72d0 | 5657 | const insn_template *t; |
9cd96992 | 5658 | |
0dfbf9d7 L |
5659 | operand_type_set (&mask, 0); |
5660 | operand_type_set (&allowed, 0); | |
40fb9820 | 5661 | |
4eed87de AM |
5662 | for (t = current_templates->start; |
5663 | t < current_templates->end; | |
5664 | ++t) | |
bab6aec1 JB |
5665 | { |
5666 | allowed = operand_type_or (allowed, t->operand_types[op]); | |
5667 | allowed = operand_type_and (allowed, anyimm); | |
5668 | } | |
9cd96992 JB |
5669 | switch (guess_suffix) |
5670 | { | |
5671 | case QWORD_MNEM_SUFFIX: | |
40fb9820 L |
5672 | mask.bitfield.imm64 = 1; |
5673 | mask.bitfield.imm32s = 1; | |
9cd96992 JB |
5674 | break; |
5675 | case LONG_MNEM_SUFFIX: | |
40fb9820 | 5676 | mask.bitfield.imm32 = 1; |
9cd96992 JB |
5677 | break; |
5678 | case WORD_MNEM_SUFFIX: | |
40fb9820 | 5679 | mask.bitfield.imm16 = 1; |
9cd96992 JB |
5680 | break; |
5681 | case BYTE_MNEM_SUFFIX: | |
40fb9820 | 5682 | mask.bitfield.imm8 = 1; |
9cd96992 JB |
5683 | break; |
5684 | default: | |
9cd96992 JB |
5685 | break; |
5686 | } | |
c6fb90c8 | 5687 | allowed = operand_type_and (mask, allowed); |
0dfbf9d7 | 5688 | if (!operand_type_all_zero (&allowed)) |
c6fb90c8 | 5689 | i.types[op] = operand_type_and (i.types[op], mask); |
9cd96992 | 5690 | } |
29b0f896 | 5691 | break; |
252b5132 | 5692 | } |
29b0f896 AM |
5693 | } |
5694 | } | |
47926f60 | 5695 | |
29b0f896 AM |
5696 | /* Try to use the smallest displacement type too. */ |
5697 | static void | |
e3bb37b5 | 5698 | optimize_disp (void) |
29b0f896 AM |
5699 | { |
5700 | int op; | |
3e73aa7c | 5701 | |
29b0f896 | 5702 | for (op = i.operands; --op >= 0;) |
40fb9820 | 5703 | if (operand_type_check (i.types[op], disp)) |
252b5132 | 5704 | { |
b300c311 | 5705 | if (i.op[op].disps->X_op == O_constant) |
252b5132 | 5706 | { |
91d6fa6a | 5707 | offsetT op_disp = i.op[op].disps->X_add_number; |
29b0f896 | 5708 | |
40fb9820 | 5709 | if (i.types[op].bitfield.disp16 |
91d6fa6a | 5710 | && (op_disp & ~(offsetT) 0xffff) == 0) |
b300c311 L |
5711 | { |
5712 | /* If this operand is at most 16 bits, convert | |
5713 | to a signed 16 bit number and don't use 64bit | |
5714 | displacement. */ | |
91d6fa6a | 5715 | op_disp = (((op_disp & 0xffff) ^ 0x8000) - 0x8000); |
40fb9820 | 5716 | i.types[op].bitfield.disp64 = 0; |
b300c311 | 5717 | } |
a28def75 L |
5718 | #ifdef BFD64 |
5719 | /* Optimize 64-bit displacement to 32-bit for 64-bit BFD. */ | |
40fb9820 | 5720 | if (i.types[op].bitfield.disp32 |
91d6fa6a | 5721 | && (op_disp & ~(((offsetT) 2 << 31) - 1)) == 0) |
b300c311 L |
5722 | { |
5723 | /* If this operand is at most 32 bits, convert | |
5724 | to a signed 32 bit number and don't use 64bit | |
5725 | displacement. */ | |
91d6fa6a NC |
5726 | op_disp &= (((offsetT) 2 << 31) - 1); |
5727 | op_disp = (op_disp ^ ((offsetT) 1 << 31)) - ((addressT) 1 << 31); | |
40fb9820 | 5728 | i.types[op].bitfield.disp64 = 0; |
b300c311 | 5729 | } |
a28def75 | 5730 | #endif |
91d6fa6a | 5731 | if (!op_disp && i.types[op].bitfield.baseindex) |
b300c311 | 5732 | { |
40fb9820 L |
5733 | i.types[op].bitfield.disp8 = 0; |
5734 | i.types[op].bitfield.disp16 = 0; | |
5735 | i.types[op].bitfield.disp32 = 0; | |
5736 | i.types[op].bitfield.disp32s = 0; | |
5737 | i.types[op].bitfield.disp64 = 0; | |
b300c311 L |
5738 | i.op[op].disps = 0; |
5739 | i.disp_operands--; | |
5740 | } | |
5741 | else if (flag_code == CODE_64BIT) | |
5742 | { | |
91d6fa6a | 5743 | if (fits_in_signed_long (op_disp)) |
28a9d8f5 | 5744 | { |
40fb9820 L |
5745 | i.types[op].bitfield.disp64 = 0; |
5746 | i.types[op].bitfield.disp32s = 1; | |
28a9d8f5 | 5747 | } |
0e1147d9 | 5748 | if (i.prefix[ADDR_PREFIX] |
91d6fa6a | 5749 | && fits_in_unsigned_long (op_disp)) |
40fb9820 | 5750 | i.types[op].bitfield.disp32 = 1; |
b300c311 | 5751 | } |
40fb9820 L |
5752 | if ((i.types[op].bitfield.disp32 |
5753 | || i.types[op].bitfield.disp32s | |
5754 | || i.types[op].bitfield.disp16) | |
b5014f7a | 5755 | && fits_in_disp8 (op_disp)) |
40fb9820 | 5756 | i.types[op].bitfield.disp8 = 1; |
252b5132 | 5757 | } |
67a4f2b7 AO |
5758 | else if (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL |
5759 | || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL) | |
5760 | { | |
5761 | fix_new_exp (frag_now, frag_more (0) - frag_now->fr_literal, 0, | |
5762 | i.op[op].disps, 0, i.reloc[op]); | |
40fb9820 L |
5763 | i.types[op].bitfield.disp8 = 0; |
5764 | i.types[op].bitfield.disp16 = 0; | |
5765 | i.types[op].bitfield.disp32 = 0; | |
5766 | i.types[op].bitfield.disp32s = 0; | |
5767 | i.types[op].bitfield.disp64 = 0; | |
67a4f2b7 AO |
5768 | } |
5769 | else | |
b300c311 | 5770 | /* We only support 64bit displacement on constants. */ |
40fb9820 | 5771 | i.types[op].bitfield.disp64 = 0; |
252b5132 | 5772 | } |
29b0f896 AM |
5773 | } |
5774 | ||
4a1b91ea L |
5775 | /* Return 1 if there is a match in broadcast bytes between operand |
5776 | GIVEN and instruction template T. */ | |
5777 | ||
5778 | static INLINE int | |
5779 | match_broadcast_size (const insn_template *t, unsigned int given) | |
5780 | { | |
5781 | return ((t->opcode_modifier.broadcast == BYTE_BROADCAST | |
5782 | && i.types[given].bitfield.byte) | |
5783 | || (t->opcode_modifier.broadcast == WORD_BROADCAST | |
5784 | && i.types[given].bitfield.word) | |
5785 | || (t->opcode_modifier.broadcast == DWORD_BROADCAST | |
5786 | && i.types[given].bitfield.dword) | |
5787 | || (t->opcode_modifier.broadcast == QWORD_BROADCAST | |
5788 | && i.types[given].bitfield.qword)); | |
5789 | } | |
5790 | ||
6c30d220 L |
5791 | /* Check if operands are valid for the instruction. */ |
5792 | ||
5793 | static int | |
5794 | check_VecOperands (const insn_template *t) | |
5795 | { | |
43234a1e | 5796 | unsigned int op; |
e2195274 | 5797 | i386_cpu_flags cpu; |
e2195274 JB |
5798 | |
5799 | /* Templates allowing for ZMMword as well as YMMword and/or XMMword for | |
5800 | any one operand are implicity requiring AVX512VL support if the actual | |
5801 | operand size is YMMword or XMMword. Since this function runs after | |
5802 | template matching, there's no need to check for YMMword/XMMword in | |
5803 | the template. */ | |
5804 | cpu = cpu_flags_and (t->cpu_flags, avx512); | |
5805 | if (!cpu_flags_all_zero (&cpu) | |
5806 | && !t->cpu_flags.bitfield.cpuavx512vl | |
5807 | && !cpu_arch_flags.bitfield.cpuavx512vl) | |
5808 | { | |
5809 | for (op = 0; op < t->operands; ++op) | |
5810 | { | |
5811 | if (t->operand_types[op].bitfield.zmmword | |
5812 | && (i.types[op].bitfield.ymmword | |
5813 | || i.types[op].bitfield.xmmword)) | |
5814 | { | |
5815 | i.error = unsupported; | |
5816 | return 1; | |
5817 | } | |
5818 | } | |
5819 | } | |
43234a1e | 5820 | |
6c30d220 | 5821 | /* Without VSIB byte, we can't have a vector register for index. */ |
63112cd6 | 5822 | if (!t->opcode_modifier.sib |
6c30d220 | 5823 | && i.index_reg |
1b54b8d7 JB |
5824 | && (i.index_reg->reg_type.bitfield.xmmword |
5825 | || i.index_reg->reg_type.bitfield.ymmword | |
5826 | || i.index_reg->reg_type.bitfield.zmmword)) | |
6c30d220 L |
5827 | { |
5828 | i.error = unsupported_vector_index_register; | |
5829 | return 1; | |
5830 | } | |
5831 | ||
ad8ecc81 MZ |
5832 | /* Check if default mask is allowed. */ |
5833 | if (t->opcode_modifier.nodefmask | |
5834 | && (!i.mask || i.mask->mask->reg_num == 0)) | |
5835 | { | |
5836 | i.error = no_default_mask; | |
5837 | return 1; | |
5838 | } | |
5839 | ||
7bab8ab5 JB |
5840 | /* For VSIB byte, we need a vector register for index, and all vector |
5841 | registers must be distinct. */ | |
260cd341 | 5842 | if (t->opcode_modifier.sib && t->opcode_modifier.sib != SIBMEM) |
7bab8ab5 JB |
5843 | { |
5844 | if (!i.index_reg | |
63112cd6 | 5845 | || !((t->opcode_modifier.sib == VECSIB128 |
1b54b8d7 | 5846 | && i.index_reg->reg_type.bitfield.xmmword) |
63112cd6 | 5847 | || (t->opcode_modifier.sib == VECSIB256 |
1b54b8d7 | 5848 | && i.index_reg->reg_type.bitfield.ymmword) |
63112cd6 | 5849 | || (t->opcode_modifier.sib == VECSIB512 |
1b54b8d7 | 5850 | && i.index_reg->reg_type.bitfield.zmmword))) |
7bab8ab5 JB |
5851 | { |
5852 | i.error = invalid_vsib_address; | |
5853 | return 1; | |
5854 | } | |
5855 | ||
43234a1e L |
5856 | gas_assert (i.reg_operands == 2 || i.mask); |
5857 | if (i.reg_operands == 2 && !i.mask) | |
5858 | { | |
3528c362 | 5859 | gas_assert (i.types[0].bitfield.class == RegSIMD); |
1b54b8d7 JB |
5860 | gas_assert (i.types[0].bitfield.xmmword |
5861 | || i.types[0].bitfield.ymmword); | |
3528c362 | 5862 | gas_assert (i.types[2].bitfield.class == RegSIMD); |
1b54b8d7 JB |
5863 | gas_assert (i.types[2].bitfield.xmmword |
5864 | || i.types[2].bitfield.ymmword); | |
43234a1e L |
5865 | if (operand_check == check_none) |
5866 | return 0; | |
5867 | if (register_number (i.op[0].regs) | |
5868 | != register_number (i.index_reg) | |
5869 | && register_number (i.op[2].regs) | |
5870 | != register_number (i.index_reg) | |
5871 | && register_number (i.op[0].regs) | |
5872 | != register_number (i.op[2].regs)) | |
5873 | return 0; | |
5874 | if (operand_check == check_error) | |
5875 | { | |
5876 | i.error = invalid_vector_register_set; | |
5877 | return 1; | |
5878 | } | |
5879 | as_warn (_("mask, index, and destination registers should be distinct")); | |
5880 | } | |
8444f82a MZ |
5881 | else if (i.reg_operands == 1 && i.mask) |
5882 | { | |
3528c362 | 5883 | if (i.types[1].bitfield.class == RegSIMD |
1b54b8d7 JB |
5884 | && (i.types[1].bitfield.xmmword |
5885 | || i.types[1].bitfield.ymmword | |
5886 | || i.types[1].bitfield.zmmword) | |
8444f82a MZ |
5887 | && (register_number (i.op[1].regs) |
5888 | == register_number (i.index_reg))) | |
5889 | { | |
5890 | if (operand_check == check_error) | |
5891 | { | |
5892 | i.error = invalid_vector_register_set; | |
5893 | return 1; | |
5894 | } | |
5895 | if (operand_check != check_none) | |
5896 | as_warn (_("index and destination registers should be distinct")); | |
5897 | } | |
5898 | } | |
43234a1e | 5899 | } |
7bab8ab5 | 5900 | |
260cd341 LC |
5901 | /* For AMX instructions with three tmmword operands, all tmmword operand must be |
5902 | distinct */ | |
5903 | if (t->operand_types[0].bitfield.tmmword | |
5904 | && i.reg_operands == 3) | |
5905 | { | |
5906 | if (register_number (i.op[0].regs) | |
5907 | == register_number (i.op[1].regs) | |
5908 | || register_number (i.op[0].regs) | |
5909 | == register_number (i.op[2].regs) | |
5910 | || register_number (i.op[1].regs) | |
5911 | == register_number (i.op[2].regs)) | |
5912 | { | |
5913 | i.error = invalid_tmm_register_set; | |
5914 | return 1; | |
5915 | } | |
5916 | } | |
5917 | ||
43234a1e L |
5918 | /* Check if broadcast is supported by the instruction and is applied |
5919 | to the memory operand. */ | |
5920 | if (i.broadcast) | |
5921 | { | |
8e6e0792 | 5922 | i386_operand_type type, overlap; |
43234a1e L |
5923 | |
5924 | /* Check if specified broadcast is supported in this instruction, | |
4a1b91ea | 5925 | and its broadcast bytes match the memory operand. */ |
32546502 | 5926 | op = i.broadcast->operand; |
8e6e0792 | 5927 | if (!t->opcode_modifier.broadcast |
c48dadc9 | 5928 | || !(i.flags[op] & Operand_Mem) |
c39e5b26 | 5929 | || (!i.types[op].bitfield.unspecified |
4a1b91ea | 5930 | && !match_broadcast_size (t, op))) |
43234a1e L |
5931 | { |
5932 | bad_broadcast: | |
5933 | i.error = unsupported_broadcast; | |
5934 | return 1; | |
5935 | } | |
8e6e0792 | 5936 | |
4a1b91ea L |
5937 | i.broadcast->bytes = ((1 << (t->opcode_modifier.broadcast - 1)) |
5938 | * i.broadcast->type); | |
8e6e0792 | 5939 | operand_type_set (&type, 0); |
4a1b91ea | 5940 | switch (i.broadcast->bytes) |
8e6e0792 | 5941 | { |
4a1b91ea L |
5942 | case 2: |
5943 | type.bitfield.word = 1; | |
5944 | break; | |
5945 | case 4: | |
5946 | type.bitfield.dword = 1; | |
5947 | break; | |
8e6e0792 JB |
5948 | case 8: |
5949 | type.bitfield.qword = 1; | |
5950 | break; | |
5951 | case 16: | |
5952 | type.bitfield.xmmword = 1; | |
5953 | break; | |
5954 | case 32: | |
5955 | type.bitfield.ymmword = 1; | |
5956 | break; | |
5957 | case 64: | |
5958 | type.bitfield.zmmword = 1; | |
5959 | break; | |
5960 | default: | |
5961 | goto bad_broadcast; | |
5962 | } | |
5963 | ||
5964 | overlap = operand_type_and (type, t->operand_types[op]); | |
bc49bfd8 JB |
5965 | if (t->operand_types[op].bitfield.class == RegSIMD |
5966 | && t->operand_types[op].bitfield.byte | |
5967 | + t->operand_types[op].bitfield.word | |
5968 | + t->operand_types[op].bitfield.dword | |
5969 | + t->operand_types[op].bitfield.qword > 1) | |
5970 | { | |
5971 | overlap.bitfield.xmmword = 0; | |
5972 | overlap.bitfield.ymmword = 0; | |
5973 | overlap.bitfield.zmmword = 0; | |
5974 | } | |
8e6e0792 JB |
5975 | if (operand_type_all_zero (&overlap)) |
5976 | goto bad_broadcast; | |
5977 | ||
5978 | if (t->opcode_modifier.checkregsize) | |
5979 | { | |
5980 | unsigned int j; | |
5981 | ||
e2195274 | 5982 | type.bitfield.baseindex = 1; |
8e6e0792 JB |
5983 | for (j = 0; j < i.operands; ++j) |
5984 | { | |
5985 | if (j != op | |
5986 | && !operand_type_register_match(i.types[j], | |
5987 | t->operand_types[j], | |
5988 | type, | |
5989 | t->operand_types[op])) | |
5990 | goto bad_broadcast; | |
5991 | } | |
5992 | } | |
43234a1e L |
5993 | } |
5994 | /* If broadcast is supported in this instruction, we need to check if | |
5995 | operand of one-element size isn't specified without broadcast. */ | |
5996 | else if (t->opcode_modifier.broadcast && i.mem_operands) | |
5997 | { | |
5998 | /* Find memory operand. */ | |
5999 | for (op = 0; op < i.operands; op++) | |
8dc0818e | 6000 | if (i.flags[op] & Operand_Mem) |
43234a1e L |
6001 | break; |
6002 | gas_assert (op < i.operands); | |
6003 | /* Check size of the memory operand. */ | |
4a1b91ea | 6004 | if (match_broadcast_size (t, op)) |
43234a1e L |
6005 | { |
6006 | i.error = broadcast_needed; | |
6007 | return 1; | |
6008 | } | |
6009 | } | |
c39e5b26 JB |
6010 | else |
6011 | op = MAX_OPERANDS - 1; /* Avoid uninitialized variable warning. */ | |
43234a1e L |
6012 | |
6013 | /* Check if requested masking is supported. */ | |
ae2387fe | 6014 | if (i.mask) |
43234a1e | 6015 | { |
ae2387fe JB |
6016 | switch (t->opcode_modifier.masking) |
6017 | { | |
6018 | case BOTH_MASKING: | |
6019 | break; | |
6020 | case MERGING_MASKING: | |
6021 | if (i.mask->zeroing) | |
6022 | { | |
6023 | case 0: | |
6024 | i.error = unsupported_masking; | |
6025 | return 1; | |
6026 | } | |
6027 | break; | |
6028 | case DYNAMIC_MASKING: | |
6029 | /* Memory destinations allow only merging masking. */ | |
6030 | if (i.mask->zeroing && i.mem_operands) | |
6031 | { | |
6032 | /* Find memory operand. */ | |
6033 | for (op = 0; op < i.operands; op++) | |
c48dadc9 | 6034 | if (i.flags[op] & Operand_Mem) |
ae2387fe JB |
6035 | break; |
6036 | gas_assert (op < i.operands); | |
6037 | if (op == i.operands - 1) | |
6038 | { | |
6039 | i.error = unsupported_masking; | |
6040 | return 1; | |
6041 | } | |
6042 | } | |
6043 | break; | |
6044 | default: | |
6045 | abort (); | |
6046 | } | |
43234a1e L |
6047 | } |
6048 | ||
6049 | /* Check if masking is applied to dest operand. */ | |
6050 | if (i.mask && (i.mask->operand != (int) (i.operands - 1))) | |
6051 | { | |
6052 | i.error = mask_not_on_destination; | |
6053 | return 1; | |
6054 | } | |
6055 | ||
43234a1e L |
6056 | /* Check RC/SAE. */ |
6057 | if (i.rounding) | |
6058 | { | |
a80195f1 JB |
6059 | if (!t->opcode_modifier.sae |
6060 | || (i.rounding->type != saeonly && !t->opcode_modifier.staticrounding)) | |
43234a1e L |
6061 | { |
6062 | i.error = unsupported_rc_sae; | |
6063 | return 1; | |
6064 | } | |
6065 | /* If the instruction has several immediate operands and one of | |
6066 | them is rounding, the rounding operand should be the last | |
6067 | immediate operand. */ | |
6068 | if (i.imm_operands > 1 | |
6069 | && i.rounding->operand != (int) (i.imm_operands - 1)) | |
7bab8ab5 | 6070 | { |
43234a1e | 6071 | i.error = rc_sae_operand_not_last_imm; |
7bab8ab5 JB |
6072 | return 1; |
6073 | } | |
6c30d220 L |
6074 | } |
6075 | ||
da4977e0 JB |
6076 | /* Check the special Imm4 cases; must be the first operand. */ |
6077 | if (t->cpu_flags.bitfield.cpuxop && t->operands == 5) | |
6078 | { | |
6079 | if (i.op[0].imms->X_op != O_constant | |
6080 | || !fits_in_imm4 (i.op[0].imms->X_add_number)) | |
6081 | { | |
6082 | i.error = bad_imm4; | |
6083 | return 1; | |
6084 | } | |
6085 | ||
6086 | /* Turn off Imm<N> so that update_imm won't complain. */ | |
6087 | operand_type_set (&i.types[0], 0); | |
6088 | } | |
6089 | ||
43234a1e | 6090 | /* Check vector Disp8 operand. */ |
b5014f7a JB |
6091 | if (t->opcode_modifier.disp8memshift |
6092 | && i.disp_encoding != disp_encoding_32bit) | |
43234a1e L |
6093 | { |
6094 | if (i.broadcast) | |
4a1b91ea | 6095 | i.memshift = t->opcode_modifier.broadcast - 1; |
7091c612 | 6096 | else if (t->opcode_modifier.disp8memshift != DISP8_SHIFT_VL) |
43234a1e | 6097 | i.memshift = t->opcode_modifier.disp8memshift; |
7091c612 JB |
6098 | else |
6099 | { | |
6100 | const i386_operand_type *type = NULL; | |
6101 | ||
6102 | i.memshift = 0; | |
6103 | for (op = 0; op < i.operands; op++) | |
8dc0818e | 6104 | if (i.flags[op] & Operand_Mem) |
7091c612 | 6105 | { |
4174bfff JB |
6106 | if (t->opcode_modifier.evex == EVEXLIG) |
6107 | i.memshift = 2 + (i.suffix == QWORD_MNEM_SUFFIX); | |
6108 | else if (t->operand_types[op].bitfield.xmmword | |
6109 | + t->operand_types[op].bitfield.ymmword | |
6110 | + t->operand_types[op].bitfield.zmmword <= 1) | |
7091c612 JB |
6111 | type = &t->operand_types[op]; |
6112 | else if (!i.types[op].bitfield.unspecified) | |
6113 | type = &i.types[op]; | |
6114 | } | |
3528c362 | 6115 | else if (i.types[op].bitfield.class == RegSIMD |
4174bfff | 6116 | && t->opcode_modifier.evex != EVEXLIG) |
7091c612 JB |
6117 | { |
6118 | if (i.types[op].bitfield.zmmword) | |
6119 | i.memshift = 6; | |
6120 | else if (i.types[op].bitfield.ymmword && i.memshift < 5) | |
6121 | i.memshift = 5; | |
6122 | else if (i.types[op].bitfield.xmmword && i.memshift < 4) | |
6123 | i.memshift = 4; | |
6124 | } | |
6125 | ||
6126 | if (type) | |
6127 | { | |
6128 | if (type->bitfield.zmmword) | |
6129 | i.memshift = 6; | |
6130 | else if (type->bitfield.ymmword) | |
6131 | i.memshift = 5; | |
6132 | else if (type->bitfield.xmmword) | |
6133 | i.memshift = 4; | |
6134 | } | |
6135 | ||
6136 | /* For the check in fits_in_disp8(). */ | |
6137 | if (i.memshift == 0) | |
6138 | i.memshift = -1; | |
6139 | } | |
43234a1e L |
6140 | |
6141 | for (op = 0; op < i.operands; op++) | |
6142 | if (operand_type_check (i.types[op], disp) | |
6143 | && i.op[op].disps->X_op == O_constant) | |
6144 | { | |
b5014f7a | 6145 | if (fits_in_disp8 (i.op[op].disps->X_add_number)) |
43234a1e | 6146 | { |
b5014f7a JB |
6147 | i.types[op].bitfield.disp8 = 1; |
6148 | return 0; | |
43234a1e | 6149 | } |
b5014f7a | 6150 | i.types[op].bitfield.disp8 = 0; |
43234a1e L |
6151 | } |
6152 | } | |
b5014f7a JB |
6153 | |
6154 | i.memshift = 0; | |
43234a1e | 6155 | |
6c30d220 L |
6156 | return 0; |
6157 | } | |
6158 | ||
da4977e0 | 6159 | /* Check if encoding requirements are met by the instruction. */ |
a683cc34 SP |
6160 | |
6161 | static int | |
da4977e0 | 6162 | VEX_check_encoding (const insn_template *t) |
a683cc34 | 6163 | { |
da4977e0 JB |
6164 | if (i.vec_encoding == vex_encoding_error) |
6165 | { | |
6166 | i.error = unsupported; | |
6167 | return 1; | |
6168 | } | |
6169 | ||
86fa6981 | 6170 | if (i.vec_encoding == vex_encoding_evex) |
43234a1e | 6171 | { |
86fa6981 | 6172 | /* This instruction must be encoded with EVEX prefix. */ |
e771e7c9 | 6173 | if (!is_evex_encoding (t)) |
86fa6981 L |
6174 | { |
6175 | i.error = unsupported; | |
6176 | return 1; | |
6177 | } | |
6178 | return 0; | |
43234a1e L |
6179 | } |
6180 | ||
a683cc34 | 6181 | if (!t->opcode_modifier.vex) |
86fa6981 L |
6182 | { |
6183 | /* This instruction template doesn't have VEX prefix. */ | |
6184 | if (i.vec_encoding != vex_encoding_default) | |
6185 | { | |
6186 | i.error = unsupported; | |
6187 | return 1; | |
6188 | } | |
6189 | return 0; | |
6190 | } | |
a683cc34 | 6191 | |
a683cc34 SP |
6192 | return 0; |
6193 | } | |
6194 | ||
d3ce72d0 | 6195 | static const insn_template * |
83b16ac6 | 6196 | match_template (char mnem_suffix) |
29b0f896 AM |
6197 | { |
6198 | /* Points to template once we've found it. */ | |
d3ce72d0 | 6199 | const insn_template *t; |
40fb9820 | 6200 | i386_operand_type overlap0, overlap1, overlap2, overlap3; |
c0f3af97 | 6201 | i386_operand_type overlap4; |
29b0f896 | 6202 | unsigned int found_reverse_match; |
dc2be329 | 6203 | i386_opcode_modifier suffix_check; |
40fb9820 | 6204 | i386_operand_type operand_types [MAX_OPERANDS]; |
539e75ad | 6205 | int addr_prefix_disp; |
45a4bb20 | 6206 | unsigned int j, size_match, check_register; |
5614d22c | 6207 | enum i386_error specific_error = 0; |
29b0f896 | 6208 | |
c0f3af97 L |
6209 | #if MAX_OPERANDS != 5 |
6210 | # error "MAX_OPERANDS must be 5." | |
f48ff2ae L |
6211 | #endif |
6212 | ||
29b0f896 | 6213 | found_reverse_match = 0; |
539e75ad | 6214 | addr_prefix_disp = -1; |
40fb9820 | 6215 | |
dc2be329 | 6216 | /* Prepare for mnemonic suffix check. */ |
40fb9820 | 6217 | memset (&suffix_check, 0, sizeof (suffix_check)); |
dc2be329 L |
6218 | switch (mnem_suffix) |
6219 | { | |
6220 | case BYTE_MNEM_SUFFIX: | |
6221 | suffix_check.no_bsuf = 1; | |
6222 | break; | |
6223 | case WORD_MNEM_SUFFIX: | |
6224 | suffix_check.no_wsuf = 1; | |
6225 | break; | |
6226 | case SHORT_MNEM_SUFFIX: | |
6227 | suffix_check.no_ssuf = 1; | |
6228 | break; | |
6229 | case LONG_MNEM_SUFFIX: | |
6230 | suffix_check.no_lsuf = 1; | |
6231 | break; | |
6232 | case QWORD_MNEM_SUFFIX: | |
6233 | suffix_check.no_qsuf = 1; | |
6234 | break; | |
6235 | default: | |
6236 | /* NB: In Intel syntax, normally we can check for memory operand | |
6237 | size when there is no mnemonic suffix. But jmp and call have | |
6238 | 2 different encodings with Dword memory operand size, one with | |
6239 | No_ldSuf and the other without. i.suffix is set to | |
6240 | LONG_DOUBLE_MNEM_SUFFIX to skip the one with No_ldSuf. */ | |
6241 | if (i.suffix == LONG_DOUBLE_MNEM_SUFFIX) | |
6242 | suffix_check.no_ldsuf = 1; | |
83b16ac6 JB |
6243 | } |
6244 | ||
01559ecc L |
6245 | /* Must have right number of operands. */ |
6246 | i.error = number_of_operands_mismatch; | |
6247 | ||
45aa61fe | 6248 | for (t = current_templates->start; t < current_templates->end; t++) |
29b0f896 | 6249 | { |
539e75ad | 6250 | addr_prefix_disp = -1; |
dbbc8b7e | 6251 | found_reverse_match = 0; |
539e75ad | 6252 | |
29b0f896 AM |
6253 | if (i.operands != t->operands) |
6254 | continue; | |
6255 | ||
50aecf8c | 6256 | /* Check processor support. */ |
a65babc9 | 6257 | i.error = unsupported; |
45a4bb20 | 6258 | if (cpu_flags_match (t) != CPU_FLAGS_PERFECT_MATCH) |
50aecf8c L |
6259 | continue; |
6260 | ||
57392598 CL |
6261 | /* Check Pseudo Prefix. */ |
6262 | i.error = unsupported; | |
6263 | if (t->opcode_modifier.pseudovexprefix | |
6264 | && !(i.vec_encoding == vex_encoding_vex | |
6265 | || i.vec_encoding == vex_encoding_vex3)) | |
6266 | continue; | |
6267 | ||
e1d4d893 | 6268 | /* Check AT&T mnemonic. */ |
a65babc9 | 6269 | i.error = unsupported_with_intel_mnemonic; |
e1d4d893 | 6270 | if (intel_mnemonic && t->opcode_modifier.attmnemonic) |
1efbbeb4 L |
6271 | continue; |
6272 | ||
4b5aaf5f | 6273 | /* Check AT&T/Intel syntax. */ |
a65babc9 | 6274 | i.error = unsupported_syntax; |
5c07affc | 6275 | if ((intel_syntax && t->opcode_modifier.attsyntax) |
4b5aaf5f | 6276 | || (!intel_syntax && t->opcode_modifier.intelsyntax)) |
1efbbeb4 L |
6277 | continue; |
6278 | ||
4b5aaf5f L |
6279 | /* Check Intel64/AMD64 ISA. */ |
6280 | switch (isa64) | |
6281 | { | |
6282 | default: | |
6283 | /* Default: Don't accept Intel64. */ | |
6284 | if (t->opcode_modifier.isa64 == INTEL64) | |
6285 | continue; | |
6286 | break; | |
6287 | case amd64: | |
6288 | /* -mamd64: Don't accept Intel64 and Intel64 only. */ | |
6289 | if (t->opcode_modifier.isa64 >= INTEL64) | |
6290 | continue; | |
6291 | break; | |
6292 | case intel64: | |
6293 | /* -mintel64: Don't accept AMD64. */ | |
5990e377 | 6294 | if (t->opcode_modifier.isa64 == AMD64 && flag_code == CODE_64BIT) |
4b5aaf5f L |
6295 | continue; |
6296 | break; | |
6297 | } | |
6298 | ||
dc2be329 | 6299 | /* Check the suffix. */ |
a65babc9 | 6300 | i.error = invalid_instruction_suffix; |
dc2be329 L |
6301 | if ((t->opcode_modifier.no_bsuf && suffix_check.no_bsuf) |
6302 | || (t->opcode_modifier.no_wsuf && suffix_check.no_wsuf) | |
6303 | || (t->opcode_modifier.no_lsuf && suffix_check.no_lsuf) | |
6304 | || (t->opcode_modifier.no_ssuf && suffix_check.no_ssuf) | |
6305 | || (t->opcode_modifier.no_qsuf && suffix_check.no_qsuf) | |
6306 | || (t->opcode_modifier.no_ldsuf && suffix_check.no_ldsuf)) | |
83b16ac6 | 6307 | continue; |
29b0f896 | 6308 | |
3ac21baa JB |
6309 | size_match = operand_size_match (t); |
6310 | if (!size_match) | |
7d5e4556 | 6311 | continue; |
539e75ad | 6312 | |
6f2f06be JB |
6313 | /* This is intentionally not |
6314 | ||
0cfa3eb3 | 6315 | if (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE)) |
6f2f06be JB |
6316 | |
6317 | as the case of a missing * on the operand is accepted (perhaps with | |
6318 | a warning, issued further down). */ | |
0cfa3eb3 | 6319 | if (i.jumpabsolute && t->opcode_modifier.jump != JUMP_ABSOLUTE) |
6f2f06be JB |
6320 | { |
6321 | i.error = operand_type_mismatch; | |
6322 | continue; | |
6323 | } | |
6324 | ||
5c07affc L |
6325 | for (j = 0; j < MAX_OPERANDS; j++) |
6326 | operand_types[j] = t->operand_types[j]; | |
6327 | ||
e365e234 JB |
6328 | /* In general, don't allow |
6329 | - 64-bit operands outside of 64-bit mode, | |
6330 | - 32-bit operands on pre-386. */ | |
4873e243 | 6331 | j = i.imm_operands + (t->operands > i.imm_operands + 1); |
e365e234 JB |
6332 | if (((i.suffix == QWORD_MNEM_SUFFIX |
6333 | && flag_code != CODE_64BIT | |
8b65b895 L |
6334 | && !(t->base_opcode == 0xfc7 |
6335 | && i.tm.opcode_modifier.opcodeprefix == 0 | |
6336 | && t->extension_opcode == 1) /* cmpxchg8b */) | |
e365e234 JB |
6337 | || (i.suffix == LONG_MNEM_SUFFIX |
6338 | && !cpu_arch_flags.bitfield.cpui386)) | |
45aa61fe | 6339 | && (intel_syntax |
3cd7f3e3 | 6340 | ? (t->opcode_modifier.mnemonicsize != IGNORESIZE |
45aa61fe AM |
6341 | && !intel_float_operand (t->name)) |
6342 | : intel_float_operand (t->name) != 2) | |
4873e243 JB |
6343 | && (t->operands == i.imm_operands |
6344 | || (operand_types[i.imm_operands].bitfield.class != RegMMX | |
6345 | && operand_types[i.imm_operands].bitfield.class != RegSIMD | |
6346 | && operand_types[i.imm_operands].bitfield.class != RegMask) | |
6347 | || (operand_types[j].bitfield.class != RegMMX | |
6348 | && operand_types[j].bitfield.class != RegSIMD | |
6349 | && operand_types[j].bitfield.class != RegMask)) | |
63112cd6 | 6350 | && !t->opcode_modifier.sib) |
192dc9c6 JB |
6351 | continue; |
6352 | ||
29b0f896 | 6353 | /* Do not verify operands when there are none. */ |
e365e234 | 6354 | if (!t->operands) |
da4977e0 JB |
6355 | { |
6356 | if (VEX_check_encoding (t)) | |
6357 | { | |
6358 | specific_error = i.error; | |
6359 | continue; | |
6360 | } | |
6361 | ||
6362 | /* We've found a match; break out of loop. */ | |
6363 | break; | |
6364 | } | |
252b5132 | 6365 | |
48bcea9f JB |
6366 | if (!t->opcode_modifier.jump |
6367 | || t->opcode_modifier.jump == JUMP_ABSOLUTE) | |
6368 | { | |
6369 | /* There should be only one Disp operand. */ | |
6370 | for (j = 0; j < MAX_OPERANDS; j++) | |
6371 | if (operand_type_check (operand_types[j], disp)) | |
539e75ad | 6372 | break; |
48bcea9f JB |
6373 | if (j < MAX_OPERANDS) |
6374 | { | |
6375 | bfd_boolean override = (i.prefix[ADDR_PREFIX] != 0); | |
6376 | ||
6377 | addr_prefix_disp = j; | |
6378 | ||
6379 | /* Address size prefix will turn Disp64/Disp32S/Disp32/Disp16 | |
6380 | operand into Disp32/Disp32/Disp16/Disp32 operand. */ | |
6381 | switch (flag_code) | |
40fb9820 | 6382 | { |
48bcea9f JB |
6383 | case CODE_16BIT: |
6384 | override = !override; | |
6385 | /* Fall through. */ | |
6386 | case CODE_32BIT: | |
6387 | if (operand_types[j].bitfield.disp32 | |
6388 | && operand_types[j].bitfield.disp16) | |
40fb9820 | 6389 | { |
48bcea9f JB |
6390 | operand_types[j].bitfield.disp16 = override; |
6391 | operand_types[j].bitfield.disp32 = !override; | |
40fb9820 | 6392 | } |
48bcea9f JB |
6393 | operand_types[j].bitfield.disp32s = 0; |
6394 | operand_types[j].bitfield.disp64 = 0; | |
6395 | break; | |
6396 | ||
6397 | case CODE_64BIT: | |
6398 | if (operand_types[j].bitfield.disp32s | |
6399 | || operand_types[j].bitfield.disp64) | |
40fb9820 | 6400 | { |
48bcea9f JB |
6401 | operand_types[j].bitfield.disp64 &= !override; |
6402 | operand_types[j].bitfield.disp32s &= !override; | |
6403 | operand_types[j].bitfield.disp32 = override; | |
40fb9820 | 6404 | } |
48bcea9f JB |
6405 | operand_types[j].bitfield.disp16 = 0; |
6406 | break; | |
40fb9820 | 6407 | } |
539e75ad | 6408 | } |
48bcea9f | 6409 | } |
539e75ad | 6410 | |
02a86693 L |
6411 | /* Force 0x8b encoding for "mov foo@GOT, %eax". */ |
6412 | if (i.reloc[0] == BFD_RELOC_386_GOT32 && t->base_opcode == 0xa0) | |
6413 | continue; | |
6414 | ||
56ffb741 | 6415 | /* We check register size if needed. */ |
e2195274 JB |
6416 | if (t->opcode_modifier.checkregsize) |
6417 | { | |
6418 | check_register = (1 << t->operands) - 1; | |
6419 | if (i.broadcast) | |
6420 | check_register &= ~(1 << i.broadcast->operand); | |
6421 | } | |
6422 | else | |
6423 | check_register = 0; | |
6424 | ||
c6fb90c8 | 6425 | overlap0 = operand_type_and (i.types[0], operand_types[0]); |
29b0f896 AM |
6426 | switch (t->operands) |
6427 | { | |
6428 | case 1: | |
40fb9820 | 6429 | if (!operand_type_match (overlap0, i.types[0])) |
29b0f896 AM |
6430 | continue; |
6431 | break; | |
6432 | case 2: | |
33eaf5de | 6433 | /* xchg %eax, %eax is a special case. It is an alias for nop |
8b38ad71 L |
6434 | only in 32bit mode and we can use opcode 0x90. In 64bit |
6435 | mode, we can't use 0x90 for xchg %eax, %eax since it should | |
6436 | zero-extend %eax to %rax. */ | |
6437 | if (flag_code == CODE_64BIT | |
6438 | && t->base_opcode == 0x90 | |
75e5731b JB |
6439 | && i.types[0].bitfield.instance == Accum |
6440 | && i.types[0].bitfield.dword | |
6441 | && i.types[1].bitfield.instance == Accum | |
6442 | && i.types[1].bitfield.dword) | |
8b38ad71 | 6443 | continue; |
1212781b JB |
6444 | /* xrelease mov %eax, <disp> is another special case. It must not |
6445 | match the accumulator-only encoding of mov. */ | |
6446 | if (flag_code != CODE_64BIT | |
6447 | && i.hle_prefix | |
6448 | && t->base_opcode == 0xa0 | |
75e5731b | 6449 | && i.types[0].bitfield.instance == Accum |
8dc0818e | 6450 | && (i.flags[1] & Operand_Mem)) |
1212781b | 6451 | continue; |
f5eb1d70 JB |
6452 | /* Fall through. */ |
6453 | ||
6454 | case 3: | |
3ac21baa JB |
6455 | if (!(size_match & MATCH_STRAIGHT)) |
6456 | goto check_reverse; | |
64c49ab3 JB |
6457 | /* Reverse direction of operands if swapping is possible in the first |
6458 | place (operands need to be symmetric) and | |
6459 | - the load form is requested, and the template is a store form, | |
6460 | - the store form is requested, and the template is a load form, | |
6461 | - the non-default (swapped) form is requested. */ | |
6462 | overlap1 = operand_type_and (operand_types[0], operand_types[1]); | |
f5eb1d70 | 6463 | if (t->opcode_modifier.d && i.reg_operands == i.operands |
64c49ab3 JB |
6464 | && !operand_type_all_zero (&overlap1)) |
6465 | switch (i.dir_encoding) | |
6466 | { | |
6467 | case dir_encoding_load: | |
6468 | if (operand_type_check (operand_types[i.operands - 1], anymem) | |
dfd69174 | 6469 | || t->opcode_modifier.regmem) |
64c49ab3 JB |
6470 | goto check_reverse; |
6471 | break; | |
6472 | ||
6473 | case dir_encoding_store: | |
6474 | if (!operand_type_check (operand_types[i.operands - 1], anymem) | |
dfd69174 | 6475 | && !t->opcode_modifier.regmem) |
64c49ab3 JB |
6476 | goto check_reverse; |
6477 | break; | |
6478 | ||
6479 | case dir_encoding_swap: | |
6480 | goto check_reverse; | |
6481 | ||
6482 | case dir_encoding_default: | |
6483 | break; | |
6484 | } | |
86fa6981 | 6485 | /* If we want store form, we skip the current load. */ |
64c49ab3 JB |
6486 | if ((i.dir_encoding == dir_encoding_store |
6487 | || i.dir_encoding == dir_encoding_swap) | |
86fa6981 L |
6488 | && i.mem_operands == 0 |
6489 | && t->opcode_modifier.load) | |
fa99fab2 | 6490 | continue; |
1a0670f3 | 6491 | /* Fall through. */ |
f48ff2ae | 6492 | case 4: |
c0f3af97 | 6493 | case 5: |
c6fb90c8 | 6494 | overlap1 = operand_type_and (i.types[1], operand_types[1]); |
40fb9820 L |
6495 | if (!operand_type_match (overlap0, i.types[0]) |
6496 | || !operand_type_match (overlap1, i.types[1]) | |
e2195274 | 6497 | || ((check_register & 3) == 3 |
dc821c5f | 6498 | && !operand_type_register_match (i.types[0], |
40fb9820 | 6499 | operand_types[0], |
dc821c5f | 6500 | i.types[1], |
40fb9820 | 6501 | operand_types[1]))) |
29b0f896 AM |
6502 | { |
6503 | /* Check if other direction is valid ... */ | |
38e314eb | 6504 | if (!t->opcode_modifier.d) |
29b0f896 AM |
6505 | continue; |
6506 | ||
dc1e8a47 | 6507 | check_reverse: |
3ac21baa JB |
6508 | if (!(size_match & MATCH_REVERSE)) |
6509 | continue; | |
29b0f896 | 6510 | /* Try reversing direction of operands. */ |
f5eb1d70 JB |
6511 | overlap0 = operand_type_and (i.types[0], operand_types[i.operands - 1]); |
6512 | overlap1 = operand_type_and (i.types[i.operands - 1], operand_types[0]); | |
40fb9820 | 6513 | if (!operand_type_match (overlap0, i.types[0]) |
f5eb1d70 | 6514 | || !operand_type_match (overlap1, i.types[i.operands - 1]) |
45664ddb | 6515 | || (check_register |
dc821c5f | 6516 | && !operand_type_register_match (i.types[0], |
f5eb1d70 JB |
6517 | operand_types[i.operands - 1], |
6518 | i.types[i.operands - 1], | |
45664ddb | 6519 | operand_types[0]))) |
29b0f896 AM |
6520 | { |
6521 | /* Does not match either direction. */ | |
6522 | continue; | |
6523 | } | |
38e314eb | 6524 | /* found_reverse_match holds which of D or FloatR |
29b0f896 | 6525 | we've found. */ |
38e314eb JB |
6526 | if (!t->opcode_modifier.d) |
6527 | found_reverse_match = 0; | |
6528 | else if (operand_types[0].bitfield.tbyte) | |
8a2ed489 | 6529 | found_reverse_match = Opcode_FloatD; |
dbbc8b7e | 6530 | else if (operand_types[0].bitfield.xmmword |
f5eb1d70 | 6531 | || operand_types[i.operands - 1].bitfield.xmmword |
3528c362 JB |
6532 | || operand_types[0].bitfield.class == RegMMX |
6533 | || operand_types[i.operands - 1].bitfield.class == RegMMX | |
dbbc8b7e JB |
6534 | || is_any_vex_encoding(t)) |
6535 | found_reverse_match = (t->base_opcode & 0xee) != 0x6e | |
6536 | ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD; | |
8a2ed489 | 6537 | else |
38e314eb | 6538 | found_reverse_match = Opcode_D; |
40fb9820 | 6539 | if (t->opcode_modifier.floatr) |
8a2ed489 | 6540 | found_reverse_match |= Opcode_FloatR; |
29b0f896 | 6541 | } |
f48ff2ae | 6542 | else |
29b0f896 | 6543 | { |
f48ff2ae | 6544 | /* Found a forward 2 operand match here. */ |
d1cbb4db L |
6545 | switch (t->operands) |
6546 | { | |
c0f3af97 L |
6547 | case 5: |
6548 | overlap4 = operand_type_and (i.types[4], | |
6549 | operand_types[4]); | |
1a0670f3 | 6550 | /* Fall through. */ |
d1cbb4db | 6551 | case 4: |
c6fb90c8 L |
6552 | overlap3 = operand_type_and (i.types[3], |
6553 | operand_types[3]); | |
1a0670f3 | 6554 | /* Fall through. */ |
d1cbb4db | 6555 | case 3: |
c6fb90c8 L |
6556 | overlap2 = operand_type_and (i.types[2], |
6557 | operand_types[2]); | |
d1cbb4db L |
6558 | break; |
6559 | } | |
29b0f896 | 6560 | |
f48ff2ae L |
6561 | switch (t->operands) |
6562 | { | |
c0f3af97 L |
6563 | case 5: |
6564 | if (!operand_type_match (overlap4, i.types[4]) | |
dc821c5f | 6565 | || !operand_type_register_match (i.types[3], |
c0f3af97 | 6566 | operand_types[3], |
c0f3af97 L |
6567 | i.types[4], |
6568 | operand_types[4])) | |
6569 | continue; | |
1a0670f3 | 6570 | /* Fall through. */ |
f48ff2ae | 6571 | case 4: |
40fb9820 | 6572 | if (!operand_type_match (overlap3, i.types[3]) |
e2195274 JB |
6573 | || ((check_register & 0xa) == 0xa |
6574 | && !operand_type_register_match (i.types[1], | |
f7768225 JB |
6575 | operand_types[1], |
6576 | i.types[3], | |
e2195274 JB |
6577 | operand_types[3])) |
6578 | || ((check_register & 0xc) == 0xc | |
6579 | && !operand_type_register_match (i.types[2], | |
6580 | operand_types[2], | |
6581 | i.types[3], | |
6582 | operand_types[3]))) | |
f48ff2ae | 6583 | continue; |
1a0670f3 | 6584 | /* Fall through. */ |
f48ff2ae L |
6585 | case 3: |
6586 | /* Here we make use of the fact that there are no | |
23e42951 | 6587 | reverse match 3 operand instructions. */ |
40fb9820 | 6588 | if (!operand_type_match (overlap2, i.types[2]) |
e2195274 JB |
6589 | || ((check_register & 5) == 5 |
6590 | && !operand_type_register_match (i.types[0], | |
23e42951 JB |
6591 | operand_types[0], |
6592 | i.types[2], | |
e2195274 JB |
6593 | operand_types[2])) |
6594 | || ((check_register & 6) == 6 | |
6595 | && !operand_type_register_match (i.types[1], | |
6596 | operand_types[1], | |
6597 | i.types[2], | |
6598 | operand_types[2]))) | |
f48ff2ae L |
6599 | continue; |
6600 | break; | |
6601 | } | |
29b0f896 | 6602 | } |
f48ff2ae | 6603 | /* Found either forward/reverse 2, 3 or 4 operand match here: |
29b0f896 AM |
6604 | slip through to break. */ |
6605 | } | |
c0f3af97 | 6606 | |
da4977e0 JB |
6607 | /* Check if vector operands are valid. */ |
6608 | if (check_VecOperands (t)) | |
6609 | { | |
6610 | specific_error = i.error; | |
6611 | continue; | |
6612 | } | |
6613 | ||
6614 | /* Check if VEX/EVEX encoding requirements can be satisfied. */ | |
6615 | if (VEX_check_encoding (t)) | |
5614d22c JB |
6616 | { |
6617 | specific_error = i.error; | |
6618 | continue; | |
6619 | } | |
a683cc34 | 6620 | |
29b0f896 AM |
6621 | /* We've found a match; break out of loop. */ |
6622 | break; | |
6623 | } | |
6624 | ||
6625 | if (t == current_templates->end) | |
6626 | { | |
6627 | /* We found no match. */ | |
a65babc9 | 6628 | const char *err_msg; |
5614d22c | 6629 | switch (specific_error ? specific_error : i.error) |
a65babc9 L |
6630 | { |
6631 | default: | |
6632 | abort (); | |
86e026a4 | 6633 | case operand_size_mismatch: |
a65babc9 L |
6634 | err_msg = _("operand size mismatch"); |
6635 | break; | |
6636 | case operand_type_mismatch: | |
6637 | err_msg = _("operand type mismatch"); | |
6638 | break; | |
6639 | case register_type_mismatch: | |
6640 | err_msg = _("register type mismatch"); | |
6641 | break; | |
6642 | case number_of_operands_mismatch: | |
6643 | err_msg = _("number of operands mismatch"); | |
6644 | break; | |
6645 | case invalid_instruction_suffix: | |
6646 | err_msg = _("invalid instruction suffix"); | |
6647 | break; | |
6648 | case bad_imm4: | |
4a2608e3 | 6649 | err_msg = _("constant doesn't fit in 4 bits"); |
a65babc9 | 6650 | break; |
a65babc9 L |
6651 | case unsupported_with_intel_mnemonic: |
6652 | err_msg = _("unsupported with Intel mnemonic"); | |
6653 | break; | |
6654 | case unsupported_syntax: | |
6655 | err_msg = _("unsupported syntax"); | |
6656 | break; | |
6657 | case unsupported: | |
35262a23 | 6658 | as_bad (_("unsupported instruction `%s'"), |
10efe3f6 L |
6659 | current_templates->start->name); |
6660 | return NULL; | |
260cd341 LC |
6661 | case invalid_sib_address: |
6662 | err_msg = _("invalid SIB address"); | |
6663 | break; | |
6c30d220 L |
6664 | case invalid_vsib_address: |
6665 | err_msg = _("invalid VSIB address"); | |
6666 | break; | |
7bab8ab5 JB |
6667 | case invalid_vector_register_set: |
6668 | err_msg = _("mask, index, and destination registers must be distinct"); | |
6669 | break; | |
260cd341 LC |
6670 | case invalid_tmm_register_set: |
6671 | err_msg = _("all tmm registers must be distinct"); | |
6672 | break; | |
6c30d220 L |
6673 | case unsupported_vector_index_register: |
6674 | err_msg = _("unsupported vector index register"); | |
6675 | break; | |
43234a1e L |
6676 | case unsupported_broadcast: |
6677 | err_msg = _("unsupported broadcast"); | |
6678 | break; | |
43234a1e L |
6679 | case broadcast_needed: |
6680 | err_msg = _("broadcast is needed for operand of such type"); | |
6681 | break; | |
6682 | case unsupported_masking: | |
6683 | err_msg = _("unsupported masking"); | |
6684 | break; | |
6685 | case mask_not_on_destination: | |
6686 | err_msg = _("mask not on destination operand"); | |
6687 | break; | |
6688 | case no_default_mask: | |
6689 | err_msg = _("default mask isn't allowed"); | |
6690 | break; | |
6691 | case unsupported_rc_sae: | |
6692 | err_msg = _("unsupported static rounding/sae"); | |
6693 | break; | |
6694 | case rc_sae_operand_not_last_imm: | |
6695 | if (intel_syntax) | |
6696 | err_msg = _("RC/SAE operand must precede immediate operands"); | |
6697 | else | |
6698 | err_msg = _("RC/SAE operand must follow immediate operands"); | |
6699 | break; | |
6700 | case invalid_register_operand: | |
6701 | err_msg = _("invalid register operand"); | |
6702 | break; | |
a65babc9 L |
6703 | } |
6704 | as_bad (_("%s for `%s'"), err_msg, | |
891edac4 | 6705 | current_templates->start->name); |
fa99fab2 | 6706 | return NULL; |
29b0f896 | 6707 | } |
252b5132 | 6708 | |
29b0f896 AM |
6709 | if (!quiet_warnings) |
6710 | { | |
6711 | if (!intel_syntax | |
0cfa3eb3 | 6712 | && (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE))) |
6f2f06be | 6713 | as_warn (_("indirect %s without `*'"), t->name); |
29b0f896 | 6714 | |
40fb9820 | 6715 | if (t->opcode_modifier.isprefix |
3cd7f3e3 | 6716 | && t->opcode_modifier.mnemonicsize == IGNORESIZE) |
29b0f896 AM |
6717 | { |
6718 | /* Warn them that a data or address size prefix doesn't | |
6719 | affect assembly of the next line of code. */ | |
6720 | as_warn (_("stand-alone `%s' prefix"), t->name); | |
6721 | } | |
6722 | } | |
6723 | ||
6724 | /* Copy the template we found. */ | |
6725 | i.tm = *t; | |
539e75ad L |
6726 | |
6727 | if (addr_prefix_disp != -1) | |
6728 | i.tm.operand_types[addr_prefix_disp] | |
6729 | = operand_types[addr_prefix_disp]; | |
6730 | ||
29b0f896 AM |
6731 | if (found_reverse_match) |
6732 | { | |
dfd69174 JB |
6733 | /* If we found a reverse match we must alter the opcode direction |
6734 | bit and clear/flip the regmem modifier one. found_reverse_match | |
6735 | holds bits to change (different for int & float insns). */ | |
29b0f896 AM |
6736 | |
6737 | i.tm.base_opcode ^= found_reverse_match; | |
6738 | ||
f5eb1d70 JB |
6739 | i.tm.operand_types[0] = operand_types[i.operands - 1]; |
6740 | i.tm.operand_types[i.operands - 1] = operand_types[0]; | |
dfd69174 JB |
6741 | |
6742 | /* Certain SIMD insns have their load forms specified in the opcode | |
6743 | table, and hence we need to _set_ RegMem instead of clearing it. | |
6744 | We need to avoid setting the bit though on insns like KMOVW. */ | |
6745 | i.tm.opcode_modifier.regmem | |
6746 | = i.tm.opcode_modifier.modrm && i.tm.opcode_modifier.d | |
6747 | && i.tm.operands > 2U - i.tm.opcode_modifier.sse2avx | |
6748 | && !i.tm.opcode_modifier.regmem; | |
29b0f896 AM |
6749 | } |
6750 | ||
fa99fab2 | 6751 | return t; |
29b0f896 AM |
6752 | } |
6753 | ||
6754 | static int | |
e3bb37b5 | 6755 | check_string (void) |
29b0f896 | 6756 | { |
51c8edf6 JB |
6757 | unsigned int es_op = i.tm.opcode_modifier.isstring - IS_STRING_ES_OP0; |
6758 | unsigned int op = i.tm.operand_types[0].bitfield.baseindex ? es_op : 0; | |
8dc0818e | 6759 | |
51c8edf6 | 6760 | if (i.seg[op] != NULL && i.seg[op] != &es) |
29b0f896 | 6761 | { |
51c8edf6 JB |
6762 | as_bad (_("`%s' operand %u must use `%ses' segment"), |
6763 | i.tm.name, | |
6764 | intel_syntax ? i.tm.operands - es_op : es_op + 1, | |
6765 | register_prefix); | |
6766 | return 0; | |
29b0f896 | 6767 | } |
51c8edf6 JB |
6768 | |
6769 | /* There's only ever one segment override allowed per instruction. | |
6770 | This instruction possibly has a legal segment override on the | |
6771 | second operand, so copy the segment to where non-string | |
6772 | instructions store it, allowing common code. */ | |
6773 | i.seg[op] = i.seg[1]; | |
6774 | ||
29b0f896 AM |
6775 | return 1; |
6776 | } | |
6777 | ||
6778 | static int | |
543613e9 | 6779 | process_suffix (void) |
29b0f896 | 6780 | { |
8b65b895 L |
6781 | bfd_boolean is_crc32 = FALSE; |
6782 | ||
29b0f896 AM |
6783 | /* If matched instruction specifies an explicit instruction mnemonic |
6784 | suffix, use it. */ | |
673fe0f0 | 6785 | if (i.tm.opcode_modifier.size == SIZE16) |
40fb9820 | 6786 | i.suffix = WORD_MNEM_SUFFIX; |
673fe0f0 | 6787 | else if (i.tm.opcode_modifier.size == SIZE32) |
40fb9820 | 6788 | i.suffix = LONG_MNEM_SUFFIX; |
673fe0f0 | 6789 | else if (i.tm.opcode_modifier.size == SIZE64) |
40fb9820 | 6790 | i.suffix = QWORD_MNEM_SUFFIX; |
13e600d0 | 6791 | else if (i.reg_operands |
c8f8eebc JB |
6792 | && (i.operands > 1 || i.types[0].bitfield.class == Reg) |
6793 | && !i.tm.opcode_modifier.addrprefixopreg) | |
29b0f896 | 6794 | { |
65fca059 | 6795 | unsigned int numop = i.operands; |
8b65b895 L |
6796 | /* CRC32 */ |
6797 | is_crc32 = (i.tm.base_opcode == 0xf38f0 | |
6798 | && i.tm.opcode_modifier.opcodeprefix == PREFIX_0XF2); | |
65fca059 JB |
6799 | |
6800 | /* movsx/movzx want only their source operand considered here, for the | |
6801 | ambiguity checking below. The suffix will be replaced afterwards | |
6802 | to represent the destination (register). */ | |
6803 | if (((i.tm.base_opcode | 8) == 0xfbe && i.tm.opcode_modifier.w) | |
6804 | || (i.tm.base_opcode == 0x63 && i.tm.cpu_flags.bitfield.cpu64)) | |
6805 | --i.operands; | |
6806 | ||
643bb870 | 6807 | /* crc32 needs REX.W set regardless of suffix / source operand size. */ |
8b65b895 | 6808 | if (is_crc32 && i.tm.operand_types[1].bitfield.qword) |
643bb870 JB |
6809 | i.rex |= REX_W; |
6810 | ||
29b0f896 | 6811 | /* If there's no instruction mnemonic suffix we try to invent one |
13e600d0 | 6812 | based on GPR operands. */ |
29b0f896 AM |
6813 | if (!i.suffix) |
6814 | { | |
6815 | /* We take i.suffix from the last register operand specified, | |
6816 | Destination register type is more significant than source | |
381d071f L |
6817 | register type. crc32 in SSE4.2 prefers source register |
6818 | type. */ | |
8b65b895 | 6819 | unsigned int op = is_crc32 ? 1 : i.operands; |
20592a94 | 6820 | |
1a035124 JB |
6821 | while (op--) |
6822 | if (i.tm.operand_types[op].bitfield.instance == InstanceNone | |
6823 | || i.tm.operand_types[op].bitfield.instance == Accum) | |
6824 | { | |
6825 | if (i.types[op].bitfield.class != Reg) | |
6826 | continue; | |
6827 | if (i.types[op].bitfield.byte) | |
6828 | i.suffix = BYTE_MNEM_SUFFIX; | |
6829 | else if (i.types[op].bitfield.word) | |
6830 | i.suffix = WORD_MNEM_SUFFIX; | |
6831 | else if (i.types[op].bitfield.dword) | |
6832 | i.suffix = LONG_MNEM_SUFFIX; | |
6833 | else if (i.types[op].bitfield.qword) | |
6834 | i.suffix = QWORD_MNEM_SUFFIX; | |
6835 | else | |
6836 | continue; | |
6837 | break; | |
6838 | } | |
65fca059 JB |
6839 | |
6840 | /* As an exception, movsx/movzx silently default to a byte source | |
6841 | in AT&T mode. */ | |
6842 | if ((i.tm.base_opcode | 8) == 0xfbe && i.tm.opcode_modifier.w | |
6843 | && !i.suffix && !intel_syntax) | |
6844 | i.suffix = BYTE_MNEM_SUFFIX; | |
29b0f896 AM |
6845 | } |
6846 | else if (i.suffix == BYTE_MNEM_SUFFIX) | |
6847 | { | |
2eb952a4 | 6848 | if (intel_syntax |
3cd7f3e3 | 6849 | && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE |
2eb952a4 L |
6850 | && i.tm.opcode_modifier.no_bsuf) |
6851 | i.suffix = 0; | |
6852 | else if (!check_byte_reg ()) | |
29b0f896 AM |
6853 | return 0; |
6854 | } | |
6855 | else if (i.suffix == LONG_MNEM_SUFFIX) | |
6856 | { | |
2eb952a4 | 6857 | if (intel_syntax |
3cd7f3e3 | 6858 | && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE |
9f123b91 JB |
6859 | && i.tm.opcode_modifier.no_lsuf |
6860 | && !i.tm.opcode_modifier.todword | |
6861 | && !i.tm.opcode_modifier.toqword) | |
2eb952a4 L |
6862 | i.suffix = 0; |
6863 | else if (!check_long_reg ()) | |
29b0f896 AM |
6864 | return 0; |
6865 | } | |
6866 | else if (i.suffix == QWORD_MNEM_SUFFIX) | |
6867 | { | |
955e1e6a | 6868 | if (intel_syntax |
3cd7f3e3 | 6869 | && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE |
9f123b91 JB |
6870 | && i.tm.opcode_modifier.no_qsuf |
6871 | && !i.tm.opcode_modifier.todword | |
6872 | && !i.tm.opcode_modifier.toqword) | |
955e1e6a L |
6873 | i.suffix = 0; |
6874 | else if (!check_qword_reg ()) | |
29b0f896 AM |
6875 | return 0; |
6876 | } | |
6877 | else if (i.suffix == WORD_MNEM_SUFFIX) | |
6878 | { | |
2eb952a4 | 6879 | if (intel_syntax |
3cd7f3e3 | 6880 | && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE |
2eb952a4 L |
6881 | && i.tm.opcode_modifier.no_wsuf) |
6882 | i.suffix = 0; | |
6883 | else if (!check_word_reg ()) | |
29b0f896 AM |
6884 | return 0; |
6885 | } | |
3cd7f3e3 L |
6886 | else if (intel_syntax |
6887 | && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE) | |
29b0f896 AM |
6888 | /* Do nothing if the instruction is going to ignore the prefix. */ |
6889 | ; | |
6890 | else | |
6891 | abort (); | |
65fca059 JB |
6892 | |
6893 | /* Undo the movsx/movzx change done above. */ | |
6894 | i.operands = numop; | |
29b0f896 | 6895 | } |
3cd7f3e3 L |
6896 | else if (i.tm.opcode_modifier.mnemonicsize == DEFAULTSIZE |
6897 | && !i.suffix) | |
29b0f896 | 6898 | { |
13e600d0 JB |
6899 | i.suffix = stackop_size; |
6900 | if (stackop_size == LONG_MNEM_SUFFIX) | |
06f74c5c L |
6901 | { |
6902 | /* stackop_size is set to LONG_MNEM_SUFFIX for the | |
6903 | .code16gcc directive to support 16-bit mode with | |
6904 | 32-bit address. For IRET without a suffix, generate | |
6905 | 16-bit IRET (opcode 0xcf) to return from an interrupt | |
6906 | handler. */ | |
13e600d0 JB |
6907 | if (i.tm.base_opcode == 0xcf) |
6908 | { | |
6909 | i.suffix = WORD_MNEM_SUFFIX; | |
6910 | as_warn (_("generating 16-bit `iret' for .code16gcc directive")); | |
6911 | } | |
6912 | /* Warn about changed behavior for segment register push/pop. */ | |
6913 | else if ((i.tm.base_opcode | 1) == 0x07) | |
6914 | as_warn (_("generating 32-bit `%s', unlike earlier gas versions"), | |
6915 | i.tm.name); | |
06f74c5c | 6916 | } |
29b0f896 | 6917 | } |
c006a730 | 6918 | else if (!i.suffix |
0cfa3eb3 JB |
6919 | && (i.tm.opcode_modifier.jump == JUMP_ABSOLUTE |
6920 | || i.tm.opcode_modifier.jump == JUMP_BYTE | |
6921 | || i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT | |
64e74474 AM |
6922 | || (i.tm.base_opcode == 0x0f01 /* [ls][gi]dt */ |
6923 | && i.tm.extension_opcode <= 3))) | |
9306ca4a JB |
6924 | { |
6925 | switch (flag_code) | |
6926 | { | |
6927 | case CODE_64BIT: | |
40fb9820 | 6928 | if (!i.tm.opcode_modifier.no_qsuf) |
9306ca4a | 6929 | { |
828c2a25 JB |
6930 | if (i.tm.opcode_modifier.jump == JUMP_BYTE |
6931 | || i.tm.opcode_modifier.no_lsuf) | |
6932 | i.suffix = QWORD_MNEM_SUFFIX; | |
9306ca4a JB |
6933 | break; |
6934 | } | |
1a0670f3 | 6935 | /* Fall through. */ |
9306ca4a | 6936 | case CODE_32BIT: |
40fb9820 | 6937 | if (!i.tm.opcode_modifier.no_lsuf) |
9306ca4a JB |
6938 | i.suffix = LONG_MNEM_SUFFIX; |
6939 | break; | |
6940 | case CODE_16BIT: | |
40fb9820 | 6941 | if (!i.tm.opcode_modifier.no_wsuf) |
9306ca4a JB |
6942 | i.suffix = WORD_MNEM_SUFFIX; |
6943 | break; | |
6944 | } | |
6945 | } | |
252b5132 | 6946 | |
c006a730 | 6947 | if (!i.suffix |
3cd7f3e3 | 6948 | && (i.tm.opcode_modifier.mnemonicsize != DEFAULTSIZE |
873494c8 JB |
6949 | /* Also cover lret/retf/iret in 64-bit mode. */ |
6950 | || (flag_code == CODE_64BIT | |
6951 | && !i.tm.opcode_modifier.no_lsuf | |
6952 | && !i.tm.opcode_modifier.no_qsuf)) | |
3cd7f3e3 | 6953 | && i.tm.opcode_modifier.mnemonicsize != IGNORESIZE |
8bbb3ad8 JB |
6954 | /* Explicit sizing prefixes are assumed to disambiguate insns. */ |
6955 | && !i.prefix[DATA_PREFIX] && !(i.prefix[REX_PREFIX] & REX_W) | |
62b3f548 JB |
6956 | /* Accept FLDENV et al without suffix. */ |
6957 | && (i.tm.opcode_modifier.no_ssuf || i.tm.opcode_modifier.floatmf)) | |
29b0f896 | 6958 | { |
6c0946d0 | 6959 | unsigned int suffixes, evex = 0; |
c006a730 JB |
6960 | |
6961 | suffixes = !i.tm.opcode_modifier.no_bsuf; | |
6962 | if (!i.tm.opcode_modifier.no_wsuf) | |
6963 | suffixes |= 1 << 1; | |
6964 | if (!i.tm.opcode_modifier.no_lsuf) | |
6965 | suffixes |= 1 << 2; | |
6966 | if (!i.tm.opcode_modifier.no_ldsuf) | |
6967 | suffixes |= 1 << 3; | |
6968 | if (!i.tm.opcode_modifier.no_ssuf) | |
6969 | suffixes |= 1 << 4; | |
6970 | if (flag_code == CODE_64BIT && !i.tm.opcode_modifier.no_qsuf) | |
6971 | suffixes |= 1 << 5; | |
6972 | ||
6c0946d0 JB |
6973 | /* For [XYZ]MMWORD operands inspect operand sizes. While generally |
6974 | also suitable for AT&T syntax mode, it was requested that this be | |
6975 | restricted to just Intel syntax. */ | |
b9915cbc | 6976 | if (intel_syntax && is_any_vex_encoding (&i.tm) && !i.broadcast) |
6c0946d0 | 6977 | { |
b9915cbc | 6978 | unsigned int op; |
6c0946d0 | 6979 | |
b9915cbc | 6980 | for (op = 0; op < i.tm.operands; ++op) |
6c0946d0 | 6981 | { |
b9915cbc JB |
6982 | if (is_evex_encoding (&i.tm) |
6983 | && !cpu_arch_flags.bitfield.cpuavx512vl) | |
6c0946d0 | 6984 | { |
b9915cbc JB |
6985 | if (i.tm.operand_types[op].bitfield.ymmword) |
6986 | i.tm.operand_types[op].bitfield.xmmword = 0; | |
6987 | if (i.tm.operand_types[op].bitfield.zmmword) | |
6988 | i.tm.operand_types[op].bitfield.ymmword = 0; | |
6989 | if (!i.tm.opcode_modifier.evex | |
6990 | || i.tm.opcode_modifier.evex == EVEXDYN) | |
6991 | i.tm.opcode_modifier.evex = EVEX512; | |
6992 | } | |
6c0946d0 | 6993 | |
b9915cbc JB |
6994 | if (i.tm.operand_types[op].bitfield.xmmword |
6995 | + i.tm.operand_types[op].bitfield.ymmword | |
6996 | + i.tm.operand_types[op].bitfield.zmmword < 2) | |
6997 | continue; | |
6c0946d0 | 6998 | |
b9915cbc JB |
6999 | /* Any properly sized operand disambiguates the insn. */ |
7000 | if (i.types[op].bitfield.xmmword | |
7001 | || i.types[op].bitfield.ymmword | |
7002 | || i.types[op].bitfield.zmmword) | |
7003 | { | |
7004 | suffixes &= ~(7 << 6); | |
7005 | evex = 0; | |
7006 | break; | |
7007 | } | |
6c0946d0 | 7008 | |
b9915cbc JB |
7009 | if ((i.flags[op] & Operand_Mem) |
7010 | && i.tm.operand_types[op].bitfield.unspecified) | |
7011 | { | |
7012 | if (i.tm.operand_types[op].bitfield.xmmword) | |
7013 | suffixes |= 1 << 6; | |
7014 | if (i.tm.operand_types[op].bitfield.ymmword) | |
7015 | suffixes |= 1 << 7; | |
7016 | if (i.tm.operand_types[op].bitfield.zmmword) | |
7017 | suffixes |= 1 << 8; | |
7018 | if (is_evex_encoding (&i.tm)) | |
7019 | evex = EVEX512; | |
6c0946d0 JB |
7020 | } |
7021 | } | |
7022 | } | |
7023 | ||
7024 | /* Are multiple suffixes / operand sizes allowed? */ | |
c006a730 | 7025 | if (suffixes & (suffixes - 1)) |
9306ca4a | 7026 | { |
873494c8 | 7027 | if (intel_syntax |
3cd7f3e3 | 7028 | && (i.tm.opcode_modifier.mnemonicsize != DEFAULTSIZE |
873494c8 | 7029 | || operand_check == check_error)) |
9306ca4a | 7030 | { |
c006a730 | 7031 | as_bad (_("ambiguous operand size for `%s'"), i.tm.name); |
9306ca4a JB |
7032 | return 0; |
7033 | } | |
c006a730 | 7034 | if (operand_check == check_error) |
9306ca4a | 7035 | { |
c006a730 JB |
7036 | as_bad (_("no instruction mnemonic suffix given and " |
7037 | "no register operands; can't size `%s'"), i.tm.name); | |
9306ca4a JB |
7038 | return 0; |
7039 | } | |
c006a730 | 7040 | if (operand_check == check_warning) |
873494c8 JB |
7041 | as_warn (_("%s; using default for `%s'"), |
7042 | intel_syntax | |
7043 | ? _("ambiguous operand size") | |
7044 | : _("no instruction mnemonic suffix given and " | |
7045 | "no register operands"), | |
7046 | i.tm.name); | |
c006a730 JB |
7047 | |
7048 | if (i.tm.opcode_modifier.floatmf) | |
7049 | i.suffix = SHORT_MNEM_SUFFIX; | |
65fca059 JB |
7050 | else if ((i.tm.base_opcode | 8) == 0xfbe |
7051 | || (i.tm.base_opcode == 0x63 | |
7052 | && i.tm.cpu_flags.bitfield.cpu64)) | |
7053 | /* handled below */; | |
6c0946d0 JB |
7054 | else if (evex) |
7055 | i.tm.opcode_modifier.evex = evex; | |
c006a730 JB |
7056 | else if (flag_code == CODE_16BIT) |
7057 | i.suffix = WORD_MNEM_SUFFIX; | |
1a035124 | 7058 | else if (!i.tm.opcode_modifier.no_lsuf) |
c006a730 | 7059 | i.suffix = LONG_MNEM_SUFFIX; |
1a035124 JB |
7060 | else |
7061 | i.suffix = QWORD_MNEM_SUFFIX; | |
9306ca4a | 7062 | } |
29b0f896 | 7063 | } |
252b5132 | 7064 | |
65fca059 JB |
7065 | if ((i.tm.base_opcode | 8) == 0xfbe |
7066 | || (i.tm.base_opcode == 0x63 && i.tm.cpu_flags.bitfield.cpu64)) | |
7067 | { | |
7068 | /* In Intel syntax, movsx/movzx must have a "suffix" (checked above). | |
7069 | In AT&T syntax, if there is no suffix (warned about above), the default | |
7070 | will be byte extension. */ | |
7071 | if (i.tm.opcode_modifier.w && i.suffix && i.suffix != BYTE_MNEM_SUFFIX) | |
7072 | i.tm.base_opcode |= 1; | |
7073 | ||
7074 | /* For further processing, the suffix should represent the destination | |
7075 | (register). This is already the case when one was used with | |
7076 | mov[sz][bw]*, but we need to replace it for mov[sz]x, or if there was | |
7077 | no suffix to begin with. */ | |
7078 | if (i.tm.opcode_modifier.w || i.tm.base_opcode == 0x63 || !i.suffix) | |
7079 | { | |
7080 | if (i.types[1].bitfield.word) | |
7081 | i.suffix = WORD_MNEM_SUFFIX; | |
7082 | else if (i.types[1].bitfield.qword) | |
7083 | i.suffix = QWORD_MNEM_SUFFIX; | |
7084 | else | |
7085 | i.suffix = LONG_MNEM_SUFFIX; | |
7086 | ||
7087 | i.tm.opcode_modifier.w = 0; | |
7088 | } | |
7089 | } | |
7090 | ||
50128d0c JB |
7091 | if (!i.tm.opcode_modifier.modrm && i.reg_operands && i.tm.operands < 3) |
7092 | i.short_form = (i.tm.operand_types[0].bitfield.class == Reg) | |
7093 | != (i.tm.operand_types[1].bitfield.class == Reg); | |
7094 | ||
d2224064 JB |
7095 | /* Change the opcode based on the operand size given by i.suffix. */ |
7096 | switch (i.suffix) | |
29b0f896 | 7097 | { |
d2224064 JB |
7098 | /* Size floating point instruction. */ |
7099 | case LONG_MNEM_SUFFIX: | |
7100 | if (i.tm.opcode_modifier.floatmf) | |
7101 | { | |
7102 | i.tm.base_opcode ^= 4; | |
7103 | break; | |
7104 | } | |
7105 | /* fall through */ | |
7106 | case WORD_MNEM_SUFFIX: | |
7107 | case QWORD_MNEM_SUFFIX: | |
29b0f896 | 7108 | /* It's not a byte, select word/dword operation. */ |
40fb9820 | 7109 | if (i.tm.opcode_modifier.w) |
29b0f896 | 7110 | { |
50128d0c | 7111 | if (i.short_form) |
29b0f896 AM |
7112 | i.tm.base_opcode |= 8; |
7113 | else | |
7114 | i.tm.base_opcode |= 1; | |
7115 | } | |
d2224064 JB |
7116 | /* fall through */ |
7117 | case SHORT_MNEM_SUFFIX: | |
29b0f896 AM |
7118 | /* Now select between word & dword operations via the operand |
7119 | size prefix, except for instructions that will ignore this | |
7120 | prefix anyway. */ | |
c8f8eebc | 7121 | if (i.suffix != QWORD_MNEM_SUFFIX |
3cd7f3e3 | 7122 | && i.tm.opcode_modifier.mnemonicsize != IGNORESIZE |
c8f8eebc JB |
7123 | && !i.tm.opcode_modifier.floatmf |
7124 | && !is_any_vex_encoding (&i.tm) | |
7125 | && ((i.suffix == LONG_MNEM_SUFFIX) == (flag_code == CODE_16BIT) | |
7126 | || (flag_code == CODE_64BIT | |
7127 | && i.tm.opcode_modifier.jump == JUMP_BYTE))) | |
24eab124 AM |
7128 | { |
7129 | unsigned int prefix = DATA_PREFIX_OPCODE; | |
543613e9 | 7130 | |
0cfa3eb3 | 7131 | if (i.tm.opcode_modifier.jump == JUMP_BYTE) /* jcxz, loop */ |
29b0f896 | 7132 | prefix = ADDR_PREFIX_OPCODE; |
252b5132 | 7133 | |
29b0f896 AM |
7134 | if (!add_prefix (prefix)) |
7135 | return 0; | |
24eab124 | 7136 | } |
252b5132 | 7137 | |
29b0f896 AM |
7138 | /* Set mode64 for an operand. */ |
7139 | if (i.suffix == QWORD_MNEM_SUFFIX | |
9146926a | 7140 | && flag_code == CODE_64BIT |
d2224064 | 7141 | && !i.tm.opcode_modifier.norex64 |
4ed21b58 | 7142 | && !i.tm.opcode_modifier.vexw |
46e883c5 | 7143 | /* Special case for xchg %rax,%rax. It is NOP and doesn't |
d2224064 JB |
7144 | need rex64. */ |
7145 | && ! (i.operands == 2 | |
7146 | && i.tm.base_opcode == 0x90 | |
7147 | && i.tm.extension_opcode == None | |
75e5731b JB |
7148 | && i.types[0].bitfield.instance == Accum |
7149 | && i.types[0].bitfield.qword | |
7150 | && i.types[1].bitfield.instance == Accum | |
7151 | && i.types[1].bitfield.qword)) | |
d2224064 | 7152 | i.rex |= REX_W; |
3e73aa7c | 7153 | |
d2224064 | 7154 | break; |
8bbb3ad8 JB |
7155 | |
7156 | case 0: | |
7157 | /* Select word/dword/qword operation with explict data sizing prefix | |
7158 | when there are no suitable register operands. */ | |
7159 | if (i.tm.opcode_modifier.w | |
7160 | && (i.prefix[DATA_PREFIX] || (i.prefix[REX_PREFIX] & REX_W)) | |
7161 | && (!i.reg_operands | |
7162 | || (i.reg_operands == 1 | |
7163 | /* ShiftCount */ | |
7164 | && (i.tm.operand_types[0].bitfield.instance == RegC | |
7165 | /* InOutPortReg */ | |
7166 | || i.tm.operand_types[0].bitfield.instance == RegD | |
7167 | || i.tm.operand_types[1].bitfield.instance == RegD | |
7168 | /* CRC32 */ | |
8b65b895 | 7169 | || is_crc32)))) |
8bbb3ad8 JB |
7170 | i.tm.base_opcode |= 1; |
7171 | break; | |
29b0f896 | 7172 | } |
7ecd2f8b | 7173 | |
c8f8eebc | 7174 | if (i.tm.opcode_modifier.addrprefixopreg) |
c0a30a9f | 7175 | { |
c8f8eebc JB |
7176 | gas_assert (!i.suffix); |
7177 | gas_assert (i.reg_operands); | |
c0a30a9f | 7178 | |
c8f8eebc JB |
7179 | if (i.tm.operand_types[0].bitfield.instance == Accum |
7180 | || i.operands == 1) | |
7181 | { | |
7182 | /* The address size override prefix changes the size of the | |
7183 | first operand. */ | |
7184 | if (flag_code == CODE_64BIT | |
7185 | && i.op[0].regs->reg_type.bitfield.word) | |
7186 | { | |
7187 | as_bad (_("16-bit addressing unavailable for `%s'"), | |
7188 | i.tm.name); | |
7189 | return 0; | |
7190 | } | |
7191 | ||
7192 | if ((flag_code == CODE_32BIT | |
7193 | ? i.op[0].regs->reg_type.bitfield.word | |
7194 | : i.op[0].regs->reg_type.bitfield.dword) | |
7195 | && !add_prefix (ADDR_PREFIX_OPCODE)) | |
7196 | return 0; | |
7197 | } | |
c0a30a9f L |
7198 | else |
7199 | { | |
c8f8eebc JB |
7200 | /* Check invalid register operand when the address size override |
7201 | prefix changes the size of register operands. */ | |
7202 | unsigned int op; | |
7203 | enum { need_word, need_dword, need_qword } need; | |
7204 | ||
27f13469 | 7205 | /* Check the register operand for the address size prefix if |
b3a3496f L |
7206 | the memory operand has no real registers, like symbol, DISP |
7207 | or symbol(%rip). */ | |
27f13469 L |
7208 | if (i.mem_operands == 1 |
7209 | && i.reg_operands == 1 | |
7210 | && i.operands == 2 | |
27f13469 | 7211 | && i.types[1].bitfield.class == Reg |
b3a3496f L |
7212 | && (flag_code == CODE_32BIT |
7213 | ? i.op[1].regs->reg_type.bitfield.word | |
7214 | : i.op[1].regs->reg_type.bitfield.dword) | |
7215 | && ((i.base_reg == NULL && i.index_reg == NULL) | |
7216 | || (i.base_reg | |
7217 | && i.base_reg->reg_num == RegIP | |
7218 | && i.base_reg->reg_type.bitfield.qword)) | |
27f13469 L |
7219 | && !add_prefix (ADDR_PREFIX_OPCODE)) |
7220 | return 0; | |
7221 | ||
c8f8eebc JB |
7222 | if (flag_code == CODE_32BIT) |
7223 | need = i.prefix[ADDR_PREFIX] ? need_word : need_dword; | |
7224 | else if (i.prefix[ADDR_PREFIX]) | |
c0a30a9f L |
7225 | need = need_dword; |
7226 | else | |
7227 | need = flag_code == CODE_64BIT ? need_qword : need_word; | |
c0a30a9f | 7228 | |
c8f8eebc JB |
7229 | for (op = 0; op < i.operands; op++) |
7230 | { | |
7231 | if (i.types[op].bitfield.class != Reg) | |
7232 | continue; | |
7233 | ||
7234 | switch (need) | |
7235 | { | |
7236 | case need_word: | |
7237 | if (i.op[op].regs->reg_type.bitfield.word) | |
7238 | continue; | |
7239 | break; | |
7240 | case need_dword: | |
7241 | if (i.op[op].regs->reg_type.bitfield.dword) | |
7242 | continue; | |
7243 | break; | |
7244 | case need_qword: | |
7245 | if (i.op[op].regs->reg_type.bitfield.qword) | |
7246 | continue; | |
7247 | break; | |
7248 | } | |
7249 | ||
7250 | as_bad (_("invalid register operand size for `%s'"), | |
7251 | i.tm.name); | |
7252 | return 0; | |
7253 | } | |
7254 | } | |
c0a30a9f L |
7255 | } |
7256 | ||
29b0f896 AM |
7257 | return 1; |
7258 | } | |
3e73aa7c | 7259 | |
29b0f896 | 7260 | static int |
543613e9 | 7261 | check_byte_reg (void) |
29b0f896 AM |
7262 | { |
7263 | int op; | |
543613e9 | 7264 | |
29b0f896 AM |
7265 | for (op = i.operands; --op >= 0;) |
7266 | { | |
dc821c5f | 7267 | /* Skip non-register operands. */ |
bab6aec1 | 7268 | if (i.types[op].bitfield.class != Reg) |
dc821c5f JB |
7269 | continue; |
7270 | ||
29b0f896 AM |
7271 | /* If this is an eight bit register, it's OK. If it's the 16 or |
7272 | 32 bit version of an eight bit register, we will just use the | |
7273 | low portion, and that's OK too. */ | |
dc821c5f | 7274 | if (i.types[op].bitfield.byte) |
29b0f896 AM |
7275 | continue; |
7276 | ||
5a819eb9 | 7277 | /* I/O port address operands are OK too. */ |
75e5731b JB |
7278 | if (i.tm.operand_types[op].bitfield.instance == RegD |
7279 | && i.tm.operand_types[op].bitfield.word) | |
5a819eb9 JB |
7280 | continue; |
7281 | ||
9706160a | 7282 | /* crc32 only wants its source operand checked here. */ |
8b65b895 L |
7283 | if (i.tm.base_opcode == 0xf38f0 |
7284 | && i.tm.opcode_modifier.opcodeprefix == PREFIX_0XF2 | |
7285 | && op != 0) | |
9344ff29 L |
7286 | continue; |
7287 | ||
29b0f896 | 7288 | /* Any other register is bad. */ |
73c76375 JB |
7289 | as_bad (_("`%s%s' not allowed with `%s%c'"), |
7290 | register_prefix, i.op[op].regs->reg_name, | |
7291 | i.tm.name, i.suffix); | |
7292 | return 0; | |
29b0f896 AM |
7293 | } |
7294 | return 1; | |
7295 | } | |
7296 | ||
7297 | static int | |
e3bb37b5 | 7298 | check_long_reg (void) |
29b0f896 AM |
7299 | { |
7300 | int op; | |
7301 | ||
7302 | for (op = i.operands; --op >= 0;) | |
dc821c5f | 7303 | /* Skip non-register operands. */ |
bab6aec1 | 7304 | if (i.types[op].bitfield.class != Reg) |
dc821c5f | 7305 | continue; |
29b0f896 AM |
7306 | /* Reject eight bit registers, except where the template requires |
7307 | them. (eg. movzb) */ | |
dc821c5f | 7308 | else if (i.types[op].bitfield.byte |
bab6aec1 | 7309 | && (i.tm.operand_types[op].bitfield.class == Reg |
75e5731b | 7310 | || i.tm.operand_types[op].bitfield.instance == Accum) |
dc821c5f JB |
7311 | && (i.tm.operand_types[op].bitfield.word |
7312 | || i.tm.operand_types[op].bitfield.dword)) | |
29b0f896 | 7313 | { |
a540244d L |
7314 | as_bad (_("`%s%s' not allowed with `%s%c'"), |
7315 | register_prefix, | |
29b0f896 AM |
7316 | i.op[op].regs->reg_name, |
7317 | i.tm.name, | |
7318 | i.suffix); | |
7319 | return 0; | |
7320 | } | |
be4c5e58 L |
7321 | /* Error if the e prefix on a general reg is missing. */ |
7322 | else if (i.types[op].bitfield.word | |
bab6aec1 | 7323 | && (i.tm.operand_types[op].bitfield.class == Reg |
75e5731b | 7324 | || i.tm.operand_types[op].bitfield.instance == Accum) |
dc821c5f | 7325 | && i.tm.operand_types[op].bitfield.dword) |
29b0f896 | 7326 | { |
be4c5e58 L |
7327 | as_bad (_("incorrect register `%s%s' used with `%c' suffix"), |
7328 | register_prefix, i.op[op].regs->reg_name, | |
7329 | i.suffix); | |
7330 | return 0; | |
252b5132 | 7331 | } |
e4630f71 | 7332 | /* Warn if the r prefix on a general reg is present. */ |
dc821c5f | 7333 | else if (i.types[op].bitfield.qword |
bab6aec1 | 7334 | && (i.tm.operand_types[op].bitfield.class == Reg |
75e5731b | 7335 | || i.tm.operand_types[op].bitfield.instance == Accum) |
dc821c5f | 7336 | && i.tm.operand_types[op].bitfield.dword) |
252b5132 | 7337 | { |
34828aad | 7338 | if (intel_syntax |
65fca059 | 7339 | && i.tm.opcode_modifier.toqword |
3528c362 | 7340 | && i.types[0].bitfield.class != RegSIMD) |
34828aad | 7341 | { |
ca61edf2 | 7342 | /* Convert to QWORD. We want REX byte. */ |
34828aad L |
7343 | i.suffix = QWORD_MNEM_SUFFIX; |
7344 | } | |
7345 | else | |
7346 | { | |
2b5d6a91 | 7347 | as_bad (_("incorrect register `%s%s' used with `%c' suffix"), |
34828aad L |
7348 | register_prefix, i.op[op].regs->reg_name, |
7349 | i.suffix); | |
7350 | return 0; | |
7351 | } | |
29b0f896 AM |
7352 | } |
7353 | return 1; | |
7354 | } | |
252b5132 | 7355 | |
29b0f896 | 7356 | static int |
e3bb37b5 | 7357 | check_qword_reg (void) |
29b0f896 AM |
7358 | { |
7359 | int op; | |
252b5132 | 7360 | |
29b0f896 | 7361 | for (op = i.operands; --op >= 0; ) |
dc821c5f | 7362 | /* Skip non-register operands. */ |
bab6aec1 | 7363 | if (i.types[op].bitfield.class != Reg) |
dc821c5f | 7364 | continue; |
29b0f896 AM |
7365 | /* Reject eight bit registers, except where the template requires |
7366 | them. (eg. movzb) */ | |
dc821c5f | 7367 | else if (i.types[op].bitfield.byte |
bab6aec1 | 7368 | && (i.tm.operand_types[op].bitfield.class == Reg |
75e5731b | 7369 | || i.tm.operand_types[op].bitfield.instance == Accum) |
dc821c5f JB |
7370 | && (i.tm.operand_types[op].bitfield.word |
7371 | || i.tm.operand_types[op].bitfield.dword)) | |
29b0f896 | 7372 | { |
a540244d L |
7373 | as_bad (_("`%s%s' not allowed with `%s%c'"), |
7374 | register_prefix, | |
29b0f896 AM |
7375 | i.op[op].regs->reg_name, |
7376 | i.tm.name, | |
7377 | i.suffix); | |
7378 | return 0; | |
7379 | } | |
e4630f71 | 7380 | /* Warn if the r prefix on a general reg is missing. */ |
dc821c5f JB |
7381 | else if ((i.types[op].bitfield.word |
7382 | || i.types[op].bitfield.dword) | |
bab6aec1 | 7383 | && (i.tm.operand_types[op].bitfield.class == Reg |
75e5731b | 7384 | || i.tm.operand_types[op].bitfield.instance == Accum) |
dc821c5f | 7385 | && i.tm.operand_types[op].bitfield.qword) |
29b0f896 AM |
7386 | { |
7387 | /* Prohibit these changes in the 64bit mode, since the | |
7388 | lowering is more complicated. */ | |
34828aad | 7389 | if (intel_syntax |
ca61edf2 | 7390 | && i.tm.opcode_modifier.todword |
3528c362 | 7391 | && i.types[0].bitfield.class != RegSIMD) |
34828aad | 7392 | { |
ca61edf2 | 7393 | /* Convert to DWORD. We don't want REX byte. */ |
34828aad L |
7394 | i.suffix = LONG_MNEM_SUFFIX; |
7395 | } | |
7396 | else | |
7397 | { | |
2b5d6a91 | 7398 | as_bad (_("incorrect register `%s%s' used with `%c' suffix"), |
34828aad L |
7399 | register_prefix, i.op[op].regs->reg_name, |
7400 | i.suffix); | |
7401 | return 0; | |
7402 | } | |
252b5132 | 7403 | } |
29b0f896 AM |
7404 | return 1; |
7405 | } | |
252b5132 | 7406 | |
29b0f896 | 7407 | static int |
e3bb37b5 | 7408 | check_word_reg (void) |
29b0f896 AM |
7409 | { |
7410 | int op; | |
7411 | for (op = i.operands; --op >= 0;) | |
dc821c5f | 7412 | /* Skip non-register operands. */ |
bab6aec1 | 7413 | if (i.types[op].bitfield.class != Reg) |
dc821c5f | 7414 | continue; |
29b0f896 AM |
7415 | /* Reject eight bit registers, except where the template requires |
7416 | them. (eg. movzb) */ | |
dc821c5f | 7417 | else if (i.types[op].bitfield.byte |
bab6aec1 | 7418 | && (i.tm.operand_types[op].bitfield.class == Reg |
75e5731b | 7419 | || i.tm.operand_types[op].bitfield.instance == Accum) |
dc821c5f JB |
7420 | && (i.tm.operand_types[op].bitfield.word |
7421 | || i.tm.operand_types[op].bitfield.dword)) | |
29b0f896 | 7422 | { |
a540244d L |
7423 | as_bad (_("`%s%s' not allowed with `%s%c'"), |
7424 | register_prefix, | |
29b0f896 AM |
7425 | i.op[op].regs->reg_name, |
7426 | i.tm.name, | |
7427 | i.suffix); | |
7428 | return 0; | |
7429 | } | |
9706160a JB |
7430 | /* Error if the e or r prefix on a general reg is present. */ |
7431 | else if ((i.types[op].bitfield.dword | |
dc821c5f | 7432 | || i.types[op].bitfield.qword) |
bab6aec1 | 7433 | && (i.tm.operand_types[op].bitfield.class == Reg |
75e5731b | 7434 | || i.tm.operand_types[op].bitfield.instance == Accum) |
dc821c5f | 7435 | && i.tm.operand_types[op].bitfield.word) |
252b5132 | 7436 | { |
9706160a JB |
7437 | as_bad (_("incorrect register `%s%s' used with `%c' suffix"), |
7438 | register_prefix, i.op[op].regs->reg_name, | |
7439 | i.suffix); | |
7440 | return 0; | |
29b0f896 AM |
7441 | } |
7442 | return 1; | |
7443 | } | |
252b5132 | 7444 | |
29b0f896 | 7445 | static int |
40fb9820 | 7446 | update_imm (unsigned int j) |
29b0f896 | 7447 | { |
bc0844ae | 7448 | i386_operand_type overlap = i.types[j]; |
40fb9820 L |
7449 | if ((overlap.bitfield.imm8 |
7450 | || overlap.bitfield.imm8s | |
7451 | || overlap.bitfield.imm16 | |
7452 | || overlap.bitfield.imm32 | |
7453 | || overlap.bitfield.imm32s | |
7454 | || overlap.bitfield.imm64) | |
0dfbf9d7 L |
7455 | && !operand_type_equal (&overlap, &imm8) |
7456 | && !operand_type_equal (&overlap, &imm8s) | |
7457 | && !operand_type_equal (&overlap, &imm16) | |
7458 | && !operand_type_equal (&overlap, &imm32) | |
7459 | && !operand_type_equal (&overlap, &imm32s) | |
7460 | && !operand_type_equal (&overlap, &imm64)) | |
29b0f896 AM |
7461 | { |
7462 | if (i.suffix) | |
7463 | { | |
40fb9820 L |
7464 | i386_operand_type temp; |
7465 | ||
0dfbf9d7 | 7466 | operand_type_set (&temp, 0); |
7ab9ffdd | 7467 | if (i.suffix == BYTE_MNEM_SUFFIX) |
40fb9820 L |
7468 | { |
7469 | temp.bitfield.imm8 = overlap.bitfield.imm8; | |
7470 | temp.bitfield.imm8s = overlap.bitfield.imm8s; | |
7471 | } | |
7472 | else if (i.suffix == WORD_MNEM_SUFFIX) | |
7473 | temp.bitfield.imm16 = overlap.bitfield.imm16; | |
7474 | else if (i.suffix == QWORD_MNEM_SUFFIX) | |
7475 | { | |
7476 | temp.bitfield.imm64 = overlap.bitfield.imm64; | |
7477 | temp.bitfield.imm32s = overlap.bitfield.imm32s; | |
7478 | } | |
7479 | else | |
7480 | temp.bitfield.imm32 = overlap.bitfield.imm32; | |
7481 | overlap = temp; | |
29b0f896 | 7482 | } |
0dfbf9d7 L |
7483 | else if (operand_type_equal (&overlap, &imm16_32_32s) |
7484 | || operand_type_equal (&overlap, &imm16_32) | |
7485 | || operand_type_equal (&overlap, &imm16_32s)) | |
29b0f896 | 7486 | { |
40fb9820 | 7487 | if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0)) |
65da13b5 | 7488 | overlap = imm16; |
40fb9820 | 7489 | else |
65da13b5 | 7490 | overlap = imm32s; |
29b0f896 | 7491 | } |
8bbb3ad8 JB |
7492 | else if (i.prefix[REX_PREFIX] & REX_W) |
7493 | overlap = operand_type_and (overlap, imm32s); | |
7494 | else if (i.prefix[DATA_PREFIX]) | |
7495 | overlap = operand_type_and (overlap, | |
7496 | flag_code != CODE_16BIT ? imm16 : imm32); | |
0dfbf9d7 L |
7497 | if (!operand_type_equal (&overlap, &imm8) |
7498 | && !operand_type_equal (&overlap, &imm8s) | |
7499 | && !operand_type_equal (&overlap, &imm16) | |
7500 | && !operand_type_equal (&overlap, &imm32) | |
7501 | && !operand_type_equal (&overlap, &imm32s) | |
7502 | && !operand_type_equal (&overlap, &imm64)) | |
29b0f896 | 7503 | { |
4eed87de AM |
7504 | as_bad (_("no instruction mnemonic suffix given; " |
7505 | "can't determine immediate size")); | |
29b0f896 AM |
7506 | return 0; |
7507 | } | |
7508 | } | |
40fb9820 | 7509 | i.types[j] = overlap; |
29b0f896 | 7510 | |
40fb9820 L |
7511 | return 1; |
7512 | } | |
7513 | ||
7514 | static int | |
7515 | finalize_imm (void) | |
7516 | { | |
bc0844ae | 7517 | unsigned int j, n; |
29b0f896 | 7518 | |
bc0844ae L |
7519 | /* Update the first 2 immediate operands. */ |
7520 | n = i.operands > 2 ? 2 : i.operands; | |
7521 | if (n) | |
7522 | { | |
7523 | for (j = 0; j < n; j++) | |
7524 | if (update_imm (j) == 0) | |
7525 | return 0; | |
40fb9820 | 7526 | |
bc0844ae L |
7527 | /* The 3rd operand can't be immediate operand. */ |
7528 | gas_assert (operand_type_check (i.types[2], imm) == 0); | |
7529 | } | |
29b0f896 AM |
7530 | |
7531 | return 1; | |
7532 | } | |
7533 | ||
7534 | static int | |
e3bb37b5 | 7535 | process_operands (void) |
29b0f896 AM |
7536 | { |
7537 | /* Default segment register this instruction will use for memory | |
7538 | accesses. 0 means unknown. This is only for optimizing out | |
7539 | unnecessary segment overrides. */ | |
7540 | const seg_entry *default_seg = 0; | |
7541 | ||
a5aeccd9 JB |
7542 | if (i.tm.opcode_modifier.sse2avx) |
7543 | { | |
7544 | /* Legacy encoded insns allow explicit REX prefixes, so these prefixes | |
7545 | need converting. */ | |
7546 | i.rex |= i.prefix[REX_PREFIX] & (REX_W | REX_R | REX_X | REX_B); | |
7547 | i.prefix[REX_PREFIX] = 0; | |
7548 | i.rex_encoding = 0; | |
7549 | } | |
c423d21a JB |
7550 | /* ImmExt should be processed after SSE2AVX. */ |
7551 | else if (i.tm.opcode_modifier.immext) | |
7552 | process_immext (); | |
a5aeccd9 | 7553 | |
2426c15f | 7554 | if (i.tm.opcode_modifier.sse2avx && i.tm.opcode_modifier.vexvvvv) |
29b0f896 | 7555 | { |
91d6fa6a NC |
7556 | unsigned int dupl = i.operands; |
7557 | unsigned int dest = dupl - 1; | |
9fcfb3d7 L |
7558 | unsigned int j; |
7559 | ||
c0f3af97 | 7560 | /* The destination must be an xmm register. */ |
9c2799c2 | 7561 | gas_assert (i.reg_operands |
91d6fa6a | 7562 | && MAX_OPERANDS > dupl |
7ab9ffdd | 7563 | && operand_type_equal (&i.types[dest], ®xmm)); |
c0f3af97 | 7564 | |
75e5731b | 7565 | if (i.tm.operand_types[0].bitfield.instance == Accum |
1b54b8d7 | 7566 | && i.tm.operand_types[0].bitfield.xmmword) |
e2ec9d29 | 7567 | { |
8cd7925b | 7568 | if (i.tm.opcode_modifier.vexsources == VEX3SOURCES) |
c0f3af97 L |
7569 | { |
7570 | /* Keep xmm0 for instructions with VEX prefix and 3 | |
7571 | sources. */ | |
75e5731b | 7572 | i.tm.operand_types[0].bitfield.instance = InstanceNone; |
3528c362 | 7573 | i.tm.operand_types[0].bitfield.class = RegSIMD; |
c0f3af97 L |
7574 | goto duplicate; |
7575 | } | |
e2ec9d29 | 7576 | else |
c0f3af97 L |
7577 | { |
7578 | /* We remove the first xmm0 and keep the number of | |
7579 | operands unchanged, which in fact duplicates the | |
7580 | destination. */ | |
7581 | for (j = 1; j < i.operands; j++) | |
7582 | { | |
7583 | i.op[j - 1] = i.op[j]; | |
7584 | i.types[j - 1] = i.types[j]; | |
7585 | i.tm.operand_types[j - 1] = i.tm.operand_types[j]; | |
8dc0818e | 7586 | i.flags[j - 1] = i.flags[j]; |
c0f3af97 L |
7587 | } |
7588 | } | |
7589 | } | |
7590 | else if (i.tm.opcode_modifier.implicit1stxmm0) | |
7ab9ffdd | 7591 | { |
91d6fa6a | 7592 | gas_assert ((MAX_OPERANDS - 1) > dupl |
8cd7925b L |
7593 | && (i.tm.opcode_modifier.vexsources |
7594 | == VEX3SOURCES)); | |
c0f3af97 L |
7595 | |
7596 | /* Add the implicit xmm0 for instructions with VEX prefix | |
7597 | and 3 sources. */ | |
7598 | for (j = i.operands; j > 0; j--) | |
7599 | { | |
7600 | i.op[j] = i.op[j - 1]; | |
7601 | i.types[j] = i.types[j - 1]; | |
7602 | i.tm.operand_types[j] = i.tm.operand_types[j - 1]; | |
8dc0818e | 7603 | i.flags[j] = i.flags[j - 1]; |
c0f3af97 L |
7604 | } |
7605 | i.op[0].regs | |
629310ab | 7606 | = (const reg_entry *) str_hash_find (reg_hash, "xmm0"); |
7ab9ffdd | 7607 | i.types[0] = regxmm; |
c0f3af97 L |
7608 | i.tm.operand_types[0] = regxmm; |
7609 | ||
7610 | i.operands += 2; | |
7611 | i.reg_operands += 2; | |
7612 | i.tm.operands += 2; | |
7613 | ||
91d6fa6a | 7614 | dupl++; |
c0f3af97 | 7615 | dest++; |
91d6fa6a NC |
7616 | i.op[dupl] = i.op[dest]; |
7617 | i.types[dupl] = i.types[dest]; | |
7618 | i.tm.operand_types[dupl] = i.tm.operand_types[dest]; | |
8dc0818e | 7619 | i.flags[dupl] = i.flags[dest]; |
e2ec9d29 | 7620 | } |
c0f3af97 L |
7621 | else |
7622 | { | |
dc1e8a47 | 7623 | duplicate: |
c0f3af97 L |
7624 | i.operands++; |
7625 | i.reg_operands++; | |
7626 | i.tm.operands++; | |
7627 | ||
91d6fa6a NC |
7628 | i.op[dupl] = i.op[dest]; |
7629 | i.types[dupl] = i.types[dest]; | |
7630 | i.tm.operand_types[dupl] = i.tm.operand_types[dest]; | |
8dc0818e | 7631 | i.flags[dupl] = i.flags[dest]; |
c0f3af97 L |
7632 | } |
7633 | ||
7634 | if (i.tm.opcode_modifier.immext) | |
7635 | process_immext (); | |
7636 | } | |
75e5731b | 7637 | else if (i.tm.operand_types[0].bitfield.instance == Accum |
1b54b8d7 | 7638 | && i.tm.operand_types[0].bitfield.xmmword) |
c0f3af97 L |
7639 | { |
7640 | unsigned int j; | |
7641 | ||
9fcfb3d7 L |
7642 | for (j = 1; j < i.operands; j++) |
7643 | { | |
7644 | i.op[j - 1] = i.op[j]; | |
7645 | i.types[j - 1] = i.types[j]; | |
7646 | ||
7647 | /* We need to adjust fields in i.tm since they are used by | |
7648 | build_modrm_byte. */ | |
7649 | i.tm.operand_types [j - 1] = i.tm.operand_types [j]; | |
8dc0818e JB |
7650 | |
7651 | i.flags[j - 1] = i.flags[j]; | |
9fcfb3d7 L |
7652 | } |
7653 | ||
e2ec9d29 L |
7654 | i.operands--; |
7655 | i.reg_operands--; | |
e2ec9d29 L |
7656 | i.tm.operands--; |
7657 | } | |
920d2ddc IT |
7658 | else if (i.tm.opcode_modifier.implicitquadgroup) |
7659 | { | |
a477a8c4 JB |
7660 | unsigned int regnum, first_reg_in_group, last_reg_in_group; |
7661 | ||
920d2ddc | 7662 | /* The second operand must be {x,y,z}mmN, where N is a multiple of 4. */ |
3528c362 | 7663 | gas_assert (i.operands >= 2 && i.types[1].bitfield.class == RegSIMD); |
a477a8c4 JB |
7664 | regnum = register_number (i.op[1].regs); |
7665 | first_reg_in_group = regnum & ~3; | |
7666 | last_reg_in_group = first_reg_in_group + 3; | |
7667 | if (regnum != first_reg_in_group) | |
7668 | as_warn (_("source register `%s%s' implicitly denotes" | |
7669 | " `%s%.3s%u' to `%s%.3s%u' source group in `%s'"), | |
7670 | register_prefix, i.op[1].regs->reg_name, | |
7671 | register_prefix, i.op[1].regs->reg_name, first_reg_in_group, | |
7672 | register_prefix, i.op[1].regs->reg_name, last_reg_in_group, | |
7673 | i.tm.name); | |
7674 | } | |
e2ec9d29 L |
7675 | else if (i.tm.opcode_modifier.regkludge) |
7676 | { | |
7677 | /* The imul $imm, %reg instruction is converted into | |
7678 | imul $imm, %reg, %reg, and the clr %reg instruction | |
7679 | is converted into xor %reg, %reg. */ | |
7680 | ||
7681 | unsigned int first_reg_op; | |
7682 | ||
7683 | if (operand_type_check (i.types[0], reg)) | |
7684 | first_reg_op = 0; | |
7685 | else | |
7686 | first_reg_op = 1; | |
7687 | /* Pretend we saw the extra register operand. */ | |
9c2799c2 | 7688 | gas_assert (i.reg_operands == 1 |
7ab9ffdd | 7689 | && i.op[first_reg_op + 1].regs == 0); |
e2ec9d29 L |
7690 | i.op[first_reg_op + 1].regs = i.op[first_reg_op].regs; |
7691 | i.types[first_reg_op + 1] = i.types[first_reg_op]; | |
7692 | i.operands++; | |
7693 | i.reg_operands++; | |
29b0f896 AM |
7694 | } |
7695 | ||
85b80b0f | 7696 | if (i.tm.opcode_modifier.modrm) |
29b0f896 AM |
7697 | { |
7698 | /* The opcode is completed (modulo i.tm.extension_opcode which | |
52271982 AM |
7699 | must be put into the modrm byte). Now, we make the modrm and |
7700 | index base bytes based on all the info we've collected. */ | |
29b0f896 AM |
7701 | |
7702 | default_seg = build_modrm_byte (); | |
7703 | } | |
00cee14f | 7704 | else if (i.types[0].bitfield.class == SReg) |
85b80b0f JB |
7705 | { |
7706 | if (flag_code != CODE_64BIT | |
7707 | ? i.tm.base_opcode == POP_SEG_SHORT | |
7708 | && i.op[0].regs->reg_num == 1 | |
7709 | : (i.tm.base_opcode | 1) == POP_SEG386_SHORT | |
7710 | && i.op[0].regs->reg_num < 4) | |
7711 | { | |
7712 | as_bad (_("you can't `%s %s%s'"), | |
7713 | i.tm.name, register_prefix, i.op[0].regs->reg_name); | |
7714 | return 0; | |
7715 | } | |
7716 | if ( i.op[0].regs->reg_num > 3 && i.tm.opcode_length == 1 ) | |
7717 | { | |
7718 | i.tm.base_opcode ^= POP_SEG_SHORT ^ POP_SEG386_SHORT; | |
7719 | i.tm.opcode_length = 2; | |
7720 | } | |
7721 | i.tm.base_opcode |= (i.op[0].regs->reg_num << 3); | |
7722 | } | |
8a2ed489 | 7723 | else if ((i.tm.base_opcode & ~0x3) == MOV_AX_DISP32) |
29b0f896 AM |
7724 | { |
7725 | default_seg = &ds; | |
7726 | } | |
40fb9820 | 7727 | else if (i.tm.opcode_modifier.isstring) |
29b0f896 AM |
7728 | { |
7729 | /* For the string instructions that allow a segment override | |
7730 | on one of their operands, the default segment is ds. */ | |
7731 | default_seg = &ds; | |
7732 | } | |
50128d0c | 7733 | else if (i.short_form) |
85b80b0f JB |
7734 | { |
7735 | /* The register or float register operand is in operand | |
7736 | 0 or 1. */ | |
bab6aec1 | 7737 | unsigned int op = i.tm.operand_types[0].bitfield.class != Reg; |
85b80b0f JB |
7738 | |
7739 | /* Register goes in low 3 bits of opcode. */ | |
7740 | i.tm.base_opcode |= i.op[op].regs->reg_num; | |
7741 | if ((i.op[op].regs->reg_flags & RegRex) != 0) | |
7742 | i.rex |= REX_B; | |
7743 | if (!quiet_warnings && i.tm.opcode_modifier.ugh) | |
7744 | { | |
7745 | /* Warn about some common errors, but press on regardless. | |
7746 | The first case can be generated by gcc (<= 2.8.1). */ | |
7747 | if (i.operands == 2) | |
7748 | { | |
7749 | /* Reversed arguments on faddp, fsubp, etc. */ | |
7750 | as_warn (_("translating to `%s %s%s,%s%s'"), i.tm.name, | |
7751 | register_prefix, i.op[!intel_syntax].regs->reg_name, | |
7752 | register_prefix, i.op[intel_syntax].regs->reg_name); | |
7753 | } | |
7754 | else | |
7755 | { | |
7756 | /* Extraneous `l' suffix on fp insn. */ | |
7757 | as_warn (_("translating to `%s %s%s'"), i.tm.name, | |
7758 | register_prefix, i.op[0].regs->reg_name); | |
7759 | } | |
7760 | } | |
7761 | } | |
29b0f896 | 7762 | |
514a8bb0 | 7763 | if ((i.seg[0] || i.prefix[SEG_PREFIX]) |
514a8bb0 JB |
7764 | && i.tm.base_opcode == 0x8d /* lea */ |
7765 | && !is_any_vex_encoding(&i.tm)) | |
92334ad2 JB |
7766 | { |
7767 | if (!quiet_warnings) | |
7768 | as_warn (_("segment override on `%s' is ineffectual"), i.tm.name); | |
7769 | if (optimize) | |
7770 | { | |
7771 | i.seg[0] = NULL; | |
7772 | i.prefix[SEG_PREFIX] = 0; | |
7773 | } | |
7774 | } | |
52271982 AM |
7775 | |
7776 | /* If a segment was explicitly specified, and the specified segment | |
b6773884 JB |
7777 | is neither the default nor the one already recorded from a prefix, |
7778 | use an opcode prefix to select it. If we never figured out what | |
7779 | the default segment is, then default_seg will be zero at this | |
7780 | point, and the specified segment prefix will always be used. */ | |
7781 | if (i.seg[0] | |
7782 | && i.seg[0] != default_seg | |
7783 | && i.seg[0]->seg_prefix != i.prefix[SEG_PREFIX]) | |
29b0f896 AM |
7784 | { |
7785 | if (!add_prefix (i.seg[0]->seg_prefix)) | |
7786 | return 0; | |
7787 | } | |
7788 | return 1; | |
7789 | } | |
7790 | ||
a5aeccd9 JB |
7791 | static INLINE void set_rex_vrex (const reg_entry *r, unsigned int rex_bit, |
7792 | bfd_boolean do_sse2avx) | |
7793 | { | |
7794 | if (r->reg_flags & RegRex) | |
7795 | { | |
7796 | if (i.rex & rex_bit) | |
7797 | as_bad (_("same type of prefix used twice")); | |
7798 | i.rex |= rex_bit; | |
7799 | } | |
7800 | else if (do_sse2avx && (i.rex & rex_bit) && i.vex.register_specifier) | |
7801 | { | |
7802 | gas_assert (i.vex.register_specifier == r); | |
7803 | i.vex.register_specifier += 8; | |
7804 | } | |
7805 | ||
7806 | if (r->reg_flags & RegVRex) | |
7807 | i.vrex |= rex_bit; | |
7808 | } | |
7809 | ||
29b0f896 | 7810 | static const seg_entry * |
e3bb37b5 | 7811 | build_modrm_byte (void) |
29b0f896 AM |
7812 | { |
7813 | const seg_entry *default_seg = 0; | |
c0f3af97 | 7814 | unsigned int source, dest; |
8cd7925b | 7815 | int vex_3_sources; |
c0f3af97 | 7816 | |
8cd7925b | 7817 | vex_3_sources = i.tm.opcode_modifier.vexsources == VEX3SOURCES; |
c0f3af97 L |
7818 | if (vex_3_sources) |
7819 | { | |
91d6fa6a | 7820 | unsigned int nds, reg_slot; |
4c2c6516 | 7821 | expressionS *exp; |
c0f3af97 | 7822 | |
6b8d3588 | 7823 | dest = i.operands - 1; |
c0f3af97 | 7824 | nds = dest - 1; |
922d8de8 | 7825 | |
a683cc34 | 7826 | /* There are 2 kinds of instructions: |
bed3d976 | 7827 | 1. 5 operands: 4 register operands or 3 register operands |
9d3bf266 | 7828 | plus 1 memory operand plus one Imm4 operand, VexXDS, and |
bed3d976 | 7829 | VexW0 or VexW1. The destination must be either XMM, YMM or |
43234a1e | 7830 | ZMM register. |
bed3d976 | 7831 | 2. 4 operands: 4 register operands or 3 register operands |
2f1bada2 | 7832 | plus 1 memory operand, with VexXDS. */ |
922d8de8 | 7833 | gas_assert ((i.reg_operands == 4 |
bed3d976 JB |
7834 | || (i.reg_operands == 3 && i.mem_operands == 1)) |
7835 | && i.tm.opcode_modifier.vexvvvv == VEXXDS | |
dcd7e323 | 7836 | && i.tm.opcode_modifier.vexw |
3528c362 | 7837 | && i.tm.operand_types[dest].bitfield.class == RegSIMD); |
a683cc34 | 7838 | |
48db9223 JB |
7839 | /* If VexW1 is set, the first non-immediate operand is the source and |
7840 | the second non-immediate one is encoded in the immediate operand. */ | |
7841 | if (i.tm.opcode_modifier.vexw == VEXW1) | |
7842 | { | |
7843 | source = i.imm_operands; | |
7844 | reg_slot = i.imm_operands + 1; | |
7845 | } | |
7846 | else | |
7847 | { | |
7848 | source = i.imm_operands + 1; | |
7849 | reg_slot = i.imm_operands; | |
7850 | } | |
7851 | ||
a683cc34 | 7852 | if (i.imm_operands == 0) |
bed3d976 JB |
7853 | { |
7854 | /* When there is no immediate operand, generate an 8bit | |
7855 | immediate operand to encode the first operand. */ | |
7856 | exp = &im_expressions[i.imm_operands++]; | |
7857 | i.op[i.operands].imms = exp; | |
7858 | i.types[i.operands] = imm8; | |
7859 | i.operands++; | |
7860 | ||
3528c362 | 7861 | gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD); |
bed3d976 JB |
7862 | exp->X_op = O_constant; |
7863 | exp->X_add_number = register_number (i.op[reg_slot].regs) << 4; | |
43234a1e L |
7864 | gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0); |
7865 | } | |
922d8de8 | 7866 | else |
bed3d976 | 7867 | { |
9d3bf266 JB |
7868 | gas_assert (i.imm_operands == 1); |
7869 | gas_assert (fits_in_imm4 (i.op[0].imms->X_add_number)); | |
7870 | gas_assert (!i.tm.opcode_modifier.immext); | |
a683cc34 | 7871 | |
9d3bf266 JB |
7872 | /* Turn on Imm8 again so that output_imm will generate it. */ |
7873 | i.types[0].bitfield.imm8 = 1; | |
bed3d976 | 7874 | |
3528c362 | 7875 | gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD); |
9d3bf266 | 7876 | i.op[0].imms->X_add_number |
bed3d976 | 7877 | |= register_number (i.op[reg_slot].regs) << 4; |
43234a1e | 7878 | gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0); |
bed3d976 | 7879 | } |
a683cc34 | 7880 | |
3528c362 | 7881 | gas_assert (i.tm.operand_types[nds].bitfield.class == RegSIMD); |
dae39acc | 7882 | i.vex.register_specifier = i.op[nds].regs; |
c0f3af97 L |
7883 | } |
7884 | else | |
7885 | source = dest = 0; | |
29b0f896 AM |
7886 | |
7887 | /* i.reg_operands MUST be the number of real register operands; | |
c0f3af97 L |
7888 | implicit registers do not count. If there are 3 register |
7889 | operands, it must be a instruction with VexNDS. For a | |
7890 | instruction with VexNDD, the destination register is encoded | |
7891 | in VEX prefix. If there are 4 register operands, it must be | |
7892 | a instruction with VEX prefix and 3 sources. */ | |
7ab9ffdd L |
7893 | if (i.mem_operands == 0 |
7894 | && ((i.reg_operands == 2 | |
2426c15f | 7895 | && i.tm.opcode_modifier.vexvvvv <= VEXXDS) |
7ab9ffdd | 7896 | || (i.reg_operands == 3 |
2426c15f | 7897 | && i.tm.opcode_modifier.vexvvvv == VEXXDS) |
7ab9ffdd | 7898 | || (i.reg_operands == 4 && vex_3_sources))) |
29b0f896 | 7899 | { |
cab737b9 L |
7900 | switch (i.operands) |
7901 | { | |
7902 | case 2: | |
7903 | source = 0; | |
7904 | break; | |
7905 | case 3: | |
c81128dc L |
7906 | /* When there are 3 operands, one of them may be immediate, |
7907 | which may be the first or the last operand. Otherwise, | |
c0f3af97 L |
7908 | the first operand must be shift count register (cl) or it |
7909 | is an instruction with VexNDS. */ | |
9c2799c2 | 7910 | gas_assert (i.imm_operands == 1 |
7ab9ffdd | 7911 | || (i.imm_operands == 0 |
2426c15f | 7912 | && (i.tm.opcode_modifier.vexvvvv == VEXXDS |
75e5731b JB |
7913 | || (i.types[0].bitfield.instance == RegC |
7914 | && i.types[0].bitfield.byte)))); | |
40fb9820 | 7915 | if (operand_type_check (i.types[0], imm) |
75e5731b JB |
7916 | || (i.types[0].bitfield.instance == RegC |
7917 | && i.types[0].bitfield.byte)) | |
40fb9820 L |
7918 | source = 1; |
7919 | else | |
7920 | source = 0; | |
cab737b9 L |
7921 | break; |
7922 | case 4: | |
368d64cc L |
7923 | /* When there are 4 operands, the first two must be 8bit |
7924 | immediate operands. The source operand will be the 3rd | |
c0f3af97 L |
7925 | one. |
7926 | ||
7927 | For instructions with VexNDS, if the first operand | |
7928 | an imm8, the source operand is the 2nd one. If the last | |
7929 | operand is imm8, the source operand is the first one. */ | |
9c2799c2 | 7930 | gas_assert ((i.imm_operands == 2 |
7ab9ffdd L |
7931 | && i.types[0].bitfield.imm8 |
7932 | && i.types[1].bitfield.imm8) | |
2426c15f | 7933 | || (i.tm.opcode_modifier.vexvvvv == VEXXDS |
7ab9ffdd L |
7934 | && i.imm_operands == 1 |
7935 | && (i.types[0].bitfield.imm8 | |
43234a1e L |
7936 | || i.types[i.operands - 1].bitfield.imm8 |
7937 | || i.rounding))); | |
9f2670f2 L |
7938 | if (i.imm_operands == 2) |
7939 | source = 2; | |
7940 | else | |
c0f3af97 L |
7941 | { |
7942 | if (i.types[0].bitfield.imm8) | |
7943 | source = 1; | |
7944 | else | |
7945 | source = 0; | |
7946 | } | |
c0f3af97 L |
7947 | break; |
7948 | case 5: | |
e771e7c9 | 7949 | if (is_evex_encoding (&i.tm)) |
43234a1e L |
7950 | { |
7951 | /* For EVEX instructions, when there are 5 operands, the | |
7952 | first one must be immediate operand. If the second one | |
7953 | is immediate operand, the source operand is the 3th | |
7954 | one. If the last one is immediate operand, the source | |
7955 | operand is the 2nd one. */ | |
7956 | gas_assert (i.imm_operands == 2 | |
7957 | && i.tm.opcode_modifier.sae | |
7958 | && operand_type_check (i.types[0], imm)); | |
7959 | if (operand_type_check (i.types[1], imm)) | |
7960 | source = 2; | |
7961 | else if (operand_type_check (i.types[4], imm)) | |
7962 | source = 1; | |
7963 | else | |
7964 | abort (); | |
7965 | } | |
cab737b9 L |
7966 | break; |
7967 | default: | |
7968 | abort (); | |
7969 | } | |
7970 | ||
c0f3af97 L |
7971 | if (!vex_3_sources) |
7972 | { | |
7973 | dest = source + 1; | |
7974 | ||
43234a1e L |
7975 | /* RC/SAE operand could be between DEST and SRC. That happens |
7976 | when one operand is GPR and the other one is XMM/YMM/ZMM | |
7977 | register. */ | |
7978 | if (i.rounding && i.rounding->operand == (int) dest) | |
7979 | dest++; | |
7980 | ||
2426c15f | 7981 | if (i.tm.opcode_modifier.vexvvvv == VEXXDS) |
c0f3af97 | 7982 | { |
43234a1e | 7983 | /* For instructions with VexNDS, the register-only source |
c5d0745b | 7984 | operand must be a 32/64bit integer, XMM, YMM, ZMM, or mask |
dfd69174 | 7985 | register. It is encoded in VEX prefix. */ |
f12dc422 L |
7986 | |
7987 | i386_operand_type op; | |
7988 | unsigned int vvvv; | |
7989 | ||
c2ecccb3 L |
7990 | /* Swap two source operands if needed. */ |
7991 | if (i.tm.opcode_modifier.swapsources) | |
f12dc422 L |
7992 | { |
7993 | vvvv = source; | |
7994 | source = dest; | |
7995 | } | |
7996 | else | |
7997 | vvvv = dest; | |
7998 | ||
7999 | op = i.tm.operand_types[vvvv]; | |
c0f3af97 | 8000 | if ((dest + 1) >= i.operands |
bab6aec1 | 8001 | || ((op.bitfield.class != Reg |
dc821c5f | 8002 | || (!op.bitfield.dword && !op.bitfield.qword)) |
3528c362 | 8003 | && op.bitfield.class != RegSIMD |
43234a1e | 8004 | && !operand_type_equal (&op, ®mask))) |
c0f3af97 | 8005 | abort (); |
f12dc422 | 8006 | i.vex.register_specifier = i.op[vvvv].regs; |
c0f3af97 L |
8007 | dest++; |
8008 | } | |
8009 | } | |
29b0f896 AM |
8010 | |
8011 | i.rm.mode = 3; | |
dfd69174 JB |
8012 | /* One of the register operands will be encoded in the i.rm.reg |
8013 | field, the other in the combined i.rm.mode and i.rm.regmem | |
29b0f896 AM |
8014 | fields. If no form of this instruction supports a memory |
8015 | destination operand, then we assume the source operand may | |
8016 | sometimes be a memory operand and so we need to store the | |
8017 | destination in the i.rm.reg field. */ | |
dfd69174 | 8018 | if (!i.tm.opcode_modifier.regmem |
40fb9820 | 8019 | && operand_type_check (i.tm.operand_types[dest], anymem) == 0) |
29b0f896 AM |
8020 | { |
8021 | i.rm.reg = i.op[dest].regs->reg_num; | |
8022 | i.rm.regmem = i.op[source].regs->reg_num; | |
a5aeccd9 JB |
8023 | set_rex_vrex (i.op[dest].regs, REX_R, i.tm.opcode_modifier.sse2avx); |
8024 | set_rex_vrex (i.op[source].regs, REX_B, FALSE); | |
29b0f896 AM |
8025 | } |
8026 | else | |
8027 | { | |
8028 | i.rm.reg = i.op[source].regs->reg_num; | |
8029 | i.rm.regmem = i.op[dest].regs->reg_num; | |
a5aeccd9 JB |
8030 | set_rex_vrex (i.op[dest].regs, REX_B, i.tm.opcode_modifier.sse2avx); |
8031 | set_rex_vrex (i.op[source].regs, REX_R, FALSE); | |
29b0f896 | 8032 | } |
e0c7f900 | 8033 | if (flag_code != CODE_64BIT && (i.rex & REX_R)) |
c4a530c5 | 8034 | { |
4a5c67ed | 8035 | if (i.types[!i.tm.opcode_modifier.regmem].bitfield.class != RegCR) |
c4a530c5 | 8036 | abort (); |
e0c7f900 | 8037 | i.rex &= ~REX_R; |
c4a530c5 JB |
8038 | add_prefix (LOCK_PREFIX_OPCODE); |
8039 | } | |
29b0f896 AM |
8040 | } |
8041 | else | |
8042 | { /* If it's not 2 reg operands... */ | |
c0f3af97 L |
8043 | unsigned int mem; |
8044 | ||
29b0f896 AM |
8045 | if (i.mem_operands) |
8046 | { | |
8047 | unsigned int fake_zero_displacement = 0; | |
99018f42 | 8048 | unsigned int op; |
4eed87de | 8049 | |
7ab9ffdd | 8050 | for (op = 0; op < i.operands; op++) |
8dc0818e | 8051 | if (i.flags[op] & Operand_Mem) |
7ab9ffdd | 8052 | break; |
7ab9ffdd | 8053 | gas_assert (op < i.operands); |
29b0f896 | 8054 | |
63112cd6 | 8055 | if (i.tm.opcode_modifier.sib) |
6c30d220 | 8056 | { |
260cd341 LC |
8057 | /* The index register of VSIB shouldn't be RegIZ. */ |
8058 | if (i.tm.opcode_modifier.sib != SIBMEM | |
8059 | && i.index_reg->reg_num == RegIZ) | |
6c30d220 L |
8060 | abort (); |
8061 | ||
8062 | i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING; | |
8063 | if (!i.base_reg) | |
8064 | { | |
8065 | i.sib.base = NO_BASE_REGISTER; | |
8066 | i.sib.scale = i.log2_scale_factor; | |
8067 | i.types[op].bitfield.disp8 = 0; | |
8068 | i.types[op].bitfield.disp16 = 0; | |
8069 | i.types[op].bitfield.disp64 = 0; | |
43083a50 | 8070 | if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX]) |
6c30d220 L |
8071 | { |
8072 | /* Must be 32 bit */ | |
8073 | i.types[op].bitfield.disp32 = 1; | |
8074 | i.types[op].bitfield.disp32s = 0; | |
8075 | } | |
8076 | else | |
8077 | { | |
8078 | i.types[op].bitfield.disp32 = 0; | |
8079 | i.types[op].bitfield.disp32s = 1; | |
8080 | } | |
8081 | } | |
260cd341 LC |
8082 | |
8083 | /* Since the mandatory SIB always has index register, so | |
8084 | the code logic remains unchanged. The non-mandatory SIB | |
8085 | without index register is allowed and will be handled | |
8086 | later. */ | |
8087 | if (i.index_reg) | |
8088 | { | |
8089 | if (i.index_reg->reg_num == RegIZ) | |
8090 | i.sib.index = NO_INDEX_REGISTER; | |
8091 | else | |
8092 | i.sib.index = i.index_reg->reg_num; | |
8093 | set_rex_vrex (i.index_reg, REX_X, FALSE); | |
8094 | } | |
6c30d220 L |
8095 | } |
8096 | ||
29b0f896 AM |
8097 | default_seg = &ds; |
8098 | ||
8099 | if (i.base_reg == 0) | |
8100 | { | |
8101 | i.rm.mode = 0; | |
8102 | if (!i.disp_operands) | |
9bb129e8 | 8103 | fake_zero_displacement = 1; |
29b0f896 AM |
8104 | if (i.index_reg == 0) |
8105 | { | |
73053c1f JB |
8106 | i386_operand_type newdisp; |
8107 | ||
260cd341 LC |
8108 | /* Both check for VSIB and mandatory non-vector SIB. */ |
8109 | gas_assert (!i.tm.opcode_modifier.sib | |
8110 | || i.tm.opcode_modifier.sib == SIBMEM); | |
29b0f896 | 8111 | /* Operand is just <disp> */ |
20f0a1fc | 8112 | if (flag_code == CODE_64BIT) |
29b0f896 AM |
8113 | { |
8114 | /* 64bit mode overwrites the 32bit absolute | |
8115 | addressing by RIP relative addressing and | |
8116 | absolute addressing is encoded by one of the | |
8117 | redundant SIB forms. */ | |
8118 | i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING; | |
8119 | i.sib.base = NO_BASE_REGISTER; | |
8120 | i.sib.index = NO_INDEX_REGISTER; | |
73053c1f | 8121 | newdisp = (!i.prefix[ADDR_PREFIX] ? disp32s : disp32); |
20f0a1fc | 8122 | } |
fc225355 L |
8123 | else if ((flag_code == CODE_16BIT) |
8124 | ^ (i.prefix[ADDR_PREFIX] != 0)) | |
20f0a1fc NC |
8125 | { |
8126 | i.rm.regmem = NO_BASE_REGISTER_16; | |
73053c1f | 8127 | newdisp = disp16; |
20f0a1fc NC |
8128 | } |
8129 | else | |
8130 | { | |
8131 | i.rm.regmem = NO_BASE_REGISTER; | |
73053c1f | 8132 | newdisp = disp32; |
29b0f896 | 8133 | } |
73053c1f JB |
8134 | i.types[op] = operand_type_and_not (i.types[op], anydisp); |
8135 | i.types[op] = operand_type_or (i.types[op], newdisp); | |
29b0f896 | 8136 | } |
63112cd6 | 8137 | else if (!i.tm.opcode_modifier.sib) |
29b0f896 | 8138 | { |
6c30d220 | 8139 | /* !i.base_reg && i.index_reg */ |
e968fc9b | 8140 | if (i.index_reg->reg_num == RegIZ) |
db51cc60 L |
8141 | i.sib.index = NO_INDEX_REGISTER; |
8142 | else | |
8143 | i.sib.index = i.index_reg->reg_num; | |
29b0f896 AM |
8144 | i.sib.base = NO_BASE_REGISTER; |
8145 | i.sib.scale = i.log2_scale_factor; | |
8146 | i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING; | |
40fb9820 L |
8147 | i.types[op].bitfield.disp8 = 0; |
8148 | i.types[op].bitfield.disp16 = 0; | |
8149 | i.types[op].bitfield.disp64 = 0; | |
43083a50 | 8150 | if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX]) |
40fb9820 L |
8151 | { |
8152 | /* Must be 32 bit */ | |
8153 | i.types[op].bitfield.disp32 = 1; | |
8154 | i.types[op].bitfield.disp32s = 0; | |
8155 | } | |
29b0f896 | 8156 | else |
40fb9820 L |
8157 | { |
8158 | i.types[op].bitfield.disp32 = 0; | |
8159 | i.types[op].bitfield.disp32s = 1; | |
8160 | } | |
29b0f896 | 8161 | if ((i.index_reg->reg_flags & RegRex) != 0) |
161a04f6 | 8162 | i.rex |= REX_X; |
29b0f896 AM |
8163 | } |
8164 | } | |
8165 | /* RIP addressing for 64bit mode. */ | |
e968fc9b | 8166 | else if (i.base_reg->reg_num == RegIP) |
29b0f896 | 8167 | { |
63112cd6 | 8168 | gas_assert (!i.tm.opcode_modifier.sib); |
29b0f896 | 8169 | i.rm.regmem = NO_BASE_REGISTER; |
40fb9820 L |
8170 | i.types[op].bitfield.disp8 = 0; |
8171 | i.types[op].bitfield.disp16 = 0; | |
8172 | i.types[op].bitfield.disp32 = 0; | |
8173 | i.types[op].bitfield.disp32s = 1; | |
8174 | i.types[op].bitfield.disp64 = 0; | |
71903a11 | 8175 | i.flags[op] |= Operand_PCrel; |
20f0a1fc NC |
8176 | if (! i.disp_operands) |
8177 | fake_zero_displacement = 1; | |
29b0f896 | 8178 | } |
dc821c5f | 8179 | else if (i.base_reg->reg_type.bitfield.word) |
29b0f896 | 8180 | { |
63112cd6 | 8181 | gas_assert (!i.tm.opcode_modifier.sib); |
29b0f896 AM |
8182 | switch (i.base_reg->reg_num) |
8183 | { | |
8184 | case 3: /* (%bx) */ | |
8185 | if (i.index_reg == 0) | |
8186 | i.rm.regmem = 7; | |
8187 | else /* (%bx,%si) -> 0, or (%bx,%di) -> 1 */ | |
8188 | i.rm.regmem = i.index_reg->reg_num - 6; | |
8189 | break; | |
8190 | case 5: /* (%bp) */ | |
8191 | default_seg = &ss; | |
8192 | if (i.index_reg == 0) | |
8193 | { | |
8194 | i.rm.regmem = 6; | |
40fb9820 | 8195 | if (operand_type_check (i.types[op], disp) == 0) |
29b0f896 AM |
8196 | { |
8197 | /* fake (%bp) into 0(%bp) */ | |
41eb8e88 | 8198 | if (i.disp_encoding == disp_encoding_16bit) |
1a02d6b0 L |
8199 | i.types[op].bitfield.disp16 = 1; |
8200 | else | |
8201 | i.types[op].bitfield.disp8 = 1; | |
252b5132 | 8202 | fake_zero_displacement = 1; |
29b0f896 AM |
8203 | } |
8204 | } | |
8205 | else /* (%bp,%si) -> 2, or (%bp,%di) -> 3 */ | |
8206 | i.rm.regmem = i.index_reg->reg_num - 6 + 2; | |
8207 | break; | |
8208 | default: /* (%si) -> 4 or (%di) -> 5 */ | |
8209 | i.rm.regmem = i.base_reg->reg_num - 6 + 4; | |
8210 | } | |
41eb8e88 L |
8211 | if (!fake_zero_displacement |
8212 | && !i.disp_operands | |
8213 | && i.disp_encoding) | |
8214 | { | |
8215 | fake_zero_displacement = 1; | |
8216 | if (i.disp_encoding == disp_encoding_8bit) | |
8217 | i.types[op].bitfield.disp8 = 1; | |
8218 | else | |
8219 | i.types[op].bitfield.disp16 = 1; | |
8220 | } | |
29b0f896 AM |
8221 | i.rm.mode = mode_from_disp_size (i.types[op]); |
8222 | } | |
8223 | else /* i.base_reg and 32/64 bit mode */ | |
8224 | { | |
8225 | if (flag_code == CODE_64BIT | |
40fb9820 L |
8226 | && operand_type_check (i.types[op], disp)) |
8227 | { | |
73053c1f JB |
8228 | i.types[op].bitfield.disp16 = 0; |
8229 | i.types[op].bitfield.disp64 = 0; | |
40fb9820 | 8230 | if (i.prefix[ADDR_PREFIX] == 0) |
73053c1f JB |
8231 | { |
8232 | i.types[op].bitfield.disp32 = 0; | |
8233 | i.types[op].bitfield.disp32s = 1; | |
8234 | } | |
40fb9820 | 8235 | else |
73053c1f JB |
8236 | { |
8237 | i.types[op].bitfield.disp32 = 1; | |
8238 | i.types[op].bitfield.disp32s = 0; | |
8239 | } | |
40fb9820 | 8240 | } |
20f0a1fc | 8241 | |
63112cd6 | 8242 | if (!i.tm.opcode_modifier.sib) |
6c30d220 | 8243 | i.rm.regmem = i.base_reg->reg_num; |
29b0f896 | 8244 | if ((i.base_reg->reg_flags & RegRex) != 0) |
161a04f6 | 8245 | i.rex |= REX_B; |
29b0f896 AM |
8246 | i.sib.base = i.base_reg->reg_num; |
8247 | /* x86-64 ignores REX prefix bit here to avoid decoder | |
8248 | complications. */ | |
848930b2 JB |
8249 | if (!(i.base_reg->reg_flags & RegRex) |
8250 | && (i.base_reg->reg_num == EBP_REG_NUM | |
8251 | || i.base_reg->reg_num == ESP_REG_NUM)) | |
29b0f896 | 8252 | default_seg = &ss; |
848930b2 | 8253 | if (i.base_reg->reg_num == 5 && i.disp_operands == 0) |
29b0f896 | 8254 | { |
848930b2 | 8255 | fake_zero_displacement = 1; |
1a02d6b0 L |
8256 | if (i.disp_encoding == disp_encoding_32bit) |
8257 | i.types[op].bitfield.disp32 = 1; | |
8258 | else | |
8259 | i.types[op].bitfield.disp8 = 1; | |
29b0f896 AM |
8260 | } |
8261 | i.sib.scale = i.log2_scale_factor; | |
8262 | if (i.index_reg == 0) | |
8263 | { | |
260cd341 LC |
8264 | /* Only check for VSIB. */ |
8265 | gas_assert (i.tm.opcode_modifier.sib != VECSIB128 | |
8266 | && i.tm.opcode_modifier.sib != VECSIB256 | |
8267 | && i.tm.opcode_modifier.sib != VECSIB512); | |
8268 | ||
29b0f896 AM |
8269 | /* <disp>(%esp) becomes two byte modrm with no index |
8270 | register. We've already stored the code for esp | |
8271 | in i.rm.regmem ie. ESCAPE_TO_TWO_BYTE_ADDRESSING. | |
8272 | Any base register besides %esp will not use the | |
8273 | extra modrm byte. */ | |
8274 | i.sib.index = NO_INDEX_REGISTER; | |
29b0f896 | 8275 | } |
63112cd6 | 8276 | else if (!i.tm.opcode_modifier.sib) |
29b0f896 | 8277 | { |
e968fc9b | 8278 | if (i.index_reg->reg_num == RegIZ) |
db51cc60 L |
8279 | i.sib.index = NO_INDEX_REGISTER; |
8280 | else | |
8281 | i.sib.index = i.index_reg->reg_num; | |
29b0f896 AM |
8282 | i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING; |
8283 | if ((i.index_reg->reg_flags & RegRex) != 0) | |
161a04f6 | 8284 | i.rex |= REX_X; |
29b0f896 | 8285 | } |
67a4f2b7 AO |
8286 | |
8287 | if (i.disp_operands | |
8288 | && (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL | |
8289 | || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL)) | |
8290 | i.rm.mode = 0; | |
8291 | else | |
a501d77e L |
8292 | { |
8293 | if (!fake_zero_displacement | |
8294 | && !i.disp_operands | |
8295 | && i.disp_encoding) | |
8296 | { | |
8297 | fake_zero_displacement = 1; | |
8298 | if (i.disp_encoding == disp_encoding_8bit) | |
8299 | i.types[op].bitfield.disp8 = 1; | |
8300 | else | |
8301 | i.types[op].bitfield.disp32 = 1; | |
8302 | } | |
8303 | i.rm.mode = mode_from_disp_size (i.types[op]); | |
8304 | } | |
29b0f896 | 8305 | } |
252b5132 | 8306 | |
29b0f896 AM |
8307 | if (fake_zero_displacement) |
8308 | { | |
8309 | /* Fakes a zero displacement assuming that i.types[op] | |
8310 | holds the correct displacement size. */ | |
8311 | expressionS *exp; | |
8312 | ||
9c2799c2 | 8313 | gas_assert (i.op[op].disps == 0); |
29b0f896 AM |
8314 | exp = &disp_expressions[i.disp_operands++]; |
8315 | i.op[op].disps = exp; | |
8316 | exp->X_op = O_constant; | |
8317 | exp->X_add_number = 0; | |
8318 | exp->X_add_symbol = (symbolS *) 0; | |
8319 | exp->X_op_symbol = (symbolS *) 0; | |
8320 | } | |
c0f3af97 L |
8321 | |
8322 | mem = op; | |
29b0f896 | 8323 | } |
c0f3af97 L |
8324 | else |
8325 | mem = ~0; | |
252b5132 | 8326 | |
8c43a48b | 8327 | if (i.tm.opcode_modifier.vexsources == XOP2SOURCES) |
5dd85c99 SP |
8328 | { |
8329 | if (operand_type_check (i.types[0], imm)) | |
8330 | i.vex.register_specifier = NULL; | |
8331 | else | |
8332 | { | |
8333 | /* VEX.vvvv encodes one of the sources when the first | |
8334 | operand is not an immediate. */ | |
1ef99a7b | 8335 | if (i.tm.opcode_modifier.vexw == VEXW0) |
5dd85c99 SP |
8336 | i.vex.register_specifier = i.op[0].regs; |
8337 | else | |
8338 | i.vex.register_specifier = i.op[1].regs; | |
8339 | } | |
8340 | ||
8341 | /* Destination is a XMM register encoded in the ModRM.reg | |
8342 | and VEX.R bit. */ | |
8343 | i.rm.reg = i.op[2].regs->reg_num; | |
8344 | if ((i.op[2].regs->reg_flags & RegRex) != 0) | |
8345 | i.rex |= REX_R; | |
8346 | ||
8347 | /* ModRM.rm and VEX.B encodes the other source. */ | |
8348 | if (!i.mem_operands) | |
8349 | { | |
8350 | i.rm.mode = 3; | |
8351 | ||
1ef99a7b | 8352 | if (i.tm.opcode_modifier.vexw == VEXW0) |
5dd85c99 SP |
8353 | i.rm.regmem = i.op[1].regs->reg_num; |
8354 | else | |
8355 | i.rm.regmem = i.op[0].regs->reg_num; | |
8356 | ||
8357 | if ((i.op[1].regs->reg_flags & RegRex) != 0) | |
8358 | i.rex |= REX_B; | |
8359 | } | |
8360 | } | |
2426c15f | 8361 | else if (i.tm.opcode_modifier.vexvvvv == VEXLWP) |
f88c9eb0 SP |
8362 | { |
8363 | i.vex.register_specifier = i.op[2].regs; | |
8364 | if (!i.mem_operands) | |
8365 | { | |
8366 | i.rm.mode = 3; | |
8367 | i.rm.regmem = i.op[1].regs->reg_num; | |
8368 | if ((i.op[1].regs->reg_flags & RegRex) != 0) | |
8369 | i.rex |= REX_B; | |
8370 | } | |
8371 | } | |
29b0f896 AM |
8372 | /* Fill in i.rm.reg or i.rm.regmem field with register operand |
8373 | (if any) based on i.tm.extension_opcode. Again, we must be | |
8374 | careful to make sure that segment/control/debug/test/MMX | |
8375 | registers are coded into the i.rm.reg field. */ | |
f88c9eb0 | 8376 | else if (i.reg_operands) |
29b0f896 | 8377 | { |
99018f42 | 8378 | unsigned int op; |
7ab9ffdd L |
8379 | unsigned int vex_reg = ~0; |
8380 | ||
8381 | for (op = 0; op < i.operands; op++) | |
921eafea L |
8382 | if (i.types[op].bitfield.class == Reg |
8383 | || i.types[op].bitfield.class == RegBND | |
8384 | || i.types[op].bitfield.class == RegMask | |
8385 | || i.types[op].bitfield.class == SReg | |
8386 | || i.types[op].bitfield.class == RegCR | |
8387 | || i.types[op].bitfield.class == RegDR | |
8388 | || i.types[op].bitfield.class == RegTR | |
8389 | || i.types[op].bitfield.class == RegSIMD | |
8390 | || i.types[op].bitfield.class == RegMMX) | |
8391 | break; | |
c0209578 | 8392 | |
7ab9ffdd L |
8393 | if (vex_3_sources) |
8394 | op = dest; | |
2426c15f | 8395 | else if (i.tm.opcode_modifier.vexvvvv == VEXXDS) |
7ab9ffdd L |
8396 | { |
8397 | /* For instructions with VexNDS, the register-only | |
8398 | source operand is encoded in VEX prefix. */ | |
8399 | gas_assert (mem != (unsigned int) ~0); | |
c0f3af97 | 8400 | |
7ab9ffdd | 8401 | if (op > mem) |
c0f3af97 | 8402 | { |
7ab9ffdd L |
8403 | vex_reg = op++; |
8404 | gas_assert (op < i.operands); | |
c0f3af97 L |
8405 | } |
8406 | else | |
c0f3af97 | 8407 | { |
f12dc422 L |
8408 | /* Check register-only source operand when two source |
8409 | operands are swapped. */ | |
8410 | if (!i.tm.operand_types[op].bitfield.baseindex | |
8411 | && i.tm.operand_types[op + 1].bitfield.baseindex) | |
8412 | { | |
8413 | vex_reg = op; | |
8414 | op += 2; | |
8415 | gas_assert (mem == (vex_reg + 1) | |
8416 | && op < i.operands); | |
8417 | } | |
8418 | else | |
8419 | { | |
8420 | vex_reg = op + 1; | |
8421 | gas_assert (vex_reg < i.operands); | |
8422 | } | |
c0f3af97 | 8423 | } |
7ab9ffdd | 8424 | } |
2426c15f | 8425 | else if (i.tm.opcode_modifier.vexvvvv == VEXNDD) |
7ab9ffdd | 8426 | { |
f12dc422 | 8427 | /* For instructions with VexNDD, the register destination |
7ab9ffdd | 8428 | is encoded in VEX prefix. */ |
f12dc422 L |
8429 | if (i.mem_operands == 0) |
8430 | { | |
8431 | /* There is no memory operand. */ | |
8432 | gas_assert ((op + 2) == i.operands); | |
8433 | vex_reg = op + 1; | |
8434 | } | |
8435 | else | |
8d63c93e | 8436 | { |
ed438a93 JB |
8437 | /* There are only 2 non-immediate operands. */ |
8438 | gas_assert (op < i.imm_operands + 2 | |
8439 | && i.operands == i.imm_operands + 2); | |
8440 | vex_reg = i.imm_operands + 1; | |
f12dc422 | 8441 | } |
7ab9ffdd L |
8442 | } |
8443 | else | |
8444 | gas_assert (op < i.operands); | |
99018f42 | 8445 | |
7ab9ffdd L |
8446 | if (vex_reg != (unsigned int) ~0) |
8447 | { | |
f12dc422 | 8448 | i386_operand_type *type = &i.tm.operand_types[vex_reg]; |
7ab9ffdd | 8449 | |
bab6aec1 | 8450 | if ((type->bitfield.class != Reg |
dc821c5f | 8451 | || (!type->bitfield.dword && !type->bitfield.qword)) |
3528c362 | 8452 | && type->bitfield.class != RegSIMD |
43234a1e | 8453 | && !operand_type_equal (type, ®mask)) |
7ab9ffdd | 8454 | abort (); |
f88c9eb0 | 8455 | |
7ab9ffdd L |
8456 | i.vex.register_specifier = i.op[vex_reg].regs; |
8457 | } | |
8458 | ||
1b9f0c97 L |
8459 | /* Don't set OP operand twice. */ |
8460 | if (vex_reg != op) | |
7ab9ffdd | 8461 | { |
1b9f0c97 L |
8462 | /* If there is an extension opcode to put here, the |
8463 | register number must be put into the regmem field. */ | |
8464 | if (i.tm.extension_opcode != None) | |
8465 | { | |
8466 | i.rm.regmem = i.op[op].regs->reg_num; | |
a5aeccd9 JB |
8467 | set_rex_vrex (i.op[op].regs, REX_B, |
8468 | i.tm.opcode_modifier.sse2avx); | |
1b9f0c97 L |
8469 | } |
8470 | else | |
8471 | { | |
8472 | i.rm.reg = i.op[op].regs->reg_num; | |
a5aeccd9 JB |
8473 | set_rex_vrex (i.op[op].regs, REX_R, |
8474 | i.tm.opcode_modifier.sse2avx); | |
1b9f0c97 | 8475 | } |
7ab9ffdd | 8476 | } |
252b5132 | 8477 | |
29b0f896 AM |
8478 | /* Now, if no memory operand has set i.rm.mode = 0, 1, 2 we |
8479 | must set it to 3 to indicate this is a register operand | |
8480 | in the regmem field. */ | |
8481 | if (!i.mem_operands) | |
8482 | i.rm.mode = 3; | |
8483 | } | |
252b5132 | 8484 | |
29b0f896 | 8485 | /* Fill in i.rm.reg field with extension opcode (if any). */ |
c1e679ec | 8486 | if (i.tm.extension_opcode != None) |
29b0f896 AM |
8487 | i.rm.reg = i.tm.extension_opcode; |
8488 | } | |
8489 | return default_seg; | |
8490 | } | |
252b5132 | 8491 | |
48ef937e JB |
8492 | static INLINE void |
8493 | frag_opcode_byte (unsigned char byte) | |
8494 | { | |
8495 | if (now_seg != absolute_section) | |
8496 | FRAG_APPEND_1_CHAR (byte); | |
8497 | else | |
8498 | ++abs_section_offset; | |
8499 | } | |
8500 | ||
376cd056 JB |
8501 | static unsigned int |
8502 | flip_code16 (unsigned int code16) | |
8503 | { | |
8504 | gas_assert (i.tm.operands == 1); | |
8505 | ||
8506 | return !(i.prefix[REX_PREFIX] & REX_W) | |
8507 | && (code16 ? i.tm.operand_types[0].bitfield.disp32 | |
8508 | || i.tm.operand_types[0].bitfield.disp32s | |
8509 | : i.tm.operand_types[0].bitfield.disp16) | |
8510 | ? CODE16 : 0; | |
8511 | } | |
8512 | ||
29b0f896 | 8513 | static void |
e3bb37b5 | 8514 | output_branch (void) |
29b0f896 AM |
8515 | { |
8516 | char *p; | |
f8a5c266 | 8517 | int size; |
29b0f896 AM |
8518 | int code16; |
8519 | int prefix; | |
8520 | relax_substateT subtype; | |
8521 | symbolS *sym; | |
8522 | offsetT off; | |
8523 | ||
48ef937e JB |
8524 | if (now_seg == absolute_section) |
8525 | { | |
8526 | as_bad (_("relaxable branches not supported in absolute section")); | |
8527 | return; | |
8528 | } | |
8529 | ||
f8a5c266 | 8530 | code16 = flag_code == CODE_16BIT ? CODE16 : 0; |
a501d77e | 8531 | size = i.disp_encoding == disp_encoding_32bit ? BIG : SMALL; |
29b0f896 AM |
8532 | |
8533 | prefix = 0; | |
8534 | if (i.prefix[DATA_PREFIX] != 0) | |
252b5132 | 8535 | { |
29b0f896 AM |
8536 | prefix = 1; |
8537 | i.prefixes -= 1; | |
376cd056 | 8538 | code16 ^= flip_code16(code16); |
252b5132 | 8539 | } |
29b0f896 AM |
8540 | /* Pentium4 branch hints. */ |
8541 | if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */ | |
8542 | || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */) | |
2f66722d | 8543 | { |
29b0f896 AM |
8544 | prefix++; |
8545 | i.prefixes--; | |
8546 | } | |
8547 | if (i.prefix[REX_PREFIX] != 0) | |
8548 | { | |
8549 | prefix++; | |
8550 | i.prefixes--; | |
2f66722d AM |
8551 | } |
8552 | ||
7e8b059b L |
8553 | /* BND prefixed jump. */ |
8554 | if (i.prefix[BND_PREFIX] != 0) | |
8555 | { | |
6cb0a70e JB |
8556 | prefix++; |
8557 | i.prefixes--; | |
7e8b059b L |
8558 | } |
8559 | ||
f2810fe0 JB |
8560 | if (i.prefixes != 0) |
8561 | as_warn (_("skipping prefixes on `%s'"), i.tm.name); | |
29b0f896 AM |
8562 | |
8563 | /* It's always a symbol; End frag & setup for relax. | |
8564 | Make sure there is enough room in this frag for the largest | |
8565 | instruction we may generate in md_convert_frag. This is 2 | |
8566 | bytes for the opcode and room for the prefix and largest | |
8567 | displacement. */ | |
8568 | frag_grow (prefix + 2 + 4); | |
8569 | /* Prefix and 1 opcode byte go in fr_fix. */ | |
8570 | p = frag_more (prefix + 1); | |
8571 | if (i.prefix[DATA_PREFIX] != 0) | |
8572 | *p++ = DATA_PREFIX_OPCODE; | |
8573 | if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE | |
8574 | || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE) | |
8575 | *p++ = i.prefix[SEG_PREFIX]; | |
6cb0a70e JB |
8576 | if (i.prefix[BND_PREFIX] != 0) |
8577 | *p++ = BND_PREFIX_OPCODE; | |
29b0f896 AM |
8578 | if (i.prefix[REX_PREFIX] != 0) |
8579 | *p++ = i.prefix[REX_PREFIX]; | |
8580 | *p = i.tm.base_opcode; | |
8581 | ||
8582 | if ((unsigned char) *p == JUMP_PC_RELATIVE) | |
f8a5c266 | 8583 | subtype = ENCODE_RELAX_STATE (UNCOND_JUMP, size); |
40fb9820 | 8584 | else if (cpu_arch_flags.bitfield.cpui386) |
f8a5c266 | 8585 | subtype = ENCODE_RELAX_STATE (COND_JUMP, size); |
29b0f896 | 8586 | else |
f8a5c266 | 8587 | subtype = ENCODE_RELAX_STATE (COND_JUMP86, size); |
29b0f896 | 8588 | subtype |= code16; |
3e73aa7c | 8589 | |
29b0f896 AM |
8590 | sym = i.op[0].disps->X_add_symbol; |
8591 | off = i.op[0].disps->X_add_number; | |
3e73aa7c | 8592 | |
29b0f896 AM |
8593 | if (i.op[0].disps->X_op != O_constant |
8594 | && i.op[0].disps->X_op != O_symbol) | |
3e73aa7c | 8595 | { |
29b0f896 AM |
8596 | /* Handle complex expressions. */ |
8597 | sym = make_expr_symbol (i.op[0].disps); | |
8598 | off = 0; | |
8599 | } | |
3e73aa7c | 8600 | |
29b0f896 AM |
8601 | /* 1 possible extra opcode + 4 byte displacement go in var part. |
8602 | Pass reloc in fr_var. */ | |
d258b828 | 8603 | frag_var (rs_machine_dependent, 5, i.reloc[0], subtype, sym, off, p); |
29b0f896 | 8604 | } |
3e73aa7c | 8605 | |
bd7ab16b L |
8606 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
8607 | /* Return TRUE iff PLT32 relocation should be used for branching to | |
8608 | symbol S. */ | |
8609 | ||
8610 | static bfd_boolean | |
8611 | need_plt32_p (symbolS *s) | |
8612 | { | |
8613 | /* PLT32 relocation is ELF only. */ | |
8614 | if (!IS_ELF) | |
8615 | return FALSE; | |
8616 | ||
a5def729 RO |
8617 | #ifdef TE_SOLARIS |
8618 | /* Don't emit PLT32 relocation on Solaris: neither native linker nor | |
8619 | krtld support it. */ | |
8620 | return FALSE; | |
8621 | #endif | |
8622 | ||
bd7ab16b L |
8623 | /* Since there is no need to prepare for PLT branch on x86-64, we |
8624 | can generate R_X86_64_PLT32, instead of R_X86_64_PC32, which can | |
8625 | be used as a marker for 32-bit PC-relative branches. */ | |
8626 | if (!object_64bit) | |
8627 | return FALSE; | |
8628 | ||
8629 | /* Weak or undefined symbol need PLT32 relocation. */ | |
8630 | if (S_IS_WEAK (s) || !S_IS_DEFINED (s)) | |
8631 | return TRUE; | |
8632 | ||
8633 | /* Non-global symbol doesn't need PLT32 relocation. */ | |
8634 | if (! S_IS_EXTERNAL (s)) | |
8635 | return FALSE; | |
8636 | ||
8637 | /* Other global symbols need PLT32 relocation. NB: Symbol with | |
8638 | non-default visibilities are treated as normal global symbol | |
8639 | so that PLT32 relocation can be used as a marker for 32-bit | |
8640 | PC-relative branches. It is useful for linker relaxation. */ | |
8641 | return TRUE; | |
8642 | } | |
8643 | #endif | |
8644 | ||
29b0f896 | 8645 | static void |
e3bb37b5 | 8646 | output_jump (void) |
29b0f896 AM |
8647 | { |
8648 | char *p; | |
8649 | int size; | |
3e02c1cc | 8650 | fixS *fixP; |
bd7ab16b | 8651 | bfd_reloc_code_real_type jump_reloc = i.reloc[0]; |
29b0f896 | 8652 | |
0cfa3eb3 | 8653 | if (i.tm.opcode_modifier.jump == JUMP_BYTE) |
29b0f896 AM |
8654 | { |
8655 | /* This is a loop or jecxz type instruction. */ | |
8656 | size = 1; | |
8657 | if (i.prefix[ADDR_PREFIX] != 0) | |
8658 | { | |
48ef937e | 8659 | frag_opcode_byte (ADDR_PREFIX_OPCODE); |
29b0f896 AM |
8660 | i.prefixes -= 1; |
8661 | } | |
8662 | /* Pentium4 branch hints. */ | |
8663 | if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */ | |
8664 | || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */) | |
8665 | { | |
48ef937e | 8666 | frag_opcode_byte (i.prefix[SEG_PREFIX]); |
29b0f896 | 8667 | i.prefixes--; |
3e73aa7c JH |
8668 | } |
8669 | } | |
29b0f896 AM |
8670 | else |
8671 | { | |
8672 | int code16; | |
3e73aa7c | 8673 | |
29b0f896 AM |
8674 | code16 = 0; |
8675 | if (flag_code == CODE_16BIT) | |
8676 | code16 = CODE16; | |
3e73aa7c | 8677 | |
29b0f896 AM |
8678 | if (i.prefix[DATA_PREFIX] != 0) |
8679 | { | |
48ef937e | 8680 | frag_opcode_byte (DATA_PREFIX_OPCODE); |
29b0f896 | 8681 | i.prefixes -= 1; |
376cd056 | 8682 | code16 ^= flip_code16(code16); |
29b0f896 | 8683 | } |
252b5132 | 8684 | |
29b0f896 AM |
8685 | size = 4; |
8686 | if (code16) | |
8687 | size = 2; | |
8688 | } | |
9fcc94b6 | 8689 | |
6cb0a70e JB |
8690 | /* BND prefixed jump. */ |
8691 | if (i.prefix[BND_PREFIX] != 0) | |
29b0f896 | 8692 | { |
48ef937e | 8693 | frag_opcode_byte (i.prefix[BND_PREFIX]); |
29b0f896 AM |
8694 | i.prefixes -= 1; |
8695 | } | |
252b5132 | 8696 | |
6cb0a70e | 8697 | if (i.prefix[REX_PREFIX] != 0) |
7e8b059b | 8698 | { |
48ef937e | 8699 | frag_opcode_byte (i.prefix[REX_PREFIX]); |
7e8b059b L |
8700 | i.prefixes -= 1; |
8701 | } | |
8702 | ||
f2810fe0 JB |
8703 | if (i.prefixes != 0) |
8704 | as_warn (_("skipping prefixes on `%s'"), i.tm.name); | |
e0890092 | 8705 | |
48ef937e JB |
8706 | if (now_seg == absolute_section) |
8707 | { | |
8708 | abs_section_offset += i.tm.opcode_length + size; | |
8709 | return; | |
8710 | } | |
8711 | ||
42164a71 L |
8712 | p = frag_more (i.tm.opcode_length + size); |
8713 | switch (i.tm.opcode_length) | |
8714 | { | |
8715 | case 2: | |
8716 | *p++ = i.tm.base_opcode >> 8; | |
1a0670f3 | 8717 | /* Fall through. */ |
42164a71 L |
8718 | case 1: |
8719 | *p++ = i.tm.base_opcode; | |
8720 | break; | |
8721 | default: | |
8722 | abort (); | |
8723 | } | |
e0890092 | 8724 | |
bd7ab16b L |
8725 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
8726 | if (size == 4 | |
8727 | && jump_reloc == NO_RELOC | |
8728 | && need_plt32_p (i.op[0].disps->X_add_symbol)) | |
8729 | jump_reloc = BFD_RELOC_X86_64_PLT32; | |
8730 | #endif | |
8731 | ||
8732 | jump_reloc = reloc (size, 1, 1, jump_reloc); | |
8733 | ||
3e02c1cc | 8734 | fixP = fix_new_exp (frag_now, p - frag_now->fr_literal, size, |
bd7ab16b | 8735 | i.op[0].disps, 1, jump_reloc); |
3e02c1cc AM |
8736 | |
8737 | /* All jumps handled here are signed, but don't use a signed limit | |
8738 | check for 32 and 16 bit jumps as we want to allow wrap around at | |
8739 | 4G and 64k respectively. */ | |
8740 | if (size == 1) | |
8741 | fixP->fx_signed = 1; | |
29b0f896 | 8742 | } |
e0890092 | 8743 | |
29b0f896 | 8744 | static void |
e3bb37b5 | 8745 | output_interseg_jump (void) |
29b0f896 AM |
8746 | { |
8747 | char *p; | |
8748 | int size; | |
8749 | int prefix; | |
8750 | int code16; | |
252b5132 | 8751 | |
29b0f896 AM |
8752 | code16 = 0; |
8753 | if (flag_code == CODE_16BIT) | |
8754 | code16 = CODE16; | |
a217f122 | 8755 | |
29b0f896 AM |
8756 | prefix = 0; |
8757 | if (i.prefix[DATA_PREFIX] != 0) | |
8758 | { | |
8759 | prefix = 1; | |
8760 | i.prefixes -= 1; | |
8761 | code16 ^= CODE16; | |
8762 | } | |
6cb0a70e JB |
8763 | |
8764 | gas_assert (!i.prefix[REX_PREFIX]); | |
252b5132 | 8765 | |
29b0f896 AM |
8766 | size = 4; |
8767 | if (code16) | |
8768 | size = 2; | |
252b5132 | 8769 | |
f2810fe0 JB |
8770 | if (i.prefixes != 0) |
8771 | as_warn (_("skipping prefixes on `%s'"), i.tm.name); | |
252b5132 | 8772 | |
48ef937e JB |
8773 | if (now_seg == absolute_section) |
8774 | { | |
8775 | abs_section_offset += prefix + 1 + 2 + size; | |
8776 | return; | |
8777 | } | |
8778 | ||
29b0f896 AM |
8779 | /* 1 opcode; 2 segment; offset */ |
8780 | p = frag_more (prefix + 1 + 2 + size); | |
3e73aa7c | 8781 | |
29b0f896 AM |
8782 | if (i.prefix[DATA_PREFIX] != 0) |
8783 | *p++ = DATA_PREFIX_OPCODE; | |
252b5132 | 8784 | |
29b0f896 AM |
8785 | if (i.prefix[REX_PREFIX] != 0) |
8786 | *p++ = i.prefix[REX_PREFIX]; | |
252b5132 | 8787 | |
29b0f896 AM |
8788 | *p++ = i.tm.base_opcode; |
8789 | if (i.op[1].imms->X_op == O_constant) | |
8790 | { | |
8791 | offsetT n = i.op[1].imms->X_add_number; | |
252b5132 | 8792 | |
29b0f896 AM |
8793 | if (size == 2 |
8794 | && !fits_in_unsigned_word (n) | |
8795 | && !fits_in_signed_word (n)) | |
8796 | { | |
8797 | as_bad (_("16-bit jump out of range")); | |
8798 | return; | |
8799 | } | |
8800 | md_number_to_chars (p, n, size); | |
8801 | } | |
8802 | else | |
8803 | fix_new_exp (frag_now, p - frag_now->fr_literal, size, | |
d258b828 | 8804 | i.op[1].imms, 0, reloc (size, 0, 0, i.reloc[1])); |
6d96a594 C |
8805 | |
8806 | p += size; | |
8807 | if (i.op[0].imms->X_op == O_constant) | |
8808 | md_number_to_chars (p, (valueT) i.op[0].imms->X_add_number, 2); | |
8809 | else | |
8810 | fix_new_exp (frag_now, p - frag_now->fr_literal, 2, | |
8811 | i.op[0].imms, 0, reloc (2, 0, 0, i.reloc[0])); | |
29b0f896 | 8812 | } |
a217f122 | 8813 | |
b4a3a7b4 L |
8814 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
8815 | void | |
8816 | x86_cleanup (void) | |
8817 | { | |
8818 | char *p; | |
8819 | asection *seg = now_seg; | |
8820 | subsegT subseg = now_subseg; | |
8821 | asection *sec; | |
8822 | unsigned int alignment, align_size_1; | |
8823 | unsigned int isa_1_descsz, feature_2_descsz, descsz; | |
8824 | unsigned int isa_1_descsz_raw, feature_2_descsz_raw; | |
8825 | unsigned int padding; | |
8826 | ||
8827 | if (!IS_ELF || !x86_used_note) | |
8828 | return; | |
8829 | ||
b4a3a7b4 L |
8830 | x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X86; |
8831 | ||
8832 | /* The .note.gnu.property section layout: | |
8833 | ||
8834 | Field Length Contents | |
8835 | ---- ---- ---- | |
8836 | n_namsz 4 4 | |
8837 | n_descsz 4 The note descriptor size | |
8838 | n_type 4 NT_GNU_PROPERTY_TYPE_0 | |
8839 | n_name 4 "GNU" | |
8840 | n_desc n_descsz The program property array | |
8841 | .... .... .... | |
8842 | */ | |
8843 | ||
8844 | /* Create the .note.gnu.property section. */ | |
8845 | sec = subseg_new (NOTE_GNU_PROPERTY_SECTION_NAME, 0); | |
fd361982 | 8846 | bfd_set_section_flags (sec, |
b4a3a7b4 L |
8847 | (SEC_ALLOC |
8848 | | SEC_LOAD | |
8849 | | SEC_DATA | |
8850 | | SEC_HAS_CONTENTS | |
8851 | | SEC_READONLY)); | |
8852 | ||
8853 | if (get_elf_backend_data (stdoutput)->s->elfclass == ELFCLASS64) | |
8854 | { | |
8855 | align_size_1 = 7; | |
8856 | alignment = 3; | |
8857 | } | |
8858 | else | |
8859 | { | |
8860 | align_size_1 = 3; | |
8861 | alignment = 2; | |
8862 | } | |
8863 | ||
fd361982 | 8864 | bfd_set_section_alignment (sec, alignment); |
b4a3a7b4 L |
8865 | elf_section_type (sec) = SHT_NOTE; |
8866 | ||
8867 | /* GNU_PROPERTY_X86_ISA_1_USED: 4-byte type + 4-byte data size | |
8868 | + 4-byte data */ | |
8869 | isa_1_descsz_raw = 4 + 4 + 4; | |
8870 | /* Align GNU_PROPERTY_X86_ISA_1_USED. */ | |
8871 | isa_1_descsz = (isa_1_descsz_raw + align_size_1) & ~align_size_1; | |
8872 | ||
8873 | feature_2_descsz_raw = isa_1_descsz; | |
8874 | /* GNU_PROPERTY_X86_FEATURE_2_USED: 4-byte type + 4-byte data size | |
8875 | + 4-byte data */ | |
8876 | feature_2_descsz_raw += 4 + 4 + 4; | |
8877 | /* Align GNU_PROPERTY_X86_FEATURE_2_USED. */ | |
8878 | feature_2_descsz = ((feature_2_descsz_raw + align_size_1) | |
8879 | & ~align_size_1); | |
8880 | ||
8881 | descsz = feature_2_descsz; | |
8882 | /* Section size: n_namsz + n_descsz + n_type + n_name + n_descsz. */ | |
8883 | p = frag_more (4 + 4 + 4 + 4 + descsz); | |
8884 | ||
8885 | /* Write n_namsz. */ | |
8886 | md_number_to_chars (p, (valueT) 4, 4); | |
8887 | ||
8888 | /* Write n_descsz. */ | |
8889 | md_number_to_chars (p + 4, (valueT) descsz, 4); | |
8890 | ||
8891 | /* Write n_type. */ | |
8892 | md_number_to_chars (p + 4 * 2, (valueT) NT_GNU_PROPERTY_TYPE_0, 4); | |
8893 | ||
8894 | /* Write n_name. */ | |
8895 | memcpy (p + 4 * 3, "GNU", 4); | |
8896 | ||
8897 | /* Write 4-byte type. */ | |
8898 | md_number_to_chars (p + 4 * 4, | |
8899 | (valueT) GNU_PROPERTY_X86_ISA_1_USED, 4); | |
8900 | ||
8901 | /* Write 4-byte data size. */ | |
8902 | md_number_to_chars (p + 4 * 5, (valueT) 4, 4); | |
8903 | ||
8904 | /* Write 4-byte data. */ | |
8905 | md_number_to_chars (p + 4 * 6, (valueT) x86_isa_1_used, 4); | |
8906 | ||
8907 | /* Zero out paddings. */ | |
8908 | padding = isa_1_descsz - isa_1_descsz_raw; | |
8909 | if (padding) | |
8910 | memset (p + 4 * 7, 0, padding); | |
8911 | ||
8912 | /* Write 4-byte type. */ | |
8913 | md_number_to_chars (p + isa_1_descsz + 4 * 4, | |
8914 | (valueT) GNU_PROPERTY_X86_FEATURE_2_USED, 4); | |
8915 | ||
8916 | /* Write 4-byte data size. */ | |
8917 | md_number_to_chars (p + isa_1_descsz + 4 * 5, (valueT) 4, 4); | |
8918 | ||
8919 | /* Write 4-byte data. */ | |
8920 | md_number_to_chars (p + isa_1_descsz + 4 * 6, | |
8921 | (valueT) x86_feature_2_used, 4); | |
8922 | ||
8923 | /* Zero out paddings. */ | |
8924 | padding = feature_2_descsz - feature_2_descsz_raw; | |
8925 | if (padding) | |
8926 | memset (p + isa_1_descsz + 4 * 7, 0, padding); | |
8927 | ||
8928 | /* We probably can't restore the current segment, for there likely | |
8929 | isn't one yet... */ | |
8930 | if (seg && subseg) | |
8931 | subseg_set (seg, subseg); | |
8932 | } | |
8933 | #endif | |
8934 | ||
9c33702b JB |
8935 | static unsigned int |
8936 | encoding_length (const fragS *start_frag, offsetT start_off, | |
8937 | const char *frag_now_ptr) | |
8938 | { | |
8939 | unsigned int len = 0; | |
8940 | ||
8941 | if (start_frag != frag_now) | |
8942 | { | |
8943 | const fragS *fr = start_frag; | |
8944 | ||
8945 | do { | |
8946 | len += fr->fr_fix; | |
8947 | fr = fr->fr_next; | |
8948 | } while (fr && fr != frag_now); | |
8949 | } | |
8950 | ||
8951 | return len - start_off + (frag_now_ptr - frag_now->fr_literal); | |
8952 | } | |
8953 | ||
e379e5f3 | 8954 | /* Return 1 for test, and, cmp, add, sub, inc and dec which may |
79d72f45 HL |
8955 | be macro-fused with conditional jumps. |
8956 | NB: If TEST/AND/CMP/ADD/SUB/INC/DEC is of RIP relative address, | |
8957 | or is one of the following format: | |
8958 | ||
8959 | cmp m, imm | |
8960 | add m, imm | |
8961 | sub m, imm | |
8962 | test m, imm | |
8963 | and m, imm | |
8964 | inc m | |
8965 | dec m | |
8966 | ||
8967 | it is unfusible. */ | |
e379e5f3 L |
8968 | |
8969 | static int | |
79d72f45 | 8970 | maybe_fused_with_jcc_p (enum mf_cmp_kind* mf_cmp_p) |
e379e5f3 L |
8971 | { |
8972 | /* No RIP address. */ | |
8973 | if (i.base_reg && i.base_reg->reg_num == RegIP) | |
8974 | return 0; | |
8975 | ||
8976 | /* No VEX/EVEX encoding. */ | |
8977 | if (is_any_vex_encoding (&i.tm)) | |
8978 | return 0; | |
8979 | ||
79d72f45 HL |
8980 | /* add, sub without add/sub m, imm. */ |
8981 | if (i.tm.base_opcode <= 5 | |
e379e5f3 L |
8982 | || (i.tm.base_opcode >= 0x28 && i.tm.base_opcode <= 0x2d) |
8983 | || ((i.tm.base_opcode | 3) == 0x83 | |
79d72f45 | 8984 | && (i.tm.extension_opcode == 0x5 |
e379e5f3 | 8985 | || i.tm.extension_opcode == 0x0))) |
79d72f45 HL |
8986 | { |
8987 | *mf_cmp_p = mf_cmp_alu_cmp; | |
8988 | return !(i.mem_operands && i.imm_operands); | |
8989 | } | |
e379e5f3 | 8990 | |
79d72f45 HL |
8991 | /* and without and m, imm. */ |
8992 | if ((i.tm.base_opcode >= 0x20 && i.tm.base_opcode <= 0x25) | |
8993 | || ((i.tm.base_opcode | 3) == 0x83 | |
8994 | && i.tm.extension_opcode == 0x4)) | |
8995 | { | |
8996 | *mf_cmp_p = mf_cmp_test_and; | |
8997 | return !(i.mem_operands && i.imm_operands); | |
8998 | } | |
8999 | ||
9000 | /* test without test m imm. */ | |
e379e5f3 L |
9001 | if ((i.tm.base_opcode | 1) == 0x85 |
9002 | || (i.tm.base_opcode | 1) == 0xa9 | |
9003 | || ((i.tm.base_opcode | 1) == 0xf7 | |
79d72f45 HL |
9004 | && i.tm.extension_opcode == 0)) |
9005 | { | |
9006 | *mf_cmp_p = mf_cmp_test_and; | |
9007 | return !(i.mem_operands && i.imm_operands); | |
9008 | } | |
9009 | ||
9010 | /* cmp without cmp m, imm. */ | |
9011 | if ((i.tm.base_opcode >= 0x38 && i.tm.base_opcode <= 0x3d) | |
e379e5f3 L |
9012 | || ((i.tm.base_opcode | 3) == 0x83 |
9013 | && (i.tm.extension_opcode == 0x7))) | |
79d72f45 HL |
9014 | { |
9015 | *mf_cmp_p = mf_cmp_alu_cmp; | |
9016 | return !(i.mem_operands && i.imm_operands); | |
9017 | } | |
e379e5f3 | 9018 | |
79d72f45 | 9019 | /* inc, dec without inc/dec m. */ |
e379e5f3 L |
9020 | if ((i.tm.cpu_flags.bitfield.cpuno64 |
9021 | && (i.tm.base_opcode | 0xf) == 0x4f) | |
9022 | || ((i.tm.base_opcode | 1) == 0xff | |
9023 | && i.tm.extension_opcode <= 0x1)) | |
79d72f45 HL |
9024 | { |
9025 | *mf_cmp_p = mf_cmp_incdec; | |
9026 | return !i.mem_operands; | |
9027 | } | |
e379e5f3 L |
9028 | |
9029 | return 0; | |
9030 | } | |
9031 | ||
9032 | /* Return 1 if a FUSED_JCC_PADDING frag should be generated. */ | |
9033 | ||
9034 | static int | |
79d72f45 | 9035 | add_fused_jcc_padding_frag_p (enum mf_cmp_kind* mf_cmp_p) |
e379e5f3 L |
9036 | { |
9037 | /* NB: Don't work with COND_JUMP86 without i386. */ | |
9038 | if (!align_branch_power | |
9039 | || now_seg == absolute_section | |
9040 | || !cpu_arch_flags.bitfield.cpui386 | |
9041 | || !(align_branch & align_branch_fused_bit)) | |
9042 | return 0; | |
9043 | ||
79d72f45 | 9044 | if (maybe_fused_with_jcc_p (mf_cmp_p)) |
e379e5f3 L |
9045 | { |
9046 | if (last_insn.kind == last_insn_other | |
9047 | || last_insn.seg != now_seg) | |
9048 | return 1; | |
9049 | if (flag_debug) | |
9050 | as_warn_where (last_insn.file, last_insn.line, | |
9051 | _("`%s` skips -malign-branch-boundary on `%s`"), | |
9052 | last_insn.name, i.tm.name); | |
9053 | } | |
9054 | ||
9055 | return 0; | |
9056 | } | |
9057 | ||
9058 | /* Return 1 if a BRANCH_PREFIX frag should be generated. */ | |
9059 | ||
9060 | static int | |
9061 | add_branch_prefix_frag_p (void) | |
9062 | { | |
9063 | /* NB: Don't work with COND_JUMP86 without i386. Don't add prefix | |
9064 | to PadLock instructions since they include prefixes in opcode. */ | |
9065 | if (!align_branch_power | |
9066 | || !align_branch_prefix_size | |
9067 | || now_seg == absolute_section | |
9068 | || i.tm.cpu_flags.bitfield.cpupadlock | |
9069 | || !cpu_arch_flags.bitfield.cpui386) | |
9070 | return 0; | |
9071 | ||
9072 | /* Don't add prefix if it is a prefix or there is no operand in case | |
9073 | that segment prefix is special. */ | |
9074 | if (!i.operands || i.tm.opcode_modifier.isprefix) | |
9075 | return 0; | |
9076 | ||
9077 | if (last_insn.kind == last_insn_other | |
9078 | || last_insn.seg != now_seg) | |
9079 | return 1; | |
9080 | ||
9081 | if (flag_debug) | |
9082 | as_warn_where (last_insn.file, last_insn.line, | |
9083 | _("`%s` skips -malign-branch-boundary on `%s`"), | |
9084 | last_insn.name, i.tm.name); | |
9085 | ||
9086 | return 0; | |
9087 | } | |
9088 | ||
9089 | /* Return 1 if a BRANCH_PADDING frag should be generated. */ | |
9090 | ||
9091 | static int | |
79d72f45 HL |
9092 | add_branch_padding_frag_p (enum align_branch_kind *branch_p, |
9093 | enum mf_jcc_kind *mf_jcc_p) | |
e379e5f3 L |
9094 | { |
9095 | int add_padding; | |
9096 | ||
9097 | /* NB: Don't work with COND_JUMP86 without i386. */ | |
9098 | if (!align_branch_power | |
9099 | || now_seg == absolute_section | |
9100 | || !cpu_arch_flags.bitfield.cpui386) | |
9101 | return 0; | |
9102 | ||
9103 | add_padding = 0; | |
9104 | ||
9105 | /* Check for jcc and direct jmp. */ | |
9106 | if (i.tm.opcode_modifier.jump == JUMP) | |
9107 | { | |
9108 | if (i.tm.base_opcode == JUMP_PC_RELATIVE) | |
9109 | { | |
9110 | *branch_p = align_branch_jmp; | |
9111 | add_padding = align_branch & align_branch_jmp_bit; | |
9112 | } | |
9113 | else | |
9114 | { | |
79d72f45 HL |
9115 | /* Because J<cc> and JN<cc> share same group in macro-fusible table, |
9116 | igore the lowest bit. */ | |
9117 | *mf_jcc_p = (i.tm.base_opcode & 0x0e) >> 1; | |
e379e5f3 L |
9118 | *branch_p = align_branch_jcc; |
9119 | if ((align_branch & align_branch_jcc_bit)) | |
9120 | add_padding = 1; | |
9121 | } | |
9122 | } | |
9123 | else if (is_any_vex_encoding (&i.tm)) | |
9124 | return 0; | |
9125 | else if ((i.tm.base_opcode | 1) == 0xc3) | |
9126 | { | |
9127 | /* Near ret. */ | |
9128 | *branch_p = align_branch_ret; | |
9129 | if ((align_branch & align_branch_ret_bit)) | |
9130 | add_padding = 1; | |
9131 | } | |
9132 | else | |
9133 | { | |
9134 | /* Check for indirect jmp, direct and indirect calls. */ | |
9135 | if (i.tm.base_opcode == 0xe8) | |
9136 | { | |
9137 | /* Direct call. */ | |
9138 | *branch_p = align_branch_call; | |
9139 | if ((align_branch & align_branch_call_bit)) | |
9140 | add_padding = 1; | |
9141 | } | |
9142 | else if (i.tm.base_opcode == 0xff | |
9143 | && (i.tm.extension_opcode == 2 | |
9144 | || i.tm.extension_opcode == 4)) | |
9145 | { | |
9146 | /* Indirect call and jmp. */ | |
9147 | *branch_p = align_branch_indirect; | |
9148 | if ((align_branch & align_branch_indirect_bit)) | |
9149 | add_padding = 1; | |
9150 | } | |
9151 | ||
9152 | if (add_padding | |
9153 | && i.disp_operands | |
9154 | && tls_get_addr | |
9155 | && (i.op[0].disps->X_op == O_symbol | |
9156 | || (i.op[0].disps->X_op == O_subtract | |
9157 | && i.op[0].disps->X_op_symbol == GOT_symbol))) | |
9158 | { | |
9159 | symbolS *s = i.op[0].disps->X_add_symbol; | |
9160 | /* No padding to call to global or undefined tls_get_addr. */ | |
9161 | if ((S_IS_EXTERNAL (s) || !S_IS_DEFINED (s)) | |
9162 | && strcmp (S_GET_NAME (s), tls_get_addr) == 0) | |
9163 | return 0; | |
9164 | } | |
9165 | } | |
9166 | ||
9167 | if (add_padding | |
9168 | && last_insn.kind != last_insn_other | |
9169 | && last_insn.seg == now_seg) | |
9170 | { | |
9171 | if (flag_debug) | |
9172 | as_warn_where (last_insn.file, last_insn.line, | |
9173 | _("`%s` skips -malign-branch-boundary on `%s`"), | |
9174 | last_insn.name, i.tm.name); | |
9175 | return 0; | |
9176 | } | |
9177 | ||
9178 | return add_padding; | |
9179 | } | |
9180 | ||
29b0f896 | 9181 | static void |
e3bb37b5 | 9182 | output_insn (void) |
29b0f896 | 9183 | { |
2bbd9c25 JJ |
9184 | fragS *insn_start_frag; |
9185 | offsetT insn_start_off; | |
e379e5f3 L |
9186 | fragS *fragP = NULL; |
9187 | enum align_branch_kind branch = align_branch_none; | |
79d72f45 HL |
9188 | /* The initializer is arbitrary just to avoid uninitialized error. |
9189 | it's actually either assigned in add_branch_padding_frag_p | |
9190 | or never be used. */ | |
9191 | enum mf_jcc_kind mf_jcc = mf_jcc_jo; | |
2bbd9c25 | 9192 | |
b4a3a7b4 | 9193 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
48ef937e | 9194 | if (IS_ELF && x86_used_note && now_seg != absolute_section) |
b4a3a7b4 | 9195 | { |
32930e4e L |
9196 | if ((i.xstate & xstate_tmm) == xstate_tmm |
9197 | || i.tm.cpu_flags.bitfield.cpuamx_tile) | |
9198 | x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_TMM; | |
9199 | ||
9200 | if (i.tm.cpu_flags.bitfield.cpusse3 | |
9201 | || i.tm.cpu_flags.bitfield.cpussse3 | |
9202 | || i.tm.cpu_flags.bitfield.cpusse4_1 | |
9203 | || i.tm.cpu_flags.bitfield.cpusse4_2 | |
9204 | || i.tm.cpu_flags.bitfield.cpucx16 | |
9205 | || i.tm.cpu_flags.bitfield.cpupopcnt | |
9206 | /* LAHF-SAHF insns in 64-bit mode. */ | |
9207 | || (flag_code == CODE_64BIT | |
9208 | && (i.tm.base_opcode | 1) == 0x9f)) | |
9209 | x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_V2; | |
9210 | if (i.tm.cpu_flags.bitfield.cpuavx | |
9211 | || i.tm.cpu_flags.bitfield.cpuavx2 | |
9212 | /* Any VEX encoded insns execpt for CpuAVX512F, CpuAVX512BW, | |
9213 | CpuAVX512DQ, LPW, TBM and AMX. */ | |
9214 | || (i.tm.opcode_modifier.vex | |
9215 | && !i.tm.cpu_flags.bitfield.cpuavx512f | |
9216 | && !i.tm.cpu_flags.bitfield.cpuavx512bw | |
9217 | && !i.tm.cpu_flags.bitfield.cpuavx512dq | |
9218 | && !i.tm.cpu_flags.bitfield.cpulwp | |
9219 | && !i.tm.cpu_flags.bitfield.cputbm | |
9220 | && !(x86_feature_2_used & GNU_PROPERTY_X86_FEATURE_2_TMM)) | |
9221 | || i.tm.cpu_flags.bitfield.cpuf16c | |
9222 | || i.tm.cpu_flags.bitfield.cpufma | |
9223 | || i.tm.cpu_flags.bitfield.cpulzcnt | |
9224 | || i.tm.cpu_flags.bitfield.cpumovbe | |
9225 | || i.tm.cpu_flags.bitfield.cpuxsave | |
9226 | || i.tm.cpu_flags.bitfield.cpuxsavec | |
9227 | || i.tm.cpu_flags.bitfield.cpuxsaveopt | |
9228 | || i.tm.cpu_flags.bitfield.cpuxsaves) | |
9229 | x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_V3; | |
9230 | if (i.tm.cpu_flags.bitfield.cpuavx512f | |
9231 | || i.tm.cpu_flags.bitfield.cpuavx512bw | |
9232 | || i.tm.cpu_flags.bitfield.cpuavx512dq | |
9233 | || i.tm.cpu_flags.bitfield.cpuavx512vl | |
9234 | /* Any EVEX encoded insns except for AVX512ER, AVX512PF and | |
9235 | VNNIW. */ | |
9236 | || (i.tm.opcode_modifier.evex | |
9237 | && !i.tm.cpu_flags.bitfield.cpuavx512er | |
9238 | && !i.tm.cpu_flags.bitfield.cpuavx512pf | |
9239 | && !i.tm.cpu_flags.bitfield.cpuavx512_4vnniw)) | |
9240 | x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_V4; | |
b4a3a7b4 L |
9241 | |
9242 | if (i.tm.cpu_flags.bitfield.cpu8087 | |
9243 | || i.tm.cpu_flags.bitfield.cpu287 | |
9244 | || i.tm.cpu_flags.bitfield.cpu387 | |
9245 | || i.tm.cpu_flags.bitfield.cpu687 | |
9246 | || i.tm.cpu_flags.bitfield.cpufisttp) | |
9247 | x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X87; | |
921eafea | 9248 | if ((i.xstate & xstate_mmx) |
319ff62c | 9249 | || i.tm.base_opcode == 0xf77 /* emms */ |
921eafea | 9250 | || i.tm.base_opcode == 0xf0e /* femms */) |
b4a3a7b4 | 9251 | x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_MMX; |
32930e4e L |
9252 | if (i.index_reg) |
9253 | { | |
9254 | if (i.index_reg->reg_type.bitfield.zmmword) | |
9255 | i.xstate |= xstate_zmm; | |
9256 | else if (i.index_reg->reg_type.bitfield.ymmword) | |
9257 | i.xstate |= xstate_ymm; | |
9258 | else if (i.index_reg->reg_type.bitfield.xmmword) | |
9259 | i.xstate |= xstate_xmm; | |
9260 | } | |
c4694f17 TG |
9261 | if ((i.xstate & xstate_xmm) |
9262 | || i.tm.cpu_flags.bitfield.cpuwidekl | |
9263 | || i.tm.cpu_flags.bitfield.cpukl) | |
b4a3a7b4 | 9264 | x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XMM; |
921eafea | 9265 | if ((i.xstate & xstate_ymm) == xstate_ymm) |
b4a3a7b4 | 9266 | x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_YMM; |
921eafea | 9267 | if ((i.xstate & xstate_zmm) == xstate_zmm) |
b4a3a7b4 | 9268 | x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_ZMM; |
32930e4e L |
9269 | if (i.mask || (i.xstate & xstate_mask) == xstate_mask) |
9270 | x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_MASK; | |
b4a3a7b4 L |
9271 | if (i.tm.cpu_flags.bitfield.cpufxsr) |
9272 | x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_FXSR; | |
9273 | if (i.tm.cpu_flags.bitfield.cpuxsave) | |
9274 | x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVE; | |
9275 | if (i.tm.cpu_flags.bitfield.cpuxsaveopt) | |
9276 | x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT; | |
9277 | if (i.tm.cpu_flags.bitfield.cpuxsavec) | |
9278 | x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEC; | |
9279 | } | |
9280 | #endif | |
9281 | ||
29b0f896 AM |
9282 | /* Tie dwarf2 debug info to the address at the start of the insn. |
9283 | We can't do this after the insn has been output as the current | |
9284 | frag may have been closed off. eg. by frag_var. */ | |
9285 | dwarf2_emit_insn (0); | |
9286 | ||
2bbd9c25 JJ |
9287 | insn_start_frag = frag_now; |
9288 | insn_start_off = frag_now_fix (); | |
9289 | ||
79d72f45 | 9290 | if (add_branch_padding_frag_p (&branch, &mf_jcc)) |
e379e5f3 L |
9291 | { |
9292 | char *p; | |
9293 | /* Branch can be 8 bytes. Leave some room for prefixes. */ | |
9294 | unsigned int max_branch_padding_size = 14; | |
9295 | ||
9296 | /* Align section to boundary. */ | |
9297 | record_alignment (now_seg, align_branch_power); | |
9298 | ||
9299 | /* Make room for padding. */ | |
9300 | frag_grow (max_branch_padding_size); | |
9301 | ||
9302 | /* Start of the padding. */ | |
9303 | p = frag_more (0); | |
9304 | ||
9305 | fragP = frag_now; | |
9306 | ||
9307 | frag_var (rs_machine_dependent, max_branch_padding_size, 0, | |
9308 | ENCODE_RELAX_STATE (BRANCH_PADDING, 0), | |
9309 | NULL, 0, p); | |
9310 | ||
79d72f45 | 9311 | fragP->tc_frag_data.mf_type = mf_jcc; |
e379e5f3 L |
9312 | fragP->tc_frag_data.branch_type = branch; |
9313 | fragP->tc_frag_data.max_bytes = max_branch_padding_size; | |
9314 | } | |
9315 | ||
29b0f896 | 9316 | /* Output jumps. */ |
0cfa3eb3 | 9317 | if (i.tm.opcode_modifier.jump == JUMP) |
29b0f896 | 9318 | output_branch (); |
0cfa3eb3 JB |
9319 | else if (i.tm.opcode_modifier.jump == JUMP_BYTE |
9320 | || i.tm.opcode_modifier.jump == JUMP_DWORD) | |
29b0f896 | 9321 | output_jump (); |
0cfa3eb3 | 9322 | else if (i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT) |
29b0f896 AM |
9323 | output_interseg_jump (); |
9324 | else | |
9325 | { | |
9326 | /* Output normal instructions here. */ | |
9327 | char *p; | |
9328 | unsigned char *q; | |
47465058 | 9329 | unsigned int j; |
79d72f45 | 9330 | enum mf_cmp_kind mf_cmp; |
4dffcebc | 9331 | |
e4e00185 | 9332 | if (avoid_fence |
c3949f43 JB |
9333 | && (i.tm.base_opcode == 0xfaee8 |
9334 | || i.tm.base_opcode == 0xfaef0 | |
9335 | || i.tm.base_opcode == 0xfaef8)) | |
48ef937e JB |
9336 | { |
9337 | /* Encode lfence, mfence, and sfence as | |
9338 | f0 83 04 24 00 lock addl $0x0, (%{re}sp). */ | |
9339 | if (now_seg != absolute_section) | |
9340 | { | |
9341 | offsetT val = 0x240483f0ULL; | |
9342 | ||
9343 | p = frag_more (5); | |
9344 | md_number_to_chars (p, val, 5); | |
9345 | } | |
9346 | else | |
9347 | abs_section_offset += 5; | |
9348 | return; | |
9349 | } | |
e4e00185 | 9350 | |
d022bddd IT |
9351 | /* Some processors fail on LOCK prefix. This options makes |
9352 | assembler ignore LOCK prefix and serves as a workaround. */ | |
9353 | if (omit_lock_prefix) | |
9354 | { | |
9355 | if (i.tm.base_opcode == LOCK_PREFIX_OPCODE) | |
9356 | return; | |
9357 | i.prefix[LOCK_PREFIX] = 0; | |
9358 | } | |
9359 | ||
e379e5f3 L |
9360 | if (branch) |
9361 | /* Skip if this is a branch. */ | |
9362 | ; | |
79d72f45 | 9363 | else if (add_fused_jcc_padding_frag_p (&mf_cmp)) |
e379e5f3 L |
9364 | { |
9365 | /* Make room for padding. */ | |
9366 | frag_grow (MAX_FUSED_JCC_PADDING_SIZE); | |
9367 | p = frag_more (0); | |
9368 | ||
9369 | fragP = frag_now; | |
9370 | ||
9371 | frag_var (rs_machine_dependent, MAX_FUSED_JCC_PADDING_SIZE, 0, | |
9372 | ENCODE_RELAX_STATE (FUSED_JCC_PADDING, 0), | |
9373 | NULL, 0, p); | |
9374 | ||
79d72f45 | 9375 | fragP->tc_frag_data.mf_type = mf_cmp; |
e379e5f3 L |
9376 | fragP->tc_frag_data.branch_type = align_branch_fused; |
9377 | fragP->tc_frag_data.max_bytes = MAX_FUSED_JCC_PADDING_SIZE; | |
9378 | } | |
9379 | else if (add_branch_prefix_frag_p ()) | |
9380 | { | |
9381 | unsigned int max_prefix_size = align_branch_prefix_size; | |
9382 | ||
9383 | /* Make room for padding. */ | |
9384 | frag_grow (max_prefix_size); | |
9385 | p = frag_more (0); | |
9386 | ||
9387 | fragP = frag_now; | |
9388 | ||
9389 | frag_var (rs_machine_dependent, max_prefix_size, 0, | |
9390 | ENCODE_RELAX_STATE (BRANCH_PREFIX, 0), | |
9391 | NULL, 0, p); | |
9392 | ||
9393 | fragP->tc_frag_data.max_bytes = max_prefix_size; | |
9394 | } | |
9395 | ||
43234a1e L |
9396 | /* Since the VEX/EVEX prefix contains the implicit prefix, we |
9397 | don't need the explicit prefix. */ | |
9398 | if (!i.tm.opcode_modifier.vex && !i.tm.opcode_modifier.evex) | |
bc4bd9ab | 9399 | { |
7b47a312 | 9400 | switch (i.tm.opcode_modifier.opcodeprefix) |
bc4bd9ab | 9401 | { |
7b47a312 L |
9402 | case PREFIX_0X66: |
9403 | add_prefix (0x66); | |
9404 | break; | |
9405 | case PREFIX_0XF2: | |
9406 | add_prefix (0xf2); | |
9407 | break; | |
9408 | case PREFIX_0XF3: | |
8b65b895 L |
9409 | if (!i.tm.cpu_flags.bitfield.cpupadlock |
9410 | || (i.prefix[REP_PREFIX] != 0xf3)) | |
9411 | add_prefix (0xf3); | |
c0f3af97 | 9412 | break; |
7b47a312 L |
9413 | case PREFIX_NONE: |
9414 | switch (i.tm.opcode_length) | |
c0f3af97 | 9415 | { |
7b47a312 | 9416 | case 3: |
7b47a312 | 9417 | case 2: |
7b47a312 L |
9418 | case 1: |
9419 | break; | |
9420 | case 0: | |
9421 | /* Check for pseudo prefixes. */ | |
9422 | as_bad_where (insn_start_frag->fr_file, | |
9423 | insn_start_frag->fr_line, | |
9424 | _("pseudo prefix without instruction")); | |
9425 | return; | |
9426 | default: | |
9427 | abort (); | |
4dffcebc | 9428 | } |
c0f3af97 | 9429 | break; |
c0f3af97 L |
9430 | default: |
9431 | abort (); | |
bc4bd9ab | 9432 | } |
c0f3af97 | 9433 | |
6d19a37a | 9434 | #if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF) |
cf61b747 L |
9435 | /* For x32, add a dummy REX_OPCODE prefix for mov/add with |
9436 | R_X86_64_GOTTPOFF relocation so that linker can safely | |
14470f07 L |
9437 | perform IE->LE optimization. A dummy REX_OPCODE prefix |
9438 | is also needed for lea with R_X86_64_GOTPC32_TLSDESC | |
9439 | relocation for GDesc -> IE/LE optimization. */ | |
cf61b747 L |
9440 | if (x86_elf_abi == X86_64_X32_ABI |
9441 | && i.operands == 2 | |
14470f07 L |
9442 | && (i.reloc[0] == BFD_RELOC_X86_64_GOTTPOFF |
9443 | || i.reloc[0] == BFD_RELOC_X86_64_GOTPC32_TLSDESC) | |
cf61b747 L |
9444 | && i.prefix[REX_PREFIX] == 0) |
9445 | add_prefix (REX_OPCODE); | |
6d19a37a | 9446 | #endif |
cf61b747 | 9447 | |
c0f3af97 L |
9448 | /* The prefix bytes. */ |
9449 | for (j = ARRAY_SIZE (i.prefix), q = i.prefix; j > 0; j--, q++) | |
9450 | if (*q) | |
48ef937e | 9451 | frag_opcode_byte (*q); |
0f10071e | 9452 | } |
ae5c1c7b | 9453 | else |
c0f3af97 L |
9454 | { |
9455 | for (j = 0, q = i.prefix; j < ARRAY_SIZE (i.prefix); j++, q++) | |
9456 | if (*q) | |
9457 | switch (j) | |
9458 | { | |
c0f3af97 L |
9459 | case SEG_PREFIX: |
9460 | case ADDR_PREFIX: | |
48ef937e | 9461 | frag_opcode_byte (*q); |
c0f3af97 L |
9462 | break; |
9463 | default: | |
9464 | /* There should be no other prefixes for instructions | |
9465 | with VEX prefix. */ | |
9466 | abort (); | |
9467 | } | |
9468 | ||
43234a1e L |
9469 | /* For EVEX instructions i.vrex should become 0 after |
9470 | build_evex_prefix. For VEX instructions upper 16 registers | |
9471 | aren't available, so VREX should be 0. */ | |
9472 | if (i.vrex) | |
9473 | abort (); | |
c0f3af97 | 9474 | /* Now the VEX prefix. */ |
48ef937e JB |
9475 | if (now_seg != absolute_section) |
9476 | { | |
9477 | p = frag_more (i.vex.length); | |
9478 | for (j = 0; j < i.vex.length; j++) | |
9479 | p[j] = i.vex.bytes[j]; | |
9480 | } | |
9481 | else | |
9482 | abs_section_offset += i.vex.length; | |
c0f3af97 | 9483 | } |
252b5132 | 9484 | |
29b0f896 | 9485 | /* Now the opcode; be careful about word order here! */ |
48ef937e JB |
9486 | if (now_seg == absolute_section) |
9487 | abs_section_offset += i.tm.opcode_length; | |
9488 | else if (i.tm.opcode_length == 1) | |
29b0f896 AM |
9489 | { |
9490 | FRAG_APPEND_1_CHAR (i.tm.base_opcode); | |
9491 | } | |
9492 | else | |
9493 | { | |
4dffcebc | 9494 | switch (i.tm.opcode_length) |
331d2d0d | 9495 | { |
43234a1e L |
9496 | case 4: |
9497 | p = frag_more (4); | |
9498 | *p++ = (i.tm.base_opcode >> 24) & 0xff; | |
9499 | *p++ = (i.tm.base_opcode >> 16) & 0xff; | |
9500 | break; | |
4dffcebc | 9501 | case 3: |
331d2d0d L |
9502 | p = frag_more (3); |
9503 | *p++ = (i.tm.base_opcode >> 16) & 0xff; | |
4dffcebc L |
9504 | break; |
9505 | case 2: | |
9506 | p = frag_more (2); | |
9507 | break; | |
9508 | default: | |
9509 | abort (); | |
9510 | break; | |
331d2d0d | 9511 | } |
0f10071e | 9512 | |
29b0f896 AM |
9513 | /* Put out high byte first: can't use md_number_to_chars! */ |
9514 | *p++ = (i.tm.base_opcode >> 8) & 0xff; | |
9515 | *p = i.tm.base_opcode & 0xff; | |
9516 | } | |
3e73aa7c | 9517 | |
29b0f896 | 9518 | /* Now the modrm byte and sib byte (if present). */ |
40fb9820 | 9519 | if (i.tm.opcode_modifier.modrm) |
29b0f896 | 9520 | { |
48ef937e JB |
9521 | frag_opcode_byte ((i.rm.regmem << 0) |
9522 | | (i.rm.reg << 3) | |
9523 | | (i.rm.mode << 6)); | |
29b0f896 AM |
9524 | /* If i.rm.regmem == ESP (4) |
9525 | && i.rm.mode != (Register mode) | |
9526 | && not 16 bit | |
9527 | ==> need second modrm byte. */ | |
9528 | if (i.rm.regmem == ESCAPE_TO_TWO_BYTE_ADDRESSING | |
9529 | && i.rm.mode != 3 | |
dc821c5f | 9530 | && !(i.base_reg && i.base_reg->reg_type.bitfield.word)) |
48ef937e JB |
9531 | frag_opcode_byte ((i.sib.base << 0) |
9532 | | (i.sib.index << 3) | |
9533 | | (i.sib.scale << 6)); | |
29b0f896 | 9534 | } |
3e73aa7c | 9535 | |
29b0f896 | 9536 | if (i.disp_operands) |
2bbd9c25 | 9537 | output_disp (insn_start_frag, insn_start_off); |
3e73aa7c | 9538 | |
29b0f896 | 9539 | if (i.imm_operands) |
2bbd9c25 | 9540 | output_imm (insn_start_frag, insn_start_off); |
9c33702b JB |
9541 | |
9542 | /* | |
9543 | * frag_now_fix () returning plain abs_section_offset when we're in the | |
9544 | * absolute section, and abs_section_offset not getting updated as data | |
9545 | * gets added to the frag breaks the logic below. | |
9546 | */ | |
9547 | if (now_seg != absolute_section) | |
9548 | { | |
9549 | j = encoding_length (insn_start_frag, insn_start_off, frag_more (0)); | |
9550 | if (j > 15) | |
9551 | as_warn (_("instruction length of %u bytes exceeds the limit of 15"), | |
9552 | j); | |
e379e5f3 L |
9553 | else if (fragP) |
9554 | { | |
9555 | /* NB: Don't add prefix with GOTPC relocation since | |
9556 | output_disp() above depends on the fixed encoding | |
9557 | length. Can't add prefix with TLS relocation since | |
9558 | it breaks TLS linker optimization. */ | |
9559 | unsigned int max = i.has_gotpc_tls_reloc ? 0 : 15 - j; | |
9560 | /* Prefix count on the current instruction. */ | |
9561 | unsigned int count = i.vex.length; | |
9562 | unsigned int k; | |
9563 | for (k = 0; k < ARRAY_SIZE (i.prefix); k++) | |
9564 | /* REX byte is encoded in VEX/EVEX prefix. */ | |
9565 | if (i.prefix[k] && (k != REX_PREFIX || !i.vex.length)) | |
9566 | count++; | |
9567 | ||
9568 | /* Count prefixes for extended opcode maps. */ | |
9569 | if (!i.vex.length) | |
9570 | switch (i.tm.opcode_length) | |
9571 | { | |
9572 | case 3: | |
9573 | if (((i.tm.base_opcode >> 16) & 0xff) == 0xf) | |
9574 | { | |
9575 | count++; | |
9576 | switch ((i.tm.base_opcode >> 8) & 0xff) | |
9577 | { | |
9578 | case 0x38: | |
9579 | case 0x3a: | |
9580 | count++; | |
9581 | break; | |
9582 | default: | |
9583 | break; | |
9584 | } | |
9585 | } | |
9586 | break; | |
9587 | case 2: | |
9588 | if (((i.tm.base_opcode >> 8) & 0xff) == 0xf) | |
9589 | count++; | |
9590 | break; | |
9591 | case 1: | |
9592 | break; | |
9593 | default: | |
9594 | abort (); | |
9595 | } | |
9596 | ||
9597 | if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) | |
9598 | == BRANCH_PREFIX) | |
9599 | { | |
9600 | /* Set the maximum prefix size in BRANCH_PREFIX | |
9601 | frag. */ | |
9602 | if (fragP->tc_frag_data.max_bytes > max) | |
9603 | fragP->tc_frag_data.max_bytes = max; | |
9604 | if (fragP->tc_frag_data.max_bytes > count) | |
9605 | fragP->tc_frag_data.max_bytes -= count; | |
9606 | else | |
9607 | fragP->tc_frag_data.max_bytes = 0; | |
9608 | } | |
9609 | else | |
9610 | { | |
9611 | /* Remember the maximum prefix size in FUSED_JCC_PADDING | |
9612 | frag. */ | |
9613 | unsigned int max_prefix_size; | |
9614 | if (align_branch_prefix_size > max) | |
9615 | max_prefix_size = max; | |
9616 | else | |
9617 | max_prefix_size = align_branch_prefix_size; | |
9618 | if (max_prefix_size > count) | |
9619 | fragP->tc_frag_data.max_prefix_length | |
9620 | = max_prefix_size - count; | |
9621 | } | |
9622 | ||
9623 | /* Use existing segment prefix if possible. Use CS | |
9624 | segment prefix in 64-bit mode. In 32-bit mode, use SS | |
9625 | segment prefix with ESP/EBP base register and use DS | |
9626 | segment prefix without ESP/EBP base register. */ | |
9627 | if (i.prefix[SEG_PREFIX]) | |
9628 | fragP->tc_frag_data.default_prefix = i.prefix[SEG_PREFIX]; | |
9629 | else if (flag_code == CODE_64BIT) | |
9630 | fragP->tc_frag_data.default_prefix = CS_PREFIX_OPCODE; | |
9631 | else if (i.base_reg | |
9632 | && (i.base_reg->reg_num == 4 | |
9633 | || i.base_reg->reg_num == 5)) | |
9634 | fragP->tc_frag_data.default_prefix = SS_PREFIX_OPCODE; | |
9635 | else | |
9636 | fragP->tc_frag_data.default_prefix = DS_PREFIX_OPCODE; | |
9637 | } | |
9c33702b | 9638 | } |
29b0f896 | 9639 | } |
252b5132 | 9640 | |
e379e5f3 L |
9641 | /* NB: Don't work with COND_JUMP86 without i386. */ |
9642 | if (align_branch_power | |
9643 | && now_seg != absolute_section | |
9644 | && cpu_arch_flags.bitfield.cpui386) | |
9645 | { | |
9646 | /* Terminate each frag so that we can add prefix and check for | |
9647 | fused jcc. */ | |
9648 | frag_wane (frag_now); | |
9649 | frag_new (0); | |
9650 | } | |
9651 | ||
29b0f896 AM |
9652 | #ifdef DEBUG386 |
9653 | if (flag_debug) | |
9654 | { | |
7b81dfbb | 9655 | pi ("" /*line*/, &i); |
29b0f896 AM |
9656 | } |
9657 | #endif /* DEBUG386 */ | |
9658 | } | |
252b5132 | 9659 | |
e205caa7 L |
9660 | /* Return the size of the displacement operand N. */ |
9661 | ||
9662 | static int | |
9663 | disp_size (unsigned int n) | |
9664 | { | |
9665 | int size = 4; | |
43234a1e | 9666 | |
b5014f7a | 9667 | if (i.types[n].bitfield.disp64) |
40fb9820 L |
9668 | size = 8; |
9669 | else if (i.types[n].bitfield.disp8) | |
9670 | size = 1; | |
9671 | else if (i.types[n].bitfield.disp16) | |
9672 | size = 2; | |
e205caa7 L |
9673 | return size; |
9674 | } | |
9675 | ||
9676 | /* Return the size of the immediate operand N. */ | |
9677 | ||
9678 | static int | |
9679 | imm_size (unsigned int n) | |
9680 | { | |
9681 | int size = 4; | |
40fb9820 L |
9682 | if (i.types[n].bitfield.imm64) |
9683 | size = 8; | |
9684 | else if (i.types[n].bitfield.imm8 || i.types[n].bitfield.imm8s) | |
9685 | size = 1; | |
9686 | else if (i.types[n].bitfield.imm16) | |
9687 | size = 2; | |
e205caa7 L |
9688 | return size; |
9689 | } | |
9690 | ||
29b0f896 | 9691 | static void |
64e74474 | 9692 | output_disp (fragS *insn_start_frag, offsetT insn_start_off) |
29b0f896 AM |
9693 | { |
9694 | char *p; | |
9695 | unsigned int n; | |
252b5132 | 9696 | |
29b0f896 AM |
9697 | for (n = 0; n < i.operands; n++) |
9698 | { | |
b5014f7a | 9699 | if (operand_type_check (i.types[n], disp)) |
29b0f896 | 9700 | { |
48ef937e JB |
9701 | int size = disp_size (n); |
9702 | ||
9703 | if (now_seg == absolute_section) | |
9704 | abs_section_offset += size; | |
9705 | else if (i.op[n].disps->X_op == O_constant) | |
29b0f896 | 9706 | { |
43234a1e | 9707 | offsetT val = i.op[n].disps->X_add_number; |
252b5132 | 9708 | |
629cfaf1 JB |
9709 | val = offset_in_range (val >> (size == 1 ? i.memshift : 0), |
9710 | size); | |
29b0f896 AM |
9711 | p = frag_more (size); |
9712 | md_number_to_chars (p, val, size); | |
9713 | } | |
9714 | else | |
9715 | { | |
f86103b7 | 9716 | enum bfd_reloc_code_real reloc_type; |
40fb9820 | 9717 | int sign = i.types[n].bitfield.disp32s; |
29b0f896 | 9718 | int pcrel = (i.flags[n] & Operand_PCrel) != 0; |
02a86693 | 9719 | fixS *fixP; |
29b0f896 | 9720 | |
e205caa7 | 9721 | /* We can't have 8 bit displacement here. */ |
9c2799c2 | 9722 | gas_assert (!i.types[n].bitfield.disp8); |
e205caa7 | 9723 | |
29b0f896 AM |
9724 | /* The PC relative address is computed relative |
9725 | to the instruction boundary, so in case immediate | |
9726 | fields follows, we need to adjust the value. */ | |
9727 | if (pcrel && i.imm_operands) | |
9728 | { | |
29b0f896 | 9729 | unsigned int n1; |
e205caa7 | 9730 | int sz = 0; |
252b5132 | 9731 | |
29b0f896 | 9732 | for (n1 = 0; n1 < i.operands; n1++) |
40fb9820 | 9733 | if (operand_type_check (i.types[n1], imm)) |
252b5132 | 9734 | { |
e205caa7 L |
9735 | /* Only one immediate is allowed for PC |
9736 | relative address. */ | |
9c2799c2 | 9737 | gas_assert (sz == 0); |
e205caa7 L |
9738 | sz = imm_size (n1); |
9739 | i.op[n].disps->X_add_number -= sz; | |
252b5132 | 9740 | } |
29b0f896 | 9741 | /* We should find the immediate. */ |
9c2799c2 | 9742 | gas_assert (sz != 0); |
29b0f896 | 9743 | } |
520dc8e8 | 9744 | |
29b0f896 | 9745 | p = frag_more (size); |
d258b828 | 9746 | reloc_type = reloc (size, pcrel, sign, i.reloc[n]); |
d6ab8113 | 9747 | if (GOT_symbol |
2bbd9c25 | 9748 | && GOT_symbol == i.op[n].disps->X_add_symbol |
d6ab8113 | 9749 | && (((reloc_type == BFD_RELOC_32 |
7b81dfbb AJ |
9750 | || reloc_type == BFD_RELOC_X86_64_32S |
9751 | || (reloc_type == BFD_RELOC_64 | |
9752 | && object_64bit)) | |
d6ab8113 JB |
9753 | && (i.op[n].disps->X_op == O_symbol |
9754 | || (i.op[n].disps->X_op == O_add | |
9755 | && ((symbol_get_value_expression | |
9756 | (i.op[n].disps->X_op_symbol)->X_op) | |
9757 | == O_subtract)))) | |
9758 | || reloc_type == BFD_RELOC_32_PCREL)) | |
2bbd9c25 | 9759 | { |
4fa24527 | 9760 | if (!object_64bit) |
7b81dfbb AJ |
9761 | { |
9762 | reloc_type = BFD_RELOC_386_GOTPC; | |
e379e5f3 | 9763 | i.has_gotpc_tls_reloc = TRUE; |
d583596c JB |
9764 | i.op[n].imms->X_add_number += |
9765 | encoding_length (insn_start_frag, insn_start_off, p); | |
7b81dfbb AJ |
9766 | } |
9767 | else if (reloc_type == BFD_RELOC_64) | |
9768 | reloc_type = BFD_RELOC_X86_64_GOTPC64; | |
d6ab8113 | 9769 | else |
7b81dfbb AJ |
9770 | /* Don't do the adjustment for x86-64, as there |
9771 | the pcrel addressing is relative to the _next_ | |
9772 | insn, and that is taken care of in other code. */ | |
d6ab8113 | 9773 | reloc_type = BFD_RELOC_X86_64_GOTPC32; |
2bbd9c25 | 9774 | } |
e379e5f3 L |
9775 | else if (align_branch_power) |
9776 | { | |
9777 | switch (reloc_type) | |
9778 | { | |
9779 | case BFD_RELOC_386_TLS_GD: | |
9780 | case BFD_RELOC_386_TLS_LDM: | |
9781 | case BFD_RELOC_386_TLS_IE: | |
9782 | case BFD_RELOC_386_TLS_IE_32: | |
9783 | case BFD_RELOC_386_TLS_GOTIE: | |
9784 | case BFD_RELOC_386_TLS_GOTDESC: | |
9785 | case BFD_RELOC_386_TLS_DESC_CALL: | |
9786 | case BFD_RELOC_X86_64_TLSGD: | |
9787 | case BFD_RELOC_X86_64_TLSLD: | |
9788 | case BFD_RELOC_X86_64_GOTTPOFF: | |
9789 | case BFD_RELOC_X86_64_GOTPC32_TLSDESC: | |
9790 | case BFD_RELOC_X86_64_TLSDESC_CALL: | |
9791 | i.has_gotpc_tls_reloc = TRUE; | |
9792 | default: | |
9793 | break; | |
9794 | } | |
9795 | } | |
02a86693 L |
9796 | fixP = fix_new_exp (frag_now, p - frag_now->fr_literal, |
9797 | size, i.op[n].disps, pcrel, | |
9798 | reloc_type); | |
9799 | /* Check for "call/jmp *mem", "mov mem, %reg", | |
9800 | "test %reg, mem" and "binop mem, %reg" where binop | |
9801 | is one of adc, add, and, cmp, or, sbb, sub, xor | |
e60f4d3b L |
9802 | instructions without data prefix. Always generate |
9803 | R_386_GOT32X for "sym*GOT" operand in 32-bit mode. */ | |
9804 | if (i.prefix[DATA_PREFIX] == 0 | |
9805 | && (generate_relax_relocations | |
9806 | || (!object_64bit | |
9807 | && i.rm.mode == 0 | |
9808 | && i.rm.regmem == 5)) | |
0cb4071e L |
9809 | && (i.rm.mode == 2 |
9810 | || (i.rm.mode == 0 && i.rm.regmem == 5)) | |
2ae4c703 | 9811 | && !is_any_vex_encoding(&i.tm) |
02a86693 L |
9812 | && ((i.operands == 1 |
9813 | && i.tm.base_opcode == 0xff | |
9814 | && (i.rm.reg == 2 || i.rm.reg == 4)) | |
9815 | || (i.operands == 2 | |
9816 | && (i.tm.base_opcode == 0x8b | |
9817 | || i.tm.base_opcode == 0x85 | |
2ae4c703 | 9818 | || (i.tm.base_opcode & ~0x38) == 0x03)))) |
02a86693 L |
9819 | { |
9820 | if (object_64bit) | |
9821 | { | |
9822 | fixP->fx_tcbit = i.rex != 0; | |
9823 | if (i.base_reg | |
e968fc9b | 9824 | && (i.base_reg->reg_num == RegIP)) |
02a86693 L |
9825 | fixP->fx_tcbit2 = 1; |
9826 | } | |
9827 | else | |
9828 | fixP->fx_tcbit2 = 1; | |
9829 | } | |
29b0f896 AM |
9830 | } |
9831 | } | |
9832 | } | |
9833 | } | |
252b5132 | 9834 | |
29b0f896 | 9835 | static void |
64e74474 | 9836 | output_imm (fragS *insn_start_frag, offsetT insn_start_off) |
29b0f896 AM |
9837 | { |
9838 | char *p; | |
9839 | unsigned int n; | |
252b5132 | 9840 | |
29b0f896 AM |
9841 | for (n = 0; n < i.operands; n++) |
9842 | { | |
43234a1e L |
9843 | /* Skip SAE/RC Imm operand in EVEX. They are already handled. */ |
9844 | if (i.rounding && (int) n == i.rounding->operand) | |
9845 | continue; | |
9846 | ||
40fb9820 | 9847 | if (operand_type_check (i.types[n], imm)) |
29b0f896 | 9848 | { |
48ef937e JB |
9849 | int size = imm_size (n); |
9850 | ||
9851 | if (now_seg == absolute_section) | |
9852 | abs_section_offset += size; | |
9853 | else if (i.op[n].imms->X_op == O_constant) | |
29b0f896 | 9854 | { |
29b0f896 | 9855 | offsetT val; |
b4cac588 | 9856 | |
29b0f896 AM |
9857 | val = offset_in_range (i.op[n].imms->X_add_number, |
9858 | size); | |
9859 | p = frag_more (size); | |
9860 | md_number_to_chars (p, val, size); | |
9861 | } | |
9862 | else | |
9863 | { | |
9864 | /* Not absolute_section. | |
9865 | Need a 32-bit fixup (don't support 8bit | |
9866 | non-absolute imms). Try to support other | |
9867 | sizes ... */ | |
f86103b7 | 9868 | enum bfd_reloc_code_real reloc_type; |
e205caa7 | 9869 | int sign; |
29b0f896 | 9870 | |
40fb9820 | 9871 | if (i.types[n].bitfield.imm32s |
a7d61044 | 9872 | && (i.suffix == QWORD_MNEM_SUFFIX |
40fb9820 | 9873 | || (!i.suffix && i.tm.opcode_modifier.no_lsuf))) |
29b0f896 | 9874 | sign = 1; |
e205caa7 L |
9875 | else |
9876 | sign = 0; | |
520dc8e8 | 9877 | |
29b0f896 | 9878 | p = frag_more (size); |
d258b828 | 9879 | reloc_type = reloc (size, 0, sign, i.reloc[n]); |
f86103b7 | 9880 | |
2bbd9c25 JJ |
9881 | /* This is tough to explain. We end up with this one if we |
9882 | * have operands that look like | |
9883 | * "_GLOBAL_OFFSET_TABLE_+[.-.L284]". The goal here is to | |
9884 | * obtain the absolute address of the GOT, and it is strongly | |
9885 | * preferable from a performance point of view to avoid using | |
9886 | * a runtime relocation for this. The actual sequence of | |
9887 | * instructions often look something like: | |
9888 | * | |
9889 | * call .L66 | |
9890 | * .L66: | |
9891 | * popl %ebx | |
9892 | * addl $_GLOBAL_OFFSET_TABLE_+[.-.L66],%ebx | |
9893 | * | |
9894 | * The call and pop essentially return the absolute address | |
9895 | * of the label .L66 and store it in %ebx. The linker itself | |
9896 | * will ultimately change the first operand of the addl so | |
9897 | * that %ebx points to the GOT, but to keep things simple, the | |
9898 | * .o file must have this operand set so that it generates not | |
9899 | * the absolute address of .L66, but the absolute address of | |
9900 | * itself. This allows the linker itself simply treat a GOTPC | |
9901 | * relocation as asking for a pcrel offset to the GOT to be | |
9902 | * added in, and the addend of the relocation is stored in the | |
9903 | * operand field for the instruction itself. | |
9904 | * | |
9905 | * Our job here is to fix the operand so that it would add | |
9906 | * the correct offset so that %ebx would point to itself. The | |
9907 | * thing that is tricky is that .-.L66 will point to the | |
9908 | * beginning of the instruction, so we need to further modify | |
9909 | * the operand so that it will point to itself. There are | |
9910 | * other cases where you have something like: | |
9911 | * | |
9912 | * .long $_GLOBAL_OFFSET_TABLE_+[.-.L66] | |
9913 | * | |
9914 | * and here no correction would be required. Internally in | |
9915 | * the assembler we treat operands of this form as not being | |
9916 | * pcrel since the '.' is explicitly mentioned, and I wonder | |
9917 | * whether it would simplify matters to do it this way. Who | |
9918 | * knows. In earlier versions of the PIC patches, the | |
9919 | * pcrel_adjust field was used to store the correction, but | |
9920 | * since the expression is not pcrel, I felt it would be | |
9921 | * confusing to do it this way. */ | |
9922 | ||
d6ab8113 | 9923 | if ((reloc_type == BFD_RELOC_32 |
7b81dfbb AJ |
9924 | || reloc_type == BFD_RELOC_X86_64_32S |
9925 | || reloc_type == BFD_RELOC_64) | |
29b0f896 AM |
9926 | && GOT_symbol |
9927 | && GOT_symbol == i.op[n].imms->X_add_symbol | |
9928 | && (i.op[n].imms->X_op == O_symbol | |
9929 | || (i.op[n].imms->X_op == O_add | |
9930 | && ((symbol_get_value_expression | |
9931 | (i.op[n].imms->X_op_symbol)->X_op) | |
9932 | == O_subtract)))) | |
9933 | { | |
4fa24527 | 9934 | if (!object_64bit) |
d6ab8113 | 9935 | reloc_type = BFD_RELOC_386_GOTPC; |
7b81dfbb | 9936 | else if (size == 4) |
d6ab8113 | 9937 | reloc_type = BFD_RELOC_X86_64_GOTPC32; |
7b81dfbb AJ |
9938 | else if (size == 8) |
9939 | reloc_type = BFD_RELOC_X86_64_GOTPC64; | |
e379e5f3 | 9940 | i.has_gotpc_tls_reloc = TRUE; |
d583596c JB |
9941 | i.op[n].imms->X_add_number += |
9942 | encoding_length (insn_start_frag, insn_start_off, p); | |
29b0f896 | 9943 | } |
29b0f896 AM |
9944 | fix_new_exp (frag_now, p - frag_now->fr_literal, size, |
9945 | i.op[n].imms, 0, reloc_type); | |
9946 | } | |
9947 | } | |
9948 | } | |
252b5132 RH |
9949 | } |
9950 | \f | |
d182319b JB |
9951 | /* x86_cons_fix_new is called via the expression parsing code when a |
9952 | reloc is needed. We use this hook to get the correct .got reloc. */ | |
d182319b JB |
9953 | static int cons_sign = -1; |
9954 | ||
9955 | void | |
e3bb37b5 | 9956 | x86_cons_fix_new (fragS *frag, unsigned int off, unsigned int len, |
62ebcb5c | 9957 | expressionS *exp, bfd_reloc_code_real_type r) |
d182319b | 9958 | { |
d258b828 | 9959 | r = reloc (len, 0, cons_sign, r); |
d182319b JB |
9960 | |
9961 | #ifdef TE_PE | |
9962 | if (exp->X_op == O_secrel) | |
9963 | { | |
9964 | exp->X_op = O_symbol; | |
9965 | r = BFD_RELOC_32_SECREL; | |
9966 | } | |
9967 | #endif | |
9968 | ||
9969 | fix_new_exp (frag, off, len, exp, 0, r); | |
9970 | } | |
9971 | ||
357d1bd8 L |
9972 | /* Export the ABI address size for use by TC_ADDRESS_BYTES for the |
9973 | purpose of the `.dc.a' internal pseudo-op. */ | |
9974 | ||
9975 | int | |
9976 | x86_address_bytes (void) | |
9977 | { | |
9978 | if ((stdoutput->arch_info->mach & bfd_mach_x64_32)) | |
9979 | return 4; | |
9980 | return stdoutput->arch_info->bits_per_address / 8; | |
9981 | } | |
9982 | ||
d382c579 TG |
9983 | #if !(defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined (OBJ_MACH_O)) \ |
9984 | || defined (LEX_AT) | |
d258b828 | 9985 | # define lex_got(reloc, adjust, types) NULL |
718ddfc0 | 9986 | #else |
f3c180ae AM |
9987 | /* Parse operands of the form |
9988 | <symbol>@GOTOFF+<nnn> | |
9989 | and similar .plt or .got references. | |
9990 | ||
9991 | If we find one, set up the correct relocation in RELOC and copy the | |
9992 | input string, minus the `@GOTOFF' into a malloc'd buffer for | |
9993 | parsing by the calling routine. Return this buffer, and if ADJUST | |
9994 | is non-null set it to the length of the string we removed from the | |
9995 | input line. Otherwise return NULL. */ | |
9996 | static char * | |
91d6fa6a | 9997 | lex_got (enum bfd_reloc_code_real *rel, |
64e74474 | 9998 | int *adjust, |
d258b828 | 9999 | i386_operand_type *types) |
f3c180ae | 10000 | { |
7b81dfbb AJ |
10001 | /* Some of the relocations depend on the size of what field is to |
10002 | be relocated. But in our callers i386_immediate and i386_displacement | |
10003 | we don't yet know the operand size (this will be set by insn | |
10004 | matching). Hence we record the word32 relocation here, | |
10005 | and adjust the reloc according to the real size in reloc(). */ | |
f3c180ae AM |
10006 | static const struct { |
10007 | const char *str; | |
cff8d58a | 10008 | int len; |
4fa24527 | 10009 | const enum bfd_reloc_code_real rel[2]; |
40fb9820 | 10010 | const i386_operand_type types64; |
f3c180ae | 10011 | } gotrel[] = { |
8ce3d284 | 10012 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
8fd4256d L |
10013 | { STRING_COMMA_LEN ("SIZE"), { BFD_RELOC_SIZE32, |
10014 | BFD_RELOC_SIZE32 }, | |
10015 | OPERAND_TYPE_IMM32_64 }, | |
8ce3d284 | 10016 | #endif |
cff8d58a L |
10017 | { STRING_COMMA_LEN ("PLTOFF"), { _dummy_first_bfd_reloc_code_real, |
10018 | BFD_RELOC_X86_64_PLTOFF64 }, | |
40fb9820 | 10019 | OPERAND_TYPE_IMM64 }, |
cff8d58a L |
10020 | { STRING_COMMA_LEN ("PLT"), { BFD_RELOC_386_PLT32, |
10021 | BFD_RELOC_X86_64_PLT32 }, | |
40fb9820 | 10022 | OPERAND_TYPE_IMM32_32S_DISP32 }, |
cff8d58a L |
10023 | { STRING_COMMA_LEN ("GOTPLT"), { _dummy_first_bfd_reloc_code_real, |
10024 | BFD_RELOC_X86_64_GOTPLT64 }, | |
40fb9820 | 10025 | OPERAND_TYPE_IMM64_DISP64 }, |
cff8d58a L |
10026 | { STRING_COMMA_LEN ("GOTOFF"), { BFD_RELOC_386_GOTOFF, |
10027 | BFD_RELOC_X86_64_GOTOFF64 }, | |
40fb9820 | 10028 | OPERAND_TYPE_IMM64_DISP64 }, |
cff8d58a L |
10029 | { STRING_COMMA_LEN ("GOTPCREL"), { _dummy_first_bfd_reloc_code_real, |
10030 | BFD_RELOC_X86_64_GOTPCREL }, | |
40fb9820 | 10031 | OPERAND_TYPE_IMM32_32S_DISP32 }, |
cff8d58a L |
10032 | { STRING_COMMA_LEN ("TLSGD"), { BFD_RELOC_386_TLS_GD, |
10033 | BFD_RELOC_X86_64_TLSGD }, | |
40fb9820 | 10034 | OPERAND_TYPE_IMM32_32S_DISP32 }, |
cff8d58a L |
10035 | { STRING_COMMA_LEN ("TLSLDM"), { BFD_RELOC_386_TLS_LDM, |
10036 | _dummy_first_bfd_reloc_code_real }, | |
40fb9820 | 10037 | OPERAND_TYPE_NONE }, |
cff8d58a L |
10038 | { STRING_COMMA_LEN ("TLSLD"), { _dummy_first_bfd_reloc_code_real, |
10039 | BFD_RELOC_X86_64_TLSLD }, | |
40fb9820 | 10040 | OPERAND_TYPE_IMM32_32S_DISP32 }, |
cff8d58a L |
10041 | { STRING_COMMA_LEN ("GOTTPOFF"), { BFD_RELOC_386_TLS_IE_32, |
10042 | BFD_RELOC_X86_64_GOTTPOFF }, | |
40fb9820 | 10043 | OPERAND_TYPE_IMM32_32S_DISP32 }, |
cff8d58a L |
10044 | { STRING_COMMA_LEN ("TPOFF"), { BFD_RELOC_386_TLS_LE_32, |
10045 | BFD_RELOC_X86_64_TPOFF32 }, | |
40fb9820 | 10046 | OPERAND_TYPE_IMM32_32S_64_DISP32_64 }, |
cff8d58a L |
10047 | { STRING_COMMA_LEN ("NTPOFF"), { BFD_RELOC_386_TLS_LE, |
10048 | _dummy_first_bfd_reloc_code_real }, | |
40fb9820 | 10049 | OPERAND_TYPE_NONE }, |
cff8d58a L |
10050 | { STRING_COMMA_LEN ("DTPOFF"), { BFD_RELOC_386_TLS_LDO_32, |
10051 | BFD_RELOC_X86_64_DTPOFF32 }, | |
40fb9820 | 10052 | OPERAND_TYPE_IMM32_32S_64_DISP32_64 }, |
cff8d58a L |
10053 | { STRING_COMMA_LEN ("GOTNTPOFF"),{ BFD_RELOC_386_TLS_GOTIE, |
10054 | _dummy_first_bfd_reloc_code_real }, | |
40fb9820 | 10055 | OPERAND_TYPE_NONE }, |
cff8d58a L |
10056 | { STRING_COMMA_LEN ("INDNTPOFF"),{ BFD_RELOC_386_TLS_IE, |
10057 | _dummy_first_bfd_reloc_code_real }, | |
40fb9820 | 10058 | OPERAND_TYPE_NONE }, |
cff8d58a L |
10059 | { STRING_COMMA_LEN ("GOT"), { BFD_RELOC_386_GOT32, |
10060 | BFD_RELOC_X86_64_GOT32 }, | |
40fb9820 | 10061 | OPERAND_TYPE_IMM32_32S_64_DISP32 }, |
cff8d58a L |
10062 | { STRING_COMMA_LEN ("TLSDESC"), { BFD_RELOC_386_TLS_GOTDESC, |
10063 | BFD_RELOC_X86_64_GOTPC32_TLSDESC }, | |
40fb9820 | 10064 | OPERAND_TYPE_IMM32_32S_DISP32 }, |
cff8d58a L |
10065 | { STRING_COMMA_LEN ("TLSCALL"), { BFD_RELOC_386_TLS_DESC_CALL, |
10066 | BFD_RELOC_X86_64_TLSDESC_CALL }, | |
40fb9820 | 10067 | OPERAND_TYPE_IMM32_32S_DISP32 }, |
f3c180ae AM |
10068 | }; |
10069 | char *cp; | |
10070 | unsigned int j; | |
10071 | ||
d382c579 | 10072 | #if defined (OBJ_MAYBE_ELF) |
718ddfc0 JB |
10073 | if (!IS_ELF) |
10074 | return NULL; | |
d382c579 | 10075 | #endif |
718ddfc0 | 10076 | |
f3c180ae | 10077 | for (cp = input_line_pointer; *cp != '@'; cp++) |
67c11a9b | 10078 | if (is_end_of_line[(unsigned char) *cp] || *cp == ',') |
f3c180ae AM |
10079 | return NULL; |
10080 | ||
47465058 | 10081 | for (j = 0; j < ARRAY_SIZE (gotrel); j++) |
f3c180ae | 10082 | { |
cff8d58a | 10083 | int len = gotrel[j].len; |
28f81592 | 10084 | if (strncasecmp (cp + 1, gotrel[j].str, len) == 0) |
f3c180ae | 10085 | { |
4fa24527 | 10086 | if (gotrel[j].rel[object_64bit] != 0) |
f3c180ae | 10087 | { |
28f81592 AM |
10088 | int first, second; |
10089 | char *tmpbuf, *past_reloc; | |
f3c180ae | 10090 | |
91d6fa6a | 10091 | *rel = gotrel[j].rel[object_64bit]; |
f3c180ae | 10092 | |
3956db08 JB |
10093 | if (types) |
10094 | { | |
10095 | if (flag_code != CODE_64BIT) | |
40fb9820 L |
10096 | { |
10097 | types->bitfield.imm32 = 1; | |
10098 | types->bitfield.disp32 = 1; | |
10099 | } | |
3956db08 JB |
10100 | else |
10101 | *types = gotrel[j].types64; | |
10102 | } | |
10103 | ||
8fd4256d | 10104 | if (j != 0 && GOT_symbol == NULL) |
f3c180ae AM |
10105 | GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME); |
10106 | ||
28f81592 | 10107 | /* The length of the first part of our input line. */ |
f3c180ae | 10108 | first = cp - input_line_pointer; |
28f81592 AM |
10109 | |
10110 | /* The second part goes from after the reloc token until | |
67c11a9b | 10111 | (and including) an end_of_line char or comma. */ |
28f81592 | 10112 | past_reloc = cp + 1 + len; |
67c11a9b AM |
10113 | cp = past_reloc; |
10114 | while (!is_end_of_line[(unsigned char) *cp] && *cp != ',') | |
10115 | ++cp; | |
10116 | second = cp + 1 - past_reloc; | |
28f81592 AM |
10117 | |
10118 | /* Allocate and copy string. The trailing NUL shouldn't | |
10119 | be necessary, but be safe. */ | |
add39d23 | 10120 | tmpbuf = XNEWVEC (char, first + second + 2); |
f3c180ae | 10121 | memcpy (tmpbuf, input_line_pointer, first); |
0787a12d AM |
10122 | if (second != 0 && *past_reloc != ' ') |
10123 | /* Replace the relocation token with ' ', so that | |
10124 | errors like foo@GOTOFF1 will be detected. */ | |
10125 | tmpbuf[first++] = ' '; | |
af89796a L |
10126 | else |
10127 | /* Increment length by 1 if the relocation token is | |
10128 | removed. */ | |
10129 | len++; | |
10130 | if (adjust) | |
10131 | *adjust = len; | |
0787a12d AM |
10132 | memcpy (tmpbuf + first, past_reloc, second); |
10133 | tmpbuf[first + second] = '\0'; | |
f3c180ae AM |
10134 | return tmpbuf; |
10135 | } | |
10136 | ||
4fa24527 JB |
10137 | as_bad (_("@%s reloc is not supported with %d-bit output format"), |
10138 | gotrel[j].str, 1 << (5 + object_64bit)); | |
f3c180ae AM |
10139 | return NULL; |
10140 | } | |
10141 | } | |
10142 | ||
10143 | /* Might be a symbol version string. Don't as_bad here. */ | |
10144 | return NULL; | |
10145 | } | |
4e4f7c87 | 10146 | #endif |
f3c180ae | 10147 | |
a988325c NC |
10148 | #ifdef TE_PE |
10149 | #ifdef lex_got | |
10150 | #undef lex_got | |
10151 | #endif | |
10152 | /* Parse operands of the form | |
10153 | <symbol>@SECREL32+<nnn> | |
10154 | ||
10155 | If we find one, set up the correct relocation in RELOC and copy the | |
10156 | input string, minus the `@SECREL32' into a malloc'd buffer for | |
10157 | parsing by the calling routine. Return this buffer, and if ADJUST | |
10158 | is non-null set it to the length of the string we removed from the | |
34bca508 L |
10159 | input line. Otherwise return NULL. |
10160 | ||
a988325c NC |
10161 | This function is copied from the ELF version above adjusted for PE targets. */ |
10162 | ||
10163 | static char * | |
10164 | lex_got (enum bfd_reloc_code_real *rel ATTRIBUTE_UNUSED, | |
10165 | int *adjust ATTRIBUTE_UNUSED, | |
d258b828 | 10166 | i386_operand_type *types) |
a988325c NC |
10167 | { |
10168 | static const struct | |
10169 | { | |
10170 | const char *str; | |
10171 | int len; | |
10172 | const enum bfd_reloc_code_real rel[2]; | |
10173 | const i386_operand_type types64; | |
10174 | } | |
10175 | gotrel[] = | |
10176 | { | |
10177 | { STRING_COMMA_LEN ("SECREL32"), { BFD_RELOC_32_SECREL, | |
10178 | BFD_RELOC_32_SECREL }, | |
10179 | OPERAND_TYPE_IMM32_32S_64_DISP32_64 }, | |
10180 | }; | |
10181 | ||
10182 | char *cp; | |
10183 | unsigned j; | |
10184 | ||
10185 | for (cp = input_line_pointer; *cp != '@'; cp++) | |
10186 | if (is_end_of_line[(unsigned char) *cp] || *cp == ',') | |
10187 | return NULL; | |
10188 | ||
10189 | for (j = 0; j < ARRAY_SIZE (gotrel); j++) | |
10190 | { | |
10191 | int len = gotrel[j].len; | |
10192 | ||
10193 | if (strncasecmp (cp + 1, gotrel[j].str, len) == 0) | |
10194 | { | |
10195 | if (gotrel[j].rel[object_64bit] != 0) | |
10196 | { | |
10197 | int first, second; | |
10198 | char *tmpbuf, *past_reloc; | |
10199 | ||
10200 | *rel = gotrel[j].rel[object_64bit]; | |
10201 | if (adjust) | |
10202 | *adjust = len; | |
10203 | ||
10204 | if (types) | |
10205 | { | |
10206 | if (flag_code != CODE_64BIT) | |
10207 | { | |
10208 | types->bitfield.imm32 = 1; | |
10209 | types->bitfield.disp32 = 1; | |
10210 | } | |
10211 | else | |
10212 | *types = gotrel[j].types64; | |
10213 | } | |
10214 | ||
10215 | /* The length of the first part of our input line. */ | |
10216 | first = cp - input_line_pointer; | |
10217 | ||
10218 | /* The second part goes from after the reloc token until | |
10219 | (and including) an end_of_line char or comma. */ | |
10220 | past_reloc = cp + 1 + len; | |
10221 | cp = past_reloc; | |
10222 | while (!is_end_of_line[(unsigned char) *cp] && *cp != ',') | |
10223 | ++cp; | |
10224 | second = cp + 1 - past_reloc; | |
10225 | ||
10226 | /* Allocate and copy string. The trailing NUL shouldn't | |
10227 | be necessary, but be safe. */ | |
add39d23 | 10228 | tmpbuf = XNEWVEC (char, first + second + 2); |
a988325c NC |
10229 | memcpy (tmpbuf, input_line_pointer, first); |
10230 | if (second != 0 && *past_reloc != ' ') | |
10231 | /* Replace the relocation token with ' ', so that | |
10232 | errors like foo@SECLREL321 will be detected. */ | |
10233 | tmpbuf[first++] = ' '; | |
10234 | memcpy (tmpbuf + first, past_reloc, second); | |
10235 | tmpbuf[first + second] = '\0'; | |
10236 | return tmpbuf; | |
10237 | } | |
10238 | ||
10239 | as_bad (_("@%s reloc is not supported with %d-bit output format"), | |
10240 | gotrel[j].str, 1 << (5 + object_64bit)); | |
10241 | return NULL; | |
10242 | } | |
10243 | } | |
10244 | ||
10245 | /* Might be a symbol version string. Don't as_bad here. */ | |
10246 | return NULL; | |
10247 | } | |
10248 | ||
10249 | #endif /* TE_PE */ | |
10250 | ||
62ebcb5c | 10251 | bfd_reloc_code_real_type |
e3bb37b5 | 10252 | x86_cons (expressionS *exp, int size) |
f3c180ae | 10253 | { |
62ebcb5c AM |
10254 | bfd_reloc_code_real_type got_reloc = NO_RELOC; |
10255 | ||
ee86248c JB |
10256 | intel_syntax = -intel_syntax; |
10257 | ||
3c7b9c2c | 10258 | exp->X_md = 0; |
4fa24527 | 10259 | if (size == 4 || (object_64bit && size == 8)) |
f3c180ae AM |
10260 | { |
10261 | /* Handle @GOTOFF and the like in an expression. */ | |
10262 | char *save; | |
10263 | char *gotfree_input_line; | |
4a57f2cf | 10264 | int adjust = 0; |
f3c180ae AM |
10265 | |
10266 | save = input_line_pointer; | |
d258b828 | 10267 | gotfree_input_line = lex_got (&got_reloc, &adjust, NULL); |
f3c180ae AM |
10268 | if (gotfree_input_line) |
10269 | input_line_pointer = gotfree_input_line; | |
10270 | ||
10271 | expression (exp); | |
10272 | ||
10273 | if (gotfree_input_line) | |
10274 | { | |
10275 | /* expression () has merrily parsed up to the end of line, | |
10276 | or a comma - in the wrong buffer. Transfer how far | |
10277 | input_line_pointer has moved to the right buffer. */ | |
10278 | input_line_pointer = (save | |
10279 | + (input_line_pointer - gotfree_input_line) | |
10280 | + adjust); | |
10281 | free (gotfree_input_line); | |
3992d3b7 AM |
10282 | if (exp->X_op == O_constant |
10283 | || exp->X_op == O_absent | |
10284 | || exp->X_op == O_illegal | |
0398aac5 | 10285 | || exp->X_op == O_register |
3992d3b7 AM |
10286 | || exp->X_op == O_big) |
10287 | { | |
10288 | char c = *input_line_pointer; | |
10289 | *input_line_pointer = 0; | |
10290 | as_bad (_("missing or invalid expression `%s'"), save); | |
10291 | *input_line_pointer = c; | |
10292 | } | |
b9519cfe L |
10293 | else if ((got_reloc == BFD_RELOC_386_PLT32 |
10294 | || got_reloc == BFD_RELOC_X86_64_PLT32) | |
10295 | && exp->X_op != O_symbol) | |
10296 | { | |
10297 | char c = *input_line_pointer; | |
10298 | *input_line_pointer = 0; | |
10299 | as_bad (_("invalid PLT expression `%s'"), save); | |
10300 | *input_line_pointer = c; | |
10301 | } | |
f3c180ae AM |
10302 | } |
10303 | } | |
10304 | else | |
10305 | expression (exp); | |
ee86248c JB |
10306 | |
10307 | intel_syntax = -intel_syntax; | |
10308 | ||
10309 | if (intel_syntax) | |
10310 | i386_intel_simplify (exp); | |
62ebcb5c AM |
10311 | |
10312 | return got_reloc; | |
f3c180ae | 10313 | } |
f3c180ae | 10314 | |
9f32dd5b L |
10315 | static void |
10316 | signed_cons (int size) | |
6482c264 | 10317 | { |
d182319b JB |
10318 | if (flag_code == CODE_64BIT) |
10319 | cons_sign = 1; | |
10320 | cons (size); | |
10321 | cons_sign = -1; | |
6482c264 NC |
10322 | } |
10323 | ||
d182319b | 10324 | #ifdef TE_PE |
6482c264 | 10325 | static void |
7016a5d5 | 10326 | pe_directive_secrel (int dummy ATTRIBUTE_UNUSED) |
6482c264 NC |
10327 | { |
10328 | expressionS exp; | |
10329 | ||
10330 | do | |
10331 | { | |
10332 | expression (&exp); | |
10333 | if (exp.X_op == O_symbol) | |
10334 | exp.X_op = O_secrel; | |
10335 | ||
10336 | emit_expr (&exp, 4); | |
10337 | } | |
10338 | while (*input_line_pointer++ == ','); | |
10339 | ||
10340 | input_line_pointer--; | |
10341 | demand_empty_rest_of_line (); | |
10342 | } | |
6482c264 NC |
10343 | #endif |
10344 | ||
43234a1e L |
10345 | /* Handle Vector operations. */ |
10346 | ||
10347 | static char * | |
10348 | check_VecOperations (char *op_string, char *op_end) | |
10349 | { | |
10350 | const reg_entry *mask; | |
10351 | const char *saved; | |
10352 | char *end_op; | |
10353 | ||
10354 | while (*op_string | |
10355 | && (op_end == NULL || op_string < op_end)) | |
10356 | { | |
10357 | saved = op_string; | |
10358 | if (*op_string == '{') | |
10359 | { | |
10360 | op_string++; | |
10361 | ||
10362 | /* Check broadcasts. */ | |
10363 | if (strncmp (op_string, "1to", 3) == 0) | |
10364 | { | |
10365 | int bcst_type; | |
10366 | ||
10367 | if (i.broadcast) | |
10368 | goto duplicated_vec_op; | |
10369 | ||
10370 | op_string += 3; | |
10371 | if (*op_string == '8') | |
8e6e0792 | 10372 | bcst_type = 8; |
b28d1bda | 10373 | else if (*op_string == '4') |
8e6e0792 | 10374 | bcst_type = 4; |
b28d1bda | 10375 | else if (*op_string == '2') |
8e6e0792 | 10376 | bcst_type = 2; |
43234a1e L |
10377 | else if (*op_string == '1' |
10378 | && *(op_string+1) == '6') | |
10379 | { | |
8e6e0792 | 10380 | bcst_type = 16; |
43234a1e L |
10381 | op_string++; |
10382 | } | |
10383 | else | |
10384 | { | |
10385 | as_bad (_("Unsupported broadcast: `%s'"), saved); | |
10386 | return NULL; | |
10387 | } | |
10388 | op_string++; | |
10389 | ||
10390 | broadcast_op.type = bcst_type; | |
10391 | broadcast_op.operand = this_operand; | |
1f75763a | 10392 | broadcast_op.bytes = 0; |
43234a1e L |
10393 | i.broadcast = &broadcast_op; |
10394 | } | |
10395 | /* Check masking operation. */ | |
10396 | else if ((mask = parse_register (op_string, &end_op)) != NULL) | |
10397 | { | |
8a6fb3f9 JB |
10398 | if (mask == &bad_reg) |
10399 | return NULL; | |
10400 | ||
43234a1e | 10401 | /* k0 can't be used for write mask. */ |
f74a6307 | 10402 | if (mask->reg_type.bitfield.class != RegMask || !mask->reg_num) |
43234a1e | 10403 | { |
6d2cd6b2 JB |
10404 | as_bad (_("`%s%s' can't be used for write mask"), |
10405 | register_prefix, mask->reg_name); | |
43234a1e L |
10406 | return NULL; |
10407 | } | |
10408 | ||
10409 | if (!i.mask) | |
10410 | { | |
10411 | mask_op.mask = mask; | |
10412 | mask_op.zeroing = 0; | |
10413 | mask_op.operand = this_operand; | |
10414 | i.mask = &mask_op; | |
10415 | } | |
10416 | else | |
10417 | { | |
10418 | if (i.mask->mask) | |
10419 | goto duplicated_vec_op; | |
10420 | ||
10421 | i.mask->mask = mask; | |
10422 | ||
10423 | /* Only "{z}" is allowed here. No need to check | |
10424 | zeroing mask explicitly. */ | |
10425 | if (i.mask->operand != this_operand) | |
10426 | { | |
10427 | as_bad (_("invalid write mask `%s'"), saved); | |
10428 | return NULL; | |
10429 | } | |
10430 | } | |
10431 | ||
10432 | op_string = end_op; | |
10433 | } | |
10434 | /* Check zeroing-flag for masking operation. */ | |
10435 | else if (*op_string == 'z') | |
10436 | { | |
10437 | if (!i.mask) | |
10438 | { | |
10439 | mask_op.mask = NULL; | |
10440 | mask_op.zeroing = 1; | |
10441 | mask_op.operand = this_operand; | |
10442 | i.mask = &mask_op; | |
10443 | } | |
10444 | else | |
10445 | { | |
10446 | if (i.mask->zeroing) | |
10447 | { | |
10448 | duplicated_vec_op: | |
10449 | as_bad (_("duplicated `%s'"), saved); | |
10450 | return NULL; | |
10451 | } | |
10452 | ||
10453 | i.mask->zeroing = 1; | |
10454 | ||
10455 | /* Only "{%k}" is allowed here. No need to check mask | |
10456 | register explicitly. */ | |
10457 | if (i.mask->operand != this_operand) | |
10458 | { | |
10459 | as_bad (_("invalid zeroing-masking `%s'"), | |
10460 | saved); | |
10461 | return NULL; | |
10462 | } | |
10463 | } | |
10464 | ||
10465 | op_string++; | |
10466 | } | |
10467 | else | |
10468 | goto unknown_vec_op; | |
10469 | ||
10470 | if (*op_string != '}') | |
10471 | { | |
10472 | as_bad (_("missing `}' in `%s'"), saved); | |
10473 | return NULL; | |
10474 | } | |
10475 | op_string++; | |
0ba3a731 L |
10476 | |
10477 | /* Strip whitespace since the addition of pseudo prefixes | |
10478 | changed how the scrubber treats '{'. */ | |
10479 | if (is_space_char (*op_string)) | |
10480 | ++op_string; | |
10481 | ||
43234a1e L |
10482 | continue; |
10483 | } | |
10484 | unknown_vec_op: | |
10485 | /* We don't know this one. */ | |
10486 | as_bad (_("unknown vector operation: `%s'"), saved); | |
10487 | return NULL; | |
10488 | } | |
10489 | ||
6d2cd6b2 JB |
10490 | if (i.mask && i.mask->zeroing && !i.mask->mask) |
10491 | { | |
10492 | as_bad (_("zeroing-masking only allowed with write mask")); | |
10493 | return NULL; | |
10494 | } | |
10495 | ||
43234a1e L |
10496 | return op_string; |
10497 | } | |
10498 | ||
252b5132 | 10499 | static int |
70e41ade | 10500 | i386_immediate (char *imm_start) |
252b5132 RH |
10501 | { |
10502 | char *save_input_line_pointer; | |
f3c180ae | 10503 | char *gotfree_input_line; |
252b5132 | 10504 | segT exp_seg = 0; |
47926f60 | 10505 | expressionS *exp; |
40fb9820 L |
10506 | i386_operand_type types; |
10507 | ||
0dfbf9d7 | 10508 | operand_type_set (&types, ~0); |
252b5132 RH |
10509 | |
10510 | if (i.imm_operands == MAX_IMMEDIATE_OPERANDS) | |
10511 | { | |
31b2323c L |
10512 | as_bad (_("at most %d immediate operands are allowed"), |
10513 | MAX_IMMEDIATE_OPERANDS); | |
252b5132 RH |
10514 | return 0; |
10515 | } | |
10516 | ||
10517 | exp = &im_expressions[i.imm_operands++]; | |
520dc8e8 | 10518 | i.op[this_operand].imms = exp; |
252b5132 RH |
10519 | |
10520 | if (is_space_char (*imm_start)) | |
10521 | ++imm_start; | |
10522 | ||
10523 | save_input_line_pointer = input_line_pointer; | |
10524 | input_line_pointer = imm_start; | |
10525 | ||
d258b828 | 10526 | gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types); |
f3c180ae AM |
10527 | if (gotfree_input_line) |
10528 | input_line_pointer = gotfree_input_line; | |
252b5132 RH |
10529 | |
10530 | exp_seg = expression (exp); | |
10531 | ||
83183c0c | 10532 | SKIP_WHITESPACE (); |
43234a1e L |
10533 | |
10534 | /* Handle vector operations. */ | |
10535 | if (*input_line_pointer == '{') | |
10536 | { | |
10537 | input_line_pointer = check_VecOperations (input_line_pointer, | |
10538 | NULL); | |
10539 | if (input_line_pointer == NULL) | |
10540 | return 0; | |
10541 | } | |
10542 | ||
252b5132 | 10543 | if (*input_line_pointer) |
f3c180ae | 10544 | as_bad (_("junk `%s' after expression"), input_line_pointer); |
252b5132 RH |
10545 | |
10546 | input_line_pointer = save_input_line_pointer; | |
f3c180ae | 10547 | if (gotfree_input_line) |
ee86248c JB |
10548 | { |
10549 | free (gotfree_input_line); | |
10550 | ||
10551 | if (exp->X_op == O_constant || exp->X_op == O_register) | |
10552 | exp->X_op = O_illegal; | |
10553 | } | |
10554 | ||
10555 | return i386_finalize_immediate (exp_seg, exp, types, imm_start); | |
10556 | } | |
252b5132 | 10557 | |
ee86248c JB |
10558 | static int |
10559 | i386_finalize_immediate (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp, | |
10560 | i386_operand_type types, const char *imm_start) | |
10561 | { | |
10562 | if (exp->X_op == O_absent || exp->X_op == O_illegal || exp->X_op == O_big) | |
252b5132 | 10563 | { |
313c53d1 L |
10564 | if (imm_start) |
10565 | as_bad (_("missing or invalid immediate expression `%s'"), | |
10566 | imm_start); | |
3992d3b7 | 10567 | return 0; |
252b5132 | 10568 | } |
3e73aa7c | 10569 | else if (exp->X_op == O_constant) |
252b5132 | 10570 | { |
47926f60 | 10571 | /* Size it properly later. */ |
40fb9820 | 10572 | i.types[this_operand].bitfield.imm64 = 1; |
13f864ae L |
10573 | /* If not 64bit, sign extend val. */ |
10574 | if (flag_code != CODE_64BIT | |
4eed87de AM |
10575 | && (exp->X_add_number & ~(((addressT) 2 << 31) - 1)) == 0) |
10576 | exp->X_add_number | |
10577 | = (exp->X_add_number ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31); | |
252b5132 | 10578 | } |
4c63da97 | 10579 | #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT)) |
f86103b7 | 10580 | else if (OUTPUT_FLAVOR == bfd_target_aout_flavour |
31312f95 | 10581 | && exp_seg != absolute_section |
47926f60 | 10582 | && exp_seg != text_section |
24eab124 AM |
10583 | && exp_seg != data_section |
10584 | && exp_seg != bss_section | |
10585 | && exp_seg != undefined_section | |
f86103b7 | 10586 | && !bfd_is_com_section (exp_seg)) |
252b5132 | 10587 | { |
d0b47220 | 10588 | as_bad (_("unimplemented segment %s in operand"), exp_seg->name); |
252b5132 RH |
10589 | return 0; |
10590 | } | |
10591 | #endif | |
a841bdf5 | 10592 | else if (!intel_syntax && exp_seg == reg_section) |
bb8f5920 | 10593 | { |
313c53d1 L |
10594 | if (imm_start) |
10595 | as_bad (_("illegal immediate register operand %s"), imm_start); | |
bb8f5920 L |
10596 | return 0; |
10597 | } | |
252b5132 RH |
10598 | else |
10599 | { | |
10600 | /* This is an address. The size of the address will be | |
24eab124 | 10601 | determined later, depending on destination register, |
3e73aa7c | 10602 | suffix, or the default for the section. */ |
40fb9820 L |
10603 | i.types[this_operand].bitfield.imm8 = 1; |
10604 | i.types[this_operand].bitfield.imm16 = 1; | |
10605 | i.types[this_operand].bitfield.imm32 = 1; | |
10606 | i.types[this_operand].bitfield.imm32s = 1; | |
10607 | i.types[this_operand].bitfield.imm64 = 1; | |
c6fb90c8 L |
10608 | i.types[this_operand] = operand_type_and (i.types[this_operand], |
10609 | types); | |
252b5132 RH |
10610 | } |
10611 | ||
10612 | return 1; | |
10613 | } | |
10614 | ||
551c1ca1 | 10615 | static char * |
e3bb37b5 | 10616 | i386_scale (char *scale) |
252b5132 | 10617 | { |
551c1ca1 AM |
10618 | offsetT val; |
10619 | char *save = input_line_pointer; | |
252b5132 | 10620 | |
551c1ca1 AM |
10621 | input_line_pointer = scale; |
10622 | val = get_absolute_expression (); | |
10623 | ||
10624 | switch (val) | |
252b5132 | 10625 | { |
551c1ca1 | 10626 | case 1: |
252b5132 RH |
10627 | i.log2_scale_factor = 0; |
10628 | break; | |
551c1ca1 | 10629 | case 2: |
252b5132 RH |
10630 | i.log2_scale_factor = 1; |
10631 | break; | |
551c1ca1 | 10632 | case 4: |
252b5132 RH |
10633 | i.log2_scale_factor = 2; |
10634 | break; | |
551c1ca1 | 10635 | case 8: |
252b5132 RH |
10636 | i.log2_scale_factor = 3; |
10637 | break; | |
10638 | default: | |
a724f0f4 JB |
10639 | { |
10640 | char sep = *input_line_pointer; | |
10641 | ||
10642 | *input_line_pointer = '\0'; | |
10643 | as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"), | |
10644 | scale); | |
10645 | *input_line_pointer = sep; | |
10646 | input_line_pointer = save; | |
10647 | return NULL; | |
10648 | } | |
252b5132 | 10649 | } |
29b0f896 | 10650 | if (i.log2_scale_factor != 0 && i.index_reg == 0) |
252b5132 RH |
10651 | { |
10652 | as_warn (_("scale factor of %d without an index register"), | |
24eab124 | 10653 | 1 << i.log2_scale_factor); |
252b5132 | 10654 | i.log2_scale_factor = 0; |
252b5132 | 10655 | } |
551c1ca1 AM |
10656 | scale = input_line_pointer; |
10657 | input_line_pointer = save; | |
10658 | return scale; | |
252b5132 RH |
10659 | } |
10660 | ||
252b5132 | 10661 | static int |
e3bb37b5 | 10662 | i386_displacement (char *disp_start, char *disp_end) |
252b5132 | 10663 | { |
29b0f896 | 10664 | expressionS *exp; |
252b5132 RH |
10665 | segT exp_seg = 0; |
10666 | char *save_input_line_pointer; | |
f3c180ae | 10667 | char *gotfree_input_line; |
40fb9820 L |
10668 | int override; |
10669 | i386_operand_type bigdisp, types = anydisp; | |
3992d3b7 | 10670 | int ret; |
252b5132 | 10671 | |
31b2323c L |
10672 | if (i.disp_operands == MAX_MEMORY_OPERANDS) |
10673 | { | |
10674 | as_bad (_("at most %d displacement operands are allowed"), | |
10675 | MAX_MEMORY_OPERANDS); | |
10676 | return 0; | |
10677 | } | |
10678 | ||
0dfbf9d7 | 10679 | operand_type_set (&bigdisp, 0); |
6f2f06be | 10680 | if (i.jumpabsolute |
48bcea9f | 10681 | || i.types[this_operand].bitfield.baseindex |
0cfa3eb3 JB |
10682 | || (current_templates->start->opcode_modifier.jump != JUMP |
10683 | && current_templates->start->opcode_modifier.jump != JUMP_DWORD)) | |
e05278af | 10684 | { |
48bcea9f | 10685 | i386_addressing_mode (); |
e05278af | 10686 | override = (i.prefix[ADDR_PREFIX] != 0); |
40fb9820 L |
10687 | if (flag_code == CODE_64BIT) |
10688 | { | |
10689 | if (!override) | |
10690 | { | |
10691 | bigdisp.bitfield.disp32s = 1; | |
10692 | bigdisp.bitfield.disp64 = 1; | |
10693 | } | |
48bcea9f JB |
10694 | else |
10695 | bigdisp.bitfield.disp32 = 1; | |
40fb9820 L |
10696 | } |
10697 | else if ((flag_code == CODE_16BIT) ^ override) | |
40fb9820 | 10698 | bigdisp.bitfield.disp16 = 1; |
48bcea9f JB |
10699 | else |
10700 | bigdisp.bitfield.disp32 = 1; | |
e05278af JB |
10701 | } |
10702 | else | |
10703 | { | |
376cd056 JB |
10704 | /* For PC-relative branches, the width of the displacement may be |
10705 | dependent upon data size, but is never dependent upon address size. | |
10706 | Also make sure to not unintentionally match against a non-PC-relative | |
10707 | branch template. */ | |
10708 | static templates aux_templates; | |
10709 | const insn_template *t = current_templates->start; | |
10710 | bfd_boolean has_intel64 = FALSE; | |
10711 | ||
10712 | aux_templates.start = t; | |
10713 | while (++t < current_templates->end) | |
10714 | { | |
10715 | if (t->opcode_modifier.jump | |
10716 | != current_templates->start->opcode_modifier.jump) | |
10717 | break; | |
4b5aaf5f | 10718 | if ((t->opcode_modifier.isa64 >= INTEL64)) |
376cd056 JB |
10719 | has_intel64 = TRUE; |
10720 | } | |
10721 | if (t < current_templates->end) | |
10722 | { | |
10723 | aux_templates.end = t; | |
10724 | current_templates = &aux_templates; | |
10725 | } | |
10726 | ||
e05278af | 10727 | override = (i.prefix[DATA_PREFIX] != 0); |
40fb9820 L |
10728 | if (flag_code == CODE_64BIT) |
10729 | { | |
376cd056 JB |
10730 | if ((override || i.suffix == WORD_MNEM_SUFFIX) |
10731 | && (!intel64 || !has_intel64)) | |
40fb9820 L |
10732 | bigdisp.bitfield.disp16 = 1; |
10733 | else | |
48bcea9f | 10734 | bigdisp.bitfield.disp32s = 1; |
40fb9820 L |
10735 | } |
10736 | else | |
e05278af JB |
10737 | { |
10738 | if (!override) | |
10739 | override = (i.suffix == (flag_code != CODE_16BIT | |
10740 | ? WORD_MNEM_SUFFIX | |
10741 | : LONG_MNEM_SUFFIX)); | |
40fb9820 L |
10742 | bigdisp.bitfield.disp32 = 1; |
10743 | if ((flag_code == CODE_16BIT) ^ override) | |
10744 | { | |
10745 | bigdisp.bitfield.disp32 = 0; | |
10746 | bigdisp.bitfield.disp16 = 1; | |
10747 | } | |
e05278af | 10748 | } |
e05278af | 10749 | } |
c6fb90c8 L |
10750 | i.types[this_operand] = operand_type_or (i.types[this_operand], |
10751 | bigdisp); | |
252b5132 RH |
10752 | |
10753 | exp = &disp_expressions[i.disp_operands]; | |
520dc8e8 | 10754 | i.op[this_operand].disps = exp; |
252b5132 RH |
10755 | i.disp_operands++; |
10756 | save_input_line_pointer = input_line_pointer; | |
10757 | input_line_pointer = disp_start; | |
10758 | END_STRING_AND_SAVE (disp_end); | |
10759 | ||
10760 | #ifndef GCC_ASM_O_HACK | |
10761 | #define GCC_ASM_O_HACK 0 | |
10762 | #endif | |
10763 | #if GCC_ASM_O_HACK | |
10764 | END_STRING_AND_SAVE (disp_end + 1); | |
40fb9820 | 10765 | if (i.types[this_operand].bitfield.baseIndex |
24eab124 | 10766 | && displacement_string_end[-1] == '+') |
252b5132 RH |
10767 | { |
10768 | /* This hack is to avoid a warning when using the "o" | |
24eab124 AM |
10769 | constraint within gcc asm statements. |
10770 | For instance: | |
10771 | ||
10772 | #define _set_tssldt_desc(n,addr,limit,type) \ | |
10773 | __asm__ __volatile__ ( \ | |
10774 | "movw %w2,%0\n\t" \ | |
10775 | "movw %w1,2+%0\n\t" \ | |
10776 | "rorl $16,%1\n\t" \ | |
10777 | "movb %b1,4+%0\n\t" \ | |
10778 | "movb %4,5+%0\n\t" \ | |
10779 | "movb $0,6+%0\n\t" \ | |
10780 | "movb %h1,7+%0\n\t" \ | |
10781 | "rorl $16,%1" \ | |
10782 | : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type)) | |
10783 | ||
10784 | This works great except that the output assembler ends | |
10785 | up looking a bit weird if it turns out that there is | |
10786 | no offset. You end up producing code that looks like: | |
10787 | ||
10788 | #APP | |
10789 | movw $235,(%eax) | |
10790 | movw %dx,2+(%eax) | |
10791 | rorl $16,%edx | |
10792 | movb %dl,4+(%eax) | |
10793 | movb $137,5+(%eax) | |
10794 | movb $0,6+(%eax) | |
10795 | movb %dh,7+(%eax) | |
10796 | rorl $16,%edx | |
10797 | #NO_APP | |
10798 | ||
47926f60 | 10799 | So here we provide the missing zero. */ |
24eab124 AM |
10800 | |
10801 | *displacement_string_end = '0'; | |
252b5132 RH |
10802 | } |
10803 | #endif | |
d258b828 | 10804 | gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types); |
f3c180ae AM |
10805 | if (gotfree_input_line) |
10806 | input_line_pointer = gotfree_input_line; | |
252b5132 | 10807 | |
24eab124 | 10808 | exp_seg = expression (exp); |
252b5132 | 10809 | |
636c26b0 AM |
10810 | SKIP_WHITESPACE (); |
10811 | if (*input_line_pointer) | |
10812 | as_bad (_("junk `%s' after expression"), input_line_pointer); | |
10813 | #if GCC_ASM_O_HACK | |
10814 | RESTORE_END_STRING (disp_end + 1); | |
10815 | #endif | |
636c26b0 | 10816 | input_line_pointer = save_input_line_pointer; |
636c26b0 | 10817 | if (gotfree_input_line) |
ee86248c JB |
10818 | { |
10819 | free (gotfree_input_line); | |
10820 | ||
10821 | if (exp->X_op == O_constant || exp->X_op == O_register) | |
10822 | exp->X_op = O_illegal; | |
10823 | } | |
10824 | ||
10825 | ret = i386_finalize_displacement (exp_seg, exp, types, disp_start); | |
10826 | ||
10827 | RESTORE_END_STRING (disp_end); | |
10828 | ||
10829 | return ret; | |
10830 | } | |
10831 | ||
10832 | static int | |
10833 | i386_finalize_displacement (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp, | |
10834 | i386_operand_type types, const char *disp_start) | |
10835 | { | |
10836 | i386_operand_type bigdisp; | |
10837 | int ret = 1; | |
636c26b0 | 10838 | |
24eab124 AM |
10839 | /* We do this to make sure that the section symbol is in |
10840 | the symbol table. We will ultimately change the relocation | |
47926f60 | 10841 | to be relative to the beginning of the section. */ |
1ae12ab7 | 10842 | if (i.reloc[this_operand] == BFD_RELOC_386_GOTOFF |
d6ab8113 JB |
10843 | || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL |
10844 | || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64) | |
24eab124 | 10845 | { |
636c26b0 | 10846 | if (exp->X_op != O_symbol) |
3992d3b7 | 10847 | goto inv_disp; |
636c26b0 | 10848 | |
e5cb08ac | 10849 | if (S_IS_LOCAL (exp->X_add_symbol) |
c64efb4b L |
10850 | && S_GET_SEGMENT (exp->X_add_symbol) != undefined_section |
10851 | && S_GET_SEGMENT (exp->X_add_symbol) != expr_section) | |
24eab124 | 10852 | section_symbol (S_GET_SEGMENT (exp->X_add_symbol)); |
24eab124 AM |
10853 | exp->X_op = O_subtract; |
10854 | exp->X_op_symbol = GOT_symbol; | |
1ae12ab7 | 10855 | if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL) |
29b0f896 | 10856 | i.reloc[this_operand] = BFD_RELOC_32_PCREL; |
d6ab8113 JB |
10857 | else if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64) |
10858 | i.reloc[this_operand] = BFD_RELOC_64; | |
23df1078 | 10859 | else |
29b0f896 | 10860 | i.reloc[this_operand] = BFD_RELOC_32; |
24eab124 | 10861 | } |
252b5132 | 10862 | |
3992d3b7 AM |
10863 | else if (exp->X_op == O_absent |
10864 | || exp->X_op == O_illegal | |
ee86248c | 10865 | || exp->X_op == O_big) |
2daf4fd8 | 10866 | { |
3992d3b7 AM |
10867 | inv_disp: |
10868 | as_bad (_("missing or invalid displacement expression `%s'"), | |
2daf4fd8 | 10869 | disp_start); |
3992d3b7 | 10870 | ret = 0; |
2daf4fd8 AM |
10871 | } |
10872 | ||
0e1147d9 L |
10873 | else if (flag_code == CODE_64BIT |
10874 | && !i.prefix[ADDR_PREFIX] | |
10875 | && exp->X_op == O_constant) | |
10876 | { | |
10877 | /* Since displacement is signed extended to 64bit, don't allow | |
10878 | disp32 and turn off disp32s if they are out of range. */ | |
10879 | i.types[this_operand].bitfield.disp32 = 0; | |
10880 | if (!fits_in_signed_long (exp->X_add_number)) | |
10881 | { | |
10882 | i.types[this_operand].bitfield.disp32s = 0; | |
10883 | if (i.types[this_operand].bitfield.baseindex) | |
10884 | { | |
10885 | as_bad (_("0x%lx out range of signed 32bit displacement"), | |
10886 | (long) exp->X_add_number); | |
10887 | ret = 0; | |
10888 | } | |
10889 | } | |
10890 | } | |
10891 | ||
4c63da97 | 10892 | #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT)) |
3992d3b7 AM |
10893 | else if (exp->X_op != O_constant |
10894 | && OUTPUT_FLAVOR == bfd_target_aout_flavour | |
10895 | && exp_seg != absolute_section | |
10896 | && exp_seg != text_section | |
10897 | && exp_seg != data_section | |
10898 | && exp_seg != bss_section | |
10899 | && exp_seg != undefined_section | |
10900 | && !bfd_is_com_section (exp_seg)) | |
24eab124 | 10901 | { |
d0b47220 | 10902 | as_bad (_("unimplemented segment %s in operand"), exp_seg->name); |
3992d3b7 | 10903 | ret = 0; |
24eab124 | 10904 | } |
252b5132 | 10905 | #endif |
3956db08 | 10906 | |
48bcea9f JB |
10907 | if (current_templates->start->opcode_modifier.jump == JUMP_BYTE |
10908 | /* Constants get taken care of by optimize_disp(). */ | |
10909 | && exp->X_op != O_constant) | |
10910 | i.types[this_operand].bitfield.disp8 = 1; | |
10911 | ||
40fb9820 L |
10912 | /* Check if this is a displacement only operand. */ |
10913 | bigdisp = i.types[this_operand]; | |
10914 | bigdisp.bitfield.disp8 = 0; | |
10915 | bigdisp.bitfield.disp16 = 0; | |
10916 | bigdisp.bitfield.disp32 = 0; | |
10917 | bigdisp.bitfield.disp32s = 0; | |
10918 | bigdisp.bitfield.disp64 = 0; | |
0dfbf9d7 | 10919 | if (operand_type_all_zero (&bigdisp)) |
c6fb90c8 L |
10920 | i.types[this_operand] = operand_type_and (i.types[this_operand], |
10921 | types); | |
3956db08 | 10922 | |
3992d3b7 | 10923 | return ret; |
252b5132 RH |
10924 | } |
10925 | ||
2abc2bec JB |
10926 | /* Return the active addressing mode, taking address override and |
10927 | registers forming the address into consideration. Update the | |
10928 | address override prefix if necessary. */ | |
47926f60 | 10929 | |
2abc2bec JB |
10930 | static enum flag_code |
10931 | i386_addressing_mode (void) | |
252b5132 | 10932 | { |
be05d201 L |
10933 | enum flag_code addr_mode; |
10934 | ||
10935 | if (i.prefix[ADDR_PREFIX]) | |
10936 | addr_mode = flag_code == CODE_32BIT ? CODE_16BIT : CODE_32BIT; | |
a23b33b3 JB |
10937 | else if (flag_code == CODE_16BIT |
10938 | && current_templates->start->cpu_flags.bitfield.cpumpx | |
10939 | /* Avoid replacing the "16-bit addressing not allowed" diagnostic | |
10940 | from md_assemble() by "is not a valid base/index expression" | |
10941 | when there is a base and/or index. */ | |
10942 | && !i.types[this_operand].bitfield.baseindex) | |
10943 | { | |
10944 | /* MPX insn memory operands with neither base nor index must be forced | |
10945 | to use 32-bit addressing in 16-bit mode. */ | |
10946 | addr_mode = CODE_32BIT; | |
10947 | i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE; | |
10948 | ++i.prefixes; | |
10949 | gas_assert (!i.types[this_operand].bitfield.disp16); | |
10950 | gas_assert (!i.types[this_operand].bitfield.disp32); | |
10951 | } | |
be05d201 L |
10952 | else |
10953 | { | |
10954 | addr_mode = flag_code; | |
10955 | ||
24eab124 | 10956 | #if INFER_ADDR_PREFIX |
be05d201 L |
10957 | if (i.mem_operands == 0) |
10958 | { | |
10959 | /* Infer address prefix from the first memory operand. */ | |
10960 | const reg_entry *addr_reg = i.base_reg; | |
10961 | ||
10962 | if (addr_reg == NULL) | |
10963 | addr_reg = i.index_reg; | |
eecb386c | 10964 | |
be05d201 L |
10965 | if (addr_reg) |
10966 | { | |
e968fc9b | 10967 | if (addr_reg->reg_type.bitfield.dword) |
be05d201 L |
10968 | addr_mode = CODE_32BIT; |
10969 | else if (flag_code != CODE_64BIT | |
dc821c5f | 10970 | && addr_reg->reg_type.bitfield.word) |
be05d201 L |
10971 | addr_mode = CODE_16BIT; |
10972 | ||
10973 | if (addr_mode != flag_code) | |
10974 | { | |
10975 | i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE; | |
10976 | i.prefixes += 1; | |
10977 | /* Change the size of any displacement too. At most one | |
10978 | of Disp16 or Disp32 is set. | |
10979 | FIXME. There doesn't seem to be any real need for | |
10980 | separate Disp16 and Disp32 flags. The same goes for | |
10981 | Imm16 and Imm32. Removing them would probably clean | |
10982 | up the code quite a lot. */ | |
10983 | if (flag_code != CODE_64BIT | |
10984 | && (i.types[this_operand].bitfield.disp16 | |
10985 | || i.types[this_operand].bitfield.disp32)) | |
10986 | i.types[this_operand] | |
10987 | = operand_type_xor (i.types[this_operand], disp16_32); | |
10988 | } | |
10989 | } | |
10990 | } | |
24eab124 | 10991 | #endif |
be05d201 L |
10992 | } |
10993 | ||
2abc2bec JB |
10994 | return addr_mode; |
10995 | } | |
10996 | ||
10997 | /* Make sure the memory operand we've been dealt is valid. | |
10998 | Return 1 on success, 0 on a failure. */ | |
10999 | ||
11000 | static int | |
11001 | i386_index_check (const char *operand_string) | |
11002 | { | |
11003 | const char *kind = "base/index"; | |
11004 | enum flag_code addr_mode = i386_addressing_mode (); | |
11005 | ||
fc0763e6 | 11006 | if (current_templates->start->opcode_modifier.isstring |
c3949f43 | 11007 | && !current_templates->start->cpu_flags.bitfield.cpupadlock |
fc0763e6 JB |
11008 | && (current_templates->end[-1].opcode_modifier.isstring |
11009 | || i.mem_operands)) | |
11010 | { | |
11011 | /* Memory operands of string insns are special in that they only allow | |
11012 | a single register (rDI, rSI, or rBX) as their memory address. */ | |
be05d201 L |
11013 | const reg_entry *expected_reg; |
11014 | static const char *di_si[][2] = | |
11015 | { | |
11016 | { "esi", "edi" }, | |
11017 | { "si", "di" }, | |
11018 | { "rsi", "rdi" } | |
11019 | }; | |
11020 | static const char *bx[] = { "ebx", "bx", "rbx" }; | |
fc0763e6 JB |
11021 | |
11022 | kind = "string address"; | |
11023 | ||
8325cc63 | 11024 | if (current_templates->start->opcode_modifier.repprefixok) |
fc0763e6 | 11025 | { |
51c8edf6 JB |
11026 | int es_op = current_templates->end[-1].opcode_modifier.isstring |
11027 | - IS_STRING_ES_OP0; | |
11028 | int op = 0; | |
fc0763e6 | 11029 | |
51c8edf6 | 11030 | if (!current_templates->end[-1].operand_types[0].bitfield.baseindex |
fc0763e6 JB |
11031 | || ((!i.mem_operands != !intel_syntax) |
11032 | && current_templates->end[-1].operand_types[1] | |
11033 | .bitfield.baseindex)) | |
51c8edf6 | 11034 | op = 1; |
fe0e921f AM |
11035 | expected_reg |
11036 | = (const reg_entry *) str_hash_find (reg_hash, | |
11037 | di_si[addr_mode][op == es_op]); | |
fc0763e6 JB |
11038 | } |
11039 | else | |
fe0e921f AM |
11040 | expected_reg |
11041 | = (const reg_entry *)str_hash_find (reg_hash, bx[addr_mode]); | |
fc0763e6 | 11042 | |
be05d201 L |
11043 | if (i.base_reg != expected_reg |
11044 | || i.index_reg | |
fc0763e6 | 11045 | || operand_type_check (i.types[this_operand], disp)) |
fc0763e6 | 11046 | { |
be05d201 L |
11047 | /* The second memory operand must have the same size as |
11048 | the first one. */ | |
11049 | if (i.mem_operands | |
11050 | && i.base_reg | |
11051 | && !((addr_mode == CODE_64BIT | |
dc821c5f | 11052 | && i.base_reg->reg_type.bitfield.qword) |
be05d201 | 11053 | || (addr_mode == CODE_32BIT |
dc821c5f JB |
11054 | ? i.base_reg->reg_type.bitfield.dword |
11055 | : i.base_reg->reg_type.bitfield.word))) | |
be05d201 L |
11056 | goto bad_address; |
11057 | ||
fc0763e6 JB |
11058 | as_warn (_("`%s' is not valid here (expected `%c%s%s%c')"), |
11059 | operand_string, | |
11060 | intel_syntax ? '[' : '(', | |
11061 | register_prefix, | |
be05d201 | 11062 | expected_reg->reg_name, |
fc0763e6 | 11063 | intel_syntax ? ']' : ')'); |
be05d201 | 11064 | return 1; |
fc0763e6 | 11065 | } |
be05d201 L |
11066 | else |
11067 | return 1; | |
11068 | ||
dc1e8a47 | 11069 | bad_address: |
be05d201 L |
11070 | as_bad (_("`%s' is not a valid %s expression"), |
11071 | operand_string, kind); | |
11072 | return 0; | |
3e73aa7c JH |
11073 | } |
11074 | else | |
11075 | { | |
be05d201 L |
11076 | if (addr_mode != CODE_16BIT) |
11077 | { | |
11078 | /* 32-bit/64-bit checks. */ | |
41eb8e88 L |
11079 | if (i.disp_encoding == disp_encoding_16bit) |
11080 | { | |
11081 | bad_disp: | |
11082 | as_bad (_("invalid `%s' prefix"), | |
11083 | addr_mode == CODE_16BIT ? "{disp32}" : "{disp16}"); | |
11084 | return 0; | |
11085 | } | |
11086 | ||
be05d201 | 11087 | if ((i.base_reg |
e968fc9b JB |
11088 | && ((addr_mode == CODE_64BIT |
11089 | ? !i.base_reg->reg_type.bitfield.qword | |
11090 | : !i.base_reg->reg_type.bitfield.dword) | |
11091 | || (i.index_reg && i.base_reg->reg_num == RegIP) | |
11092 | || i.base_reg->reg_num == RegIZ)) | |
be05d201 | 11093 | || (i.index_reg |
1b54b8d7 JB |
11094 | && !i.index_reg->reg_type.bitfield.xmmword |
11095 | && !i.index_reg->reg_type.bitfield.ymmword | |
11096 | && !i.index_reg->reg_type.bitfield.zmmword | |
be05d201 | 11097 | && ((addr_mode == CODE_64BIT |
e968fc9b JB |
11098 | ? !i.index_reg->reg_type.bitfield.qword |
11099 | : !i.index_reg->reg_type.bitfield.dword) | |
be05d201 L |
11100 | || !i.index_reg->reg_type.bitfield.baseindex))) |
11101 | goto bad_address; | |
8178be5b | 11102 | |
260cd341 | 11103 | /* bndmk, bndldx, bndstx and mandatory non-vector SIB have special restrictions. */ |
8178be5b | 11104 | if (current_templates->start->base_opcode == 0xf30f1b |
260cd341 LC |
11105 | || (current_templates->start->base_opcode & ~1) == 0x0f1a |
11106 | || current_templates->start->opcode_modifier.sib == SIBMEM) | |
8178be5b JB |
11107 | { |
11108 | /* They cannot use RIP-relative addressing. */ | |
e968fc9b | 11109 | if (i.base_reg && i.base_reg->reg_num == RegIP) |
8178be5b JB |
11110 | { |
11111 | as_bad (_("`%s' cannot be used here"), operand_string); | |
11112 | return 0; | |
11113 | } | |
11114 | ||
11115 | /* bndldx and bndstx ignore their scale factor. */ | |
260cd341 | 11116 | if ((current_templates->start->base_opcode & ~1) == 0x0f1a |
8178be5b JB |
11117 | && i.log2_scale_factor) |
11118 | as_warn (_("register scaling is being ignored here")); | |
11119 | } | |
be05d201 L |
11120 | } |
11121 | else | |
3e73aa7c | 11122 | { |
be05d201 | 11123 | /* 16-bit checks. */ |
41eb8e88 L |
11124 | if (i.disp_encoding == disp_encoding_32bit) |
11125 | goto bad_disp; | |
11126 | ||
3e73aa7c | 11127 | if ((i.base_reg |
dc821c5f | 11128 | && (!i.base_reg->reg_type.bitfield.word |
40fb9820 | 11129 | || !i.base_reg->reg_type.bitfield.baseindex)) |
3e73aa7c | 11130 | || (i.index_reg |
dc821c5f | 11131 | && (!i.index_reg->reg_type.bitfield.word |
40fb9820 | 11132 | || !i.index_reg->reg_type.bitfield.baseindex |
29b0f896 AM |
11133 | || !(i.base_reg |
11134 | && i.base_reg->reg_num < 6 | |
11135 | && i.index_reg->reg_num >= 6 | |
11136 | && i.log2_scale_factor == 0)))) | |
be05d201 | 11137 | goto bad_address; |
3e73aa7c JH |
11138 | } |
11139 | } | |
be05d201 | 11140 | return 1; |
24eab124 | 11141 | } |
252b5132 | 11142 | |
43234a1e L |
11143 | /* Handle vector immediates. */ |
11144 | ||
11145 | static int | |
11146 | RC_SAE_immediate (const char *imm_start) | |
11147 | { | |
11148 | unsigned int match_found, j; | |
11149 | const char *pstr = imm_start; | |
11150 | expressionS *exp; | |
11151 | ||
11152 | if (*pstr != '{') | |
11153 | return 0; | |
11154 | ||
11155 | pstr++; | |
11156 | match_found = 0; | |
11157 | for (j = 0; j < ARRAY_SIZE (RC_NamesTable); j++) | |
11158 | { | |
11159 | if (!strncmp (pstr, RC_NamesTable[j].name, RC_NamesTable[j].len)) | |
11160 | { | |
11161 | if (!i.rounding) | |
11162 | { | |
11163 | rc_op.type = RC_NamesTable[j].type; | |
11164 | rc_op.operand = this_operand; | |
11165 | i.rounding = &rc_op; | |
11166 | } | |
11167 | else | |
11168 | { | |
11169 | as_bad (_("duplicated `%s'"), imm_start); | |
11170 | return 0; | |
11171 | } | |
11172 | pstr += RC_NamesTable[j].len; | |
11173 | match_found = 1; | |
11174 | break; | |
11175 | } | |
11176 | } | |
11177 | if (!match_found) | |
11178 | return 0; | |
11179 | ||
11180 | if (*pstr++ != '}') | |
11181 | { | |
11182 | as_bad (_("Missing '}': '%s'"), imm_start); | |
11183 | return 0; | |
11184 | } | |
11185 | /* RC/SAE immediate string should contain nothing more. */; | |
11186 | if (*pstr != 0) | |
11187 | { | |
11188 | as_bad (_("Junk after '}': '%s'"), imm_start); | |
11189 | return 0; | |
11190 | } | |
11191 | ||
11192 | exp = &im_expressions[i.imm_operands++]; | |
11193 | i.op[this_operand].imms = exp; | |
11194 | ||
11195 | exp->X_op = O_constant; | |
11196 | exp->X_add_number = 0; | |
11197 | exp->X_add_symbol = (symbolS *) 0; | |
11198 | exp->X_op_symbol = (symbolS *) 0; | |
11199 | ||
11200 | i.types[this_operand].bitfield.imm8 = 1; | |
11201 | return 1; | |
11202 | } | |
11203 | ||
8325cc63 JB |
11204 | /* Only string instructions can have a second memory operand, so |
11205 | reduce current_templates to just those if it contains any. */ | |
11206 | static int | |
11207 | maybe_adjust_templates (void) | |
11208 | { | |
11209 | const insn_template *t; | |
11210 | ||
11211 | gas_assert (i.mem_operands == 1); | |
11212 | ||
11213 | for (t = current_templates->start; t < current_templates->end; ++t) | |
11214 | if (t->opcode_modifier.isstring) | |
11215 | break; | |
11216 | ||
11217 | if (t < current_templates->end) | |
11218 | { | |
11219 | static templates aux_templates; | |
11220 | bfd_boolean recheck; | |
11221 | ||
11222 | aux_templates.start = t; | |
11223 | for (; t < current_templates->end; ++t) | |
11224 | if (!t->opcode_modifier.isstring) | |
11225 | break; | |
11226 | aux_templates.end = t; | |
11227 | ||
11228 | /* Determine whether to re-check the first memory operand. */ | |
11229 | recheck = (aux_templates.start != current_templates->start | |
11230 | || t != current_templates->end); | |
11231 | ||
11232 | current_templates = &aux_templates; | |
11233 | ||
11234 | if (recheck) | |
11235 | { | |
11236 | i.mem_operands = 0; | |
11237 | if (i.memop1_string != NULL | |
11238 | && i386_index_check (i.memop1_string) == 0) | |
11239 | return 0; | |
11240 | i.mem_operands = 1; | |
11241 | } | |
11242 | } | |
11243 | ||
11244 | return 1; | |
11245 | } | |
11246 | ||
fc0763e6 | 11247 | /* Parse OPERAND_STRING into the i386_insn structure I. Returns zero |
47926f60 | 11248 | on error. */ |
252b5132 | 11249 | |
252b5132 | 11250 | static int |
a7619375 | 11251 | i386_att_operand (char *operand_string) |
252b5132 | 11252 | { |
af6bdddf AM |
11253 | const reg_entry *r; |
11254 | char *end_op; | |
24eab124 | 11255 | char *op_string = operand_string; |
252b5132 | 11256 | |
24eab124 | 11257 | if (is_space_char (*op_string)) |
252b5132 RH |
11258 | ++op_string; |
11259 | ||
24eab124 | 11260 | /* We check for an absolute prefix (differentiating, |
47926f60 | 11261 | for example, 'jmp pc_relative_label' from 'jmp *absolute_label'. */ |
24eab124 AM |
11262 | if (*op_string == ABSOLUTE_PREFIX) |
11263 | { | |
11264 | ++op_string; | |
11265 | if (is_space_char (*op_string)) | |
11266 | ++op_string; | |
6f2f06be | 11267 | i.jumpabsolute = TRUE; |
24eab124 | 11268 | } |
252b5132 | 11269 | |
47926f60 | 11270 | /* Check if operand is a register. */ |
4d1bb795 | 11271 | if ((r = parse_register (op_string, &end_op)) != NULL) |
24eab124 | 11272 | { |
40fb9820 L |
11273 | i386_operand_type temp; |
11274 | ||
8a6fb3f9 JB |
11275 | if (r == &bad_reg) |
11276 | return 0; | |
11277 | ||
24eab124 AM |
11278 | /* Check for a segment override by searching for ':' after a |
11279 | segment register. */ | |
11280 | op_string = end_op; | |
11281 | if (is_space_char (*op_string)) | |
11282 | ++op_string; | |
00cee14f | 11283 | if (*op_string == ':' && r->reg_type.bitfield.class == SReg) |
24eab124 AM |
11284 | { |
11285 | switch (r->reg_num) | |
11286 | { | |
11287 | case 0: | |
11288 | i.seg[i.mem_operands] = &es; | |
11289 | break; | |
11290 | case 1: | |
11291 | i.seg[i.mem_operands] = &cs; | |
11292 | break; | |
11293 | case 2: | |
11294 | i.seg[i.mem_operands] = &ss; | |
11295 | break; | |
11296 | case 3: | |
11297 | i.seg[i.mem_operands] = &ds; | |
11298 | break; | |
11299 | case 4: | |
11300 | i.seg[i.mem_operands] = &fs; | |
11301 | break; | |
11302 | case 5: | |
11303 | i.seg[i.mem_operands] = &gs; | |
11304 | break; | |
11305 | } | |
252b5132 | 11306 | |
24eab124 | 11307 | /* Skip the ':' and whitespace. */ |
252b5132 RH |
11308 | ++op_string; |
11309 | if (is_space_char (*op_string)) | |
24eab124 | 11310 | ++op_string; |
252b5132 | 11311 | |
24eab124 AM |
11312 | if (!is_digit_char (*op_string) |
11313 | && !is_identifier_char (*op_string) | |
11314 | && *op_string != '(' | |
11315 | && *op_string != ABSOLUTE_PREFIX) | |
11316 | { | |
11317 | as_bad (_("bad memory operand `%s'"), op_string); | |
11318 | return 0; | |
11319 | } | |
47926f60 | 11320 | /* Handle case of %es:*foo. */ |
24eab124 AM |
11321 | if (*op_string == ABSOLUTE_PREFIX) |
11322 | { | |
11323 | ++op_string; | |
11324 | if (is_space_char (*op_string)) | |
11325 | ++op_string; | |
6f2f06be | 11326 | i.jumpabsolute = TRUE; |
24eab124 AM |
11327 | } |
11328 | goto do_memory_reference; | |
11329 | } | |
43234a1e L |
11330 | |
11331 | /* Handle vector operations. */ | |
11332 | if (*op_string == '{') | |
11333 | { | |
11334 | op_string = check_VecOperations (op_string, NULL); | |
11335 | if (op_string == NULL) | |
11336 | return 0; | |
11337 | } | |
11338 | ||
24eab124 AM |
11339 | if (*op_string) |
11340 | { | |
d0b47220 | 11341 | as_bad (_("junk `%s' after register"), op_string); |
24eab124 AM |
11342 | return 0; |
11343 | } | |
40fb9820 L |
11344 | temp = r->reg_type; |
11345 | temp.bitfield.baseindex = 0; | |
c6fb90c8 L |
11346 | i.types[this_operand] = operand_type_or (i.types[this_operand], |
11347 | temp); | |
7d5e4556 | 11348 | i.types[this_operand].bitfield.unspecified = 0; |
520dc8e8 | 11349 | i.op[this_operand].regs = r; |
24eab124 AM |
11350 | i.reg_operands++; |
11351 | } | |
af6bdddf AM |
11352 | else if (*op_string == REGISTER_PREFIX) |
11353 | { | |
11354 | as_bad (_("bad register name `%s'"), op_string); | |
11355 | return 0; | |
11356 | } | |
24eab124 | 11357 | else if (*op_string == IMMEDIATE_PREFIX) |
ce8a8b2f | 11358 | { |
24eab124 | 11359 | ++op_string; |
6f2f06be | 11360 | if (i.jumpabsolute) |
24eab124 | 11361 | { |
d0b47220 | 11362 | as_bad (_("immediate operand illegal with absolute jump")); |
24eab124 AM |
11363 | return 0; |
11364 | } | |
11365 | if (!i386_immediate (op_string)) | |
11366 | return 0; | |
11367 | } | |
43234a1e L |
11368 | else if (RC_SAE_immediate (operand_string)) |
11369 | { | |
11370 | /* If it is a RC or SAE immediate, do nothing. */ | |
11371 | ; | |
11372 | } | |
24eab124 AM |
11373 | else if (is_digit_char (*op_string) |
11374 | || is_identifier_char (*op_string) | |
d02603dc | 11375 | || *op_string == '"' |
e5cb08ac | 11376 | || *op_string == '(') |
24eab124 | 11377 | { |
47926f60 | 11378 | /* This is a memory reference of some sort. */ |
af6bdddf | 11379 | char *base_string; |
252b5132 | 11380 | |
47926f60 | 11381 | /* Start and end of displacement string expression (if found). */ |
eecb386c AM |
11382 | char *displacement_string_start; |
11383 | char *displacement_string_end; | |
43234a1e | 11384 | char *vop_start; |
252b5132 | 11385 | |
24eab124 | 11386 | do_memory_reference: |
8325cc63 JB |
11387 | if (i.mem_operands == 1 && !maybe_adjust_templates ()) |
11388 | return 0; | |
24eab124 | 11389 | if ((i.mem_operands == 1 |
40fb9820 | 11390 | && !current_templates->start->opcode_modifier.isstring) |
24eab124 AM |
11391 | || i.mem_operands == 2) |
11392 | { | |
11393 | as_bad (_("too many memory references for `%s'"), | |
11394 | current_templates->start->name); | |
11395 | return 0; | |
11396 | } | |
252b5132 | 11397 | |
24eab124 AM |
11398 | /* Check for base index form. We detect the base index form by |
11399 | looking for an ')' at the end of the operand, searching | |
11400 | for the '(' matching it, and finding a REGISTER_PREFIX or ',' | |
11401 | after the '('. */ | |
af6bdddf | 11402 | base_string = op_string + strlen (op_string); |
c3332e24 | 11403 | |
43234a1e L |
11404 | /* Handle vector operations. */ |
11405 | vop_start = strchr (op_string, '{'); | |
11406 | if (vop_start && vop_start < base_string) | |
11407 | { | |
11408 | if (check_VecOperations (vop_start, base_string) == NULL) | |
11409 | return 0; | |
11410 | base_string = vop_start; | |
11411 | } | |
11412 | ||
af6bdddf AM |
11413 | --base_string; |
11414 | if (is_space_char (*base_string)) | |
11415 | --base_string; | |
252b5132 | 11416 | |
47926f60 | 11417 | /* If we only have a displacement, set-up for it to be parsed later. */ |
af6bdddf AM |
11418 | displacement_string_start = op_string; |
11419 | displacement_string_end = base_string + 1; | |
252b5132 | 11420 | |
24eab124 AM |
11421 | if (*base_string == ')') |
11422 | { | |
af6bdddf | 11423 | char *temp_string; |
24eab124 AM |
11424 | unsigned int parens_balanced = 1; |
11425 | /* We've already checked that the number of left & right ()'s are | |
47926f60 | 11426 | equal, so this loop will not be infinite. */ |
24eab124 AM |
11427 | do |
11428 | { | |
11429 | base_string--; | |
11430 | if (*base_string == ')') | |
11431 | parens_balanced++; | |
11432 | if (*base_string == '(') | |
11433 | parens_balanced--; | |
11434 | } | |
11435 | while (parens_balanced); | |
c3332e24 | 11436 | |
af6bdddf | 11437 | temp_string = base_string; |
c3332e24 | 11438 | |
24eab124 | 11439 | /* Skip past '(' and whitespace. */ |
252b5132 RH |
11440 | ++base_string; |
11441 | if (is_space_char (*base_string)) | |
24eab124 | 11442 | ++base_string; |
252b5132 | 11443 | |
af6bdddf | 11444 | if (*base_string == ',' |
4eed87de AM |
11445 | || ((i.base_reg = parse_register (base_string, &end_op)) |
11446 | != NULL)) | |
252b5132 | 11447 | { |
af6bdddf | 11448 | displacement_string_end = temp_string; |
252b5132 | 11449 | |
40fb9820 | 11450 | i.types[this_operand].bitfield.baseindex = 1; |
252b5132 | 11451 | |
af6bdddf | 11452 | if (i.base_reg) |
24eab124 | 11453 | { |
8a6fb3f9 JB |
11454 | if (i.base_reg == &bad_reg) |
11455 | return 0; | |
24eab124 AM |
11456 | base_string = end_op; |
11457 | if (is_space_char (*base_string)) | |
11458 | ++base_string; | |
af6bdddf AM |
11459 | } |
11460 | ||
11461 | /* There may be an index reg or scale factor here. */ | |
11462 | if (*base_string == ',') | |
11463 | { | |
11464 | ++base_string; | |
11465 | if (is_space_char (*base_string)) | |
11466 | ++base_string; | |
11467 | ||
4eed87de AM |
11468 | if ((i.index_reg = parse_register (base_string, &end_op)) |
11469 | != NULL) | |
24eab124 | 11470 | { |
8a6fb3f9 JB |
11471 | if (i.index_reg == &bad_reg) |
11472 | return 0; | |
af6bdddf | 11473 | base_string = end_op; |
24eab124 AM |
11474 | if (is_space_char (*base_string)) |
11475 | ++base_string; | |
af6bdddf AM |
11476 | if (*base_string == ',') |
11477 | { | |
11478 | ++base_string; | |
11479 | if (is_space_char (*base_string)) | |
11480 | ++base_string; | |
11481 | } | |
e5cb08ac | 11482 | else if (*base_string != ')') |
af6bdddf | 11483 | { |
4eed87de AM |
11484 | as_bad (_("expecting `,' or `)' " |
11485 | "after index register in `%s'"), | |
af6bdddf AM |
11486 | operand_string); |
11487 | return 0; | |
11488 | } | |
24eab124 | 11489 | } |
af6bdddf | 11490 | else if (*base_string == REGISTER_PREFIX) |
24eab124 | 11491 | { |
f76bf5e0 L |
11492 | end_op = strchr (base_string, ','); |
11493 | if (end_op) | |
11494 | *end_op = '\0'; | |
af6bdddf | 11495 | as_bad (_("bad register name `%s'"), base_string); |
24eab124 AM |
11496 | return 0; |
11497 | } | |
252b5132 | 11498 | |
47926f60 | 11499 | /* Check for scale factor. */ |
551c1ca1 | 11500 | if (*base_string != ')') |
af6bdddf | 11501 | { |
551c1ca1 AM |
11502 | char *end_scale = i386_scale (base_string); |
11503 | ||
11504 | if (!end_scale) | |
af6bdddf | 11505 | return 0; |
24eab124 | 11506 | |
551c1ca1 | 11507 | base_string = end_scale; |
af6bdddf AM |
11508 | if (is_space_char (*base_string)) |
11509 | ++base_string; | |
11510 | if (*base_string != ')') | |
11511 | { | |
4eed87de AM |
11512 | as_bad (_("expecting `)' " |
11513 | "after scale factor in `%s'"), | |
af6bdddf AM |
11514 | operand_string); |
11515 | return 0; | |
11516 | } | |
11517 | } | |
11518 | else if (!i.index_reg) | |
24eab124 | 11519 | { |
4eed87de AM |
11520 | as_bad (_("expecting index register or scale factor " |
11521 | "after `,'; got '%c'"), | |
af6bdddf | 11522 | *base_string); |
24eab124 AM |
11523 | return 0; |
11524 | } | |
11525 | } | |
af6bdddf | 11526 | else if (*base_string != ')') |
24eab124 | 11527 | { |
4eed87de AM |
11528 | as_bad (_("expecting `,' or `)' " |
11529 | "after base register in `%s'"), | |
af6bdddf | 11530 | operand_string); |
24eab124 AM |
11531 | return 0; |
11532 | } | |
c3332e24 | 11533 | } |
af6bdddf | 11534 | else if (*base_string == REGISTER_PREFIX) |
c3332e24 | 11535 | { |
f76bf5e0 L |
11536 | end_op = strchr (base_string, ','); |
11537 | if (end_op) | |
11538 | *end_op = '\0'; | |
af6bdddf | 11539 | as_bad (_("bad register name `%s'"), base_string); |
24eab124 | 11540 | return 0; |
c3332e24 | 11541 | } |
24eab124 AM |
11542 | } |
11543 | ||
11544 | /* If there's an expression beginning the operand, parse it, | |
11545 | assuming displacement_string_start and | |
11546 | displacement_string_end are meaningful. */ | |
11547 | if (displacement_string_start != displacement_string_end) | |
11548 | { | |
11549 | if (!i386_displacement (displacement_string_start, | |
11550 | displacement_string_end)) | |
11551 | return 0; | |
11552 | } | |
11553 | ||
11554 | /* Special case for (%dx) while doing input/output op. */ | |
11555 | if (i.base_reg | |
75e5731b JB |
11556 | && i.base_reg->reg_type.bitfield.instance == RegD |
11557 | && i.base_reg->reg_type.bitfield.word | |
24eab124 AM |
11558 | && i.index_reg == 0 |
11559 | && i.log2_scale_factor == 0 | |
11560 | && i.seg[i.mem_operands] == 0 | |
40fb9820 | 11561 | && !operand_type_check (i.types[this_operand], disp)) |
24eab124 | 11562 | { |
2fb5be8d | 11563 | i.types[this_operand] = i.base_reg->reg_type; |
24eab124 AM |
11564 | return 1; |
11565 | } | |
11566 | ||
eecb386c AM |
11567 | if (i386_index_check (operand_string) == 0) |
11568 | return 0; | |
c48dadc9 | 11569 | i.flags[this_operand] |= Operand_Mem; |
8325cc63 JB |
11570 | if (i.mem_operands == 0) |
11571 | i.memop1_string = xstrdup (operand_string); | |
24eab124 AM |
11572 | i.mem_operands++; |
11573 | } | |
11574 | else | |
ce8a8b2f AM |
11575 | { |
11576 | /* It's not a memory operand; argh! */ | |
24eab124 AM |
11577 | as_bad (_("invalid char %s beginning operand %d `%s'"), |
11578 | output_invalid (*op_string), | |
11579 | this_operand + 1, | |
11580 | op_string); | |
11581 | return 0; | |
11582 | } | |
47926f60 | 11583 | return 1; /* Normal return. */ |
252b5132 RH |
11584 | } |
11585 | \f | |
fa94de6b RM |
11586 | /* Calculate the maximum variable size (i.e., excluding fr_fix) |
11587 | that an rs_machine_dependent frag may reach. */ | |
11588 | ||
11589 | unsigned int | |
11590 | i386_frag_max_var (fragS *frag) | |
11591 | { | |
11592 | /* The only relaxable frags are for jumps. | |
11593 | Unconditional jumps can grow by 4 bytes and others by 5 bytes. */ | |
11594 | gas_assert (frag->fr_type == rs_machine_dependent); | |
11595 | return TYPE_FROM_RELAX_STATE (frag->fr_subtype) == UNCOND_JUMP ? 4 : 5; | |
11596 | } | |
11597 | ||
b084df0b L |
11598 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
11599 | static int | |
8dcea932 | 11600 | elf_symbol_resolved_in_segment_p (symbolS *fr_symbol, offsetT fr_var) |
b084df0b L |
11601 | { |
11602 | /* STT_GNU_IFUNC symbol must go through PLT. */ | |
11603 | if ((symbol_get_bfdsym (fr_symbol)->flags | |
11604 | & BSF_GNU_INDIRECT_FUNCTION) != 0) | |
11605 | return 0; | |
11606 | ||
11607 | if (!S_IS_EXTERNAL (fr_symbol)) | |
11608 | /* Symbol may be weak or local. */ | |
11609 | return !S_IS_WEAK (fr_symbol); | |
11610 | ||
8dcea932 L |
11611 | /* Global symbols with non-default visibility can't be preempted. */ |
11612 | if (ELF_ST_VISIBILITY (S_GET_OTHER (fr_symbol)) != STV_DEFAULT) | |
11613 | return 1; | |
11614 | ||
11615 | if (fr_var != NO_RELOC) | |
11616 | switch ((enum bfd_reloc_code_real) fr_var) | |
11617 | { | |
11618 | case BFD_RELOC_386_PLT32: | |
11619 | case BFD_RELOC_X86_64_PLT32: | |
33eaf5de | 11620 | /* Symbol with PLT relocation may be preempted. */ |
8dcea932 L |
11621 | return 0; |
11622 | default: | |
11623 | abort (); | |
11624 | } | |
11625 | ||
b084df0b L |
11626 | /* Global symbols with default visibility in a shared library may be |
11627 | preempted by another definition. */ | |
8dcea932 | 11628 | return !shared; |
b084df0b L |
11629 | } |
11630 | #endif | |
11631 | ||
79d72f45 HL |
11632 | /* Table 3-2. Macro-Fusible Instructions in Haswell Microarchitecture |
11633 | Note also work for Skylake and Cascadelake. | |
11634 | --------------------------------------------------------------------- | |
11635 | | JCC | ADD/SUB/CMP | INC/DEC | TEST/AND | | |
11636 | | ------ | ----------- | ------- | -------- | | |
11637 | | Jo | N | N | Y | | |
11638 | | Jno | N | N | Y | | |
11639 | | Jc/Jb | Y | N | Y | | |
11640 | | Jae/Jnb | Y | N | Y | | |
11641 | | Je/Jz | Y | Y | Y | | |
11642 | | Jne/Jnz | Y | Y | Y | | |
11643 | | Jna/Jbe | Y | N | Y | | |
11644 | | Ja/Jnbe | Y | N | Y | | |
11645 | | Js | N | N | Y | | |
11646 | | Jns | N | N | Y | | |
11647 | | Jp/Jpe | N | N | Y | | |
11648 | | Jnp/Jpo | N | N | Y | | |
11649 | | Jl/Jnge | Y | Y | Y | | |
11650 | | Jge/Jnl | Y | Y | Y | | |
11651 | | Jle/Jng | Y | Y | Y | | |
11652 | | Jg/Jnle | Y | Y | Y | | |
11653 | --------------------------------------------------------------------- */ | |
11654 | static int | |
11655 | i386_macro_fusible_p (enum mf_cmp_kind mf_cmp, enum mf_jcc_kind mf_jcc) | |
11656 | { | |
11657 | if (mf_cmp == mf_cmp_alu_cmp) | |
11658 | return ((mf_jcc >= mf_jcc_jc && mf_jcc <= mf_jcc_jna) | |
11659 | || mf_jcc == mf_jcc_jl || mf_jcc == mf_jcc_jle); | |
11660 | if (mf_cmp == mf_cmp_incdec) | |
11661 | return (mf_jcc == mf_jcc_je || mf_jcc == mf_jcc_jl | |
11662 | || mf_jcc == mf_jcc_jle); | |
11663 | if (mf_cmp == mf_cmp_test_and) | |
11664 | return 1; | |
11665 | return 0; | |
11666 | } | |
11667 | ||
e379e5f3 L |
11668 | /* Return the next non-empty frag. */ |
11669 | ||
11670 | static fragS * | |
11671 | i386_next_non_empty_frag (fragS *fragP) | |
11672 | { | |
11673 | /* There may be a frag with a ".fill 0" when there is no room in | |
11674 | the current frag for frag_grow in output_insn. */ | |
11675 | for (fragP = fragP->fr_next; | |
11676 | (fragP != NULL | |
11677 | && fragP->fr_type == rs_fill | |
11678 | && fragP->fr_fix == 0); | |
11679 | fragP = fragP->fr_next) | |
11680 | ; | |
11681 | return fragP; | |
11682 | } | |
11683 | ||
11684 | /* Return the next jcc frag after BRANCH_PADDING. */ | |
11685 | ||
11686 | static fragS * | |
79d72f45 | 11687 | i386_next_fusible_jcc_frag (fragS *maybe_cmp_fragP, fragS *pad_fragP) |
e379e5f3 | 11688 | { |
79d72f45 HL |
11689 | fragS *branch_fragP; |
11690 | if (!pad_fragP) | |
e379e5f3 L |
11691 | return NULL; |
11692 | ||
79d72f45 HL |
11693 | if (pad_fragP->fr_type == rs_machine_dependent |
11694 | && (TYPE_FROM_RELAX_STATE (pad_fragP->fr_subtype) | |
e379e5f3 L |
11695 | == BRANCH_PADDING)) |
11696 | { | |
79d72f45 HL |
11697 | branch_fragP = i386_next_non_empty_frag (pad_fragP); |
11698 | if (branch_fragP->fr_type != rs_machine_dependent) | |
e379e5f3 | 11699 | return NULL; |
79d72f45 HL |
11700 | if (TYPE_FROM_RELAX_STATE (branch_fragP->fr_subtype) == COND_JUMP |
11701 | && i386_macro_fusible_p (maybe_cmp_fragP->tc_frag_data.mf_type, | |
11702 | pad_fragP->tc_frag_data.mf_type)) | |
11703 | return branch_fragP; | |
e379e5f3 L |
11704 | } |
11705 | ||
11706 | return NULL; | |
11707 | } | |
11708 | ||
11709 | /* Classify BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags. */ | |
11710 | ||
11711 | static void | |
11712 | i386_classify_machine_dependent_frag (fragS *fragP) | |
11713 | { | |
11714 | fragS *cmp_fragP; | |
11715 | fragS *pad_fragP; | |
11716 | fragS *branch_fragP; | |
11717 | fragS *next_fragP; | |
11718 | unsigned int max_prefix_length; | |
11719 | ||
11720 | if (fragP->tc_frag_data.classified) | |
11721 | return; | |
11722 | ||
11723 | /* First scan for BRANCH_PADDING and FUSED_JCC_PADDING. Convert | |
11724 | FUSED_JCC_PADDING and merge BRANCH_PADDING. */ | |
11725 | for (next_fragP = fragP; | |
11726 | next_fragP != NULL; | |
11727 | next_fragP = next_fragP->fr_next) | |
11728 | { | |
11729 | next_fragP->tc_frag_data.classified = 1; | |
11730 | if (next_fragP->fr_type == rs_machine_dependent) | |
11731 | switch (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)) | |
11732 | { | |
11733 | case BRANCH_PADDING: | |
11734 | /* The BRANCH_PADDING frag must be followed by a branch | |
11735 | frag. */ | |
11736 | branch_fragP = i386_next_non_empty_frag (next_fragP); | |
11737 | next_fragP->tc_frag_data.u.branch_fragP = branch_fragP; | |
11738 | break; | |
11739 | case FUSED_JCC_PADDING: | |
11740 | /* Check if this is a fused jcc: | |
11741 | FUSED_JCC_PADDING | |
11742 | CMP like instruction | |
11743 | BRANCH_PADDING | |
11744 | COND_JUMP | |
11745 | */ | |
11746 | cmp_fragP = i386_next_non_empty_frag (next_fragP); | |
11747 | pad_fragP = i386_next_non_empty_frag (cmp_fragP); | |
79d72f45 | 11748 | branch_fragP = i386_next_fusible_jcc_frag (next_fragP, pad_fragP); |
e379e5f3 L |
11749 | if (branch_fragP) |
11750 | { | |
11751 | /* The BRANCH_PADDING frag is merged with the | |
11752 | FUSED_JCC_PADDING frag. */ | |
11753 | next_fragP->tc_frag_data.u.branch_fragP = branch_fragP; | |
11754 | /* CMP like instruction size. */ | |
11755 | next_fragP->tc_frag_data.cmp_size = cmp_fragP->fr_fix; | |
11756 | frag_wane (pad_fragP); | |
11757 | /* Skip to branch_fragP. */ | |
11758 | next_fragP = branch_fragP; | |
11759 | } | |
11760 | else if (next_fragP->tc_frag_data.max_prefix_length) | |
11761 | { | |
11762 | /* Turn FUSED_JCC_PADDING into BRANCH_PREFIX if it isn't | |
11763 | a fused jcc. */ | |
11764 | next_fragP->fr_subtype | |
11765 | = ENCODE_RELAX_STATE (BRANCH_PREFIX, 0); | |
11766 | next_fragP->tc_frag_data.max_bytes | |
11767 | = next_fragP->tc_frag_data.max_prefix_length; | |
11768 | /* This will be updated in the BRANCH_PREFIX scan. */ | |
11769 | next_fragP->tc_frag_data.max_prefix_length = 0; | |
11770 | } | |
11771 | else | |
11772 | frag_wane (next_fragP); | |
11773 | break; | |
11774 | } | |
11775 | } | |
11776 | ||
11777 | /* Stop if there is no BRANCH_PREFIX. */ | |
11778 | if (!align_branch_prefix_size) | |
11779 | return; | |
11780 | ||
11781 | /* Scan for BRANCH_PREFIX. */ | |
11782 | for (; fragP != NULL; fragP = fragP->fr_next) | |
11783 | { | |
11784 | if (fragP->fr_type != rs_machine_dependent | |
11785 | || (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) | |
11786 | != BRANCH_PREFIX)) | |
11787 | continue; | |
11788 | ||
11789 | /* Count all BRANCH_PREFIX frags before BRANCH_PADDING and | |
11790 | COND_JUMP_PREFIX. */ | |
11791 | max_prefix_length = 0; | |
11792 | for (next_fragP = fragP; | |
11793 | next_fragP != NULL; | |
11794 | next_fragP = next_fragP->fr_next) | |
11795 | { | |
11796 | if (next_fragP->fr_type == rs_fill) | |
11797 | /* Skip rs_fill frags. */ | |
11798 | continue; | |
11799 | else if (next_fragP->fr_type != rs_machine_dependent) | |
11800 | /* Stop for all other frags. */ | |
11801 | break; | |
11802 | ||
11803 | /* rs_machine_dependent frags. */ | |
11804 | if (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype) | |
11805 | == BRANCH_PREFIX) | |
11806 | { | |
11807 | /* Count BRANCH_PREFIX frags. */ | |
11808 | if (max_prefix_length >= MAX_FUSED_JCC_PADDING_SIZE) | |
11809 | { | |
11810 | max_prefix_length = MAX_FUSED_JCC_PADDING_SIZE; | |
11811 | frag_wane (next_fragP); | |
11812 | } | |
11813 | else | |
11814 | max_prefix_length | |
11815 | += next_fragP->tc_frag_data.max_bytes; | |
11816 | } | |
11817 | else if ((TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype) | |
11818 | == BRANCH_PADDING) | |
11819 | || (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype) | |
11820 | == FUSED_JCC_PADDING)) | |
11821 | { | |
11822 | /* Stop at BRANCH_PADDING and FUSED_JCC_PADDING. */ | |
11823 | fragP->tc_frag_data.u.padding_fragP = next_fragP; | |
11824 | break; | |
11825 | } | |
11826 | else | |
11827 | /* Stop for other rs_machine_dependent frags. */ | |
11828 | break; | |
11829 | } | |
11830 | ||
11831 | fragP->tc_frag_data.max_prefix_length = max_prefix_length; | |
11832 | ||
11833 | /* Skip to the next frag. */ | |
11834 | fragP = next_fragP; | |
11835 | } | |
11836 | } | |
11837 | ||
11838 | /* Compute padding size for | |
11839 | ||
11840 | FUSED_JCC_PADDING | |
11841 | CMP like instruction | |
11842 | BRANCH_PADDING | |
11843 | COND_JUMP/UNCOND_JUMP | |
11844 | ||
11845 | or | |
11846 | ||
11847 | BRANCH_PADDING | |
11848 | COND_JUMP/UNCOND_JUMP | |
11849 | */ | |
11850 | ||
11851 | static int | |
11852 | i386_branch_padding_size (fragS *fragP, offsetT address) | |
11853 | { | |
11854 | unsigned int offset, size, padding_size; | |
11855 | fragS *branch_fragP = fragP->tc_frag_data.u.branch_fragP; | |
11856 | ||
11857 | /* The start address of the BRANCH_PADDING or FUSED_JCC_PADDING frag. */ | |
11858 | if (!address) | |
11859 | address = fragP->fr_address; | |
11860 | address += fragP->fr_fix; | |
11861 | ||
11862 | /* CMP like instrunction size. */ | |
11863 | size = fragP->tc_frag_data.cmp_size; | |
11864 | ||
11865 | /* The base size of the branch frag. */ | |
11866 | size += branch_fragP->fr_fix; | |
11867 | ||
11868 | /* Add opcode and displacement bytes for the rs_machine_dependent | |
11869 | branch frag. */ | |
11870 | if (branch_fragP->fr_type == rs_machine_dependent) | |
11871 | size += md_relax_table[branch_fragP->fr_subtype].rlx_length; | |
11872 | ||
11873 | /* Check if branch is within boundary and doesn't end at the last | |
11874 | byte. */ | |
11875 | offset = address & ((1U << align_branch_power) - 1); | |
11876 | if ((offset + size) >= (1U << align_branch_power)) | |
11877 | /* Padding needed to avoid crossing boundary. */ | |
11878 | padding_size = (1U << align_branch_power) - offset; | |
11879 | else | |
11880 | /* No padding needed. */ | |
11881 | padding_size = 0; | |
11882 | ||
11883 | /* The return value may be saved in tc_frag_data.length which is | |
11884 | unsigned byte. */ | |
11885 | if (!fits_in_unsigned_byte (padding_size)) | |
11886 | abort (); | |
11887 | ||
11888 | return padding_size; | |
11889 | } | |
11890 | ||
11891 | /* i386_generic_table_relax_frag() | |
11892 | ||
11893 | Handle BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags to | |
11894 | grow/shrink padding to align branch frags. Hand others to | |
11895 | relax_frag(). */ | |
11896 | ||
11897 | long | |
11898 | i386_generic_table_relax_frag (segT segment, fragS *fragP, long stretch) | |
11899 | { | |
11900 | if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING | |
11901 | || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING) | |
11902 | { | |
11903 | long padding_size = i386_branch_padding_size (fragP, 0); | |
11904 | long grow = padding_size - fragP->tc_frag_data.length; | |
11905 | ||
11906 | /* When the BRANCH_PREFIX frag is used, the computed address | |
11907 | must match the actual address and there should be no padding. */ | |
11908 | if (fragP->tc_frag_data.padding_address | |
11909 | && (fragP->tc_frag_data.padding_address != fragP->fr_address | |
11910 | || padding_size)) | |
11911 | abort (); | |
11912 | ||
11913 | /* Update the padding size. */ | |
11914 | if (grow) | |
11915 | fragP->tc_frag_data.length = padding_size; | |
11916 | ||
11917 | return grow; | |
11918 | } | |
11919 | else if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX) | |
11920 | { | |
11921 | fragS *padding_fragP, *next_fragP; | |
11922 | long padding_size, left_size, last_size; | |
11923 | ||
11924 | padding_fragP = fragP->tc_frag_data.u.padding_fragP; | |
11925 | if (!padding_fragP) | |
11926 | /* Use the padding set by the leading BRANCH_PREFIX frag. */ | |
11927 | return (fragP->tc_frag_data.length | |
11928 | - fragP->tc_frag_data.last_length); | |
11929 | ||
11930 | /* Compute the relative address of the padding frag in the very | |
11931 | first time where the BRANCH_PREFIX frag sizes are zero. */ | |
11932 | if (!fragP->tc_frag_data.padding_address) | |
11933 | fragP->tc_frag_data.padding_address | |
11934 | = padding_fragP->fr_address - (fragP->fr_address - stretch); | |
11935 | ||
11936 | /* First update the last length from the previous interation. */ | |
11937 | left_size = fragP->tc_frag_data.prefix_length; | |
11938 | for (next_fragP = fragP; | |
11939 | next_fragP != padding_fragP; | |
11940 | next_fragP = next_fragP->fr_next) | |
11941 | if (next_fragP->fr_type == rs_machine_dependent | |
11942 | && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype) | |
11943 | == BRANCH_PREFIX)) | |
11944 | { | |
11945 | if (left_size) | |
11946 | { | |
11947 | int max = next_fragP->tc_frag_data.max_bytes; | |
11948 | if (max) | |
11949 | { | |
11950 | int size; | |
11951 | if (max > left_size) | |
11952 | size = left_size; | |
11953 | else | |
11954 | size = max; | |
11955 | left_size -= size; | |
11956 | next_fragP->tc_frag_data.last_length = size; | |
11957 | } | |
11958 | } | |
11959 | else | |
11960 | next_fragP->tc_frag_data.last_length = 0; | |
11961 | } | |
11962 | ||
11963 | /* Check the padding size for the padding frag. */ | |
11964 | padding_size = i386_branch_padding_size | |
11965 | (padding_fragP, (fragP->fr_address | |
11966 | + fragP->tc_frag_data.padding_address)); | |
11967 | ||
11968 | last_size = fragP->tc_frag_data.prefix_length; | |
11969 | /* Check if there is change from the last interation. */ | |
11970 | if (padding_size == last_size) | |
11971 | { | |
11972 | /* Update the expected address of the padding frag. */ | |
11973 | padding_fragP->tc_frag_data.padding_address | |
11974 | = (fragP->fr_address + padding_size | |
11975 | + fragP->tc_frag_data.padding_address); | |
11976 | return 0; | |
11977 | } | |
11978 | ||
11979 | if (padding_size > fragP->tc_frag_data.max_prefix_length) | |
11980 | { | |
11981 | /* No padding if there is no sufficient room. Clear the | |
11982 | expected address of the padding frag. */ | |
11983 | padding_fragP->tc_frag_data.padding_address = 0; | |
11984 | padding_size = 0; | |
11985 | } | |
11986 | else | |
11987 | /* Store the expected address of the padding frag. */ | |
11988 | padding_fragP->tc_frag_data.padding_address | |
11989 | = (fragP->fr_address + padding_size | |
11990 | + fragP->tc_frag_data.padding_address); | |
11991 | ||
11992 | fragP->tc_frag_data.prefix_length = padding_size; | |
11993 | ||
11994 | /* Update the length for the current interation. */ | |
11995 | left_size = padding_size; | |
11996 | for (next_fragP = fragP; | |
11997 | next_fragP != padding_fragP; | |
11998 | next_fragP = next_fragP->fr_next) | |
11999 | if (next_fragP->fr_type == rs_machine_dependent | |
12000 | && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype) | |
12001 | == BRANCH_PREFIX)) | |
12002 | { | |
12003 | if (left_size) | |
12004 | { | |
12005 | int max = next_fragP->tc_frag_data.max_bytes; | |
12006 | if (max) | |
12007 | { | |
12008 | int size; | |
12009 | if (max > left_size) | |
12010 | size = left_size; | |
12011 | else | |
12012 | size = max; | |
12013 | left_size -= size; | |
12014 | next_fragP->tc_frag_data.length = size; | |
12015 | } | |
12016 | } | |
12017 | else | |
12018 | next_fragP->tc_frag_data.length = 0; | |
12019 | } | |
12020 | ||
12021 | return (fragP->tc_frag_data.length | |
12022 | - fragP->tc_frag_data.last_length); | |
12023 | } | |
12024 | return relax_frag (segment, fragP, stretch); | |
12025 | } | |
12026 | ||
ee7fcc42 AM |
12027 | /* md_estimate_size_before_relax() |
12028 | ||
12029 | Called just before relax() for rs_machine_dependent frags. The x86 | |
12030 | assembler uses these frags to handle variable size jump | |
12031 | instructions. | |
12032 | ||
12033 | Any symbol that is now undefined will not become defined. | |
12034 | Return the correct fr_subtype in the frag. | |
12035 | Return the initial "guess for variable size of frag" to caller. | |
12036 | The guess is actually the growth beyond the fixed part. Whatever | |
12037 | we do to grow the fixed or variable part contributes to our | |
12038 | returned value. */ | |
12039 | ||
252b5132 | 12040 | int |
7016a5d5 | 12041 | md_estimate_size_before_relax (fragS *fragP, segT segment) |
252b5132 | 12042 | { |
e379e5f3 L |
12043 | if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING |
12044 | || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX | |
12045 | || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING) | |
12046 | { | |
12047 | i386_classify_machine_dependent_frag (fragP); | |
12048 | return fragP->tc_frag_data.length; | |
12049 | } | |
12050 | ||
252b5132 | 12051 | /* We've already got fragP->fr_subtype right; all we have to do is |
b98ef147 AM |
12052 | check for un-relaxable symbols. On an ELF system, we can't relax |
12053 | an externally visible symbol, because it may be overridden by a | |
12054 | shared library. */ | |
12055 | if (S_GET_SEGMENT (fragP->fr_symbol) != segment | |
6d249963 | 12056 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
718ddfc0 | 12057 | || (IS_ELF |
8dcea932 L |
12058 | && !elf_symbol_resolved_in_segment_p (fragP->fr_symbol, |
12059 | fragP->fr_var)) | |
fbeb56a4 DK |
12060 | #endif |
12061 | #if defined (OBJ_COFF) && defined (TE_PE) | |
7ab9ffdd | 12062 | || (OUTPUT_FLAVOR == bfd_target_coff_flavour |
fbeb56a4 | 12063 | && S_IS_WEAK (fragP->fr_symbol)) |
b98ef147 AM |
12064 | #endif |
12065 | ) | |
252b5132 | 12066 | { |
b98ef147 AM |
12067 | /* Symbol is undefined in this segment, or we need to keep a |
12068 | reloc so that weak symbols can be overridden. */ | |
12069 | int size = (fragP->fr_subtype & CODE16) ? 2 : 4; | |
f86103b7 | 12070 | enum bfd_reloc_code_real reloc_type; |
ee7fcc42 AM |
12071 | unsigned char *opcode; |
12072 | int old_fr_fix; | |
f6af82bd | 12073 | |
ee7fcc42 | 12074 | if (fragP->fr_var != NO_RELOC) |
1e9cc1c2 | 12075 | reloc_type = (enum bfd_reloc_code_real) fragP->fr_var; |
b98ef147 | 12076 | else if (size == 2) |
f6af82bd | 12077 | reloc_type = BFD_RELOC_16_PCREL; |
bd7ab16b L |
12078 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
12079 | else if (need_plt32_p (fragP->fr_symbol)) | |
12080 | reloc_type = BFD_RELOC_X86_64_PLT32; | |
12081 | #endif | |
f6af82bd AM |
12082 | else |
12083 | reloc_type = BFD_RELOC_32_PCREL; | |
252b5132 | 12084 | |
ee7fcc42 AM |
12085 | old_fr_fix = fragP->fr_fix; |
12086 | opcode = (unsigned char *) fragP->fr_opcode; | |
12087 | ||
fddf5b5b | 12088 | switch (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)) |
252b5132 | 12089 | { |
fddf5b5b AM |
12090 | case UNCOND_JUMP: |
12091 | /* Make jmp (0xeb) a (d)word displacement jump. */ | |
47926f60 | 12092 | opcode[0] = 0xe9; |
252b5132 | 12093 | fragP->fr_fix += size; |
062cd5e7 AS |
12094 | fix_new (fragP, old_fr_fix, size, |
12095 | fragP->fr_symbol, | |
12096 | fragP->fr_offset, 1, | |
12097 | reloc_type); | |
252b5132 RH |
12098 | break; |
12099 | ||
fddf5b5b | 12100 | case COND_JUMP86: |
412167cb AM |
12101 | if (size == 2 |
12102 | && (!no_cond_jump_promotion || fragP->fr_var != NO_RELOC)) | |
fddf5b5b AM |
12103 | { |
12104 | /* Negate the condition, and branch past an | |
12105 | unconditional jump. */ | |
12106 | opcode[0] ^= 1; | |
12107 | opcode[1] = 3; | |
12108 | /* Insert an unconditional jump. */ | |
12109 | opcode[2] = 0xe9; | |
12110 | /* We added two extra opcode bytes, and have a two byte | |
12111 | offset. */ | |
12112 | fragP->fr_fix += 2 + 2; | |
062cd5e7 AS |
12113 | fix_new (fragP, old_fr_fix + 2, 2, |
12114 | fragP->fr_symbol, | |
12115 | fragP->fr_offset, 1, | |
12116 | reloc_type); | |
fddf5b5b AM |
12117 | break; |
12118 | } | |
12119 | /* Fall through. */ | |
12120 | ||
12121 | case COND_JUMP: | |
412167cb AM |
12122 | if (no_cond_jump_promotion && fragP->fr_var == NO_RELOC) |
12123 | { | |
3e02c1cc AM |
12124 | fixS *fixP; |
12125 | ||
412167cb | 12126 | fragP->fr_fix += 1; |
3e02c1cc AM |
12127 | fixP = fix_new (fragP, old_fr_fix, 1, |
12128 | fragP->fr_symbol, | |
12129 | fragP->fr_offset, 1, | |
12130 | BFD_RELOC_8_PCREL); | |
12131 | fixP->fx_signed = 1; | |
412167cb AM |
12132 | break; |
12133 | } | |
93c2a809 | 12134 | |
24eab124 | 12135 | /* This changes the byte-displacement jump 0x7N |
fddf5b5b | 12136 | to the (d)word-displacement jump 0x0f,0x8N. */ |
252b5132 | 12137 | opcode[1] = opcode[0] + 0x10; |
f6af82bd | 12138 | opcode[0] = TWO_BYTE_OPCODE_ESCAPE; |
47926f60 KH |
12139 | /* We've added an opcode byte. */ |
12140 | fragP->fr_fix += 1 + size; | |
062cd5e7 AS |
12141 | fix_new (fragP, old_fr_fix + 1, size, |
12142 | fragP->fr_symbol, | |
12143 | fragP->fr_offset, 1, | |
12144 | reloc_type); | |
252b5132 | 12145 | break; |
fddf5b5b AM |
12146 | |
12147 | default: | |
12148 | BAD_CASE (fragP->fr_subtype); | |
12149 | break; | |
252b5132 RH |
12150 | } |
12151 | frag_wane (fragP); | |
ee7fcc42 | 12152 | return fragP->fr_fix - old_fr_fix; |
252b5132 | 12153 | } |
93c2a809 | 12154 | |
93c2a809 AM |
12155 | /* Guess size depending on current relax state. Initially the relax |
12156 | state will correspond to a short jump and we return 1, because | |
12157 | the variable part of the frag (the branch offset) is one byte | |
12158 | long. However, we can relax a section more than once and in that | |
12159 | case we must either set fr_subtype back to the unrelaxed state, | |
12160 | or return the value for the appropriate branch. */ | |
12161 | return md_relax_table[fragP->fr_subtype].rlx_length; | |
ee7fcc42 AM |
12162 | } |
12163 | ||
47926f60 KH |
12164 | /* Called after relax() is finished. |
12165 | ||
12166 | In: Address of frag. | |
12167 | fr_type == rs_machine_dependent. | |
12168 | fr_subtype is what the address relaxed to. | |
12169 | ||
12170 | Out: Any fixSs and constants are set up. | |
12171 | Caller will turn frag into a ".space 0". */ | |
12172 | ||
252b5132 | 12173 | void |
7016a5d5 TG |
12174 | md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec ATTRIBUTE_UNUSED, |
12175 | fragS *fragP) | |
252b5132 | 12176 | { |
29b0f896 | 12177 | unsigned char *opcode; |
252b5132 | 12178 | unsigned char *where_to_put_displacement = NULL; |
847f7ad4 AM |
12179 | offsetT target_address; |
12180 | offsetT opcode_address; | |
252b5132 | 12181 | unsigned int extension = 0; |
847f7ad4 | 12182 | offsetT displacement_from_opcode_start; |
252b5132 | 12183 | |
e379e5f3 L |
12184 | if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING |
12185 | || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING | |
12186 | || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX) | |
12187 | { | |
12188 | /* Generate nop padding. */ | |
12189 | unsigned int size = fragP->tc_frag_data.length; | |
12190 | if (size) | |
12191 | { | |
12192 | if (size > fragP->tc_frag_data.max_bytes) | |
12193 | abort (); | |
12194 | ||
12195 | if (flag_debug) | |
12196 | { | |
12197 | const char *msg; | |
12198 | const char *branch = "branch"; | |
12199 | const char *prefix = ""; | |
12200 | fragS *padding_fragP; | |
12201 | if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) | |
12202 | == BRANCH_PREFIX) | |
12203 | { | |
12204 | padding_fragP = fragP->tc_frag_data.u.padding_fragP; | |
12205 | switch (fragP->tc_frag_data.default_prefix) | |
12206 | { | |
12207 | default: | |
12208 | abort (); | |
12209 | break; | |
12210 | case CS_PREFIX_OPCODE: | |
12211 | prefix = " cs"; | |
12212 | break; | |
12213 | case DS_PREFIX_OPCODE: | |
12214 | prefix = " ds"; | |
12215 | break; | |
12216 | case ES_PREFIX_OPCODE: | |
12217 | prefix = " es"; | |
12218 | break; | |
12219 | case FS_PREFIX_OPCODE: | |
12220 | prefix = " fs"; | |
12221 | break; | |
12222 | case GS_PREFIX_OPCODE: | |
12223 | prefix = " gs"; | |
12224 | break; | |
12225 | case SS_PREFIX_OPCODE: | |
12226 | prefix = " ss"; | |
12227 | break; | |
12228 | } | |
12229 | if (padding_fragP) | |
12230 | msg = _("%s:%u: add %d%s at 0x%llx to align " | |
12231 | "%s within %d-byte boundary\n"); | |
12232 | else | |
12233 | msg = _("%s:%u: add additional %d%s at 0x%llx to " | |
12234 | "align %s within %d-byte boundary\n"); | |
12235 | } | |
12236 | else | |
12237 | { | |
12238 | padding_fragP = fragP; | |
12239 | msg = _("%s:%u: add %d%s-byte nop at 0x%llx to align " | |
12240 | "%s within %d-byte boundary\n"); | |
12241 | } | |
12242 | ||
12243 | if (padding_fragP) | |
12244 | switch (padding_fragP->tc_frag_data.branch_type) | |
12245 | { | |
12246 | case align_branch_jcc: | |
12247 | branch = "jcc"; | |
12248 | break; | |
12249 | case align_branch_fused: | |
12250 | branch = "fused jcc"; | |
12251 | break; | |
12252 | case align_branch_jmp: | |
12253 | branch = "jmp"; | |
12254 | break; | |
12255 | case align_branch_call: | |
12256 | branch = "call"; | |
12257 | break; | |
12258 | case align_branch_indirect: | |
12259 | branch = "indiret branch"; | |
12260 | break; | |
12261 | case align_branch_ret: | |
12262 | branch = "ret"; | |
12263 | break; | |
12264 | default: | |
12265 | break; | |
12266 | } | |
12267 | ||
12268 | fprintf (stdout, msg, | |
12269 | fragP->fr_file, fragP->fr_line, size, prefix, | |
12270 | (long long) fragP->fr_address, branch, | |
12271 | 1 << align_branch_power); | |
12272 | } | |
12273 | if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX) | |
12274 | memset (fragP->fr_opcode, | |
12275 | fragP->tc_frag_data.default_prefix, size); | |
12276 | else | |
12277 | i386_generate_nops (fragP, (char *) fragP->fr_opcode, | |
12278 | size, 0); | |
12279 | fragP->fr_fix += size; | |
12280 | } | |
12281 | return; | |
12282 | } | |
12283 | ||
252b5132 RH |
12284 | opcode = (unsigned char *) fragP->fr_opcode; |
12285 | ||
47926f60 | 12286 | /* Address we want to reach in file space. */ |
252b5132 | 12287 | target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset; |
252b5132 | 12288 | |
47926f60 | 12289 | /* Address opcode resides at in file space. */ |
252b5132 RH |
12290 | opcode_address = fragP->fr_address + fragP->fr_fix; |
12291 | ||
47926f60 | 12292 | /* Displacement from opcode start to fill into instruction. */ |
252b5132 RH |
12293 | displacement_from_opcode_start = target_address - opcode_address; |
12294 | ||
fddf5b5b | 12295 | if ((fragP->fr_subtype & BIG) == 0) |
252b5132 | 12296 | { |
47926f60 KH |
12297 | /* Don't have to change opcode. */ |
12298 | extension = 1; /* 1 opcode + 1 displacement */ | |
252b5132 | 12299 | where_to_put_displacement = &opcode[1]; |
fddf5b5b AM |
12300 | } |
12301 | else | |
12302 | { | |
12303 | if (no_cond_jump_promotion | |
12304 | && TYPE_FROM_RELAX_STATE (fragP->fr_subtype) != UNCOND_JUMP) | |
4eed87de AM |
12305 | as_warn_where (fragP->fr_file, fragP->fr_line, |
12306 | _("long jump required")); | |
252b5132 | 12307 | |
fddf5b5b AM |
12308 | switch (fragP->fr_subtype) |
12309 | { | |
12310 | case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG): | |
12311 | extension = 4; /* 1 opcode + 4 displacement */ | |
12312 | opcode[0] = 0xe9; | |
12313 | where_to_put_displacement = &opcode[1]; | |
12314 | break; | |
252b5132 | 12315 | |
fddf5b5b AM |
12316 | case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16): |
12317 | extension = 2; /* 1 opcode + 2 displacement */ | |
12318 | opcode[0] = 0xe9; | |
12319 | where_to_put_displacement = &opcode[1]; | |
12320 | break; | |
252b5132 | 12321 | |
fddf5b5b AM |
12322 | case ENCODE_RELAX_STATE (COND_JUMP, BIG): |
12323 | case ENCODE_RELAX_STATE (COND_JUMP86, BIG): | |
12324 | extension = 5; /* 2 opcode + 4 displacement */ | |
12325 | opcode[1] = opcode[0] + 0x10; | |
12326 | opcode[0] = TWO_BYTE_OPCODE_ESCAPE; | |
12327 | where_to_put_displacement = &opcode[2]; | |
12328 | break; | |
252b5132 | 12329 | |
fddf5b5b AM |
12330 | case ENCODE_RELAX_STATE (COND_JUMP, BIG16): |
12331 | extension = 3; /* 2 opcode + 2 displacement */ | |
12332 | opcode[1] = opcode[0] + 0x10; | |
12333 | opcode[0] = TWO_BYTE_OPCODE_ESCAPE; | |
12334 | where_to_put_displacement = &opcode[2]; | |
12335 | break; | |
252b5132 | 12336 | |
fddf5b5b AM |
12337 | case ENCODE_RELAX_STATE (COND_JUMP86, BIG16): |
12338 | extension = 4; | |
12339 | opcode[0] ^= 1; | |
12340 | opcode[1] = 3; | |
12341 | opcode[2] = 0xe9; | |
12342 | where_to_put_displacement = &opcode[3]; | |
12343 | break; | |
12344 | ||
12345 | default: | |
12346 | BAD_CASE (fragP->fr_subtype); | |
12347 | break; | |
12348 | } | |
252b5132 | 12349 | } |
fddf5b5b | 12350 | |
7b81dfbb AJ |
12351 | /* If size if less then four we are sure that the operand fits, |
12352 | but if it's 4, then it could be that the displacement is larger | |
12353 | then -/+ 2GB. */ | |
12354 | if (DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype) == 4 | |
12355 | && object_64bit | |
12356 | && ((addressT) (displacement_from_opcode_start - extension | |
4eed87de AM |
12357 | + ((addressT) 1 << 31)) |
12358 | > (((addressT) 2 << 31) - 1))) | |
7b81dfbb AJ |
12359 | { |
12360 | as_bad_where (fragP->fr_file, fragP->fr_line, | |
12361 | _("jump target out of range")); | |
12362 | /* Make us emit 0. */ | |
12363 | displacement_from_opcode_start = extension; | |
12364 | } | |
47926f60 | 12365 | /* Now put displacement after opcode. */ |
252b5132 RH |
12366 | md_number_to_chars ((char *) where_to_put_displacement, |
12367 | (valueT) (displacement_from_opcode_start - extension), | |
fddf5b5b | 12368 | DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype)); |
252b5132 RH |
12369 | fragP->fr_fix += extension; |
12370 | } | |
12371 | \f | |
7016a5d5 | 12372 | /* Apply a fixup (fixP) to segment data, once it has been determined |
252b5132 RH |
12373 | by our caller that we have all the info we need to fix it up. |
12374 | ||
7016a5d5 TG |
12375 | Parameter valP is the pointer to the value of the bits. |
12376 | ||
252b5132 RH |
12377 | On the 386, immediates, displacements, and data pointers are all in |
12378 | the same (little-endian) format, so we don't need to care about which | |
12379 | we are handling. */ | |
12380 | ||
94f592af | 12381 | void |
7016a5d5 | 12382 | md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) |
252b5132 | 12383 | { |
94f592af | 12384 | char *p = fixP->fx_where + fixP->fx_frag->fr_literal; |
c6682705 | 12385 | valueT value = *valP; |
252b5132 | 12386 | |
f86103b7 | 12387 | #if !defined (TE_Mach) |
93382f6d AM |
12388 | if (fixP->fx_pcrel) |
12389 | { | |
12390 | switch (fixP->fx_r_type) | |
12391 | { | |
5865bb77 ILT |
12392 | default: |
12393 | break; | |
12394 | ||
d6ab8113 JB |
12395 | case BFD_RELOC_64: |
12396 | fixP->fx_r_type = BFD_RELOC_64_PCREL; | |
12397 | break; | |
93382f6d | 12398 | case BFD_RELOC_32: |
ae8887b5 | 12399 | case BFD_RELOC_X86_64_32S: |
93382f6d AM |
12400 | fixP->fx_r_type = BFD_RELOC_32_PCREL; |
12401 | break; | |
12402 | case BFD_RELOC_16: | |
12403 | fixP->fx_r_type = BFD_RELOC_16_PCREL; | |
12404 | break; | |
12405 | case BFD_RELOC_8: | |
12406 | fixP->fx_r_type = BFD_RELOC_8_PCREL; | |
12407 | break; | |
12408 | } | |
12409 | } | |
252b5132 | 12410 | |
a161fe53 | 12411 | if (fixP->fx_addsy != NULL |
31312f95 | 12412 | && (fixP->fx_r_type == BFD_RELOC_32_PCREL |
d6ab8113 | 12413 | || fixP->fx_r_type == BFD_RELOC_64_PCREL |
31312f95 | 12414 | || fixP->fx_r_type == BFD_RELOC_16_PCREL |
d258b828 | 12415 | || fixP->fx_r_type == BFD_RELOC_8_PCREL) |
31312f95 | 12416 | && !use_rela_relocations) |
252b5132 | 12417 | { |
31312f95 AM |
12418 | /* This is a hack. There should be a better way to handle this. |
12419 | This covers for the fact that bfd_install_relocation will | |
12420 | subtract the current location (for partial_inplace, PC relative | |
12421 | relocations); see more below. */ | |
252b5132 | 12422 | #ifndef OBJ_AOUT |
718ddfc0 | 12423 | if (IS_ELF |
252b5132 RH |
12424 | #ifdef TE_PE |
12425 | || OUTPUT_FLAVOR == bfd_target_coff_flavour | |
12426 | #endif | |
12427 | ) | |
12428 | value += fixP->fx_where + fixP->fx_frag->fr_address; | |
12429 | #endif | |
12430 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) | |
718ddfc0 | 12431 | if (IS_ELF) |
252b5132 | 12432 | { |
6539b54b | 12433 | segT sym_seg = S_GET_SEGMENT (fixP->fx_addsy); |
2f66722d | 12434 | |
6539b54b | 12435 | if ((sym_seg == seg |
2f66722d | 12436 | || (symbol_section_p (fixP->fx_addsy) |
6539b54b | 12437 | && sym_seg != absolute_section)) |
af65af87 | 12438 | && !generic_force_reloc (fixP)) |
2f66722d AM |
12439 | { |
12440 | /* Yes, we add the values in twice. This is because | |
6539b54b AM |
12441 | bfd_install_relocation subtracts them out again. I think |
12442 | bfd_install_relocation is broken, but I don't dare change | |
2f66722d AM |
12443 | it. FIXME. */ |
12444 | value += fixP->fx_where + fixP->fx_frag->fr_address; | |
12445 | } | |
252b5132 RH |
12446 | } |
12447 | #endif | |
12448 | #if defined (OBJ_COFF) && defined (TE_PE) | |
977cdf5a NC |
12449 | /* For some reason, the PE format does not store a |
12450 | section address offset for a PC relative symbol. */ | |
12451 | if (S_GET_SEGMENT (fixP->fx_addsy) != seg | |
7be1c489 | 12452 | || S_IS_WEAK (fixP->fx_addsy)) |
252b5132 RH |
12453 | value += md_pcrel_from (fixP); |
12454 | #endif | |
12455 | } | |
fbeb56a4 | 12456 | #if defined (OBJ_COFF) && defined (TE_PE) |
f01c1a09 NC |
12457 | if (fixP->fx_addsy != NULL |
12458 | && S_IS_WEAK (fixP->fx_addsy) | |
12459 | /* PR 16858: Do not modify weak function references. */ | |
12460 | && ! fixP->fx_pcrel) | |
fbeb56a4 | 12461 | { |
296a8689 NC |
12462 | #if !defined (TE_PEP) |
12463 | /* For x86 PE weak function symbols are neither PC-relative | |
12464 | nor do they set S_IS_FUNCTION. So the only reliable way | |
12465 | to detect them is to check the flags of their containing | |
12466 | section. */ | |
12467 | if (S_GET_SEGMENT (fixP->fx_addsy) != NULL | |
12468 | && S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_CODE) | |
12469 | ; | |
12470 | else | |
12471 | #endif | |
fbeb56a4 DK |
12472 | value -= S_GET_VALUE (fixP->fx_addsy); |
12473 | } | |
12474 | #endif | |
252b5132 RH |
12475 | |
12476 | /* Fix a few things - the dynamic linker expects certain values here, | |
0234cb7c | 12477 | and we must not disappoint it. */ |
252b5132 | 12478 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
718ddfc0 | 12479 | if (IS_ELF && fixP->fx_addsy) |
47926f60 KH |
12480 | switch (fixP->fx_r_type) |
12481 | { | |
12482 | case BFD_RELOC_386_PLT32: | |
3e73aa7c | 12483 | case BFD_RELOC_X86_64_PLT32: |
b9519cfe L |
12484 | /* Make the jump instruction point to the address of the operand. |
12485 | At runtime we merely add the offset to the actual PLT entry. | |
12486 | NB: Subtract the offset size only for jump instructions. */ | |
12487 | if (fixP->fx_pcrel) | |
12488 | value = -4; | |
47926f60 | 12489 | break; |
31312f95 | 12490 | |
13ae64f3 JJ |
12491 | case BFD_RELOC_386_TLS_GD: |
12492 | case BFD_RELOC_386_TLS_LDM: | |
13ae64f3 | 12493 | case BFD_RELOC_386_TLS_IE_32: |
37e55690 JJ |
12494 | case BFD_RELOC_386_TLS_IE: |
12495 | case BFD_RELOC_386_TLS_GOTIE: | |
67a4f2b7 | 12496 | case BFD_RELOC_386_TLS_GOTDESC: |
bffbf940 JJ |
12497 | case BFD_RELOC_X86_64_TLSGD: |
12498 | case BFD_RELOC_X86_64_TLSLD: | |
12499 | case BFD_RELOC_X86_64_GOTTPOFF: | |
67a4f2b7 | 12500 | case BFD_RELOC_X86_64_GOTPC32_TLSDESC: |
00f7efb6 JJ |
12501 | value = 0; /* Fully resolved at runtime. No addend. */ |
12502 | /* Fallthrough */ | |
12503 | case BFD_RELOC_386_TLS_LE: | |
12504 | case BFD_RELOC_386_TLS_LDO_32: | |
12505 | case BFD_RELOC_386_TLS_LE_32: | |
12506 | case BFD_RELOC_X86_64_DTPOFF32: | |
d6ab8113 | 12507 | case BFD_RELOC_X86_64_DTPOFF64: |
00f7efb6 | 12508 | case BFD_RELOC_X86_64_TPOFF32: |
d6ab8113 | 12509 | case BFD_RELOC_X86_64_TPOFF64: |
00f7efb6 JJ |
12510 | S_SET_THREAD_LOCAL (fixP->fx_addsy); |
12511 | break; | |
12512 | ||
67a4f2b7 AO |
12513 | case BFD_RELOC_386_TLS_DESC_CALL: |
12514 | case BFD_RELOC_X86_64_TLSDESC_CALL: | |
12515 | value = 0; /* Fully resolved at runtime. No addend. */ | |
12516 | S_SET_THREAD_LOCAL (fixP->fx_addsy); | |
12517 | fixP->fx_done = 0; | |
12518 | return; | |
12519 | ||
47926f60 KH |
12520 | case BFD_RELOC_VTABLE_INHERIT: |
12521 | case BFD_RELOC_VTABLE_ENTRY: | |
12522 | fixP->fx_done = 0; | |
94f592af | 12523 | return; |
47926f60 KH |
12524 | |
12525 | default: | |
12526 | break; | |
12527 | } | |
12528 | #endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) */ | |
c6682705 | 12529 | *valP = value; |
f86103b7 | 12530 | #endif /* !defined (TE_Mach) */ |
3e73aa7c | 12531 | |
3e73aa7c | 12532 | /* Are we finished with this relocation now? */ |
c6682705 | 12533 | if (fixP->fx_addsy == NULL) |
3e73aa7c | 12534 | fixP->fx_done = 1; |
fbeb56a4 DK |
12535 | #if defined (OBJ_COFF) && defined (TE_PE) |
12536 | else if (fixP->fx_addsy != NULL && S_IS_WEAK (fixP->fx_addsy)) | |
12537 | { | |
12538 | fixP->fx_done = 0; | |
12539 | /* Remember value for tc_gen_reloc. */ | |
12540 | fixP->fx_addnumber = value; | |
12541 | /* Clear out the frag for now. */ | |
12542 | value = 0; | |
12543 | } | |
12544 | #endif | |
3e73aa7c JH |
12545 | else if (use_rela_relocations) |
12546 | { | |
12547 | fixP->fx_no_overflow = 1; | |
062cd5e7 AS |
12548 | /* Remember value for tc_gen_reloc. */ |
12549 | fixP->fx_addnumber = value; | |
3e73aa7c JH |
12550 | value = 0; |
12551 | } | |
f86103b7 | 12552 | |
94f592af | 12553 | md_number_to_chars (p, value, fixP->fx_size); |
252b5132 | 12554 | } |
252b5132 | 12555 | \f |
6d4af3c2 | 12556 | const char * |
499ac353 | 12557 | md_atof (int type, char *litP, int *sizeP) |
252b5132 | 12558 | { |
499ac353 NC |
12559 | /* This outputs the LITTLENUMs in REVERSE order; |
12560 | in accord with the bigendian 386. */ | |
12561 | return ieee_md_atof (type, litP, sizeP, FALSE); | |
252b5132 RH |
12562 | } |
12563 | \f | |
2d545b82 | 12564 | static char output_invalid_buf[sizeof (unsigned char) * 2 + 6]; |
252b5132 | 12565 | |
252b5132 | 12566 | static char * |
e3bb37b5 | 12567 | output_invalid (int c) |
252b5132 | 12568 | { |
3882b010 | 12569 | if (ISPRINT (c)) |
f9f21a03 L |
12570 | snprintf (output_invalid_buf, sizeof (output_invalid_buf), |
12571 | "'%c'", c); | |
252b5132 | 12572 | else |
f9f21a03 | 12573 | snprintf (output_invalid_buf, sizeof (output_invalid_buf), |
2d545b82 | 12574 | "(0x%x)", (unsigned char) c); |
252b5132 RH |
12575 | return output_invalid_buf; |
12576 | } | |
12577 | ||
8a6fb3f9 JB |
12578 | /* Verify that @r can be used in the current context. */ |
12579 | ||
12580 | static bfd_boolean check_register (const reg_entry *r) | |
12581 | { | |
12582 | if (allow_pseudo_reg) | |
12583 | return TRUE; | |
12584 | ||
12585 | if (operand_type_all_zero (&r->reg_type)) | |
12586 | return FALSE; | |
12587 | ||
12588 | if ((r->reg_type.bitfield.dword | |
12589 | || (r->reg_type.bitfield.class == SReg && r->reg_num > 3) | |
12590 | || r->reg_type.bitfield.class == RegCR | |
22e00a3f | 12591 | || r->reg_type.bitfield.class == RegDR) |
8a6fb3f9 JB |
12592 | && !cpu_arch_flags.bitfield.cpui386) |
12593 | return FALSE; | |
12594 | ||
22e00a3f JB |
12595 | if (r->reg_type.bitfield.class == RegTR |
12596 | && (flag_code == CODE_64BIT | |
12597 | || !cpu_arch_flags.bitfield.cpui386 | |
12598 | || cpu_arch_isa_flags.bitfield.cpui586 | |
12599 | || cpu_arch_isa_flags.bitfield.cpui686)) | |
12600 | return FALSE; | |
12601 | ||
8a6fb3f9 JB |
12602 | if (r->reg_type.bitfield.class == RegMMX && !cpu_arch_flags.bitfield.cpummx) |
12603 | return FALSE; | |
12604 | ||
12605 | if (!cpu_arch_flags.bitfield.cpuavx512f) | |
12606 | { | |
12607 | if (r->reg_type.bitfield.zmmword | |
12608 | || r->reg_type.bitfield.class == RegMask) | |
12609 | return FALSE; | |
12610 | ||
12611 | if (!cpu_arch_flags.bitfield.cpuavx) | |
12612 | { | |
12613 | if (r->reg_type.bitfield.ymmword) | |
12614 | return FALSE; | |
12615 | ||
12616 | if (!cpu_arch_flags.bitfield.cpusse && r->reg_type.bitfield.xmmword) | |
12617 | return FALSE; | |
12618 | } | |
12619 | } | |
12620 | ||
260cd341 LC |
12621 | if (r->reg_type.bitfield.tmmword |
12622 | && (!cpu_arch_flags.bitfield.cpuamx_tile | |
12623 | || flag_code != CODE_64BIT)) | |
12624 | return FALSE; | |
12625 | ||
8a6fb3f9 JB |
12626 | if (r->reg_type.bitfield.class == RegBND && !cpu_arch_flags.bitfield.cpumpx) |
12627 | return FALSE; | |
12628 | ||
12629 | /* Don't allow fake index register unless allow_index_reg isn't 0. */ | |
12630 | if (!allow_index_reg && r->reg_num == RegIZ) | |
12631 | return FALSE; | |
12632 | ||
12633 | /* Upper 16 vector registers are only available with VREX in 64bit | |
12634 | mode, and require EVEX encoding. */ | |
12635 | if (r->reg_flags & RegVRex) | |
12636 | { | |
12637 | if (!cpu_arch_flags.bitfield.cpuavx512f | |
12638 | || flag_code != CODE_64BIT) | |
12639 | return FALSE; | |
12640 | ||
da4977e0 JB |
12641 | if (i.vec_encoding == vex_encoding_default) |
12642 | i.vec_encoding = vex_encoding_evex; | |
12643 | else if (i.vec_encoding != vex_encoding_evex) | |
12644 | i.vec_encoding = vex_encoding_error; | |
8a6fb3f9 JB |
12645 | } |
12646 | ||
12647 | if (((r->reg_flags & (RegRex64 | RegRex)) || r->reg_type.bitfield.qword) | |
12648 | && (!cpu_arch_flags.bitfield.cpulm || r->reg_type.bitfield.class != RegCR) | |
12649 | && flag_code != CODE_64BIT) | |
12650 | return FALSE; | |
12651 | ||
12652 | if (r->reg_type.bitfield.class == SReg && r->reg_num == RegFlat | |
12653 | && !intel_syntax) | |
12654 | return FALSE; | |
12655 | ||
12656 | return TRUE; | |
12657 | } | |
12658 | ||
af6bdddf | 12659 | /* REG_STRING starts *before* REGISTER_PREFIX. */ |
252b5132 RH |
12660 | |
12661 | static const reg_entry * | |
4d1bb795 | 12662 | parse_real_register (char *reg_string, char **end_op) |
252b5132 | 12663 | { |
af6bdddf AM |
12664 | char *s = reg_string; |
12665 | char *p; | |
252b5132 RH |
12666 | char reg_name_given[MAX_REG_NAME_SIZE + 1]; |
12667 | const reg_entry *r; | |
12668 | ||
12669 | /* Skip possible REGISTER_PREFIX and possible whitespace. */ | |
12670 | if (*s == REGISTER_PREFIX) | |
12671 | ++s; | |
12672 | ||
12673 | if (is_space_char (*s)) | |
12674 | ++s; | |
12675 | ||
12676 | p = reg_name_given; | |
af6bdddf | 12677 | while ((*p++ = register_chars[(unsigned char) *s]) != '\0') |
252b5132 RH |
12678 | { |
12679 | if (p >= reg_name_given + MAX_REG_NAME_SIZE) | |
af6bdddf AM |
12680 | return (const reg_entry *) NULL; |
12681 | s++; | |
252b5132 RH |
12682 | } |
12683 | ||
6588847e DN |
12684 | /* For naked regs, make sure that we are not dealing with an identifier. |
12685 | This prevents confusing an identifier like `eax_var' with register | |
12686 | `eax'. */ | |
12687 | if (allow_naked_reg && identifier_chars[(unsigned char) *s]) | |
12688 | return (const reg_entry *) NULL; | |
12689 | ||
af6bdddf | 12690 | *end_op = s; |
252b5132 | 12691 | |
629310ab | 12692 | r = (const reg_entry *) str_hash_find (reg_hash, reg_name_given); |
252b5132 | 12693 | |
5f47d35b | 12694 | /* Handle floating point regs, allowing spaces in the (i) part. */ |
47926f60 | 12695 | if (r == i386_regtab /* %st is first entry of table */) |
5f47d35b | 12696 | { |
0e0eea78 JB |
12697 | if (!cpu_arch_flags.bitfield.cpu8087 |
12698 | && !cpu_arch_flags.bitfield.cpu287 | |
af32b722 JB |
12699 | && !cpu_arch_flags.bitfield.cpu387 |
12700 | && !allow_pseudo_reg) | |
0e0eea78 JB |
12701 | return (const reg_entry *) NULL; |
12702 | ||
5f47d35b AM |
12703 | if (is_space_char (*s)) |
12704 | ++s; | |
12705 | if (*s == '(') | |
12706 | { | |
af6bdddf | 12707 | ++s; |
5f47d35b AM |
12708 | if (is_space_char (*s)) |
12709 | ++s; | |
12710 | if (*s >= '0' && *s <= '7') | |
12711 | { | |
db557034 | 12712 | int fpr = *s - '0'; |
af6bdddf | 12713 | ++s; |
5f47d35b AM |
12714 | if (is_space_char (*s)) |
12715 | ++s; | |
12716 | if (*s == ')') | |
12717 | { | |
12718 | *end_op = s + 1; | |
629310ab | 12719 | r = (const reg_entry *) str_hash_find (reg_hash, "st(0)"); |
db557034 AM |
12720 | know (r); |
12721 | return r + fpr; | |
5f47d35b | 12722 | } |
5f47d35b | 12723 | } |
47926f60 | 12724 | /* We have "%st(" then garbage. */ |
5f47d35b AM |
12725 | return (const reg_entry *) NULL; |
12726 | } | |
12727 | } | |
12728 | ||
8a6fb3f9 | 12729 | return r && check_register (r) ? r : NULL; |
252b5132 | 12730 | } |
4d1bb795 JB |
12731 | |
12732 | /* REG_STRING starts *before* REGISTER_PREFIX. */ | |
12733 | ||
12734 | static const reg_entry * | |
12735 | parse_register (char *reg_string, char **end_op) | |
12736 | { | |
12737 | const reg_entry *r; | |
12738 | ||
12739 | if (*reg_string == REGISTER_PREFIX || allow_naked_reg) | |
12740 | r = parse_real_register (reg_string, end_op); | |
12741 | else | |
12742 | r = NULL; | |
12743 | if (!r) | |
12744 | { | |
12745 | char *save = input_line_pointer; | |
12746 | char c; | |
12747 | symbolS *symbolP; | |
12748 | ||
12749 | input_line_pointer = reg_string; | |
d02603dc | 12750 | c = get_symbol_name (®_string); |
4d1bb795 JB |
12751 | symbolP = symbol_find (reg_string); |
12752 | if (symbolP && S_GET_SEGMENT (symbolP) == reg_section) | |
12753 | { | |
12754 | const expressionS *e = symbol_get_value_expression (symbolP); | |
12755 | ||
0398aac5 | 12756 | know (e->X_op == O_register); |
4eed87de | 12757 | know (e->X_add_number >= 0 |
c3fe08fa | 12758 | && (valueT) e->X_add_number < i386_regtab_size); |
4d1bb795 | 12759 | r = i386_regtab + e->X_add_number; |
8a6fb3f9 JB |
12760 | if (!check_register (r)) |
12761 | { | |
12762 | as_bad (_("register '%s%s' cannot be used here"), | |
12763 | register_prefix, r->reg_name); | |
12764 | r = &bad_reg; | |
12765 | } | |
4d1bb795 JB |
12766 | *end_op = input_line_pointer; |
12767 | } | |
12768 | *input_line_pointer = c; | |
12769 | input_line_pointer = save; | |
12770 | } | |
12771 | return r; | |
12772 | } | |
12773 | ||
12774 | int | |
12775 | i386_parse_name (char *name, expressionS *e, char *nextcharP) | |
12776 | { | |
12777 | const reg_entry *r; | |
12778 | char *end = input_line_pointer; | |
12779 | ||
12780 | *end = *nextcharP; | |
12781 | r = parse_register (name, &input_line_pointer); | |
12782 | if (r && end <= input_line_pointer) | |
12783 | { | |
12784 | *nextcharP = *input_line_pointer; | |
12785 | *input_line_pointer = 0; | |
8a6fb3f9 JB |
12786 | if (r != &bad_reg) |
12787 | { | |
12788 | e->X_op = O_register; | |
12789 | e->X_add_number = r - i386_regtab; | |
12790 | } | |
12791 | else | |
12792 | e->X_op = O_illegal; | |
4d1bb795 JB |
12793 | return 1; |
12794 | } | |
12795 | input_line_pointer = end; | |
12796 | *end = 0; | |
ee86248c | 12797 | return intel_syntax ? i386_intel_parse_name (name, e) : 0; |
4d1bb795 JB |
12798 | } |
12799 | ||
12800 | void | |
12801 | md_operand (expressionS *e) | |
12802 | { | |
ee86248c JB |
12803 | char *end; |
12804 | const reg_entry *r; | |
4d1bb795 | 12805 | |
ee86248c JB |
12806 | switch (*input_line_pointer) |
12807 | { | |
12808 | case REGISTER_PREFIX: | |
12809 | r = parse_real_register (input_line_pointer, &end); | |
4d1bb795 JB |
12810 | if (r) |
12811 | { | |
12812 | e->X_op = O_register; | |
12813 | e->X_add_number = r - i386_regtab; | |
12814 | input_line_pointer = end; | |
12815 | } | |
ee86248c JB |
12816 | break; |
12817 | ||
12818 | case '[': | |
9c2799c2 | 12819 | gas_assert (intel_syntax); |
ee86248c JB |
12820 | end = input_line_pointer++; |
12821 | expression (e); | |
12822 | if (*input_line_pointer == ']') | |
12823 | { | |
12824 | ++input_line_pointer; | |
12825 | e->X_op_symbol = make_expr_symbol (e); | |
12826 | e->X_add_symbol = NULL; | |
12827 | e->X_add_number = 0; | |
12828 | e->X_op = O_index; | |
12829 | } | |
12830 | else | |
12831 | { | |
12832 | e->X_op = O_absent; | |
12833 | input_line_pointer = end; | |
12834 | } | |
12835 | break; | |
4d1bb795 JB |
12836 | } |
12837 | } | |
12838 | ||
252b5132 | 12839 | \f |
4cc782b5 | 12840 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
b6f8c7c4 | 12841 | const char *md_shortopts = "kVQ:sqnO::"; |
252b5132 | 12842 | #else |
b6f8c7c4 | 12843 | const char *md_shortopts = "qnO::"; |
252b5132 | 12844 | #endif |
6e0b89ee | 12845 | |
3e73aa7c | 12846 | #define OPTION_32 (OPTION_MD_BASE + 0) |
b3b91714 AM |
12847 | #define OPTION_64 (OPTION_MD_BASE + 1) |
12848 | #define OPTION_DIVIDE (OPTION_MD_BASE + 2) | |
9103f4f4 L |
12849 | #define OPTION_MARCH (OPTION_MD_BASE + 3) |
12850 | #define OPTION_MTUNE (OPTION_MD_BASE + 4) | |
1efbbeb4 L |
12851 | #define OPTION_MMNEMONIC (OPTION_MD_BASE + 5) |
12852 | #define OPTION_MSYNTAX (OPTION_MD_BASE + 6) | |
12853 | #define OPTION_MINDEX_REG (OPTION_MD_BASE + 7) | |
12854 | #define OPTION_MNAKED_REG (OPTION_MD_BASE + 8) | |
bd5dea88 | 12855 | #define OPTION_MRELAX_RELOCATIONS (OPTION_MD_BASE + 9) |
c0f3af97 | 12856 | #define OPTION_MSSE2AVX (OPTION_MD_BASE + 10) |
daf50ae7 | 12857 | #define OPTION_MSSE_CHECK (OPTION_MD_BASE + 11) |
7bab8ab5 JB |
12858 | #define OPTION_MOPERAND_CHECK (OPTION_MD_BASE + 12) |
12859 | #define OPTION_MAVXSCALAR (OPTION_MD_BASE + 13) | |
12860 | #define OPTION_X32 (OPTION_MD_BASE + 14) | |
7e8b059b | 12861 | #define OPTION_MADD_BND_PREFIX (OPTION_MD_BASE + 15) |
43234a1e L |
12862 | #define OPTION_MEVEXLIG (OPTION_MD_BASE + 16) |
12863 | #define OPTION_MEVEXWIG (OPTION_MD_BASE + 17) | |
167ad85b | 12864 | #define OPTION_MBIG_OBJ (OPTION_MD_BASE + 18) |
d1982f93 | 12865 | #define OPTION_MOMIT_LOCK_PREFIX (OPTION_MD_BASE + 19) |
d3d3c6db | 12866 | #define OPTION_MEVEXRCIG (OPTION_MD_BASE + 20) |
8dcea932 | 12867 | #define OPTION_MSHARED (OPTION_MD_BASE + 21) |
5db04b09 L |
12868 | #define OPTION_MAMD64 (OPTION_MD_BASE + 22) |
12869 | #define OPTION_MINTEL64 (OPTION_MD_BASE + 23) | |
e4e00185 | 12870 | #define OPTION_MFENCE_AS_LOCK_ADD (OPTION_MD_BASE + 24) |
b4a3a7b4 | 12871 | #define OPTION_X86_USED_NOTE (OPTION_MD_BASE + 25) |
03751133 | 12872 | #define OPTION_MVEXWIG (OPTION_MD_BASE + 26) |
e379e5f3 L |
12873 | #define OPTION_MALIGN_BRANCH_BOUNDARY (OPTION_MD_BASE + 27) |
12874 | #define OPTION_MALIGN_BRANCH_PREFIX_SIZE (OPTION_MD_BASE + 28) | |
12875 | #define OPTION_MALIGN_BRANCH (OPTION_MD_BASE + 29) | |
76cf450b | 12876 | #define OPTION_MBRANCHES_WITH_32B_BOUNDARIES (OPTION_MD_BASE + 30) |
ae531041 L |
12877 | #define OPTION_MLFENCE_AFTER_LOAD (OPTION_MD_BASE + 31) |
12878 | #define OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH (OPTION_MD_BASE + 32) | |
12879 | #define OPTION_MLFENCE_BEFORE_RET (OPTION_MD_BASE + 33) | |
b3b91714 | 12880 | |
99ad8390 NC |
12881 | struct option md_longopts[] = |
12882 | { | |
3e73aa7c | 12883 | {"32", no_argument, NULL, OPTION_32}, |
321098a5 | 12884 | #if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \ |
d382c579 | 12885 | || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O)) |
3e73aa7c | 12886 | {"64", no_argument, NULL, OPTION_64}, |
351f65ca L |
12887 | #endif |
12888 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) | |
570561f7 | 12889 | {"x32", no_argument, NULL, OPTION_X32}, |
8dcea932 | 12890 | {"mshared", no_argument, NULL, OPTION_MSHARED}, |
b4a3a7b4 | 12891 | {"mx86-used-note", required_argument, NULL, OPTION_X86_USED_NOTE}, |
6e0b89ee | 12892 | #endif |
b3b91714 | 12893 | {"divide", no_argument, NULL, OPTION_DIVIDE}, |
9103f4f4 L |
12894 | {"march", required_argument, NULL, OPTION_MARCH}, |
12895 | {"mtune", required_argument, NULL, OPTION_MTUNE}, | |
1efbbeb4 L |
12896 | {"mmnemonic", required_argument, NULL, OPTION_MMNEMONIC}, |
12897 | {"msyntax", required_argument, NULL, OPTION_MSYNTAX}, | |
12898 | {"mindex-reg", no_argument, NULL, OPTION_MINDEX_REG}, | |
12899 | {"mnaked-reg", no_argument, NULL, OPTION_MNAKED_REG}, | |
c0f3af97 | 12900 | {"msse2avx", no_argument, NULL, OPTION_MSSE2AVX}, |
daf50ae7 | 12901 | {"msse-check", required_argument, NULL, OPTION_MSSE_CHECK}, |
7bab8ab5 | 12902 | {"moperand-check", required_argument, NULL, OPTION_MOPERAND_CHECK}, |
539f890d | 12903 | {"mavxscalar", required_argument, NULL, OPTION_MAVXSCALAR}, |
03751133 | 12904 | {"mvexwig", required_argument, NULL, OPTION_MVEXWIG}, |
7e8b059b | 12905 | {"madd-bnd-prefix", no_argument, NULL, OPTION_MADD_BND_PREFIX}, |
43234a1e L |
12906 | {"mevexlig", required_argument, NULL, OPTION_MEVEXLIG}, |
12907 | {"mevexwig", required_argument, NULL, OPTION_MEVEXWIG}, | |
167ad85b TG |
12908 | # if defined (TE_PE) || defined (TE_PEP) |
12909 | {"mbig-obj", no_argument, NULL, OPTION_MBIG_OBJ}, | |
12910 | #endif | |
d1982f93 | 12911 | {"momit-lock-prefix", required_argument, NULL, OPTION_MOMIT_LOCK_PREFIX}, |
e4e00185 | 12912 | {"mfence-as-lock-add", required_argument, NULL, OPTION_MFENCE_AS_LOCK_ADD}, |
0cb4071e | 12913 | {"mrelax-relocations", required_argument, NULL, OPTION_MRELAX_RELOCATIONS}, |
d3d3c6db | 12914 | {"mevexrcig", required_argument, NULL, OPTION_MEVEXRCIG}, |
e379e5f3 L |
12915 | {"malign-branch-boundary", required_argument, NULL, OPTION_MALIGN_BRANCH_BOUNDARY}, |
12916 | {"malign-branch-prefix-size", required_argument, NULL, OPTION_MALIGN_BRANCH_PREFIX_SIZE}, | |
12917 | {"malign-branch", required_argument, NULL, OPTION_MALIGN_BRANCH}, | |
76cf450b | 12918 | {"mbranches-within-32B-boundaries", no_argument, NULL, OPTION_MBRANCHES_WITH_32B_BOUNDARIES}, |
ae531041 L |
12919 | {"mlfence-after-load", required_argument, NULL, OPTION_MLFENCE_AFTER_LOAD}, |
12920 | {"mlfence-before-indirect-branch", required_argument, NULL, | |
12921 | OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH}, | |
12922 | {"mlfence-before-ret", required_argument, NULL, OPTION_MLFENCE_BEFORE_RET}, | |
5db04b09 L |
12923 | {"mamd64", no_argument, NULL, OPTION_MAMD64}, |
12924 | {"mintel64", no_argument, NULL, OPTION_MINTEL64}, | |
252b5132 RH |
12925 | {NULL, no_argument, NULL, 0} |
12926 | }; | |
12927 | size_t md_longopts_size = sizeof (md_longopts); | |
12928 | ||
12929 | int | |
17b9d67d | 12930 | md_parse_option (int c, const char *arg) |
252b5132 | 12931 | { |
91d6fa6a | 12932 | unsigned int j; |
e379e5f3 | 12933 | char *arch, *next, *saved, *type; |
9103f4f4 | 12934 | |
252b5132 RH |
12935 | switch (c) |
12936 | { | |
12b55ccc L |
12937 | case 'n': |
12938 | optimize_align_code = 0; | |
12939 | break; | |
12940 | ||
a38cf1db AM |
12941 | case 'q': |
12942 | quiet_warnings = 1; | |
252b5132 RH |
12943 | break; |
12944 | ||
12945 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) | |
a38cf1db AM |
12946 | /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section |
12947 | should be emitted or not. FIXME: Not implemented. */ | |
12948 | case 'Q': | |
d4693039 JB |
12949 | if ((arg[0] != 'y' && arg[0] != 'n') || arg[1]) |
12950 | return 0; | |
252b5132 RH |
12951 | break; |
12952 | ||
12953 | /* -V: SVR4 argument to print version ID. */ | |
12954 | case 'V': | |
12955 | print_version_id (); | |
12956 | break; | |
12957 | ||
a38cf1db AM |
12958 | /* -k: Ignore for FreeBSD compatibility. */ |
12959 | case 'k': | |
252b5132 | 12960 | break; |
4cc782b5 ILT |
12961 | |
12962 | case 's': | |
12963 | /* -s: On i386 Solaris, this tells the native assembler to use | |
29b0f896 | 12964 | .stab instead of .stab.excl. We always use .stab anyhow. */ |
4cc782b5 | 12965 | break; |
8dcea932 L |
12966 | |
12967 | case OPTION_MSHARED: | |
12968 | shared = 1; | |
12969 | break; | |
b4a3a7b4 L |
12970 | |
12971 | case OPTION_X86_USED_NOTE: | |
12972 | if (strcasecmp (arg, "yes") == 0) | |
12973 | x86_used_note = 1; | |
12974 | else if (strcasecmp (arg, "no") == 0) | |
12975 | x86_used_note = 0; | |
12976 | else | |
12977 | as_fatal (_("invalid -mx86-used-note= option: `%s'"), arg); | |
12978 | break; | |
12979 | ||
12980 | ||
99ad8390 | 12981 | #endif |
321098a5 | 12982 | #if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \ |
d382c579 | 12983 | || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O)) |
3e73aa7c JH |
12984 | case OPTION_64: |
12985 | { | |
12986 | const char **list, **l; | |
12987 | ||
3e73aa7c JH |
12988 | list = bfd_target_list (); |
12989 | for (l = list; *l != NULL; l++) | |
8620418b | 12990 | if (CONST_STRNEQ (*l, "elf64-x86-64") |
99ad8390 NC |
12991 | || strcmp (*l, "coff-x86-64") == 0 |
12992 | || strcmp (*l, "pe-x86-64") == 0 | |
d382c579 TG |
12993 | || strcmp (*l, "pei-x86-64") == 0 |
12994 | || strcmp (*l, "mach-o-x86-64") == 0) | |
6e0b89ee AM |
12995 | { |
12996 | default_arch = "x86_64"; | |
12997 | break; | |
12998 | } | |
3e73aa7c | 12999 | if (*l == NULL) |
2b5d6a91 | 13000 | as_fatal (_("no compiled in support for x86_64")); |
3e73aa7c JH |
13001 | free (list); |
13002 | } | |
13003 | break; | |
13004 | #endif | |
252b5132 | 13005 | |
351f65ca | 13006 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
570561f7 | 13007 | case OPTION_X32: |
351f65ca L |
13008 | if (IS_ELF) |
13009 | { | |
13010 | const char **list, **l; | |
13011 | ||
13012 | list = bfd_target_list (); | |
13013 | for (l = list; *l != NULL; l++) | |
13014 | if (CONST_STRNEQ (*l, "elf32-x86-64")) | |
13015 | { | |
13016 | default_arch = "x86_64:32"; | |
13017 | break; | |
13018 | } | |
13019 | if (*l == NULL) | |
2b5d6a91 | 13020 | as_fatal (_("no compiled in support for 32bit x86_64")); |
351f65ca L |
13021 | free (list); |
13022 | } | |
13023 | else | |
13024 | as_fatal (_("32bit x86_64 is only supported for ELF")); | |
13025 | break; | |
13026 | #endif | |
13027 | ||
6e0b89ee AM |
13028 | case OPTION_32: |
13029 | default_arch = "i386"; | |
13030 | break; | |
13031 | ||
b3b91714 AM |
13032 | case OPTION_DIVIDE: |
13033 | #ifdef SVR4_COMMENT_CHARS | |
13034 | { | |
13035 | char *n, *t; | |
13036 | const char *s; | |
13037 | ||
add39d23 | 13038 | n = XNEWVEC (char, strlen (i386_comment_chars) + 1); |
b3b91714 AM |
13039 | t = n; |
13040 | for (s = i386_comment_chars; *s != '\0'; s++) | |
13041 | if (*s != '/') | |
13042 | *t++ = *s; | |
13043 | *t = '\0'; | |
13044 | i386_comment_chars = n; | |
13045 | } | |
13046 | #endif | |
13047 | break; | |
13048 | ||
9103f4f4 | 13049 | case OPTION_MARCH: |
293f5f65 L |
13050 | saved = xstrdup (arg); |
13051 | arch = saved; | |
13052 | /* Allow -march=+nosse. */ | |
13053 | if (*arch == '+') | |
13054 | arch++; | |
6305a203 | 13055 | do |
9103f4f4 | 13056 | { |
6305a203 | 13057 | if (*arch == '.') |
2b5d6a91 | 13058 | as_fatal (_("invalid -march= option: `%s'"), arg); |
6305a203 L |
13059 | next = strchr (arch, '+'); |
13060 | if (next) | |
13061 | *next++ = '\0'; | |
91d6fa6a | 13062 | for (j = 0; j < ARRAY_SIZE (cpu_arch); j++) |
9103f4f4 | 13063 | { |
91d6fa6a | 13064 | if (strcmp (arch, cpu_arch [j].name) == 0) |
ccc9c027 | 13065 | { |
6305a203 | 13066 | /* Processor. */ |
1ded5609 JB |
13067 | if (! cpu_arch[j].flags.bitfield.cpui386) |
13068 | continue; | |
13069 | ||
91d6fa6a | 13070 | cpu_arch_name = cpu_arch[j].name; |
6305a203 | 13071 | cpu_sub_arch_name = NULL; |
91d6fa6a NC |
13072 | cpu_arch_flags = cpu_arch[j].flags; |
13073 | cpu_arch_isa = cpu_arch[j].type; | |
13074 | cpu_arch_isa_flags = cpu_arch[j].flags; | |
6305a203 L |
13075 | if (!cpu_arch_tune_set) |
13076 | { | |
13077 | cpu_arch_tune = cpu_arch_isa; | |
13078 | cpu_arch_tune_flags = cpu_arch_isa_flags; | |
13079 | } | |
13080 | break; | |
13081 | } | |
91d6fa6a NC |
13082 | else if (*cpu_arch [j].name == '.' |
13083 | && strcmp (arch, cpu_arch [j].name + 1) == 0) | |
6305a203 | 13084 | { |
33eaf5de | 13085 | /* ISA extension. */ |
6305a203 | 13086 | i386_cpu_flags flags; |
309d3373 | 13087 | |
293f5f65 L |
13088 | flags = cpu_flags_or (cpu_arch_flags, |
13089 | cpu_arch[j].flags); | |
81486035 | 13090 | |
5b64d091 | 13091 | if (!cpu_flags_equal (&flags, &cpu_arch_flags)) |
6305a203 L |
13092 | { |
13093 | if (cpu_sub_arch_name) | |
13094 | { | |
13095 | char *name = cpu_sub_arch_name; | |
13096 | cpu_sub_arch_name = concat (name, | |
91d6fa6a | 13097 | cpu_arch[j].name, |
1bf57e9f | 13098 | (const char *) NULL); |
6305a203 L |
13099 | free (name); |
13100 | } | |
13101 | else | |
91d6fa6a | 13102 | cpu_sub_arch_name = xstrdup (cpu_arch[j].name); |
6305a203 | 13103 | cpu_arch_flags = flags; |
a586129e | 13104 | cpu_arch_isa_flags = flags; |
6305a203 | 13105 | } |
0089dace L |
13106 | else |
13107 | cpu_arch_isa_flags | |
13108 | = cpu_flags_or (cpu_arch_isa_flags, | |
13109 | cpu_arch[j].flags); | |
6305a203 | 13110 | break; |
ccc9c027 | 13111 | } |
9103f4f4 | 13112 | } |
6305a203 | 13113 | |
293f5f65 L |
13114 | if (j >= ARRAY_SIZE (cpu_arch)) |
13115 | { | |
33eaf5de | 13116 | /* Disable an ISA extension. */ |
293f5f65 L |
13117 | for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++) |
13118 | if (strcmp (arch, cpu_noarch [j].name) == 0) | |
13119 | { | |
13120 | i386_cpu_flags flags; | |
13121 | ||
13122 | flags = cpu_flags_and_not (cpu_arch_flags, | |
13123 | cpu_noarch[j].flags); | |
13124 | if (!cpu_flags_equal (&flags, &cpu_arch_flags)) | |
13125 | { | |
13126 | if (cpu_sub_arch_name) | |
13127 | { | |
13128 | char *name = cpu_sub_arch_name; | |
13129 | cpu_sub_arch_name = concat (arch, | |
13130 | (const char *) NULL); | |
13131 | free (name); | |
13132 | } | |
13133 | else | |
13134 | cpu_sub_arch_name = xstrdup (arch); | |
13135 | cpu_arch_flags = flags; | |
13136 | cpu_arch_isa_flags = flags; | |
13137 | } | |
13138 | break; | |
13139 | } | |
13140 | ||
13141 | if (j >= ARRAY_SIZE (cpu_noarch)) | |
13142 | j = ARRAY_SIZE (cpu_arch); | |
13143 | } | |
13144 | ||
91d6fa6a | 13145 | if (j >= ARRAY_SIZE (cpu_arch)) |
2b5d6a91 | 13146 | as_fatal (_("invalid -march= option: `%s'"), arg); |
6305a203 L |
13147 | |
13148 | arch = next; | |
9103f4f4 | 13149 | } |
293f5f65 L |
13150 | while (next != NULL); |
13151 | free (saved); | |
9103f4f4 L |
13152 | break; |
13153 | ||
13154 | case OPTION_MTUNE: | |
13155 | if (*arg == '.') | |
2b5d6a91 | 13156 | as_fatal (_("invalid -mtune= option: `%s'"), arg); |
91d6fa6a | 13157 | for (j = 0; j < ARRAY_SIZE (cpu_arch); j++) |
9103f4f4 | 13158 | { |
91d6fa6a | 13159 | if (strcmp (arg, cpu_arch [j].name) == 0) |
9103f4f4 | 13160 | { |
ccc9c027 | 13161 | cpu_arch_tune_set = 1; |
91d6fa6a NC |
13162 | cpu_arch_tune = cpu_arch [j].type; |
13163 | cpu_arch_tune_flags = cpu_arch[j].flags; | |
9103f4f4 L |
13164 | break; |
13165 | } | |
13166 | } | |
91d6fa6a | 13167 | if (j >= ARRAY_SIZE (cpu_arch)) |
2b5d6a91 | 13168 | as_fatal (_("invalid -mtune= option: `%s'"), arg); |
9103f4f4 L |
13169 | break; |
13170 | ||
1efbbeb4 L |
13171 | case OPTION_MMNEMONIC: |
13172 | if (strcasecmp (arg, "att") == 0) | |
13173 | intel_mnemonic = 0; | |
13174 | else if (strcasecmp (arg, "intel") == 0) | |
13175 | intel_mnemonic = 1; | |
13176 | else | |
2b5d6a91 | 13177 | as_fatal (_("invalid -mmnemonic= option: `%s'"), arg); |
1efbbeb4 L |
13178 | break; |
13179 | ||
13180 | case OPTION_MSYNTAX: | |
13181 | if (strcasecmp (arg, "att") == 0) | |
13182 | intel_syntax = 0; | |
13183 | else if (strcasecmp (arg, "intel") == 0) | |
13184 | intel_syntax = 1; | |
13185 | else | |
2b5d6a91 | 13186 | as_fatal (_("invalid -msyntax= option: `%s'"), arg); |
1efbbeb4 L |
13187 | break; |
13188 | ||
13189 | case OPTION_MINDEX_REG: | |
13190 | allow_index_reg = 1; | |
13191 | break; | |
13192 | ||
13193 | case OPTION_MNAKED_REG: | |
13194 | allow_naked_reg = 1; | |
13195 | break; | |
13196 | ||
c0f3af97 L |
13197 | case OPTION_MSSE2AVX: |
13198 | sse2avx = 1; | |
13199 | break; | |
13200 | ||
daf50ae7 L |
13201 | case OPTION_MSSE_CHECK: |
13202 | if (strcasecmp (arg, "error") == 0) | |
7bab8ab5 | 13203 | sse_check = check_error; |
daf50ae7 | 13204 | else if (strcasecmp (arg, "warning") == 0) |
7bab8ab5 | 13205 | sse_check = check_warning; |
daf50ae7 | 13206 | else if (strcasecmp (arg, "none") == 0) |
7bab8ab5 | 13207 | sse_check = check_none; |
daf50ae7 | 13208 | else |
2b5d6a91 | 13209 | as_fatal (_("invalid -msse-check= option: `%s'"), arg); |
daf50ae7 L |
13210 | break; |
13211 | ||
7bab8ab5 JB |
13212 | case OPTION_MOPERAND_CHECK: |
13213 | if (strcasecmp (arg, "error") == 0) | |
13214 | operand_check = check_error; | |
13215 | else if (strcasecmp (arg, "warning") == 0) | |
13216 | operand_check = check_warning; | |
13217 | else if (strcasecmp (arg, "none") == 0) | |
13218 | operand_check = check_none; | |
13219 | else | |
13220 | as_fatal (_("invalid -moperand-check= option: `%s'"), arg); | |
13221 | break; | |
13222 | ||
539f890d L |
13223 | case OPTION_MAVXSCALAR: |
13224 | if (strcasecmp (arg, "128") == 0) | |
13225 | avxscalar = vex128; | |
13226 | else if (strcasecmp (arg, "256") == 0) | |
13227 | avxscalar = vex256; | |
13228 | else | |
2b5d6a91 | 13229 | as_fatal (_("invalid -mavxscalar= option: `%s'"), arg); |
539f890d L |
13230 | break; |
13231 | ||
03751133 L |
13232 | case OPTION_MVEXWIG: |
13233 | if (strcmp (arg, "0") == 0) | |
40c9c8de | 13234 | vexwig = vexw0; |
03751133 | 13235 | else if (strcmp (arg, "1") == 0) |
40c9c8de | 13236 | vexwig = vexw1; |
03751133 L |
13237 | else |
13238 | as_fatal (_("invalid -mvexwig= option: `%s'"), arg); | |
13239 | break; | |
13240 | ||
7e8b059b L |
13241 | case OPTION_MADD_BND_PREFIX: |
13242 | add_bnd_prefix = 1; | |
13243 | break; | |
13244 | ||
43234a1e L |
13245 | case OPTION_MEVEXLIG: |
13246 | if (strcmp (arg, "128") == 0) | |
13247 | evexlig = evexl128; | |
13248 | else if (strcmp (arg, "256") == 0) | |
13249 | evexlig = evexl256; | |
13250 | else if (strcmp (arg, "512") == 0) | |
13251 | evexlig = evexl512; | |
13252 | else | |
13253 | as_fatal (_("invalid -mevexlig= option: `%s'"), arg); | |
13254 | break; | |
13255 | ||
d3d3c6db IT |
13256 | case OPTION_MEVEXRCIG: |
13257 | if (strcmp (arg, "rne") == 0) | |
13258 | evexrcig = rne; | |
13259 | else if (strcmp (arg, "rd") == 0) | |
13260 | evexrcig = rd; | |
13261 | else if (strcmp (arg, "ru") == 0) | |
13262 | evexrcig = ru; | |
13263 | else if (strcmp (arg, "rz") == 0) | |
13264 | evexrcig = rz; | |
13265 | else | |
13266 | as_fatal (_("invalid -mevexrcig= option: `%s'"), arg); | |
13267 | break; | |
13268 | ||
43234a1e L |
13269 | case OPTION_MEVEXWIG: |
13270 | if (strcmp (arg, "0") == 0) | |
13271 | evexwig = evexw0; | |
13272 | else if (strcmp (arg, "1") == 0) | |
13273 | evexwig = evexw1; | |
13274 | else | |
13275 | as_fatal (_("invalid -mevexwig= option: `%s'"), arg); | |
13276 | break; | |
13277 | ||
167ad85b TG |
13278 | # if defined (TE_PE) || defined (TE_PEP) |
13279 | case OPTION_MBIG_OBJ: | |
13280 | use_big_obj = 1; | |
13281 | break; | |
13282 | #endif | |
13283 | ||
d1982f93 | 13284 | case OPTION_MOMIT_LOCK_PREFIX: |
d022bddd IT |
13285 | if (strcasecmp (arg, "yes") == 0) |
13286 | omit_lock_prefix = 1; | |
13287 | else if (strcasecmp (arg, "no") == 0) | |
13288 | omit_lock_prefix = 0; | |
13289 | else | |
13290 | as_fatal (_("invalid -momit-lock-prefix= option: `%s'"), arg); | |
13291 | break; | |
13292 | ||
e4e00185 AS |
13293 | case OPTION_MFENCE_AS_LOCK_ADD: |
13294 | if (strcasecmp (arg, "yes") == 0) | |
13295 | avoid_fence = 1; | |
13296 | else if (strcasecmp (arg, "no") == 0) | |
13297 | avoid_fence = 0; | |
13298 | else | |
13299 | as_fatal (_("invalid -mfence-as-lock-add= option: `%s'"), arg); | |
13300 | break; | |
13301 | ||
ae531041 L |
13302 | case OPTION_MLFENCE_AFTER_LOAD: |
13303 | if (strcasecmp (arg, "yes") == 0) | |
13304 | lfence_after_load = 1; | |
13305 | else if (strcasecmp (arg, "no") == 0) | |
13306 | lfence_after_load = 0; | |
13307 | else | |
13308 | as_fatal (_("invalid -mlfence-after-load= option: `%s'"), arg); | |
13309 | break; | |
13310 | ||
13311 | case OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH: | |
13312 | if (strcasecmp (arg, "all") == 0) | |
a09f656b | 13313 | { |
13314 | lfence_before_indirect_branch = lfence_branch_all; | |
13315 | if (lfence_before_ret == lfence_before_ret_none) | |
13316 | lfence_before_ret = lfence_before_ret_shl; | |
13317 | } | |
ae531041 L |
13318 | else if (strcasecmp (arg, "memory") == 0) |
13319 | lfence_before_indirect_branch = lfence_branch_memory; | |
13320 | else if (strcasecmp (arg, "register") == 0) | |
13321 | lfence_before_indirect_branch = lfence_branch_register; | |
13322 | else if (strcasecmp (arg, "none") == 0) | |
13323 | lfence_before_indirect_branch = lfence_branch_none; | |
13324 | else | |
13325 | as_fatal (_("invalid -mlfence-before-indirect-branch= option: `%s'"), | |
13326 | arg); | |
13327 | break; | |
13328 | ||
13329 | case OPTION_MLFENCE_BEFORE_RET: | |
13330 | if (strcasecmp (arg, "or") == 0) | |
13331 | lfence_before_ret = lfence_before_ret_or; | |
13332 | else if (strcasecmp (arg, "not") == 0) | |
13333 | lfence_before_ret = lfence_before_ret_not; | |
a09f656b | 13334 | else if (strcasecmp (arg, "shl") == 0 || strcasecmp (arg, "yes") == 0) |
13335 | lfence_before_ret = lfence_before_ret_shl; | |
ae531041 L |
13336 | else if (strcasecmp (arg, "none") == 0) |
13337 | lfence_before_ret = lfence_before_ret_none; | |
13338 | else | |
13339 | as_fatal (_("invalid -mlfence-before-ret= option: `%s'"), | |
13340 | arg); | |
13341 | break; | |
13342 | ||
0cb4071e L |
13343 | case OPTION_MRELAX_RELOCATIONS: |
13344 | if (strcasecmp (arg, "yes") == 0) | |
13345 | generate_relax_relocations = 1; | |
13346 | else if (strcasecmp (arg, "no") == 0) | |
13347 | generate_relax_relocations = 0; | |
13348 | else | |
13349 | as_fatal (_("invalid -mrelax-relocations= option: `%s'"), arg); | |
13350 | break; | |
13351 | ||
e379e5f3 L |
13352 | case OPTION_MALIGN_BRANCH_BOUNDARY: |
13353 | { | |
13354 | char *end; | |
13355 | long int align = strtoul (arg, &end, 0); | |
13356 | if (*end == '\0') | |
13357 | { | |
13358 | if (align == 0) | |
13359 | { | |
13360 | align_branch_power = 0; | |
13361 | break; | |
13362 | } | |
13363 | else if (align >= 16) | |
13364 | { | |
13365 | int align_power; | |
13366 | for (align_power = 0; | |
13367 | (align & 1) == 0; | |
13368 | align >>= 1, align_power++) | |
13369 | continue; | |
13370 | /* Limit alignment power to 31. */ | |
13371 | if (align == 1 && align_power < 32) | |
13372 | { | |
13373 | align_branch_power = align_power; | |
13374 | break; | |
13375 | } | |
13376 | } | |
13377 | } | |
13378 | as_fatal (_("invalid -malign-branch-boundary= value: %s"), arg); | |
13379 | } | |
13380 | break; | |
13381 | ||
13382 | case OPTION_MALIGN_BRANCH_PREFIX_SIZE: | |
13383 | { | |
13384 | char *end; | |
13385 | int align = strtoul (arg, &end, 0); | |
13386 | /* Some processors only support 5 prefixes. */ | |
13387 | if (*end == '\0' && align >= 0 && align < 6) | |
13388 | { | |
13389 | align_branch_prefix_size = align; | |
13390 | break; | |
13391 | } | |
13392 | as_fatal (_("invalid -malign-branch-prefix-size= value: %s"), | |
13393 | arg); | |
13394 | } | |
13395 | break; | |
13396 | ||
13397 | case OPTION_MALIGN_BRANCH: | |
13398 | align_branch = 0; | |
13399 | saved = xstrdup (arg); | |
13400 | type = saved; | |
13401 | do | |
13402 | { | |
13403 | next = strchr (type, '+'); | |
13404 | if (next) | |
13405 | *next++ = '\0'; | |
13406 | if (strcasecmp (type, "jcc") == 0) | |
13407 | align_branch |= align_branch_jcc_bit; | |
13408 | else if (strcasecmp (type, "fused") == 0) | |
13409 | align_branch |= align_branch_fused_bit; | |
13410 | else if (strcasecmp (type, "jmp") == 0) | |
13411 | align_branch |= align_branch_jmp_bit; | |
13412 | else if (strcasecmp (type, "call") == 0) | |
13413 | align_branch |= align_branch_call_bit; | |
13414 | else if (strcasecmp (type, "ret") == 0) | |
13415 | align_branch |= align_branch_ret_bit; | |
13416 | else if (strcasecmp (type, "indirect") == 0) | |
13417 | align_branch |= align_branch_indirect_bit; | |
13418 | else | |
13419 | as_fatal (_("invalid -malign-branch= option: `%s'"), arg); | |
13420 | type = next; | |
13421 | } | |
13422 | while (next != NULL); | |
13423 | free (saved); | |
13424 | break; | |
13425 | ||
76cf450b L |
13426 | case OPTION_MBRANCHES_WITH_32B_BOUNDARIES: |
13427 | align_branch_power = 5; | |
13428 | align_branch_prefix_size = 5; | |
13429 | align_branch = (align_branch_jcc_bit | |
13430 | | align_branch_fused_bit | |
13431 | | align_branch_jmp_bit); | |
13432 | break; | |
13433 | ||
5db04b09 | 13434 | case OPTION_MAMD64: |
4b5aaf5f | 13435 | isa64 = amd64; |
5db04b09 L |
13436 | break; |
13437 | ||
13438 | case OPTION_MINTEL64: | |
4b5aaf5f | 13439 | isa64 = intel64; |
5db04b09 L |
13440 | break; |
13441 | ||
b6f8c7c4 L |
13442 | case 'O': |
13443 | if (arg == NULL) | |
13444 | { | |
13445 | optimize = 1; | |
13446 | /* Turn off -Os. */ | |
13447 | optimize_for_space = 0; | |
13448 | } | |
13449 | else if (*arg == 's') | |
13450 | { | |
13451 | optimize_for_space = 1; | |
13452 | /* Turn on all encoding optimizations. */ | |
41fd2579 | 13453 | optimize = INT_MAX; |
b6f8c7c4 L |
13454 | } |
13455 | else | |
13456 | { | |
13457 | optimize = atoi (arg); | |
13458 | /* Turn off -Os. */ | |
13459 | optimize_for_space = 0; | |
13460 | } | |
13461 | break; | |
13462 | ||
252b5132 RH |
13463 | default: |
13464 | return 0; | |
13465 | } | |
13466 | return 1; | |
13467 | } | |
13468 | ||
8a2c8fef L |
13469 | #define MESSAGE_TEMPLATE \ |
13470 | " " | |
13471 | ||
293f5f65 L |
13472 | static char * |
13473 | output_message (FILE *stream, char *p, char *message, char *start, | |
13474 | int *left_p, const char *name, int len) | |
13475 | { | |
13476 | int size = sizeof (MESSAGE_TEMPLATE); | |
13477 | int left = *left_p; | |
13478 | ||
13479 | /* Reserve 2 spaces for ", " or ",\0" */ | |
13480 | left -= len + 2; | |
13481 | ||
13482 | /* Check if there is any room. */ | |
13483 | if (left >= 0) | |
13484 | { | |
13485 | if (p != start) | |
13486 | { | |
13487 | *p++ = ','; | |
13488 | *p++ = ' '; | |
13489 | } | |
13490 | p = mempcpy (p, name, len); | |
13491 | } | |
13492 | else | |
13493 | { | |
13494 | /* Output the current message now and start a new one. */ | |
13495 | *p++ = ','; | |
13496 | *p = '\0'; | |
13497 | fprintf (stream, "%s\n", message); | |
13498 | p = start; | |
13499 | left = size - (start - message) - len - 2; | |
13500 | ||
13501 | gas_assert (left >= 0); | |
13502 | ||
13503 | p = mempcpy (p, name, len); | |
13504 | } | |
13505 | ||
13506 | *left_p = left; | |
13507 | return p; | |
13508 | } | |
13509 | ||
8a2c8fef | 13510 | static void |
1ded5609 | 13511 | show_arch (FILE *stream, int ext, int check) |
8a2c8fef L |
13512 | { |
13513 | static char message[] = MESSAGE_TEMPLATE; | |
13514 | char *start = message + 27; | |
13515 | char *p; | |
13516 | int size = sizeof (MESSAGE_TEMPLATE); | |
13517 | int left; | |
13518 | const char *name; | |
13519 | int len; | |
13520 | unsigned int j; | |
13521 | ||
13522 | p = start; | |
13523 | left = size - (start - message); | |
13524 | for (j = 0; j < ARRAY_SIZE (cpu_arch); j++) | |
13525 | { | |
13526 | /* Should it be skipped? */ | |
13527 | if (cpu_arch [j].skip) | |
13528 | continue; | |
13529 | ||
13530 | name = cpu_arch [j].name; | |
13531 | len = cpu_arch [j].len; | |
13532 | if (*name == '.') | |
13533 | { | |
13534 | /* It is an extension. Skip if we aren't asked to show it. */ | |
13535 | if (ext) | |
13536 | { | |
13537 | name++; | |
13538 | len--; | |
13539 | } | |
13540 | else | |
13541 | continue; | |
13542 | } | |
13543 | else if (ext) | |
13544 | { | |
13545 | /* It is an processor. Skip if we show only extension. */ | |
13546 | continue; | |
13547 | } | |
1ded5609 JB |
13548 | else if (check && ! cpu_arch[j].flags.bitfield.cpui386) |
13549 | { | |
13550 | /* It is an impossible processor - skip. */ | |
13551 | continue; | |
13552 | } | |
8a2c8fef | 13553 | |
293f5f65 | 13554 | p = output_message (stream, p, message, start, &left, name, len); |
8a2c8fef L |
13555 | } |
13556 | ||
293f5f65 L |
13557 | /* Display disabled extensions. */ |
13558 | if (ext) | |
13559 | for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++) | |
13560 | { | |
13561 | name = cpu_noarch [j].name; | |
13562 | len = cpu_noarch [j].len; | |
13563 | p = output_message (stream, p, message, start, &left, name, | |
13564 | len); | |
13565 | } | |
13566 | ||
8a2c8fef L |
13567 | *p = '\0'; |
13568 | fprintf (stream, "%s\n", message); | |
13569 | } | |
13570 | ||
252b5132 | 13571 | void |
8a2c8fef | 13572 | md_show_usage (FILE *stream) |
252b5132 | 13573 | { |
4cc782b5 ILT |
13574 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
13575 | fprintf (stream, _("\ | |
d4693039 | 13576 | -Qy, -Qn ignored\n\ |
a38cf1db | 13577 | -V print assembler version number\n\ |
b3b91714 AM |
13578 | -k ignored\n")); |
13579 | #endif | |
13580 | fprintf (stream, _("\ | |
12b55ccc | 13581 | -n Do not optimize code alignment\n\ |
b3b91714 AM |
13582 | -q quieten some warnings\n")); |
13583 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) | |
13584 | fprintf (stream, _("\ | |
a38cf1db | 13585 | -s ignored\n")); |
b3b91714 | 13586 | #endif |
d7f449c0 L |
13587 | #if defined BFD64 && (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \ |
13588 | || defined (TE_PE) || defined (TE_PEP)) | |
751d281c | 13589 | fprintf (stream, _("\ |
570561f7 | 13590 | --32/--64/--x32 generate 32bit/64bit/x32 code\n")); |
751d281c | 13591 | #endif |
b3b91714 AM |
13592 | #ifdef SVR4_COMMENT_CHARS |
13593 | fprintf (stream, _("\ | |
13594 | --divide do not treat `/' as a comment character\n")); | |
a38cf1db AM |
13595 | #else |
13596 | fprintf (stream, _("\ | |
b3b91714 | 13597 | --divide ignored\n")); |
4cc782b5 | 13598 | #endif |
9103f4f4 | 13599 | fprintf (stream, _("\ |
6305a203 | 13600 | -march=CPU[,+EXTENSION...]\n\ |
8a2c8fef | 13601 | generate code for CPU and EXTENSION, CPU is one of:\n")); |
1ded5609 | 13602 | show_arch (stream, 0, 1); |
8a2c8fef L |
13603 | fprintf (stream, _("\ |
13604 | EXTENSION is combination of:\n")); | |
1ded5609 | 13605 | show_arch (stream, 1, 0); |
6305a203 | 13606 | fprintf (stream, _("\ |
8a2c8fef | 13607 | -mtune=CPU optimize for CPU, CPU is one of:\n")); |
1ded5609 | 13608 | show_arch (stream, 0, 0); |
ba104c83 | 13609 | fprintf (stream, _("\ |
c0f3af97 L |
13610 | -msse2avx encode SSE instructions with VEX prefix\n")); |
13611 | fprintf (stream, _("\ | |
7c5c05ef | 13612 | -msse-check=[none|error|warning] (default: warning)\n\ |
daf50ae7 L |
13613 | check SSE instructions\n")); |
13614 | fprintf (stream, _("\ | |
7c5c05ef | 13615 | -moperand-check=[none|error|warning] (default: warning)\n\ |
7bab8ab5 JB |
13616 | check operand combinations for validity\n")); |
13617 | fprintf (stream, _("\ | |
7c5c05ef L |
13618 | -mavxscalar=[128|256] (default: 128)\n\ |
13619 | encode scalar AVX instructions with specific vector\n\ | |
539f890d L |
13620 | length\n")); |
13621 | fprintf (stream, _("\ | |
03751133 L |
13622 | -mvexwig=[0|1] (default: 0)\n\ |
13623 | encode VEX instructions with specific VEX.W value\n\ | |
13624 | for VEX.W bit ignored instructions\n")); | |
13625 | fprintf (stream, _("\ | |
7c5c05ef L |
13626 | -mevexlig=[128|256|512] (default: 128)\n\ |
13627 | encode scalar EVEX instructions with specific vector\n\ | |
43234a1e L |
13628 | length\n")); |
13629 | fprintf (stream, _("\ | |
7c5c05ef L |
13630 | -mevexwig=[0|1] (default: 0)\n\ |
13631 | encode EVEX instructions with specific EVEX.W value\n\ | |
43234a1e L |
13632 | for EVEX.W bit ignored instructions\n")); |
13633 | fprintf (stream, _("\ | |
7c5c05ef | 13634 | -mevexrcig=[rne|rd|ru|rz] (default: rne)\n\ |
d3d3c6db IT |
13635 | encode EVEX instructions with specific EVEX.RC value\n\ |
13636 | for SAE-only ignored instructions\n")); | |
13637 | fprintf (stream, _("\ | |
7c5c05ef L |
13638 | -mmnemonic=[att|intel] ")); |
13639 | if (SYSV386_COMPAT) | |
13640 | fprintf (stream, _("(default: att)\n")); | |
13641 | else | |
13642 | fprintf (stream, _("(default: intel)\n")); | |
13643 | fprintf (stream, _("\ | |
13644 | use AT&T/Intel mnemonic\n")); | |
ba104c83 | 13645 | fprintf (stream, _("\ |
7c5c05ef L |
13646 | -msyntax=[att|intel] (default: att)\n\ |
13647 | use AT&T/Intel syntax\n")); | |
ba104c83 L |
13648 | fprintf (stream, _("\ |
13649 | -mindex-reg support pseudo index registers\n")); | |
13650 | fprintf (stream, _("\ | |
13651 | -mnaked-reg don't require `%%' prefix for registers\n")); | |
13652 | fprintf (stream, _("\ | |
7e8b059b | 13653 | -madd-bnd-prefix add BND prefix for all valid branches\n")); |
b4a3a7b4 | 13654 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
8dcea932 L |
13655 | fprintf (stream, _("\ |
13656 | -mshared disable branch optimization for shared code\n")); | |
b4a3a7b4 L |
13657 | fprintf (stream, _("\ |
13658 | -mx86-used-note=[no|yes] ")); | |
13659 | if (DEFAULT_X86_USED_NOTE) | |
13660 | fprintf (stream, _("(default: yes)\n")); | |
13661 | else | |
13662 | fprintf (stream, _("(default: no)\n")); | |
13663 | fprintf (stream, _("\ | |
13664 | generate x86 used ISA and feature properties\n")); | |
13665 | #endif | |
13666 | #if defined (TE_PE) || defined (TE_PEP) | |
167ad85b TG |
13667 | fprintf (stream, _("\ |
13668 | -mbig-obj generate big object files\n")); | |
13669 | #endif | |
d022bddd | 13670 | fprintf (stream, _("\ |
7c5c05ef | 13671 | -momit-lock-prefix=[no|yes] (default: no)\n\ |
d022bddd | 13672 | strip all lock prefixes\n")); |
5db04b09 | 13673 | fprintf (stream, _("\ |
7c5c05ef | 13674 | -mfence-as-lock-add=[no|yes] (default: no)\n\ |
e4e00185 AS |
13675 | encode lfence, mfence and sfence as\n\ |
13676 | lock addl $0x0, (%%{re}sp)\n")); | |
13677 | fprintf (stream, _("\ | |
7c5c05ef L |
13678 | -mrelax-relocations=[no|yes] ")); |
13679 | if (DEFAULT_GENERATE_X86_RELAX_RELOCATIONS) | |
13680 | fprintf (stream, _("(default: yes)\n")); | |
13681 | else | |
13682 | fprintf (stream, _("(default: no)\n")); | |
13683 | fprintf (stream, _("\ | |
0cb4071e L |
13684 | generate relax relocations\n")); |
13685 | fprintf (stream, _("\ | |
e379e5f3 L |
13686 | -malign-branch-boundary=NUM (default: 0)\n\ |
13687 | align branches within NUM byte boundary\n")); | |
13688 | fprintf (stream, _("\ | |
13689 | -malign-branch=TYPE[+TYPE...] (default: jcc+fused+jmp)\n\ | |
13690 | TYPE is combination of jcc, fused, jmp, call, ret,\n\ | |
13691 | indirect\n\ | |
13692 | specify types of branches to align\n")); | |
13693 | fprintf (stream, _("\ | |
13694 | -malign-branch-prefix-size=NUM (default: 5)\n\ | |
13695 | align branches with NUM prefixes per instruction\n")); | |
13696 | fprintf (stream, _("\ | |
76cf450b L |
13697 | -mbranches-within-32B-boundaries\n\ |
13698 | align branches within 32 byte boundary\n")); | |
13699 | fprintf (stream, _("\ | |
ae531041 L |
13700 | -mlfence-after-load=[no|yes] (default: no)\n\ |
13701 | generate lfence after load\n")); | |
13702 | fprintf (stream, _("\ | |
13703 | -mlfence-before-indirect-branch=[none|all|register|memory] (default: none)\n\ | |
13704 | generate lfence before indirect near branch\n")); | |
13705 | fprintf (stream, _("\ | |
a09f656b | 13706 | -mlfence-before-ret=[none|or|not|shl|yes] (default: none)\n\ |
ae531041 L |
13707 | generate lfence before ret\n")); |
13708 | fprintf (stream, _("\ | |
7c5c05ef | 13709 | -mamd64 accept only AMD64 ISA [default]\n")); |
5db04b09 L |
13710 | fprintf (stream, _("\ |
13711 | -mintel64 accept only Intel64 ISA\n")); | |
252b5132 RH |
13712 | } |
13713 | ||
3e73aa7c | 13714 | #if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \ |
321098a5 | 13715 | || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \ |
e57f8c65 | 13716 | || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O)) |
252b5132 RH |
13717 | |
13718 | /* Pick the target format to use. */ | |
13719 | ||
47926f60 | 13720 | const char * |
e3bb37b5 | 13721 | i386_target_format (void) |
252b5132 | 13722 | { |
351f65ca L |
13723 | if (!strncmp (default_arch, "x86_64", 6)) |
13724 | { | |
13725 | update_code_flag (CODE_64BIT, 1); | |
13726 | if (default_arch[6] == '\0') | |
7f56bc95 | 13727 | x86_elf_abi = X86_64_ABI; |
351f65ca | 13728 | else |
7f56bc95 | 13729 | x86_elf_abi = X86_64_X32_ABI; |
351f65ca | 13730 | } |
3e73aa7c | 13731 | else if (!strcmp (default_arch, "i386")) |
78f12dd3 | 13732 | update_code_flag (CODE_32BIT, 1); |
5197d474 L |
13733 | else if (!strcmp (default_arch, "iamcu")) |
13734 | { | |
13735 | update_code_flag (CODE_32BIT, 1); | |
13736 | if (cpu_arch_isa == PROCESSOR_UNKNOWN) | |
13737 | { | |
13738 | static const i386_cpu_flags iamcu_flags = CPU_IAMCU_FLAGS; | |
13739 | cpu_arch_name = "iamcu"; | |
13740 | cpu_sub_arch_name = NULL; | |
13741 | cpu_arch_flags = iamcu_flags; | |
13742 | cpu_arch_isa = PROCESSOR_IAMCU; | |
13743 | cpu_arch_isa_flags = iamcu_flags; | |
13744 | if (!cpu_arch_tune_set) | |
13745 | { | |
13746 | cpu_arch_tune = cpu_arch_isa; | |
13747 | cpu_arch_tune_flags = cpu_arch_isa_flags; | |
13748 | } | |
13749 | } | |
8d471ec1 | 13750 | else if (cpu_arch_isa != PROCESSOR_IAMCU) |
5197d474 L |
13751 | as_fatal (_("Intel MCU doesn't support `%s' architecture"), |
13752 | cpu_arch_name); | |
13753 | } | |
3e73aa7c | 13754 | else |
2b5d6a91 | 13755 | as_fatal (_("unknown architecture")); |
89507696 JB |
13756 | |
13757 | if (cpu_flags_all_zero (&cpu_arch_isa_flags)) | |
13758 | cpu_arch_isa_flags = cpu_arch[flag_code == CODE_64BIT].flags; | |
13759 | if (cpu_flags_all_zero (&cpu_arch_tune_flags)) | |
13760 | cpu_arch_tune_flags = cpu_arch[flag_code == CODE_64BIT].flags; | |
13761 | ||
252b5132 RH |
13762 | switch (OUTPUT_FLAVOR) |
13763 | { | |
9384f2ff | 13764 | #if defined (OBJ_MAYBE_AOUT) || defined (OBJ_AOUT) |
4c63da97 | 13765 | case bfd_target_aout_flavour: |
47926f60 | 13766 | return AOUT_TARGET_FORMAT; |
4c63da97 | 13767 | #endif |
9384f2ff AM |
13768 | #if defined (OBJ_MAYBE_COFF) || defined (OBJ_COFF) |
13769 | # if defined (TE_PE) || defined (TE_PEP) | |
13770 | case bfd_target_coff_flavour: | |
167ad85b TG |
13771 | if (flag_code == CODE_64BIT) |
13772 | return use_big_obj ? "pe-bigobj-x86-64" : "pe-x86-64"; | |
13773 | else | |
251dae91 | 13774 | return use_big_obj ? "pe-bigobj-i386" : "pe-i386"; |
9384f2ff | 13775 | # elif defined (TE_GO32) |
0561d57c JK |
13776 | case bfd_target_coff_flavour: |
13777 | return "coff-go32"; | |
9384f2ff | 13778 | # else |
252b5132 RH |
13779 | case bfd_target_coff_flavour: |
13780 | return "coff-i386"; | |
9384f2ff | 13781 | # endif |
4c63da97 | 13782 | #endif |
3e73aa7c | 13783 | #if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF) |
252b5132 | 13784 | case bfd_target_elf_flavour: |
3e73aa7c | 13785 | { |
351f65ca L |
13786 | const char *format; |
13787 | ||
13788 | switch (x86_elf_abi) | |
4fa24527 | 13789 | { |
351f65ca L |
13790 | default: |
13791 | format = ELF_TARGET_FORMAT; | |
e379e5f3 L |
13792 | #ifndef TE_SOLARIS |
13793 | tls_get_addr = "___tls_get_addr"; | |
13794 | #endif | |
351f65ca | 13795 | break; |
7f56bc95 | 13796 | case X86_64_ABI: |
351f65ca | 13797 | use_rela_relocations = 1; |
4fa24527 | 13798 | object_64bit = 1; |
e379e5f3 L |
13799 | #ifndef TE_SOLARIS |
13800 | tls_get_addr = "__tls_get_addr"; | |
13801 | #endif | |
351f65ca L |
13802 | format = ELF_TARGET_FORMAT64; |
13803 | break; | |
7f56bc95 | 13804 | case X86_64_X32_ABI: |
4fa24527 | 13805 | use_rela_relocations = 1; |
351f65ca | 13806 | object_64bit = 1; |
e379e5f3 L |
13807 | #ifndef TE_SOLARIS |
13808 | tls_get_addr = "__tls_get_addr"; | |
13809 | #endif | |
862be3fb | 13810 | disallow_64bit_reloc = 1; |
351f65ca L |
13811 | format = ELF_TARGET_FORMAT32; |
13812 | break; | |
4fa24527 | 13813 | } |
3632d14b | 13814 | if (cpu_arch_isa == PROCESSOR_L1OM) |
8a9036a4 | 13815 | { |
7f56bc95 | 13816 | if (x86_elf_abi != X86_64_ABI) |
8a9036a4 L |
13817 | as_fatal (_("Intel L1OM is 64bit only")); |
13818 | return ELF_TARGET_L1OM_FORMAT; | |
13819 | } | |
b49f93f6 | 13820 | else if (cpu_arch_isa == PROCESSOR_K1OM) |
7a9068fe L |
13821 | { |
13822 | if (x86_elf_abi != X86_64_ABI) | |
13823 | as_fatal (_("Intel K1OM is 64bit only")); | |
13824 | return ELF_TARGET_K1OM_FORMAT; | |
13825 | } | |
81486035 L |
13826 | else if (cpu_arch_isa == PROCESSOR_IAMCU) |
13827 | { | |
13828 | if (x86_elf_abi != I386_ABI) | |
13829 | as_fatal (_("Intel MCU is 32bit only")); | |
13830 | return ELF_TARGET_IAMCU_FORMAT; | |
13831 | } | |
8a9036a4 | 13832 | else |
351f65ca | 13833 | return format; |
3e73aa7c | 13834 | } |
e57f8c65 TG |
13835 | #endif |
13836 | #if defined (OBJ_MACH_O) | |
13837 | case bfd_target_mach_o_flavour: | |
d382c579 TG |
13838 | if (flag_code == CODE_64BIT) |
13839 | { | |
13840 | use_rela_relocations = 1; | |
13841 | object_64bit = 1; | |
13842 | return "mach-o-x86-64"; | |
13843 | } | |
13844 | else | |
13845 | return "mach-o-i386"; | |
4c63da97 | 13846 | #endif |
252b5132 RH |
13847 | default: |
13848 | abort (); | |
13849 | return NULL; | |
13850 | } | |
13851 | } | |
13852 | ||
47926f60 | 13853 | #endif /* OBJ_MAYBE_ more than one */ |
252b5132 | 13854 | \f |
252b5132 | 13855 | symbolS * |
7016a5d5 | 13856 | md_undefined_symbol (char *name) |
252b5132 | 13857 | { |
18dc2407 ILT |
13858 | if (name[0] == GLOBAL_OFFSET_TABLE_NAME[0] |
13859 | && name[1] == GLOBAL_OFFSET_TABLE_NAME[1] | |
13860 | && name[2] == GLOBAL_OFFSET_TABLE_NAME[2] | |
13861 | && strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0) | |
24eab124 AM |
13862 | { |
13863 | if (!GOT_symbol) | |
13864 | { | |
13865 | if (symbol_find (name)) | |
13866 | as_bad (_("GOT already in symbol table")); | |
13867 | GOT_symbol = symbol_new (name, undefined_section, | |
e01e1cee | 13868 | &zero_address_frag, 0); |
24eab124 AM |
13869 | }; |
13870 | return GOT_symbol; | |
13871 | } | |
252b5132 RH |
13872 | return 0; |
13873 | } | |
13874 | ||
13875 | /* Round up a section size to the appropriate boundary. */ | |
47926f60 | 13876 | |
252b5132 | 13877 | valueT |
7016a5d5 | 13878 | md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size) |
252b5132 | 13879 | { |
4c63da97 AM |
13880 | #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT)) |
13881 | if (OUTPUT_FLAVOR == bfd_target_aout_flavour) | |
13882 | { | |
13883 | /* For a.out, force the section size to be aligned. If we don't do | |
13884 | this, BFD will align it for us, but it will not write out the | |
13885 | final bytes of the section. This may be a bug in BFD, but it is | |
13886 | easier to fix it here since that is how the other a.out targets | |
13887 | work. */ | |
13888 | int align; | |
13889 | ||
fd361982 | 13890 | align = bfd_section_alignment (segment); |
8d3842cd | 13891 | size = ((size + (1 << align) - 1) & (-((valueT) 1 << align))); |
4c63da97 | 13892 | } |
252b5132 RH |
13893 | #endif |
13894 | ||
13895 | return size; | |
13896 | } | |
13897 | ||
13898 | /* On the i386, PC-relative offsets are relative to the start of the | |
13899 | next instruction. That is, the address of the offset, plus its | |
13900 | size, since the offset is always the last part of the insn. */ | |
13901 | ||
13902 | long | |
e3bb37b5 | 13903 | md_pcrel_from (fixS *fixP) |
252b5132 RH |
13904 | { |
13905 | return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address; | |
13906 | } | |
13907 | ||
13908 | #ifndef I386COFF | |
13909 | ||
13910 | static void | |
e3bb37b5 | 13911 | s_bss (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 13912 | { |
29b0f896 | 13913 | int temp; |
252b5132 | 13914 | |
8a75718c JB |
13915 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
13916 | if (IS_ELF) | |
13917 | obj_elf_section_change_hook (); | |
13918 | #endif | |
252b5132 RH |
13919 | temp = get_absolute_expression (); |
13920 | subseg_set (bss_section, (subsegT) temp); | |
13921 | demand_empty_rest_of_line (); | |
13922 | } | |
13923 | ||
13924 | #endif | |
13925 | ||
e379e5f3 L |
13926 | /* Remember constant directive. */ |
13927 | ||
13928 | void | |
13929 | i386_cons_align (int ignore ATTRIBUTE_UNUSED) | |
13930 | { | |
13931 | if (last_insn.kind != last_insn_directive | |
13932 | && (bfd_section_flags (now_seg) & SEC_CODE)) | |
13933 | { | |
13934 | last_insn.seg = now_seg; | |
13935 | last_insn.kind = last_insn_directive; | |
13936 | last_insn.name = "constant directive"; | |
13937 | last_insn.file = as_where (&last_insn.line); | |
ae531041 L |
13938 | if (lfence_before_ret != lfence_before_ret_none) |
13939 | { | |
13940 | if (lfence_before_indirect_branch != lfence_branch_none) | |
13941 | as_warn (_("constant directive skips -mlfence-before-ret " | |
13942 | "and -mlfence-before-indirect-branch")); | |
13943 | else | |
13944 | as_warn (_("constant directive skips -mlfence-before-ret")); | |
13945 | } | |
13946 | else if (lfence_before_indirect_branch != lfence_branch_none) | |
13947 | as_warn (_("constant directive skips -mlfence-before-indirect-branch")); | |
e379e5f3 L |
13948 | } |
13949 | } | |
13950 | ||
252b5132 | 13951 | void |
e3bb37b5 | 13952 | i386_validate_fix (fixS *fixp) |
252b5132 | 13953 | { |
02a86693 | 13954 | if (fixp->fx_subsy) |
252b5132 | 13955 | { |
02a86693 | 13956 | if (fixp->fx_subsy == GOT_symbol) |
23df1078 | 13957 | { |
02a86693 L |
13958 | if (fixp->fx_r_type == BFD_RELOC_32_PCREL) |
13959 | { | |
13960 | if (!object_64bit) | |
13961 | abort (); | |
13962 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) | |
13963 | if (fixp->fx_tcbit2) | |
56ceb5b5 L |
13964 | fixp->fx_r_type = (fixp->fx_tcbit |
13965 | ? BFD_RELOC_X86_64_REX_GOTPCRELX | |
13966 | : BFD_RELOC_X86_64_GOTPCRELX); | |
02a86693 L |
13967 | else |
13968 | #endif | |
13969 | fixp->fx_r_type = BFD_RELOC_X86_64_GOTPCREL; | |
13970 | } | |
d6ab8113 | 13971 | else |
02a86693 L |
13972 | { |
13973 | if (!object_64bit) | |
13974 | fixp->fx_r_type = BFD_RELOC_386_GOTOFF; | |
13975 | else | |
13976 | fixp->fx_r_type = BFD_RELOC_X86_64_GOTOFF64; | |
13977 | } | |
13978 | fixp->fx_subsy = 0; | |
23df1078 | 13979 | } |
252b5132 | 13980 | } |
02a86693 | 13981 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
2585b7a5 | 13982 | else |
02a86693 | 13983 | { |
2585b7a5 L |
13984 | /* NB: Commit 292676c1 resolved PLT32 reloc aganst local symbol |
13985 | to section. Since PLT32 relocation must be against symbols, | |
13986 | turn such PLT32 relocation into PC32 relocation. */ | |
13987 | if (fixp->fx_addsy | |
13988 | && (fixp->fx_r_type == BFD_RELOC_386_PLT32 | |
13989 | || fixp->fx_r_type == BFD_RELOC_X86_64_PLT32) | |
13990 | && symbol_section_p (fixp->fx_addsy)) | |
13991 | fixp->fx_r_type = BFD_RELOC_32_PCREL; | |
13992 | if (!object_64bit) | |
13993 | { | |
13994 | if (fixp->fx_r_type == BFD_RELOC_386_GOT32 | |
13995 | && fixp->fx_tcbit2) | |
13996 | fixp->fx_r_type = BFD_RELOC_386_GOT32X; | |
13997 | } | |
02a86693 L |
13998 | } |
13999 | #endif | |
252b5132 RH |
14000 | } |
14001 | ||
252b5132 | 14002 | arelent * |
7016a5d5 | 14003 | tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp) |
252b5132 RH |
14004 | { |
14005 | arelent *rel; | |
14006 | bfd_reloc_code_real_type code; | |
14007 | ||
14008 | switch (fixp->fx_r_type) | |
14009 | { | |
8ce3d284 | 14010 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
8fd4256d L |
14011 | case BFD_RELOC_SIZE32: |
14012 | case BFD_RELOC_SIZE64: | |
14013 | if (S_IS_DEFINED (fixp->fx_addsy) | |
14014 | && !S_IS_EXTERNAL (fixp->fx_addsy)) | |
14015 | { | |
14016 | /* Resolve size relocation against local symbol to size of | |
14017 | the symbol plus addend. */ | |
14018 | valueT value = S_GET_SIZE (fixp->fx_addsy) + fixp->fx_offset; | |
14019 | if (fixp->fx_r_type == BFD_RELOC_SIZE32 | |
14020 | && !fits_in_unsigned_long (value)) | |
14021 | as_bad_where (fixp->fx_file, fixp->fx_line, | |
14022 | _("symbol size computation overflow")); | |
14023 | fixp->fx_addsy = NULL; | |
14024 | fixp->fx_subsy = NULL; | |
14025 | md_apply_fix (fixp, (valueT *) &value, NULL); | |
14026 | return NULL; | |
14027 | } | |
8ce3d284 | 14028 | #endif |
1a0670f3 | 14029 | /* Fall through. */ |
8fd4256d | 14030 | |
3e73aa7c JH |
14031 | case BFD_RELOC_X86_64_PLT32: |
14032 | case BFD_RELOC_X86_64_GOT32: | |
14033 | case BFD_RELOC_X86_64_GOTPCREL: | |
56ceb5b5 L |
14034 | case BFD_RELOC_X86_64_GOTPCRELX: |
14035 | case BFD_RELOC_X86_64_REX_GOTPCRELX: | |
252b5132 RH |
14036 | case BFD_RELOC_386_PLT32: |
14037 | case BFD_RELOC_386_GOT32: | |
02a86693 | 14038 | case BFD_RELOC_386_GOT32X: |
252b5132 RH |
14039 | case BFD_RELOC_386_GOTOFF: |
14040 | case BFD_RELOC_386_GOTPC: | |
13ae64f3 JJ |
14041 | case BFD_RELOC_386_TLS_GD: |
14042 | case BFD_RELOC_386_TLS_LDM: | |
14043 | case BFD_RELOC_386_TLS_LDO_32: | |
14044 | case BFD_RELOC_386_TLS_IE_32: | |
37e55690 JJ |
14045 | case BFD_RELOC_386_TLS_IE: |
14046 | case BFD_RELOC_386_TLS_GOTIE: | |
13ae64f3 JJ |
14047 | case BFD_RELOC_386_TLS_LE_32: |
14048 | case BFD_RELOC_386_TLS_LE: | |
67a4f2b7 AO |
14049 | case BFD_RELOC_386_TLS_GOTDESC: |
14050 | case BFD_RELOC_386_TLS_DESC_CALL: | |
bffbf940 JJ |
14051 | case BFD_RELOC_X86_64_TLSGD: |
14052 | case BFD_RELOC_X86_64_TLSLD: | |
14053 | case BFD_RELOC_X86_64_DTPOFF32: | |
d6ab8113 | 14054 | case BFD_RELOC_X86_64_DTPOFF64: |
bffbf940 JJ |
14055 | case BFD_RELOC_X86_64_GOTTPOFF: |
14056 | case BFD_RELOC_X86_64_TPOFF32: | |
d6ab8113 JB |
14057 | case BFD_RELOC_X86_64_TPOFF64: |
14058 | case BFD_RELOC_X86_64_GOTOFF64: | |
14059 | case BFD_RELOC_X86_64_GOTPC32: | |
7b81dfbb AJ |
14060 | case BFD_RELOC_X86_64_GOT64: |
14061 | case BFD_RELOC_X86_64_GOTPCREL64: | |
14062 | case BFD_RELOC_X86_64_GOTPC64: | |
14063 | case BFD_RELOC_X86_64_GOTPLT64: | |
14064 | case BFD_RELOC_X86_64_PLTOFF64: | |
67a4f2b7 AO |
14065 | case BFD_RELOC_X86_64_GOTPC32_TLSDESC: |
14066 | case BFD_RELOC_X86_64_TLSDESC_CALL: | |
252b5132 RH |
14067 | case BFD_RELOC_RVA: |
14068 | case BFD_RELOC_VTABLE_ENTRY: | |
14069 | case BFD_RELOC_VTABLE_INHERIT: | |
6482c264 NC |
14070 | #ifdef TE_PE |
14071 | case BFD_RELOC_32_SECREL: | |
14072 | #endif | |
252b5132 RH |
14073 | code = fixp->fx_r_type; |
14074 | break; | |
dbbaec26 L |
14075 | case BFD_RELOC_X86_64_32S: |
14076 | if (!fixp->fx_pcrel) | |
14077 | { | |
14078 | /* Don't turn BFD_RELOC_X86_64_32S into BFD_RELOC_32. */ | |
14079 | code = fixp->fx_r_type; | |
14080 | break; | |
14081 | } | |
1a0670f3 | 14082 | /* Fall through. */ |
252b5132 | 14083 | default: |
93382f6d | 14084 | if (fixp->fx_pcrel) |
252b5132 | 14085 | { |
93382f6d AM |
14086 | switch (fixp->fx_size) |
14087 | { | |
14088 | default: | |
b091f402 AM |
14089 | as_bad_where (fixp->fx_file, fixp->fx_line, |
14090 | _("can not do %d byte pc-relative relocation"), | |
14091 | fixp->fx_size); | |
93382f6d AM |
14092 | code = BFD_RELOC_32_PCREL; |
14093 | break; | |
14094 | case 1: code = BFD_RELOC_8_PCREL; break; | |
14095 | case 2: code = BFD_RELOC_16_PCREL; break; | |
d258b828 | 14096 | case 4: code = BFD_RELOC_32_PCREL; break; |
d6ab8113 JB |
14097 | #ifdef BFD64 |
14098 | case 8: code = BFD_RELOC_64_PCREL; break; | |
14099 | #endif | |
93382f6d AM |
14100 | } |
14101 | } | |
14102 | else | |
14103 | { | |
14104 | switch (fixp->fx_size) | |
14105 | { | |
14106 | default: | |
b091f402 AM |
14107 | as_bad_where (fixp->fx_file, fixp->fx_line, |
14108 | _("can not do %d byte relocation"), | |
14109 | fixp->fx_size); | |
93382f6d AM |
14110 | code = BFD_RELOC_32; |
14111 | break; | |
14112 | case 1: code = BFD_RELOC_8; break; | |
14113 | case 2: code = BFD_RELOC_16; break; | |
14114 | case 4: code = BFD_RELOC_32; break; | |
937149dd | 14115 | #ifdef BFD64 |
3e73aa7c | 14116 | case 8: code = BFD_RELOC_64; break; |
937149dd | 14117 | #endif |
93382f6d | 14118 | } |
252b5132 RH |
14119 | } |
14120 | break; | |
14121 | } | |
252b5132 | 14122 | |
d182319b JB |
14123 | if ((code == BFD_RELOC_32 |
14124 | || code == BFD_RELOC_32_PCREL | |
14125 | || code == BFD_RELOC_X86_64_32S) | |
252b5132 RH |
14126 | && GOT_symbol |
14127 | && fixp->fx_addsy == GOT_symbol) | |
3e73aa7c | 14128 | { |
4fa24527 | 14129 | if (!object_64bit) |
d6ab8113 JB |
14130 | code = BFD_RELOC_386_GOTPC; |
14131 | else | |
14132 | code = BFD_RELOC_X86_64_GOTPC32; | |
3e73aa7c | 14133 | } |
7b81dfbb AJ |
14134 | if ((code == BFD_RELOC_64 || code == BFD_RELOC_64_PCREL) |
14135 | && GOT_symbol | |
14136 | && fixp->fx_addsy == GOT_symbol) | |
14137 | { | |
14138 | code = BFD_RELOC_X86_64_GOTPC64; | |
14139 | } | |
252b5132 | 14140 | |
add39d23 TS |
14141 | rel = XNEW (arelent); |
14142 | rel->sym_ptr_ptr = XNEW (asymbol *); | |
49309057 | 14143 | *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy); |
252b5132 RH |
14144 | |
14145 | rel->address = fixp->fx_frag->fr_address + fixp->fx_where; | |
c87db184 | 14146 | |
3e73aa7c JH |
14147 | if (!use_rela_relocations) |
14148 | { | |
14149 | /* HACK: Since i386 ELF uses Rel instead of Rela, encode the | |
14150 | vtable entry to be used in the relocation's section offset. */ | |
14151 | if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY) | |
14152 | rel->address = fixp->fx_offset; | |
fbeb56a4 DK |
14153 | #if defined (OBJ_COFF) && defined (TE_PE) |
14154 | else if (fixp->fx_addsy && S_IS_WEAK (fixp->fx_addsy)) | |
14155 | rel->addend = fixp->fx_addnumber - (S_GET_VALUE (fixp->fx_addsy) * 2); | |
14156 | else | |
14157 | #endif | |
c6682705 | 14158 | rel->addend = 0; |
3e73aa7c JH |
14159 | } |
14160 | /* Use the rela in 64bit mode. */ | |
252b5132 | 14161 | else |
3e73aa7c | 14162 | { |
862be3fb L |
14163 | if (disallow_64bit_reloc) |
14164 | switch (code) | |
14165 | { | |
862be3fb L |
14166 | case BFD_RELOC_X86_64_DTPOFF64: |
14167 | case BFD_RELOC_X86_64_TPOFF64: | |
14168 | case BFD_RELOC_64_PCREL: | |
14169 | case BFD_RELOC_X86_64_GOTOFF64: | |
14170 | case BFD_RELOC_X86_64_GOT64: | |
14171 | case BFD_RELOC_X86_64_GOTPCREL64: | |
14172 | case BFD_RELOC_X86_64_GOTPC64: | |
14173 | case BFD_RELOC_X86_64_GOTPLT64: | |
14174 | case BFD_RELOC_X86_64_PLTOFF64: | |
14175 | as_bad_where (fixp->fx_file, fixp->fx_line, | |
14176 | _("cannot represent relocation type %s in x32 mode"), | |
14177 | bfd_get_reloc_code_name (code)); | |
14178 | break; | |
14179 | default: | |
14180 | break; | |
14181 | } | |
14182 | ||
062cd5e7 AS |
14183 | if (!fixp->fx_pcrel) |
14184 | rel->addend = fixp->fx_offset; | |
14185 | else | |
14186 | switch (code) | |
14187 | { | |
14188 | case BFD_RELOC_X86_64_PLT32: | |
14189 | case BFD_RELOC_X86_64_GOT32: | |
14190 | case BFD_RELOC_X86_64_GOTPCREL: | |
56ceb5b5 L |
14191 | case BFD_RELOC_X86_64_GOTPCRELX: |
14192 | case BFD_RELOC_X86_64_REX_GOTPCRELX: | |
bffbf940 JJ |
14193 | case BFD_RELOC_X86_64_TLSGD: |
14194 | case BFD_RELOC_X86_64_TLSLD: | |
14195 | case BFD_RELOC_X86_64_GOTTPOFF: | |
67a4f2b7 AO |
14196 | case BFD_RELOC_X86_64_GOTPC32_TLSDESC: |
14197 | case BFD_RELOC_X86_64_TLSDESC_CALL: | |
062cd5e7 AS |
14198 | rel->addend = fixp->fx_offset - fixp->fx_size; |
14199 | break; | |
14200 | default: | |
14201 | rel->addend = (section->vma | |
14202 | - fixp->fx_size | |
14203 | + fixp->fx_addnumber | |
14204 | + md_pcrel_from (fixp)); | |
14205 | break; | |
14206 | } | |
3e73aa7c JH |
14207 | } |
14208 | ||
252b5132 RH |
14209 | rel->howto = bfd_reloc_type_lookup (stdoutput, code); |
14210 | if (rel->howto == NULL) | |
14211 | { | |
14212 | as_bad_where (fixp->fx_file, fixp->fx_line, | |
d0b47220 | 14213 | _("cannot represent relocation type %s"), |
252b5132 RH |
14214 | bfd_get_reloc_code_name (code)); |
14215 | /* Set howto to a garbage value so that we can keep going. */ | |
14216 | rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32); | |
9c2799c2 | 14217 | gas_assert (rel->howto != NULL); |
252b5132 RH |
14218 | } |
14219 | ||
14220 | return rel; | |
14221 | } | |
14222 | ||
ee86248c | 14223 | #include "tc-i386-intel.c" |
54cfded0 | 14224 | |
a60de03c JB |
14225 | void |
14226 | tc_x86_parse_to_dw2regnum (expressionS *exp) | |
54cfded0 | 14227 | { |
a60de03c JB |
14228 | int saved_naked_reg; |
14229 | char saved_register_dot; | |
54cfded0 | 14230 | |
a60de03c JB |
14231 | saved_naked_reg = allow_naked_reg; |
14232 | allow_naked_reg = 1; | |
14233 | saved_register_dot = register_chars['.']; | |
14234 | register_chars['.'] = '.'; | |
14235 | allow_pseudo_reg = 1; | |
14236 | expression_and_evaluate (exp); | |
14237 | allow_pseudo_reg = 0; | |
14238 | register_chars['.'] = saved_register_dot; | |
14239 | allow_naked_reg = saved_naked_reg; | |
14240 | ||
e96d56a1 | 14241 | if (exp->X_op == O_register && exp->X_add_number >= 0) |
54cfded0 | 14242 | { |
a60de03c JB |
14243 | if ((addressT) exp->X_add_number < i386_regtab_size) |
14244 | { | |
14245 | exp->X_op = O_constant; | |
14246 | exp->X_add_number = i386_regtab[exp->X_add_number] | |
14247 | .dw2_regnum[flag_code >> 1]; | |
14248 | } | |
14249 | else | |
14250 | exp->X_op = O_illegal; | |
54cfded0 | 14251 | } |
54cfded0 AM |
14252 | } |
14253 | ||
14254 | void | |
14255 | tc_x86_frame_initial_instructions (void) | |
14256 | { | |
a60de03c JB |
14257 | static unsigned int sp_regno[2]; |
14258 | ||
14259 | if (!sp_regno[flag_code >> 1]) | |
14260 | { | |
14261 | char *saved_input = input_line_pointer; | |
14262 | char sp[][4] = {"esp", "rsp"}; | |
14263 | expressionS exp; | |
a4447b93 | 14264 | |
a60de03c JB |
14265 | input_line_pointer = sp[flag_code >> 1]; |
14266 | tc_x86_parse_to_dw2regnum (&exp); | |
9c2799c2 | 14267 | gas_assert (exp.X_op == O_constant); |
a60de03c JB |
14268 | sp_regno[flag_code >> 1] = exp.X_add_number; |
14269 | input_line_pointer = saved_input; | |
14270 | } | |
a4447b93 | 14271 | |
61ff971f L |
14272 | cfi_add_CFA_def_cfa (sp_regno[flag_code >> 1], -x86_cie_data_alignment); |
14273 | cfi_add_CFA_offset (x86_dwarf2_return_column, x86_cie_data_alignment); | |
54cfded0 | 14274 | } |
d2b2c203 | 14275 | |
d7921315 L |
14276 | int |
14277 | x86_dwarf2_addr_size (void) | |
14278 | { | |
14279 | #if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF) | |
14280 | if (x86_elf_abi == X86_64_X32_ABI) | |
14281 | return 4; | |
14282 | #endif | |
14283 | return bfd_arch_bits_per_address (stdoutput) / 8; | |
14284 | } | |
14285 | ||
d2b2c203 DJ |
14286 | int |
14287 | i386_elf_section_type (const char *str, size_t len) | |
14288 | { | |
14289 | if (flag_code == CODE_64BIT | |
14290 | && len == sizeof ("unwind") - 1 | |
14291 | && strncmp (str, "unwind", 6) == 0) | |
14292 | return SHT_X86_64_UNWIND; | |
14293 | ||
14294 | return -1; | |
14295 | } | |
bb41ade5 | 14296 | |
ad5fec3b EB |
14297 | #ifdef TE_SOLARIS |
14298 | void | |
14299 | i386_solaris_fix_up_eh_frame (segT sec) | |
14300 | { | |
14301 | if (flag_code == CODE_64BIT) | |
14302 | elf_section_type (sec) = SHT_X86_64_UNWIND; | |
14303 | } | |
14304 | #endif | |
14305 | ||
bb41ade5 AM |
14306 | #ifdef TE_PE |
14307 | void | |
14308 | tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size) | |
14309 | { | |
91d6fa6a | 14310 | expressionS exp; |
bb41ade5 | 14311 | |
91d6fa6a NC |
14312 | exp.X_op = O_secrel; |
14313 | exp.X_add_symbol = symbol; | |
14314 | exp.X_add_number = 0; | |
14315 | emit_expr (&exp, size); | |
bb41ade5 AM |
14316 | } |
14317 | #endif | |
3b22753a L |
14318 | |
14319 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) | |
14320 | /* For ELF on x86-64, add support for SHF_X86_64_LARGE. */ | |
14321 | ||
01e1a5bc | 14322 | bfd_vma |
6d4af3c2 | 14323 | x86_64_section_letter (int letter, const char **ptr_msg) |
3b22753a L |
14324 | { |
14325 | if (flag_code == CODE_64BIT) | |
14326 | { | |
14327 | if (letter == 'l') | |
14328 | return SHF_X86_64_LARGE; | |
14329 | ||
8f3bae45 | 14330 | *ptr_msg = _("bad .section directive: want a,l,w,x,M,S,G,T in string"); |
64e74474 | 14331 | } |
3b22753a | 14332 | else |
8f3bae45 | 14333 | *ptr_msg = _("bad .section directive: want a,w,x,M,S,G,T in string"); |
3b22753a L |
14334 | return -1; |
14335 | } | |
14336 | ||
01e1a5bc | 14337 | bfd_vma |
3b22753a L |
14338 | x86_64_section_word (char *str, size_t len) |
14339 | { | |
8620418b | 14340 | if (len == 5 && flag_code == CODE_64BIT && CONST_STRNEQ (str, "large")) |
3b22753a L |
14341 | return SHF_X86_64_LARGE; |
14342 | ||
14343 | return -1; | |
14344 | } | |
14345 | ||
14346 | static void | |
14347 | handle_large_common (int small ATTRIBUTE_UNUSED) | |
14348 | { | |
14349 | if (flag_code != CODE_64BIT) | |
14350 | { | |
14351 | s_comm_internal (0, elf_common_parse); | |
14352 | as_warn (_(".largecomm supported only in 64bit mode, producing .comm")); | |
14353 | } | |
14354 | else | |
14355 | { | |
14356 | static segT lbss_section; | |
14357 | asection *saved_com_section_ptr = elf_com_section_ptr; | |
14358 | asection *saved_bss_section = bss_section; | |
14359 | ||
14360 | if (lbss_section == NULL) | |
14361 | { | |
14362 | flagword applicable; | |
14363 | segT seg = now_seg; | |
14364 | subsegT subseg = now_subseg; | |
14365 | ||
14366 | /* The .lbss section is for local .largecomm symbols. */ | |
14367 | lbss_section = subseg_new (".lbss", 0); | |
14368 | applicable = bfd_applicable_section_flags (stdoutput); | |
fd361982 | 14369 | bfd_set_section_flags (lbss_section, applicable & SEC_ALLOC); |
3b22753a L |
14370 | seg_info (lbss_section)->bss = 1; |
14371 | ||
14372 | subseg_set (seg, subseg); | |
14373 | } | |
14374 | ||
14375 | elf_com_section_ptr = &_bfd_elf_large_com_section; | |
14376 | bss_section = lbss_section; | |
14377 | ||
14378 | s_comm_internal (0, elf_common_parse); | |
14379 | ||
14380 | elf_com_section_ptr = saved_com_section_ptr; | |
14381 | bss_section = saved_bss_section; | |
14382 | } | |
14383 | } | |
14384 | #endif /* OBJ_ELF || OBJ_MAYBE_ELF */ |