x86: don't use opcode_length to identify pseudo prefixes
[deliverable/binutils-gdb.git] / gas / config / tc-i386.c
CommitLineData
b534c6d3 1/* tc-i386.c -- Assemble code for the Intel 80386
250d07de 2 Copyright (C) 1989-2021 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 (eliot@mgm.mit.edu).
3e73aa7c 23 x86_64 support by Jan Hubicka (jh@suse.cz)
0f10071e 24 VIA PadLock support by Michal Ludvig (mludvig@suse.cz)
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 */
107typedef struct
108{
d3ce72d0
NC
109 const insn_template *start;
110 const insn_template *end;
6305a203
L
111}
112templates;
113
114/* 386 operand encoding bytes: see 386 book for details of this. */
115typedef 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}
121modrm_byte;
122
123/* x86-64 extension prefix. */
124typedef int rex_byte;
125
6305a203
L
126/* 386 opcode byte to code indirect addressing. */
127typedef struct
128{
129 unsigned base;
130 unsigned index;
131 unsigned scale;
132}
133sib_byte;
134
6305a203
L
135/* x86 arch names, types and features */
136typedef 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}
144arch_entry;
145
293f5f65
L
146/* Used to turn off indicated flags. */
147typedef struct
148{
149 const char *name; /* arch name */
150 unsigned int len; /* arch string length */
151 i386_cpu_flags flags; /* cpu feature flags */
152}
153noarch_entry;
154
78f12dd3 155static void update_code_flag (int, int);
e3bb37b5
L
156static void set_code_flag (int);
157static void set_16bit_gcc_code_flag (int);
158static void set_intel_syntax (int);
1efbbeb4 159static void set_intel_mnemonic (int);
db51cc60 160static void set_allow_index_reg (int);
7bab8ab5 161static void set_check (int);
e3bb37b5 162static void set_cpu_arch (int);
6482c264 163#ifdef TE_PE
e3bb37b5 164static void pe_directive_secrel (int);
6482c264 165#endif
e3bb37b5
L
166static void signed_cons (int);
167static char *output_invalid (int c);
ee86248c
JB
168static int i386_finalize_immediate (segT, expressionS *, i386_operand_type,
169 const char *);
170static int i386_finalize_displacement (segT, expressionS *, i386_operand_type,
171 const char *);
a7619375 172static int i386_att_operand (char *);
e3bb37b5 173static int i386_intel_operand (char *, int);
ee86248c
JB
174static int i386_intel_simplify (expressionS *);
175static int i386_intel_parse_name (const char *, expressionS *);
e3bb37b5
L
176static const reg_entry *parse_register (char *, char **);
177static char *parse_insn (char *, char *);
178static char *parse_operands (char *, const char *);
179static void swap_operands (void);
4d456e3d 180static void swap_2_operands (int, int);
48bcea9f 181static enum flag_code i386_addressing_mode (void);
e3bb37b5
L
182static void optimize_imm (void);
183static void optimize_disp (void);
83b16ac6 184static const insn_template *match_template (char);
e3bb37b5
L
185static int check_string (void);
186static int process_suffix (void);
187static int check_byte_reg (void);
188static int check_long_reg (void);
189static int check_qword_reg (void);
190static int check_word_reg (void);
191static int finalize_imm (void);
192static int process_operands (void);
193static const seg_entry *build_modrm_byte (void);
194static void output_insn (void);
195static void output_imm (fragS *, offsetT);
196static void output_disp (fragS *, offsetT);
29b0f896 197#ifndef I386COFF
e3bb37b5 198static void s_bss (int);
252b5132 199#endif
17d4e2a2
L
200#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
201static void handle_large_common (int small ATTRIBUTE_UNUSED);
b4a3a7b4
L
202
203/* GNU_PROPERTY_X86_ISA_1_USED. */
204static unsigned int x86_isa_1_used;
205/* GNU_PROPERTY_X86_FEATURE_2_USED. */
206static unsigned int x86_feature_2_used;
207/* Generate x86 used ISA and feature properties. */
208static unsigned int x86_used_note = DEFAULT_X86_USED_NOTE;
17d4e2a2 209#endif
252b5132 210
a847613f 211static const char *default_arch = DEFAULT_ARCH;
3e73aa7c 212
8a6fb3f9
JB
213/* parse_register() returns this when a register alias cannot be used. */
214static 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. */
218struct 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
231static 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. */
236struct 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
244static struct Mask_Operation mask_op;
245
246/* The struct describes broadcasting, applied to OPERAND. FACTOR is
247 broadcast factor. */
248struct 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
260static struct Broadcast_Operation broadcast_op;
261
c0f3af97
L
262/* VEX prefix. */
263typedef 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
275union i386_op
276 {
277 expressionS *disps;
278 expressionS *imms;
279 const reg_entry *regs;
280 };
281
a65babc9
L
282enum 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
308struct _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
455typedef struct _i386_insn i386_insn;
456
43234a1e
L
457/* Link RC type with corresponding string, that'll be looked for in
458 asm. */
459struct RC_name
460{
461 enum rc_type type;
462 const char *name;
463 unsigned int len;
464};
465
466static 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 477const 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. */
495const char *i386_comment_chars = "#/";
496#define SVR4_COMMENT_CHARS 1
252b5132 497#define PREFIX_SEPARATOR '\\'
252b5132 498
b3b91714
AM
499#else
500const 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 512const char line_comment_chars[] = "#/";
252b5132 513
63a0b638 514const 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
518const 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
523const char FLT_CHARS[] = "fFdDxX";
524
ce8a8b2f 525/* Tables for lexical analysis. */
252b5132
RH
526static char mnemonic_chars[256];
527static char register_chars[256];
528static char operand_chars[256];
529static char identifier_chars[256];
530static 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
541static 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 547static char save_stack[32];
ce8a8b2f 548static 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
555static i386_insn i;
556
557/* Possible templates for current insn. */
558static const templates *current_templates;
559
31b2323c
L
560/* Per instruction expressionS buffers: max displacements & immediates. */
561static expressionS disp_expressions[MAX_MEMORY_OPERANDS];
562static expressionS im_expressions[MAX_IMMEDIATE_OPERANDS];
252b5132 563
47926f60 564/* Current operand we are working on. */
ee86248c 565static int this_operand = -1;
252b5132 566
3e73aa7c
JH
567/* We support four different modes. FLAG_CODE variable is used to distinguish
568 these. */
569
570enum flag_code {
571 CODE_32BIT,
572 CODE_16BIT,
573 CODE_64BIT };
574
575static enum flag_code flag_code;
4fa24527 576static unsigned int object_64bit;
862be3fb 577static unsigned int disallow_64bit_reloc;
3e73aa7c 578static int use_rela_relocations = 0;
e379e5f3
L
579/* __tls_get_addr/___tls_get_addr symbol for TLS. */
580static 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. */
587enum x86_elf_abi
588{
589 I386_ABI,
7f56bc95
L
590 X86_64_ABI,
591 X86_64_X32_ABI
351f65ca
L
592};
593
594static 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. */
599static 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. */
604static int shared = 0;
605#endif
606
47926f60
KH
607/* 1 for intel syntax,
608 0 if att syntax. */
609static int intel_syntax = 0;
252b5132 610
4b5aaf5f
L
611static 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. */
619static int intel_mnemonic = !SYSV386_COMPAT;
620
a60de03c
JB
621/* 1 if pseudo registers are permitted. */
622static int allow_pseudo_reg = 0;
623
47926f60
KH
624/* 1 if register prefix % not required. */
625static 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. */
630static int add_bnd_prefix = 0;
631
ba104c83 632/* 1 if pseudo index register, eiz/riz, is allowed . */
db51cc60
L
633static int allow_index_reg = 0;
634
d022bddd
IT
635/* 1 if the assembler should ignore LOCK prefix, even if it was
636 specified explicitly. */
637static 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)". */
641static int avoid_fence = 0;
642
ae531041
L
643/* 1 if lfence should be inserted after every load. */
644static int lfence_after_load = 0;
645
646/* Non-zero if lfence should be inserted before indirect branch. */
647static 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 }
654lfence_before_indirect_branch;
655
656/* Non-zero if lfence should be inserted before ret. */
657static 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 }
664lfence_before_ret;
665
666/* Types of previous instruction is .byte or prefix. */
e379e5f3
L
667static 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
683static int generate_relax_relocations
684 = DEFAULT_GENERATE_X86_RELAX_RELOCATIONS;
685
7bab8ab5 686static enum check_kind
daf50ae7 687 {
7bab8ab5
JB
688 check_none = 0,
689 check_warning,
690 check_error
daf50ae7 691 }
7bab8ab5 692sse_check, operand_check = check_warning;
daf50ae7 693
e379e5f3
L
694/* Non-zero if branches should be aligned within power of 2 boundary. */
695static int align_branch_power = 0;
696
697/* Types of branches to align. */
698enum 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. */
710enum 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
720static 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. */
725enum 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. */
738enum 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. */
751static 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 */
758static 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 */
767static int optimize_for_space = 0;
768
2ca3ace5
L
769/* Register prefix used for error message. */
770static 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. */
775static char stackop_size = '\0';
eecb386c 776
12b55ccc
L
777/* Non-zero to optimize code alignment. */
778int optimize_align_code = 1;
779
47926f60
KH
780/* Non-zero to quieten some warnings. */
781static int quiet_warnings = 0;
a38cf1db 782
47926f60
KH
783/* CPU name. */
784static const char *cpu_arch_name = NULL;
6305a203 785static char *cpu_sub_arch_name = NULL;
a38cf1db 786
47926f60 787/* CPU feature flags. */
40fb9820
L
788static i386_cpu_flags cpu_arch_flags = CPU_UNKNOWN_FLAGS;
789
ccc9c027
L
790/* If we have selected a cpu we are generating instructions for. */
791static int cpu_arch_tune_set = 0;
792
9103f4f4 793/* Cpu we are generating instructions for. */
fbf3f584 794enum processor_type cpu_arch_tune = PROCESSOR_UNKNOWN;
9103f4f4
L
795
796/* CPU feature flags of cpu we are generating instructions for. */
40fb9820 797static i386_cpu_flags cpu_arch_tune_flags;
9103f4f4 798
ccc9c027 799/* CPU instruction set architecture used. */
fbf3f584 800enum processor_type cpu_arch_isa = PROCESSOR_UNKNOWN;
ccc9c027 801
9103f4f4 802/* CPU feature flags of instruction set architecture used. */
fbf3f584 803i386_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. */
807static unsigned int no_cond_jump_promotion = 0;
808
c0f3af97
L
809/* Encode SSE instructions with VEX prefix. */
810static unsigned int sse2avx;
811
539f890d
L
812/* Encode scalar AVX instructions with specific vector length. */
813static enum
814 {
815 vex128 = 0,
816 vex256
817 } avxscalar;
818
03751133
L
819/* Encode VEX WIG instructions with specific vex.w. */
820static enum
821 {
822 vexw0 = 0,
823 vexw1
824 } vexwig;
825
43234a1e
L
826/* Encode scalar EVEX LIG instructions with specific vector length. */
827static enum
828 {
829 evexl128 = 0,
830 evexl256,
831 evexl512
832 } evexlig;
833
834/* Encode EVEX WIG instructions with specific evex.w. */
835static enum
836 {
837 evexw0 = 0,
838 evexw1
839 } evexwig;
840
d3d3c6db
IT
841/* Value to encode in EVEX RC bits, for SAE-only instructions. */
842static enum rc_type evexrcig = rne;
843
29b0f896 844/* Pre-defined "_GLOBAL_OFFSET_TABLE_". */
87c245cc 845static symbolS *GOT_symbol;
29b0f896 846
a4447b93
RH
847/* The dwarf2 return column, adjusted for 32 or 64 bit. */
848unsigned int x86_dwarf2_return_column;
849
850/* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
851int 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
900const 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
939static 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 },
646cc3e0
GG
1017 { STRING_COMMA_LEN ("znver3"), PROCESSOR_ZNVER,
1018 CPU_ZNVER3_FLAGS, 0 },
7b458c12 1019 { STRING_COMMA_LEN ("btver1"), PROCESSOR_BT,
293f5f65 1020 CPU_BTVER1_FLAGS, 0 },
7b458c12 1021 { STRING_COMMA_LEN ("btver2"), PROCESSOR_BT,
293f5f65 1022 CPU_BTVER2_FLAGS, 0 },
8a2c8fef 1023 { STRING_COMMA_LEN (".8087"), PROCESSOR_UNKNOWN,
293f5f65 1024 CPU_8087_FLAGS, 0 },
8a2c8fef 1025 { STRING_COMMA_LEN (".287"), PROCESSOR_UNKNOWN,
293f5f65 1026 CPU_287_FLAGS, 0 },
8a2c8fef 1027 { STRING_COMMA_LEN (".387"), PROCESSOR_UNKNOWN,
293f5f65 1028 CPU_387_FLAGS, 0 },
1848e567
L
1029 { STRING_COMMA_LEN (".687"), PROCESSOR_UNKNOWN,
1030 CPU_687_FLAGS, 0 },
d871f3f4
L
1031 { STRING_COMMA_LEN (".cmov"), PROCESSOR_UNKNOWN,
1032 CPU_CMOV_FLAGS, 0 },
1033 { STRING_COMMA_LEN (".fxsr"), PROCESSOR_UNKNOWN,
1034 CPU_FXSR_FLAGS, 0 },
8a2c8fef 1035 { STRING_COMMA_LEN (".mmx"), PROCESSOR_UNKNOWN,
293f5f65 1036 CPU_MMX_FLAGS, 0 },
8a2c8fef 1037 { STRING_COMMA_LEN (".sse"), PROCESSOR_UNKNOWN,
293f5f65 1038 CPU_SSE_FLAGS, 0 },
8a2c8fef 1039 { STRING_COMMA_LEN (".sse2"), PROCESSOR_UNKNOWN,
293f5f65 1040 CPU_SSE2_FLAGS, 0 },
8a2c8fef 1041 { STRING_COMMA_LEN (".sse3"), PROCESSOR_UNKNOWN,
293f5f65 1042 CPU_SSE3_FLAGS, 0 },
af5c13b0
L
1043 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
1044 CPU_SSE4A_FLAGS, 0 },
8a2c8fef 1045 { STRING_COMMA_LEN (".ssse3"), PROCESSOR_UNKNOWN,
293f5f65 1046 CPU_SSSE3_FLAGS, 0 },
8a2c8fef 1047 { STRING_COMMA_LEN (".sse4.1"), PROCESSOR_UNKNOWN,
293f5f65 1048 CPU_SSE4_1_FLAGS, 0 },
8a2c8fef 1049 { STRING_COMMA_LEN (".sse4.2"), PROCESSOR_UNKNOWN,
293f5f65 1050 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 1051 { STRING_COMMA_LEN (".sse4"), PROCESSOR_UNKNOWN,
293f5f65 1052 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 1053 { STRING_COMMA_LEN (".avx"), PROCESSOR_UNKNOWN,
293f5f65 1054 CPU_AVX_FLAGS, 0 },
6c30d220 1055 { STRING_COMMA_LEN (".avx2"), PROCESSOR_UNKNOWN,
293f5f65 1056 CPU_AVX2_FLAGS, 0 },
43234a1e 1057 { STRING_COMMA_LEN (".avx512f"), PROCESSOR_UNKNOWN,
293f5f65 1058 CPU_AVX512F_FLAGS, 0 },
43234a1e 1059 { STRING_COMMA_LEN (".avx512cd"), PROCESSOR_UNKNOWN,
293f5f65 1060 CPU_AVX512CD_FLAGS, 0 },
43234a1e 1061 { STRING_COMMA_LEN (".avx512er"), PROCESSOR_UNKNOWN,
293f5f65 1062 CPU_AVX512ER_FLAGS, 0 },
43234a1e 1063 { STRING_COMMA_LEN (".avx512pf"), PROCESSOR_UNKNOWN,
293f5f65 1064 CPU_AVX512PF_FLAGS, 0 },
1dfc6506 1065 { STRING_COMMA_LEN (".avx512dq"), PROCESSOR_UNKNOWN,
293f5f65 1066 CPU_AVX512DQ_FLAGS, 0 },
1dfc6506 1067 { STRING_COMMA_LEN (".avx512bw"), PROCESSOR_UNKNOWN,
293f5f65 1068 CPU_AVX512BW_FLAGS, 0 },
1dfc6506 1069 { STRING_COMMA_LEN (".avx512vl"), PROCESSOR_UNKNOWN,
293f5f65 1070 CPU_AVX512VL_FLAGS, 0 },
8a2c8fef 1071 { STRING_COMMA_LEN (".vmx"), PROCESSOR_UNKNOWN,
293f5f65 1072 CPU_VMX_FLAGS, 0 },
8729a6f6 1073 { STRING_COMMA_LEN (".vmfunc"), PROCESSOR_UNKNOWN,
293f5f65 1074 CPU_VMFUNC_FLAGS, 0 },
8a2c8fef 1075 { STRING_COMMA_LEN (".smx"), PROCESSOR_UNKNOWN,
293f5f65 1076 CPU_SMX_FLAGS, 0 },
8a2c8fef 1077 { STRING_COMMA_LEN (".xsave"), PROCESSOR_UNKNOWN,
293f5f65 1078 CPU_XSAVE_FLAGS, 0 },
c7b8aa3a 1079 { STRING_COMMA_LEN (".xsaveopt"), PROCESSOR_UNKNOWN,
293f5f65 1080 CPU_XSAVEOPT_FLAGS, 0 },
1dfc6506 1081 { STRING_COMMA_LEN (".xsavec"), PROCESSOR_UNKNOWN,
293f5f65 1082 CPU_XSAVEC_FLAGS, 0 },
1dfc6506 1083 { STRING_COMMA_LEN (".xsaves"), PROCESSOR_UNKNOWN,
293f5f65 1084 CPU_XSAVES_FLAGS, 0 },
8a2c8fef 1085 { STRING_COMMA_LEN (".aes"), PROCESSOR_UNKNOWN,
293f5f65 1086 CPU_AES_FLAGS, 0 },
8a2c8fef 1087 { STRING_COMMA_LEN (".pclmul"), PROCESSOR_UNKNOWN,
293f5f65 1088 CPU_PCLMUL_FLAGS, 0 },
8a2c8fef 1089 { STRING_COMMA_LEN (".clmul"), PROCESSOR_UNKNOWN,
293f5f65 1090 CPU_PCLMUL_FLAGS, 1 },
c7b8aa3a 1091 { STRING_COMMA_LEN (".fsgsbase"), PROCESSOR_UNKNOWN,
293f5f65 1092 CPU_FSGSBASE_FLAGS, 0 },
c7b8aa3a 1093 { STRING_COMMA_LEN (".rdrnd"), PROCESSOR_UNKNOWN,
293f5f65 1094 CPU_RDRND_FLAGS, 0 },
c7b8aa3a 1095 { STRING_COMMA_LEN (".f16c"), PROCESSOR_UNKNOWN,
293f5f65 1096 CPU_F16C_FLAGS, 0 },
6c30d220 1097 { STRING_COMMA_LEN (".bmi2"), PROCESSOR_UNKNOWN,
293f5f65 1098 CPU_BMI2_FLAGS, 0 },
8a2c8fef 1099 { STRING_COMMA_LEN (".fma"), PROCESSOR_UNKNOWN,
293f5f65 1100 CPU_FMA_FLAGS, 0 },
8a2c8fef 1101 { STRING_COMMA_LEN (".fma4"), PROCESSOR_UNKNOWN,
293f5f65 1102 CPU_FMA4_FLAGS, 0 },
8a2c8fef 1103 { STRING_COMMA_LEN (".xop"), PROCESSOR_UNKNOWN,
293f5f65 1104 CPU_XOP_FLAGS, 0 },
8a2c8fef 1105 { STRING_COMMA_LEN (".lwp"), PROCESSOR_UNKNOWN,
293f5f65 1106 CPU_LWP_FLAGS, 0 },
8a2c8fef 1107 { STRING_COMMA_LEN (".movbe"), PROCESSOR_UNKNOWN,
293f5f65 1108 CPU_MOVBE_FLAGS, 0 },
60aa667e 1109 { STRING_COMMA_LEN (".cx16"), PROCESSOR_UNKNOWN,
293f5f65 1110 CPU_CX16_FLAGS, 0 },
8a2c8fef 1111 { STRING_COMMA_LEN (".ept"), PROCESSOR_UNKNOWN,
293f5f65 1112 CPU_EPT_FLAGS, 0 },
6c30d220 1113 { STRING_COMMA_LEN (".lzcnt"), PROCESSOR_UNKNOWN,
293f5f65 1114 CPU_LZCNT_FLAGS, 0 },
272a84b1
L
1115 { STRING_COMMA_LEN (".popcnt"), PROCESSOR_UNKNOWN,
1116 CPU_POPCNT_FLAGS, 0 },
42164a71 1117 { STRING_COMMA_LEN (".hle"), PROCESSOR_UNKNOWN,
293f5f65 1118 CPU_HLE_FLAGS, 0 },
42164a71 1119 { STRING_COMMA_LEN (".rtm"), PROCESSOR_UNKNOWN,
293f5f65 1120 CPU_RTM_FLAGS, 0 },
6c30d220 1121 { STRING_COMMA_LEN (".invpcid"), PROCESSOR_UNKNOWN,
293f5f65 1122 CPU_INVPCID_FLAGS, 0 },
8a2c8fef 1123 { STRING_COMMA_LEN (".clflush"), PROCESSOR_UNKNOWN,
293f5f65 1124 CPU_CLFLUSH_FLAGS, 0 },
22109423 1125 { STRING_COMMA_LEN (".nop"), PROCESSOR_UNKNOWN,
293f5f65 1126 CPU_NOP_FLAGS, 0 },
8a2c8fef 1127 { STRING_COMMA_LEN (".syscall"), PROCESSOR_UNKNOWN,
293f5f65 1128 CPU_SYSCALL_FLAGS, 0 },
8a2c8fef 1129 { STRING_COMMA_LEN (".rdtscp"), PROCESSOR_UNKNOWN,
293f5f65 1130 CPU_RDTSCP_FLAGS, 0 },
8a2c8fef 1131 { STRING_COMMA_LEN (".3dnow"), PROCESSOR_UNKNOWN,
293f5f65 1132 CPU_3DNOW_FLAGS, 0 },
8a2c8fef 1133 { STRING_COMMA_LEN (".3dnowa"), PROCESSOR_UNKNOWN,
293f5f65 1134 CPU_3DNOWA_FLAGS, 0 },
8a2c8fef 1135 { STRING_COMMA_LEN (".padlock"), PROCESSOR_UNKNOWN,
293f5f65 1136 CPU_PADLOCK_FLAGS, 0 },
8a2c8fef 1137 { STRING_COMMA_LEN (".pacifica"), PROCESSOR_UNKNOWN,
293f5f65 1138 CPU_SVME_FLAGS, 1 },
8a2c8fef 1139 { STRING_COMMA_LEN (".svme"), PROCESSOR_UNKNOWN,
293f5f65 1140 CPU_SVME_FLAGS, 0 },
8a2c8fef 1141 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
293f5f65 1142 CPU_SSE4A_FLAGS, 0 },
8a2c8fef 1143 { STRING_COMMA_LEN (".abm"), PROCESSOR_UNKNOWN,
293f5f65 1144 CPU_ABM_FLAGS, 0 },
87973e9f 1145 { STRING_COMMA_LEN (".bmi"), PROCESSOR_UNKNOWN,
293f5f65 1146 CPU_BMI_FLAGS, 0 },
2a2a0f38 1147 { STRING_COMMA_LEN (".tbm"), PROCESSOR_UNKNOWN,
293f5f65 1148 CPU_TBM_FLAGS, 0 },
e2e1fcde 1149 { STRING_COMMA_LEN (".adx"), PROCESSOR_UNKNOWN,
293f5f65 1150 CPU_ADX_FLAGS, 0 },
e2e1fcde 1151 { STRING_COMMA_LEN (".rdseed"), PROCESSOR_UNKNOWN,
293f5f65 1152 CPU_RDSEED_FLAGS, 0 },
e2e1fcde 1153 { STRING_COMMA_LEN (".prfchw"), PROCESSOR_UNKNOWN,
293f5f65 1154 CPU_PRFCHW_FLAGS, 0 },
5c111e37 1155 { STRING_COMMA_LEN (".smap"), PROCESSOR_UNKNOWN,
293f5f65 1156 CPU_SMAP_FLAGS, 0 },
7e8b059b 1157 { STRING_COMMA_LEN (".mpx"), PROCESSOR_UNKNOWN,
293f5f65 1158 CPU_MPX_FLAGS, 0 },
a0046408 1159 { STRING_COMMA_LEN (".sha"), PROCESSOR_UNKNOWN,
293f5f65 1160 CPU_SHA_FLAGS, 0 },
963f3586 1161 { STRING_COMMA_LEN (".clflushopt"), PROCESSOR_UNKNOWN,
293f5f65 1162 CPU_CLFLUSHOPT_FLAGS, 0 },
dcf893b5 1163 { STRING_COMMA_LEN (".prefetchwt1"), PROCESSOR_UNKNOWN,
293f5f65 1164 CPU_PREFETCHWT1_FLAGS, 0 },
2cf200a4 1165 { STRING_COMMA_LEN (".se1"), PROCESSOR_UNKNOWN,
293f5f65 1166 CPU_SE1_FLAGS, 0 },
c5e7287a 1167 { STRING_COMMA_LEN (".clwb"), PROCESSOR_UNKNOWN,
293f5f65 1168 CPU_CLWB_FLAGS, 0 },
2cc1b5aa 1169 { STRING_COMMA_LEN (".avx512ifma"), PROCESSOR_UNKNOWN,
293f5f65 1170 CPU_AVX512IFMA_FLAGS, 0 },
14f195c9 1171 { STRING_COMMA_LEN (".avx512vbmi"), PROCESSOR_UNKNOWN,
293f5f65 1172 CPU_AVX512VBMI_FLAGS, 0 },
920d2ddc
IT
1173 { STRING_COMMA_LEN (".avx512_4fmaps"), PROCESSOR_UNKNOWN,
1174 CPU_AVX512_4FMAPS_FLAGS, 0 },
47acf0bd
IT
1175 { STRING_COMMA_LEN (".avx512_4vnniw"), PROCESSOR_UNKNOWN,
1176 CPU_AVX512_4VNNIW_FLAGS, 0 },
620214f7
IT
1177 { STRING_COMMA_LEN (".avx512_vpopcntdq"), PROCESSOR_UNKNOWN,
1178 CPU_AVX512_VPOPCNTDQ_FLAGS, 0 },
53467f57
IT
1179 { STRING_COMMA_LEN (".avx512_vbmi2"), PROCESSOR_UNKNOWN,
1180 CPU_AVX512_VBMI2_FLAGS, 0 },
8cfcb765
IT
1181 { STRING_COMMA_LEN (".avx512_vnni"), PROCESSOR_UNKNOWN,
1182 CPU_AVX512_VNNI_FLAGS, 0 },
ee6872be
IT
1183 { STRING_COMMA_LEN (".avx512_bitalg"), PROCESSOR_UNKNOWN,
1184 CPU_AVX512_BITALG_FLAGS, 0 },
58bf9b6a
L
1185 { STRING_COMMA_LEN (".avx_vnni"), PROCESSOR_UNKNOWN,
1186 CPU_AVX_VNNI_FLAGS, 0 },
029f3522 1187 { STRING_COMMA_LEN (".clzero"), PROCESSOR_UNKNOWN,
293f5f65 1188 CPU_CLZERO_FLAGS, 0 },
9916071f 1189 { STRING_COMMA_LEN (".mwaitx"), PROCESSOR_UNKNOWN,
293f5f65 1190 CPU_MWAITX_FLAGS, 0 },
8eab4136 1191 { STRING_COMMA_LEN (".ospke"), PROCESSOR_UNKNOWN,
293f5f65 1192 CPU_OSPKE_FLAGS, 0 },
8bc52696 1193 { STRING_COMMA_LEN (".rdpid"), PROCESSOR_UNKNOWN,
293f5f65 1194 CPU_RDPID_FLAGS, 0 },
6b40c462
L
1195 { STRING_COMMA_LEN (".ptwrite"), PROCESSOR_UNKNOWN,
1196 CPU_PTWRITE_FLAGS, 0 },
d777820b
IT
1197 { STRING_COMMA_LEN (".ibt"), PROCESSOR_UNKNOWN,
1198 CPU_IBT_FLAGS, 0 },
1199 { STRING_COMMA_LEN (".shstk"), PROCESSOR_UNKNOWN,
1200 CPU_SHSTK_FLAGS, 0 },
48521003
IT
1201 { STRING_COMMA_LEN (".gfni"), PROCESSOR_UNKNOWN,
1202 CPU_GFNI_FLAGS, 0 },
8dcf1fad
IT
1203 { STRING_COMMA_LEN (".vaes"), PROCESSOR_UNKNOWN,
1204 CPU_VAES_FLAGS, 0 },
ff1982d5
IT
1205 { STRING_COMMA_LEN (".vpclmulqdq"), PROCESSOR_UNKNOWN,
1206 CPU_VPCLMULQDQ_FLAGS, 0 },
3233d7d0
IT
1207 { STRING_COMMA_LEN (".wbnoinvd"), PROCESSOR_UNKNOWN,
1208 CPU_WBNOINVD_FLAGS, 0 },
be3a8dca
IT
1209 { STRING_COMMA_LEN (".pconfig"), PROCESSOR_UNKNOWN,
1210 CPU_PCONFIG_FLAGS, 0 },
de89d0a3
IT
1211 { STRING_COMMA_LEN (".waitpkg"), PROCESSOR_UNKNOWN,
1212 CPU_WAITPKG_FLAGS, 0 },
c48935d7
IT
1213 { STRING_COMMA_LEN (".cldemote"), PROCESSOR_UNKNOWN,
1214 CPU_CLDEMOTE_FLAGS, 0 },
260cd341
LC
1215 { STRING_COMMA_LEN (".amx_int8"), PROCESSOR_UNKNOWN,
1216 CPU_AMX_INT8_FLAGS, 0 },
1217 { STRING_COMMA_LEN (".amx_bf16"), PROCESSOR_UNKNOWN,
1218 CPU_AMX_BF16_FLAGS, 0 },
1219 { STRING_COMMA_LEN (".amx_tile"), PROCESSOR_UNKNOWN,
1220 CPU_AMX_TILE_FLAGS, 0 },
c0a30a9f
L
1221 { STRING_COMMA_LEN (".movdiri"), PROCESSOR_UNKNOWN,
1222 CPU_MOVDIRI_FLAGS, 0 },
1223 { STRING_COMMA_LEN (".movdir64b"), PROCESSOR_UNKNOWN,
1224 CPU_MOVDIR64B_FLAGS, 0 },
d6aab7a1
XG
1225 { STRING_COMMA_LEN (".avx512_bf16"), PROCESSOR_UNKNOWN,
1226 CPU_AVX512_BF16_FLAGS, 0 },
9186c494
L
1227 { STRING_COMMA_LEN (".avx512_vp2intersect"), PROCESSOR_UNKNOWN,
1228 CPU_AVX512_VP2INTERSECT_FLAGS, 0 },
81d54bb7
CL
1229 { STRING_COMMA_LEN (".tdx"), PROCESSOR_UNKNOWN,
1230 CPU_TDX_FLAGS, 0 },
dd455cf5
L
1231 { STRING_COMMA_LEN (".enqcmd"), PROCESSOR_UNKNOWN,
1232 CPU_ENQCMD_FLAGS, 0 },
4b27d27c
L
1233 { STRING_COMMA_LEN (".serialize"), PROCESSOR_UNKNOWN,
1234 CPU_SERIALIZE_FLAGS, 0 },
142861df
JB
1235 { STRING_COMMA_LEN (".rdpru"), PROCESSOR_UNKNOWN,
1236 CPU_RDPRU_FLAGS, 0 },
1237 { STRING_COMMA_LEN (".mcommit"), PROCESSOR_UNKNOWN,
1238 CPU_MCOMMIT_FLAGS, 0 },
a847e322
JB
1239 { STRING_COMMA_LEN (".sev_es"), PROCESSOR_UNKNOWN,
1240 CPU_SEV_ES_FLAGS, 0 },
bb651e8b
CL
1241 { STRING_COMMA_LEN (".tsxldtrk"), PROCESSOR_UNKNOWN,
1242 CPU_TSXLDTRK_FLAGS, 0 },
c4694f17
TG
1243 { STRING_COMMA_LEN (".kl"), PROCESSOR_UNKNOWN,
1244 CPU_KL_FLAGS, 0 },
1245 { STRING_COMMA_LEN (".widekl"), PROCESSOR_UNKNOWN,
1246 CPU_WIDEKL_FLAGS, 0 },
f64c42a9
LC
1247 { STRING_COMMA_LEN (".uintr"), PROCESSOR_UNKNOWN,
1248 CPU_UINTR_FLAGS, 0 },
c1fa250a
LC
1249 { STRING_COMMA_LEN (".hreset"), PROCESSOR_UNKNOWN,
1250 CPU_HRESET_FLAGS, 0 },
293f5f65
L
1251};
1252
1253static const noarch_entry cpu_noarch[] =
1254{
1255 { STRING_COMMA_LEN ("no87"), CPU_ANY_X87_FLAGS },
1848e567
L
1256 { STRING_COMMA_LEN ("no287"), CPU_ANY_287_FLAGS },
1257 { STRING_COMMA_LEN ("no387"), CPU_ANY_387_FLAGS },
1258 { STRING_COMMA_LEN ("no687"), CPU_ANY_687_FLAGS },
d871f3f4
L
1259 { STRING_COMMA_LEN ("nocmov"), CPU_ANY_CMOV_FLAGS },
1260 { STRING_COMMA_LEN ("nofxsr"), CPU_ANY_FXSR_FLAGS },
293f5f65
L
1261 { STRING_COMMA_LEN ("nommx"), CPU_ANY_MMX_FLAGS },
1262 { STRING_COMMA_LEN ("nosse"), CPU_ANY_SSE_FLAGS },
1848e567
L
1263 { STRING_COMMA_LEN ("nosse2"), CPU_ANY_SSE2_FLAGS },
1264 { STRING_COMMA_LEN ("nosse3"), CPU_ANY_SSE3_FLAGS },
af5c13b0 1265 { STRING_COMMA_LEN ("nosse4a"), CPU_ANY_SSE4A_FLAGS },
1848e567
L
1266 { STRING_COMMA_LEN ("nossse3"), CPU_ANY_SSSE3_FLAGS },
1267 { STRING_COMMA_LEN ("nosse4.1"), CPU_ANY_SSE4_1_FLAGS },
1268 { STRING_COMMA_LEN ("nosse4.2"), CPU_ANY_SSE4_2_FLAGS },
af5c13b0 1269 { STRING_COMMA_LEN ("nosse4"), CPU_ANY_SSE4_1_FLAGS },
293f5f65 1270 { STRING_COMMA_LEN ("noavx"), CPU_ANY_AVX_FLAGS },
1848e567 1271 { STRING_COMMA_LEN ("noavx2"), CPU_ANY_AVX2_FLAGS },
144b71e2
L
1272 { STRING_COMMA_LEN ("noavx512f"), CPU_ANY_AVX512F_FLAGS },
1273 { STRING_COMMA_LEN ("noavx512cd"), CPU_ANY_AVX512CD_FLAGS },
1274 { STRING_COMMA_LEN ("noavx512er"), CPU_ANY_AVX512ER_FLAGS },
1275 { STRING_COMMA_LEN ("noavx512pf"), CPU_ANY_AVX512PF_FLAGS },
1276 { STRING_COMMA_LEN ("noavx512dq"), CPU_ANY_AVX512DQ_FLAGS },
1277 { STRING_COMMA_LEN ("noavx512bw"), CPU_ANY_AVX512BW_FLAGS },
1278 { STRING_COMMA_LEN ("noavx512vl"), CPU_ANY_AVX512VL_FLAGS },
1279 { STRING_COMMA_LEN ("noavx512ifma"), CPU_ANY_AVX512IFMA_FLAGS },
1280 { STRING_COMMA_LEN ("noavx512vbmi"), CPU_ANY_AVX512VBMI_FLAGS },
920d2ddc 1281 { STRING_COMMA_LEN ("noavx512_4fmaps"), CPU_ANY_AVX512_4FMAPS_FLAGS },
47acf0bd 1282 { STRING_COMMA_LEN ("noavx512_4vnniw"), CPU_ANY_AVX512_4VNNIW_FLAGS },
620214f7 1283 { STRING_COMMA_LEN ("noavx512_vpopcntdq"), CPU_ANY_AVX512_VPOPCNTDQ_FLAGS },
53467f57 1284 { STRING_COMMA_LEN ("noavx512_vbmi2"), CPU_ANY_AVX512_VBMI2_FLAGS },
8cfcb765 1285 { STRING_COMMA_LEN ("noavx512_vnni"), CPU_ANY_AVX512_VNNI_FLAGS },
ee6872be 1286 { STRING_COMMA_LEN ("noavx512_bitalg"), CPU_ANY_AVX512_BITALG_FLAGS },
58bf9b6a 1287 { STRING_COMMA_LEN ("noavx_vnni"), CPU_ANY_AVX_VNNI_FLAGS },
d777820b
IT
1288 { STRING_COMMA_LEN ("noibt"), CPU_ANY_IBT_FLAGS },
1289 { STRING_COMMA_LEN ("noshstk"), CPU_ANY_SHSTK_FLAGS },
260cd341
LC
1290 { STRING_COMMA_LEN ("noamx_int8"), CPU_ANY_AMX_INT8_FLAGS },
1291 { STRING_COMMA_LEN ("noamx_bf16"), CPU_ANY_AMX_BF16_FLAGS },
1292 { STRING_COMMA_LEN ("noamx_tile"), CPU_ANY_AMX_TILE_FLAGS },
c0a30a9f
L
1293 { STRING_COMMA_LEN ("nomovdiri"), CPU_ANY_MOVDIRI_FLAGS },
1294 { STRING_COMMA_LEN ("nomovdir64b"), CPU_ANY_MOVDIR64B_FLAGS },
d6aab7a1 1295 { STRING_COMMA_LEN ("noavx512_bf16"), CPU_ANY_AVX512_BF16_FLAGS },
708a2fff
CL
1296 { STRING_COMMA_LEN ("noavx512_vp2intersect"),
1297 CPU_ANY_AVX512_VP2INTERSECT_FLAGS },
81d54bb7 1298 { STRING_COMMA_LEN ("notdx"), CPU_ANY_TDX_FLAGS },
dd455cf5 1299 { STRING_COMMA_LEN ("noenqcmd"), CPU_ANY_ENQCMD_FLAGS },
4b27d27c 1300 { STRING_COMMA_LEN ("noserialize"), CPU_ANY_SERIALIZE_FLAGS },
bb651e8b 1301 { STRING_COMMA_LEN ("notsxldtrk"), CPU_ANY_TSXLDTRK_FLAGS },
c4694f17
TG
1302 { STRING_COMMA_LEN ("nokl"), CPU_ANY_KL_FLAGS },
1303 { STRING_COMMA_LEN ("nowidekl"), CPU_ANY_WIDEKL_FLAGS },
f64c42a9 1304 { STRING_COMMA_LEN ("nouintr"), CPU_ANY_UINTR_FLAGS },
c1fa250a 1305 { STRING_COMMA_LEN ("nohreset"), CPU_ANY_HRESET_FLAGS },
e413e4e9
AM
1306};
1307
704209c0 1308#ifdef I386COFF
a6c24e68
NC
1309/* Like s_lcomm_internal in gas/read.c but the alignment string
1310 is allowed to be optional. */
1311
1312static symbolS *
1313pe_lcomm_internal (int needs_align, symbolS *symbolP, addressT size)
1314{
1315 addressT align = 0;
1316
1317 SKIP_WHITESPACE ();
1318
7ab9ffdd 1319 if (needs_align
a6c24e68
NC
1320 && *input_line_pointer == ',')
1321 {
1322 align = parse_align (needs_align - 1);
7ab9ffdd 1323
a6c24e68
NC
1324 if (align == (addressT) -1)
1325 return NULL;
1326 }
1327 else
1328 {
1329 if (size >= 8)
1330 align = 3;
1331 else if (size >= 4)
1332 align = 2;
1333 else if (size >= 2)
1334 align = 1;
1335 else
1336 align = 0;
1337 }
1338
1339 bss_alloc (symbolP, size, align);
1340 return symbolP;
1341}
1342
704209c0 1343static void
a6c24e68
NC
1344pe_lcomm (int needs_align)
1345{
1346 s_comm_internal (needs_align * 2, pe_lcomm_internal);
1347}
704209c0 1348#endif
a6c24e68 1349
29b0f896
AM
1350const pseudo_typeS md_pseudo_table[] =
1351{
1352#if !defined(OBJ_AOUT) && !defined(USE_ALIGN_PTWO)
1353 {"align", s_align_bytes, 0},
1354#else
1355 {"align", s_align_ptwo, 0},
1356#endif
1357 {"arch", set_cpu_arch, 0},
1358#ifndef I386COFF
1359 {"bss", s_bss, 0},
a6c24e68
NC
1360#else
1361 {"lcomm", pe_lcomm, 1},
29b0f896
AM
1362#endif
1363 {"ffloat", float_cons, 'f'},
1364 {"dfloat", float_cons, 'd'},
1365 {"tfloat", float_cons, 'x'},
1366 {"value", cons, 2},
d182319b 1367 {"slong", signed_cons, 4},
29b0f896
AM
1368 {"noopt", s_ignore, 0},
1369 {"optim", s_ignore, 0},
1370 {"code16gcc", set_16bit_gcc_code_flag, CODE_16BIT},
1371 {"code16", set_code_flag, CODE_16BIT},
1372 {"code32", set_code_flag, CODE_32BIT},
da5f19a2 1373#ifdef BFD64
29b0f896 1374 {"code64", set_code_flag, CODE_64BIT},
da5f19a2 1375#endif
29b0f896
AM
1376 {"intel_syntax", set_intel_syntax, 1},
1377 {"att_syntax", set_intel_syntax, 0},
1efbbeb4
L
1378 {"intel_mnemonic", set_intel_mnemonic, 1},
1379 {"att_mnemonic", set_intel_mnemonic, 0},
db51cc60
L
1380 {"allow_index_reg", set_allow_index_reg, 1},
1381 {"disallow_index_reg", set_allow_index_reg, 0},
7bab8ab5
JB
1382 {"sse_check", set_check, 0},
1383 {"operand_check", set_check, 1},
3b22753a
L
1384#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
1385 {"largecomm", handle_large_common, 0},
07a53e5c 1386#else
68d20676 1387 {"file", dwarf2_directive_file, 0},
07a53e5c
RH
1388 {"loc", dwarf2_directive_loc, 0},
1389 {"loc_mark_labels", dwarf2_directive_loc_mark_labels, 0},
3b22753a 1390#endif
6482c264
NC
1391#ifdef TE_PE
1392 {"secrel32", pe_directive_secrel, 0},
1393#endif
29b0f896
AM
1394 {0, 0, 0}
1395};
1396
1397/* For interface with expression (). */
1398extern char *input_line_pointer;
1399
1400/* Hash table for instruction mnemonic lookup. */
629310ab 1401static htab_t op_hash;
29b0f896
AM
1402
1403/* Hash table for register lookup. */
629310ab 1404static htab_t reg_hash;
29b0f896 1405\f
ce8a8b2f
AM
1406 /* Various efficient no-op patterns for aligning code labels.
1407 Note: Don't try to assemble the instructions in the comments.
1408 0L and 0w are not legal. */
62a02d25
L
1409static const unsigned char f32_1[] =
1410 {0x90}; /* nop */
1411static const unsigned char f32_2[] =
1412 {0x66,0x90}; /* xchg %ax,%ax */
1413static const unsigned char f32_3[] =
1414 {0x8d,0x76,0x00}; /* leal 0(%esi),%esi */
1415static const unsigned char f32_4[] =
1416 {0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
62a02d25
L
1417static const unsigned char f32_6[] =
1418 {0x8d,0xb6,0x00,0x00,0x00,0x00}; /* leal 0L(%esi),%esi */
1419static const unsigned char f32_7[] =
1420 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
62a02d25 1421static const unsigned char f16_3[] =
3ae729d5 1422 {0x8d,0x74,0x00}; /* lea 0(%si),%si */
62a02d25 1423static const unsigned char f16_4[] =
3ae729d5
L
1424 {0x8d,0xb4,0x00,0x00}; /* lea 0W(%si),%si */
1425static const unsigned char jump_disp8[] =
1426 {0xeb}; /* jmp disp8 */
1427static const unsigned char jump32_disp32[] =
1428 {0xe9}; /* jmp disp32 */
1429static const unsigned char jump16_disp32[] =
1430 {0x66,0xe9}; /* jmp disp32 */
62a02d25
L
1431/* 32-bit NOPs patterns. */
1432static const unsigned char *const f32_patt[] = {
3ae729d5 1433 f32_1, f32_2, f32_3, f32_4, NULL, f32_6, f32_7
62a02d25
L
1434};
1435/* 16-bit NOPs patterns. */
1436static const unsigned char *const f16_patt[] = {
3ae729d5 1437 f32_1, f32_2, f16_3, f16_4
62a02d25
L
1438};
1439/* nopl (%[re]ax) */
1440static const unsigned char alt_3[] =
1441 {0x0f,0x1f,0x00};
1442/* nopl 0(%[re]ax) */
1443static const unsigned char alt_4[] =
1444 {0x0f,0x1f,0x40,0x00};
1445/* nopl 0(%[re]ax,%[re]ax,1) */
1446static const unsigned char alt_5[] =
1447 {0x0f,0x1f,0x44,0x00,0x00};
1448/* nopw 0(%[re]ax,%[re]ax,1) */
1449static const unsigned char alt_6[] =
1450 {0x66,0x0f,0x1f,0x44,0x00,0x00};
1451/* nopl 0L(%[re]ax) */
1452static const unsigned char alt_7[] =
1453 {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
1454/* nopl 0L(%[re]ax,%[re]ax,1) */
1455static const unsigned char alt_8[] =
1456 {0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1457/* nopw 0L(%[re]ax,%[re]ax,1) */
1458static const unsigned char alt_9[] =
1459 {0x66,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1460/* nopw %cs:0L(%[re]ax,%[re]ax,1) */
1461static const unsigned char alt_10[] =
1462 {0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
3ae729d5
L
1463/* data16 nopw %cs:0L(%eax,%eax,1) */
1464static const unsigned char alt_11[] =
1465 {0x66,0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
62a02d25
L
1466/* 32-bit and 64-bit NOPs patterns. */
1467static const unsigned char *const alt_patt[] = {
1468 f32_1, f32_2, alt_3, alt_4, alt_5, alt_6, alt_7, alt_8,
3ae729d5 1469 alt_9, alt_10, alt_11
62a02d25
L
1470};
1471
1472/* Genenerate COUNT bytes of NOPs to WHERE from PATT with the maximum
1473 size of a single NOP instruction MAX_SINGLE_NOP_SIZE. */
1474
1475static void
1476i386_output_nops (char *where, const unsigned char *const *patt,
1477 int count, int max_single_nop_size)
1478
1479{
3ae729d5
L
1480 /* Place the longer NOP first. */
1481 int last;
1482 int offset;
3076e594
NC
1483 const unsigned char *nops;
1484
1485 if (max_single_nop_size < 1)
1486 {
1487 as_fatal (_("i386_output_nops called to generate nops of at most %d bytes!"),
1488 max_single_nop_size);
1489 return;
1490 }
1491
1492 nops = patt[max_single_nop_size - 1];
3ae729d5
L
1493
1494 /* Use the smaller one if the requsted one isn't available. */
1495 if (nops == NULL)
62a02d25 1496 {
3ae729d5
L
1497 max_single_nop_size--;
1498 nops = patt[max_single_nop_size - 1];
62a02d25
L
1499 }
1500
3ae729d5
L
1501 last = count % max_single_nop_size;
1502
1503 count -= last;
1504 for (offset = 0; offset < count; offset += max_single_nop_size)
1505 memcpy (where + offset, nops, max_single_nop_size);
1506
1507 if (last)
1508 {
1509 nops = patt[last - 1];
1510 if (nops == NULL)
1511 {
1512 /* Use the smaller one plus one-byte NOP if the needed one
1513 isn't available. */
1514 last--;
1515 nops = patt[last - 1];
1516 memcpy (where + offset, nops, last);
1517 where[offset + last] = *patt[0];
1518 }
1519 else
1520 memcpy (where + offset, nops, last);
1521 }
62a02d25
L
1522}
1523
3ae729d5
L
1524static INLINE int
1525fits_in_imm7 (offsetT num)
1526{
1527 return (num & 0x7f) == num;
1528}
1529
1530static INLINE int
1531fits_in_imm31 (offsetT num)
1532{
1533 return (num & 0x7fffffff) == num;
1534}
62a02d25
L
1535
1536/* Genenerate COUNT bytes of NOPs to WHERE with the maximum size of a
1537 single NOP instruction LIMIT. */
1538
1539void
3ae729d5 1540i386_generate_nops (fragS *fragP, char *where, offsetT count, int limit)
62a02d25 1541{
3ae729d5 1542 const unsigned char *const *patt = NULL;
62a02d25 1543 int max_single_nop_size;
3ae729d5
L
1544 /* Maximum number of NOPs before switching to jump over NOPs. */
1545 int max_number_of_nops;
62a02d25 1546
3ae729d5 1547 switch (fragP->fr_type)
62a02d25 1548 {
3ae729d5
L
1549 case rs_fill_nop:
1550 case rs_align_code:
1551 break;
e379e5f3
L
1552 case rs_machine_dependent:
1553 /* Allow NOP padding for jumps and calls. */
1554 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
1555 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
1556 break;
1557 /* Fall through. */
3ae729d5 1558 default:
62a02d25
L
1559 return;
1560 }
1561
ccc9c027
L
1562 /* We need to decide which NOP sequence to use for 32bit and
1563 64bit. When -mtune= is used:
4eed87de 1564
76bc74dc
L
1565 1. For PROCESSOR_I386, PROCESSOR_I486, PROCESSOR_PENTIUM and
1566 PROCESSOR_GENERIC32, f32_patt will be used.
80b8656c
L
1567 2. For the rest, alt_patt will be used.
1568
1569 When -mtune= isn't used, alt_patt will be used if
22109423 1570 cpu_arch_isa_flags has CpuNop. Otherwise, f32_patt will
76bc74dc 1571 be used.
ccc9c027
L
1572
1573 When -march= or .arch is used, we can't use anything beyond
1574 cpu_arch_isa_flags. */
1575
1576 if (flag_code == CODE_16BIT)
1577 {
3ae729d5
L
1578 patt = f16_patt;
1579 max_single_nop_size = sizeof (f16_patt) / sizeof (f16_patt[0]);
1580 /* Limit number of NOPs to 2 in 16-bit mode. */
1581 max_number_of_nops = 2;
252b5132 1582 }
33fef721 1583 else
ccc9c027 1584 {
fbf3f584 1585 if (fragP->tc_frag_data.isa == PROCESSOR_UNKNOWN)
ccc9c027
L
1586 {
1587 /* PROCESSOR_UNKNOWN means that all ISAs may be used. */
1588 switch (cpu_arch_tune)
1589 {
1590 case PROCESSOR_UNKNOWN:
1591 /* We use cpu_arch_isa_flags to check if we SHOULD
22109423
L
1592 optimize with nops. */
1593 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1594 patt = alt_patt;
ccc9c027
L
1595 else
1596 patt = f32_patt;
1597 break;
ccc9c027
L
1598 case PROCESSOR_PENTIUM4:
1599 case PROCESSOR_NOCONA:
ef05d495 1600 case PROCESSOR_CORE:
76bc74dc 1601 case PROCESSOR_CORE2:
bd5295b2 1602 case PROCESSOR_COREI7:
3632d14b 1603 case PROCESSOR_L1OM:
7a9068fe 1604 case PROCESSOR_K1OM:
76bc74dc 1605 case PROCESSOR_GENERIC64:
ccc9c027
L
1606 case PROCESSOR_K6:
1607 case PROCESSOR_ATHLON:
1608 case PROCESSOR_K8:
4eed87de 1609 case PROCESSOR_AMDFAM10:
8aedb9fe 1610 case PROCESSOR_BD:
029f3522 1611 case PROCESSOR_ZNVER:
7b458c12 1612 case PROCESSOR_BT:
80b8656c 1613 patt = alt_patt;
ccc9c027 1614 break;
76bc74dc 1615 case PROCESSOR_I386:
ccc9c027
L
1616 case PROCESSOR_I486:
1617 case PROCESSOR_PENTIUM:
2dde1948 1618 case PROCESSOR_PENTIUMPRO:
81486035 1619 case PROCESSOR_IAMCU:
ccc9c027
L
1620 case PROCESSOR_GENERIC32:
1621 patt = f32_patt;
1622 break;
4eed87de 1623 }
ccc9c027
L
1624 }
1625 else
1626 {
fbf3f584 1627 switch (fragP->tc_frag_data.tune)
ccc9c027
L
1628 {
1629 case PROCESSOR_UNKNOWN:
e6a14101 1630 /* When cpu_arch_isa is set, cpu_arch_tune shouldn't be
ccc9c027
L
1631 PROCESSOR_UNKNOWN. */
1632 abort ();
1633 break;
1634
76bc74dc 1635 case PROCESSOR_I386:
ccc9c027
L
1636 case PROCESSOR_I486:
1637 case PROCESSOR_PENTIUM:
81486035 1638 case PROCESSOR_IAMCU:
ccc9c027
L
1639 case PROCESSOR_K6:
1640 case PROCESSOR_ATHLON:
1641 case PROCESSOR_K8:
4eed87de 1642 case PROCESSOR_AMDFAM10:
8aedb9fe 1643 case PROCESSOR_BD:
029f3522 1644 case PROCESSOR_ZNVER:
7b458c12 1645 case PROCESSOR_BT:
ccc9c027
L
1646 case PROCESSOR_GENERIC32:
1647 /* We use cpu_arch_isa_flags to check if we CAN optimize
22109423
L
1648 with nops. */
1649 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1650 patt = alt_patt;
ccc9c027
L
1651 else
1652 patt = f32_patt;
1653 break;
76bc74dc
L
1654 case PROCESSOR_PENTIUMPRO:
1655 case PROCESSOR_PENTIUM4:
1656 case PROCESSOR_NOCONA:
1657 case PROCESSOR_CORE:
ef05d495 1658 case PROCESSOR_CORE2:
bd5295b2 1659 case PROCESSOR_COREI7:
3632d14b 1660 case PROCESSOR_L1OM:
7a9068fe 1661 case PROCESSOR_K1OM:
22109423 1662 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1663 patt = alt_patt;
ccc9c027
L
1664 else
1665 patt = f32_patt;
1666 break;
1667 case PROCESSOR_GENERIC64:
80b8656c 1668 patt = alt_patt;
ccc9c027 1669 break;
4eed87de 1670 }
ccc9c027
L
1671 }
1672
76bc74dc
L
1673 if (patt == f32_patt)
1674 {
3ae729d5
L
1675 max_single_nop_size = sizeof (f32_patt) / sizeof (f32_patt[0]);
1676 /* Limit number of NOPs to 2 for older processors. */
1677 max_number_of_nops = 2;
76bc74dc
L
1678 }
1679 else
1680 {
3ae729d5
L
1681 max_single_nop_size = sizeof (alt_patt) / sizeof (alt_patt[0]);
1682 /* Limit number of NOPs to 7 for newer processors. */
1683 max_number_of_nops = 7;
1684 }
1685 }
1686
1687 if (limit == 0)
1688 limit = max_single_nop_size;
1689
1690 if (fragP->fr_type == rs_fill_nop)
1691 {
1692 /* Output NOPs for .nop directive. */
1693 if (limit > max_single_nop_size)
1694 {
1695 as_bad_where (fragP->fr_file, fragP->fr_line,
1696 _("invalid single nop size: %d "
1697 "(expect within [0, %d])"),
1698 limit, max_single_nop_size);
1699 return;
1700 }
1701 }
e379e5f3 1702 else if (fragP->fr_type != rs_machine_dependent)
3ae729d5
L
1703 fragP->fr_var = count;
1704
1705 if ((count / max_single_nop_size) > max_number_of_nops)
1706 {
1707 /* Generate jump over NOPs. */
1708 offsetT disp = count - 2;
1709 if (fits_in_imm7 (disp))
1710 {
1711 /* Use "jmp disp8" if possible. */
1712 count = disp;
1713 where[0] = jump_disp8[0];
1714 where[1] = count;
1715 where += 2;
1716 }
1717 else
1718 {
1719 unsigned int size_of_jump;
1720
1721 if (flag_code == CODE_16BIT)
1722 {
1723 where[0] = jump16_disp32[0];
1724 where[1] = jump16_disp32[1];
1725 size_of_jump = 2;
1726 }
1727 else
1728 {
1729 where[0] = jump32_disp32[0];
1730 size_of_jump = 1;
1731 }
1732
1733 count -= size_of_jump + 4;
1734 if (!fits_in_imm31 (count))
1735 {
1736 as_bad_where (fragP->fr_file, fragP->fr_line,
1737 _("jump over nop padding out of range"));
1738 return;
1739 }
1740
1741 md_number_to_chars (where + size_of_jump, count, 4);
1742 where += size_of_jump + 4;
76bc74dc 1743 }
ccc9c027 1744 }
3ae729d5
L
1745
1746 /* Generate multiple NOPs. */
1747 i386_output_nops (where, patt, count, limit);
252b5132
RH
1748}
1749
c6fb90c8 1750static INLINE int
0dfbf9d7 1751operand_type_all_zero (const union i386_operand_type *x)
40fb9820 1752{
0dfbf9d7 1753 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1754 {
1755 case 3:
0dfbf9d7 1756 if (x->array[2])
c6fb90c8 1757 return 0;
1a0670f3 1758 /* Fall through. */
c6fb90c8 1759 case 2:
0dfbf9d7 1760 if (x->array[1])
c6fb90c8 1761 return 0;
1a0670f3 1762 /* Fall through. */
c6fb90c8 1763 case 1:
0dfbf9d7 1764 return !x->array[0];
c6fb90c8
L
1765 default:
1766 abort ();
1767 }
40fb9820
L
1768}
1769
c6fb90c8 1770static INLINE void
0dfbf9d7 1771operand_type_set (union i386_operand_type *x, unsigned int v)
40fb9820 1772{
0dfbf9d7 1773 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1774 {
1775 case 3:
0dfbf9d7 1776 x->array[2] = v;
1a0670f3 1777 /* Fall through. */
c6fb90c8 1778 case 2:
0dfbf9d7 1779 x->array[1] = v;
1a0670f3 1780 /* Fall through. */
c6fb90c8 1781 case 1:
0dfbf9d7 1782 x->array[0] = v;
1a0670f3 1783 /* Fall through. */
c6fb90c8
L
1784 break;
1785 default:
1786 abort ();
1787 }
bab6aec1
JB
1788
1789 x->bitfield.class = ClassNone;
75e5731b 1790 x->bitfield.instance = InstanceNone;
c6fb90c8 1791}
40fb9820 1792
c6fb90c8 1793static INLINE int
0dfbf9d7
L
1794operand_type_equal (const union i386_operand_type *x,
1795 const union i386_operand_type *y)
c6fb90c8 1796{
0dfbf9d7 1797 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1798 {
1799 case 3:
0dfbf9d7 1800 if (x->array[2] != y->array[2])
c6fb90c8 1801 return 0;
1a0670f3 1802 /* Fall through. */
c6fb90c8 1803 case 2:
0dfbf9d7 1804 if (x->array[1] != y->array[1])
c6fb90c8 1805 return 0;
1a0670f3 1806 /* Fall through. */
c6fb90c8 1807 case 1:
0dfbf9d7 1808 return x->array[0] == y->array[0];
c6fb90c8
L
1809 break;
1810 default:
1811 abort ();
1812 }
1813}
40fb9820 1814
0dfbf9d7
L
1815static INLINE int
1816cpu_flags_all_zero (const union i386_cpu_flags *x)
1817{
1818 switch (ARRAY_SIZE(x->array))
1819 {
53467f57
IT
1820 case 4:
1821 if (x->array[3])
1822 return 0;
1823 /* Fall through. */
0dfbf9d7
L
1824 case 3:
1825 if (x->array[2])
1826 return 0;
1a0670f3 1827 /* Fall through. */
0dfbf9d7
L
1828 case 2:
1829 if (x->array[1])
1830 return 0;
1a0670f3 1831 /* Fall through. */
0dfbf9d7
L
1832 case 1:
1833 return !x->array[0];
1834 default:
1835 abort ();
1836 }
1837}
1838
0dfbf9d7
L
1839static INLINE int
1840cpu_flags_equal (const union i386_cpu_flags *x,
1841 const union i386_cpu_flags *y)
1842{
1843 switch (ARRAY_SIZE(x->array))
1844 {
53467f57
IT
1845 case 4:
1846 if (x->array[3] != y->array[3])
1847 return 0;
1848 /* Fall through. */
0dfbf9d7
L
1849 case 3:
1850 if (x->array[2] != y->array[2])
1851 return 0;
1a0670f3 1852 /* Fall through. */
0dfbf9d7
L
1853 case 2:
1854 if (x->array[1] != y->array[1])
1855 return 0;
1a0670f3 1856 /* Fall through. */
0dfbf9d7
L
1857 case 1:
1858 return x->array[0] == y->array[0];
1859 break;
1860 default:
1861 abort ();
1862 }
1863}
c6fb90c8
L
1864
1865static INLINE int
1866cpu_flags_check_cpu64 (i386_cpu_flags f)
1867{
1868 return !((flag_code == CODE_64BIT && f.bitfield.cpuno64)
1869 || (flag_code != CODE_64BIT && f.bitfield.cpu64));
40fb9820
L
1870}
1871
c6fb90c8
L
1872static INLINE i386_cpu_flags
1873cpu_flags_and (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1874{
c6fb90c8
L
1875 switch (ARRAY_SIZE (x.array))
1876 {
53467f57
IT
1877 case 4:
1878 x.array [3] &= y.array [3];
1879 /* Fall through. */
c6fb90c8
L
1880 case 3:
1881 x.array [2] &= y.array [2];
1a0670f3 1882 /* Fall through. */
c6fb90c8
L
1883 case 2:
1884 x.array [1] &= y.array [1];
1a0670f3 1885 /* Fall through. */
c6fb90c8
L
1886 case 1:
1887 x.array [0] &= y.array [0];
1888 break;
1889 default:
1890 abort ();
1891 }
1892 return x;
1893}
40fb9820 1894
c6fb90c8
L
1895static INLINE i386_cpu_flags
1896cpu_flags_or (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1897{
c6fb90c8 1898 switch (ARRAY_SIZE (x.array))
40fb9820 1899 {
53467f57
IT
1900 case 4:
1901 x.array [3] |= y.array [3];
1902 /* Fall through. */
c6fb90c8
L
1903 case 3:
1904 x.array [2] |= y.array [2];
1a0670f3 1905 /* Fall through. */
c6fb90c8
L
1906 case 2:
1907 x.array [1] |= y.array [1];
1a0670f3 1908 /* Fall through. */
c6fb90c8
L
1909 case 1:
1910 x.array [0] |= y.array [0];
40fb9820
L
1911 break;
1912 default:
1913 abort ();
1914 }
40fb9820
L
1915 return x;
1916}
1917
309d3373
JB
1918static INLINE i386_cpu_flags
1919cpu_flags_and_not (i386_cpu_flags x, i386_cpu_flags y)
1920{
1921 switch (ARRAY_SIZE (x.array))
1922 {
53467f57
IT
1923 case 4:
1924 x.array [3] &= ~y.array [3];
1925 /* Fall through. */
309d3373
JB
1926 case 3:
1927 x.array [2] &= ~y.array [2];
1a0670f3 1928 /* Fall through. */
309d3373
JB
1929 case 2:
1930 x.array [1] &= ~y.array [1];
1a0670f3 1931 /* Fall through. */
309d3373
JB
1932 case 1:
1933 x.array [0] &= ~y.array [0];
1934 break;
1935 default:
1936 abort ();
1937 }
1938 return x;
1939}
1940
6c0946d0
JB
1941static const i386_cpu_flags avx512 = CPU_ANY_AVX512F_FLAGS;
1942
c0f3af97
L
1943#define CPU_FLAGS_ARCH_MATCH 0x1
1944#define CPU_FLAGS_64BIT_MATCH 0x2
1945
c0f3af97 1946#define CPU_FLAGS_PERFECT_MATCH \
db12e14e 1947 (CPU_FLAGS_ARCH_MATCH | CPU_FLAGS_64BIT_MATCH)
c0f3af97
L
1948
1949/* Return CPU flags match bits. */
3629bb00 1950
40fb9820 1951static int
d3ce72d0 1952cpu_flags_match (const insn_template *t)
40fb9820 1953{
c0f3af97
L
1954 i386_cpu_flags x = t->cpu_flags;
1955 int match = cpu_flags_check_cpu64 (x) ? CPU_FLAGS_64BIT_MATCH : 0;
40fb9820
L
1956
1957 x.bitfield.cpu64 = 0;
1958 x.bitfield.cpuno64 = 0;
1959
0dfbf9d7 1960 if (cpu_flags_all_zero (&x))
c0f3af97
L
1961 {
1962 /* This instruction is available on all archs. */
db12e14e 1963 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 1964 }
3629bb00
L
1965 else
1966 {
c0f3af97 1967 /* This instruction is available only on some archs. */
3629bb00
L
1968 i386_cpu_flags cpu = cpu_arch_flags;
1969
ab592e75
JB
1970 /* AVX512VL is no standalone feature - match it and then strip it. */
1971 if (x.bitfield.cpuavx512vl && !cpu.bitfield.cpuavx512vl)
1972 return match;
1973 x.bitfield.cpuavx512vl = 0;
1974
3629bb00 1975 cpu = cpu_flags_and (x, cpu);
c0f3af97
L
1976 if (!cpu_flags_all_zero (&cpu))
1977 {
57392598 1978 if (x.bitfield.cpuavx)
a5ff0eb2 1979 {
929f69fa 1980 /* We need to check a few extra flags with AVX. */
b9d49817 1981 if (cpu.bitfield.cpuavx
40d231b4
JB
1982 && (!t->opcode_modifier.sse2avx
1983 || (sse2avx && !i.prefix[DATA_PREFIX]))
b9d49817 1984 && (!x.bitfield.cpuaes || cpu.bitfield.cpuaes)
929f69fa 1985 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
b9d49817
JB
1986 && (!x.bitfield.cpupclmul || cpu.bitfield.cpupclmul))
1987 match |= CPU_FLAGS_ARCH_MATCH;
a5ff0eb2 1988 }
929f69fa
JB
1989 else if (x.bitfield.cpuavx512f)
1990 {
1991 /* We need to check a few extra flags with AVX512F. */
1992 if (cpu.bitfield.cpuavx512f
1993 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
1994 && (!x.bitfield.cpuvaes || cpu.bitfield.cpuvaes)
1995 && (!x.bitfield.cpuvpclmulqdq || cpu.bitfield.cpuvpclmulqdq))
1996 match |= CPU_FLAGS_ARCH_MATCH;
1997 }
a5ff0eb2 1998 else
db12e14e 1999 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 2000 }
3629bb00 2001 }
c0f3af97 2002 return match;
40fb9820
L
2003}
2004
c6fb90c8
L
2005static INLINE i386_operand_type
2006operand_type_and (i386_operand_type x, i386_operand_type y)
40fb9820 2007{
bab6aec1
JB
2008 if (x.bitfield.class != y.bitfield.class)
2009 x.bitfield.class = ClassNone;
75e5731b
JB
2010 if (x.bitfield.instance != y.bitfield.instance)
2011 x.bitfield.instance = InstanceNone;
bab6aec1 2012
c6fb90c8
L
2013 switch (ARRAY_SIZE (x.array))
2014 {
2015 case 3:
2016 x.array [2] &= y.array [2];
1a0670f3 2017 /* Fall through. */
c6fb90c8
L
2018 case 2:
2019 x.array [1] &= y.array [1];
1a0670f3 2020 /* Fall through. */
c6fb90c8
L
2021 case 1:
2022 x.array [0] &= y.array [0];
2023 break;
2024 default:
2025 abort ();
2026 }
2027 return x;
40fb9820
L
2028}
2029
73053c1f
JB
2030static INLINE i386_operand_type
2031operand_type_and_not (i386_operand_type x, i386_operand_type y)
2032{
bab6aec1 2033 gas_assert (y.bitfield.class == ClassNone);
75e5731b 2034 gas_assert (y.bitfield.instance == InstanceNone);
bab6aec1 2035
73053c1f
JB
2036 switch (ARRAY_SIZE (x.array))
2037 {
2038 case 3:
2039 x.array [2] &= ~y.array [2];
2040 /* Fall through. */
2041 case 2:
2042 x.array [1] &= ~y.array [1];
2043 /* Fall through. */
2044 case 1:
2045 x.array [0] &= ~y.array [0];
2046 break;
2047 default:
2048 abort ();
2049 }
2050 return x;
2051}
2052
c6fb90c8
L
2053static INLINE i386_operand_type
2054operand_type_or (i386_operand_type x, i386_operand_type y)
40fb9820 2055{
bab6aec1
JB
2056 gas_assert (x.bitfield.class == ClassNone ||
2057 y.bitfield.class == ClassNone ||
2058 x.bitfield.class == y.bitfield.class);
75e5731b
JB
2059 gas_assert (x.bitfield.instance == InstanceNone ||
2060 y.bitfield.instance == InstanceNone ||
2061 x.bitfield.instance == y.bitfield.instance);
bab6aec1 2062
c6fb90c8 2063 switch (ARRAY_SIZE (x.array))
40fb9820 2064 {
c6fb90c8
L
2065 case 3:
2066 x.array [2] |= y.array [2];
1a0670f3 2067 /* Fall through. */
c6fb90c8
L
2068 case 2:
2069 x.array [1] |= y.array [1];
1a0670f3 2070 /* Fall through. */
c6fb90c8
L
2071 case 1:
2072 x.array [0] |= y.array [0];
40fb9820
L
2073 break;
2074 default:
2075 abort ();
2076 }
c6fb90c8
L
2077 return x;
2078}
40fb9820 2079
c6fb90c8
L
2080static INLINE i386_operand_type
2081operand_type_xor (i386_operand_type x, i386_operand_type y)
2082{
bab6aec1 2083 gas_assert (y.bitfield.class == ClassNone);
75e5731b 2084 gas_assert (y.bitfield.instance == InstanceNone);
bab6aec1 2085
c6fb90c8
L
2086 switch (ARRAY_SIZE (x.array))
2087 {
2088 case 3:
2089 x.array [2] ^= y.array [2];
1a0670f3 2090 /* Fall through. */
c6fb90c8
L
2091 case 2:
2092 x.array [1] ^= y.array [1];
1a0670f3 2093 /* Fall through. */
c6fb90c8
L
2094 case 1:
2095 x.array [0] ^= y.array [0];
2096 break;
2097 default:
2098 abort ();
2099 }
40fb9820
L
2100 return x;
2101}
2102
40fb9820
L
2103static const i386_operand_type disp16 = OPERAND_TYPE_DISP16;
2104static const i386_operand_type disp32 = OPERAND_TYPE_DISP32;
2105static const i386_operand_type disp32s = OPERAND_TYPE_DISP32S;
2106static const i386_operand_type disp16_32 = OPERAND_TYPE_DISP16_32;
bab6aec1
JB
2107static const i386_operand_type anydisp = OPERAND_TYPE_ANYDISP;
2108static const i386_operand_type anyimm = OPERAND_TYPE_ANYIMM;
40fb9820 2109static const i386_operand_type regxmm = OPERAND_TYPE_REGXMM;
43234a1e 2110static const i386_operand_type regmask = OPERAND_TYPE_REGMASK;
40fb9820
L
2111static const i386_operand_type imm8 = OPERAND_TYPE_IMM8;
2112static const i386_operand_type imm8s = OPERAND_TYPE_IMM8S;
2113static const i386_operand_type imm16 = OPERAND_TYPE_IMM16;
2114static const i386_operand_type imm32 = OPERAND_TYPE_IMM32;
2115static const i386_operand_type imm32s = OPERAND_TYPE_IMM32S;
2116static const i386_operand_type imm64 = OPERAND_TYPE_IMM64;
2117static const i386_operand_type imm16_32 = OPERAND_TYPE_IMM16_32;
2118static const i386_operand_type imm16_32s = OPERAND_TYPE_IMM16_32S;
2119static const i386_operand_type imm16_32_32s = OPERAND_TYPE_IMM16_32_32S;
2120
2121enum operand_type
2122{
2123 reg,
40fb9820
L
2124 imm,
2125 disp,
2126 anymem
2127};
2128
c6fb90c8 2129static INLINE int
40fb9820
L
2130operand_type_check (i386_operand_type t, enum operand_type c)
2131{
2132 switch (c)
2133 {
2134 case reg:
bab6aec1 2135 return t.bitfield.class == Reg;
40fb9820 2136
40fb9820
L
2137 case imm:
2138 return (t.bitfield.imm8
2139 || t.bitfield.imm8s
2140 || t.bitfield.imm16
2141 || t.bitfield.imm32
2142 || t.bitfield.imm32s
2143 || t.bitfield.imm64);
2144
2145 case disp:
2146 return (t.bitfield.disp8
2147 || t.bitfield.disp16
2148 || t.bitfield.disp32
2149 || t.bitfield.disp32s
2150 || t.bitfield.disp64);
2151
2152 case anymem:
2153 return (t.bitfield.disp8
2154 || t.bitfield.disp16
2155 || t.bitfield.disp32
2156 || t.bitfield.disp32s
2157 || t.bitfield.disp64
2158 || t.bitfield.baseindex);
2159
2160 default:
2161 abort ();
2162 }
2cfe26b6
AM
2163
2164 return 0;
40fb9820
L
2165}
2166
7a54636a
L
2167/* Return 1 if there is no conflict in 8bit/16bit/32bit/64bit/80bit size
2168 between operand GIVEN and opeand WANTED for instruction template T. */
5c07affc
L
2169
2170static INLINE int
7a54636a
L
2171match_operand_size (const insn_template *t, unsigned int wanted,
2172 unsigned int given)
5c07affc 2173{
3ac21baa
JB
2174 return !((i.types[given].bitfield.byte
2175 && !t->operand_types[wanted].bitfield.byte)
2176 || (i.types[given].bitfield.word
2177 && !t->operand_types[wanted].bitfield.word)
2178 || (i.types[given].bitfield.dword
2179 && !t->operand_types[wanted].bitfield.dword)
2180 || (i.types[given].bitfield.qword
2181 && !t->operand_types[wanted].bitfield.qword)
2182 || (i.types[given].bitfield.tbyte
2183 && !t->operand_types[wanted].bitfield.tbyte));
5c07affc
L
2184}
2185
dd40ce22
L
2186/* Return 1 if there is no conflict in SIMD register between operand
2187 GIVEN and opeand WANTED for instruction template T. */
1b54b8d7
JB
2188
2189static INLINE int
dd40ce22
L
2190match_simd_size (const insn_template *t, unsigned int wanted,
2191 unsigned int given)
1b54b8d7 2192{
3ac21baa
JB
2193 return !((i.types[given].bitfield.xmmword
2194 && !t->operand_types[wanted].bitfield.xmmword)
2195 || (i.types[given].bitfield.ymmword
2196 && !t->operand_types[wanted].bitfield.ymmword)
2197 || (i.types[given].bitfield.zmmword
260cd341
LC
2198 && !t->operand_types[wanted].bitfield.zmmword)
2199 || (i.types[given].bitfield.tmmword
2200 && !t->operand_types[wanted].bitfield.tmmword));
1b54b8d7
JB
2201}
2202
7a54636a
L
2203/* Return 1 if there is no conflict in any size between operand GIVEN
2204 and opeand WANTED for instruction template T. */
5c07affc
L
2205
2206static INLINE int
dd40ce22
L
2207match_mem_size (const insn_template *t, unsigned int wanted,
2208 unsigned int given)
5c07affc 2209{
7a54636a 2210 return (match_operand_size (t, wanted, given)
3ac21baa 2211 && !((i.types[given].bitfield.unspecified
af508cb9 2212 && !i.broadcast
3ac21baa
JB
2213 && !t->operand_types[wanted].bitfield.unspecified)
2214 || (i.types[given].bitfield.fword
2215 && !t->operand_types[wanted].bitfield.fword)
1b54b8d7
JB
2216 /* For scalar opcode templates to allow register and memory
2217 operands at the same time, some special casing is needed
d6793fa1
JB
2218 here. Also for v{,p}broadcast*, {,v}pmov{s,z}*, and
2219 down-conversion vpmov*. */
3528c362 2220 || ((t->operand_types[wanted].bitfield.class == RegSIMD
bc49bfd8
JB
2221 && t->operand_types[wanted].bitfield.byte
2222 + t->operand_types[wanted].bitfield.word
2223 + t->operand_types[wanted].bitfield.dword
2224 + t->operand_types[wanted].bitfield.qword
2225 > !!t->opcode_modifier.broadcast)
3ac21baa
JB
2226 ? (i.types[given].bitfield.xmmword
2227 || i.types[given].bitfield.ymmword
2228 || i.types[given].bitfield.zmmword)
2229 : !match_simd_size(t, wanted, given))));
5c07affc
L
2230}
2231
3ac21baa
JB
2232/* Return value has MATCH_STRAIGHT set if there is no size conflict on any
2233 operands for instruction template T, and it has MATCH_REVERSE set if there
2234 is no size conflict on any operands for the template with operands reversed
2235 (and the template allows for reversing in the first place). */
5c07affc 2236
3ac21baa
JB
2237#define MATCH_STRAIGHT 1
2238#define MATCH_REVERSE 2
2239
2240static INLINE unsigned int
d3ce72d0 2241operand_size_match (const insn_template *t)
5c07affc 2242{
3ac21baa 2243 unsigned int j, match = MATCH_STRAIGHT;
5c07affc 2244
0cfa3eb3 2245 /* Don't check non-absolute jump instructions. */
5c07affc 2246 if (t->opcode_modifier.jump
0cfa3eb3 2247 && t->opcode_modifier.jump != JUMP_ABSOLUTE)
5c07affc
L
2248 return match;
2249
2250 /* Check memory and accumulator operand size. */
2251 for (j = 0; j < i.operands; j++)
2252 {
3528c362
JB
2253 if (i.types[j].bitfield.class != Reg
2254 && i.types[j].bitfield.class != RegSIMD
601e8564 2255 && t->opcode_modifier.anysize)
5c07affc
L
2256 continue;
2257
bab6aec1 2258 if (t->operand_types[j].bitfield.class == Reg
7a54636a 2259 && !match_operand_size (t, j, j))
5c07affc
L
2260 {
2261 match = 0;
2262 break;
2263 }
2264
3528c362 2265 if (t->operand_types[j].bitfield.class == RegSIMD
3ac21baa 2266 && !match_simd_size (t, j, j))
1b54b8d7
JB
2267 {
2268 match = 0;
2269 break;
2270 }
2271
75e5731b 2272 if (t->operand_types[j].bitfield.instance == Accum
7a54636a 2273 && (!match_operand_size (t, j, j) || !match_simd_size (t, j, j)))
1b54b8d7
JB
2274 {
2275 match = 0;
2276 break;
2277 }
2278
c48dadc9 2279 if ((i.flags[j] & Operand_Mem) && !match_mem_size (t, j, j))
5c07affc
L
2280 {
2281 match = 0;
2282 break;
2283 }
2284 }
2285
3ac21baa 2286 if (!t->opcode_modifier.d)
891edac4 2287 {
dc1e8a47 2288 mismatch:
3ac21baa
JB
2289 if (!match)
2290 i.error = operand_size_mismatch;
2291 return match;
891edac4 2292 }
5c07affc
L
2293
2294 /* Check reverse. */
f5eb1d70 2295 gas_assert (i.operands >= 2 && i.operands <= 3);
5c07affc 2296
f5eb1d70 2297 for (j = 0; j < i.operands; j++)
5c07affc 2298 {
f5eb1d70
JB
2299 unsigned int given = i.operands - j - 1;
2300
bab6aec1 2301 if (t->operand_types[j].bitfield.class == Reg
f5eb1d70 2302 && !match_operand_size (t, j, given))
891edac4 2303 goto mismatch;
5c07affc 2304
3528c362 2305 if (t->operand_types[j].bitfield.class == RegSIMD
f5eb1d70 2306 && !match_simd_size (t, j, given))
dbbc8b7e
JB
2307 goto mismatch;
2308
75e5731b 2309 if (t->operand_types[j].bitfield.instance == Accum
f5eb1d70
JB
2310 && (!match_operand_size (t, j, given)
2311 || !match_simd_size (t, j, given)))
dbbc8b7e
JB
2312 goto mismatch;
2313
f5eb1d70 2314 if ((i.flags[given] & Operand_Mem) && !match_mem_size (t, j, given))
891edac4 2315 goto mismatch;
5c07affc
L
2316 }
2317
3ac21baa 2318 return match | MATCH_REVERSE;
5c07affc
L
2319}
2320
c6fb90c8 2321static INLINE int
40fb9820
L
2322operand_type_match (i386_operand_type overlap,
2323 i386_operand_type given)
2324{
2325 i386_operand_type temp = overlap;
2326
7d5e4556 2327 temp.bitfield.unspecified = 0;
5c07affc
L
2328 temp.bitfield.byte = 0;
2329 temp.bitfield.word = 0;
2330 temp.bitfield.dword = 0;
2331 temp.bitfield.fword = 0;
2332 temp.bitfield.qword = 0;
2333 temp.bitfield.tbyte = 0;
2334 temp.bitfield.xmmword = 0;
c0f3af97 2335 temp.bitfield.ymmword = 0;
43234a1e 2336 temp.bitfield.zmmword = 0;
260cd341 2337 temp.bitfield.tmmword = 0;
0dfbf9d7 2338 if (operand_type_all_zero (&temp))
891edac4 2339 goto mismatch;
40fb9820 2340
6f2f06be 2341 if (given.bitfield.baseindex == overlap.bitfield.baseindex)
891edac4
L
2342 return 1;
2343
dc1e8a47 2344 mismatch:
a65babc9 2345 i.error = operand_type_mismatch;
891edac4 2346 return 0;
40fb9820
L
2347}
2348
7d5e4556 2349/* If given types g0 and g1 are registers they must be of the same type
10c17abd 2350 unless the expected operand type register overlap is null.
5de4d9ef 2351 Some Intel syntax memory operand size checking also happens here. */
40fb9820 2352
c6fb90c8 2353static INLINE int
dc821c5f 2354operand_type_register_match (i386_operand_type g0,
40fb9820 2355 i386_operand_type t0,
40fb9820
L
2356 i386_operand_type g1,
2357 i386_operand_type t1)
2358{
bab6aec1 2359 if (g0.bitfield.class != Reg
3528c362 2360 && g0.bitfield.class != RegSIMD
10c17abd
JB
2361 && (!operand_type_check (g0, anymem)
2362 || g0.bitfield.unspecified
5de4d9ef
JB
2363 || (t0.bitfield.class != Reg
2364 && t0.bitfield.class != RegSIMD)))
40fb9820
L
2365 return 1;
2366
bab6aec1 2367 if (g1.bitfield.class != Reg
3528c362 2368 && g1.bitfield.class != RegSIMD
10c17abd
JB
2369 && (!operand_type_check (g1, anymem)
2370 || g1.bitfield.unspecified
5de4d9ef
JB
2371 || (t1.bitfield.class != Reg
2372 && t1.bitfield.class != RegSIMD)))
40fb9820
L
2373 return 1;
2374
dc821c5f
JB
2375 if (g0.bitfield.byte == g1.bitfield.byte
2376 && g0.bitfield.word == g1.bitfield.word
2377 && g0.bitfield.dword == g1.bitfield.dword
10c17abd
JB
2378 && g0.bitfield.qword == g1.bitfield.qword
2379 && g0.bitfield.xmmword == g1.bitfield.xmmword
2380 && g0.bitfield.ymmword == g1.bitfield.ymmword
2381 && g0.bitfield.zmmword == g1.bitfield.zmmword)
40fb9820
L
2382 return 1;
2383
dc821c5f
JB
2384 if (!(t0.bitfield.byte & t1.bitfield.byte)
2385 && !(t0.bitfield.word & t1.bitfield.word)
2386 && !(t0.bitfield.dword & t1.bitfield.dword)
10c17abd
JB
2387 && !(t0.bitfield.qword & t1.bitfield.qword)
2388 && !(t0.bitfield.xmmword & t1.bitfield.xmmword)
2389 && !(t0.bitfield.ymmword & t1.bitfield.ymmword)
2390 && !(t0.bitfield.zmmword & t1.bitfield.zmmword))
891edac4
L
2391 return 1;
2392
a65babc9 2393 i.error = register_type_mismatch;
891edac4
L
2394
2395 return 0;
40fb9820
L
2396}
2397
4c692bc7
JB
2398static INLINE unsigned int
2399register_number (const reg_entry *r)
2400{
2401 unsigned int nr = r->reg_num;
2402
2403 if (r->reg_flags & RegRex)
2404 nr += 8;
2405
200cbe0f
L
2406 if (r->reg_flags & RegVRex)
2407 nr += 16;
2408
4c692bc7
JB
2409 return nr;
2410}
2411
252b5132 2412static INLINE unsigned int
40fb9820 2413mode_from_disp_size (i386_operand_type t)
252b5132 2414{
b5014f7a 2415 if (t.bitfield.disp8)
40fb9820
L
2416 return 1;
2417 else if (t.bitfield.disp16
2418 || t.bitfield.disp32
2419 || t.bitfield.disp32s)
2420 return 2;
2421 else
2422 return 0;
252b5132
RH
2423}
2424
2425static INLINE int
65879393 2426fits_in_signed_byte (addressT num)
252b5132 2427{
65879393 2428 return num + 0x80 <= 0xff;
47926f60 2429}
252b5132
RH
2430
2431static INLINE int
65879393 2432fits_in_unsigned_byte (addressT num)
252b5132 2433{
65879393 2434 return num <= 0xff;
47926f60 2435}
252b5132
RH
2436
2437static INLINE int
65879393 2438fits_in_unsigned_word (addressT num)
252b5132 2439{
65879393 2440 return num <= 0xffff;
47926f60 2441}
252b5132
RH
2442
2443static INLINE int
65879393 2444fits_in_signed_word (addressT num)
252b5132 2445{
65879393 2446 return num + 0x8000 <= 0xffff;
47926f60 2447}
2a962e6d 2448
3e73aa7c 2449static INLINE int
65879393 2450fits_in_signed_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2451{
2452#ifndef BFD64
2453 return 1;
2454#else
65879393 2455 return num + 0x80000000 <= 0xffffffff;
3e73aa7c
JH
2456#endif
2457} /* fits_in_signed_long() */
2a962e6d 2458
3e73aa7c 2459static INLINE int
65879393 2460fits_in_unsigned_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2461{
2462#ifndef BFD64
2463 return 1;
2464#else
65879393 2465 return num <= 0xffffffff;
3e73aa7c
JH
2466#endif
2467} /* fits_in_unsigned_long() */
252b5132 2468
43234a1e 2469static INLINE int
b5014f7a 2470fits_in_disp8 (offsetT num)
43234a1e
L
2471{
2472 int shift = i.memshift;
2473 unsigned int mask;
2474
2475 if (shift == -1)
2476 abort ();
2477
2478 mask = (1 << shift) - 1;
2479
2480 /* Return 0 if NUM isn't properly aligned. */
2481 if ((num & mask))
2482 return 0;
2483
2484 /* Check if NUM will fit in 8bit after shift. */
2485 return fits_in_signed_byte (num >> shift);
2486}
2487
a683cc34
SP
2488static INLINE int
2489fits_in_imm4 (offsetT num)
2490{
2491 return (num & 0xf) == num;
2492}
2493
40fb9820 2494static i386_operand_type
e3bb37b5 2495smallest_imm_type (offsetT num)
252b5132 2496{
40fb9820 2497 i386_operand_type t;
7ab9ffdd 2498
0dfbf9d7 2499 operand_type_set (&t, 0);
40fb9820
L
2500 t.bitfield.imm64 = 1;
2501
2502 if (cpu_arch_tune != PROCESSOR_I486 && num == 1)
e413e4e9
AM
2503 {
2504 /* This code is disabled on the 486 because all the Imm1 forms
2505 in the opcode table are slower on the i486. They're the
2506 versions with the implicitly specified single-position
2507 displacement, which has another syntax if you really want to
2508 use that form. */
40fb9820
L
2509 t.bitfield.imm1 = 1;
2510 t.bitfield.imm8 = 1;
2511 t.bitfield.imm8s = 1;
2512 t.bitfield.imm16 = 1;
2513 t.bitfield.imm32 = 1;
2514 t.bitfield.imm32s = 1;
2515 }
2516 else if (fits_in_signed_byte (num))
2517 {
2518 t.bitfield.imm8 = 1;
2519 t.bitfield.imm8s = 1;
2520 t.bitfield.imm16 = 1;
2521 t.bitfield.imm32 = 1;
2522 t.bitfield.imm32s = 1;
2523 }
2524 else if (fits_in_unsigned_byte (num))
2525 {
2526 t.bitfield.imm8 = 1;
2527 t.bitfield.imm16 = 1;
2528 t.bitfield.imm32 = 1;
2529 t.bitfield.imm32s = 1;
2530 }
2531 else if (fits_in_signed_word (num) || fits_in_unsigned_word (num))
2532 {
2533 t.bitfield.imm16 = 1;
2534 t.bitfield.imm32 = 1;
2535 t.bitfield.imm32s = 1;
2536 }
2537 else if (fits_in_signed_long (num))
2538 {
2539 t.bitfield.imm32 = 1;
2540 t.bitfield.imm32s = 1;
2541 }
2542 else if (fits_in_unsigned_long (num))
2543 t.bitfield.imm32 = 1;
2544
2545 return t;
47926f60 2546}
252b5132 2547
847f7ad4 2548static offsetT
e3bb37b5 2549offset_in_range (offsetT val, int size)
847f7ad4 2550{
508866be 2551 addressT mask;
ba2adb93 2552
847f7ad4
AM
2553 switch (size)
2554 {
508866be
L
2555 case 1: mask = ((addressT) 1 << 8) - 1; break;
2556 case 2: mask = ((addressT) 1 << 16) - 1; break;
3b0ec529 2557 case 4: mask = ((addressT) 2 << 31) - 1; break;
3e73aa7c
JH
2558#ifdef BFD64
2559 case 8: mask = ((addressT) 2 << 63) - 1; break;
2560#endif
47926f60 2561 default: abort ();
847f7ad4
AM
2562 }
2563
47926f60 2564 if ((val & ~mask) != 0 && (val & ~mask) != ~mask)
847f7ad4
AM
2565 {
2566 char buf1[40], buf2[40];
2567
2568 sprint_value (buf1, val);
2569 sprint_value (buf2, val & mask);
2570 as_warn (_("%s shortened to %s"), buf1, buf2);
2571 }
2572 return val & mask;
2573}
2574
c32fa91d
L
2575enum PREFIX_GROUP
2576{
2577 PREFIX_EXIST = 0,
2578 PREFIX_LOCK,
2579 PREFIX_REP,
04ef582a 2580 PREFIX_DS,
c32fa91d
L
2581 PREFIX_OTHER
2582};
2583
2584/* Returns
2585 a. PREFIX_EXIST if attempting to add a prefix where one from the
2586 same class already exists.
2587 b. PREFIX_LOCK if lock prefix is added.
2588 c. PREFIX_REP if rep/repne prefix is added.
04ef582a
L
2589 d. PREFIX_DS if ds prefix is added.
2590 e. PREFIX_OTHER if other prefix is added.
c32fa91d
L
2591 */
2592
2593static enum PREFIX_GROUP
e3bb37b5 2594add_prefix (unsigned int prefix)
252b5132 2595{
c32fa91d 2596 enum PREFIX_GROUP ret = PREFIX_OTHER;
b1905489 2597 unsigned int q;
252b5132 2598
29b0f896
AM
2599 if (prefix >= REX_OPCODE && prefix < REX_OPCODE + 16
2600 && flag_code == CODE_64BIT)
b1905489 2601 {
161a04f6 2602 if ((i.prefix[REX_PREFIX] & prefix & REX_W)
44846f29
JB
2603 || (i.prefix[REX_PREFIX] & prefix & REX_R)
2604 || (i.prefix[REX_PREFIX] & prefix & REX_X)
2605 || (i.prefix[REX_PREFIX] & prefix & REX_B))
c32fa91d 2606 ret = PREFIX_EXIST;
b1905489
JB
2607 q = REX_PREFIX;
2608 }
3e73aa7c 2609 else
b1905489
JB
2610 {
2611 switch (prefix)
2612 {
2613 default:
2614 abort ();
2615
b1905489 2616 case DS_PREFIX_OPCODE:
04ef582a
L
2617 ret = PREFIX_DS;
2618 /* Fall through. */
2619 case CS_PREFIX_OPCODE:
b1905489
JB
2620 case ES_PREFIX_OPCODE:
2621 case FS_PREFIX_OPCODE:
2622 case GS_PREFIX_OPCODE:
2623 case SS_PREFIX_OPCODE:
2624 q = SEG_PREFIX;
2625 break;
2626
2627 case REPNE_PREFIX_OPCODE:
2628 case REPE_PREFIX_OPCODE:
c32fa91d
L
2629 q = REP_PREFIX;
2630 ret = PREFIX_REP;
2631 break;
2632
b1905489 2633 case LOCK_PREFIX_OPCODE:
c32fa91d
L
2634 q = LOCK_PREFIX;
2635 ret = PREFIX_LOCK;
b1905489
JB
2636 break;
2637
2638 case FWAIT_OPCODE:
2639 q = WAIT_PREFIX;
2640 break;
2641
2642 case ADDR_PREFIX_OPCODE:
2643 q = ADDR_PREFIX;
2644 break;
2645
2646 case DATA_PREFIX_OPCODE:
2647 q = DATA_PREFIX;
2648 break;
2649 }
2650 if (i.prefix[q] != 0)
c32fa91d 2651 ret = PREFIX_EXIST;
b1905489 2652 }
252b5132 2653
b1905489 2654 if (ret)
252b5132 2655 {
b1905489
JB
2656 if (!i.prefix[q])
2657 ++i.prefixes;
2658 i.prefix[q] |= prefix;
252b5132 2659 }
b1905489
JB
2660 else
2661 as_bad (_("same type of prefix used twice"));
252b5132 2662
252b5132
RH
2663 return ret;
2664}
2665
2666static void
78f12dd3 2667update_code_flag (int value, int check)
eecb386c 2668{
78f12dd3
L
2669 PRINTF_LIKE ((*as_error));
2670
1e9cc1c2 2671 flag_code = (enum flag_code) value;
40fb9820
L
2672 if (flag_code == CODE_64BIT)
2673 {
2674 cpu_arch_flags.bitfield.cpu64 = 1;
2675 cpu_arch_flags.bitfield.cpuno64 = 0;
40fb9820
L
2676 }
2677 else
2678 {
2679 cpu_arch_flags.bitfield.cpu64 = 0;
2680 cpu_arch_flags.bitfield.cpuno64 = 1;
40fb9820
L
2681 }
2682 if (value == CODE_64BIT && !cpu_arch_flags.bitfield.cpulm )
3e73aa7c 2683 {
78f12dd3
L
2684 if (check)
2685 as_error = as_fatal;
2686 else
2687 as_error = as_bad;
2688 (*as_error) (_("64bit mode not supported on `%s'."),
2689 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2690 }
40fb9820 2691 if (value == CODE_32BIT && !cpu_arch_flags.bitfield.cpui386)
3e73aa7c 2692 {
78f12dd3
L
2693 if (check)
2694 as_error = as_fatal;
2695 else
2696 as_error = as_bad;
2697 (*as_error) (_("32bit mode not supported on `%s'."),
2698 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2699 }
eecb386c
AM
2700 stackop_size = '\0';
2701}
2702
78f12dd3
L
2703static void
2704set_code_flag (int value)
2705{
2706 update_code_flag (value, 0);
2707}
2708
eecb386c 2709static void
e3bb37b5 2710set_16bit_gcc_code_flag (int new_code_flag)
252b5132 2711{
1e9cc1c2 2712 flag_code = (enum flag_code) new_code_flag;
40fb9820
L
2713 if (flag_code != CODE_16BIT)
2714 abort ();
2715 cpu_arch_flags.bitfield.cpu64 = 0;
2716 cpu_arch_flags.bitfield.cpuno64 = 1;
9306ca4a 2717 stackop_size = LONG_MNEM_SUFFIX;
252b5132
RH
2718}
2719
2720static void
e3bb37b5 2721set_intel_syntax (int syntax_flag)
252b5132
RH
2722{
2723 /* Find out if register prefixing is specified. */
2724 int ask_naked_reg = 0;
2725
2726 SKIP_WHITESPACE ();
29b0f896 2727 if (!is_end_of_line[(unsigned char) *input_line_pointer])
252b5132 2728 {
d02603dc
NC
2729 char *string;
2730 int e = get_symbol_name (&string);
252b5132 2731
47926f60 2732 if (strcmp (string, "prefix") == 0)
252b5132 2733 ask_naked_reg = 1;
47926f60 2734 else if (strcmp (string, "noprefix") == 0)
252b5132
RH
2735 ask_naked_reg = -1;
2736 else
d0b47220 2737 as_bad (_("bad argument to syntax directive."));
d02603dc 2738 (void) restore_line_pointer (e);
252b5132
RH
2739 }
2740 demand_empty_rest_of_line ();
c3332e24 2741
252b5132
RH
2742 intel_syntax = syntax_flag;
2743
2744 if (ask_naked_reg == 0)
f86103b7
AM
2745 allow_naked_reg = (intel_syntax
2746 && (bfd_get_symbol_leading_char (stdoutput) != '\0'));
252b5132
RH
2747 else
2748 allow_naked_reg = (ask_naked_reg < 0);
9306ca4a 2749
ee86248c 2750 expr_set_rank (O_full_ptr, syntax_flag ? 10 : 0);
7ab9ffdd 2751
e4a3b5a4 2752 identifier_chars['%'] = intel_syntax && allow_naked_reg ? '%' : 0;
9306ca4a 2753 identifier_chars['$'] = intel_syntax ? '$' : 0;
e4a3b5a4 2754 register_prefix = allow_naked_reg ? "" : "%";
252b5132
RH
2755}
2756
1efbbeb4
L
2757static void
2758set_intel_mnemonic (int mnemonic_flag)
2759{
e1d4d893 2760 intel_mnemonic = mnemonic_flag;
1efbbeb4
L
2761}
2762
db51cc60
L
2763static void
2764set_allow_index_reg (int flag)
2765{
2766 allow_index_reg = flag;
2767}
2768
cb19c032 2769static void
7bab8ab5 2770set_check (int what)
cb19c032 2771{
7bab8ab5
JB
2772 enum check_kind *kind;
2773 const char *str;
2774
2775 if (what)
2776 {
2777 kind = &operand_check;
2778 str = "operand";
2779 }
2780 else
2781 {
2782 kind = &sse_check;
2783 str = "sse";
2784 }
2785
cb19c032
L
2786 SKIP_WHITESPACE ();
2787
2788 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2789 {
d02603dc
NC
2790 char *string;
2791 int e = get_symbol_name (&string);
cb19c032
L
2792
2793 if (strcmp (string, "none") == 0)
7bab8ab5 2794 *kind = check_none;
cb19c032 2795 else if (strcmp (string, "warning") == 0)
7bab8ab5 2796 *kind = check_warning;
cb19c032 2797 else if (strcmp (string, "error") == 0)
7bab8ab5 2798 *kind = check_error;
cb19c032 2799 else
7bab8ab5 2800 as_bad (_("bad argument to %s_check directive."), str);
d02603dc 2801 (void) restore_line_pointer (e);
cb19c032
L
2802 }
2803 else
7bab8ab5 2804 as_bad (_("missing argument for %s_check directive"), str);
cb19c032
L
2805
2806 demand_empty_rest_of_line ();
2807}
2808
8a9036a4
L
2809static void
2810check_cpu_arch_compatible (const char *name ATTRIBUTE_UNUSED,
1e9cc1c2 2811 i386_cpu_flags new_flag ATTRIBUTE_UNUSED)
8a9036a4
L
2812{
2813#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2814 static const char *arch;
2815
2816 /* Intel LIOM is only supported on ELF. */
2817 if (!IS_ELF)
2818 return;
2819
2820 if (!arch)
2821 {
2822 /* Use cpu_arch_name if it is set in md_parse_option. Otherwise
2823 use default_arch. */
2824 arch = cpu_arch_name;
2825 if (!arch)
2826 arch = default_arch;
2827 }
2828
81486035
L
2829 /* If we are targeting Intel MCU, we must enable it. */
2830 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_IAMCU
2831 || new_flag.bitfield.cpuiamcu)
2832 return;
2833
3632d14b 2834 /* If we are targeting Intel L1OM, we must enable it. */
8a9036a4 2835 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_L1OM
1e9cc1c2 2836 || new_flag.bitfield.cpul1om)
8a9036a4 2837 return;
76ba9986 2838
7a9068fe
L
2839 /* If we are targeting Intel K1OM, we must enable it. */
2840 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_K1OM
2841 || new_flag.bitfield.cpuk1om)
2842 return;
2843
8a9036a4
L
2844 as_bad (_("`%s' is not supported on `%s'"), name, arch);
2845#endif
2846}
2847
e413e4e9 2848static void
e3bb37b5 2849set_cpu_arch (int dummy ATTRIBUTE_UNUSED)
e413e4e9 2850{
47926f60 2851 SKIP_WHITESPACE ();
e413e4e9 2852
29b0f896 2853 if (!is_end_of_line[(unsigned char) *input_line_pointer])
e413e4e9 2854 {
d02603dc
NC
2855 char *string;
2856 int e = get_symbol_name (&string);
91d6fa6a 2857 unsigned int j;
40fb9820 2858 i386_cpu_flags flags;
e413e4e9 2859
91d6fa6a 2860 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
e413e4e9 2861 {
91d6fa6a 2862 if (strcmp (string, cpu_arch[j].name) == 0)
e413e4e9 2863 {
91d6fa6a 2864 check_cpu_arch_compatible (string, cpu_arch[j].flags);
8a9036a4 2865
5c6af06e
JB
2866 if (*string != '.')
2867 {
91d6fa6a 2868 cpu_arch_name = cpu_arch[j].name;
5c6af06e 2869 cpu_sub_arch_name = NULL;
91d6fa6a 2870 cpu_arch_flags = cpu_arch[j].flags;
40fb9820
L
2871 if (flag_code == CODE_64BIT)
2872 {
2873 cpu_arch_flags.bitfield.cpu64 = 1;
2874 cpu_arch_flags.bitfield.cpuno64 = 0;
2875 }
2876 else
2877 {
2878 cpu_arch_flags.bitfield.cpu64 = 0;
2879 cpu_arch_flags.bitfield.cpuno64 = 1;
2880 }
91d6fa6a
NC
2881 cpu_arch_isa = cpu_arch[j].type;
2882 cpu_arch_isa_flags = cpu_arch[j].flags;
ccc9c027
L
2883 if (!cpu_arch_tune_set)
2884 {
2885 cpu_arch_tune = cpu_arch_isa;
2886 cpu_arch_tune_flags = cpu_arch_isa_flags;
2887 }
5c6af06e
JB
2888 break;
2889 }
40fb9820 2890
293f5f65
L
2891 flags = cpu_flags_or (cpu_arch_flags,
2892 cpu_arch[j].flags);
81486035 2893
5b64d091 2894 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
5c6af06e 2895 {
6305a203
L
2896 if (cpu_sub_arch_name)
2897 {
2898 char *name = cpu_sub_arch_name;
2899 cpu_sub_arch_name = concat (name,
91d6fa6a 2900 cpu_arch[j].name,
1bf57e9f 2901 (const char *) NULL);
6305a203
L
2902 free (name);
2903 }
2904 else
91d6fa6a 2905 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
40fb9820 2906 cpu_arch_flags = flags;
a586129e 2907 cpu_arch_isa_flags = flags;
5c6af06e 2908 }
0089dace
L
2909 else
2910 cpu_arch_isa_flags
2911 = cpu_flags_or (cpu_arch_isa_flags,
2912 cpu_arch[j].flags);
d02603dc 2913 (void) restore_line_pointer (e);
5c6af06e
JB
2914 demand_empty_rest_of_line ();
2915 return;
e413e4e9
AM
2916 }
2917 }
293f5f65
L
2918
2919 if (*string == '.' && j >= ARRAY_SIZE (cpu_arch))
2920 {
33eaf5de 2921 /* Disable an ISA extension. */
293f5f65
L
2922 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
2923 if (strcmp (string + 1, cpu_noarch [j].name) == 0)
2924 {
2925 flags = cpu_flags_and_not (cpu_arch_flags,
2926 cpu_noarch[j].flags);
2927 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
2928 {
2929 if (cpu_sub_arch_name)
2930 {
2931 char *name = cpu_sub_arch_name;
2932 cpu_sub_arch_name = concat (name, string,
2933 (const char *) NULL);
2934 free (name);
2935 }
2936 else
2937 cpu_sub_arch_name = xstrdup (string);
2938 cpu_arch_flags = flags;
2939 cpu_arch_isa_flags = flags;
2940 }
2941 (void) restore_line_pointer (e);
2942 demand_empty_rest_of_line ();
2943 return;
2944 }
2945
2946 j = ARRAY_SIZE (cpu_arch);
2947 }
2948
91d6fa6a 2949 if (j >= ARRAY_SIZE (cpu_arch))
e413e4e9
AM
2950 as_bad (_("no such architecture: `%s'"), string);
2951
2952 *input_line_pointer = e;
2953 }
2954 else
2955 as_bad (_("missing cpu architecture"));
2956
fddf5b5b
AM
2957 no_cond_jump_promotion = 0;
2958 if (*input_line_pointer == ','
29b0f896 2959 && !is_end_of_line[(unsigned char) input_line_pointer[1]])
fddf5b5b 2960 {
d02603dc
NC
2961 char *string;
2962 char e;
2963
2964 ++input_line_pointer;
2965 e = get_symbol_name (&string);
fddf5b5b
AM
2966
2967 if (strcmp (string, "nojumps") == 0)
2968 no_cond_jump_promotion = 1;
2969 else if (strcmp (string, "jumps") == 0)
2970 ;
2971 else
2972 as_bad (_("no such architecture modifier: `%s'"), string);
2973
d02603dc 2974 (void) restore_line_pointer (e);
fddf5b5b
AM
2975 }
2976
e413e4e9
AM
2977 demand_empty_rest_of_line ();
2978}
2979
8a9036a4
L
2980enum bfd_architecture
2981i386_arch (void)
2982{
3632d14b 2983 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4
L
2984 {
2985 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2986 || flag_code != CODE_64BIT)
2987 as_fatal (_("Intel L1OM is 64bit ELF only"));
2988 return bfd_arch_l1om;
2989 }
7a9068fe
L
2990 else if (cpu_arch_isa == PROCESSOR_K1OM)
2991 {
2992 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2993 || flag_code != CODE_64BIT)
2994 as_fatal (_("Intel K1OM is 64bit ELF only"));
2995 return bfd_arch_k1om;
2996 }
81486035
L
2997 else if (cpu_arch_isa == PROCESSOR_IAMCU)
2998 {
2999 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
3000 || flag_code == CODE_64BIT)
3001 as_fatal (_("Intel MCU is 32bit ELF only"));
3002 return bfd_arch_iamcu;
3003 }
8a9036a4
L
3004 else
3005 return bfd_arch_i386;
3006}
3007
b9d79e03 3008unsigned long
7016a5d5 3009i386_mach (void)
b9d79e03 3010{
351f65ca 3011 if (!strncmp (default_arch, "x86_64", 6))
8a9036a4 3012 {
3632d14b 3013 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 3014 {
351f65ca
L
3015 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
3016 || default_arch[6] != '\0')
8a9036a4
L
3017 as_fatal (_("Intel L1OM is 64bit ELF only"));
3018 return bfd_mach_l1om;
3019 }
7a9068fe
L
3020 else if (cpu_arch_isa == PROCESSOR_K1OM)
3021 {
3022 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
3023 || default_arch[6] != '\0')
3024 as_fatal (_("Intel K1OM is 64bit ELF only"));
3025 return bfd_mach_k1om;
3026 }
351f65ca 3027 else if (default_arch[6] == '\0')
8a9036a4 3028 return bfd_mach_x86_64;
351f65ca
L
3029 else
3030 return bfd_mach_x64_32;
8a9036a4 3031 }
5197d474
L
3032 else if (!strcmp (default_arch, "i386")
3033 || !strcmp (default_arch, "iamcu"))
81486035
L
3034 {
3035 if (cpu_arch_isa == PROCESSOR_IAMCU)
3036 {
3037 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
3038 as_fatal (_("Intel MCU is 32bit ELF only"));
3039 return bfd_mach_i386_iamcu;
3040 }
3041 else
3042 return bfd_mach_i386_i386;
3043 }
b9d79e03 3044 else
2b5d6a91 3045 as_fatal (_("unknown architecture"));
b9d79e03 3046}
b9d79e03 3047\f
252b5132 3048void
7016a5d5 3049md_begin (void)
252b5132 3050{
86fa6981
L
3051 /* Support pseudo prefixes like {disp32}. */
3052 lex_type ['{'] = LEX_BEGIN_NAME;
3053
47926f60 3054 /* Initialize op_hash hash table. */
629310ab 3055 op_hash = str_htab_create ();
252b5132
RH
3056
3057 {
d3ce72d0 3058 const insn_template *optab;
29b0f896 3059 templates *core_optab;
252b5132 3060
47926f60
KH
3061 /* Setup for loop. */
3062 optab = i386_optab;
add39d23 3063 core_optab = XNEW (templates);
252b5132
RH
3064 core_optab->start = optab;
3065
3066 while (1)
3067 {
3068 ++optab;
3069 if (optab->name == NULL
3070 || strcmp (optab->name, (optab - 1)->name) != 0)
3071 {
3072 /* different name --> ship out current template list;
47926f60 3073 add to hash table; & begin anew. */
252b5132 3074 core_optab->end = optab;
fe0e921f
AM
3075 if (str_hash_insert (op_hash, (optab - 1)->name, core_optab, 0))
3076 as_fatal (_("duplicate %s"), (optab - 1)->name);
3077
252b5132
RH
3078 if (optab->name == NULL)
3079 break;
add39d23 3080 core_optab = XNEW (templates);
252b5132
RH
3081 core_optab->start = optab;
3082 }
3083 }
3084 }
3085
47926f60 3086 /* Initialize reg_hash hash table. */
629310ab 3087 reg_hash = str_htab_create ();
252b5132 3088 {
29b0f896 3089 const reg_entry *regtab;
c3fe08fa 3090 unsigned int regtab_size = i386_regtab_size;
252b5132 3091
c3fe08fa 3092 for (regtab = i386_regtab; regtab_size--; regtab++)
fe0e921f
AM
3093 if (str_hash_insert (reg_hash, regtab->reg_name, regtab, 0) != NULL)
3094 as_fatal (_("duplicate %s"), regtab->reg_name);
252b5132
RH
3095 }
3096
47926f60 3097 /* Fill in lexical tables: mnemonic_chars, operand_chars. */
252b5132 3098 {
29b0f896
AM
3099 int c;
3100 char *p;
252b5132
RH
3101
3102 for (c = 0; c < 256; c++)
3103 {
3882b010 3104 if (ISDIGIT (c))
252b5132
RH
3105 {
3106 digit_chars[c] = c;
3107 mnemonic_chars[c] = c;
3108 register_chars[c] = c;
3109 operand_chars[c] = c;
3110 }
3882b010 3111 else if (ISLOWER (c))
252b5132
RH
3112 {
3113 mnemonic_chars[c] = c;
3114 register_chars[c] = c;
3115 operand_chars[c] = c;
3116 }
3882b010 3117 else if (ISUPPER (c))
252b5132 3118 {
3882b010 3119 mnemonic_chars[c] = TOLOWER (c);
252b5132
RH
3120 register_chars[c] = mnemonic_chars[c];
3121 operand_chars[c] = c;
3122 }
43234a1e 3123 else if (c == '{' || c == '}')
86fa6981
L
3124 {
3125 mnemonic_chars[c] = c;
3126 operand_chars[c] = c;
3127 }
b3983e5f
JB
3128#ifdef SVR4_COMMENT_CHARS
3129 else if (c == '\\' && strchr (i386_comment_chars, '/'))
3130 operand_chars[c] = c;
3131#endif
252b5132 3132
3882b010 3133 if (ISALPHA (c) || ISDIGIT (c))
252b5132
RH
3134 identifier_chars[c] = c;
3135 else if (c >= 128)
3136 {
3137 identifier_chars[c] = c;
3138 operand_chars[c] = c;
3139 }
3140 }
3141
3142#ifdef LEX_AT
3143 identifier_chars['@'] = '@';
32137342
NC
3144#endif
3145#ifdef LEX_QM
3146 identifier_chars['?'] = '?';
3147 operand_chars['?'] = '?';
252b5132 3148#endif
252b5132 3149 digit_chars['-'] = '-';
c0f3af97 3150 mnemonic_chars['_'] = '_';
791fe849 3151 mnemonic_chars['-'] = '-';
0003779b 3152 mnemonic_chars['.'] = '.';
252b5132
RH
3153 identifier_chars['_'] = '_';
3154 identifier_chars['.'] = '.';
3155
3156 for (p = operand_special_chars; *p != '\0'; p++)
3157 operand_chars[(unsigned char) *p] = *p;
3158 }
3159
a4447b93
RH
3160 if (flag_code == CODE_64BIT)
3161 {
ca19b261
KT
3162#if defined (OBJ_COFF) && defined (TE_PE)
3163 x86_dwarf2_return_column = (OUTPUT_FLAVOR == bfd_target_coff_flavour
3164 ? 32 : 16);
3165#else
a4447b93 3166 x86_dwarf2_return_column = 16;
ca19b261 3167#endif
61ff971f 3168 x86_cie_data_alignment = -8;
a4447b93
RH
3169 }
3170 else
3171 {
3172 x86_dwarf2_return_column = 8;
3173 x86_cie_data_alignment = -4;
3174 }
e379e5f3
L
3175
3176 /* NB: FUSED_JCC_PADDING frag must have sufficient room so that it
3177 can be turned into BRANCH_PREFIX frag. */
3178 if (align_branch_prefix_size > MAX_FUSED_JCC_PADDING_SIZE)
3179 abort ();
252b5132
RH
3180}
3181
3182void
e3bb37b5 3183i386_print_statistics (FILE *file)
252b5132 3184{
629310ab
ML
3185 htab_print_statistics (file, "i386 opcode", op_hash);
3186 htab_print_statistics (file, "i386 register", reg_hash);
252b5132
RH
3187}
3188\f
252b5132
RH
3189#ifdef DEBUG386
3190
ce8a8b2f 3191/* Debugging routines for md_assemble. */
d3ce72d0 3192static void pte (insn_template *);
40fb9820 3193static void pt (i386_operand_type);
e3bb37b5
L
3194static void pe (expressionS *);
3195static void ps (symbolS *);
252b5132
RH
3196
3197static void
2c703856 3198pi (const char *line, i386_insn *x)
252b5132 3199{
09137c09 3200 unsigned int j;
252b5132
RH
3201
3202 fprintf (stdout, "%s: template ", line);
3203 pte (&x->tm);
09f131f2
JH
3204 fprintf (stdout, " address: base %s index %s scale %x\n",
3205 x->base_reg ? x->base_reg->reg_name : "none",
3206 x->index_reg ? x->index_reg->reg_name : "none",
3207 x->log2_scale_factor);
3208 fprintf (stdout, " modrm: mode %x reg %x reg/mem %x\n",
252b5132 3209 x->rm.mode, x->rm.reg, x->rm.regmem);
09f131f2
JH
3210 fprintf (stdout, " sib: base %x index %x scale %x\n",
3211 x->sib.base, x->sib.index, x->sib.scale);
3212 fprintf (stdout, " rex: 64bit %x extX %x extY %x extZ %x\n",
161a04f6
L
3213 (x->rex & REX_W) != 0,
3214 (x->rex & REX_R) != 0,
3215 (x->rex & REX_X) != 0,
3216 (x->rex & REX_B) != 0);
09137c09 3217 for (j = 0; j < x->operands; j++)
252b5132 3218 {
09137c09
SP
3219 fprintf (stdout, " #%d: ", j + 1);
3220 pt (x->types[j]);
252b5132 3221 fprintf (stdout, "\n");
bab6aec1 3222 if (x->types[j].bitfield.class == Reg
3528c362
JB
3223 || x->types[j].bitfield.class == RegMMX
3224 || x->types[j].bitfield.class == RegSIMD
dd6b8a0b 3225 || x->types[j].bitfield.class == RegMask
00cee14f 3226 || x->types[j].bitfield.class == SReg
4a5c67ed
JB
3227 || x->types[j].bitfield.class == RegCR
3228 || x->types[j].bitfield.class == RegDR
dd6b8a0b
JB
3229 || x->types[j].bitfield.class == RegTR
3230 || x->types[j].bitfield.class == RegBND)
09137c09
SP
3231 fprintf (stdout, "%s\n", x->op[j].regs->reg_name);
3232 if (operand_type_check (x->types[j], imm))
3233 pe (x->op[j].imms);
3234 if (operand_type_check (x->types[j], disp))
3235 pe (x->op[j].disps);
252b5132
RH
3236 }
3237}
3238
3239static void
d3ce72d0 3240pte (insn_template *t)
252b5132 3241{
b933fa4b 3242 static const unsigned char opc_pfx[] = { 0, 0x66, 0xf3, 0xf2 };
441f6aca
JB
3243 static const char *const opc_spc[] = {
3244 NULL, "0f", "0f38", "0f3a", NULL, NULL, NULL, NULL,
3245 "XOP08", "XOP09", "XOP0A",
3246 };
09137c09 3247 unsigned int j;
441f6aca 3248
252b5132 3249 fprintf (stdout, " %d operands ", t->operands);
441f6aca
JB
3250 if (opc_pfx[t->opcode_modifier.opcodeprefix])
3251 fprintf (stdout, "pfx %x ", opc_pfx[t->opcode_modifier.opcodeprefix]);
3252 if (opc_spc[t->opcode_modifier.opcodespace])
3253 fprintf (stdout, "space %s ", opc_spc[t->opcode_modifier.opcodespace]);
47926f60 3254 fprintf (stdout, "opcode %x ", t->base_opcode);
252b5132
RH
3255 if (t->extension_opcode != None)
3256 fprintf (stdout, "ext %x ", t->extension_opcode);
40fb9820 3257 if (t->opcode_modifier.d)
252b5132 3258 fprintf (stdout, "D");
40fb9820 3259 if (t->opcode_modifier.w)
252b5132
RH
3260 fprintf (stdout, "W");
3261 fprintf (stdout, "\n");
09137c09 3262 for (j = 0; j < t->operands; j++)
252b5132 3263 {
09137c09
SP
3264 fprintf (stdout, " #%d type ", j + 1);
3265 pt (t->operand_types[j]);
252b5132
RH
3266 fprintf (stdout, "\n");
3267 }
3268}
3269
3270static void
e3bb37b5 3271pe (expressionS *e)
252b5132 3272{
24eab124 3273 fprintf (stdout, " operation %d\n", e->X_op);
b77ad1d4
AM
3274 fprintf (stdout, " add_number %ld (%lx)\n",
3275 (long) e->X_add_number, (long) e->X_add_number);
252b5132
RH
3276 if (e->X_add_symbol)
3277 {
3278 fprintf (stdout, " add_symbol ");
3279 ps (e->X_add_symbol);
3280 fprintf (stdout, "\n");
3281 }
3282 if (e->X_op_symbol)
3283 {
3284 fprintf (stdout, " op_symbol ");
3285 ps (e->X_op_symbol);
3286 fprintf (stdout, "\n");
3287 }
3288}
3289
3290static void
e3bb37b5 3291ps (symbolS *s)
252b5132
RH
3292{
3293 fprintf (stdout, "%s type %s%s",
3294 S_GET_NAME (s),
3295 S_IS_EXTERNAL (s) ? "EXTERNAL " : "",
3296 segment_name (S_GET_SEGMENT (s)));
3297}
3298
7b81dfbb 3299static struct type_name
252b5132 3300 {
40fb9820
L
3301 i386_operand_type mask;
3302 const char *name;
252b5132 3303 }
7b81dfbb 3304const type_names[] =
252b5132 3305{
40fb9820
L
3306 { OPERAND_TYPE_REG8, "r8" },
3307 { OPERAND_TYPE_REG16, "r16" },
3308 { OPERAND_TYPE_REG32, "r32" },
3309 { OPERAND_TYPE_REG64, "r64" },
2c703856
JB
3310 { OPERAND_TYPE_ACC8, "acc8" },
3311 { OPERAND_TYPE_ACC16, "acc16" },
3312 { OPERAND_TYPE_ACC32, "acc32" },
3313 { OPERAND_TYPE_ACC64, "acc64" },
40fb9820
L
3314 { OPERAND_TYPE_IMM8, "i8" },
3315 { OPERAND_TYPE_IMM8, "i8s" },
3316 { OPERAND_TYPE_IMM16, "i16" },
3317 { OPERAND_TYPE_IMM32, "i32" },
3318 { OPERAND_TYPE_IMM32S, "i32s" },
3319 { OPERAND_TYPE_IMM64, "i64" },
3320 { OPERAND_TYPE_IMM1, "i1" },
3321 { OPERAND_TYPE_BASEINDEX, "BaseIndex" },
3322 { OPERAND_TYPE_DISP8, "d8" },
3323 { OPERAND_TYPE_DISP16, "d16" },
3324 { OPERAND_TYPE_DISP32, "d32" },
3325 { OPERAND_TYPE_DISP32S, "d32s" },
3326 { OPERAND_TYPE_DISP64, "d64" },
3327 { OPERAND_TYPE_INOUTPORTREG, "InOutPortReg" },
3328 { OPERAND_TYPE_SHIFTCOUNT, "ShiftCount" },
3329 { OPERAND_TYPE_CONTROL, "control reg" },
3330 { OPERAND_TYPE_TEST, "test reg" },
3331 { OPERAND_TYPE_DEBUG, "debug reg" },
3332 { OPERAND_TYPE_FLOATREG, "FReg" },
3333 { OPERAND_TYPE_FLOATACC, "FAcc" },
21df382b 3334 { OPERAND_TYPE_SREG, "SReg" },
40fb9820
L
3335 { OPERAND_TYPE_REGMMX, "rMMX" },
3336 { OPERAND_TYPE_REGXMM, "rXMM" },
0349dc08 3337 { OPERAND_TYPE_REGYMM, "rYMM" },
43234a1e 3338 { OPERAND_TYPE_REGZMM, "rZMM" },
260cd341 3339 { OPERAND_TYPE_REGTMM, "rTMM" },
43234a1e 3340 { OPERAND_TYPE_REGMASK, "Mask reg" },
252b5132
RH
3341};
3342
3343static void
40fb9820 3344pt (i386_operand_type t)
252b5132 3345{
40fb9820 3346 unsigned int j;
c6fb90c8 3347 i386_operand_type a;
252b5132 3348
40fb9820 3349 for (j = 0; j < ARRAY_SIZE (type_names); j++)
c6fb90c8
L
3350 {
3351 a = operand_type_and (t, type_names[j].mask);
2c703856 3352 if (operand_type_equal (&a, &type_names[j].mask))
c6fb90c8
L
3353 fprintf (stdout, "%s, ", type_names[j].name);
3354 }
252b5132
RH
3355 fflush (stdout);
3356}
3357
3358#endif /* DEBUG386 */
3359\f
252b5132 3360static bfd_reloc_code_real_type
3956db08 3361reloc (unsigned int size,
64e74474
AM
3362 int pcrel,
3363 int sign,
3364 bfd_reloc_code_real_type other)
252b5132 3365{
47926f60 3366 if (other != NO_RELOC)
3956db08 3367 {
91d6fa6a 3368 reloc_howto_type *rel;
3956db08
JB
3369
3370 if (size == 8)
3371 switch (other)
3372 {
64e74474
AM
3373 case BFD_RELOC_X86_64_GOT32:
3374 return BFD_RELOC_X86_64_GOT64;
3375 break;
553d1284
L
3376 case BFD_RELOC_X86_64_GOTPLT64:
3377 return BFD_RELOC_X86_64_GOTPLT64;
3378 break;
64e74474
AM
3379 case BFD_RELOC_X86_64_PLTOFF64:
3380 return BFD_RELOC_X86_64_PLTOFF64;
3381 break;
3382 case BFD_RELOC_X86_64_GOTPC32:
3383 other = BFD_RELOC_X86_64_GOTPC64;
3384 break;
3385 case BFD_RELOC_X86_64_GOTPCREL:
3386 other = BFD_RELOC_X86_64_GOTPCREL64;
3387 break;
3388 case BFD_RELOC_X86_64_TPOFF32:
3389 other = BFD_RELOC_X86_64_TPOFF64;
3390 break;
3391 case BFD_RELOC_X86_64_DTPOFF32:
3392 other = BFD_RELOC_X86_64_DTPOFF64;
3393 break;
3394 default:
3395 break;
3956db08 3396 }
e05278af 3397
8ce3d284 3398#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
3399 if (other == BFD_RELOC_SIZE32)
3400 {
3401 if (size == 8)
1ab668bf 3402 other = BFD_RELOC_SIZE64;
8fd4256d 3403 if (pcrel)
1ab668bf
AM
3404 {
3405 as_bad (_("there are no pc-relative size relocations"));
3406 return NO_RELOC;
3407 }
8fd4256d 3408 }
8ce3d284 3409#endif
8fd4256d 3410
e05278af 3411 /* Sign-checking 4-byte relocations in 16-/32-bit code is pointless. */
f2d8a97c 3412 if (size == 4 && (flag_code != CODE_64BIT || disallow_64bit_reloc))
e05278af
JB
3413 sign = -1;
3414
91d6fa6a
NC
3415 rel = bfd_reloc_type_lookup (stdoutput, other);
3416 if (!rel)
3956db08 3417 as_bad (_("unknown relocation (%u)"), other);
91d6fa6a 3418 else if (size != bfd_get_reloc_size (rel))
3956db08 3419 as_bad (_("%u-byte relocation cannot be applied to %u-byte field"),
91d6fa6a 3420 bfd_get_reloc_size (rel),
3956db08 3421 size);
91d6fa6a 3422 else if (pcrel && !rel->pc_relative)
3956db08 3423 as_bad (_("non-pc-relative relocation for pc-relative field"));
91d6fa6a 3424 else if ((rel->complain_on_overflow == complain_overflow_signed
3956db08 3425 && !sign)
91d6fa6a 3426 || (rel->complain_on_overflow == complain_overflow_unsigned
64e74474 3427 && sign > 0))
3956db08
JB
3428 as_bad (_("relocated field and relocation type differ in signedness"));
3429 else
3430 return other;
3431 return NO_RELOC;
3432 }
252b5132
RH
3433
3434 if (pcrel)
3435 {
3e73aa7c 3436 if (!sign)
3956db08 3437 as_bad (_("there are no unsigned pc-relative relocations"));
252b5132
RH
3438 switch (size)
3439 {
3440 case 1: return BFD_RELOC_8_PCREL;
3441 case 2: return BFD_RELOC_16_PCREL;
d258b828 3442 case 4: return BFD_RELOC_32_PCREL;
d6ab8113 3443 case 8: return BFD_RELOC_64_PCREL;
252b5132 3444 }
3956db08 3445 as_bad (_("cannot do %u byte pc-relative relocation"), size);
252b5132
RH
3446 }
3447 else
3448 {
3956db08 3449 if (sign > 0)
e5cb08ac 3450 switch (size)
3e73aa7c
JH
3451 {
3452 case 4: return BFD_RELOC_X86_64_32S;
3453 }
3454 else
3455 switch (size)
3456 {
3457 case 1: return BFD_RELOC_8;
3458 case 2: return BFD_RELOC_16;
3459 case 4: return BFD_RELOC_32;
3460 case 8: return BFD_RELOC_64;
3461 }
3956db08
JB
3462 as_bad (_("cannot do %s %u byte relocation"),
3463 sign > 0 ? "signed" : "unsigned", size);
252b5132
RH
3464 }
3465
0cc9e1d3 3466 return NO_RELOC;
252b5132
RH
3467}
3468
47926f60
KH
3469/* Here we decide which fixups can be adjusted to make them relative to
3470 the beginning of the section instead of the symbol. Basically we need
3471 to make sure that the dynamic relocations are done correctly, so in
3472 some cases we force the original symbol to be used. */
3473
252b5132 3474int
e3bb37b5 3475tc_i386_fix_adjustable (fixS *fixP ATTRIBUTE_UNUSED)
252b5132 3476{
6d249963 3477#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 3478 if (!IS_ELF)
31312f95
AM
3479 return 1;
3480
a161fe53
AM
3481 /* Don't adjust pc-relative references to merge sections in 64-bit
3482 mode. */
3483 if (use_rela_relocations
3484 && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0
3485 && fixP->fx_pcrel)
252b5132 3486 return 0;
31312f95 3487
8d01d9a9
AJ
3488 /* The x86_64 GOTPCREL are represented as 32bit PCrel relocations
3489 and changed later by validate_fix. */
3490 if (GOT_symbol && fixP->fx_subsy == GOT_symbol
3491 && fixP->fx_r_type == BFD_RELOC_32_PCREL)
3492 return 0;
3493
8fd4256d
L
3494 /* Adjust_reloc_syms doesn't know about the GOT. Need to keep symbol
3495 for size relocations. */
3496 if (fixP->fx_r_type == BFD_RELOC_SIZE32
3497 || fixP->fx_r_type == BFD_RELOC_SIZE64
3498 || fixP->fx_r_type == BFD_RELOC_386_GOTOFF
252b5132 3499 || fixP->fx_r_type == BFD_RELOC_386_GOT32
02a86693 3500 || fixP->fx_r_type == BFD_RELOC_386_GOT32X
13ae64f3
JJ
3501 || fixP->fx_r_type == BFD_RELOC_386_TLS_GD
3502 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDM
3503 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDO_32
3504 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE_32
37e55690
JJ
3505 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE
3506 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTIE
13ae64f3
JJ
3507 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE_32
3508 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE
67a4f2b7
AO
3509 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTDESC
3510 || fixP->fx_r_type == BFD_RELOC_386_TLS_DESC_CALL
3e73aa7c 3511 || fixP->fx_r_type == BFD_RELOC_X86_64_GOT32
80b3ee89 3512 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCREL
56ceb5b5
L
3513 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCRELX
3514 || fixP->fx_r_type == BFD_RELOC_X86_64_REX_GOTPCRELX
bffbf940
JJ
3515 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSGD
3516 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSLD
3517 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF32
d6ab8113 3518 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF64
bffbf940
JJ
3519 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTTPOFF
3520 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF32
d6ab8113
JB
3521 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF64
3522 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTOFF64
67a4f2b7
AO
3523 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPC32_TLSDESC
3524 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSDESC_CALL
252b5132
RH
3525 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
3526 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
3527 return 0;
31312f95 3528#endif
252b5132
RH
3529 return 1;
3530}
252b5132 3531
b4cac588 3532static int
e3bb37b5 3533intel_float_operand (const char *mnemonic)
252b5132 3534{
9306ca4a
JB
3535 /* Note that the value returned is meaningful only for opcodes with (memory)
3536 operands, hence the code here is free to improperly handle opcodes that
3537 have no operands (for better performance and smaller code). */
3538
3539 if (mnemonic[0] != 'f')
3540 return 0; /* non-math */
3541
3542 switch (mnemonic[1])
3543 {
3544 /* fclex, fdecstp, fdisi, femms, feni, fincstp, finit, fsetpm, and
3545 the fs segment override prefix not currently handled because no
3546 call path can make opcodes without operands get here */
3547 case 'i':
3548 return 2 /* integer op */;
3549 case 'l':
3550 if (mnemonic[2] == 'd' && (mnemonic[3] == 'c' || mnemonic[3] == 'e'))
3551 return 3; /* fldcw/fldenv */
3552 break;
3553 case 'n':
3554 if (mnemonic[2] != 'o' /* fnop */)
3555 return 3; /* non-waiting control op */
3556 break;
3557 case 'r':
3558 if (mnemonic[2] == 's')
3559 return 3; /* frstor/frstpm */
3560 break;
3561 case 's':
3562 if (mnemonic[2] == 'a')
3563 return 3; /* fsave */
3564 if (mnemonic[2] == 't')
3565 {
3566 switch (mnemonic[3])
3567 {
3568 case 'c': /* fstcw */
3569 case 'd': /* fstdw */
3570 case 'e': /* fstenv */
3571 case 's': /* fsts[gw] */
3572 return 3;
3573 }
3574 }
3575 break;
3576 case 'x':
3577 if (mnemonic[2] == 'r' || mnemonic[2] == 's')
3578 return 0; /* fxsave/fxrstor are not really math ops */
3579 break;
3580 }
252b5132 3581
9306ca4a 3582 return 1;
252b5132
RH
3583}
3584
c0f3af97
L
3585/* Build the VEX prefix. */
3586
3587static void
d3ce72d0 3588build_vex_prefix (const insn_template *t)
c0f3af97
L
3589{
3590 unsigned int register_specifier;
3591 unsigned int implied_prefix;
3592 unsigned int vector_length;
03751133 3593 unsigned int w;
c0f3af97
L
3594
3595 /* Check register specifier. */
3596 if (i.vex.register_specifier)
43234a1e
L
3597 {
3598 register_specifier =
3599 ~register_number (i.vex.register_specifier) & 0xf;
3600 gas_assert ((i.vex.register_specifier->reg_flags & RegVRex) == 0);
3601 }
c0f3af97
L
3602 else
3603 register_specifier = 0xf;
3604
79f0fa25
L
3605 /* Use 2-byte VEX prefix by swapping destination and source operand
3606 if there are more than 1 register operand. */
3607 if (i.reg_operands > 1
3608 && i.vec_encoding != vex_encoding_vex3
86fa6981 3609 && i.dir_encoding == dir_encoding_default
fa99fab2 3610 && i.operands == i.reg_operands
dbbc8b7e 3611 && operand_type_equal (&i.types[0], &i.types[i.operands - 1])
441f6aca 3612 && i.tm.opcode_modifier.opcodespace == SPACE_0F
dbbc8b7e 3613 && (i.tm.opcode_modifier.load || i.tm.opcode_modifier.d)
fa99fab2
L
3614 && i.rex == REX_B)
3615 {
3616 unsigned int xchg = i.operands - 1;
3617 union i386_op temp_op;
3618 i386_operand_type temp_type;
3619
3620 temp_type = i.types[xchg];
3621 i.types[xchg] = i.types[0];
3622 i.types[0] = temp_type;
3623 temp_op = i.op[xchg];
3624 i.op[xchg] = i.op[0];
3625 i.op[0] = temp_op;
3626
9c2799c2 3627 gas_assert (i.rm.mode == 3);
fa99fab2
L
3628
3629 i.rex = REX_R;
3630 xchg = i.rm.regmem;
3631 i.rm.regmem = i.rm.reg;
3632 i.rm.reg = xchg;
3633
dbbc8b7e
JB
3634 if (i.tm.opcode_modifier.d)
3635 i.tm.base_opcode ^= (i.tm.base_opcode & 0xee) != 0x6e
3636 ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD;
3637 else /* Use the next insn. */
3638 i.tm = t[1];
fa99fab2
L
3639 }
3640
79dec6b7
JB
3641 /* Use 2-byte VEX prefix by swapping commutative source operands if there
3642 are no memory operands and at least 3 register ones. */
3643 if (i.reg_operands >= 3
3644 && i.vec_encoding != vex_encoding_vex3
3645 && i.reg_operands == i.operands - i.imm_operands
3646 && i.tm.opcode_modifier.vex
3647 && i.tm.opcode_modifier.commutative
3648 && (i.tm.opcode_modifier.sse2avx || optimize > 1)
3649 && i.rex == REX_B
3650 && i.vex.register_specifier
3651 && !(i.vex.register_specifier->reg_flags & RegRex))
3652 {
3653 unsigned int xchg = i.operands - i.reg_operands;
3654 union i386_op temp_op;
3655 i386_operand_type temp_type;
3656
441f6aca 3657 gas_assert (i.tm.opcode_modifier.opcodespace == SPACE_0F);
79dec6b7
JB
3658 gas_assert (!i.tm.opcode_modifier.sae);
3659 gas_assert (operand_type_equal (&i.types[i.operands - 2],
3660 &i.types[i.operands - 3]));
3661 gas_assert (i.rm.mode == 3);
3662
3663 temp_type = i.types[xchg];
3664 i.types[xchg] = i.types[xchg + 1];
3665 i.types[xchg + 1] = temp_type;
3666 temp_op = i.op[xchg];
3667 i.op[xchg] = i.op[xchg + 1];
3668 i.op[xchg + 1] = temp_op;
3669
3670 i.rex = 0;
3671 xchg = i.rm.regmem | 8;
3672 i.rm.regmem = ~register_specifier & 0xf;
3673 gas_assert (!(i.rm.regmem & 8));
3674 i.vex.register_specifier += xchg - i.rm.regmem;
3675 register_specifier = ~xchg & 0xf;
3676 }
3677
539f890d
L
3678 if (i.tm.opcode_modifier.vex == VEXScalar)
3679 vector_length = avxscalar;
10c17abd
JB
3680 else if (i.tm.opcode_modifier.vex == VEX256)
3681 vector_length = 1;
539f890d 3682 else
10c17abd 3683 {
56522fc5 3684 unsigned int op;
10c17abd 3685
c7213af9
L
3686 /* Determine vector length from the last multi-length vector
3687 operand. */
10c17abd 3688 vector_length = 0;
56522fc5 3689 for (op = t->operands; op--;)
10c17abd
JB
3690 if (t->operand_types[op].bitfield.xmmword
3691 && t->operand_types[op].bitfield.ymmword
3692 && i.types[op].bitfield.ymmword)
3693 {
3694 vector_length = 1;
3695 break;
3696 }
3697 }
c0f3af97 3698
8c190ce0 3699 switch ((i.tm.base_opcode >> (i.tm.opcode_length << 3)) & 0xff)
c0f3af97
L
3700 {
3701 case 0:
3702 implied_prefix = 0;
3703 break;
3704 case DATA_PREFIX_OPCODE:
3705 implied_prefix = 1;
3706 break;
3707 case REPE_PREFIX_OPCODE:
3708 implied_prefix = 2;
3709 break;
3710 case REPNE_PREFIX_OPCODE:
3711 implied_prefix = 3;
3712 break;
3713 default:
3714 abort ();
3715 }
3716
03751133
L
3717 /* Check the REX.W bit and VEXW. */
3718 if (i.tm.opcode_modifier.vexw == VEXWIG)
3719 w = (vexwig == vexw1 || (i.rex & REX_W)) ? 1 : 0;
3720 else if (i.tm.opcode_modifier.vexw)
3721 w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0;
3722 else
931d03b7 3723 w = (flag_code == CODE_64BIT ? i.rex & REX_W : vexwig == vexw1) ? 1 : 0;
03751133 3724
c0f3af97 3725 /* Use 2-byte VEX prefix if possible. */
03751133
L
3726 if (w == 0
3727 && i.vec_encoding != vex_encoding_vex3
441f6aca 3728 && i.tm.opcode_modifier.opcodespace == SPACE_0F
c0f3af97
L
3729 && (i.rex & (REX_W | REX_X | REX_B)) == 0)
3730 {
3731 /* 2-byte VEX prefix. */
3732 unsigned int r;
3733
3734 i.vex.length = 2;
3735 i.vex.bytes[0] = 0xc5;
3736
3737 /* Check the REX.R bit. */
3738 r = (i.rex & REX_R) ? 0 : 1;
3739 i.vex.bytes[1] = (r << 7
3740 | register_specifier << 3
3741 | vector_length << 2
3742 | implied_prefix);
3743 }
3744 else
3745 {
3746 /* 3-byte VEX prefix. */
f88c9eb0 3747 i.vex.length = 3;
f88c9eb0 3748
441f6aca 3749 switch (i.tm.opcode_modifier.opcodespace)
5dd85c99 3750 {
441f6aca
JB
3751 case SPACE_0F:
3752 case SPACE_0F38:
3753 case SPACE_0F3A:
80de6e00 3754 i.vex.bytes[0] = 0xc4;
7f399153 3755 break;
441f6aca
JB
3756 case SPACE_XOP08:
3757 case SPACE_XOP09:
3758 case SPACE_XOP0A:
f88c9eb0 3759 i.vex.bytes[0] = 0x8f;
7f399153
L
3760 break;
3761 default:
3762 abort ();
f88c9eb0 3763 }
c0f3af97 3764
c0f3af97
L
3765 /* The high 3 bits of the second VEX byte are 1's compliment
3766 of RXB bits from REX. */
441f6aca 3767 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | i.tm.opcode_modifier.opcodespace;
c0f3af97 3768
c0f3af97
L
3769 i.vex.bytes[2] = (w << 7
3770 | register_specifier << 3
3771 | vector_length << 2
3772 | implied_prefix);
3773 }
3774}
3775
e771e7c9
JB
3776static INLINE bfd_boolean
3777is_evex_encoding (const insn_template *t)
3778{
7091c612 3779 return t->opcode_modifier.evex || t->opcode_modifier.disp8memshift
e771e7c9 3780 || t->opcode_modifier.broadcast || t->opcode_modifier.masking
a80195f1 3781 || t->opcode_modifier.sae;
e771e7c9
JB
3782}
3783
7a8655d2
JB
3784static INLINE bfd_boolean
3785is_any_vex_encoding (const insn_template *t)
3786{
7b47a312 3787 return t->opcode_modifier.vex || is_evex_encoding (t);
7a8655d2
JB
3788}
3789
43234a1e
L
3790/* Build the EVEX prefix. */
3791
3792static void
3793build_evex_prefix (void)
3794{
3795 unsigned int register_specifier;
441f6aca 3796 unsigned int implied_prefix, w;
43234a1e
L
3797 rex_byte vrex_used = 0;
3798
3799 /* Check register specifier. */
3800 if (i.vex.register_specifier)
3801 {
3802 gas_assert ((i.vrex & REX_X) == 0);
3803
3804 register_specifier = i.vex.register_specifier->reg_num;
3805 if ((i.vex.register_specifier->reg_flags & RegRex))
3806 register_specifier += 8;
3807 /* The upper 16 registers are encoded in the fourth byte of the
3808 EVEX prefix. */
3809 if (!(i.vex.register_specifier->reg_flags & RegVRex))
3810 i.vex.bytes[3] = 0x8;
3811 register_specifier = ~register_specifier & 0xf;
3812 }
3813 else
3814 {
3815 register_specifier = 0xf;
3816
3817 /* Encode upper 16 vector index register in the fourth byte of
3818 the EVEX prefix. */
3819 if (!(i.vrex & REX_X))
3820 i.vex.bytes[3] = 0x8;
3821 else
3822 vrex_used |= REX_X;
3823 }
3824
3825 switch ((i.tm.base_opcode >> 8) & 0xff)
3826 {
3827 case 0:
3828 implied_prefix = 0;
3829 break;
3830 case DATA_PREFIX_OPCODE:
3831 implied_prefix = 1;
3832 break;
3833 case REPE_PREFIX_OPCODE:
3834 implied_prefix = 2;
3835 break;
3836 case REPNE_PREFIX_OPCODE:
3837 implied_prefix = 3;
3838 break;
3839 default:
3840 abort ();
3841 }
3842
3843 /* 4 byte EVEX prefix. */
3844 i.vex.length = 4;
3845 i.vex.bytes[0] = 0x62;
3846
43234a1e
L
3847 /* The high 3 bits of the second EVEX byte are 1's compliment of RXB
3848 bits from REX. */
441f6aca
JB
3849 gas_assert (i.tm.opcode_modifier.opcodespace >= SPACE_0F);
3850 gas_assert (i.tm.opcode_modifier.opcodespace <= SPACE_0F3A);
3851 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | i.tm.opcode_modifier.opcodespace;
43234a1e
L
3852
3853 /* The fifth bit of the second EVEX byte is 1's compliment of the
3854 REX_R bit in VREX. */
3855 if (!(i.vrex & REX_R))
3856 i.vex.bytes[1] |= 0x10;
3857 else
3858 vrex_used |= REX_R;
3859
3860 if ((i.reg_operands + i.imm_operands) == i.operands)
3861 {
3862 /* When all operands are registers, the REX_X bit in REX is not
3863 used. We reuse it to encode the upper 16 registers, which is
3864 indicated by the REX_B bit in VREX. The REX_X bit is encoded
3865 as 1's compliment. */
3866 if ((i.vrex & REX_B))
3867 {
3868 vrex_used |= REX_B;
3869 i.vex.bytes[1] &= ~0x40;
3870 }
3871 }
3872
3873 /* EVEX instructions shouldn't need the REX prefix. */
3874 i.vrex &= ~vrex_used;
3875 gas_assert (i.vrex == 0);
3876
6865c043
L
3877 /* Check the REX.W bit and VEXW. */
3878 if (i.tm.opcode_modifier.vexw == VEXWIG)
3879 w = (evexwig == evexw1 || (i.rex & REX_W)) ? 1 : 0;
3880 else if (i.tm.opcode_modifier.vexw)
3881 w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0;
3882 else
931d03b7 3883 w = (flag_code == CODE_64BIT ? i.rex & REX_W : evexwig == evexw1) ? 1 : 0;
43234a1e
L
3884
3885 /* Encode the U bit. */
3886 implied_prefix |= 0x4;
3887
3888 /* The third byte of the EVEX prefix. */
3889 i.vex.bytes[2] = (w << 7 | register_specifier << 3 | implied_prefix);
3890
3891 /* The fourth byte of the EVEX prefix. */
3892 /* The zeroing-masking bit. */
3893 if (i.mask && i.mask->zeroing)
3894 i.vex.bytes[3] |= 0x80;
3895
3896 /* Don't always set the broadcast bit if there is no RC. */
3897 if (!i.rounding)
3898 {
3899 /* Encode the vector length. */
3900 unsigned int vec_length;
3901
e771e7c9
JB
3902 if (!i.tm.opcode_modifier.evex
3903 || i.tm.opcode_modifier.evex == EVEXDYN)
3904 {
56522fc5 3905 unsigned int op;
e771e7c9 3906
c7213af9
L
3907 /* Determine vector length from the last multi-length vector
3908 operand. */
56522fc5 3909 for (op = i.operands; op--;)
e771e7c9
JB
3910 if (i.tm.operand_types[op].bitfield.xmmword
3911 + i.tm.operand_types[op].bitfield.ymmword
3912 + i.tm.operand_types[op].bitfield.zmmword > 1)
3913 {
3914 if (i.types[op].bitfield.zmmword)
c7213af9
L
3915 {
3916 i.tm.opcode_modifier.evex = EVEX512;
3917 break;
3918 }
e771e7c9 3919 else if (i.types[op].bitfield.ymmword)
c7213af9
L
3920 {
3921 i.tm.opcode_modifier.evex = EVEX256;
3922 break;
3923 }
e771e7c9 3924 else if (i.types[op].bitfield.xmmword)
c7213af9
L
3925 {
3926 i.tm.opcode_modifier.evex = EVEX128;
3927 break;
3928 }
625cbd7a
JB
3929 else if (i.broadcast && (int) op == i.broadcast->operand)
3930 {
4a1b91ea 3931 switch (i.broadcast->bytes)
625cbd7a
JB
3932 {
3933 case 64:
3934 i.tm.opcode_modifier.evex = EVEX512;
3935 break;
3936 case 32:
3937 i.tm.opcode_modifier.evex = EVEX256;
3938 break;
3939 case 16:
3940 i.tm.opcode_modifier.evex = EVEX128;
3941 break;
3942 default:
c7213af9 3943 abort ();
625cbd7a 3944 }
c7213af9 3945 break;
625cbd7a 3946 }
e771e7c9 3947 }
c7213af9 3948
56522fc5 3949 if (op >= MAX_OPERANDS)
c7213af9 3950 abort ();
e771e7c9
JB
3951 }
3952
43234a1e
L
3953 switch (i.tm.opcode_modifier.evex)
3954 {
3955 case EVEXLIG: /* LL' is ignored */
3956 vec_length = evexlig << 5;
3957 break;
3958 case EVEX128:
3959 vec_length = 0 << 5;
3960 break;
3961 case EVEX256:
3962 vec_length = 1 << 5;
3963 break;
3964 case EVEX512:
3965 vec_length = 2 << 5;
3966 break;
3967 default:
3968 abort ();
3969 break;
3970 }
3971 i.vex.bytes[3] |= vec_length;
3972 /* Encode the broadcast bit. */
3973 if (i.broadcast)
3974 i.vex.bytes[3] |= 0x10;
3975 }
3976 else
3977 {
3978 if (i.rounding->type != saeonly)
3979 i.vex.bytes[3] |= 0x10 | (i.rounding->type << 5);
3980 else
d3d3c6db 3981 i.vex.bytes[3] |= 0x10 | (evexrcig << 5);
43234a1e
L
3982 }
3983
3984 if (i.mask && i.mask->mask)
3985 i.vex.bytes[3] |= i.mask->mask->reg_num;
3986}
3987
65da13b5
L
3988static void
3989process_immext (void)
3990{
3991 expressionS *exp;
3992
c0f3af97 3993 /* These AMD 3DNow! and SSE2 instructions have an opcode suffix
65da13b5
L
3994 which is coded in the same place as an 8-bit immediate field
3995 would be. Here we fake an 8-bit immediate operand from the
3996 opcode suffix stored in tm.extension_opcode.
3997
c1e679ec 3998 AVX instructions also use this encoding, for some of
c0f3af97 3999 3 argument instructions. */
65da13b5 4000
43234a1e 4001 gas_assert (i.imm_operands <= 1
7ab9ffdd 4002 && (i.operands <= 2
7a8655d2 4003 || (is_any_vex_encoding (&i.tm)
7ab9ffdd 4004 && i.operands <= 4)));
65da13b5
L
4005
4006 exp = &im_expressions[i.imm_operands++];
4007 i.op[i.operands].imms = exp;
4008 i.types[i.operands] = imm8;
4009 i.operands++;
4010 exp->X_op = O_constant;
4011 exp->X_add_number = i.tm.extension_opcode;
4012 i.tm.extension_opcode = None;
4013}
4014
42164a71
L
4015
4016static int
4017check_hle (void)
4018{
742732c7 4019 switch (i.tm.opcode_modifier.prefixok)
42164a71
L
4020 {
4021 default:
4022 abort ();
742732c7
JB
4023 case PrefixLock:
4024 case PrefixNone:
4025 case PrefixNoTrack:
4026 case PrefixRep:
165de32a
L
4027 as_bad (_("invalid instruction `%s' after `%s'"),
4028 i.tm.name, i.hle_prefix);
42164a71 4029 return 0;
742732c7 4030 case PrefixHLELock:
42164a71
L
4031 if (i.prefix[LOCK_PREFIX])
4032 return 1;
165de32a 4033 as_bad (_("missing `lock' with `%s'"), i.hle_prefix);
42164a71 4034 return 0;
742732c7 4035 case PrefixHLEAny:
42164a71 4036 return 1;
742732c7 4037 case PrefixHLERelease:
42164a71
L
4038 if (i.prefix[HLE_PREFIX] != XRELEASE_PREFIX_OPCODE)
4039 {
4040 as_bad (_("instruction `%s' after `xacquire' not allowed"),
4041 i.tm.name);
4042 return 0;
4043 }
8dc0818e 4044 if (i.mem_operands == 0 || !(i.flags[i.operands - 1] & Operand_Mem))
42164a71
L
4045 {
4046 as_bad (_("memory destination needed for instruction `%s'"
4047 " after `xrelease'"), i.tm.name);
4048 return 0;
4049 }
4050 return 1;
4051 }
4052}
4053
b6f8c7c4
L
4054/* Try the shortest encoding by shortening operand size. */
4055
4056static void
4057optimize_encoding (void)
4058{
a0a1771e 4059 unsigned int j;
b6f8c7c4
L
4060
4061 if (optimize_for_space
72aea328 4062 && !is_any_vex_encoding (&i.tm)
b6f8c7c4
L
4063 && i.reg_operands == 1
4064 && i.imm_operands == 1
4065 && !i.types[1].bitfield.byte
4066 && i.op[0].imms->X_op == O_constant
4067 && fits_in_imm7 (i.op[0].imms->X_add_number)
72aea328 4068 && (i.tm.base_opcode == 0xa8
b6f8c7c4
L
4069 || (i.tm.base_opcode == 0xf6
4070 && i.tm.extension_opcode == 0x0)))
4071 {
4072 /* Optimize: -Os:
4073 test $imm7, %r64/%r32/%r16 -> test $imm7, %r8
4074 */
4075 unsigned int base_regnum = i.op[1].regs->reg_num;
4076 if (flag_code == CODE_64BIT || base_regnum < 4)
4077 {
4078 i.types[1].bitfield.byte = 1;
4079 /* Ignore the suffix. */
4080 i.suffix = 0;
7697afb6
JB
4081 /* Convert to byte registers. */
4082 if (i.types[1].bitfield.word)
4083 j = 16;
4084 else if (i.types[1].bitfield.dword)
4085 j = 32;
4086 else
4087 j = 48;
4088 if (!(i.op[1].regs->reg_flags & RegRex) && base_regnum < 4)
4089 j += 8;
4090 i.op[1].regs -= j;
b6f8c7c4
L
4091 }
4092 }
4093 else if (flag_code == CODE_64BIT
72aea328 4094 && !is_any_vex_encoding (&i.tm)
d3d50934
L
4095 && ((i.types[1].bitfield.qword
4096 && i.reg_operands == 1
b6f8c7c4
L
4097 && i.imm_operands == 1
4098 && i.op[0].imms->X_op == O_constant
507916b8 4099 && ((i.tm.base_opcode == 0xb8
b6f8c7c4
L
4100 && i.tm.extension_opcode == None
4101 && fits_in_unsigned_long (i.op[0].imms->X_add_number))
4102 || (fits_in_imm31 (i.op[0].imms->X_add_number)
72aea328
JB
4103 && ((i.tm.base_opcode == 0x24
4104 || i.tm.base_opcode == 0xa8)
b6f8c7c4
L
4105 || (i.tm.base_opcode == 0x80
4106 && i.tm.extension_opcode == 0x4)
4107 || ((i.tm.base_opcode == 0xf6
507916b8 4108 || (i.tm.base_opcode | 1) == 0xc7)
b8364fa7
JB
4109 && i.tm.extension_opcode == 0x0)))
4110 || (fits_in_imm7 (i.op[0].imms->X_add_number)
4111 && i.tm.base_opcode == 0x83
4112 && i.tm.extension_opcode == 0x4)))
d3d50934
L
4113 || (i.types[0].bitfield.qword
4114 && ((i.reg_operands == 2
4115 && i.op[0].regs == i.op[1].regs
72aea328
JB
4116 && (i.tm.base_opcode == 0x30
4117 || i.tm.base_opcode == 0x28))
d3d50934
L
4118 || (i.reg_operands == 1
4119 && i.operands == 1
72aea328 4120 && i.tm.base_opcode == 0x30)))))
b6f8c7c4
L
4121 {
4122 /* Optimize: -O:
4123 andq $imm31, %r64 -> andl $imm31, %r32
b8364fa7 4124 andq $imm7, %r64 -> andl $imm7, %r32
b6f8c7c4
L
4125 testq $imm31, %r64 -> testl $imm31, %r32
4126 xorq %r64, %r64 -> xorl %r32, %r32
4127 subq %r64, %r64 -> subl %r32, %r32
4128 movq $imm31, %r64 -> movl $imm31, %r32
4129 movq $imm32, %r64 -> movl $imm32, %r32
4130 */
4131 i.tm.opcode_modifier.norex64 = 1;
507916b8 4132 if (i.tm.base_opcode == 0xb8 || (i.tm.base_opcode | 1) == 0xc7)
b6f8c7c4
L
4133 {
4134 /* Handle
4135 movq $imm31, %r64 -> movl $imm31, %r32
4136 movq $imm32, %r64 -> movl $imm32, %r32
4137 */
4138 i.tm.operand_types[0].bitfield.imm32 = 1;
4139 i.tm.operand_types[0].bitfield.imm32s = 0;
4140 i.tm.operand_types[0].bitfield.imm64 = 0;
4141 i.types[0].bitfield.imm32 = 1;
4142 i.types[0].bitfield.imm32s = 0;
4143 i.types[0].bitfield.imm64 = 0;
4144 i.types[1].bitfield.dword = 1;
4145 i.types[1].bitfield.qword = 0;
507916b8 4146 if ((i.tm.base_opcode | 1) == 0xc7)
b6f8c7c4
L
4147 {
4148 /* Handle
4149 movq $imm31, %r64 -> movl $imm31, %r32
4150 */
507916b8 4151 i.tm.base_opcode = 0xb8;
b6f8c7c4 4152 i.tm.extension_opcode = None;
507916b8 4153 i.tm.opcode_modifier.w = 0;
b6f8c7c4
L
4154 i.tm.opcode_modifier.modrm = 0;
4155 }
4156 }
4157 }
5641ec01
JB
4158 else if (optimize > 1
4159 && !optimize_for_space
72aea328 4160 && !is_any_vex_encoding (&i.tm)
5641ec01
JB
4161 && i.reg_operands == 2
4162 && i.op[0].regs == i.op[1].regs
4163 && ((i.tm.base_opcode & ~(Opcode_D | 1)) == 0x8
4164 || (i.tm.base_opcode & ~(Opcode_D | 1)) == 0x20)
4165 && (flag_code != CODE_64BIT || !i.types[0].bitfield.dword))
4166 {
4167 /* Optimize: -O2:
4168 andb %rN, %rN -> testb %rN, %rN
4169 andw %rN, %rN -> testw %rN, %rN
4170 andq %rN, %rN -> testq %rN, %rN
4171 orb %rN, %rN -> testb %rN, %rN
4172 orw %rN, %rN -> testw %rN, %rN
4173 orq %rN, %rN -> testq %rN, %rN
4174
4175 and outside of 64-bit mode
4176
4177 andl %rN, %rN -> testl %rN, %rN
4178 orl %rN, %rN -> testl %rN, %rN
4179 */
4180 i.tm.base_opcode = 0x84 | (i.tm.base_opcode & 1);
4181 }
99112332 4182 else if (i.reg_operands == 3
b6f8c7c4
L
4183 && i.op[0].regs == i.op[1].regs
4184 && !i.types[2].bitfield.xmmword
4185 && (i.tm.opcode_modifier.vex
7a69eac3 4186 || ((!i.mask || i.mask->zeroing)
b6f8c7c4 4187 && !i.rounding
e771e7c9 4188 && is_evex_encoding (&i.tm)
80c34c38 4189 && (i.vec_encoding != vex_encoding_evex
dd22218c 4190 || cpu_arch_isa_flags.bitfield.cpuavx512vl
80c34c38 4191 || i.tm.cpu_flags.bitfield.cpuavx512vl
7091c612 4192 || (i.tm.operand_types[2].bitfield.zmmword
dd22218c 4193 && i.types[2].bitfield.ymmword))))
b6f8c7c4
L
4194 && ((i.tm.base_opcode == 0x55
4195 || i.tm.base_opcode == 0x6655
4196 || i.tm.base_opcode == 0x66df
4197 || i.tm.base_opcode == 0x57
4198 || i.tm.base_opcode == 0x6657
8305403a
L
4199 || i.tm.base_opcode == 0x66ef
4200 || i.tm.base_opcode == 0x66f8
4201 || i.tm.base_opcode == 0x66f9
4202 || i.tm.base_opcode == 0x66fa
1424ad86
JB
4203 || i.tm.base_opcode == 0x66fb
4204 || i.tm.base_opcode == 0x42
4205 || i.tm.base_opcode == 0x6642
4206 || i.tm.base_opcode == 0x47
4207 || i.tm.base_opcode == 0x6647)
b6f8c7c4
L
4208 && i.tm.extension_opcode == None))
4209 {
99112332 4210 /* Optimize: -O1:
8305403a
L
4211 VOP, one of vandnps, vandnpd, vxorps, vxorpd, vpsubb, vpsubd,
4212 vpsubq and vpsubw:
b6f8c7c4
L
4213 EVEX VOP %zmmM, %zmmM, %zmmN
4214 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4215 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4216 EVEX VOP %ymmM, %ymmM, %ymmN
4217 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4218 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4219 VEX VOP %ymmM, %ymmM, %ymmN
4220 -> VEX VOP %xmmM, %xmmM, %xmmN
4221 VOP, one of vpandn and vpxor:
4222 VEX VOP %ymmM, %ymmM, %ymmN
4223 -> VEX VOP %xmmM, %xmmM, %xmmN
4224 VOP, one of vpandnd and vpandnq:
4225 EVEX VOP %zmmM, %zmmM, %zmmN
4226 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4227 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4228 EVEX VOP %ymmM, %ymmM, %ymmN
4229 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4230 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4231 VOP, one of vpxord and vpxorq:
4232 EVEX VOP %zmmM, %zmmM, %zmmN
4233 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4234 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4235 EVEX VOP %ymmM, %ymmM, %ymmN
4236 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4237 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
1424ad86
JB
4238 VOP, one of kxord and kxorq:
4239 VEX VOP %kM, %kM, %kN
4240 -> VEX kxorw %kM, %kM, %kN
4241 VOP, one of kandnd and kandnq:
4242 VEX VOP %kM, %kM, %kN
4243 -> VEX kandnw %kM, %kM, %kN
b6f8c7c4 4244 */
e771e7c9 4245 if (is_evex_encoding (&i.tm))
b6f8c7c4 4246 {
7b1d7ca1 4247 if (i.vec_encoding != vex_encoding_evex)
b6f8c7c4
L
4248 {
4249 i.tm.opcode_modifier.vex = VEX128;
4250 i.tm.opcode_modifier.vexw = VEXW0;
4251 i.tm.opcode_modifier.evex = 0;
4252 }
7b1d7ca1 4253 else if (optimize > 1)
dd22218c
L
4254 i.tm.opcode_modifier.evex = EVEX128;
4255 else
4256 return;
b6f8c7c4 4257 }
f74a6307 4258 else if (i.tm.operand_types[0].bitfield.class == RegMask)
1424ad86
JB
4259 {
4260 i.tm.base_opcode &= 0xff;
4261 i.tm.opcode_modifier.vexw = VEXW0;
4262 }
b6f8c7c4
L
4263 else
4264 i.tm.opcode_modifier.vex = VEX128;
4265
4266 if (i.tm.opcode_modifier.vex)
4267 for (j = 0; j < 3; j++)
4268 {
4269 i.types[j].bitfield.xmmword = 1;
4270 i.types[j].bitfield.ymmword = 0;
4271 }
4272 }
392a5972 4273 else if (i.vec_encoding != vex_encoding_evex
97ed31ae 4274 && !i.types[0].bitfield.zmmword
392a5972 4275 && !i.types[1].bitfield.zmmword
97ed31ae 4276 && !i.mask
a0a1771e 4277 && !i.broadcast
97ed31ae 4278 && is_evex_encoding (&i.tm)
392a5972
L
4279 && ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0x666f
4280 || (i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf36f
a0a1771e
JB
4281 || (i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf26f
4282 || (i.tm.base_opcode & ~4) == 0x66db
4283 || (i.tm.base_opcode & ~4) == 0x66eb)
97ed31ae
L
4284 && i.tm.extension_opcode == None)
4285 {
4286 /* Optimize: -O1:
4287 VOP, one of vmovdqa32, vmovdqa64, vmovdqu8, vmovdqu16,
4288 vmovdqu32 and vmovdqu64:
4289 EVEX VOP %xmmM, %xmmN
4290 -> VEX vmovdqa|vmovdqu %xmmM, %xmmN (M and N < 16)
4291 EVEX VOP %ymmM, %ymmN
4292 -> VEX vmovdqa|vmovdqu %ymmM, %ymmN (M and N < 16)
4293 EVEX VOP %xmmM, mem
4294 -> VEX vmovdqa|vmovdqu %xmmM, mem (M < 16)
4295 EVEX VOP %ymmM, mem
4296 -> VEX vmovdqa|vmovdqu %ymmM, mem (M < 16)
4297 EVEX VOP mem, %xmmN
4298 -> VEX mvmovdqa|vmovdquem, %xmmN (N < 16)
4299 EVEX VOP mem, %ymmN
4300 -> VEX vmovdqa|vmovdqu mem, %ymmN (N < 16)
a0a1771e
JB
4301 VOP, one of vpand, vpandn, vpor, vpxor:
4302 EVEX VOP{d,q} %xmmL, %xmmM, %xmmN
4303 -> VEX VOP %xmmL, %xmmM, %xmmN (L, M, and N < 16)
4304 EVEX VOP{d,q} %ymmL, %ymmM, %ymmN
4305 -> VEX VOP %ymmL, %ymmM, %ymmN (L, M, and N < 16)
4306 EVEX VOP{d,q} mem, %xmmM, %xmmN
4307 -> VEX VOP mem, %xmmM, %xmmN (M and N < 16)
4308 EVEX VOP{d,q} mem, %ymmM, %ymmN
4309 -> VEX VOP mem, %ymmM, %ymmN (M and N < 16)
97ed31ae 4310 */
a0a1771e 4311 for (j = 0; j < i.operands; j++)
392a5972
L
4312 if (operand_type_check (i.types[j], disp)
4313 && i.op[j].disps->X_op == O_constant)
4314 {
4315 /* Since the VEX prefix has 2 or 3 bytes, the EVEX prefix
4316 has 4 bytes, EVEX Disp8 has 1 byte and VEX Disp32 has 4
4317 bytes, we choose EVEX Disp8 over VEX Disp32. */
4318 int evex_disp8, vex_disp8;
4319 unsigned int memshift = i.memshift;
4320 offsetT n = i.op[j].disps->X_add_number;
4321
4322 evex_disp8 = fits_in_disp8 (n);
4323 i.memshift = 0;
4324 vex_disp8 = fits_in_disp8 (n);
4325 if (evex_disp8 != vex_disp8)
4326 {
4327 i.memshift = memshift;
4328 return;
4329 }
4330
4331 i.types[j].bitfield.disp8 = vex_disp8;
4332 break;
4333 }
4334 if ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf26f)
4335 i.tm.base_opcode ^= 0xf36f ^ 0xf26f;
97ed31ae
L
4336 i.tm.opcode_modifier.vex
4337 = i.types[0].bitfield.ymmword ? VEX256 : VEX128;
4338 i.tm.opcode_modifier.vexw = VEXW0;
79dec6b7
JB
4339 /* VPAND, VPOR, and VPXOR are commutative. */
4340 if (i.reg_operands == 3 && i.tm.base_opcode != 0x66df)
4341 i.tm.opcode_modifier.commutative = 1;
97ed31ae
L
4342 i.tm.opcode_modifier.evex = 0;
4343 i.tm.opcode_modifier.masking = 0;
a0a1771e 4344 i.tm.opcode_modifier.broadcast = 0;
97ed31ae
L
4345 i.tm.opcode_modifier.disp8memshift = 0;
4346 i.memshift = 0;
a0a1771e
JB
4347 if (j < i.operands)
4348 i.types[j].bitfield.disp8
4349 = fits_in_disp8 (i.op[j].disps->X_add_number);
97ed31ae 4350 }
b6f8c7c4
L
4351}
4352
ae531041
L
4353/* Return non-zero for load instruction. */
4354
4355static int
4356load_insn_p (void)
4357{
4358 unsigned int dest;
4359 int any_vex_p = is_any_vex_encoding (&i.tm);
4360 unsigned int base_opcode = i.tm.base_opcode | 1;
4361
4362 if (!any_vex_p)
4363 {
a09f656b 4364 /* Anysize insns: lea, invlpg, clflush, prefetchnta, prefetcht0,
4365 prefetcht1, prefetcht2, prefetchtw, bndmk, bndcl, bndcu, bndcn,
4366 bndstx, bndldx, prefetchwt1, clflushopt, clwb, cldemote. */
4367 if (i.tm.opcode_modifier.anysize)
ae531041
L
4368 return 0;
4369
a09f656b 4370 /* pop, popf, popa. */
4371 if (strcmp (i.tm.name, "pop") == 0
4372 || i.tm.base_opcode == 0x9d
4373 || i.tm.base_opcode == 0x61)
ae531041
L
4374 return 1;
4375
4376 /* movs, cmps, lods, scas. */
4377 if ((i.tm.base_opcode | 0xb) == 0xaf)
4378 return 1;
4379
a09f656b 4380 /* outs, xlatb. */
4381 if (base_opcode == 0x6f
4382 || i.tm.base_opcode == 0xd7)
ae531041 4383 return 1;
a09f656b 4384 /* NB: For AMD-specific insns with implicit memory operands,
4385 they're intentionally not covered. */
ae531041
L
4386 }
4387
4388 /* No memory operand. */
4389 if (!i.mem_operands)
4390 return 0;
4391
4392 if (any_vex_p)
4393 {
4394 /* vldmxcsr. */
4395 if (i.tm.base_opcode == 0xae
4396 && i.tm.opcode_modifier.vex
441f6aca 4397 && i.tm.opcode_modifier.opcodespace == SPACE_0F
ae531041
L
4398 && i.tm.extension_opcode == 2)
4399 return 1;
4400 }
4401 else
4402 {
4403 /* test, not, neg, mul, imul, div, idiv. */
4404 if ((i.tm.base_opcode == 0xf6 || i.tm.base_opcode == 0xf7)
4405 && i.tm.extension_opcode != 1)
4406 return 1;
4407
4408 /* inc, dec. */
4409 if (base_opcode == 0xff && i.tm.extension_opcode <= 1)
4410 return 1;
4411
4412 /* add, or, adc, sbb, and, sub, xor, cmp. */
4413 if (i.tm.base_opcode >= 0x80 && i.tm.base_opcode <= 0x83)
4414 return 1;
4415
4416 /* bt, bts, btr, btc. */
4417 if (i.tm.base_opcode == 0xfba
4418 && (i.tm.extension_opcode >= 4 && i.tm.extension_opcode <= 7))
4419 return 1;
4420
4421 /* rol, ror, rcl, rcr, shl/sal, shr, sar. */
4422 if ((base_opcode == 0xc1
4423 || (i.tm.base_opcode >= 0xd0 && i.tm.base_opcode <= 0xd3))
4424 && i.tm.extension_opcode != 6)
4425 return 1;
4426
70e95837 4427 /* cmpxchg8b, cmpxchg16b, xrstors, vmptrld. */
ae531041 4428 if (i.tm.base_opcode == 0xfc7
70e95837
JB
4429 && i.tm.opcode_modifier.opcodeprefix == PREFIX_NONE
4430 && (i.tm.extension_opcode == 1 || i.tm.extension_opcode == 3
4431 || i.tm.extension_opcode == 6))
ae531041
L
4432 return 1;
4433
4434 /* fxrstor, ldmxcsr, xrstor. */
4435 if (i.tm.base_opcode == 0xfae
4436 && (i.tm.extension_opcode == 1
4437 || i.tm.extension_opcode == 2
4438 || i.tm.extension_opcode == 5))
4439 return 1;
4440
4441 /* lgdt, lidt, lmsw. */
4442 if (i.tm.base_opcode == 0xf01
4443 && (i.tm.extension_opcode == 2
4444 || i.tm.extension_opcode == 3
4445 || i.tm.extension_opcode == 6))
4446 return 1;
4447
ae531041
L
4448 /* Check for x87 instructions. */
4449 if (i.tm.base_opcode >= 0xd8 && i.tm.base_opcode <= 0xdf)
4450 {
4451 /* Skip fst, fstp, fstenv, fstcw. */
4452 if (i.tm.base_opcode == 0xd9
4453 && (i.tm.extension_opcode == 2
4454 || i.tm.extension_opcode == 3
4455 || i.tm.extension_opcode == 6
4456 || i.tm.extension_opcode == 7))
4457 return 0;
4458
4459 /* Skip fisttp, fist, fistp, fstp. */
4460 if (i.tm.base_opcode == 0xdb
4461 && (i.tm.extension_opcode == 1
4462 || i.tm.extension_opcode == 2
4463 || i.tm.extension_opcode == 3
4464 || i.tm.extension_opcode == 7))
4465 return 0;
4466
4467 /* Skip fisttp, fst, fstp, fsave, fstsw. */
4468 if (i.tm.base_opcode == 0xdd
4469 && (i.tm.extension_opcode == 1
4470 || i.tm.extension_opcode == 2
4471 || i.tm.extension_opcode == 3
4472 || i.tm.extension_opcode == 6
4473 || i.tm.extension_opcode == 7))
4474 return 0;
4475
4476 /* Skip fisttp, fist, fistp, fbstp, fistp. */
4477 if (i.tm.base_opcode == 0xdf
4478 && (i.tm.extension_opcode == 1
4479 || i.tm.extension_opcode == 2
4480 || i.tm.extension_opcode == 3
4481 || i.tm.extension_opcode == 6
4482 || i.tm.extension_opcode == 7))
4483 return 0;
4484
4485 return 1;
4486 }
4487 }
4488
4489 dest = i.operands - 1;
4490
4491 /* Check fake imm8 operand and 3 source operands. */
4492 if ((i.tm.opcode_modifier.immext
4493 || i.tm.opcode_modifier.vexsources == VEX3SOURCES)
4494 && i.types[dest].bitfield.imm8)
4495 dest--;
4496
4497 /* add, or, adc, sbb, and, sub, xor, cmp, test, xchg, xadd */
4498 if (!any_vex_p
4499 && (base_opcode == 0x1
4500 || base_opcode == 0x9
4501 || base_opcode == 0x11
4502 || base_opcode == 0x19
4503 || base_opcode == 0x21
4504 || base_opcode == 0x29
4505 || base_opcode == 0x31
4506 || base_opcode == 0x39
4507 || (i.tm.base_opcode >= 0x84 && i.tm.base_opcode <= 0x87)
4508 || base_opcode == 0xfc1))
4509 return 1;
4510
4511 /* Check for load instruction. */
4512 return (i.types[dest].bitfield.class != ClassNone
4513 || i.types[dest].bitfield.instance == Accum);
4514}
4515
4516/* Output lfence, 0xfaee8, after instruction. */
4517
4518static void
4519insert_lfence_after (void)
4520{
4521 if (lfence_after_load && load_insn_p ())
4522 {
a09f656b 4523 /* There are also two REP string instructions that require
4524 special treatment. Specifically, the compare string (CMPS)
4525 and scan string (SCAS) instructions set EFLAGS in a manner
4526 that depends on the data being compared/scanned. When used
4527 with a REP prefix, the number of iterations may therefore
4528 vary depending on this data. If the data is a program secret
4529 chosen by the adversary using an LVI method,
4530 then this data-dependent behavior may leak some aspect
4531 of the secret. */
4532 if (((i.tm.base_opcode | 0x1) == 0xa7
4533 || (i.tm.base_opcode | 0x1) == 0xaf)
4534 && i.prefix[REP_PREFIX])
4535 {
4536 as_warn (_("`%s` changes flags which would affect control flow behavior"),
4537 i.tm.name);
4538 }
ae531041
L
4539 char *p = frag_more (3);
4540 *p++ = 0xf;
4541 *p++ = 0xae;
4542 *p = 0xe8;
4543 }
4544}
4545
4546/* Output lfence, 0xfaee8, before instruction. */
4547
4548static void
4549insert_lfence_before (void)
4550{
4551 char *p;
4552
4553 if (is_any_vex_encoding (&i.tm))
4554 return;
4555
4556 if (i.tm.base_opcode == 0xff
4557 && (i.tm.extension_opcode == 2 || i.tm.extension_opcode == 4))
4558 {
4559 /* Insert lfence before indirect branch if needed. */
4560
4561 if (lfence_before_indirect_branch == lfence_branch_none)
4562 return;
4563
4564 if (i.operands != 1)
4565 abort ();
4566
4567 if (i.reg_operands == 1)
4568 {
4569 /* Indirect branch via register. Don't insert lfence with
4570 -mlfence-after-load=yes. */
4571 if (lfence_after_load
4572 || lfence_before_indirect_branch == lfence_branch_memory)
4573 return;
4574 }
4575 else if (i.mem_operands == 1
4576 && lfence_before_indirect_branch != lfence_branch_register)
4577 {
4578 as_warn (_("indirect `%s` with memory operand should be avoided"),
4579 i.tm.name);
4580 return;
4581 }
4582 else
4583 return;
4584
4585 if (last_insn.kind != last_insn_other
4586 && last_insn.seg == now_seg)
4587 {
4588 as_warn_where (last_insn.file, last_insn.line,
4589 _("`%s` skips -mlfence-before-indirect-branch on `%s`"),
4590 last_insn.name, i.tm.name);
4591 return;
4592 }
4593
4594 p = frag_more (3);
4595 *p++ = 0xf;
4596 *p++ = 0xae;
4597 *p = 0xe8;
4598 return;
4599 }
4600
503648e4 4601 /* Output or/not/shl and lfence before near ret. */
ae531041
L
4602 if (lfence_before_ret != lfence_before_ret_none
4603 && (i.tm.base_opcode == 0xc2
503648e4 4604 || i.tm.base_opcode == 0xc3))
ae531041
L
4605 {
4606 if (last_insn.kind != last_insn_other
4607 && last_insn.seg == now_seg)
4608 {
4609 as_warn_where (last_insn.file, last_insn.line,
4610 _("`%s` skips -mlfence-before-ret on `%s`"),
4611 last_insn.name, i.tm.name);
4612 return;
4613 }
a09f656b 4614
a09f656b 4615 /* Near ret ingore operand size override under CPU64. */
503648e4 4616 char prefix = flag_code == CODE_64BIT
4617 ? 0x48
4618 : i.prefix[DATA_PREFIX] ? 0x66 : 0x0;
a09f656b 4619
4620 if (lfence_before_ret == lfence_before_ret_not)
4621 {
4622 /* not: 0xf71424, may add prefix
4623 for operand size override or 64-bit code. */
4624 p = frag_more ((prefix ? 2 : 0) + 6 + 3);
4625 if (prefix)
4626 *p++ = prefix;
ae531041
L
4627 *p++ = 0xf7;
4628 *p++ = 0x14;
4629 *p++ = 0x24;
a09f656b 4630 if (prefix)
4631 *p++ = prefix;
ae531041
L
4632 *p++ = 0xf7;
4633 *p++ = 0x14;
4634 *p++ = 0x24;
4635 }
a09f656b 4636 else
4637 {
4638 p = frag_more ((prefix ? 1 : 0) + 4 + 3);
4639 if (prefix)
4640 *p++ = prefix;
4641 if (lfence_before_ret == lfence_before_ret_or)
4642 {
4643 /* or: 0x830c2400, may add prefix
4644 for operand size override or 64-bit code. */
4645 *p++ = 0x83;
4646 *p++ = 0x0c;
4647 }
4648 else
4649 {
4650 /* shl: 0xc1242400, may add prefix
4651 for operand size override or 64-bit code. */
4652 *p++ = 0xc1;
4653 *p++ = 0x24;
4654 }
4655
4656 *p++ = 0x24;
4657 *p++ = 0x0;
4658 }
4659
ae531041
L
4660 *p++ = 0xf;
4661 *p++ = 0xae;
4662 *p = 0xe8;
4663 }
4664}
4665
252b5132
RH
4666/* This is the guts of the machine-dependent assembler. LINE points to a
4667 machine dependent instruction. This function is supposed to emit
4668 the frags/bytes it assembles to. */
4669
4670void
65da13b5 4671md_assemble (char *line)
252b5132 4672{
40fb9820 4673 unsigned int j;
83b16ac6 4674 char mnemonic[MAX_MNEM_SIZE], mnem_suffix;
d3ce72d0 4675 const insn_template *t;
252b5132 4676
47926f60 4677 /* Initialize globals. */
252b5132
RH
4678 memset (&i, '\0', sizeof (i));
4679 for (j = 0; j < MAX_OPERANDS; j++)
1ae12ab7 4680 i.reloc[j] = NO_RELOC;
252b5132
RH
4681 memset (disp_expressions, '\0', sizeof (disp_expressions));
4682 memset (im_expressions, '\0', sizeof (im_expressions));
ce8a8b2f 4683 save_stack_p = save_stack;
252b5132
RH
4684
4685 /* First parse an instruction mnemonic & call i386_operand for the operands.
4686 We assume that the scrubber has arranged it so that line[0] is the valid
47926f60 4687 start of a (possibly prefixed) mnemonic. */
252b5132 4688
29b0f896
AM
4689 line = parse_insn (line, mnemonic);
4690 if (line == NULL)
4691 return;
83b16ac6 4692 mnem_suffix = i.suffix;
252b5132 4693
29b0f896 4694 line = parse_operands (line, mnemonic);
ee86248c 4695 this_operand = -1;
8325cc63
JB
4696 xfree (i.memop1_string);
4697 i.memop1_string = NULL;
29b0f896
AM
4698 if (line == NULL)
4699 return;
252b5132 4700
29b0f896
AM
4701 /* Now we've parsed the mnemonic into a set of templates, and have the
4702 operands at hand. */
4703
b630c145
JB
4704 /* All Intel opcodes have reversed operands except for "bound", "enter",
4705 "monitor*", "mwait*", "tpause", and "umwait". We also don't reverse
4706 intersegment "jmp" and "call" instructions with 2 immediate operands so
4707 that the immediate segment precedes the offset, as it does when in AT&T
4708 mode. */
4d456e3d
L
4709 if (intel_syntax
4710 && i.operands > 1
29b0f896 4711 && (strcmp (mnemonic, "bound") != 0)
30123838 4712 && (strcmp (mnemonic, "invlpga") != 0)
eedb0f2c
JB
4713 && (strncmp (mnemonic, "monitor", 7) != 0)
4714 && (strncmp (mnemonic, "mwait", 5) != 0)
b630c145
JB
4715 && (strcmp (mnemonic, "tpause") != 0)
4716 && (strcmp (mnemonic, "umwait") != 0)
40fb9820
L
4717 && !(operand_type_check (i.types[0], imm)
4718 && operand_type_check (i.types[1], imm)))
29b0f896
AM
4719 swap_operands ();
4720
ec56d5c0
JB
4721 /* The order of the immediates should be reversed
4722 for 2 immediates extrq and insertq instructions */
4723 if (i.imm_operands == 2
4724 && (strcmp (mnemonic, "extrq") == 0
4725 || strcmp (mnemonic, "insertq") == 0))
4726 swap_2_operands (0, 1);
4727
29b0f896
AM
4728 if (i.imm_operands)
4729 optimize_imm ();
4730
b300c311
L
4731 /* Don't optimize displacement for movabs since it only takes 64bit
4732 displacement. */
4733 if (i.disp_operands
a501d77e 4734 && i.disp_encoding != disp_encoding_32bit
862be3fb
L
4735 && (flag_code != CODE_64BIT
4736 || strcmp (mnemonic, "movabs") != 0))
4737 optimize_disp ();
29b0f896
AM
4738
4739 /* Next, we find a template that matches the given insn,
4740 making sure the overlap of the given operands types is consistent
4741 with the template operand types. */
252b5132 4742
83b16ac6 4743 if (!(t = match_template (mnem_suffix)))
29b0f896 4744 return;
252b5132 4745
7bab8ab5 4746 if (sse_check != check_none
81f8a913 4747 && !i.tm.opcode_modifier.noavx
6e3e5c9e 4748 && !i.tm.cpu_flags.bitfield.cpuavx
569d50f1 4749 && !i.tm.cpu_flags.bitfield.cpuavx512f
daf50ae7
L
4750 && (i.tm.cpu_flags.bitfield.cpusse
4751 || i.tm.cpu_flags.bitfield.cpusse2
4752 || i.tm.cpu_flags.bitfield.cpusse3
4753 || i.tm.cpu_flags.bitfield.cpussse3
4754 || i.tm.cpu_flags.bitfield.cpusse4_1
6e3e5c9e
JB
4755 || i.tm.cpu_flags.bitfield.cpusse4_2
4756 || i.tm.cpu_flags.bitfield.cpupclmul
4757 || i.tm.cpu_flags.bitfield.cpuaes
569d50f1 4758 || i.tm.cpu_flags.bitfield.cpusha
6e3e5c9e 4759 || i.tm.cpu_flags.bitfield.cpugfni))
daf50ae7 4760 {
7bab8ab5 4761 (sse_check == check_warning
daf50ae7
L
4762 ? as_warn
4763 : as_bad) (_("SSE instruction `%s' is used"), i.tm.name);
4764 }
4765
40fb9820 4766 if (i.tm.opcode_modifier.fwait)
29b0f896
AM
4767 if (!add_prefix (FWAIT_OPCODE))
4768 return;
252b5132 4769
d5de92cf 4770 /* Check if REP prefix is OK. */
742732c7 4771 if (i.rep_prefix && i.tm.opcode_modifier.prefixok != PrefixRep)
d5de92cf
L
4772 {
4773 as_bad (_("invalid instruction `%s' after `%s'"),
4774 i.tm.name, i.rep_prefix);
4775 return;
4776 }
4777
c1ba0266
L
4778 /* Check for lock without a lockable instruction. Destination operand
4779 must be memory unless it is xchg (0x86). */
c32fa91d 4780 if (i.prefix[LOCK_PREFIX]
742732c7 4781 && (i.tm.opcode_modifier.prefixok < PrefixLock
c1ba0266
L
4782 || i.mem_operands == 0
4783 || (i.tm.base_opcode != 0x86
8dc0818e 4784 && !(i.flags[i.operands - 1] & Operand_Mem))))
c32fa91d
L
4785 {
4786 as_bad (_("expecting lockable instruction after `lock'"));
4787 return;
4788 }
4789
40d231b4
JB
4790 /* Check for data size prefix on VEX/XOP/EVEX encoded and SIMD insns. */
4791 if (i.prefix[DATA_PREFIX]
4792 && (is_any_vex_encoding (&i.tm)
4793 || i.tm.operand_types[i.imm_operands].bitfield.class >= RegMMX
4794 || i.tm.operand_types[i.imm_operands + 1].bitfield.class >= RegMMX))
7a8655d2
JB
4795 {
4796 as_bad (_("data size prefix invalid with `%s'"), i.tm.name);
4797 return;
4798 }
4799
42164a71 4800 /* Check if HLE prefix is OK. */
165de32a 4801 if (i.hle_prefix && !check_hle ())
42164a71
L
4802 return;
4803
7e8b059b
L
4804 /* Check BND prefix. */
4805 if (i.bnd_prefix && !i.tm.opcode_modifier.bndprefixok)
4806 as_bad (_("expecting valid branch instruction after `bnd'"));
4807
04ef582a 4808 /* Check NOTRACK prefix. */
742732c7 4809 if (i.notrack_prefix && i.tm.opcode_modifier.prefixok != PrefixNoTrack)
9fef80d6 4810 as_bad (_("expecting indirect branch instruction after `notrack'"));
04ef582a 4811
327e8c42
JB
4812 if (i.tm.cpu_flags.bitfield.cpumpx)
4813 {
4814 if (flag_code == CODE_64BIT && i.prefix[ADDR_PREFIX])
4815 as_bad (_("32-bit address isn't allowed in 64-bit MPX instructions."));
4816 else if (flag_code != CODE_16BIT
4817 ? i.prefix[ADDR_PREFIX]
4818 : i.mem_operands && !i.prefix[ADDR_PREFIX])
4819 as_bad (_("16-bit address isn't allowed in MPX instructions"));
4820 }
7e8b059b
L
4821
4822 /* Insert BND prefix. */
76d3a78a
JB
4823 if (add_bnd_prefix && i.tm.opcode_modifier.bndprefixok)
4824 {
4825 if (!i.prefix[BND_PREFIX])
4826 add_prefix (BND_PREFIX_OPCODE);
4827 else if (i.prefix[BND_PREFIX] != BND_PREFIX_OPCODE)
4828 {
4829 as_warn (_("replacing `rep'/`repe' prefix by `bnd'"));
4830 i.prefix[BND_PREFIX] = BND_PREFIX_OPCODE;
4831 }
4832 }
7e8b059b 4833
29b0f896 4834 /* Check string instruction segment overrides. */
51c8edf6 4835 if (i.tm.opcode_modifier.isstring >= IS_STRING_ES_OP0)
29b0f896 4836 {
51c8edf6 4837 gas_assert (i.mem_operands);
29b0f896 4838 if (!check_string ())
5dd0794d 4839 return;
fc0763e6 4840 i.disp_operands = 0;
29b0f896 4841 }
5dd0794d 4842
b6f8c7c4
L
4843 if (optimize && !i.no_optimize && i.tm.opcode_modifier.optimize)
4844 optimize_encoding ();
4845
29b0f896
AM
4846 if (!process_suffix ())
4847 return;
e413e4e9 4848
921eafea 4849 /* Update operand types and check extended states. */
bc0844ae 4850 for (j = 0; j < i.operands; j++)
921eafea
L
4851 {
4852 i.types[j] = operand_type_and (i.types[j], i.tm.operand_types[j]);
3d70986f 4853 switch (i.tm.operand_types[j].bitfield.class)
921eafea
L
4854 {
4855 default:
4856 break;
4857 case RegMMX:
4858 i.xstate |= xstate_mmx;
4859 break;
4860 case RegMask:
32930e4e 4861 i.xstate |= xstate_mask;
921eafea
L
4862 break;
4863 case RegSIMD:
3d70986f 4864 if (i.tm.operand_types[j].bitfield.tmmword)
921eafea 4865 i.xstate |= xstate_tmm;
3d70986f 4866 else if (i.tm.operand_types[j].bitfield.zmmword)
921eafea 4867 i.xstate |= xstate_zmm;
3d70986f 4868 else if (i.tm.operand_types[j].bitfield.ymmword)
921eafea 4869 i.xstate |= xstate_ymm;
3d70986f 4870 else if (i.tm.operand_types[j].bitfield.xmmword)
921eafea
L
4871 i.xstate |= xstate_xmm;
4872 break;
4873 }
4874 }
bc0844ae 4875
29b0f896
AM
4876 /* Make still unresolved immediate matches conform to size of immediate
4877 given in i.suffix. */
4878 if (!finalize_imm ())
4879 return;
252b5132 4880
40fb9820 4881 if (i.types[0].bitfield.imm1)
29b0f896 4882 i.imm_operands = 0; /* kludge for shift insns. */
252b5132 4883
9afe6eb8
L
4884 /* We only need to check those implicit registers for instructions
4885 with 3 operands or less. */
4886 if (i.operands <= 3)
4887 for (j = 0; j < i.operands; j++)
75e5731b
JB
4888 if (i.types[j].bitfield.instance != InstanceNone
4889 && !i.types[j].bitfield.xmmword)
9afe6eb8 4890 i.reg_operands--;
40fb9820 4891
29b0f896
AM
4892 /* For insns with operands there are more diddles to do to the opcode. */
4893 if (i.operands)
4894 {
4895 if (!process_operands ())
4896 return;
4897 }
8c190ce0 4898 else if (!quiet_warnings && i.tm.opcode_modifier.ugh)
29b0f896
AM
4899 {
4900 /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. */
4901 as_warn (_("translating to `%sp'"), i.tm.name);
4902 }
252b5132 4903
7a8655d2 4904 if (is_any_vex_encoding (&i.tm))
9e5e5283 4905 {
c1dc7af5 4906 if (!cpu_arch_flags.bitfield.cpui286)
9e5e5283 4907 {
c1dc7af5 4908 as_bad (_("instruction `%s' isn't supported outside of protected mode."),
9e5e5283
L
4909 i.tm.name);
4910 return;
4911 }
c0f3af97 4912
0b9404fd
JB
4913 /* Check for explicit REX prefix. */
4914 if (i.prefix[REX_PREFIX] || i.rex_encoding)
4915 {
4916 as_bad (_("REX prefix invalid with `%s'"), i.tm.name);
4917 return;
4918 }
4919
9e5e5283
L
4920 if (i.tm.opcode_modifier.vex)
4921 build_vex_prefix (t);
4922 else
4923 build_evex_prefix ();
0b9404fd
JB
4924
4925 /* The individual REX.RXBW bits got consumed. */
4926 i.rex &= REX_OPCODE;
9e5e5283 4927 }
43234a1e 4928
5dd85c99
SP
4929 /* Handle conversion of 'int $3' --> special int3 insn. XOP or FMA4
4930 instructions may define INT_OPCODE as well, so avoid this corner
4931 case for those instructions that use MODRM. */
4932 if (i.tm.base_opcode == INT_OPCODE
a6461c02
SP
4933 && !i.tm.opcode_modifier.modrm
4934 && i.op[0].imms->X_add_number == 3)
29b0f896
AM
4935 {
4936 i.tm.base_opcode = INT3_OPCODE;
4937 i.imm_operands = 0;
4938 }
252b5132 4939
0cfa3eb3
JB
4940 if ((i.tm.opcode_modifier.jump == JUMP
4941 || i.tm.opcode_modifier.jump == JUMP_BYTE
4942 || i.tm.opcode_modifier.jump == JUMP_DWORD)
29b0f896
AM
4943 && i.op[0].disps->X_op == O_constant)
4944 {
4945 /* Convert "jmp constant" (and "call constant") to a jump (call) to
4946 the absolute address given by the constant. Since ix86 jumps and
4947 calls are pc relative, we need to generate a reloc. */
4948 i.op[0].disps->X_add_symbol = &abs_symbol;
4949 i.op[0].disps->X_op = O_symbol;
4950 }
252b5132 4951
29b0f896
AM
4952 /* For 8 bit registers we need an empty rex prefix. Also if the
4953 instruction already has a prefix, we need to convert old
4954 registers to new ones. */
773f551c 4955
bab6aec1 4956 if ((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte
29b0f896 4957 && (i.op[0].regs->reg_flags & RegRex64) != 0)
bab6aec1 4958 || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte
29b0f896 4959 && (i.op[1].regs->reg_flags & RegRex64) != 0)
bab6aec1
JB
4960 || (((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte)
4961 || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte))
29b0f896
AM
4962 && i.rex != 0))
4963 {
4964 int x;
726c5dcd 4965
29b0f896
AM
4966 i.rex |= REX_OPCODE;
4967 for (x = 0; x < 2; x++)
4968 {
4969 /* Look for 8 bit operand that uses old registers. */
bab6aec1 4970 if (i.types[x].bitfield.class == Reg && i.types[x].bitfield.byte
29b0f896 4971 && (i.op[x].regs->reg_flags & RegRex64) == 0)
773f551c 4972 {
3f93af61 4973 gas_assert (!(i.op[x].regs->reg_flags & RegRex));
29b0f896
AM
4974 /* In case it is "hi" register, give up. */
4975 if (i.op[x].regs->reg_num > 3)
a540244d 4976 as_bad (_("can't encode register '%s%s' in an "
4eed87de 4977 "instruction requiring REX prefix."),
a540244d 4978 register_prefix, i.op[x].regs->reg_name);
773f551c 4979
29b0f896
AM
4980 /* Otherwise it is equivalent to the extended register.
4981 Since the encoding doesn't change this is merely
4982 cosmetic cleanup for debug output. */
4983
4984 i.op[x].regs = i.op[x].regs + 8;
773f551c 4985 }
29b0f896
AM
4986 }
4987 }
773f551c 4988
6b6b6807
L
4989 if (i.rex == 0 && i.rex_encoding)
4990 {
4991 /* Check if we can add a REX_OPCODE byte. Look for 8 bit operand
3f93af61 4992 that uses legacy register. If it is "hi" register, don't add
6b6b6807
L
4993 the REX_OPCODE byte. */
4994 int x;
4995 for (x = 0; x < 2; x++)
bab6aec1 4996 if (i.types[x].bitfield.class == Reg
6b6b6807
L
4997 && i.types[x].bitfield.byte
4998 && (i.op[x].regs->reg_flags & RegRex64) == 0
4999 && i.op[x].regs->reg_num > 3)
5000 {
3f93af61 5001 gas_assert (!(i.op[x].regs->reg_flags & RegRex));
6b6b6807
L
5002 i.rex_encoding = FALSE;
5003 break;
5004 }
5005
5006 if (i.rex_encoding)
5007 i.rex = REX_OPCODE;
5008 }
5009
7ab9ffdd 5010 if (i.rex != 0)
29b0f896
AM
5011 add_prefix (REX_OPCODE | i.rex);
5012
ae531041
L
5013 insert_lfence_before ();
5014
29b0f896
AM
5015 /* We are ready to output the insn. */
5016 output_insn ();
e379e5f3 5017
ae531041
L
5018 insert_lfence_after ();
5019
e379e5f3
L
5020 last_insn.seg = now_seg;
5021
5022 if (i.tm.opcode_modifier.isprefix)
5023 {
5024 last_insn.kind = last_insn_prefix;
5025 last_insn.name = i.tm.name;
5026 last_insn.file = as_where (&last_insn.line);
5027 }
5028 else
5029 last_insn.kind = last_insn_other;
29b0f896
AM
5030}
5031
5032static char *
e3bb37b5 5033parse_insn (char *line, char *mnemonic)
29b0f896
AM
5034{
5035 char *l = line;
5036 char *token_start = l;
5037 char *mnem_p;
5c6af06e 5038 int supported;
d3ce72d0 5039 const insn_template *t;
b6169b20 5040 char *dot_p = NULL;
29b0f896 5041
29b0f896
AM
5042 while (1)
5043 {
5044 mnem_p = mnemonic;
5045 while ((*mnem_p = mnemonic_chars[(unsigned char) *l]) != 0)
5046 {
b6169b20
L
5047 if (*mnem_p == '.')
5048 dot_p = mnem_p;
29b0f896
AM
5049 mnem_p++;
5050 if (mnem_p >= mnemonic + MAX_MNEM_SIZE)
45288df1 5051 {
29b0f896
AM
5052 as_bad (_("no such instruction: `%s'"), token_start);
5053 return NULL;
5054 }
5055 l++;
5056 }
5057 if (!is_space_char (*l)
5058 && *l != END_OF_INSN
e44823cf
JB
5059 && (intel_syntax
5060 || (*l != PREFIX_SEPARATOR
5061 && *l != ',')))
29b0f896
AM
5062 {
5063 as_bad (_("invalid character %s in mnemonic"),
5064 output_invalid (*l));
5065 return NULL;
5066 }
5067 if (token_start == l)
5068 {
e44823cf 5069 if (!intel_syntax && *l == PREFIX_SEPARATOR)
29b0f896
AM
5070 as_bad (_("expecting prefix; got nothing"));
5071 else
5072 as_bad (_("expecting mnemonic; got nothing"));
5073 return NULL;
5074 }
45288df1 5075
29b0f896 5076 /* Look up instruction (or prefix) via hash table. */
629310ab 5077 current_templates = (const templates *) str_hash_find (op_hash, mnemonic);
47926f60 5078
29b0f896
AM
5079 if (*l != END_OF_INSN
5080 && (!is_space_char (*l) || l[1] != END_OF_INSN)
5081 && current_templates
40fb9820 5082 && current_templates->start->opcode_modifier.isprefix)
29b0f896 5083 {
c6fb90c8 5084 if (!cpu_flags_check_cpu64 (current_templates->start->cpu_flags))
2dd88dca
JB
5085 {
5086 as_bad ((flag_code != CODE_64BIT
5087 ? _("`%s' is only supported in 64-bit mode")
5088 : _("`%s' is not supported in 64-bit mode")),
5089 current_templates->start->name);
5090 return NULL;
5091 }
29b0f896
AM
5092 /* If we are in 16-bit mode, do not allow addr16 or data16.
5093 Similarly, in 32-bit mode, do not allow addr32 or data32. */
673fe0f0
JB
5094 if ((current_templates->start->opcode_modifier.size == SIZE16
5095 || current_templates->start->opcode_modifier.size == SIZE32)
29b0f896 5096 && flag_code != CODE_64BIT
673fe0f0 5097 && ((current_templates->start->opcode_modifier.size == SIZE32)
29b0f896
AM
5098 ^ (flag_code == CODE_16BIT)))
5099 {
5100 as_bad (_("redundant %s prefix"),
5101 current_templates->start->name);
5102 return NULL;
45288df1 5103 }
31184569
JB
5104
5105 if (current_templates->start->base_opcode == PSEUDO_PREFIX)
29b0f896 5106 {
86fa6981 5107 /* Handle pseudo prefixes. */
31184569 5108 switch (current_templates->start->extension_opcode)
86fa6981 5109 {
41eb8e88 5110 case Prefix_Disp8:
86fa6981
L
5111 /* {disp8} */
5112 i.disp_encoding = disp_encoding_8bit;
5113 break;
41eb8e88
L
5114 case Prefix_Disp16:
5115 /* {disp16} */
5116 i.disp_encoding = disp_encoding_16bit;
5117 break;
5118 case Prefix_Disp32:
86fa6981
L
5119 /* {disp32} */
5120 i.disp_encoding = disp_encoding_32bit;
5121 break;
41eb8e88 5122 case Prefix_Load:
86fa6981
L
5123 /* {load} */
5124 i.dir_encoding = dir_encoding_load;
5125 break;
41eb8e88 5126 case Prefix_Store:
86fa6981
L
5127 /* {store} */
5128 i.dir_encoding = dir_encoding_store;
5129 break;
41eb8e88 5130 case Prefix_VEX:
42e04b36
L
5131 /* {vex} */
5132 i.vec_encoding = vex_encoding_vex;
86fa6981 5133 break;
41eb8e88 5134 case Prefix_VEX3:
86fa6981
L
5135 /* {vex3} */
5136 i.vec_encoding = vex_encoding_vex3;
5137 break;
41eb8e88 5138 case Prefix_EVEX:
86fa6981
L
5139 /* {evex} */
5140 i.vec_encoding = vex_encoding_evex;
5141 break;
41eb8e88 5142 case Prefix_REX:
6b6b6807
L
5143 /* {rex} */
5144 i.rex_encoding = TRUE;
5145 break;
41eb8e88 5146 case Prefix_NoOptimize:
b6f8c7c4
L
5147 /* {nooptimize} */
5148 i.no_optimize = TRUE;
5149 break;
86fa6981
L
5150 default:
5151 abort ();
5152 }
5153 }
5154 else
5155 {
5156 /* Add prefix, checking for repeated prefixes. */
4e9ac44a 5157 switch (add_prefix (current_templates->start->base_opcode))
86fa6981 5158 {
4e9ac44a
L
5159 case PREFIX_EXIST:
5160 return NULL;
5161 case PREFIX_DS:
d777820b 5162 if (current_templates->start->cpu_flags.bitfield.cpuibt)
4e9ac44a
L
5163 i.notrack_prefix = current_templates->start->name;
5164 break;
5165 case PREFIX_REP:
5166 if (current_templates->start->cpu_flags.bitfield.cpuhle)
5167 i.hle_prefix = current_templates->start->name;
5168 else if (current_templates->start->cpu_flags.bitfield.cpumpx)
5169 i.bnd_prefix = current_templates->start->name;
5170 else
5171 i.rep_prefix = current_templates->start->name;
5172 break;
5173 default:
5174 break;
86fa6981 5175 }
29b0f896
AM
5176 }
5177 /* Skip past PREFIX_SEPARATOR and reset token_start. */
5178 token_start = ++l;
5179 }
5180 else
5181 break;
5182 }
45288df1 5183
30a55f88 5184 if (!current_templates)
b6169b20 5185 {
07d5e953
JB
5186 /* Deprecated functionality (new code should use pseudo-prefixes instead):
5187 Check if we should swap operand or force 32bit displacement in
f8a5c266 5188 encoding. */
30a55f88 5189 if (mnem_p - 2 == dot_p && dot_p[1] == 's')
64c49ab3 5190 i.dir_encoding = dir_encoding_swap;
8d63c93e 5191 else if (mnem_p - 3 == dot_p
a501d77e
L
5192 && dot_p[1] == 'd'
5193 && dot_p[2] == '8')
5194 i.disp_encoding = disp_encoding_8bit;
8d63c93e 5195 else if (mnem_p - 4 == dot_p
f8a5c266
L
5196 && dot_p[1] == 'd'
5197 && dot_p[2] == '3'
5198 && dot_p[3] == '2')
a501d77e 5199 i.disp_encoding = disp_encoding_32bit;
30a55f88
L
5200 else
5201 goto check_suffix;
5202 mnem_p = dot_p;
5203 *dot_p = '\0';
629310ab 5204 current_templates = (const templates *) str_hash_find (op_hash, mnemonic);
b6169b20
L
5205 }
5206
29b0f896
AM
5207 if (!current_templates)
5208 {
dc1e8a47 5209 check_suffix:
1c529385 5210 if (mnem_p > mnemonic)
29b0f896 5211 {
1c529385
LH
5212 /* See if we can get a match by trimming off a suffix. */
5213 switch (mnem_p[-1])
29b0f896 5214 {
1c529385
LH
5215 case WORD_MNEM_SUFFIX:
5216 if (intel_syntax && (intel_float_operand (mnemonic) & 2))
29b0f896
AM
5217 i.suffix = SHORT_MNEM_SUFFIX;
5218 else
1c529385
LH
5219 /* Fall through. */
5220 case BYTE_MNEM_SUFFIX:
5221 case QWORD_MNEM_SUFFIX:
5222 i.suffix = mnem_p[-1];
29b0f896 5223 mnem_p[-1] = '\0';
fe0e921f
AM
5224 current_templates
5225 = (const templates *) str_hash_find (op_hash, mnemonic);
1c529385
LH
5226 break;
5227 case SHORT_MNEM_SUFFIX:
5228 case LONG_MNEM_SUFFIX:
5229 if (!intel_syntax)
5230 {
5231 i.suffix = mnem_p[-1];
5232 mnem_p[-1] = '\0';
fe0e921f
AM
5233 current_templates
5234 = (const templates *) str_hash_find (op_hash, mnemonic);
1c529385
LH
5235 }
5236 break;
5237
5238 /* Intel Syntax. */
5239 case 'd':
5240 if (intel_syntax)
5241 {
5242 if (intel_float_operand (mnemonic) == 1)
5243 i.suffix = SHORT_MNEM_SUFFIX;
5244 else
5245 i.suffix = LONG_MNEM_SUFFIX;
5246 mnem_p[-1] = '\0';
fe0e921f
AM
5247 current_templates
5248 = (const templates *) str_hash_find (op_hash, mnemonic);
1c529385
LH
5249 }
5250 break;
29b0f896 5251 }
29b0f896 5252 }
1c529385 5253
29b0f896
AM
5254 if (!current_templates)
5255 {
5256 as_bad (_("no such instruction: `%s'"), token_start);
5257 return NULL;
5258 }
5259 }
252b5132 5260
0cfa3eb3
JB
5261 if (current_templates->start->opcode_modifier.jump == JUMP
5262 || current_templates->start->opcode_modifier.jump == JUMP_BYTE)
29b0f896
AM
5263 {
5264 /* Check for a branch hint. We allow ",pt" and ",pn" for
5265 predict taken and predict not taken respectively.
5266 I'm not sure that branch hints actually do anything on loop
5267 and jcxz insns (JumpByte) for current Pentium4 chips. They
5268 may work in the future and it doesn't hurt to accept them
5269 now. */
5270 if (l[0] == ',' && l[1] == 'p')
5271 {
5272 if (l[2] == 't')
5273 {
5274 if (!add_prefix (DS_PREFIX_OPCODE))
5275 return NULL;
5276 l += 3;
5277 }
5278 else if (l[2] == 'n')
5279 {
5280 if (!add_prefix (CS_PREFIX_OPCODE))
5281 return NULL;
5282 l += 3;
5283 }
5284 }
5285 }
5286 /* Any other comma loses. */
5287 if (*l == ',')
5288 {
5289 as_bad (_("invalid character %s in mnemonic"),
5290 output_invalid (*l));
5291 return NULL;
5292 }
252b5132 5293
29b0f896 5294 /* Check if instruction is supported on specified architecture. */
5c6af06e
JB
5295 supported = 0;
5296 for (t = current_templates->start; t < current_templates->end; ++t)
5297 {
c0f3af97
L
5298 supported |= cpu_flags_match (t);
5299 if (supported == CPU_FLAGS_PERFECT_MATCH)
548d0ee6
JB
5300 {
5301 if (!cpu_arch_flags.bitfield.cpui386 && (flag_code != CODE_16BIT))
5302 as_warn (_("use .code16 to ensure correct addressing mode"));
3629bb00 5303
548d0ee6
JB
5304 return l;
5305 }
29b0f896 5306 }
3629bb00 5307
548d0ee6
JB
5308 if (!(supported & CPU_FLAGS_64BIT_MATCH))
5309 as_bad (flag_code == CODE_64BIT
5310 ? _("`%s' is not supported in 64-bit mode")
5311 : _("`%s' is only supported in 64-bit mode"),
5312 current_templates->start->name);
5313 else
5314 as_bad (_("`%s' is not supported on `%s%s'"),
5315 current_templates->start->name,
5316 cpu_arch_name ? cpu_arch_name : default_arch,
5317 cpu_sub_arch_name ? cpu_sub_arch_name : "");
252b5132 5318
548d0ee6 5319 return NULL;
29b0f896 5320}
252b5132 5321
29b0f896 5322static char *
e3bb37b5 5323parse_operands (char *l, const char *mnemonic)
29b0f896
AM
5324{
5325 char *token_start;
3138f287 5326
29b0f896
AM
5327 /* 1 if operand is pending after ','. */
5328 unsigned int expecting_operand = 0;
252b5132 5329
29b0f896
AM
5330 /* Non-zero if operand parens not balanced. */
5331 unsigned int paren_not_balanced;
5332
5333 while (*l != END_OF_INSN)
5334 {
5335 /* Skip optional white space before operand. */
5336 if (is_space_char (*l))
5337 ++l;
d02603dc 5338 if (!is_operand_char (*l) && *l != END_OF_INSN && *l != '"')
29b0f896
AM
5339 {
5340 as_bad (_("invalid character %s before operand %d"),
5341 output_invalid (*l),
5342 i.operands + 1);
5343 return NULL;
5344 }
d02603dc 5345 token_start = l; /* After white space. */
29b0f896
AM
5346 paren_not_balanced = 0;
5347 while (paren_not_balanced || *l != ',')
5348 {
5349 if (*l == END_OF_INSN)
5350 {
5351 if (paren_not_balanced)
5352 {
5353 if (!intel_syntax)
5354 as_bad (_("unbalanced parenthesis in operand %d."),
5355 i.operands + 1);
5356 else
5357 as_bad (_("unbalanced brackets in operand %d."),
5358 i.operands + 1);
5359 return NULL;
5360 }
5361 else
5362 break; /* we are done */
5363 }
d02603dc 5364 else if (!is_operand_char (*l) && !is_space_char (*l) && *l != '"')
29b0f896
AM
5365 {
5366 as_bad (_("invalid character %s in operand %d"),
5367 output_invalid (*l),
5368 i.operands + 1);
5369 return NULL;
5370 }
5371 if (!intel_syntax)
5372 {
5373 if (*l == '(')
5374 ++paren_not_balanced;
5375 if (*l == ')')
5376 --paren_not_balanced;
5377 }
5378 else
5379 {
5380 if (*l == '[')
5381 ++paren_not_balanced;
5382 if (*l == ']')
5383 --paren_not_balanced;
5384 }
5385 l++;
5386 }
5387 if (l != token_start)
5388 { /* Yes, we've read in another operand. */
5389 unsigned int operand_ok;
5390 this_operand = i.operands++;
5391 if (i.operands > MAX_OPERANDS)
5392 {
5393 as_bad (_("spurious operands; (%d operands/instruction max)"),
5394 MAX_OPERANDS);
5395 return NULL;
5396 }
9d46ce34 5397 i.types[this_operand].bitfield.unspecified = 1;
29b0f896
AM
5398 /* Now parse operand adding info to 'i' as we go along. */
5399 END_STRING_AND_SAVE (l);
5400
1286ab78
L
5401 if (i.mem_operands > 1)
5402 {
5403 as_bad (_("too many memory references for `%s'"),
5404 mnemonic);
5405 return 0;
5406 }
5407
29b0f896
AM
5408 if (intel_syntax)
5409 operand_ok =
5410 i386_intel_operand (token_start,
5411 intel_float_operand (mnemonic));
5412 else
a7619375 5413 operand_ok = i386_att_operand (token_start);
29b0f896
AM
5414
5415 RESTORE_END_STRING (l);
5416 if (!operand_ok)
5417 return NULL;
5418 }
5419 else
5420 {
5421 if (expecting_operand)
5422 {
5423 expecting_operand_after_comma:
5424 as_bad (_("expecting operand after ','; got nothing"));
5425 return NULL;
5426 }
5427 if (*l == ',')
5428 {
5429 as_bad (_("expecting operand before ','; got nothing"));
5430 return NULL;
5431 }
5432 }
7f3f1ea2 5433
29b0f896
AM
5434 /* Now *l must be either ',' or END_OF_INSN. */
5435 if (*l == ',')
5436 {
5437 if (*++l == END_OF_INSN)
5438 {
5439 /* Just skip it, if it's \n complain. */
5440 goto expecting_operand_after_comma;
5441 }
5442 expecting_operand = 1;
5443 }
5444 }
5445 return l;
5446}
7f3f1ea2 5447
050dfa73 5448static void
4d456e3d 5449swap_2_operands (int xchg1, int xchg2)
050dfa73
MM
5450{
5451 union i386_op temp_op;
40fb9820 5452 i386_operand_type temp_type;
c48dadc9 5453 unsigned int temp_flags;
050dfa73 5454 enum bfd_reloc_code_real temp_reloc;
4eed87de 5455
050dfa73
MM
5456 temp_type = i.types[xchg2];
5457 i.types[xchg2] = i.types[xchg1];
5458 i.types[xchg1] = temp_type;
c48dadc9
JB
5459
5460 temp_flags = i.flags[xchg2];
5461 i.flags[xchg2] = i.flags[xchg1];
5462 i.flags[xchg1] = temp_flags;
5463
050dfa73
MM
5464 temp_op = i.op[xchg2];
5465 i.op[xchg2] = i.op[xchg1];
5466 i.op[xchg1] = temp_op;
c48dadc9 5467
050dfa73
MM
5468 temp_reloc = i.reloc[xchg2];
5469 i.reloc[xchg2] = i.reloc[xchg1];
5470 i.reloc[xchg1] = temp_reloc;
43234a1e
L
5471
5472 if (i.mask)
5473 {
5474 if (i.mask->operand == xchg1)
5475 i.mask->operand = xchg2;
5476 else if (i.mask->operand == xchg2)
5477 i.mask->operand = xchg1;
5478 }
5479 if (i.broadcast)
5480 {
5481 if (i.broadcast->operand == xchg1)
5482 i.broadcast->operand = xchg2;
5483 else if (i.broadcast->operand == xchg2)
5484 i.broadcast->operand = xchg1;
5485 }
5486 if (i.rounding)
5487 {
5488 if (i.rounding->operand == xchg1)
5489 i.rounding->operand = xchg2;
5490 else if (i.rounding->operand == xchg2)
5491 i.rounding->operand = xchg1;
5492 }
050dfa73
MM
5493}
5494
29b0f896 5495static void
e3bb37b5 5496swap_operands (void)
29b0f896 5497{
b7c61d9a 5498 switch (i.operands)
050dfa73 5499 {
c0f3af97 5500 case 5:
b7c61d9a 5501 case 4:
4d456e3d 5502 swap_2_operands (1, i.operands - 2);
1a0670f3 5503 /* Fall through. */
b7c61d9a
L
5504 case 3:
5505 case 2:
4d456e3d 5506 swap_2_operands (0, i.operands - 1);
b7c61d9a
L
5507 break;
5508 default:
5509 abort ();
29b0f896 5510 }
29b0f896
AM
5511
5512 if (i.mem_operands == 2)
5513 {
5514 const seg_entry *temp_seg;
5515 temp_seg = i.seg[0];
5516 i.seg[0] = i.seg[1];
5517 i.seg[1] = temp_seg;
5518 }
5519}
252b5132 5520
29b0f896
AM
5521/* Try to ensure constant immediates are represented in the smallest
5522 opcode possible. */
5523static void
e3bb37b5 5524optimize_imm (void)
29b0f896
AM
5525{
5526 char guess_suffix = 0;
5527 int op;
252b5132 5528
29b0f896
AM
5529 if (i.suffix)
5530 guess_suffix = i.suffix;
5531 else if (i.reg_operands)
5532 {
5533 /* Figure out a suffix from the last register operand specified.
75e5731b
JB
5534 We can't do this properly yet, i.e. excluding special register
5535 instances, but the following works for instructions with
5536 immediates. In any case, we can't set i.suffix yet. */
29b0f896 5537 for (op = i.operands; --op >= 0;)
bab6aec1
JB
5538 if (i.types[op].bitfield.class != Reg)
5539 continue;
5540 else if (i.types[op].bitfield.byte)
7ab9ffdd 5541 {
40fb9820
L
5542 guess_suffix = BYTE_MNEM_SUFFIX;
5543 break;
5544 }
bab6aec1 5545 else if (i.types[op].bitfield.word)
252b5132 5546 {
40fb9820
L
5547 guess_suffix = WORD_MNEM_SUFFIX;
5548 break;
5549 }
bab6aec1 5550 else if (i.types[op].bitfield.dword)
40fb9820
L
5551 {
5552 guess_suffix = LONG_MNEM_SUFFIX;
5553 break;
5554 }
bab6aec1 5555 else if (i.types[op].bitfield.qword)
40fb9820
L
5556 {
5557 guess_suffix = QWORD_MNEM_SUFFIX;
29b0f896 5558 break;
252b5132 5559 }
29b0f896
AM
5560 }
5561 else if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
5562 guess_suffix = WORD_MNEM_SUFFIX;
5563
5564 for (op = i.operands; --op >= 0;)
40fb9820 5565 if (operand_type_check (i.types[op], imm))
29b0f896
AM
5566 {
5567 switch (i.op[op].imms->X_op)
252b5132 5568 {
29b0f896
AM
5569 case O_constant:
5570 /* If a suffix is given, this operand may be shortened. */
5571 switch (guess_suffix)
252b5132 5572 {
29b0f896 5573 case LONG_MNEM_SUFFIX:
40fb9820
L
5574 i.types[op].bitfield.imm32 = 1;
5575 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
5576 break;
5577 case WORD_MNEM_SUFFIX:
40fb9820
L
5578 i.types[op].bitfield.imm16 = 1;
5579 i.types[op].bitfield.imm32 = 1;
5580 i.types[op].bitfield.imm32s = 1;
5581 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
5582 break;
5583 case BYTE_MNEM_SUFFIX:
40fb9820
L
5584 i.types[op].bitfield.imm8 = 1;
5585 i.types[op].bitfield.imm8s = 1;
5586 i.types[op].bitfield.imm16 = 1;
5587 i.types[op].bitfield.imm32 = 1;
5588 i.types[op].bitfield.imm32s = 1;
5589 i.types[op].bitfield.imm64 = 1;
29b0f896 5590 break;
252b5132 5591 }
252b5132 5592
29b0f896
AM
5593 /* If this operand is at most 16 bits, convert it
5594 to a signed 16 bit number before trying to see
5595 whether it will fit in an even smaller size.
5596 This allows a 16-bit operand such as $0xffe0 to
5597 be recognised as within Imm8S range. */
40fb9820 5598 if ((i.types[op].bitfield.imm16)
29b0f896 5599 && (i.op[op].imms->X_add_number & ~(offsetT) 0xffff) == 0)
252b5132 5600 {
29b0f896
AM
5601 i.op[op].imms->X_add_number =
5602 (((i.op[op].imms->X_add_number & 0xffff) ^ 0x8000) - 0x8000);
5603 }
a28def75
L
5604#ifdef BFD64
5605 /* Store 32-bit immediate in 64-bit for 64-bit BFD. */
40fb9820 5606 if ((i.types[op].bitfield.imm32)
29b0f896
AM
5607 && ((i.op[op].imms->X_add_number & ~(((offsetT) 2 << 31) - 1))
5608 == 0))
5609 {
5610 i.op[op].imms->X_add_number = ((i.op[op].imms->X_add_number
5611 ^ ((offsetT) 1 << 31))
5612 - ((offsetT) 1 << 31));
5613 }
a28def75 5614#endif
40fb9820 5615 i.types[op]
c6fb90c8
L
5616 = operand_type_or (i.types[op],
5617 smallest_imm_type (i.op[op].imms->X_add_number));
252b5132 5618
29b0f896
AM
5619 /* We must avoid matching of Imm32 templates when 64bit
5620 only immediate is available. */
5621 if (guess_suffix == QWORD_MNEM_SUFFIX)
40fb9820 5622 i.types[op].bitfield.imm32 = 0;
29b0f896 5623 break;
252b5132 5624
29b0f896
AM
5625 case O_absent:
5626 case O_register:
5627 abort ();
5628
5629 /* Symbols and expressions. */
5630 default:
9cd96992
JB
5631 /* Convert symbolic operand to proper sizes for matching, but don't
5632 prevent matching a set of insns that only supports sizes other
5633 than those matching the insn suffix. */
5634 {
40fb9820 5635 i386_operand_type mask, allowed;
d3ce72d0 5636 const insn_template *t;
9cd96992 5637
0dfbf9d7
L
5638 operand_type_set (&mask, 0);
5639 operand_type_set (&allowed, 0);
40fb9820 5640
4eed87de
AM
5641 for (t = current_templates->start;
5642 t < current_templates->end;
5643 ++t)
bab6aec1
JB
5644 {
5645 allowed = operand_type_or (allowed, t->operand_types[op]);
5646 allowed = operand_type_and (allowed, anyimm);
5647 }
9cd96992
JB
5648 switch (guess_suffix)
5649 {
5650 case QWORD_MNEM_SUFFIX:
40fb9820
L
5651 mask.bitfield.imm64 = 1;
5652 mask.bitfield.imm32s = 1;
9cd96992
JB
5653 break;
5654 case LONG_MNEM_SUFFIX:
40fb9820 5655 mask.bitfield.imm32 = 1;
9cd96992
JB
5656 break;
5657 case WORD_MNEM_SUFFIX:
40fb9820 5658 mask.bitfield.imm16 = 1;
9cd96992
JB
5659 break;
5660 case BYTE_MNEM_SUFFIX:
40fb9820 5661 mask.bitfield.imm8 = 1;
9cd96992
JB
5662 break;
5663 default:
9cd96992
JB
5664 break;
5665 }
c6fb90c8 5666 allowed = operand_type_and (mask, allowed);
0dfbf9d7 5667 if (!operand_type_all_zero (&allowed))
c6fb90c8 5668 i.types[op] = operand_type_and (i.types[op], mask);
9cd96992 5669 }
29b0f896 5670 break;
252b5132 5671 }
29b0f896
AM
5672 }
5673}
47926f60 5674
29b0f896
AM
5675/* Try to use the smallest displacement type too. */
5676static void
e3bb37b5 5677optimize_disp (void)
29b0f896
AM
5678{
5679 int op;
3e73aa7c 5680
29b0f896 5681 for (op = i.operands; --op >= 0;)
40fb9820 5682 if (operand_type_check (i.types[op], disp))
252b5132 5683 {
b300c311 5684 if (i.op[op].disps->X_op == O_constant)
252b5132 5685 {
91d6fa6a 5686 offsetT op_disp = i.op[op].disps->X_add_number;
29b0f896 5687
40fb9820 5688 if (i.types[op].bitfield.disp16
91d6fa6a 5689 && (op_disp & ~(offsetT) 0xffff) == 0)
b300c311
L
5690 {
5691 /* If this operand is at most 16 bits, convert
5692 to a signed 16 bit number and don't use 64bit
5693 displacement. */
91d6fa6a 5694 op_disp = (((op_disp & 0xffff) ^ 0x8000) - 0x8000);
40fb9820 5695 i.types[op].bitfield.disp64 = 0;
b300c311 5696 }
a28def75
L
5697#ifdef BFD64
5698 /* Optimize 64-bit displacement to 32-bit for 64-bit BFD. */
40fb9820 5699 if (i.types[op].bitfield.disp32
91d6fa6a 5700 && (op_disp & ~(((offsetT) 2 << 31) - 1)) == 0)
b300c311
L
5701 {
5702 /* If this operand is at most 32 bits, convert
5703 to a signed 32 bit number and don't use 64bit
5704 displacement. */
91d6fa6a
NC
5705 op_disp &= (((offsetT) 2 << 31) - 1);
5706 op_disp = (op_disp ^ ((offsetT) 1 << 31)) - ((addressT) 1 << 31);
40fb9820 5707 i.types[op].bitfield.disp64 = 0;
b300c311 5708 }
a28def75 5709#endif
91d6fa6a 5710 if (!op_disp && i.types[op].bitfield.baseindex)
b300c311 5711 {
40fb9820
L
5712 i.types[op].bitfield.disp8 = 0;
5713 i.types[op].bitfield.disp16 = 0;
5714 i.types[op].bitfield.disp32 = 0;
5715 i.types[op].bitfield.disp32s = 0;
5716 i.types[op].bitfield.disp64 = 0;
b300c311
L
5717 i.op[op].disps = 0;
5718 i.disp_operands--;
5719 }
5720 else if (flag_code == CODE_64BIT)
5721 {
91d6fa6a 5722 if (fits_in_signed_long (op_disp))
28a9d8f5 5723 {
40fb9820
L
5724 i.types[op].bitfield.disp64 = 0;
5725 i.types[op].bitfield.disp32s = 1;
28a9d8f5 5726 }
0e1147d9 5727 if (i.prefix[ADDR_PREFIX]
91d6fa6a 5728 && fits_in_unsigned_long (op_disp))
40fb9820 5729 i.types[op].bitfield.disp32 = 1;
b300c311 5730 }
40fb9820
L
5731 if ((i.types[op].bitfield.disp32
5732 || i.types[op].bitfield.disp32s
5733 || i.types[op].bitfield.disp16)
b5014f7a 5734 && fits_in_disp8 (op_disp))
40fb9820 5735 i.types[op].bitfield.disp8 = 1;
252b5132 5736 }
67a4f2b7
AO
5737 else if (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
5738 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL)
5739 {
5740 fix_new_exp (frag_now, frag_more (0) - frag_now->fr_literal, 0,
5741 i.op[op].disps, 0, i.reloc[op]);
40fb9820
L
5742 i.types[op].bitfield.disp8 = 0;
5743 i.types[op].bitfield.disp16 = 0;
5744 i.types[op].bitfield.disp32 = 0;
5745 i.types[op].bitfield.disp32s = 0;
5746 i.types[op].bitfield.disp64 = 0;
67a4f2b7
AO
5747 }
5748 else
b300c311 5749 /* We only support 64bit displacement on constants. */
40fb9820 5750 i.types[op].bitfield.disp64 = 0;
252b5132 5751 }
29b0f896
AM
5752}
5753
4a1b91ea
L
5754/* Return 1 if there is a match in broadcast bytes between operand
5755 GIVEN and instruction template T. */
5756
5757static INLINE int
5758match_broadcast_size (const insn_template *t, unsigned int given)
5759{
5760 return ((t->opcode_modifier.broadcast == BYTE_BROADCAST
5761 && i.types[given].bitfield.byte)
5762 || (t->opcode_modifier.broadcast == WORD_BROADCAST
5763 && i.types[given].bitfield.word)
5764 || (t->opcode_modifier.broadcast == DWORD_BROADCAST
5765 && i.types[given].bitfield.dword)
5766 || (t->opcode_modifier.broadcast == QWORD_BROADCAST
5767 && i.types[given].bitfield.qword));
5768}
5769
6c30d220
L
5770/* Check if operands are valid for the instruction. */
5771
5772static int
5773check_VecOperands (const insn_template *t)
5774{
43234a1e 5775 unsigned int op;
e2195274 5776 i386_cpu_flags cpu;
e2195274
JB
5777
5778 /* Templates allowing for ZMMword as well as YMMword and/or XMMword for
5779 any one operand are implicity requiring AVX512VL support if the actual
5780 operand size is YMMword or XMMword. Since this function runs after
5781 template matching, there's no need to check for YMMword/XMMword in
5782 the template. */
5783 cpu = cpu_flags_and (t->cpu_flags, avx512);
5784 if (!cpu_flags_all_zero (&cpu)
5785 && !t->cpu_flags.bitfield.cpuavx512vl
5786 && !cpu_arch_flags.bitfield.cpuavx512vl)
5787 {
5788 for (op = 0; op < t->operands; ++op)
5789 {
5790 if (t->operand_types[op].bitfield.zmmword
5791 && (i.types[op].bitfield.ymmword
5792 || i.types[op].bitfield.xmmword))
5793 {
5794 i.error = unsupported;
5795 return 1;
5796 }
5797 }
5798 }
43234a1e 5799
6c30d220 5800 /* Without VSIB byte, we can't have a vector register for index. */
63112cd6 5801 if (!t->opcode_modifier.sib
6c30d220 5802 && i.index_reg
1b54b8d7
JB
5803 && (i.index_reg->reg_type.bitfield.xmmword
5804 || i.index_reg->reg_type.bitfield.ymmword
5805 || i.index_reg->reg_type.bitfield.zmmword))
6c30d220
L
5806 {
5807 i.error = unsupported_vector_index_register;
5808 return 1;
5809 }
5810
ad8ecc81
MZ
5811 /* Check if default mask is allowed. */
5812 if (t->opcode_modifier.nodefmask
5813 && (!i.mask || i.mask->mask->reg_num == 0))
5814 {
5815 i.error = no_default_mask;
5816 return 1;
5817 }
5818
7bab8ab5
JB
5819 /* For VSIB byte, we need a vector register for index, and all vector
5820 registers must be distinct. */
260cd341 5821 if (t->opcode_modifier.sib && t->opcode_modifier.sib != SIBMEM)
7bab8ab5
JB
5822 {
5823 if (!i.index_reg
63112cd6 5824 || !((t->opcode_modifier.sib == VECSIB128
1b54b8d7 5825 && i.index_reg->reg_type.bitfield.xmmword)
63112cd6 5826 || (t->opcode_modifier.sib == VECSIB256
1b54b8d7 5827 && i.index_reg->reg_type.bitfield.ymmword)
63112cd6 5828 || (t->opcode_modifier.sib == VECSIB512
1b54b8d7 5829 && i.index_reg->reg_type.bitfield.zmmword)))
7bab8ab5
JB
5830 {
5831 i.error = invalid_vsib_address;
5832 return 1;
5833 }
5834
43234a1e
L
5835 gas_assert (i.reg_operands == 2 || i.mask);
5836 if (i.reg_operands == 2 && !i.mask)
5837 {
3528c362 5838 gas_assert (i.types[0].bitfield.class == RegSIMD);
1b54b8d7
JB
5839 gas_assert (i.types[0].bitfield.xmmword
5840 || i.types[0].bitfield.ymmword);
3528c362 5841 gas_assert (i.types[2].bitfield.class == RegSIMD);
1b54b8d7
JB
5842 gas_assert (i.types[2].bitfield.xmmword
5843 || i.types[2].bitfield.ymmword);
43234a1e
L
5844 if (operand_check == check_none)
5845 return 0;
5846 if (register_number (i.op[0].regs)
5847 != register_number (i.index_reg)
5848 && register_number (i.op[2].regs)
5849 != register_number (i.index_reg)
5850 && register_number (i.op[0].regs)
5851 != register_number (i.op[2].regs))
5852 return 0;
5853 if (operand_check == check_error)
5854 {
5855 i.error = invalid_vector_register_set;
5856 return 1;
5857 }
5858 as_warn (_("mask, index, and destination registers should be distinct"));
5859 }
8444f82a
MZ
5860 else if (i.reg_operands == 1 && i.mask)
5861 {
3528c362 5862 if (i.types[1].bitfield.class == RegSIMD
1b54b8d7
JB
5863 && (i.types[1].bitfield.xmmword
5864 || i.types[1].bitfield.ymmword
5865 || i.types[1].bitfield.zmmword)
8444f82a
MZ
5866 && (register_number (i.op[1].regs)
5867 == register_number (i.index_reg)))
5868 {
5869 if (operand_check == check_error)
5870 {
5871 i.error = invalid_vector_register_set;
5872 return 1;
5873 }
5874 if (operand_check != check_none)
5875 as_warn (_("index and destination registers should be distinct"));
5876 }
5877 }
43234a1e 5878 }
7bab8ab5 5879
260cd341
LC
5880 /* For AMX instructions with three tmmword operands, all tmmword operand must be
5881 distinct */
5882 if (t->operand_types[0].bitfield.tmmword
5883 && i.reg_operands == 3)
5884 {
5885 if (register_number (i.op[0].regs)
5886 == register_number (i.op[1].regs)
5887 || register_number (i.op[0].regs)
5888 == register_number (i.op[2].regs)
5889 || register_number (i.op[1].regs)
5890 == register_number (i.op[2].regs))
5891 {
5892 i.error = invalid_tmm_register_set;
5893 return 1;
5894 }
5895 }
5896
43234a1e
L
5897 /* Check if broadcast is supported by the instruction and is applied
5898 to the memory operand. */
5899 if (i.broadcast)
5900 {
8e6e0792 5901 i386_operand_type type, overlap;
43234a1e
L
5902
5903 /* Check if specified broadcast is supported in this instruction,
4a1b91ea 5904 and its broadcast bytes match the memory operand. */
32546502 5905 op = i.broadcast->operand;
8e6e0792 5906 if (!t->opcode_modifier.broadcast
c48dadc9 5907 || !(i.flags[op] & Operand_Mem)
c39e5b26 5908 || (!i.types[op].bitfield.unspecified
4a1b91ea 5909 && !match_broadcast_size (t, op)))
43234a1e
L
5910 {
5911 bad_broadcast:
5912 i.error = unsupported_broadcast;
5913 return 1;
5914 }
8e6e0792 5915
4a1b91ea
L
5916 i.broadcast->bytes = ((1 << (t->opcode_modifier.broadcast - 1))
5917 * i.broadcast->type);
8e6e0792 5918 operand_type_set (&type, 0);
4a1b91ea 5919 switch (i.broadcast->bytes)
8e6e0792 5920 {
4a1b91ea
L
5921 case 2:
5922 type.bitfield.word = 1;
5923 break;
5924 case 4:
5925 type.bitfield.dword = 1;
5926 break;
8e6e0792
JB
5927 case 8:
5928 type.bitfield.qword = 1;
5929 break;
5930 case 16:
5931 type.bitfield.xmmword = 1;
5932 break;
5933 case 32:
5934 type.bitfield.ymmword = 1;
5935 break;
5936 case 64:
5937 type.bitfield.zmmword = 1;
5938 break;
5939 default:
5940 goto bad_broadcast;
5941 }
5942
5943 overlap = operand_type_and (type, t->operand_types[op]);
bc49bfd8
JB
5944 if (t->operand_types[op].bitfield.class == RegSIMD
5945 && t->operand_types[op].bitfield.byte
5946 + t->operand_types[op].bitfield.word
5947 + t->operand_types[op].bitfield.dword
5948 + t->operand_types[op].bitfield.qword > 1)
5949 {
5950 overlap.bitfield.xmmword = 0;
5951 overlap.bitfield.ymmword = 0;
5952 overlap.bitfield.zmmword = 0;
5953 }
8e6e0792
JB
5954 if (operand_type_all_zero (&overlap))
5955 goto bad_broadcast;
5956
5957 if (t->opcode_modifier.checkregsize)
5958 {
5959 unsigned int j;
5960
e2195274 5961 type.bitfield.baseindex = 1;
8e6e0792
JB
5962 for (j = 0; j < i.operands; ++j)
5963 {
5964 if (j != op
5965 && !operand_type_register_match(i.types[j],
5966 t->operand_types[j],
5967 type,
5968 t->operand_types[op]))
5969 goto bad_broadcast;
5970 }
5971 }
43234a1e
L
5972 }
5973 /* If broadcast is supported in this instruction, we need to check if
5974 operand of one-element size isn't specified without broadcast. */
5975 else if (t->opcode_modifier.broadcast && i.mem_operands)
5976 {
5977 /* Find memory operand. */
5978 for (op = 0; op < i.operands; op++)
8dc0818e 5979 if (i.flags[op] & Operand_Mem)
43234a1e
L
5980 break;
5981 gas_assert (op < i.operands);
5982 /* Check size of the memory operand. */
4a1b91ea 5983 if (match_broadcast_size (t, op))
43234a1e
L
5984 {
5985 i.error = broadcast_needed;
5986 return 1;
5987 }
5988 }
c39e5b26
JB
5989 else
5990 op = MAX_OPERANDS - 1; /* Avoid uninitialized variable warning. */
43234a1e
L
5991
5992 /* Check if requested masking is supported. */
ae2387fe 5993 if (i.mask)
43234a1e 5994 {
ae2387fe
JB
5995 switch (t->opcode_modifier.masking)
5996 {
5997 case BOTH_MASKING:
5998 break;
5999 case MERGING_MASKING:
6000 if (i.mask->zeroing)
6001 {
6002 case 0:
6003 i.error = unsupported_masking;
6004 return 1;
6005 }
6006 break;
6007 case DYNAMIC_MASKING:
6008 /* Memory destinations allow only merging masking. */
6009 if (i.mask->zeroing && i.mem_operands)
6010 {
6011 /* Find memory operand. */
6012 for (op = 0; op < i.operands; op++)
c48dadc9 6013 if (i.flags[op] & Operand_Mem)
ae2387fe
JB
6014 break;
6015 gas_assert (op < i.operands);
6016 if (op == i.operands - 1)
6017 {
6018 i.error = unsupported_masking;
6019 return 1;
6020 }
6021 }
6022 break;
6023 default:
6024 abort ();
6025 }
43234a1e
L
6026 }
6027
6028 /* Check if masking is applied to dest operand. */
6029 if (i.mask && (i.mask->operand != (int) (i.operands - 1)))
6030 {
6031 i.error = mask_not_on_destination;
6032 return 1;
6033 }
6034
43234a1e
L
6035 /* Check RC/SAE. */
6036 if (i.rounding)
6037 {
a80195f1
JB
6038 if (!t->opcode_modifier.sae
6039 || (i.rounding->type != saeonly && !t->opcode_modifier.staticrounding))
43234a1e
L
6040 {
6041 i.error = unsupported_rc_sae;
6042 return 1;
6043 }
6044 /* If the instruction has several immediate operands and one of
6045 them is rounding, the rounding operand should be the last
6046 immediate operand. */
6047 if (i.imm_operands > 1
6048 && i.rounding->operand != (int) (i.imm_operands - 1))
7bab8ab5 6049 {
43234a1e 6050 i.error = rc_sae_operand_not_last_imm;
7bab8ab5
JB
6051 return 1;
6052 }
6c30d220
L
6053 }
6054
da4977e0
JB
6055 /* Check the special Imm4 cases; must be the first operand. */
6056 if (t->cpu_flags.bitfield.cpuxop && t->operands == 5)
6057 {
6058 if (i.op[0].imms->X_op != O_constant
6059 || !fits_in_imm4 (i.op[0].imms->X_add_number))
6060 {
6061 i.error = bad_imm4;
6062 return 1;
6063 }
6064
6065 /* Turn off Imm<N> so that update_imm won't complain. */
6066 operand_type_set (&i.types[0], 0);
6067 }
6068
43234a1e 6069 /* Check vector Disp8 operand. */
b5014f7a
JB
6070 if (t->opcode_modifier.disp8memshift
6071 && i.disp_encoding != disp_encoding_32bit)
43234a1e
L
6072 {
6073 if (i.broadcast)
4a1b91ea 6074 i.memshift = t->opcode_modifier.broadcast - 1;
7091c612 6075 else if (t->opcode_modifier.disp8memshift != DISP8_SHIFT_VL)
43234a1e 6076 i.memshift = t->opcode_modifier.disp8memshift;
7091c612
JB
6077 else
6078 {
6079 const i386_operand_type *type = NULL;
6080
6081 i.memshift = 0;
6082 for (op = 0; op < i.operands; op++)
8dc0818e 6083 if (i.flags[op] & Operand_Mem)
7091c612 6084 {
4174bfff
JB
6085 if (t->opcode_modifier.evex == EVEXLIG)
6086 i.memshift = 2 + (i.suffix == QWORD_MNEM_SUFFIX);
6087 else if (t->operand_types[op].bitfield.xmmword
6088 + t->operand_types[op].bitfield.ymmword
6089 + t->operand_types[op].bitfield.zmmword <= 1)
7091c612
JB
6090 type = &t->operand_types[op];
6091 else if (!i.types[op].bitfield.unspecified)
6092 type = &i.types[op];
6093 }
3528c362 6094 else if (i.types[op].bitfield.class == RegSIMD
4174bfff 6095 && t->opcode_modifier.evex != EVEXLIG)
7091c612
JB
6096 {
6097 if (i.types[op].bitfield.zmmword)
6098 i.memshift = 6;
6099 else if (i.types[op].bitfield.ymmword && i.memshift < 5)
6100 i.memshift = 5;
6101 else if (i.types[op].bitfield.xmmword && i.memshift < 4)
6102 i.memshift = 4;
6103 }
6104
6105 if (type)
6106 {
6107 if (type->bitfield.zmmword)
6108 i.memshift = 6;
6109 else if (type->bitfield.ymmword)
6110 i.memshift = 5;
6111 else if (type->bitfield.xmmword)
6112 i.memshift = 4;
6113 }
6114
6115 /* For the check in fits_in_disp8(). */
6116 if (i.memshift == 0)
6117 i.memshift = -1;
6118 }
43234a1e
L
6119
6120 for (op = 0; op < i.operands; op++)
6121 if (operand_type_check (i.types[op], disp)
6122 && i.op[op].disps->X_op == O_constant)
6123 {
b5014f7a 6124 if (fits_in_disp8 (i.op[op].disps->X_add_number))
43234a1e 6125 {
b5014f7a
JB
6126 i.types[op].bitfield.disp8 = 1;
6127 return 0;
43234a1e 6128 }
b5014f7a 6129 i.types[op].bitfield.disp8 = 0;
43234a1e
L
6130 }
6131 }
b5014f7a
JB
6132
6133 i.memshift = 0;
43234a1e 6134
6c30d220
L
6135 return 0;
6136}
6137
da4977e0 6138/* Check if encoding requirements are met by the instruction. */
a683cc34
SP
6139
6140static int
da4977e0 6141VEX_check_encoding (const insn_template *t)
a683cc34 6142{
da4977e0
JB
6143 if (i.vec_encoding == vex_encoding_error)
6144 {
6145 i.error = unsupported;
6146 return 1;
6147 }
6148
86fa6981 6149 if (i.vec_encoding == vex_encoding_evex)
43234a1e 6150 {
86fa6981 6151 /* This instruction must be encoded with EVEX prefix. */
e771e7c9 6152 if (!is_evex_encoding (t))
86fa6981
L
6153 {
6154 i.error = unsupported;
6155 return 1;
6156 }
6157 return 0;
43234a1e
L
6158 }
6159
a683cc34 6160 if (!t->opcode_modifier.vex)
86fa6981
L
6161 {
6162 /* This instruction template doesn't have VEX prefix. */
6163 if (i.vec_encoding != vex_encoding_default)
6164 {
6165 i.error = unsupported;
6166 return 1;
6167 }
6168 return 0;
6169 }
a683cc34 6170
a683cc34
SP
6171 return 0;
6172}
6173
d3ce72d0 6174static const insn_template *
83b16ac6 6175match_template (char mnem_suffix)
29b0f896
AM
6176{
6177 /* Points to template once we've found it. */
d3ce72d0 6178 const insn_template *t;
40fb9820 6179 i386_operand_type overlap0, overlap1, overlap2, overlap3;
c0f3af97 6180 i386_operand_type overlap4;
29b0f896 6181 unsigned int found_reverse_match;
dc2be329 6182 i386_opcode_modifier suffix_check;
40fb9820 6183 i386_operand_type operand_types [MAX_OPERANDS];
539e75ad 6184 int addr_prefix_disp;
45a4bb20 6185 unsigned int j, size_match, check_register;
5614d22c 6186 enum i386_error specific_error = 0;
29b0f896 6187
c0f3af97
L
6188#if MAX_OPERANDS != 5
6189# error "MAX_OPERANDS must be 5."
f48ff2ae
L
6190#endif
6191
29b0f896 6192 found_reverse_match = 0;
539e75ad 6193 addr_prefix_disp = -1;
40fb9820 6194
dc2be329 6195 /* Prepare for mnemonic suffix check. */
40fb9820 6196 memset (&suffix_check, 0, sizeof (suffix_check));
dc2be329
L
6197 switch (mnem_suffix)
6198 {
6199 case BYTE_MNEM_SUFFIX:
6200 suffix_check.no_bsuf = 1;
6201 break;
6202 case WORD_MNEM_SUFFIX:
6203 suffix_check.no_wsuf = 1;
6204 break;
6205 case SHORT_MNEM_SUFFIX:
6206 suffix_check.no_ssuf = 1;
6207 break;
6208 case LONG_MNEM_SUFFIX:
6209 suffix_check.no_lsuf = 1;
6210 break;
6211 case QWORD_MNEM_SUFFIX:
6212 suffix_check.no_qsuf = 1;
6213 break;
6214 default:
6215 /* NB: In Intel syntax, normally we can check for memory operand
6216 size when there is no mnemonic suffix. But jmp and call have
6217 2 different encodings with Dword memory operand size, one with
6218 No_ldSuf and the other without. i.suffix is set to
6219 LONG_DOUBLE_MNEM_SUFFIX to skip the one with No_ldSuf. */
6220 if (i.suffix == LONG_DOUBLE_MNEM_SUFFIX)
6221 suffix_check.no_ldsuf = 1;
83b16ac6
JB
6222 }
6223
01559ecc
L
6224 /* Must have right number of operands. */
6225 i.error = number_of_operands_mismatch;
6226
45aa61fe 6227 for (t = current_templates->start; t < current_templates->end; t++)
29b0f896 6228 {
539e75ad 6229 addr_prefix_disp = -1;
dbbc8b7e 6230 found_reverse_match = 0;
539e75ad 6231
29b0f896
AM
6232 if (i.operands != t->operands)
6233 continue;
6234
50aecf8c 6235 /* Check processor support. */
a65babc9 6236 i.error = unsupported;
45a4bb20 6237 if (cpu_flags_match (t) != CPU_FLAGS_PERFECT_MATCH)
50aecf8c
L
6238 continue;
6239
57392598
CL
6240 /* Check Pseudo Prefix. */
6241 i.error = unsupported;
6242 if (t->opcode_modifier.pseudovexprefix
6243 && !(i.vec_encoding == vex_encoding_vex
6244 || i.vec_encoding == vex_encoding_vex3))
6245 continue;
6246
e1d4d893 6247 /* Check AT&T mnemonic. */
a65babc9 6248 i.error = unsupported_with_intel_mnemonic;
e1d4d893 6249 if (intel_mnemonic && t->opcode_modifier.attmnemonic)
1efbbeb4
L
6250 continue;
6251
4b5aaf5f 6252 /* Check AT&T/Intel syntax. */
a65babc9 6253 i.error = unsupported_syntax;
5c07affc 6254 if ((intel_syntax && t->opcode_modifier.attsyntax)
4b5aaf5f 6255 || (!intel_syntax && t->opcode_modifier.intelsyntax))
1efbbeb4
L
6256 continue;
6257
4b5aaf5f
L
6258 /* Check Intel64/AMD64 ISA. */
6259 switch (isa64)
6260 {
6261 default:
6262 /* Default: Don't accept Intel64. */
6263 if (t->opcode_modifier.isa64 == INTEL64)
6264 continue;
6265 break;
6266 case amd64:
6267 /* -mamd64: Don't accept Intel64 and Intel64 only. */
6268 if (t->opcode_modifier.isa64 >= INTEL64)
6269 continue;
6270 break;
6271 case intel64:
6272 /* -mintel64: Don't accept AMD64. */
5990e377 6273 if (t->opcode_modifier.isa64 == AMD64 && flag_code == CODE_64BIT)
4b5aaf5f
L
6274 continue;
6275 break;
6276 }
6277
dc2be329 6278 /* Check the suffix. */
a65babc9 6279 i.error = invalid_instruction_suffix;
dc2be329
L
6280 if ((t->opcode_modifier.no_bsuf && suffix_check.no_bsuf)
6281 || (t->opcode_modifier.no_wsuf && suffix_check.no_wsuf)
6282 || (t->opcode_modifier.no_lsuf && suffix_check.no_lsuf)
6283 || (t->opcode_modifier.no_ssuf && suffix_check.no_ssuf)
6284 || (t->opcode_modifier.no_qsuf && suffix_check.no_qsuf)
6285 || (t->opcode_modifier.no_ldsuf && suffix_check.no_ldsuf))
83b16ac6 6286 continue;
29b0f896 6287
3ac21baa
JB
6288 size_match = operand_size_match (t);
6289 if (!size_match)
7d5e4556 6290 continue;
539e75ad 6291
6f2f06be
JB
6292 /* This is intentionally not
6293
0cfa3eb3 6294 if (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE))
6f2f06be
JB
6295
6296 as the case of a missing * on the operand is accepted (perhaps with
6297 a warning, issued further down). */
0cfa3eb3 6298 if (i.jumpabsolute && t->opcode_modifier.jump != JUMP_ABSOLUTE)
6f2f06be
JB
6299 {
6300 i.error = operand_type_mismatch;
6301 continue;
6302 }
6303
5c07affc
L
6304 for (j = 0; j < MAX_OPERANDS; j++)
6305 operand_types[j] = t->operand_types[j];
6306
e365e234
JB
6307 /* In general, don't allow
6308 - 64-bit operands outside of 64-bit mode,
6309 - 32-bit operands on pre-386. */
4873e243 6310 j = i.imm_operands + (t->operands > i.imm_operands + 1);
e365e234
JB
6311 if (((i.suffix == QWORD_MNEM_SUFFIX
6312 && flag_code != CODE_64BIT
8b65b895 6313 && !(t->base_opcode == 0xfc7
70e95837 6314 && i.tm.opcode_modifier.opcodeprefix == PREFIX_NONE
8b65b895 6315 && t->extension_opcode == 1) /* cmpxchg8b */)
e365e234
JB
6316 || (i.suffix == LONG_MNEM_SUFFIX
6317 && !cpu_arch_flags.bitfield.cpui386))
45aa61fe 6318 && (intel_syntax
3cd7f3e3 6319 ? (t->opcode_modifier.mnemonicsize != IGNORESIZE
45aa61fe
AM
6320 && !intel_float_operand (t->name))
6321 : intel_float_operand (t->name) != 2)
4873e243
JB
6322 && (t->operands == i.imm_operands
6323 || (operand_types[i.imm_operands].bitfield.class != RegMMX
6324 && operand_types[i.imm_operands].bitfield.class != RegSIMD
6325 && operand_types[i.imm_operands].bitfield.class != RegMask)
6326 || (operand_types[j].bitfield.class != RegMMX
6327 && operand_types[j].bitfield.class != RegSIMD
6328 && operand_types[j].bitfield.class != RegMask))
63112cd6 6329 && !t->opcode_modifier.sib)
192dc9c6
JB
6330 continue;
6331
29b0f896 6332 /* Do not verify operands when there are none. */
e365e234 6333 if (!t->operands)
da4977e0
JB
6334 {
6335 if (VEX_check_encoding (t))
6336 {
6337 specific_error = i.error;
6338 continue;
6339 }
6340
6341 /* We've found a match; break out of loop. */
6342 break;
6343 }
252b5132 6344
48bcea9f
JB
6345 if (!t->opcode_modifier.jump
6346 || t->opcode_modifier.jump == JUMP_ABSOLUTE)
6347 {
6348 /* There should be only one Disp operand. */
6349 for (j = 0; j < MAX_OPERANDS; j++)
6350 if (operand_type_check (operand_types[j], disp))
539e75ad 6351 break;
48bcea9f
JB
6352 if (j < MAX_OPERANDS)
6353 {
6354 bfd_boolean override = (i.prefix[ADDR_PREFIX] != 0);
6355
6356 addr_prefix_disp = j;
6357
6358 /* Address size prefix will turn Disp64/Disp32S/Disp32/Disp16
6359 operand into Disp32/Disp32/Disp16/Disp32 operand. */
6360 switch (flag_code)
40fb9820 6361 {
48bcea9f
JB
6362 case CODE_16BIT:
6363 override = !override;
6364 /* Fall through. */
6365 case CODE_32BIT:
6366 if (operand_types[j].bitfield.disp32
6367 && operand_types[j].bitfield.disp16)
40fb9820 6368 {
48bcea9f
JB
6369 operand_types[j].bitfield.disp16 = override;
6370 operand_types[j].bitfield.disp32 = !override;
40fb9820 6371 }
48bcea9f
JB
6372 operand_types[j].bitfield.disp32s = 0;
6373 operand_types[j].bitfield.disp64 = 0;
6374 break;
6375
6376 case CODE_64BIT:
6377 if (operand_types[j].bitfield.disp32s
6378 || operand_types[j].bitfield.disp64)
40fb9820 6379 {
48bcea9f
JB
6380 operand_types[j].bitfield.disp64 &= !override;
6381 operand_types[j].bitfield.disp32s &= !override;
6382 operand_types[j].bitfield.disp32 = override;
40fb9820 6383 }
48bcea9f
JB
6384 operand_types[j].bitfield.disp16 = 0;
6385 break;
40fb9820 6386 }
539e75ad 6387 }
48bcea9f 6388 }
539e75ad 6389
02a86693
L
6390 /* Force 0x8b encoding for "mov foo@GOT, %eax". */
6391 if (i.reloc[0] == BFD_RELOC_386_GOT32 && t->base_opcode == 0xa0)
6392 continue;
6393
56ffb741 6394 /* We check register size if needed. */
e2195274
JB
6395 if (t->opcode_modifier.checkregsize)
6396 {
6397 check_register = (1 << t->operands) - 1;
6398 if (i.broadcast)
6399 check_register &= ~(1 << i.broadcast->operand);
6400 }
6401 else
6402 check_register = 0;
6403
c6fb90c8 6404 overlap0 = operand_type_and (i.types[0], operand_types[0]);
29b0f896
AM
6405 switch (t->operands)
6406 {
6407 case 1:
40fb9820 6408 if (!operand_type_match (overlap0, i.types[0]))
29b0f896
AM
6409 continue;
6410 break;
6411 case 2:
33eaf5de 6412 /* xchg %eax, %eax is a special case. It is an alias for nop
8b38ad71
L
6413 only in 32bit mode and we can use opcode 0x90. In 64bit
6414 mode, we can't use 0x90 for xchg %eax, %eax since it should
6415 zero-extend %eax to %rax. */
6416 if (flag_code == CODE_64BIT
6417 && t->base_opcode == 0x90
75e5731b
JB
6418 && i.types[0].bitfield.instance == Accum
6419 && i.types[0].bitfield.dword
6420 && i.types[1].bitfield.instance == Accum
6421 && i.types[1].bitfield.dword)
8b38ad71 6422 continue;
1212781b
JB
6423 /* xrelease mov %eax, <disp> is another special case. It must not
6424 match the accumulator-only encoding of mov. */
6425 if (flag_code != CODE_64BIT
6426 && i.hle_prefix
6427 && t->base_opcode == 0xa0
75e5731b 6428 && i.types[0].bitfield.instance == Accum
8dc0818e 6429 && (i.flags[1] & Operand_Mem))
1212781b 6430 continue;
f5eb1d70
JB
6431 /* Fall through. */
6432
6433 case 3:
3ac21baa
JB
6434 if (!(size_match & MATCH_STRAIGHT))
6435 goto check_reverse;
64c49ab3
JB
6436 /* Reverse direction of operands if swapping is possible in the first
6437 place (operands need to be symmetric) and
6438 - the load form is requested, and the template is a store form,
6439 - the store form is requested, and the template is a load form,
6440 - the non-default (swapped) form is requested. */
6441 overlap1 = operand_type_and (operand_types[0], operand_types[1]);
f5eb1d70 6442 if (t->opcode_modifier.d && i.reg_operands == i.operands
64c49ab3
JB
6443 && !operand_type_all_zero (&overlap1))
6444 switch (i.dir_encoding)
6445 {
6446 case dir_encoding_load:
6447 if (operand_type_check (operand_types[i.operands - 1], anymem)
dfd69174 6448 || t->opcode_modifier.regmem)
64c49ab3
JB
6449 goto check_reverse;
6450 break;
6451
6452 case dir_encoding_store:
6453 if (!operand_type_check (operand_types[i.operands - 1], anymem)
dfd69174 6454 && !t->opcode_modifier.regmem)
64c49ab3
JB
6455 goto check_reverse;
6456 break;
6457
6458 case dir_encoding_swap:
6459 goto check_reverse;
6460
6461 case dir_encoding_default:
6462 break;
6463 }
86fa6981 6464 /* If we want store form, we skip the current load. */
64c49ab3
JB
6465 if ((i.dir_encoding == dir_encoding_store
6466 || i.dir_encoding == dir_encoding_swap)
86fa6981
L
6467 && i.mem_operands == 0
6468 && t->opcode_modifier.load)
fa99fab2 6469 continue;
1a0670f3 6470 /* Fall through. */
f48ff2ae 6471 case 4:
c0f3af97 6472 case 5:
c6fb90c8 6473 overlap1 = operand_type_and (i.types[1], operand_types[1]);
40fb9820
L
6474 if (!operand_type_match (overlap0, i.types[0])
6475 || !operand_type_match (overlap1, i.types[1])
e2195274 6476 || ((check_register & 3) == 3
dc821c5f 6477 && !operand_type_register_match (i.types[0],
40fb9820 6478 operand_types[0],
dc821c5f 6479 i.types[1],
40fb9820 6480 operand_types[1])))
29b0f896
AM
6481 {
6482 /* Check if other direction is valid ... */
38e314eb 6483 if (!t->opcode_modifier.d)
29b0f896
AM
6484 continue;
6485
dc1e8a47 6486 check_reverse:
3ac21baa
JB
6487 if (!(size_match & MATCH_REVERSE))
6488 continue;
29b0f896 6489 /* Try reversing direction of operands. */
f5eb1d70
JB
6490 overlap0 = operand_type_and (i.types[0], operand_types[i.operands - 1]);
6491 overlap1 = operand_type_and (i.types[i.operands - 1], operand_types[0]);
40fb9820 6492 if (!operand_type_match (overlap0, i.types[0])
f5eb1d70 6493 || !operand_type_match (overlap1, i.types[i.operands - 1])
45664ddb 6494 || (check_register
dc821c5f 6495 && !operand_type_register_match (i.types[0],
f5eb1d70
JB
6496 operand_types[i.operands - 1],
6497 i.types[i.operands - 1],
45664ddb 6498 operand_types[0])))
29b0f896
AM
6499 {
6500 /* Does not match either direction. */
6501 continue;
6502 }
38e314eb 6503 /* found_reverse_match holds which of D or FloatR
29b0f896 6504 we've found. */
38e314eb
JB
6505 if (!t->opcode_modifier.d)
6506 found_reverse_match = 0;
6507 else if (operand_types[0].bitfield.tbyte)
8a2ed489 6508 found_reverse_match = Opcode_FloatD;
dbbc8b7e 6509 else if (operand_types[0].bitfield.xmmword
f5eb1d70 6510 || operand_types[i.operands - 1].bitfield.xmmword
3528c362
JB
6511 || operand_types[0].bitfield.class == RegMMX
6512 || operand_types[i.operands - 1].bitfield.class == RegMMX
dbbc8b7e
JB
6513 || is_any_vex_encoding(t))
6514 found_reverse_match = (t->base_opcode & 0xee) != 0x6e
6515 ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD;
8a2ed489 6516 else
38e314eb 6517 found_reverse_match = Opcode_D;
40fb9820 6518 if (t->opcode_modifier.floatr)
8a2ed489 6519 found_reverse_match |= Opcode_FloatR;
29b0f896 6520 }
f48ff2ae 6521 else
29b0f896 6522 {
f48ff2ae 6523 /* Found a forward 2 operand match here. */
d1cbb4db
L
6524 switch (t->operands)
6525 {
c0f3af97
L
6526 case 5:
6527 overlap4 = operand_type_and (i.types[4],
6528 operand_types[4]);
1a0670f3 6529 /* Fall through. */
d1cbb4db 6530 case 4:
c6fb90c8
L
6531 overlap3 = operand_type_and (i.types[3],
6532 operand_types[3]);
1a0670f3 6533 /* Fall through. */
d1cbb4db 6534 case 3:
c6fb90c8
L
6535 overlap2 = operand_type_and (i.types[2],
6536 operand_types[2]);
d1cbb4db
L
6537 break;
6538 }
29b0f896 6539
f48ff2ae
L
6540 switch (t->operands)
6541 {
c0f3af97
L
6542 case 5:
6543 if (!operand_type_match (overlap4, i.types[4])
dc821c5f 6544 || !operand_type_register_match (i.types[3],
c0f3af97 6545 operand_types[3],
c0f3af97
L
6546 i.types[4],
6547 operand_types[4]))
6548 continue;
1a0670f3 6549 /* Fall through. */
f48ff2ae 6550 case 4:
40fb9820 6551 if (!operand_type_match (overlap3, i.types[3])
e2195274
JB
6552 || ((check_register & 0xa) == 0xa
6553 && !operand_type_register_match (i.types[1],
f7768225
JB
6554 operand_types[1],
6555 i.types[3],
e2195274
JB
6556 operand_types[3]))
6557 || ((check_register & 0xc) == 0xc
6558 && !operand_type_register_match (i.types[2],
6559 operand_types[2],
6560 i.types[3],
6561 operand_types[3])))
f48ff2ae 6562 continue;
1a0670f3 6563 /* Fall through. */
f48ff2ae
L
6564 case 3:
6565 /* Here we make use of the fact that there are no
23e42951 6566 reverse match 3 operand instructions. */
40fb9820 6567 if (!operand_type_match (overlap2, i.types[2])
e2195274
JB
6568 || ((check_register & 5) == 5
6569 && !operand_type_register_match (i.types[0],
23e42951
JB
6570 operand_types[0],
6571 i.types[2],
e2195274
JB
6572 operand_types[2]))
6573 || ((check_register & 6) == 6
6574 && !operand_type_register_match (i.types[1],
6575 operand_types[1],
6576 i.types[2],
6577 operand_types[2])))
f48ff2ae
L
6578 continue;
6579 break;
6580 }
29b0f896 6581 }
f48ff2ae 6582 /* Found either forward/reverse 2, 3 or 4 operand match here:
29b0f896
AM
6583 slip through to break. */
6584 }
c0f3af97 6585
da4977e0
JB
6586 /* Check if vector operands are valid. */
6587 if (check_VecOperands (t))
6588 {
6589 specific_error = i.error;
6590 continue;
6591 }
6592
6593 /* Check if VEX/EVEX encoding requirements can be satisfied. */
6594 if (VEX_check_encoding (t))
5614d22c
JB
6595 {
6596 specific_error = i.error;
6597 continue;
6598 }
a683cc34 6599
29b0f896
AM
6600 /* We've found a match; break out of loop. */
6601 break;
6602 }
6603
6604 if (t == current_templates->end)
6605 {
6606 /* We found no match. */
a65babc9 6607 const char *err_msg;
5614d22c 6608 switch (specific_error ? specific_error : i.error)
a65babc9
L
6609 {
6610 default:
6611 abort ();
86e026a4 6612 case operand_size_mismatch:
a65babc9
L
6613 err_msg = _("operand size mismatch");
6614 break;
6615 case operand_type_mismatch:
6616 err_msg = _("operand type mismatch");
6617 break;
6618 case register_type_mismatch:
6619 err_msg = _("register type mismatch");
6620 break;
6621 case number_of_operands_mismatch:
6622 err_msg = _("number of operands mismatch");
6623 break;
6624 case invalid_instruction_suffix:
6625 err_msg = _("invalid instruction suffix");
6626 break;
6627 case bad_imm4:
4a2608e3 6628 err_msg = _("constant doesn't fit in 4 bits");
a65babc9 6629 break;
a65babc9
L
6630 case unsupported_with_intel_mnemonic:
6631 err_msg = _("unsupported with Intel mnemonic");
6632 break;
6633 case unsupported_syntax:
6634 err_msg = _("unsupported syntax");
6635 break;
6636 case unsupported:
35262a23 6637 as_bad (_("unsupported instruction `%s'"),
10efe3f6
L
6638 current_templates->start->name);
6639 return NULL;
260cd341
LC
6640 case invalid_sib_address:
6641 err_msg = _("invalid SIB address");
6642 break;
6c30d220
L
6643 case invalid_vsib_address:
6644 err_msg = _("invalid VSIB address");
6645 break;
7bab8ab5
JB
6646 case invalid_vector_register_set:
6647 err_msg = _("mask, index, and destination registers must be distinct");
6648 break;
260cd341
LC
6649 case invalid_tmm_register_set:
6650 err_msg = _("all tmm registers must be distinct");
6651 break;
6c30d220
L
6652 case unsupported_vector_index_register:
6653 err_msg = _("unsupported vector index register");
6654 break;
43234a1e
L
6655 case unsupported_broadcast:
6656 err_msg = _("unsupported broadcast");
6657 break;
43234a1e
L
6658 case broadcast_needed:
6659 err_msg = _("broadcast is needed for operand of such type");
6660 break;
6661 case unsupported_masking:
6662 err_msg = _("unsupported masking");
6663 break;
6664 case mask_not_on_destination:
6665 err_msg = _("mask not on destination operand");
6666 break;
6667 case no_default_mask:
6668 err_msg = _("default mask isn't allowed");
6669 break;
6670 case unsupported_rc_sae:
6671 err_msg = _("unsupported static rounding/sae");
6672 break;
6673 case rc_sae_operand_not_last_imm:
6674 if (intel_syntax)
6675 err_msg = _("RC/SAE operand must precede immediate operands");
6676 else
6677 err_msg = _("RC/SAE operand must follow immediate operands");
6678 break;
6679 case invalid_register_operand:
6680 err_msg = _("invalid register operand");
6681 break;
a65babc9
L
6682 }
6683 as_bad (_("%s for `%s'"), err_msg,
891edac4 6684 current_templates->start->name);
fa99fab2 6685 return NULL;
29b0f896 6686 }
252b5132 6687
29b0f896
AM
6688 if (!quiet_warnings)
6689 {
6690 if (!intel_syntax
0cfa3eb3 6691 && (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE)))
6f2f06be 6692 as_warn (_("indirect %s without `*'"), t->name);
29b0f896 6693
40fb9820 6694 if (t->opcode_modifier.isprefix
3cd7f3e3 6695 && t->opcode_modifier.mnemonicsize == IGNORESIZE)
29b0f896
AM
6696 {
6697 /* Warn them that a data or address size prefix doesn't
6698 affect assembly of the next line of code. */
6699 as_warn (_("stand-alone `%s' prefix"), t->name);
6700 }
6701 }
6702
6703 /* Copy the template we found. */
6704 i.tm = *t;
539e75ad
L
6705
6706 if (addr_prefix_disp != -1)
6707 i.tm.operand_types[addr_prefix_disp]
6708 = operand_types[addr_prefix_disp];
6709
29b0f896
AM
6710 if (found_reverse_match)
6711 {
dfd69174
JB
6712 /* If we found a reverse match we must alter the opcode direction
6713 bit and clear/flip the regmem modifier one. found_reverse_match
6714 holds bits to change (different for int & float insns). */
29b0f896
AM
6715
6716 i.tm.base_opcode ^= found_reverse_match;
6717
f5eb1d70
JB
6718 i.tm.operand_types[0] = operand_types[i.operands - 1];
6719 i.tm.operand_types[i.operands - 1] = operand_types[0];
dfd69174
JB
6720
6721 /* Certain SIMD insns have their load forms specified in the opcode
6722 table, and hence we need to _set_ RegMem instead of clearing it.
6723 We need to avoid setting the bit though on insns like KMOVW. */
6724 i.tm.opcode_modifier.regmem
6725 = i.tm.opcode_modifier.modrm && i.tm.opcode_modifier.d
6726 && i.tm.operands > 2U - i.tm.opcode_modifier.sse2avx
6727 && !i.tm.opcode_modifier.regmem;
29b0f896
AM
6728 }
6729
fa99fab2 6730 return t;
29b0f896
AM
6731}
6732
6733static int
e3bb37b5 6734check_string (void)
29b0f896 6735{
51c8edf6
JB
6736 unsigned int es_op = i.tm.opcode_modifier.isstring - IS_STRING_ES_OP0;
6737 unsigned int op = i.tm.operand_types[0].bitfield.baseindex ? es_op : 0;
8dc0818e 6738
51c8edf6 6739 if (i.seg[op] != NULL && i.seg[op] != &es)
29b0f896 6740 {
51c8edf6
JB
6741 as_bad (_("`%s' operand %u must use `%ses' segment"),
6742 i.tm.name,
6743 intel_syntax ? i.tm.operands - es_op : es_op + 1,
6744 register_prefix);
6745 return 0;
29b0f896 6746 }
51c8edf6
JB
6747
6748 /* There's only ever one segment override allowed per instruction.
6749 This instruction possibly has a legal segment override on the
6750 second operand, so copy the segment to where non-string
6751 instructions store it, allowing common code. */
6752 i.seg[op] = i.seg[1];
6753
29b0f896
AM
6754 return 1;
6755}
6756
6757static int
543613e9 6758process_suffix (void)
29b0f896 6759{
8b65b895
L
6760 bfd_boolean is_crc32 = FALSE;
6761
29b0f896
AM
6762 /* If matched instruction specifies an explicit instruction mnemonic
6763 suffix, use it. */
673fe0f0 6764 if (i.tm.opcode_modifier.size == SIZE16)
40fb9820 6765 i.suffix = WORD_MNEM_SUFFIX;
673fe0f0 6766 else if (i.tm.opcode_modifier.size == SIZE32)
40fb9820 6767 i.suffix = LONG_MNEM_SUFFIX;
673fe0f0 6768 else if (i.tm.opcode_modifier.size == SIZE64)
40fb9820 6769 i.suffix = QWORD_MNEM_SUFFIX;
13e600d0 6770 else if (i.reg_operands
c8f8eebc
JB
6771 && (i.operands > 1 || i.types[0].bitfield.class == Reg)
6772 && !i.tm.opcode_modifier.addrprefixopreg)
29b0f896 6773 {
65fca059 6774 unsigned int numop = i.operands;
8b65b895
L
6775 /* CRC32 */
6776 is_crc32 = (i.tm.base_opcode == 0xf38f0
6777 && i.tm.opcode_modifier.opcodeprefix == PREFIX_0XF2);
65fca059
JB
6778
6779 /* movsx/movzx want only their source operand considered here, for the
6780 ambiguity checking below. The suffix will be replaced afterwards
6781 to represent the destination (register). */
6782 if (((i.tm.base_opcode | 8) == 0xfbe && i.tm.opcode_modifier.w)
6783 || (i.tm.base_opcode == 0x63 && i.tm.cpu_flags.bitfield.cpu64))
6784 --i.operands;
6785
643bb870 6786 /* crc32 needs REX.W set regardless of suffix / source operand size. */
8b65b895 6787 if (is_crc32 && i.tm.operand_types[1].bitfield.qword)
643bb870
JB
6788 i.rex |= REX_W;
6789
29b0f896 6790 /* If there's no instruction mnemonic suffix we try to invent one
13e600d0 6791 based on GPR operands. */
29b0f896
AM
6792 if (!i.suffix)
6793 {
6794 /* We take i.suffix from the last register operand specified,
6795 Destination register type is more significant than source
381d071f
L
6796 register type. crc32 in SSE4.2 prefers source register
6797 type. */
8b65b895 6798 unsigned int op = is_crc32 ? 1 : i.operands;
20592a94 6799
1a035124
JB
6800 while (op--)
6801 if (i.tm.operand_types[op].bitfield.instance == InstanceNone
6802 || i.tm.operand_types[op].bitfield.instance == Accum)
6803 {
6804 if (i.types[op].bitfield.class != Reg)
6805 continue;
6806 if (i.types[op].bitfield.byte)
6807 i.suffix = BYTE_MNEM_SUFFIX;
6808 else if (i.types[op].bitfield.word)
6809 i.suffix = WORD_MNEM_SUFFIX;
6810 else if (i.types[op].bitfield.dword)
6811 i.suffix = LONG_MNEM_SUFFIX;
6812 else if (i.types[op].bitfield.qword)
6813 i.suffix = QWORD_MNEM_SUFFIX;
6814 else
6815 continue;
6816 break;
6817 }
65fca059
JB
6818
6819 /* As an exception, movsx/movzx silently default to a byte source
6820 in AT&T mode. */
6821 if ((i.tm.base_opcode | 8) == 0xfbe && i.tm.opcode_modifier.w
6822 && !i.suffix && !intel_syntax)
6823 i.suffix = BYTE_MNEM_SUFFIX;
29b0f896
AM
6824 }
6825 else if (i.suffix == BYTE_MNEM_SUFFIX)
6826 {
2eb952a4 6827 if (intel_syntax
3cd7f3e3 6828 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
2eb952a4
L
6829 && i.tm.opcode_modifier.no_bsuf)
6830 i.suffix = 0;
6831 else if (!check_byte_reg ())
29b0f896
AM
6832 return 0;
6833 }
6834 else if (i.suffix == LONG_MNEM_SUFFIX)
6835 {
2eb952a4 6836 if (intel_syntax
3cd7f3e3 6837 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
9f123b91
JB
6838 && i.tm.opcode_modifier.no_lsuf
6839 && !i.tm.opcode_modifier.todword
6840 && !i.tm.opcode_modifier.toqword)
2eb952a4
L
6841 i.suffix = 0;
6842 else if (!check_long_reg ())
29b0f896
AM
6843 return 0;
6844 }
6845 else if (i.suffix == QWORD_MNEM_SUFFIX)
6846 {
955e1e6a 6847 if (intel_syntax
3cd7f3e3 6848 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
9f123b91
JB
6849 && i.tm.opcode_modifier.no_qsuf
6850 && !i.tm.opcode_modifier.todword
6851 && !i.tm.opcode_modifier.toqword)
955e1e6a
L
6852 i.suffix = 0;
6853 else if (!check_qword_reg ())
29b0f896
AM
6854 return 0;
6855 }
6856 else if (i.suffix == WORD_MNEM_SUFFIX)
6857 {
2eb952a4 6858 if (intel_syntax
3cd7f3e3 6859 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
2eb952a4
L
6860 && i.tm.opcode_modifier.no_wsuf)
6861 i.suffix = 0;
6862 else if (!check_word_reg ())
29b0f896
AM
6863 return 0;
6864 }
3cd7f3e3
L
6865 else if (intel_syntax
6866 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE)
29b0f896
AM
6867 /* Do nothing if the instruction is going to ignore the prefix. */
6868 ;
6869 else
6870 abort ();
65fca059
JB
6871
6872 /* Undo the movsx/movzx change done above. */
6873 i.operands = numop;
29b0f896 6874 }
3cd7f3e3
L
6875 else if (i.tm.opcode_modifier.mnemonicsize == DEFAULTSIZE
6876 && !i.suffix)
29b0f896 6877 {
13e600d0
JB
6878 i.suffix = stackop_size;
6879 if (stackop_size == LONG_MNEM_SUFFIX)
06f74c5c
L
6880 {
6881 /* stackop_size is set to LONG_MNEM_SUFFIX for the
6882 .code16gcc directive to support 16-bit mode with
6883 32-bit address. For IRET without a suffix, generate
6884 16-bit IRET (opcode 0xcf) to return from an interrupt
6885 handler. */
13e600d0
JB
6886 if (i.tm.base_opcode == 0xcf)
6887 {
6888 i.suffix = WORD_MNEM_SUFFIX;
6889 as_warn (_("generating 16-bit `iret' for .code16gcc directive"));
6890 }
6891 /* Warn about changed behavior for segment register push/pop. */
6892 else if ((i.tm.base_opcode | 1) == 0x07)
6893 as_warn (_("generating 32-bit `%s', unlike earlier gas versions"),
6894 i.tm.name);
06f74c5c 6895 }
29b0f896 6896 }
c006a730 6897 else if (!i.suffix
0cfa3eb3
JB
6898 && (i.tm.opcode_modifier.jump == JUMP_ABSOLUTE
6899 || i.tm.opcode_modifier.jump == JUMP_BYTE
6900 || i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT
64e74474
AM
6901 || (i.tm.base_opcode == 0x0f01 /* [ls][gi]dt */
6902 && i.tm.extension_opcode <= 3)))
9306ca4a
JB
6903 {
6904 switch (flag_code)
6905 {
6906 case CODE_64BIT:
40fb9820 6907 if (!i.tm.opcode_modifier.no_qsuf)
9306ca4a 6908 {
828c2a25
JB
6909 if (i.tm.opcode_modifier.jump == JUMP_BYTE
6910 || i.tm.opcode_modifier.no_lsuf)
6911 i.suffix = QWORD_MNEM_SUFFIX;
9306ca4a
JB
6912 break;
6913 }
1a0670f3 6914 /* Fall through. */
9306ca4a 6915 case CODE_32BIT:
40fb9820 6916 if (!i.tm.opcode_modifier.no_lsuf)
9306ca4a
JB
6917 i.suffix = LONG_MNEM_SUFFIX;
6918 break;
6919 case CODE_16BIT:
40fb9820 6920 if (!i.tm.opcode_modifier.no_wsuf)
9306ca4a
JB
6921 i.suffix = WORD_MNEM_SUFFIX;
6922 break;
6923 }
6924 }
252b5132 6925
c006a730 6926 if (!i.suffix
3cd7f3e3 6927 && (i.tm.opcode_modifier.mnemonicsize != DEFAULTSIZE
873494c8
JB
6928 /* Also cover lret/retf/iret in 64-bit mode. */
6929 || (flag_code == CODE_64BIT
6930 && !i.tm.opcode_modifier.no_lsuf
6931 && !i.tm.opcode_modifier.no_qsuf))
3cd7f3e3 6932 && i.tm.opcode_modifier.mnemonicsize != IGNORESIZE
8bbb3ad8
JB
6933 /* Explicit sizing prefixes are assumed to disambiguate insns. */
6934 && !i.prefix[DATA_PREFIX] && !(i.prefix[REX_PREFIX] & REX_W)
62b3f548
JB
6935 /* Accept FLDENV et al without suffix. */
6936 && (i.tm.opcode_modifier.no_ssuf || i.tm.opcode_modifier.floatmf))
29b0f896 6937 {
6c0946d0 6938 unsigned int suffixes, evex = 0;
c006a730
JB
6939
6940 suffixes = !i.tm.opcode_modifier.no_bsuf;
6941 if (!i.tm.opcode_modifier.no_wsuf)
6942 suffixes |= 1 << 1;
6943 if (!i.tm.opcode_modifier.no_lsuf)
6944 suffixes |= 1 << 2;
6945 if (!i.tm.opcode_modifier.no_ldsuf)
6946 suffixes |= 1 << 3;
6947 if (!i.tm.opcode_modifier.no_ssuf)
6948 suffixes |= 1 << 4;
6949 if (flag_code == CODE_64BIT && !i.tm.opcode_modifier.no_qsuf)
6950 suffixes |= 1 << 5;
6951
6c0946d0
JB
6952 /* For [XYZ]MMWORD operands inspect operand sizes. While generally
6953 also suitable for AT&T syntax mode, it was requested that this be
6954 restricted to just Intel syntax. */
b9915cbc 6955 if (intel_syntax && is_any_vex_encoding (&i.tm) && !i.broadcast)
6c0946d0 6956 {
b9915cbc 6957 unsigned int op;
6c0946d0 6958
b9915cbc 6959 for (op = 0; op < i.tm.operands; ++op)
6c0946d0 6960 {
b9915cbc
JB
6961 if (is_evex_encoding (&i.tm)
6962 && !cpu_arch_flags.bitfield.cpuavx512vl)
6c0946d0 6963 {
b9915cbc
JB
6964 if (i.tm.operand_types[op].bitfield.ymmword)
6965 i.tm.operand_types[op].bitfield.xmmword = 0;
6966 if (i.tm.operand_types[op].bitfield.zmmword)
6967 i.tm.operand_types[op].bitfield.ymmword = 0;
6968 if (!i.tm.opcode_modifier.evex
6969 || i.tm.opcode_modifier.evex == EVEXDYN)
6970 i.tm.opcode_modifier.evex = EVEX512;
6971 }
6c0946d0 6972
b9915cbc
JB
6973 if (i.tm.operand_types[op].bitfield.xmmword
6974 + i.tm.operand_types[op].bitfield.ymmword
6975 + i.tm.operand_types[op].bitfield.zmmword < 2)
6976 continue;
6c0946d0 6977
b9915cbc
JB
6978 /* Any properly sized operand disambiguates the insn. */
6979 if (i.types[op].bitfield.xmmword
6980 || i.types[op].bitfield.ymmword
6981 || i.types[op].bitfield.zmmword)
6982 {
6983 suffixes &= ~(7 << 6);
6984 evex = 0;
6985 break;
6986 }
6c0946d0 6987
b9915cbc
JB
6988 if ((i.flags[op] & Operand_Mem)
6989 && i.tm.operand_types[op].bitfield.unspecified)
6990 {
6991 if (i.tm.operand_types[op].bitfield.xmmword)
6992 suffixes |= 1 << 6;
6993 if (i.tm.operand_types[op].bitfield.ymmword)
6994 suffixes |= 1 << 7;
6995 if (i.tm.operand_types[op].bitfield.zmmword)
6996 suffixes |= 1 << 8;
6997 if (is_evex_encoding (&i.tm))
6998 evex = EVEX512;
6c0946d0
JB
6999 }
7000 }
7001 }
7002
7003 /* Are multiple suffixes / operand sizes allowed? */
c006a730 7004 if (suffixes & (suffixes - 1))
9306ca4a 7005 {
873494c8 7006 if (intel_syntax
3cd7f3e3 7007 && (i.tm.opcode_modifier.mnemonicsize != DEFAULTSIZE
873494c8 7008 || operand_check == check_error))
9306ca4a 7009 {
c006a730 7010 as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
9306ca4a
JB
7011 return 0;
7012 }
c006a730 7013 if (operand_check == check_error)
9306ca4a 7014 {
c006a730
JB
7015 as_bad (_("no instruction mnemonic suffix given and "
7016 "no register operands; can't size `%s'"), i.tm.name);
9306ca4a
JB
7017 return 0;
7018 }
c006a730 7019 if (operand_check == check_warning)
873494c8
JB
7020 as_warn (_("%s; using default for `%s'"),
7021 intel_syntax
7022 ? _("ambiguous operand size")
7023 : _("no instruction mnemonic suffix given and "
7024 "no register operands"),
7025 i.tm.name);
c006a730
JB
7026
7027 if (i.tm.opcode_modifier.floatmf)
7028 i.suffix = SHORT_MNEM_SUFFIX;
65fca059
JB
7029 else if ((i.tm.base_opcode | 8) == 0xfbe
7030 || (i.tm.base_opcode == 0x63
7031 && i.tm.cpu_flags.bitfield.cpu64))
7032 /* handled below */;
6c0946d0
JB
7033 else if (evex)
7034 i.tm.opcode_modifier.evex = evex;
c006a730
JB
7035 else if (flag_code == CODE_16BIT)
7036 i.suffix = WORD_MNEM_SUFFIX;
1a035124 7037 else if (!i.tm.opcode_modifier.no_lsuf)
c006a730 7038 i.suffix = LONG_MNEM_SUFFIX;
1a035124
JB
7039 else
7040 i.suffix = QWORD_MNEM_SUFFIX;
9306ca4a 7041 }
29b0f896 7042 }
252b5132 7043
65fca059
JB
7044 if ((i.tm.base_opcode | 8) == 0xfbe
7045 || (i.tm.base_opcode == 0x63 && i.tm.cpu_flags.bitfield.cpu64))
7046 {
7047 /* In Intel syntax, movsx/movzx must have a "suffix" (checked above).
7048 In AT&T syntax, if there is no suffix (warned about above), the default
7049 will be byte extension. */
7050 if (i.tm.opcode_modifier.w && i.suffix && i.suffix != BYTE_MNEM_SUFFIX)
7051 i.tm.base_opcode |= 1;
7052
7053 /* For further processing, the suffix should represent the destination
7054 (register). This is already the case when one was used with
7055 mov[sz][bw]*, but we need to replace it for mov[sz]x, or if there was
7056 no suffix to begin with. */
7057 if (i.tm.opcode_modifier.w || i.tm.base_opcode == 0x63 || !i.suffix)
7058 {
7059 if (i.types[1].bitfield.word)
7060 i.suffix = WORD_MNEM_SUFFIX;
7061 else if (i.types[1].bitfield.qword)
7062 i.suffix = QWORD_MNEM_SUFFIX;
7063 else
7064 i.suffix = LONG_MNEM_SUFFIX;
7065
7066 i.tm.opcode_modifier.w = 0;
7067 }
7068 }
7069
50128d0c
JB
7070 if (!i.tm.opcode_modifier.modrm && i.reg_operands && i.tm.operands < 3)
7071 i.short_form = (i.tm.operand_types[0].bitfield.class == Reg)
7072 != (i.tm.operand_types[1].bitfield.class == Reg);
7073
d2224064
JB
7074 /* Change the opcode based on the operand size given by i.suffix. */
7075 switch (i.suffix)
29b0f896 7076 {
d2224064
JB
7077 /* Size floating point instruction. */
7078 case LONG_MNEM_SUFFIX:
7079 if (i.tm.opcode_modifier.floatmf)
7080 {
7081 i.tm.base_opcode ^= 4;
7082 break;
7083 }
7084 /* fall through */
7085 case WORD_MNEM_SUFFIX:
7086 case QWORD_MNEM_SUFFIX:
29b0f896 7087 /* It's not a byte, select word/dword operation. */
40fb9820 7088 if (i.tm.opcode_modifier.w)
29b0f896 7089 {
50128d0c 7090 if (i.short_form)
29b0f896
AM
7091 i.tm.base_opcode |= 8;
7092 else
7093 i.tm.base_opcode |= 1;
7094 }
d2224064
JB
7095 /* fall through */
7096 case SHORT_MNEM_SUFFIX:
29b0f896
AM
7097 /* Now select between word & dword operations via the operand
7098 size prefix, except for instructions that will ignore this
7099 prefix anyway. */
c8f8eebc 7100 if (i.suffix != QWORD_MNEM_SUFFIX
3cd7f3e3 7101 && i.tm.opcode_modifier.mnemonicsize != IGNORESIZE
c8f8eebc
JB
7102 && !i.tm.opcode_modifier.floatmf
7103 && !is_any_vex_encoding (&i.tm)
7104 && ((i.suffix == LONG_MNEM_SUFFIX) == (flag_code == CODE_16BIT)
7105 || (flag_code == CODE_64BIT
7106 && i.tm.opcode_modifier.jump == JUMP_BYTE)))
24eab124
AM
7107 {
7108 unsigned int prefix = DATA_PREFIX_OPCODE;
543613e9 7109
0cfa3eb3 7110 if (i.tm.opcode_modifier.jump == JUMP_BYTE) /* jcxz, loop */
29b0f896 7111 prefix = ADDR_PREFIX_OPCODE;
252b5132 7112
29b0f896
AM
7113 if (!add_prefix (prefix))
7114 return 0;
24eab124 7115 }
252b5132 7116
29b0f896
AM
7117 /* Set mode64 for an operand. */
7118 if (i.suffix == QWORD_MNEM_SUFFIX
9146926a 7119 && flag_code == CODE_64BIT
d2224064 7120 && !i.tm.opcode_modifier.norex64
4ed21b58 7121 && !i.tm.opcode_modifier.vexw
46e883c5 7122 /* Special case for xchg %rax,%rax. It is NOP and doesn't
d2224064
JB
7123 need rex64. */
7124 && ! (i.operands == 2
7125 && i.tm.base_opcode == 0x90
7126 && i.tm.extension_opcode == None
75e5731b
JB
7127 && i.types[0].bitfield.instance == Accum
7128 && i.types[0].bitfield.qword
7129 && i.types[1].bitfield.instance == Accum
7130 && i.types[1].bitfield.qword))
d2224064 7131 i.rex |= REX_W;
3e73aa7c 7132
d2224064 7133 break;
8bbb3ad8
JB
7134
7135 case 0:
f9a6a8f0 7136 /* Select word/dword/qword operation with explicit data sizing prefix
8bbb3ad8
JB
7137 when there are no suitable register operands. */
7138 if (i.tm.opcode_modifier.w
7139 && (i.prefix[DATA_PREFIX] || (i.prefix[REX_PREFIX] & REX_W))
7140 && (!i.reg_operands
7141 || (i.reg_operands == 1
7142 /* ShiftCount */
7143 && (i.tm.operand_types[0].bitfield.instance == RegC
7144 /* InOutPortReg */
7145 || i.tm.operand_types[0].bitfield.instance == RegD
7146 || i.tm.operand_types[1].bitfield.instance == RegD
7147 /* CRC32 */
8b65b895 7148 || is_crc32))))
8bbb3ad8
JB
7149 i.tm.base_opcode |= 1;
7150 break;
29b0f896 7151 }
7ecd2f8b 7152
c8f8eebc 7153 if (i.tm.opcode_modifier.addrprefixopreg)
c0a30a9f 7154 {
c8f8eebc
JB
7155 gas_assert (!i.suffix);
7156 gas_assert (i.reg_operands);
c0a30a9f 7157
c8f8eebc
JB
7158 if (i.tm.operand_types[0].bitfield.instance == Accum
7159 || i.operands == 1)
7160 {
7161 /* The address size override prefix changes the size of the
7162 first operand. */
7163 if (flag_code == CODE_64BIT
7164 && i.op[0].regs->reg_type.bitfield.word)
7165 {
7166 as_bad (_("16-bit addressing unavailable for `%s'"),
7167 i.tm.name);
7168 return 0;
7169 }
7170
7171 if ((flag_code == CODE_32BIT
7172 ? i.op[0].regs->reg_type.bitfield.word
7173 : i.op[0].regs->reg_type.bitfield.dword)
7174 && !add_prefix (ADDR_PREFIX_OPCODE))
7175 return 0;
7176 }
c0a30a9f
L
7177 else
7178 {
c8f8eebc
JB
7179 /* Check invalid register operand when the address size override
7180 prefix changes the size of register operands. */
7181 unsigned int op;
7182 enum { need_word, need_dword, need_qword } need;
7183
27f13469 7184 /* Check the register operand for the address size prefix if
b3a3496f
L
7185 the memory operand has no real registers, like symbol, DISP
7186 or symbol(%rip). */
27f13469
L
7187 if (i.mem_operands == 1
7188 && i.reg_operands == 1
7189 && i.operands == 2
27f13469 7190 && i.types[1].bitfield.class == Reg
b3a3496f
L
7191 && (flag_code == CODE_32BIT
7192 ? i.op[1].regs->reg_type.bitfield.word
7193 : i.op[1].regs->reg_type.bitfield.dword)
7194 && ((i.base_reg == NULL && i.index_reg == NULL)
7195 || (i.base_reg
7196 && i.base_reg->reg_num == RegIP
7197 && i.base_reg->reg_type.bitfield.qword))
27f13469
L
7198 && !add_prefix (ADDR_PREFIX_OPCODE))
7199 return 0;
7200
c8f8eebc
JB
7201 if (flag_code == CODE_32BIT)
7202 need = i.prefix[ADDR_PREFIX] ? need_word : need_dword;
7203 else if (i.prefix[ADDR_PREFIX])
c0a30a9f
L
7204 need = need_dword;
7205 else
7206 need = flag_code == CODE_64BIT ? need_qword : need_word;
c0a30a9f 7207
c8f8eebc
JB
7208 for (op = 0; op < i.operands; op++)
7209 {
7210 if (i.types[op].bitfield.class != Reg)
7211 continue;
7212
7213 switch (need)
7214 {
7215 case need_word:
7216 if (i.op[op].regs->reg_type.bitfield.word)
7217 continue;
7218 break;
7219 case need_dword:
7220 if (i.op[op].regs->reg_type.bitfield.dword)
7221 continue;
7222 break;
7223 case need_qword:
7224 if (i.op[op].regs->reg_type.bitfield.qword)
7225 continue;
7226 break;
7227 }
7228
7229 as_bad (_("invalid register operand size for `%s'"),
7230 i.tm.name);
7231 return 0;
7232 }
7233 }
c0a30a9f
L
7234 }
7235
29b0f896
AM
7236 return 1;
7237}
3e73aa7c 7238
29b0f896 7239static int
543613e9 7240check_byte_reg (void)
29b0f896
AM
7241{
7242 int op;
543613e9 7243
29b0f896
AM
7244 for (op = i.operands; --op >= 0;)
7245 {
dc821c5f 7246 /* Skip non-register operands. */
bab6aec1 7247 if (i.types[op].bitfield.class != Reg)
dc821c5f
JB
7248 continue;
7249
29b0f896
AM
7250 /* If this is an eight bit register, it's OK. If it's the 16 or
7251 32 bit version of an eight bit register, we will just use the
7252 low portion, and that's OK too. */
dc821c5f 7253 if (i.types[op].bitfield.byte)
29b0f896
AM
7254 continue;
7255
5a819eb9 7256 /* I/O port address operands are OK too. */
75e5731b
JB
7257 if (i.tm.operand_types[op].bitfield.instance == RegD
7258 && i.tm.operand_types[op].bitfield.word)
5a819eb9
JB
7259 continue;
7260
9706160a 7261 /* crc32 only wants its source operand checked here. */
8b65b895
L
7262 if (i.tm.base_opcode == 0xf38f0
7263 && i.tm.opcode_modifier.opcodeprefix == PREFIX_0XF2
7264 && op != 0)
9344ff29
L
7265 continue;
7266
29b0f896 7267 /* Any other register is bad. */
73c76375
JB
7268 as_bad (_("`%s%s' not allowed with `%s%c'"),
7269 register_prefix, i.op[op].regs->reg_name,
7270 i.tm.name, i.suffix);
7271 return 0;
29b0f896
AM
7272 }
7273 return 1;
7274}
7275
7276static int
e3bb37b5 7277check_long_reg (void)
29b0f896
AM
7278{
7279 int op;
7280
7281 for (op = i.operands; --op >= 0;)
dc821c5f 7282 /* Skip non-register operands. */
bab6aec1 7283 if (i.types[op].bitfield.class != Reg)
dc821c5f 7284 continue;
29b0f896
AM
7285 /* Reject eight bit registers, except where the template requires
7286 them. (eg. movzb) */
dc821c5f 7287 else if (i.types[op].bitfield.byte
bab6aec1 7288 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7289 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
7290 && (i.tm.operand_types[op].bitfield.word
7291 || i.tm.operand_types[op].bitfield.dword))
29b0f896 7292 {
a540244d
L
7293 as_bad (_("`%s%s' not allowed with `%s%c'"),
7294 register_prefix,
29b0f896
AM
7295 i.op[op].regs->reg_name,
7296 i.tm.name,
7297 i.suffix);
7298 return 0;
7299 }
be4c5e58
L
7300 /* Error if the e prefix on a general reg is missing. */
7301 else if (i.types[op].bitfield.word
bab6aec1 7302 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7303 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7304 && i.tm.operand_types[op].bitfield.dword)
29b0f896 7305 {
be4c5e58
L
7306 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
7307 register_prefix, i.op[op].regs->reg_name,
7308 i.suffix);
7309 return 0;
252b5132 7310 }
e4630f71 7311 /* Warn if the r prefix on a general reg is present. */
dc821c5f 7312 else if (i.types[op].bitfield.qword
bab6aec1 7313 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7314 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7315 && i.tm.operand_types[op].bitfield.dword)
252b5132 7316 {
34828aad 7317 if (intel_syntax
65fca059 7318 && i.tm.opcode_modifier.toqword
3528c362 7319 && i.types[0].bitfield.class != RegSIMD)
34828aad 7320 {
ca61edf2 7321 /* Convert to QWORD. We want REX byte. */
34828aad
L
7322 i.suffix = QWORD_MNEM_SUFFIX;
7323 }
7324 else
7325 {
2b5d6a91 7326 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
7327 register_prefix, i.op[op].regs->reg_name,
7328 i.suffix);
7329 return 0;
7330 }
29b0f896
AM
7331 }
7332 return 1;
7333}
252b5132 7334
29b0f896 7335static int
e3bb37b5 7336check_qword_reg (void)
29b0f896
AM
7337{
7338 int op;
252b5132 7339
29b0f896 7340 for (op = i.operands; --op >= 0; )
dc821c5f 7341 /* Skip non-register operands. */
bab6aec1 7342 if (i.types[op].bitfield.class != Reg)
dc821c5f 7343 continue;
29b0f896
AM
7344 /* Reject eight bit registers, except where the template requires
7345 them. (eg. movzb) */
dc821c5f 7346 else if (i.types[op].bitfield.byte
bab6aec1 7347 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7348 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
7349 && (i.tm.operand_types[op].bitfield.word
7350 || i.tm.operand_types[op].bitfield.dword))
29b0f896 7351 {
a540244d
L
7352 as_bad (_("`%s%s' not allowed with `%s%c'"),
7353 register_prefix,
29b0f896
AM
7354 i.op[op].regs->reg_name,
7355 i.tm.name,
7356 i.suffix);
7357 return 0;
7358 }
e4630f71 7359 /* Warn if the r prefix on a general reg is missing. */
dc821c5f
JB
7360 else if ((i.types[op].bitfield.word
7361 || i.types[op].bitfield.dword)
bab6aec1 7362 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7363 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7364 && i.tm.operand_types[op].bitfield.qword)
29b0f896
AM
7365 {
7366 /* Prohibit these changes in the 64bit mode, since the
7367 lowering is more complicated. */
34828aad 7368 if (intel_syntax
ca61edf2 7369 && i.tm.opcode_modifier.todword
3528c362 7370 && i.types[0].bitfield.class != RegSIMD)
34828aad 7371 {
ca61edf2 7372 /* Convert to DWORD. We don't want REX byte. */
34828aad
L
7373 i.suffix = LONG_MNEM_SUFFIX;
7374 }
7375 else
7376 {
2b5d6a91 7377 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
7378 register_prefix, i.op[op].regs->reg_name,
7379 i.suffix);
7380 return 0;
7381 }
252b5132 7382 }
29b0f896
AM
7383 return 1;
7384}
252b5132 7385
29b0f896 7386static int
e3bb37b5 7387check_word_reg (void)
29b0f896
AM
7388{
7389 int op;
7390 for (op = i.operands; --op >= 0;)
dc821c5f 7391 /* Skip non-register operands. */
bab6aec1 7392 if (i.types[op].bitfield.class != Reg)
dc821c5f 7393 continue;
29b0f896
AM
7394 /* Reject eight bit registers, except where the template requires
7395 them. (eg. movzb) */
dc821c5f 7396 else if (i.types[op].bitfield.byte
bab6aec1 7397 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7398 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
7399 && (i.tm.operand_types[op].bitfield.word
7400 || i.tm.operand_types[op].bitfield.dword))
29b0f896 7401 {
a540244d
L
7402 as_bad (_("`%s%s' not allowed with `%s%c'"),
7403 register_prefix,
29b0f896
AM
7404 i.op[op].regs->reg_name,
7405 i.tm.name,
7406 i.suffix);
7407 return 0;
7408 }
9706160a
JB
7409 /* Error if the e or r prefix on a general reg is present. */
7410 else if ((i.types[op].bitfield.dword
dc821c5f 7411 || i.types[op].bitfield.qword)
bab6aec1 7412 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7413 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7414 && i.tm.operand_types[op].bitfield.word)
252b5132 7415 {
9706160a
JB
7416 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
7417 register_prefix, i.op[op].regs->reg_name,
7418 i.suffix);
7419 return 0;
29b0f896
AM
7420 }
7421 return 1;
7422}
252b5132 7423
29b0f896 7424static int
40fb9820 7425update_imm (unsigned int j)
29b0f896 7426{
bc0844ae 7427 i386_operand_type overlap = i.types[j];
40fb9820
L
7428 if ((overlap.bitfield.imm8
7429 || overlap.bitfield.imm8s
7430 || overlap.bitfield.imm16
7431 || overlap.bitfield.imm32
7432 || overlap.bitfield.imm32s
7433 || overlap.bitfield.imm64)
0dfbf9d7
L
7434 && !operand_type_equal (&overlap, &imm8)
7435 && !operand_type_equal (&overlap, &imm8s)
7436 && !operand_type_equal (&overlap, &imm16)
7437 && !operand_type_equal (&overlap, &imm32)
7438 && !operand_type_equal (&overlap, &imm32s)
7439 && !operand_type_equal (&overlap, &imm64))
29b0f896
AM
7440 {
7441 if (i.suffix)
7442 {
40fb9820
L
7443 i386_operand_type temp;
7444
0dfbf9d7 7445 operand_type_set (&temp, 0);
7ab9ffdd 7446 if (i.suffix == BYTE_MNEM_SUFFIX)
40fb9820
L
7447 {
7448 temp.bitfield.imm8 = overlap.bitfield.imm8;
7449 temp.bitfield.imm8s = overlap.bitfield.imm8s;
7450 }
7451 else if (i.suffix == WORD_MNEM_SUFFIX)
7452 temp.bitfield.imm16 = overlap.bitfield.imm16;
7453 else if (i.suffix == QWORD_MNEM_SUFFIX)
7454 {
7455 temp.bitfield.imm64 = overlap.bitfield.imm64;
7456 temp.bitfield.imm32s = overlap.bitfield.imm32s;
7457 }
7458 else
7459 temp.bitfield.imm32 = overlap.bitfield.imm32;
7460 overlap = temp;
29b0f896 7461 }
0dfbf9d7
L
7462 else if (operand_type_equal (&overlap, &imm16_32_32s)
7463 || operand_type_equal (&overlap, &imm16_32)
7464 || operand_type_equal (&overlap, &imm16_32s))
29b0f896 7465 {
40fb9820 7466 if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
65da13b5 7467 overlap = imm16;
40fb9820 7468 else
65da13b5 7469 overlap = imm32s;
29b0f896 7470 }
8bbb3ad8
JB
7471 else if (i.prefix[REX_PREFIX] & REX_W)
7472 overlap = operand_type_and (overlap, imm32s);
7473 else if (i.prefix[DATA_PREFIX])
7474 overlap = operand_type_and (overlap,
7475 flag_code != CODE_16BIT ? imm16 : imm32);
0dfbf9d7
L
7476 if (!operand_type_equal (&overlap, &imm8)
7477 && !operand_type_equal (&overlap, &imm8s)
7478 && !operand_type_equal (&overlap, &imm16)
7479 && !operand_type_equal (&overlap, &imm32)
7480 && !operand_type_equal (&overlap, &imm32s)
7481 && !operand_type_equal (&overlap, &imm64))
29b0f896 7482 {
4eed87de
AM
7483 as_bad (_("no instruction mnemonic suffix given; "
7484 "can't determine immediate size"));
29b0f896
AM
7485 return 0;
7486 }
7487 }
40fb9820 7488 i.types[j] = overlap;
29b0f896 7489
40fb9820
L
7490 return 1;
7491}
7492
7493static int
7494finalize_imm (void)
7495{
bc0844ae 7496 unsigned int j, n;
29b0f896 7497
bc0844ae
L
7498 /* Update the first 2 immediate operands. */
7499 n = i.operands > 2 ? 2 : i.operands;
7500 if (n)
7501 {
7502 for (j = 0; j < n; j++)
7503 if (update_imm (j) == 0)
7504 return 0;
40fb9820 7505
bc0844ae
L
7506 /* The 3rd operand can't be immediate operand. */
7507 gas_assert (operand_type_check (i.types[2], imm) == 0);
7508 }
29b0f896
AM
7509
7510 return 1;
7511}
7512
7513static int
e3bb37b5 7514process_operands (void)
29b0f896
AM
7515{
7516 /* Default segment register this instruction will use for memory
7517 accesses. 0 means unknown. This is only for optimizing out
7518 unnecessary segment overrides. */
7519 const seg_entry *default_seg = 0;
7520
a5aeccd9
JB
7521 if (i.tm.opcode_modifier.sse2avx)
7522 {
7523 /* Legacy encoded insns allow explicit REX prefixes, so these prefixes
7524 need converting. */
7525 i.rex |= i.prefix[REX_PREFIX] & (REX_W | REX_R | REX_X | REX_B);
7526 i.prefix[REX_PREFIX] = 0;
7527 i.rex_encoding = 0;
7528 }
c423d21a
JB
7529 /* ImmExt should be processed after SSE2AVX. */
7530 else if (i.tm.opcode_modifier.immext)
7531 process_immext ();
a5aeccd9 7532
2426c15f 7533 if (i.tm.opcode_modifier.sse2avx && i.tm.opcode_modifier.vexvvvv)
29b0f896 7534 {
91d6fa6a
NC
7535 unsigned int dupl = i.operands;
7536 unsigned int dest = dupl - 1;
9fcfb3d7
L
7537 unsigned int j;
7538
c0f3af97 7539 /* The destination must be an xmm register. */
9c2799c2 7540 gas_assert (i.reg_operands
91d6fa6a 7541 && MAX_OPERANDS > dupl
7ab9ffdd 7542 && operand_type_equal (&i.types[dest], &regxmm));
c0f3af97 7543
75e5731b 7544 if (i.tm.operand_types[0].bitfield.instance == Accum
1b54b8d7 7545 && i.tm.operand_types[0].bitfield.xmmword)
e2ec9d29 7546 {
8cd7925b 7547 if (i.tm.opcode_modifier.vexsources == VEX3SOURCES)
c0f3af97
L
7548 {
7549 /* Keep xmm0 for instructions with VEX prefix and 3
7550 sources. */
75e5731b 7551 i.tm.operand_types[0].bitfield.instance = InstanceNone;
3528c362 7552 i.tm.operand_types[0].bitfield.class = RegSIMD;
c0f3af97
L
7553 goto duplicate;
7554 }
e2ec9d29 7555 else
c0f3af97
L
7556 {
7557 /* We remove the first xmm0 and keep the number of
7558 operands unchanged, which in fact duplicates the
7559 destination. */
7560 for (j = 1; j < i.operands; j++)
7561 {
7562 i.op[j - 1] = i.op[j];
7563 i.types[j - 1] = i.types[j];
7564 i.tm.operand_types[j - 1] = i.tm.operand_types[j];
8dc0818e 7565 i.flags[j - 1] = i.flags[j];
c0f3af97
L
7566 }
7567 }
7568 }
7569 else if (i.tm.opcode_modifier.implicit1stxmm0)
7ab9ffdd 7570 {
91d6fa6a 7571 gas_assert ((MAX_OPERANDS - 1) > dupl
8cd7925b
L
7572 && (i.tm.opcode_modifier.vexsources
7573 == VEX3SOURCES));
c0f3af97
L
7574
7575 /* Add the implicit xmm0 for instructions with VEX prefix
7576 and 3 sources. */
7577 for (j = i.operands; j > 0; j--)
7578 {
7579 i.op[j] = i.op[j - 1];
7580 i.types[j] = i.types[j - 1];
7581 i.tm.operand_types[j] = i.tm.operand_types[j - 1];
8dc0818e 7582 i.flags[j] = i.flags[j - 1];
c0f3af97
L
7583 }
7584 i.op[0].regs
629310ab 7585 = (const reg_entry *) str_hash_find (reg_hash, "xmm0");
7ab9ffdd 7586 i.types[0] = regxmm;
c0f3af97
L
7587 i.tm.operand_types[0] = regxmm;
7588
7589 i.operands += 2;
7590 i.reg_operands += 2;
7591 i.tm.operands += 2;
7592
91d6fa6a 7593 dupl++;
c0f3af97 7594 dest++;
91d6fa6a
NC
7595 i.op[dupl] = i.op[dest];
7596 i.types[dupl] = i.types[dest];
7597 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
8dc0818e 7598 i.flags[dupl] = i.flags[dest];
e2ec9d29 7599 }
c0f3af97
L
7600 else
7601 {
dc1e8a47 7602 duplicate:
c0f3af97
L
7603 i.operands++;
7604 i.reg_operands++;
7605 i.tm.operands++;
7606
91d6fa6a
NC
7607 i.op[dupl] = i.op[dest];
7608 i.types[dupl] = i.types[dest];
7609 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
8dc0818e 7610 i.flags[dupl] = i.flags[dest];
c0f3af97
L
7611 }
7612
7613 if (i.tm.opcode_modifier.immext)
7614 process_immext ();
7615 }
75e5731b 7616 else if (i.tm.operand_types[0].bitfield.instance == Accum
1b54b8d7 7617 && i.tm.operand_types[0].bitfield.xmmword)
c0f3af97
L
7618 {
7619 unsigned int j;
7620
9fcfb3d7
L
7621 for (j = 1; j < i.operands; j++)
7622 {
7623 i.op[j - 1] = i.op[j];
7624 i.types[j - 1] = i.types[j];
7625
7626 /* We need to adjust fields in i.tm since they are used by
7627 build_modrm_byte. */
7628 i.tm.operand_types [j - 1] = i.tm.operand_types [j];
8dc0818e
JB
7629
7630 i.flags[j - 1] = i.flags[j];
9fcfb3d7
L
7631 }
7632
e2ec9d29
L
7633 i.operands--;
7634 i.reg_operands--;
e2ec9d29
L
7635 i.tm.operands--;
7636 }
920d2ddc
IT
7637 else if (i.tm.opcode_modifier.implicitquadgroup)
7638 {
a477a8c4
JB
7639 unsigned int regnum, first_reg_in_group, last_reg_in_group;
7640
920d2ddc 7641 /* The second operand must be {x,y,z}mmN, where N is a multiple of 4. */
3528c362 7642 gas_assert (i.operands >= 2 && i.types[1].bitfield.class == RegSIMD);
a477a8c4
JB
7643 regnum = register_number (i.op[1].regs);
7644 first_reg_in_group = regnum & ~3;
7645 last_reg_in_group = first_reg_in_group + 3;
7646 if (regnum != first_reg_in_group)
7647 as_warn (_("source register `%s%s' implicitly denotes"
7648 " `%s%.3s%u' to `%s%.3s%u' source group in `%s'"),
7649 register_prefix, i.op[1].regs->reg_name,
7650 register_prefix, i.op[1].regs->reg_name, first_reg_in_group,
7651 register_prefix, i.op[1].regs->reg_name, last_reg_in_group,
7652 i.tm.name);
7653 }
e2ec9d29
L
7654 else if (i.tm.opcode_modifier.regkludge)
7655 {
7656 /* The imul $imm, %reg instruction is converted into
7657 imul $imm, %reg, %reg, and the clr %reg instruction
7658 is converted into xor %reg, %reg. */
7659
7660 unsigned int first_reg_op;
7661
7662 if (operand_type_check (i.types[0], reg))
7663 first_reg_op = 0;
7664 else
7665 first_reg_op = 1;
7666 /* Pretend we saw the extra register operand. */
9c2799c2 7667 gas_assert (i.reg_operands == 1
7ab9ffdd 7668 && i.op[first_reg_op + 1].regs == 0);
e2ec9d29
L
7669 i.op[first_reg_op + 1].regs = i.op[first_reg_op].regs;
7670 i.types[first_reg_op + 1] = i.types[first_reg_op];
7671 i.operands++;
7672 i.reg_operands++;
29b0f896
AM
7673 }
7674
85b80b0f 7675 if (i.tm.opcode_modifier.modrm)
29b0f896
AM
7676 {
7677 /* The opcode is completed (modulo i.tm.extension_opcode which
52271982
AM
7678 must be put into the modrm byte). Now, we make the modrm and
7679 index base bytes based on all the info we've collected. */
29b0f896
AM
7680
7681 default_seg = build_modrm_byte ();
7682 }
00cee14f 7683 else if (i.types[0].bitfield.class == SReg)
85b80b0f
JB
7684 {
7685 if (flag_code != CODE_64BIT
7686 ? i.tm.base_opcode == POP_SEG_SHORT
7687 && i.op[0].regs->reg_num == 1
7688 : (i.tm.base_opcode | 1) == POP_SEG386_SHORT
7689 && i.op[0].regs->reg_num < 4)
7690 {
7691 as_bad (_("you can't `%s %s%s'"),
7692 i.tm.name, register_prefix, i.op[0].regs->reg_name);
7693 return 0;
7694 }
7695 if ( i.op[0].regs->reg_num > 3 && i.tm.opcode_length == 1 )
7696 {
7697 i.tm.base_opcode ^= POP_SEG_SHORT ^ POP_SEG386_SHORT;
7698 i.tm.opcode_length = 2;
7699 }
7700 i.tm.base_opcode |= (i.op[0].regs->reg_num << 3);
7701 }
8a2ed489 7702 else if ((i.tm.base_opcode & ~0x3) == MOV_AX_DISP32)
29b0f896
AM
7703 {
7704 default_seg = &ds;
7705 }
40fb9820 7706 else if (i.tm.opcode_modifier.isstring)
29b0f896
AM
7707 {
7708 /* For the string instructions that allow a segment override
7709 on one of their operands, the default segment is ds. */
7710 default_seg = &ds;
7711 }
50128d0c 7712 else if (i.short_form)
85b80b0f
JB
7713 {
7714 /* The register or float register operand is in operand
7715 0 or 1. */
bab6aec1 7716 unsigned int op = i.tm.operand_types[0].bitfield.class != Reg;
85b80b0f
JB
7717
7718 /* Register goes in low 3 bits of opcode. */
7719 i.tm.base_opcode |= i.op[op].regs->reg_num;
7720 if ((i.op[op].regs->reg_flags & RegRex) != 0)
7721 i.rex |= REX_B;
7722 if (!quiet_warnings && i.tm.opcode_modifier.ugh)
7723 {
7724 /* Warn about some common errors, but press on regardless.
7725 The first case can be generated by gcc (<= 2.8.1). */
7726 if (i.operands == 2)
7727 {
7728 /* Reversed arguments on faddp, fsubp, etc. */
7729 as_warn (_("translating to `%s %s%s,%s%s'"), i.tm.name,
7730 register_prefix, i.op[!intel_syntax].regs->reg_name,
7731 register_prefix, i.op[intel_syntax].regs->reg_name);
7732 }
7733 else
7734 {
7735 /* Extraneous `l' suffix on fp insn. */
7736 as_warn (_("translating to `%s %s%s'"), i.tm.name,
7737 register_prefix, i.op[0].regs->reg_name);
7738 }
7739 }
7740 }
29b0f896 7741
514a8bb0 7742 if ((i.seg[0] || i.prefix[SEG_PREFIX])
514a8bb0
JB
7743 && i.tm.base_opcode == 0x8d /* lea */
7744 && !is_any_vex_encoding(&i.tm))
92334ad2
JB
7745 {
7746 if (!quiet_warnings)
7747 as_warn (_("segment override on `%s' is ineffectual"), i.tm.name);
7748 if (optimize)
7749 {
7750 i.seg[0] = NULL;
7751 i.prefix[SEG_PREFIX] = 0;
7752 }
7753 }
52271982
AM
7754
7755 /* If a segment was explicitly specified, and the specified segment
b6773884
JB
7756 is neither the default nor the one already recorded from a prefix,
7757 use an opcode prefix to select it. If we never figured out what
7758 the default segment is, then default_seg will be zero at this
7759 point, and the specified segment prefix will always be used. */
7760 if (i.seg[0]
7761 && i.seg[0] != default_seg
7762 && i.seg[0]->seg_prefix != i.prefix[SEG_PREFIX])
29b0f896
AM
7763 {
7764 if (!add_prefix (i.seg[0]->seg_prefix))
7765 return 0;
7766 }
7767 return 1;
7768}
7769
a5aeccd9
JB
7770static INLINE void set_rex_vrex (const reg_entry *r, unsigned int rex_bit,
7771 bfd_boolean do_sse2avx)
7772{
7773 if (r->reg_flags & RegRex)
7774 {
7775 if (i.rex & rex_bit)
7776 as_bad (_("same type of prefix used twice"));
7777 i.rex |= rex_bit;
7778 }
7779 else if (do_sse2avx && (i.rex & rex_bit) && i.vex.register_specifier)
7780 {
7781 gas_assert (i.vex.register_specifier == r);
7782 i.vex.register_specifier += 8;
7783 }
7784
7785 if (r->reg_flags & RegVRex)
7786 i.vrex |= rex_bit;
7787}
7788
29b0f896 7789static const seg_entry *
e3bb37b5 7790build_modrm_byte (void)
29b0f896
AM
7791{
7792 const seg_entry *default_seg = 0;
c0f3af97 7793 unsigned int source, dest;
8cd7925b 7794 int vex_3_sources;
c0f3af97 7795
8cd7925b 7796 vex_3_sources = i.tm.opcode_modifier.vexsources == VEX3SOURCES;
c0f3af97
L
7797 if (vex_3_sources)
7798 {
91d6fa6a 7799 unsigned int nds, reg_slot;
4c2c6516 7800 expressionS *exp;
c0f3af97 7801
6b8d3588 7802 dest = i.operands - 1;
c0f3af97 7803 nds = dest - 1;
922d8de8 7804
a683cc34 7805 /* There are 2 kinds of instructions:
bed3d976 7806 1. 5 operands: 4 register operands or 3 register operands
9d3bf266 7807 plus 1 memory operand plus one Imm4 operand, VexXDS, and
bed3d976 7808 VexW0 or VexW1. The destination must be either XMM, YMM or
43234a1e 7809 ZMM register.
bed3d976 7810 2. 4 operands: 4 register operands or 3 register operands
2f1bada2 7811 plus 1 memory operand, with VexXDS. */
922d8de8 7812 gas_assert ((i.reg_operands == 4
bed3d976
JB
7813 || (i.reg_operands == 3 && i.mem_operands == 1))
7814 && i.tm.opcode_modifier.vexvvvv == VEXXDS
dcd7e323 7815 && i.tm.opcode_modifier.vexw
3528c362 7816 && i.tm.operand_types[dest].bitfield.class == RegSIMD);
a683cc34 7817
48db9223
JB
7818 /* If VexW1 is set, the first non-immediate operand is the source and
7819 the second non-immediate one is encoded in the immediate operand. */
7820 if (i.tm.opcode_modifier.vexw == VEXW1)
7821 {
7822 source = i.imm_operands;
7823 reg_slot = i.imm_operands + 1;
7824 }
7825 else
7826 {
7827 source = i.imm_operands + 1;
7828 reg_slot = i.imm_operands;
7829 }
7830
a683cc34 7831 if (i.imm_operands == 0)
bed3d976
JB
7832 {
7833 /* When there is no immediate operand, generate an 8bit
7834 immediate operand to encode the first operand. */
7835 exp = &im_expressions[i.imm_operands++];
7836 i.op[i.operands].imms = exp;
7837 i.types[i.operands] = imm8;
7838 i.operands++;
7839
3528c362 7840 gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD);
bed3d976
JB
7841 exp->X_op = O_constant;
7842 exp->X_add_number = register_number (i.op[reg_slot].regs) << 4;
43234a1e
L
7843 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
7844 }
922d8de8 7845 else
bed3d976 7846 {
9d3bf266
JB
7847 gas_assert (i.imm_operands == 1);
7848 gas_assert (fits_in_imm4 (i.op[0].imms->X_add_number));
7849 gas_assert (!i.tm.opcode_modifier.immext);
a683cc34 7850
9d3bf266
JB
7851 /* Turn on Imm8 again so that output_imm will generate it. */
7852 i.types[0].bitfield.imm8 = 1;
bed3d976 7853
3528c362 7854 gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD);
9d3bf266 7855 i.op[0].imms->X_add_number
bed3d976 7856 |= register_number (i.op[reg_slot].regs) << 4;
43234a1e 7857 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
bed3d976 7858 }
a683cc34 7859
3528c362 7860 gas_assert (i.tm.operand_types[nds].bitfield.class == RegSIMD);
dae39acc 7861 i.vex.register_specifier = i.op[nds].regs;
c0f3af97
L
7862 }
7863 else
7864 source = dest = 0;
29b0f896
AM
7865
7866 /* i.reg_operands MUST be the number of real register operands;
c0f3af97
L
7867 implicit registers do not count. If there are 3 register
7868 operands, it must be a instruction with VexNDS. For a
7869 instruction with VexNDD, the destination register is encoded
7870 in VEX prefix. If there are 4 register operands, it must be
7871 a instruction with VEX prefix and 3 sources. */
7ab9ffdd
L
7872 if (i.mem_operands == 0
7873 && ((i.reg_operands == 2
2426c15f 7874 && i.tm.opcode_modifier.vexvvvv <= VEXXDS)
7ab9ffdd 7875 || (i.reg_operands == 3
2426c15f 7876 && i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd 7877 || (i.reg_operands == 4 && vex_3_sources)))
29b0f896 7878 {
cab737b9
L
7879 switch (i.operands)
7880 {
7881 case 2:
7882 source = 0;
7883 break;
7884 case 3:
c81128dc
L
7885 /* When there are 3 operands, one of them may be immediate,
7886 which may be the first or the last operand. Otherwise,
c0f3af97
L
7887 the first operand must be shift count register (cl) or it
7888 is an instruction with VexNDS. */
9c2799c2 7889 gas_assert (i.imm_operands == 1
7ab9ffdd 7890 || (i.imm_operands == 0
2426c15f 7891 && (i.tm.opcode_modifier.vexvvvv == VEXXDS
75e5731b
JB
7892 || (i.types[0].bitfield.instance == RegC
7893 && i.types[0].bitfield.byte))));
40fb9820 7894 if (operand_type_check (i.types[0], imm)
75e5731b
JB
7895 || (i.types[0].bitfield.instance == RegC
7896 && i.types[0].bitfield.byte))
40fb9820
L
7897 source = 1;
7898 else
7899 source = 0;
cab737b9
L
7900 break;
7901 case 4:
368d64cc
L
7902 /* When there are 4 operands, the first two must be 8bit
7903 immediate operands. The source operand will be the 3rd
c0f3af97
L
7904 one.
7905
7906 For instructions with VexNDS, if the first operand
7907 an imm8, the source operand is the 2nd one. If the last
7908 operand is imm8, the source operand is the first one. */
9c2799c2 7909 gas_assert ((i.imm_operands == 2
7ab9ffdd
L
7910 && i.types[0].bitfield.imm8
7911 && i.types[1].bitfield.imm8)
2426c15f 7912 || (i.tm.opcode_modifier.vexvvvv == VEXXDS
7ab9ffdd
L
7913 && i.imm_operands == 1
7914 && (i.types[0].bitfield.imm8
43234a1e
L
7915 || i.types[i.operands - 1].bitfield.imm8
7916 || i.rounding)));
9f2670f2
L
7917 if (i.imm_operands == 2)
7918 source = 2;
7919 else
c0f3af97
L
7920 {
7921 if (i.types[0].bitfield.imm8)
7922 source = 1;
7923 else
7924 source = 0;
7925 }
c0f3af97
L
7926 break;
7927 case 5:
e771e7c9 7928 if (is_evex_encoding (&i.tm))
43234a1e
L
7929 {
7930 /* For EVEX instructions, when there are 5 operands, the
7931 first one must be immediate operand. If the second one
7932 is immediate operand, the source operand is the 3th
7933 one. If the last one is immediate operand, the source
7934 operand is the 2nd one. */
7935 gas_assert (i.imm_operands == 2
7936 && i.tm.opcode_modifier.sae
7937 && operand_type_check (i.types[0], imm));
7938 if (operand_type_check (i.types[1], imm))
7939 source = 2;
7940 else if (operand_type_check (i.types[4], imm))
7941 source = 1;
7942 else
7943 abort ();
7944 }
cab737b9
L
7945 break;
7946 default:
7947 abort ();
7948 }
7949
c0f3af97
L
7950 if (!vex_3_sources)
7951 {
7952 dest = source + 1;
7953
43234a1e
L
7954 /* RC/SAE operand could be between DEST and SRC. That happens
7955 when one operand is GPR and the other one is XMM/YMM/ZMM
7956 register. */
7957 if (i.rounding && i.rounding->operand == (int) dest)
7958 dest++;
7959
2426c15f 7960 if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
c0f3af97 7961 {
43234a1e 7962 /* For instructions with VexNDS, the register-only source
c5d0745b 7963 operand must be a 32/64bit integer, XMM, YMM, ZMM, or mask
dfd69174 7964 register. It is encoded in VEX prefix. */
f12dc422
L
7965
7966 i386_operand_type op;
7967 unsigned int vvvv;
7968
c2ecccb3
L
7969 /* Swap two source operands if needed. */
7970 if (i.tm.opcode_modifier.swapsources)
f12dc422
L
7971 {
7972 vvvv = source;
7973 source = dest;
7974 }
7975 else
7976 vvvv = dest;
7977
7978 op = i.tm.operand_types[vvvv];
c0f3af97 7979 if ((dest + 1) >= i.operands
bab6aec1 7980 || ((op.bitfield.class != Reg
dc821c5f 7981 || (!op.bitfield.dword && !op.bitfield.qword))
3528c362 7982 && op.bitfield.class != RegSIMD
43234a1e 7983 && !operand_type_equal (&op, &regmask)))
c0f3af97 7984 abort ();
f12dc422 7985 i.vex.register_specifier = i.op[vvvv].regs;
c0f3af97
L
7986 dest++;
7987 }
7988 }
29b0f896
AM
7989
7990 i.rm.mode = 3;
dfd69174
JB
7991 /* One of the register operands will be encoded in the i.rm.reg
7992 field, the other in the combined i.rm.mode and i.rm.regmem
29b0f896
AM
7993 fields. If no form of this instruction supports a memory
7994 destination operand, then we assume the source operand may
7995 sometimes be a memory operand and so we need to store the
7996 destination in the i.rm.reg field. */
dfd69174 7997 if (!i.tm.opcode_modifier.regmem
40fb9820 7998 && operand_type_check (i.tm.operand_types[dest], anymem) == 0)
29b0f896
AM
7999 {
8000 i.rm.reg = i.op[dest].regs->reg_num;
8001 i.rm.regmem = i.op[source].regs->reg_num;
a5aeccd9
JB
8002 set_rex_vrex (i.op[dest].regs, REX_R, i.tm.opcode_modifier.sse2avx);
8003 set_rex_vrex (i.op[source].regs, REX_B, FALSE);
29b0f896
AM
8004 }
8005 else
8006 {
8007 i.rm.reg = i.op[source].regs->reg_num;
8008 i.rm.regmem = i.op[dest].regs->reg_num;
a5aeccd9
JB
8009 set_rex_vrex (i.op[dest].regs, REX_B, i.tm.opcode_modifier.sse2avx);
8010 set_rex_vrex (i.op[source].regs, REX_R, FALSE);
29b0f896 8011 }
e0c7f900 8012 if (flag_code != CODE_64BIT && (i.rex & REX_R))
c4a530c5 8013 {
4a5c67ed 8014 if (i.types[!i.tm.opcode_modifier.regmem].bitfield.class != RegCR)
c4a530c5 8015 abort ();
e0c7f900 8016 i.rex &= ~REX_R;
c4a530c5
JB
8017 add_prefix (LOCK_PREFIX_OPCODE);
8018 }
29b0f896
AM
8019 }
8020 else
8021 { /* If it's not 2 reg operands... */
c0f3af97
L
8022 unsigned int mem;
8023
29b0f896
AM
8024 if (i.mem_operands)
8025 {
8026 unsigned int fake_zero_displacement = 0;
99018f42 8027 unsigned int op;
4eed87de 8028
7ab9ffdd 8029 for (op = 0; op < i.operands; op++)
8dc0818e 8030 if (i.flags[op] & Operand_Mem)
7ab9ffdd 8031 break;
7ab9ffdd 8032 gas_assert (op < i.operands);
29b0f896 8033
63112cd6 8034 if (i.tm.opcode_modifier.sib)
6c30d220 8035 {
260cd341
LC
8036 /* The index register of VSIB shouldn't be RegIZ. */
8037 if (i.tm.opcode_modifier.sib != SIBMEM
8038 && i.index_reg->reg_num == RegIZ)
6c30d220
L
8039 abort ();
8040
8041 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
8042 if (!i.base_reg)
8043 {
8044 i.sib.base = NO_BASE_REGISTER;
8045 i.sib.scale = i.log2_scale_factor;
8046 i.types[op].bitfield.disp8 = 0;
8047 i.types[op].bitfield.disp16 = 0;
8048 i.types[op].bitfield.disp64 = 0;
43083a50 8049 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
6c30d220
L
8050 {
8051 /* Must be 32 bit */
8052 i.types[op].bitfield.disp32 = 1;
8053 i.types[op].bitfield.disp32s = 0;
8054 }
8055 else
8056 {
8057 i.types[op].bitfield.disp32 = 0;
8058 i.types[op].bitfield.disp32s = 1;
8059 }
8060 }
260cd341
LC
8061
8062 /* Since the mandatory SIB always has index register, so
8063 the code logic remains unchanged. The non-mandatory SIB
8064 without index register is allowed and will be handled
8065 later. */
8066 if (i.index_reg)
8067 {
8068 if (i.index_reg->reg_num == RegIZ)
8069 i.sib.index = NO_INDEX_REGISTER;
8070 else
8071 i.sib.index = i.index_reg->reg_num;
8072 set_rex_vrex (i.index_reg, REX_X, FALSE);
8073 }
6c30d220
L
8074 }
8075
29b0f896
AM
8076 default_seg = &ds;
8077
8078 if (i.base_reg == 0)
8079 {
8080 i.rm.mode = 0;
8081 if (!i.disp_operands)
9bb129e8 8082 fake_zero_displacement = 1;
29b0f896
AM
8083 if (i.index_reg == 0)
8084 {
73053c1f
JB
8085 i386_operand_type newdisp;
8086
260cd341
LC
8087 /* Both check for VSIB and mandatory non-vector SIB. */
8088 gas_assert (!i.tm.opcode_modifier.sib
8089 || i.tm.opcode_modifier.sib == SIBMEM);
29b0f896 8090 /* Operand is just <disp> */
20f0a1fc 8091 if (flag_code == CODE_64BIT)
29b0f896
AM
8092 {
8093 /* 64bit mode overwrites the 32bit absolute
8094 addressing by RIP relative addressing and
8095 absolute addressing is encoded by one of the
8096 redundant SIB forms. */
8097 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
8098 i.sib.base = NO_BASE_REGISTER;
8099 i.sib.index = NO_INDEX_REGISTER;
73053c1f 8100 newdisp = (!i.prefix[ADDR_PREFIX] ? disp32s : disp32);
20f0a1fc 8101 }
fc225355
L
8102 else if ((flag_code == CODE_16BIT)
8103 ^ (i.prefix[ADDR_PREFIX] != 0))
20f0a1fc
NC
8104 {
8105 i.rm.regmem = NO_BASE_REGISTER_16;
73053c1f 8106 newdisp = disp16;
20f0a1fc
NC
8107 }
8108 else
8109 {
8110 i.rm.regmem = NO_BASE_REGISTER;
73053c1f 8111 newdisp = disp32;
29b0f896 8112 }
73053c1f
JB
8113 i.types[op] = operand_type_and_not (i.types[op], anydisp);
8114 i.types[op] = operand_type_or (i.types[op], newdisp);
29b0f896 8115 }
63112cd6 8116 else if (!i.tm.opcode_modifier.sib)
29b0f896 8117 {
6c30d220 8118 /* !i.base_reg && i.index_reg */
e968fc9b 8119 if (i.index_reg->reg_num == RegIZ)
db51cc60
L
8120 i.sib.index = NO_INDEX_REGISTER;
8121 else
8122 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
8123 i.sib.base = NO_BASE_REGISTER;
8124 i.sib.scale = i.log2_scale_factor;
8125 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
40fb9820
L
8126 i.types[op].bitfield.disp8 = 0;
8127 i.types[op].bitfield.disp16 = 0;
8128 i.types[op].bitfield.disp64 = 0;
43083a50 8129 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
40fb9820
L
8130 {
8131 /* Must be 32 bit */
8132 i.types[op].bitfield.disp32 = 1;
8133 i.types[op].bitfield.disp32s = 0;
8134 }
29b0f896 8135 else
40fb9820
L
8136 {
8137 i.types[op].bitfield.disp32 = 0;
8138 i.types[op].bitfield.disp32s = 1;
8139 }
29b0f896 8140 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 8141 i.rex |= REX_X;
29b0f896
AM
8142 }
8143 }
8144 /* RIP addressing for 64bit mode. */
e968fc9b 8145 else if (i.base_reg->reg_num == RegIP)
29b0f896 8146 {
63112cd6 8147 gas_assert (!i.tm.opcode_modifier.sib);
29b0f896 8148 i.rm.regmem = NO_BASE_REGISTER;
40fb9820
L
8149 i.types[op].bitfield.disp8 = 0;
8150 i.types[op].bitfield.disp16 = 0;
8151 i.types[op].bitfield.disp32 = 0;
8152 i.types[op].bitfield.disp32s = 1;
8153 i.types[op].bitfield.disp64 = 0;
71903a11 8154 i.flags[op] |= Operand_PCrel;
20f0a1fc
NC
8155 if (! i.disp_operands)
8156 fake_zero_displacement = 1;
29b0f896 8157 }
dc821c5f 8158 else if (i.base_reg->reg_type.bitfield.word)
29b0f896 8159 {
63112cd6 8160 gas_assert (!i.tm.opcode_modifier.sib);
29b0f896
AM
8161 switch (i.base_reg->reg_num)
8162 {
8163 case 3: /* (%bx) */
8164 if (i.index_reg == 0)
8165 i.rm.regmem = 7;
8166 else /* (%bx,%si) -> 0, or (%bx,%di) -> 1 */
8167 i.rm.regmem = i.index_reg->reg_num - 6;
8168 break;
8169 case 5: /* (%bp) */
8170 default_seg = &ss;
8171 if (i.index_reg == 0)
8172 {
8173 i.rm.regmem = 6;
40fb9820 8174 if (operand_type_check (i.types[op], disp) == 0)
29b0f896
AM
8175 {
8176 /* fake (%bp) into 0(%bp) */
41eb8e88 8177 if (i.disp_encoding == disp_encoding_16bit)
1a02d6b0
L
8178 i.types[op].bitfield.disp16 = 1;
8179 else
8180 i.types[op].bitfield.disp8 = 1;
252b5132 8181 fake_zero_displacement = 1;
29b0f896
AM
8182 }
8183 }
8184 else /* (%bp,%si) -> 2, or (%bp,%di) -> 3 */
8185 i.rm.regmem = i.index_reg->reg_num - 6 + 2;
8186 break;
8187 default: /* (%si) -> 4 or (%di) -> 5 */
8188 i.rm.regmem = i.base_reg->reg_num - 6 + 4;
8189 }
41eb8e88
L
8190 if (!fake_zero_displacement
8191 && !i.disp_operands
8192 && i.disp_encoding)
8193 {
8194 fake_zero_displacement = 1;
8195 if (i.disp_encoding == disp_encoding_8bit)
8196 i.types[op].bitfield.disp8 = 1;
8197 else
8198 i.types[op].bitfield.disp16 = 1;
8199 }
29b0f896
AM
8200 i.rm.mode = mode_from_disp_size (i.types[op]);
8201 }
8202 else /* i.base_reg and 32/64 bit mode */
8203 {
8204 if (flag_code == CODE_64BIT
40fb9820
L
8205 && operand_type_check (i.types[op], disp))
8206 {
73053c1f
JB
8207 i.types[op].bitfield.disp16 = 0;
8208 i.types[op].bitfield.disp64 = 0;
40fb9820 8209 if (i.prefix[ADDR_PREFIX] == 0)
73053c1f
JB
8210 {
8211 i.types[op].bitfield.disp32 = 0;
8212 i.types[op].bitfield.disp32s = 1;
8213 }
40fb9820 8214 else
73053c1f
JB
8215 {
8216 i.types[op].bitfield.disp32 = 1;
8217 i.types[op].bitfield.disp32s = 0;
8218 }
40fb9820 8219 }
20f0a1fc 8220
63112cd6 8221 if (!i.tm.opcode_modifier.sib)
6c30d220 8222 i.rm.regmem = i.base_reg->reg_num;
29b0f896 8223 if ((i.base_reg->reg_flags & RegRex) != 0)
161a04f6 8224 i.rex |= REX_B;
29b0f896
AM
8225 i.sib.base = i.base_reg->reg_num;
8226 /* x86-64 ignores REX prefix bit here to avoid decoder
8227 complications. */
848930b2
JB
8228 if (!(i.base_reg->reg_flags & RegRex)
8229 && (i.base_reg->reg_num == EBP_REG_NUM
8230 || i.base_reg->reg_num == ESP_REG_NUM))
29b0f896 8231 default_seg = &ss;
848930b2 8232 if (i.base_reg->reg_num == 5 && i.disp_operands == 0)
29b0f896 8233 {
848930b2 8234 fake_zero_displacement = 1;
1a02d6b0
L
8235 if (i.disp_encoding == disp_encoding_32bit)
8236 i.types[op].bitfield.disp32 = 1;
8237 else
8238 i.types[op].bitfield.disp8 = 1;
29b0f896
AM
8239 }
8240 i.sib.scale = i.log2_scale_factor;
8241 if (i.index_reg == 0)
8242 {
260cd341
LC
8243 /* Only check for VSIB. */
8244 gas_assert (i.tm.opcode_modifier.sib != VECSIB128
8245 && i.tm.opcode_modifier.sib != VECSIB256
8246 && i.tm.opcode_modifier.sib != VECSIB512);
8247
29b0f896
AM
8248 /* <disp>(%esp) becomes two byte modrm with no index
8249 register. We've already stored the code for esp
8250 in i.rm.regmem ie. ESCAPE_TO_TWO_BYTE_ADDRESSING.
8251 Any base register besides %esp will not use the
8252 extra modrm byte. */
8253 i.sib.index = NO_INDEX_REGISTER;
29b0f896 8254 }
63112cd6 8255 else if (!i.tm.opcode_modifier.sib)
29b0f896 8256 {
e968fc9b 8257 if (i.index_reg->reg_num == RegIZ)
db51cc60
L
8258 i.sib.index = NO_INDEX_REGISTER;
8259 else
8260 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
8261 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
8262 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 8263 i.rex |= REX_X;
29b0f896 8264 }
67a4f2b7
AO
8265
8266 if (i.disp_operands
8267 && (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
8268 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL))
8269 i.rm.mode = 0;
8270 else
a501d77e
L
8271 {
8272 if (!fake_zero_displacement
8273 && !i.disp_operands
8274 && i.disp_encoding)
8275 {
8276 fake_zero_displacement = 1;
8277 if (i.disp_encoding == disp_encoding_8bit)
8278 i.types[op].bitfield.disp8 = 1;
8279 else
8280 i.types[op].bitfield.disp32 = 1;
8281 }
8282 i.rm.mode = mode_from_disp_size (i.types[op]);
8283 }
29b0f896 8284 }
252b5132 8285
29b0f896
AM
8286 if (fake_zero_displacement)
8287 {
8288 /* Fakes a zero displacement assuming that i.types[op]
8289 holds the correct displacement size. */
8290 expressionS *exp;
8291
9c2799c2 8292 gas_assert (i.op[op].disps == 0);
29b0f896
AM
8293 exp = &disp_expressions[i.disp_operands++];
8294 i.op[op].disps = exp;
8295 exp->X_op = O_constant;
8296 exp->X_add_number = 0;
8297 exp->X_add_symbol = (symbolS *) 0;
8298 exp->X_op_symbol = (symbolS *) 0;
8299 }
c0f3af97
L
8300
8301 mem = op;
29b0f896 8302 }
c0f3af97
L
8303 else
8304 mem = ~0;
252b5132 8305
8c43a48b 8306 if (i.tm.opcode_modifier.vexsources == XOP2SOURCES)
5dd85c99
SP
8307 {
8308 if (operand_type_check (i.types[0], imm))
8309 i.vex.register_specifier = NULL;
8310 else
8311 {
8312 /* VEX.vvvv encodes one of the sources when the first
8313 operand is not an immediate. */
1ef99a7b 8314 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
8315 i.vex.register_specifier = i.op[0].regs;
8316 else
8317 i.vex.register_specifier = i.op[1].regs;
8318 }
8319
8320 /* Destination is a XMM register encoded in the ModRM.reg
8321 and VEX.R bit. */
8322 i.rm.reg = i.op[2].regs->reg_num;
8323 if ((i.op[2].regs->reg_flags & RegRex) != 0)
8324 i.rex |= REX_R;
8325
8326 /* ModRM.rm and VEX.B encodes the other source. */
8327 if (!i.mem_operands)
8328 {
8329 i.rm.mode = 3;
8330
1ef99a7b 8331 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
8332 i.rm.regmem = i.op[1].regs->reg_num;
8333 else
8334 i.rm.regmem = i.op[0].regs->reg_num;
8335
8336 if ((i.op[1].regs->reg_flags & RegRex) != 0)
8337 i.rex |= REX_B;
8338 }
8339 }
2426c15f 8340 else if (i.tm.opcode_modifier.vexvvvv == VEXLWP)
f88c9eb0
SP
8341 {
8342 i.vex.register_specifier = i.op[2].regs;
8343 if (!i.mem_operands)
8344 {
8345 i.rm.mode = 3;
8346 i.rm.regmem = i.op[1].regs->reg_num;
8347 if ((i.op[1].regs->reg_flags & RegRex) != 0)
8348 i.rex |= REX_B;
8349 }
8350 }
29b0f896
AM
8351 /* Fill in i.rm.reg or i.rm.regmem field with register operand
8352 (if any) based on i.tm.extension_opcode. Again, we must be
8353 careful to make sure that segment/control/debug/test/MMX
8354 registers are coded into the i.rm.reg field. */
f88c9eb0 8355 else if (i.reg_operands)
29b0f896 8356 {
99018f42 8357 unsigned int op;
7ab9ffdd
L
8358 unsigned int vex_reg = ~0;
8359
8360 for (op = 0; op < i.operands; op++)
921eafea
L
8361 if (i.types[op].bitfield.class == Reg
8362 || i.types[op].bitfield.class == RegBND
8363 || i.types[op].bitfield.class == RegMask
8364 || i.types[op].bitfield.class == SReg
8365 || i.types[op].bitfield.class == RegCR
8366 || i.types[op].bitfield.class == RegDR
8367 || i.types[op].bitfield.class == RegTR
8368 || i.types[op].bitfield.class == RegSIMD
8369 || i.types[op].bitfield.class == RegMMX)
8370 break;
c0209578 8371
7ab9ffdd
L
8372 if (vex_3_sources)
8373 op = dest;
2426c15f 8374 else if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd
L
8375 {
8376 /* For instructions with VexNDS, the register-only
8377 source operand is encoded in VEX prefix. */
8378 gas_assert (mem != (unsigned int) ~0);
c0f3af97 8379
7ab9ffdd 8380 if (op > mem)
c0f3af97 8381 {
7ab9ffdd
L
8382 vex_reg = op++;
8383 gas_assert (op < i.operands);
c0f3af97
L
8384 }
8385 else
c0f3af97 8386 {
f12dc422
L
8387 /* Check register-only source operand when two source
8388 operands are swapped. */
8389 if (!i.tm.operand_types[op].bitfield.baseindex
8390 && i.tm.operand_types[op + 1].bitfield.baseindex)
8391 {
8392 vex_reg = op;
8393 op += 2;
8394 gas_assert (mem == (vex_reg + 1)
8395 && op < i.operands);
8396 }
8397 else
8398 {
8399 vex_reg = op + 1;
8400 gas_assert (vex_reg < i.operands);
8401 }
c0f3af97 8402 }
7ab9ffdd 8403 }
2426c15f 8404 else if (i.tm.opcode_modifier.vexvvvv == VEXNDD)
7ab9ffdd 8405 {
f12dc422 8406 /* For instructions with VexNDD, the register destination
7ab9ffdd 8407 is encoded in VEX prefix. */
f12dc422
L
8408 if (i.mem_operands == 0)
8409 {
8410 /* There is no memory operand. */
8411 gas_assert ((op + 2) == i.operands);
8412 vex_reg = op + 1;
8413 }
8414 else
8d63c93e 8415 {
ed438a93
JB
8416 /* There are only 2 non-immediate operands. */
8417 gas_assert (op < i.imm_operands + 2
8418 && i.operands == i.imm_operands + 2);
8419 vex_reg = i.imm_operands + 1;
f12dc422 8420 }
7ab9ffdd
L
8421 }
8422 else
8423 gas_assert (op < i.operands);
99018f42 8424
7ab9ffdd
L
8425 if (vex_reg != (unsigned int) ~0)
8426 {
f12dc422 8427 i386_operand_type *type = &i.tm.operand_types[vex_reg];
7ab9ffdd 8428
bab6aec1 8429 if ((type->bitfield.class != Reg
dc821c5f 8430 || (!type->bitfield.dword && !type->bitfield.qword))
3528c362 8431 && type->bitfield.class != RegSIMD
43234a1e 8432 && !operand_type_equal (type, &regmask))
7ab9ffdd 8433 abort ();
f88c9eb0 8434
7ab9ffdd
L
8435 i.vex.register_specifier = i.op[vex_reg].regs;
8436 }
8437
1b9f0c97
L
8438 /* Don't set OP operand twice. */
8439 if (vex_reg != op)
7ab9ffdd 8440 {
1b9f0c97
L
8441 /* If there is an extension opcode to put here, the
8442 register number must be put into the regmem field. */
8443 if (i.tm.extension_opcode != None)
8444 {
8445 i.rm.regmem = i.op[op].regs->reg_num;
a5aeccd9
JB
8446 set_rex_vrex (i.op[op].regs, REX_B,
8447 i.tm.opcode_modifier.sse2avx);
1b9f0c97
L
8448 }
8449 else
8450 {
8451 i.rm.reg = i.op[op].regs->reg_num;
a5aeccd9
JB
8452 set_rex_vrex (i.op[op].regs, REX_R,
8453 i.tm.opcode_modifier.sse2avx);
1b9f0c97 8454 }
7ab9ffdd 8455 }
252b5132 8456
29b0f896
AM
8457 /* Now, if no memory operand has set i.rm.mode = 0, 1, 2 we
8458 must set it to 3 to indicate this is a register operand
8459 in the regmem field. */
8460 if (!i.mem_operands)
8461 i.rm.mode = 3;
8462 }
252b5132 8463
29b0f896 8464 /* Fill in i.rm.reg field with extension opcode (if any). */
c1e679ec 8465 if (i.tm.extension_opcode != None)
29b0f896
AM
8466 i.rm.reg = i.tm.extension_opcode;
8467 }
8468 return default_seg;
8469}
252b5132 8470
48ef937e
JB
8471static INLINE void
8472frag_opcode_byte (unsigned char byte)
8473{
8474 if (now_seg != absolute_section)
8475 FRAG_APPEND_1_CHAR (byte);
8476 else
8477 ++abs_section_offset;
8478}
8479
376cd056
JB
8480static unsigned int
8481flip_code16 (unsigned int code16)
8482{
8483 gas_assert (i.tm.operands == 1);
8484
8485 return !(i.prefix[REX_PREFIX] & REX_W)
8486 && (code16 ? i.tm.operand_types[0].bitfield.disp32
8487 || i.tm.operand_types[0].bitfield.disp32s
8488 : i.tm.operand_types[0].bitfield.disp16)
8489 ? CODE16 : 0;
8490}
8491
29b0f896 8492static void
e3bb37b5 8493output_branch (void)
29b0f896
AM
8494{
8495 char *p;
f8a5c266 8496 int size;
29b0f896
AM
8497 int code16;
8498 int prefix;
8499 relax_substateT subtype;
8500 symbolS *sym;
8501 offsetT off;
8502
48ef937e
JB
8503 if (now_seg == absolute_section)
8504 {
8505 as_bad (_("relaxable branches not supported in absolute section"));
8506 return;
8507 }
8508
f8a5c266 8509 code16 = flag_code == CODE_16BIT ? CODE16 : 0;
a501d77e 8510 size = i.disp_encoding == disp_encoding_32bit ? BIG : SMALL;
29b0f896
AM
8511
8512 prefix = 0;
8513 if (i.prefix[DATA_PREFIX] != 0)
252b5132 8514 {
29b0f896
AM
8515 prefix = 1;
8516 i.prefixes -= 1;
376cd056 8517 code16 ^= flip_code16(code16);
252b5132 8518 }
29b0f896
AM
8519 /* Pentium4 branch hints. */
8520 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
8521 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
2f66722d 8522 {
29b0f896
AM
8523 prefix++;
8524 i.prefixes--;
8525 }
8526 if (i.prefix[REX_PREFIX] != 0)
8527 {
8528 prefix++;
8529 i.prefixes--;
2f66722d
AM
8530 }
8531
7e8b059b
L
8532 /* BND prefixed jump. */
8533 if (i.prefix[BND_PREFIX] != 0)
8534 {
6cb0a70e
JB
8535 prefix++;
8536 i.prefixes--;
7e8b059b
L
8537 }
8538
f2810fe0
JB
8539 if (i.prefixes != 0)
8540 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
29b0f896
AM
8541
8542 /* It's always a symbol; End frag & setup for relax.
8543 Make sure there is enough room in this frag for the largest
8544 instruction we may generate in md_convert_frag. This is 2
8545 bytes for the opcode and room for the prefix and largest
8546 displacement. */
8547 frag_grow (prefix + 2 + 4);
8548 /* Prefix and 1 opcode byte go in fr_fix. */
8549 p = frag_more (prefix + 1);
8550 if (i.prefix[DATA_PREFIX] != 0)
8551 *p++ = DATA_PREFIX_OPCODE;
8552 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE
8553 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE)
8554 *p++ = i.prefix[SEG_PREFIX];
6cb0a70e
JB
8555 if (i.prefix[BND_PREFIX] != 0)
8556 *p++ = BND_PREFIX_OPCODE;
29b0f896
AM
8557 if (i.prefix[REX_PREFIX] != 0)
8558 *p++ = i.prefix[REX_PREFIX];
8559 *p = i.tm.base_opcode;
8560
8561 if ((unsigned char) *p == JUMP_PC_RELATIVE)
f8a5c266 8562 subtype = ENCODE_RELAX_STATE (UNCOND_JUMP, size);
40fb9820 8563 else if (cpu_arch_flags.bitfield.cpui386)
f8a5c266 8564 subtype = ENCODE_RELAX_STATE (COND_JUMP, size);
29b0f896 8565 else
f8a5c266 8566 subtype = ENCODE_RELAX_STATE (COND_JUMP86, size);
29b0f896 8567 subtype |= code16;
3e73aa7c 8568
29b0f896
AM
8569 sym = i.op[0].disps->X_add_symbol;
8570 off = i.op[0].disps->X_add_number;
3e73aa7c 8571
29b0f896
AM
8572 if (i.op[0].disps->X_op != O_constant
8573 && i.op[0].disps->X_op != O_symbol)
3e73aa7c 8574 {
29b0f896
AM
8575 /* Handle complex expressions. */
8576 sym = make_expr_symbol (i.op[0].disps);
8577 off = 0;
8578 }
3e73aa7c 8579
29b0f896
AM
8580 /* 1 possible extra opcode + 4 byte displacement go in var part.
8581 Pass reloc in fr_var. */
d258b828 8582 frag_var (rs_machine_dependent, 5, i.reloc[0], subtype, sym, off, p);
29b0f896 8583}
3e73aa7c 8584
bd7ab16b
L
8585#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8586/* Return TRUE iff PLT32 relocation should be used for branching to
8587 symbol S. */
8588
8589static bfd_boolean
8590need_plt32_p (symbolS *s)
8591{
8592 /* PLT32 relocation is ELF only. */
8593 if (!IS_ELF)
8594 return FALSE;
8595
a5def729
RO
8596#ifdef TE_SOLARIS
8597 /* Don't emit PLT32 relocation on Solaris: neither native linker nor
8598 krtld support it. */
8599 return FALSE;
8600#endif
8601
bd7ab16b
L
8602 /* Since there is no need to prepare for PLT branch on x86-64, we
8603 can generate R_X86_64_PLT32, instead of R_X86_64_PC32, which can
8604 be used as a marker for 32-bit PC-relative branches. */
8605 if (!object_64bit)
8606 return FALSE;
8607
44365e88
AM
8608 if (s == NULL)
8609 return FALSE;
8610
bd7ab16b
L
8611 /* Weak or undefined symbol need PLT32 relocation. */
8612 if (S_IS_WEAK (s) || !S_IS_DEFINED (s))
8613 return TRUE;
8614
8615 /* Non-global symbol doesn't need PLT32 relocation. */
8616 if (! S_IS_EXTERNAL (s))
8617 return FALSE;
8618
8619 /* Other global symbols need PLT32 relocation. NB: Symbol with
8620 non-default visibilities are treated as normal global symbol
8621 so that PLT32 relocation can be used as a marker for 32-bit
8622 PC-relative branches. It is useful for linker relaxation. */
8623 return TRUE;
8624}
8625#endif
8626
29b0f896 8627static void
e3bb37b5 8628output_jump (void)
29b0f896
AM
8629{
8630 char *p;
8631 int size;
3e02c1cc 8632 fixS *fixP;
bd7ab16b 8633 bfd_reloc_code_real_type jump_reloc = i.reloc[0];
29b0f896 8634
0cfa3eb3 8635 if (i.tm.opcode_modifier.jump == JUMP_BYTE)
29b0f896
AM
8636 {
8637 /* This is a loop or jecxz type instruction. */
8638 size = 1;
8639 if (i.prefix[ADDR_PREFIX] != 0)
8640 {
48ef937e 8641 frag_opcode_byte (ADDR_PREFIX_OPCODE);
29b0f896
AM
8642 i.prefixes -= 1;
8643 }
8644 /* Pentium4 branch hints. */
8645 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
8646 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
8647 {
48ef937e 8648 frag_opcode_byte (i.prefix[SEG_PREFIX]);
29b0f896 8649 i.prefixes--;
3e73aa7c
JH
8650 }
8651 }
29b0f896
AM
8652 else
8653 {
8654 int code16;
3e73aa7c 8655
29b0f896
AM
8656 code16 = 0;
8657 if (flag_code == CODE_16BIT)
8658 code16 = CODE16;
3e73aa7c 8659
29b0f896
AM
8660 if (i.prefix[DATA_PREFIX] != 0)
8661 {
48ef937e 8662 frag_opcode_byte (DATA_PREFIX_OPCODE);
29b0f896 8663 i.prefixes -= 1;
376cd056 8664 code16 ^= flip_code16(code16);
29b0f896 8665 }
252b5132 8666
29b0f896
AM
8667 size = 4;
8668 if (code16)
8669 size = 2;
8670 }
9fcc94b6 8671
6cb0a70e
JB
8672 /* BND prefixed jump. */
8673 if (i.prefix[BND_PREFIX] != 0)
29b0f896 8674 {
48ef937e 8675 frag_opcode_byte (i.prefix[BND_PREFIX]);
29b0f896
AM
8676 i.prefixes -= 1;
8677 }
252b5132 8678
6cb0a70e 8679 if (i.prefix[REX_PREFIX] != 0)
7e8b059b 8680 {
48ef937e 8681 frag_opcode_byte (i.prefix[REX_PREFIX]);
7e8b059b
L
8682 i.prefixes -= 1;
8683 }
8684
f2810fe0
JB
8685 if (i.prefixes != 0)
8686 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
e0890092 8687
48ef937e
JB
8688 if (now_seg == absolute_section)
8689 {
8690 abs_section_offset += i.tm.opcode_length + size;
8691 return;
8692 }
8693
42164a71
L
8694 p = frag_more (i.tm.opcode_length + size);
8695 switch (i.tm.opcode_length)
8696 {
8697 case 2:
8698 *p++ = i.tm.base_opcode >> 8;
1a0670f3 8699 /* Fall through. */
42164a71
L
8700 case 1:
8701 *p++ = i.tm.base_opcode;
8702 break;
8703 default:
8704 abort ();
8705 }
e0890092 8706
bd7ab16b
L
8707#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8708 if (size == 4
8709 && jump_reloc == NO_RELOC
8710 && need_plt32_p (i.op[0].disps->X_add_symbol))
8711 jump_reloc = BFD_RELOC_X86_64_PLT32;
8712#endif
8713
8714 jump_reloc = reloc (size, 1, 1, jump_reloc);
8715
3e02c1cc 8716 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal, size,
bd7ab16b 8717 i.op[0].disps, 1, jump_reloc);
3e02c1cc
AM
8718
8719 /* All jumps handled here are signed, but don't use a signed limit
8720 check for 32 and 16 bit jumps as we want to allow wrap around at
8721 4G and 64k respectively. */
8722 if (size == 1)
8723 fixP->fx_signed = 1;
29b0f896 8724}
e0890092 8725
29b0f896 8726static void
e3bb37b5 8727output_interseg_jump (void)
29b0f896
AM
8728{
8729 char *p;
8730 int size;
8731 int prefix;
8732 int code16;
252b5132 8733
29b0f896
AM
8734 code16 = 0;
8735 if (flag_code == CODE_16BIT)
8736 code16 = CODE16;
a217f122 8737
29b0f896
AM
8738 prefix = 0;
8739 if (i.prefix[DATA_PREFIX] != 0)
8740 {
8741 prefix = 1;
8742 i.prefixes -= 1;
8743 code16 ^= CODE16;
8744 }
6cb0a70e
JB
8745
8746 gas_assert (!i.prefix[REX_PREFIX]);
252b5132 8747
29b0f896
AM
8748 size = 4;
8749 if (code16)
8750 size = 2;
252b5132 8751
f2810fe0
JB
8752 if (i.prefixes != 0)
8753 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
252b5132 8754
48ef937e
JB
8755 if (now_seg == absolute_section)
8756 {
8757 abs_section_offset += prefix + 1 + 2 + size;
8758 return;
8759 }
8760
29b0f896
AM
8761 /* 1 opcode; 2 segment; offset */
8762 p = frag_more (prefix + 1 + 2 + size);
3e73aa7c 8763
29b0f896
AM
8764 if (i.prefix[DATA_PREFIX] != 0)
8765 *p++ = DATA_PREFIX_OPCODE;
252b5132 8766
29b0f896
AM
8767 if (i.prefix[REX_PREFIX] != 0)
8768 *p++ = i.prefix[REX_PREFIX];
252b5132 8769
29b0f896
AM
8770 *p++ = i.tm.base_opcode;
8771 if (i.op[1].imms->X_op == O_constant)
8772 {
8773 offsetT n = i.op[1].imms->X_add_number;
252b5132 8774
29b0f896
AM
8775 if (size == 2
8776 && !fits_in_unsigned_word (n)
8777 && !fits_in_signed_word (n))
8778 {
8779 as_bad (_("16-bit jump out of range"));
8780 return;
8781 }
8782 md_number_to_chars (p, n, size);
8783 }
8784 else
8785 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
d258b828 8786 i.op[1].imms, 0, reloc (size, 0, 0, i.reloc[1]));
6d96a594
C
8787
8788 p += size;
8789 if (i.op[0].imms->X_op == O_constant)
8790 md_number_to_chars (p, (valueT) i.op[0].imms->X_add_number, 2);
8791 else
8792 fix_new_exp (frag_now, p - frag_now->fr_literal, 2,
8793 i.op[0].imms, 0, reloc (2, 0, 0, i.reloc[0]));
29b0f896 8794}
a217f122 8795
b4a3a7b4
L
8796#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8797void
8798x86_cleanup (void)
8799{
8800 char *p;
8801 asection *seg = now_seg;
8802 subsegT subseg = now_subseg;
8803 asection *sec;
8804 unsigned int alignment, align_size_1;
8805 unsigned int isa_1_descsz, feature_2_descsz, descsz;
8806 unsigned int isa_1_descsz_raw, feature_2_descsz_raw;
8807 unsigned int padding;
8808
8809 if (!IS_ELF || !x86_used_note)
8810 return;
8811
b4a3a7b4
L
8812 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X86;
8813
8814 /* The .note.gnu.property section layout:
8815
8816 Field Length Contents
8817 ---- ---- ----
8818 n_namsz 4 4
8819 n_descsz 4 The note descriptor size
8820 n_type 4 NT_GNU_PROPERTY_TYPE_0
8821 n_name 4 "GNU"
8822 n_desc n_descsz The program property array
8823 .... .... ....
8824 */
8825
8826 /* Create the .note.gnu.property section. */
8827 sec = subseg_new (NOTE_GNU_PROPERTY_SECTION_NAME, 0);
fd361982 8828 bfd_set_section_flags (sec,
b4a3a7b4
L
8829 (SEC_ALLOC
8830 | SEC_LOAD
8831 | SEC_DATA
8832 | SEC_HAS_CONTENTS
8833 | SEC_READONLY));
8834
8835 if (get_elf_backend_data (stdoutput)->s->elfclass == ELFCLASS64)
8836 {
8837 align_size_1 = 7;
8838 alignment = 3;
8839 }
8840 else
8841 {
8842 align_size_1 = 3;
8843 alignment = 2;
8844 }
8845
fd361982 8846 bfd_set_section_alignment (sec, alignment);
b4a3a7b4
L
8847 elf_section_type (sec) = SHT_NOTE;
8848
8849 /* GNU_PROPERTY_X86_ISA_1_USED: 4-byte type + 4-byte data size
8850 + 4-byte data */
8851 isa_1_descsz_raw = 4 + 4 + 4;
8852 /* Align GNU_PROPERTY_X86_ISA_1_USED. */
8853 isa_1_descsz = (isa_1_descsz_raw + align_size_1) & ~align_size_1;
8854
8855 feature_2_descsz_raw = isa_1_descsz;
8856 /* GNU_PROPERTY_X86_FEATURE_2_USED: 4-byte type + 4-byte data size
8857 + 4-byte data */
8858 feature_2_descsz_raw += 4 + 4 + 4;
8859 /* Align GNU_PROPERTY_X86_FEATURE_2_USED. */
8860 feature_2_descsz = ((feature_2_descsz_raw + align_size_1)
8861 & ~align_size_1);
8862
8863 descsz = feature_2_descsz;
8864 /* Section size: n_namsz + n_descsz + n_type + n_name + n_descsz. */
8865 p = frag_more (4 + 4 + 4 + 4 + descsz);
8866
8867 /* Write n_namsz. */
8868 md_number_to_chars (p, (valueT) 4, 4);
8869
8870 /* Write n_descsz. */
8871 md_number_to_chars (p + 4, (valueT) descsz, 4);
8872
8873 /* Write n_type. */
8874 md_number_to_chars (p + 4 * 2, (valueT) NT_GNU_PROPERTY_TYPE_0, 4);
8875
8876 /* Write n_name. */
8877 memcpy (p + 4 * 3, "GNU", 4);
8878
8879 /* Write 4-byte type. */
8880 md_number_to_chars (p + 4 * 4,
8881 (valueT) GNU_PROPERTY_X86_ISA_1_USED, 4);
8882
8883 /* Write 4-byte data size. */
8884 md_number_to_chars (p + 4 * 5, (valueT) 4, 4);
8885
8886 /* Write 4-byte data. */
8887 md_number_to_chars (p + 4 * 6, (valueT) x86_isa_1_used, 4);
8888
8889 /* Zero out paddings. */
8890 padding = isa_1_descsz - isa_1_descsz_raw;
8891 if (padding)
8892 memset (p + 4 * 7, 0, padding);
8893
8894 /* Write 4-byte type. */
8895 md_number_to_chars (p + isa_1_descsz + 4 * 4,
8896 (valueT) GNU_PROPERTY_X86_FEATURE_2_USED, 4);
8897
8898 /* Write 4-byte data size. */
8899 md_number_to_chars (p + isa_1_descsz + 4 * 5, (valueT) 4, 4);
8900
8901 /* Write 4-byte data. */
8902 md_number_to_chars (p + isa_1_descsz + 4 * 6,
8903 (valueT) x86_feature_2_used, 4);
8904
8905 /* Zero out paddings. */
8906 padding = feature_2_descsz - feature_2_descsz_raw;
8907 if (padding)
8908 memset (p + isa_1_descsz + 4 * 7, 0, padding);
8909
8910 /* We probably can't restore the current segment, for there likely
8911 isn't one yet... */
8912 if (seg && subseg)
8913 subseg_set (seg, subseg);
8914}
8915#endif
8916
9c33702b
JB
8917static unsigned int
8918encoding_length (const fragS *start_frag, offsetT start_off,
8919 const char *frag_now_ptr)
8920{
8921 unsigned int len = 0;
8922
8923 if (start_frag != frag_now)
8924 {
8925 const fragS *fr = start_frag;
8926
8927 do {
8928 len += fr->fr_fix;
8929 fr = fr->fr_next;
8930 } while (fr && fr != frag_now);
8931 }
8932
8933 return len - start_off + (frag_now_ptr - frag_now->fr_literal);
8934}
8935
e379e5f3 8936/* Return 1 for test, and, cmp, add, sub, inc and dec which may
79d72f45
HL
8937 be macro-fused with conditional jumps.
8938 NB: If TEST/AND/CMP/ADD/SUB/INC/DEC is of RIP relative address,
8939 or is one of the following format:
8940
8941 cmp m, imm
8942 add m, imm
8943 sub m, imm
8944 test m, imm
8945 and m, imm
8946 inc m
8947 dec m
8948
8949 it is unfusible. */
e379e5f3
L
8950
8951static int
79d72f45 8952maybe_fused_with_jcc_p (enum mf_cmp_kind* mf_cmp_p)
e379e5f3
L
8953{
8954 /* No RIP address. */
8955 if (i.base_reg && i.base_reg->reg_num == RegIP)
8956 return 0;
8957
8958 /* No VEX/EVEX encoding. */
8959 if (is_any_vex_encoding (&i.tm))
8960 return 0;
8961
79d72f45
HL
8962 /* add, sub without add/sub m, imm. */
8963 if (i.tm.base_opcode <= 5
e379e5f3
L
8964 || (i.tm.base_opcode >= 0x28 && i.tm.base_opcode <= 0x2d)
8965 || ((i.tm.base_opcode | 3) == 0x83
79d72f45 8966 && (i.tm.extension_opcode == 0x5
e379e5f3 8967 || i.tm.extension_opcode == 0x0)))
79d72f45
HL
8968 {
8969 *mf_cmp_p = mf_cmp_alu_cmp;
8970 return !(i.mem_operands && i.imm_operands);
8971 }
e379e5f3 8972
79d72f45
HL
8973 /* and without and m, imm. */
8974 if ((i.tm.base_opcode >= 0x20 && i.tm.base_opcode <= 0x25)
8975 || ((i.tm.base_opcode | 3) == 0x83
8976 && i.tm.extension_opcode == 0x4))
8977 {
8978 *mf_cmp_p = mf_cmp_test_and;
8979 return !(i.mem_operands && i.imm_operands);
8980 }
8981
8982 /* test without test m imm. */
e379e5f3
L
8983 if ((i.tm.base_opcode | 1) == 0x85
8984 || (i.tm.base_opcode | 1) == 0xa9
8985 || ((i.tm.base_opcode | 1) == 0xf7
79d72f45
HL
8986 && i.tm.extension_opcode == 0))
8987 {
8988 *mf_cmp_p = mf_cmp_test_and;
8989 return !(i.mem_operands && i.imm_operands);
8990 }
8991
8992 /* cmp without cmp m, imm. */
8993 if ((i.tm.base_opcode >= 0x38 && i.tm.base_opcode <= 0x3d)
e379e5f3
L
8994 || ((i.tm.base_opcode | 3) == 0x83
8995 && (i.tm.extension_opcode == 0x7)))
79d72f45
HL
8996 {
8997 *mf_cmp_p = mf_cmp_alu_cmp;
8998 return !(i.mem_operands && i.imm_operands);
8999 }
e379e5f3 9000
79d72f45 9001 /* inc, dec without inc/dec m. */
e379e5f3
L
9002 if ((i.tm.cpu_flags.bitfield.cpuno64
9003 && (i.tm.base_opcode | 0xf) == 0x4f)
9004 || ((i.tm.base_opcode | 1) == 0xff
9005 && i.tm.extension_opcode <= 0x1))
79d72f45
HL
9006 {
9007 *mf_cmp_p = mf_cmp_incdec;
9008 return !i.mem_operands;
9009 }
e379e5f3
L
9010
9011 return 0;
9012}
9013
9014/* Return 1 if a FUSED_JCC_PADDING frag should be generated. */
9015
9016static int
79d72f45 9017add_fused_jcc_padding_frag_p (enum mf_cmp_kind* mf_cmp_p)
e379e5f3
L
9018{
9019 /* NB: Don't work with COND_JUMP86 without i386. */
9020 if (!align_branch_power
9021 || now_seg == absolute_section
9022 || !cpu_arch_flags.bitfield.cpui386
9023 || !(align_branch & align_branch_fused_bit))
9024 return 0;
9025
79d72f45 9026 if (maybe_fused_with_jcc_p (mf_cmp_p))
e379e5f3
L
9027 {
9028 if (last_insn.kind == last_insn_other
9029 || last_insn.seg != now_seg)
9030 return 1;
9031 if (flag_debug)
9032 as_warn_where (last_insn.file, last_insn.line,
9033 _("`%s` skips -malign-branch-boundary on `%s`"),
9034 last_insn.name, i.tm.name);
9035 }
9036
9037 return 0;
9038}
9039
9040/* Return 1 if a BRANCH_PREFIX frag should be generated. */
9041
9042static int
9043add_branch_prefix_frag_p (void)
9044{
9045 /* NB: Don't work with COND_JUMP86 without i386. Don't add prefix
9046 to PadLock instructions since they include prefixes in opcode. */
9047 if (!align_branch_power
9048 || !align_branch_prefix_size
9049 || now_seg == absolute_section
9050 || i.tm.cpu_flags.bitfield.cpupadlock
9051 || !cpu_arch_flags.bitfield.cpui386)
9052 return 0;
9053
9054 /* Don't add prefix if it is a prefix or there is no operand in case
9055 that segment prefix is special. */
9056 if (!i.operands || i.tm.opcode_modifier.isprefix)
9057 return 0;
9058
9059 if (last_insn.kind == last_insn_other
9060 || last_insn.seg != now_seg)
9061 return 1;
9062
9063 if (flag_debug)
9064 as_warn_where (last_insn.file, last_insn.line,
9065 _("`%s` skips -malign-branch-boundary on `%s`"),
9066 last_insn.name, i.tm.name);
9067
9068 return 0;
9069}
9070
9071/* Return 1 if a BRANCH_PADDING frag should be generated. */
9072
9073static int
79d72f45
HL
9074add_branch_padding_frag_p (enum align_branch_kind *branch_p,
9075 enum mf_jcc_kind *mf_jcc_p)
e379e5f3
L
9076{
9077 int add_padding;
9078
9079 /* NB: Don't work with COND_JUMP86 without i386. */
9080 if (!align_branch_power
9081 || now_seg == absolute_section
9082 || !cpu_arch_flags.bitfield.cpui386)
9083 return 0;
9084
9085 add_padding = 0;
9086
9087 /* Check for jcc and direct jmp. */
9088 if (i.tm.opcode_modifier.jump == JUMP)
9089 {
9090 if (i.tm.base_opcode == JUMP_PC_RELATIVE)
9091 {
9092 *branch_p = align_branch_jmp;
9093 add_padding = align_branch & align_branch_jmp_bit;
9094 }
9095 else
9096 {
79d72f45
HL
9097 /* Because J<cc> and JN<cc> share same group in macro-fusible table,
9098 igore the lowest bit. */
9099 *mf_jcc_p = (i.tm.base_opcode & 0x0e) >> 1;
e379e5f3
L
9100 *branch_p = align_branch_jcc;
9101 if ((align_branch & align_branch_jcc_bit))
9102 add_padding = 1;
9103 }
9104 }
9105 else if (is_any_vex_encoding (&i.tm))
9106 return 0;
9107 else if ((i.tm.base_opcode | 1) == 0xc3)
9108 {
9109 /* Near ret. */
9110 *branch_p = align_branch_ret;
9111 if ((align_branch & align_branch_ret_bit))
9112 add_padding = 1;
9113 }
9114 else
9115 {
9116 /* Check for indirect jmp, direct and indirect calls. */
9117 if (i.tm.base_opcode == 0xe8)
9118 {
9119 /* Direct call. */
9120 *branch_p = align_branch_call;
9121 if ((align_branch & align_branch_call_bit))
9122 add_padding = 1;
9123 }
9124 else if (i.tm.base_opcode == 0xff
9125 && (i.tm.extension_opcode == 2
9126 || i.tm.extension_opcode == 4))
9127 {
9128 /* Indirect call and jmp. */
9129 *branch_p = align_branch_indirect;
9130 if ((align_branch & align_branch_indirect_bit))
9131 add_padding = 1;
9132 }
9133
9134 if (add_padding
9135 && i.disp_operands
9136 && tls_get_addr
9137 && (i.op[0].disps->X_op == O_symbol
9138 || (i.op[0].disps->X_op == O_subtract
9139 && i.op[0].disps->X_op_symbol == GOT_symbol)))
9140 {
9141 symbolS *s = i.op[0].disps->X_add_symbol;
9142 /* No padding to call to global or undefined tls_get_addr. */
9143 if ((S_IS_EXTERNAL (s) || !S_IS_DEFINED (s))
9144 && strcmp (S_GET_NAME (s), tls_get_addr) == 0)
9145 return 0;
9146 }
9147 }
9148
9149 if (add_padding
9150 && last_insn.kind != last_insn_other
9151 && last_insn.seg == now_seg)
9152 {
9153 if (flag_debug)
9154 as_warn_where (last_insn.file, last_insn.line,
9155 _("`%s` skips -malign-branch-boundary on `%s`"),
9156 last_insn.name, i.tm.name);
9157 return 0;
9158 }
9159
9160 return add_padding;
9161}
9162
29b0f896 9163static void
e3bb37b5 9164output_insn (void)
29b0f896 9165{
2bbd9c25
JJ
9166 fragS *insn_start_frag;
9167 offsetT insn_start_off;
e379e5f3
L
9168 fragS *fragP = NULL;
9169 enum align_branch_kind branch = align_branch_none;
79d72f45
HL
9170 /* The initializer is arbitrary just to avoid uninitialized error.
9171 it's actually either assigned in add_branch_padding_frag_p
9172 or never be used. */
9173 enum mf_jcc_kind mf_jcc = mf_jcc_jo;
2bbd9c25 9174
b4a3a7b4 9175#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
48ef937e 9176 if (IS_ELF && x86_used_note && now_seg != absolute_section)
b4a3a7b4 9177 {
32930e4e
L
9178 if ((i.xstate & xstate_tmm) == xstate_tmm
9179 || i.tm.cpu_flags.bitfield.cpuamx_tile)
9180 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_TMM;
9181
b4a3a7b4
L
9182 if (i.tm.cpu_flags.bitfield.cpu8087
9183 || i.tm.cpu_flags.bitfield.cpu287
9184 || i.tm.cpu_flags.bitfield.cpu387
9185 || i.tm.cpu_flags.bitfield.cpu687
9186 || i.tm.cpu_flags.bitfield.cpufisttp)
9187 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X87;
014d61ea 9188
921eafea 9189 if ((i.xstate & xstate_mmx)
319ff62c 9190 || i.tm.base_opcode == 0xf77 /* emms */
921eafea 9191 || i.tm.base_opcode == 0xf0e /* femms */)
b4a3a7b4 9192 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_MMX;
014d61ea 9193
32930e4e
L
9194 if (i.index_reg)
9195 {
9196 if (i.index_reg->reg_type.bitfield.zmmword)
9197 i.xstate |= xstate_zmm;
9198 else if (i.index_reg->reg_type.bitfield.ymmword)
9199 i.xstate |= xstate_ymm;
9200 else if (i.index_reg->reg_type.bitfield.xmmword)
9201 i.xstate |= xstate_xmm;
9202 }
014d61ea
JB
9203
9204 /* vzeroall / vzeroupper */
9205 if (i.tm.base_opcode == 0x77 && i.tm.cpu_flags.bitfield.cpuavx)
9206 i.xstate |= xstate_ymm;
9207
c4694f17 9208 if ((i.xstate & xstate_xmm)
014d61ea
JB
9209 /* ldmxcsr / stmxcsr */
9210 || (i.tm.base_opcode == 0xfae && i.tm.cpu_flags.bitfield.cpusse)
9211 /* vldmxcsr / vstmxcsr */
9212 || (i.tm.base_opcode == 0xae && i.tm.cpu_flags.bitfield.cpuavx)
c4694f17
TG
9213 || i.tm.cpu_flags.bitfield.cpuwidekl
9214 || i.tm.cpu_flags.bitfield.cpukl)
b4a3a7b4 9215 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XMM;
014d61ea 9216
921eafea 9217 if ((i.xstate & xstate_ymm) == xstate_ymm)
b4a3a7b4 9218 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_YMM;
921eafea 9219 if ((i.xstate & xstate_zmm) == xstate_zmm)
b4a3a7b4 9220 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_ZMM;
32930e4e
L
9221 if (i.mask || (i.xstate & xstate_mask) == xstate_mask)
9222 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_MASK;
b4a3a7b4
L
9223 if (i.tm.cpu_flags.bitfield.cpufxsr)
9224 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_FXSR;
9225 if (i.tm.cpu_flags.bitfield.cpuxsave)
9226 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVE;
9227 if (i.tm.cpu_flags.bitfield.cpuxsaveopt)
9228 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT;
9229 if (i.tm.cpu_flags.bitfield.cpuxsavec)
9230 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEC;
b0ab0693
L
9231
9232 if (x86_feature_2_used
9233 || i.tm.cpu_flags.bitfield.cpucmov
9234 || i.tm.cpu_flags.bitfield.cpusyscall
9235 || (i.tm.base_opcode == 0xfc7
70e95837 9236 && i.tm.opcode_modifier.opcodeprefix == PREFIX_NONE
b0ab0693
L
9237 && i.tm.extension_opcode == 1) /* cmpxchg8b */)
9238 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_BASELINE;
9239 if (i.tm.cpu_flags.bitfield.cpusse3
9240 || i.tm.cpu_flags.bitfield.cpussse3
9241 || i.tm.cpu_flags.bitfield.cpusse4_1
9242 || i.tm.cpu_flags.bitfield.cpusse4_2
9243 || i.tm.cpu_flags.bitfield.cpucx16
9244 || i.tm.cpu_flags.bitfield.cpupopcnt
9245 /* LAHF-SAHF insns in 64-bit mode. */
9246 || (flag_code == CODE_64BIT
9247 && (i.tm.base_opcode | 1) == 0x9f))
9248 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_V2;
9249 if (i.tm.cpu_flags.bitfield.cpuavx
9250 || i.tm.cpu_flags.bitfield.cpuavx2
9251 /* Any VEX encoded insns execpt for CpuAVX512F, CpuAVX512BW,
9252 CpuAVX512DQ, LPW, TBM and AMX. */
9253 || (i.tm.opcode_modifier.vex
9254 && !i.tm.cpu_flags.bitfield.cpuavx512f
9255 && !i.tm.cpu_flags.bitfield.cpuavx512bw
9256 && !i.tm.cpu_flags.bitfield.cpuavx512dq
9257 && !i.tm.cpu_flags.bitfield.cpulwp
9258 && !i.tm.cpu_flags.bitfield.cputbm
9259 && !(x86_feature_2_used & GNU_PROPERTY_X86_FEATURE_2_TMM))
9260 || i.tm.cpu_flags.bitfield.cpuf16c
9261 || i.tm.cpu_flags.bitfield.cpufma
9262 || i.tm.cpu_flags.bitfield.cpulzcnt
9263 || i.tm.cpu_flags.bitfield.cpumovbe
9264 || i.tm.cpu_flags.bitfield.cpuxsaves
9265 || (x86_feature_2_used
9266 & (GNU_PROPERTY_X86_FEATURE_2_XSAVE
9267 | GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT
9268 | GNU_PROPERTY_X86_FEATURE_2_XSAVEC)) != 0)
9269 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_V3;
9270 if (i.tm.cpu_flags.bitfield.cpuavx512f
9271 || i.tm.cpu_flags.bitfield.cpuavx512bw
9272 || i.tm.cpu_flags.bitfield.cpuavx512dq
9273 || i.tm.cpu_flags.bitfield.cpuavx512vl
9274 /* Any EVEX encoded insns except for AVX512ER, AVX512PF and
9275 VNNIW. */
9276 || (i.tm.opcode_modifier.evex
9277 && !i.tm.cpu_flags.bitfield.cpuavx512er
9278 && !i.tm.cpu_flags.bitfield.cpuavx512pf
9279 && !i.tm.cpu_flags.bitfield.cpuavx512_4vnniw))
9280 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_V4;
b4a3a7b4
L
9281 }
9282#endif
9283
29b0f896
AM
9284 /* Tie dwarf2 debug info to the address at the start of the insn.
9285 We can't do this after the insn has been output as the current
9286 frag may have been closed off. eg. by frag_var. */
9287 dwarf2_emit_insn (0);
9288
2bbd9c25
JJ
9289 insn_start_frag = frag_now;
9290 insn_start_off = frag_now_fix ();
9291
79d72f45 9292 if (add_branch_padding_frag_p (&branch, &mf_jcc))
e379e5f3
L
9293 {
9294 char *p;
9295 /* Branch can be 8 bytes. Leave some room for prefixes. */
9296 unsigned int max_branch_padding_size = 14;
9297
9298 /* Align section to boundary. */
9299 record_alignment (now_seg, align_branch_power);
9300
9301 /* Make room for padding. */
9302 frag_grow (max_branch_padding_size);
9303
9304 /* Start of the padding. */
9305 p = frag_more (0);
9306
9307 fragP = frag_now;
9308
9309 frag_var (rs_machine_dependent, max_branch_padding_size, 0,
9310 ENCODE_RELAX_STATE (BRANCH_PADDING, 0),
9311 NULL, 0, p);
9312
79d72f45 9313 fragP->tc_frag_data.mf_type = mf_jcc;
e379e5f3
L
9314 fragP->tc_frag_data.branch_type = branch;
9315 fragP->tc_frag_data.max_bytes = max_branch_padding_size;
9316 }
9317
29b0f896 9318 /* Output jumps. */
0cfa3eb3 9319 if (i.tm.opcode_modifier.jump == JUMP)
29b0f896 9320 output_branch ();
0cfa3eb3
JB
9321 else if (i.tm.opcode_modifier.jump == JUMP_BYTE
9322 || i.tm.opcode_modifier.jump == JUMP_DWORD)
29b0f896 9323 output_jump ();
0cfa3eb3 9324 else if (i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT)
29b0f896
AM
9325 output_interseg_jump ();
9326 else
9327 {
9328 /* Output normal instructions here. */
9329 char *p;
9330 unsigned char *q;
47465058 9331 unsigned int j;
79d72f45 9332 enum mf_cmp_kind mf_cmp;
4dffcebc 9333
e4e00185 9334 if (avoid_fence
c3949f43
JB
9335 && (i.tm.base_opcode == 0xfaee8
9336 || i.tm.base_opcode == 0xfaef0
9337 || i.tm.base_opcode == 0xfaef8))
48ef937e
JB
9338 {
9339 /* Encode lfence, mfence, and sfence as
9340 f0 83 04 24 00 lock addl $0x0, (%{re}sp). */
9341 if (now_seg != absolute_section)
9342 {
9343 offsetT val = 0x240483f0ULL;
9344
9345 p = frag_more (5);
9346 md_number_to_chars (p, val, 5);
9347 }
9348 else
9349 abs_section_offset += 5;
9350 return;
9351 }
e4e00185 9352
d022bddd
IT
9353 /* Some processors fail on LOCK prefix. This options makes
9354 assembler ignore LOCK prefix and serves as a workaround. */
9355 if (omit_lock_prefix)
9356 {
9357 if (i.tm.base_opcode == LOCK_PREFIX_OPCODE)
9358 return;
9359 i.prefix[LOCK_PREFIX] = 0;
9360 }
9361
e379e5f3
L
9362 if (branch)
9363 /* Skip if this is a branch. */
9364 ;
79d72f45 9365 else if (add_fused_jcc_padding_frag_p (&mf_cmp))
e379e5f3
L
9366 {
9367 /* Make room for padding. */
9368 frag_grow (MAX_FUSED_JCC_PADDING_SIZE);
9369 p = frag_more (0);
9370
9371 fragP = frag_now;
9372
9373 frag_var (rs_machine_dependent, MAX_FUSED_JCC_PADDING_SIZE, 0,
9374 ENCODE_RELAX_STATE (FUSED_JCC_PADDING, 0),
9375 NULL, 0, p);
9376
79d72f45 9377 fragP->tc_frag_data.mf_type = mf_cmp;
e379e5f3
L
9378 fragP->tc_frag_data.branch_type = align_branch_fused;
9379 fragP->tc_frag_data.max_bytes = MAX_FUSED_JCC_PADDING_SIZE;
9380 }
9381 else if (add_branch_prefix_frag_p ())
9382 {
9383 unsigned int max_prefix_size = align_branch_prefix_size;
9384
9385 /* Make room for padding. */
9386 frag_grow (max_prefix_size);
9387 p = frag_more (0);
9388
9389 fragP = frag_now;
9390
9391 frag_var (rs_machine_dependent, max_prefix_size, 0,
9392 ENCODE_RELAX_STATE (BRANCH_PREFIX, 0),
9393 NULL, 0, p);
9394
9395 fragP->tc_frag_data.max_bytes = max_prefix_size;
9396 }
9397
43234a1e
L
9398 /* Since the VEX/EVEX prefix contains the implicit prefix, we
9399 don't need the explicit prefix. */
9400 if (!i.tm.opcode_modifier.vex && !i.tm.opcode_modifier.evex)
bc4bd9ab 9401 {
7b47a312 9402 switch (i.tm.opcode_modifier.opcodeprefix)
bc4bd9ab 9403 {
7b47a312
L
9404 case PREFIX_0X66:
9405 add_prefix (0x66);
9406 break;
9407 case PREFIX_0XF2:
9408 add_prefix (0xf2);
9409 break;
9410 case PREFIX_0XF3:
8b65b895
L
9411 if (!i.tm.cpu_flags.bitfield.cpupadlock
9412 || (i.prefix[REP_PREFIX] != 0xf3))
9413 add_prefix (0xf3);
c0f3af97 9414 break;
7b47a312
L
9415 case PREFIX_NONE:
9416 switch (i.tm.opcode_length)
c0f3af97 9417 {
7b47a312 9418 case 3:
7b47a312 9419 case 2:
7b47a312
L
9420 case 1:
9421 break;
9422 case 0:
9423 /* Check for pseudo prefixes. */
9424 as_bad_where (insn_start_frag->fr_file,
9425 insn_start_frag->fr_line,
9426 _("pseudo prefix without instruction"));
9427 return;
9428 default:
9429 abort ();
4dffcebc 9430 }
c0f3af97 9431 break;
c0f3af97
L
9432 default:
9433 abort ();
bc4bd9ab 9434 }
c0f3af97 9435
6d19a37a 9436#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
cf61b747
L
9437 /* For x32, add a dummy REX_OPCODE prefix for mov/add with
9438 R_X86_64_GOTTPOFF relocation so that linker can safely
14470f07
L
9439 perform IE->LE optimization. A dummy REX_OPCODE prefix
9440 is also needed for lea with R_X86_64_GOTPC32_TLSDESC
9441 relocation for GDesc -> IE/LE optimization. */
cf61b747
L
9442 if (x86_elf_abi == X86_64_X32_ABI
9443 && i.operands == 2
14470f07
L
9444 && (i.reloc[0] == BFD_RELOC_X86_64_GOTTPOFF
9445 || i.reloc[0] == BFD_RELOC_X86_64_GOTPC32_TLSDESC)
cf61b747
L
9446 && i.prefix[REX_PREFIX] == 0)
9447 add_prefix (REX_OPCODE);
6d19a37a 9448#endif
cf61b747 9449
c0f3af97
L
9450 /* The prefix bytes. */
9451 for (j = ARRAY_SIZE (i.prefix), q = i.prefix; j > 0; j--, q++)
9452 if (*q)
48ef937e 9453 frag_opcode_byte (*q);
0f10071e 9454 }
ae5c1c7b 9455 else
c0f3af97
L
9456 {
9457 for (j = 0, q = i.prefix; j < ARRAY_SIZE (i.prefix); j++, q++)
9458 if (*q)
9459 switch (j)
9460 {
c0f3af97
L
9461 case SEG_PREFIX:
9462 case ADDR_PREFIX:
48ef937e 9463 frag_opcode_byte (*q);
c0f3af97
L
9464 break;
9465 default:
9466 /* There should be no other prefixes for instructions
9467 with VEX prefix. */
9468 abort ();
9469 }
9470
43234a1e
L
9471 /* For EVEX instructions i.vrex should become 0 after
9472 build_evex_prefix. For VEX instructions upper 16 registers
9473 aren't available, so VREX should be 0. */
9474 if (i.vrex)
9475 abort ();
c0f3af97 9476 /* Now the VEX prefix. */
48ef937e
JB
9477 if (now_seg != absolute_section)
9478 {
9479 p = frag_more (i.vex.length);
9480 for (j = 0; j < i.vex.length; j++)
9481 p[j] = i.vex.bytes[j];
9482 }
9483 else
9484 abs_section_offset += i.vex.length;
c0f3af97 9485 }
252b5132 9486
29b0f896 9487 /* Now the opcode; be careful about word order here! */
48ef937e
JB
9488 if (now_seg == absolute_section)
9489 abs_section_offset += i.tm.opcode_length;
9490 else if (i.tm.opcode_length == 1)
29b0f896
AM
9491 {
9492 FRAG_APPEND_1_CHAR (i.tm.base_opcode);
9493 }
9494 else
9495 {
4dffcebc 9496 switch (i.tm.opcode_length)
331d2d0d 9497 {
43234a1e
L
9498 case 4:
9499 p = frag_more (4);
9500 *p++ = (i.tm.base_opcode >> 24) & 0xff;
9501 *p++ = (i.tm.base_opcode >> 16) & 0xff;
9502 break;
4dffcebc 9503 case 3:
331d2d0d
L
9504 p = frag_more (3);
9505 *p++ = (i.tm.base_opcode >> 16) & 0xff;
4dffcebc
L
9506 break;
9507 case 2:
9508 p = frag_more (2);
9509 break;
9510 default:
9511 abort ();
9512 break;
331d2d0d 9513 }
0f10071e 9514
29b0f896
AM
9515 /* Put out high byte first: can't use md_number_to_chars! */
9516 *p++ = (i.tm.base_opcode >> 8) & 0xff;
9517 *p = i.tm.base_opcode & 0xff;
9518 }
3e73aa7c 9519
29b0f896 9520 /* Now the modrm byte and sib byte (if present). */
40fb9820 9521 if (i.tm.opcode_modifier.modrm)
29b0f896 9522 {
48ef937e
JB
9523 frag_opcode_byte ((i.rm.regmem << 0)
9524 | (i.rm.reg << 3)
9525 | (i.rm.mode << 6));
29b0f896
AM
9526 /* If i.rm.regmem == ESP (4)
9527 && i.rm.mode != (Register mode)
9528 && not 16 bit
9529 ==> need second modrm byte. */
9530 if (i.rm.regmem == ESCAPE_TO_TWO_BYTE_ADDRESSING
9531 && i.rm.mode != 3
dc821c5f 9532 && !(i.base_reg && i.base_reg->reg_type.bitfield.word))
48ef937e
JB
9533 frag_opcode_byte ((i.sib.base << 0)
9534 | (i.sib.index << 3)
9535 | (i.sib.scale << 6));
29b0f896 9536 }
3e73aa7c 9537
29b0f896 9538 if (i.disp_operands)
2bbd9c25 9539 output_disp (insn_start_frag, insn_start_off);
3e73aa7c 9540
29b0f896 9541 if (i.imm_operands)
2bbd9c25 9542 output_imm (insn_start_frag, insn_start_off);
9c33702b
JB
9543
9544 /*
9545 * frag_now_fix () returning plain abs_section_offset when we're in the
9546 * absolute section, and abs_section_offset not getting updated as data
9547 * gets added to the frag breaks the logic below.
9548 */
9549 if (now_seg != absolute_section)
9550 {
9551 j = encoding_length (insn_start_frag, insn_start_off, frag_more (0));
9552 if (j > 15)
9553 as_warn (_("instruction length of %u bytes exceeds the limit of 15"),
9554 j);
e379e5f3
L
9555 else if (fragP)
9556 {
9557 /* NB: Don't add prefix with GOTPC relocation since
9558 output_disp() above depends on the fixed encoding
9559 length. Can't add prefix with TLS relocation since
9560 it breaks TLS linker optimization. */
9561 unsigned int max = i.has_gotpc_tls_reloc ? 0 : 15 - j;
9562 /* Prefix count on the current instruction. */
9563 unsigned int count = i.vex.length;
9564 unsigned int k;
9565 for (k = 0; k < ARRAY_SIZE (i.prefix); k++)
9566 /* REX byte is encoded in VEX/EVEX prefix. */
9567 if (i.prefix[k] && (k != REX_PREFIX || !i.vex.length))
9568 count++;
9569
9570 /* Count prefixes for extended opcode maps. */
9571 if (!i.vex.length)
9572 switch (i.tm.opcode_length)
9573 {
9574 case 3:
9575 if (((i.tm.base_opcode >> 16) & 0xff) == 0xf)
9576 {
9577 count++;
9578 switch ((i.tm.base_opcode >> 8) & 0xff)
9579 {
9580 case 0x38:
9581 case 0x3a:
9582 count++;
9583 break;
9584 default:
9585 break;
9586 }
9587 }
9588 break;
9589 case 2:
9590 if (((i.tm.base_opcode >> 8) & 0xff) == 0xf)
9591 count++;
9592 break;
9593 case 1:
9594 break;
9595 default:
9596 abort ();
9597 }
9598
9599 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
9600 == BRANCH_PREFIX)
9601 {
9602 /* Set the maximum prefix size in BRANCH_PREFIX
9603 frag. */
9604 if (fragP->tc_frag_data.max_bytes > max)
9605 fragP->tc_frag_data.max_bytes = max;
9606 if (fragP->tc_frag_data.max_bytes > count)
9607 fragP->tc_frag_data.max_bytes -= count;
9608 else
9609 fragP->tc_frag_data.max_bytes = 0;
9610 }
9611 else
9612 {
9613 /* Remember the maximum prefix size in FUSED_JCC_PADDING
9614 frag. */
9615 unsigned int max_prefix_size;
9616 if (align_branch_prefix_size > max)
9617 max_prefix_size = max;
9618 else
9619 max_prefix_size = align_branch_prefix_size;
9620 if (max_prefix_size > count)
9621 fragP->tc_frag_data.max_prefix_length
9622 = max_prefix_size - count;
9623 }
9624
9625 /* Use existing segment prefix if possible. Use CS
9626 segment prefix in 64-bit mode. In 32-bit mode, use SS
9627 segment prefix with ESP/EBP base register and use DS
9628 segment prefix without ESP/EBP base register. */
9629 if (i.prefix[SEG_PREFIX])
9630 fragP->tc_frag_data.default_prefix = i.prefix[SEG_PREFIX];
9631 else if (flag_code == CODE_64BIT)
9632 fragP->tc_frag_data.default_prefix = CS_PREFIX_OPCODE;
9633 else if (i.base_reg
9634 && (i.base_reg->reg_num == 4
9635 || i.base_reg->reg_num == 5))
9636 fragP->tc_frag_data.default_prefix = SS_PREFIX_OPCODE;
9637 else
9638 fragP->tc_frag_data.default_prefix = DS_PREFIX_OPCODE;
9639 }
9c33702b 9640 }
29b0f896 9641 }
252b5132 9642
e379e5f3
L
9643 /* NB: Don't work with COND_JUMP86 without i386. */
9644 if (align_branch_power
9645 && now_seg != absolute_section
9646 && cpu_arch_flags.bitfield.cpui386)
9647 {
9648 /* Terminate each frag so that we can add prefix and check for
9649 fused jcc. */
9650 frag_wane (frag_now);
9651 frag_new (0);
9652 }
9653
29b0f896
AM
9654#ifdef DEBUG386
9655 if (flag_debug)
9656 {
7b81dfbb 9657 pi ("" /*line*/, &i);
29b0f896
AM
9658 }
9659#endif /* DEBUG386 */
9660}
252b5132 9661
e205caa7
L
9662/* Return the size of the displacement operand N. */
9663
9664static int
9665disp_size (unsigned int n)
9666{
9667 int size = 4;
43234a1e 9668
b5014f7a 9669 if (i.types[n].bitfield.disp64)
40fb9820
L
9670 size = 8;
9671 else if (i.types[n].bitfield.disp8)
9672 size = 1;
9673 else if (i.types[n].bitfield.disp16)
9674 size = 2;
e205caa7
L
9675 return size;
9676}
9677
9678/* Return the size of the immediate operand N. */
9679
9680static int
9681imm_size (unsigned int n)
9682{
9683 int size = 4;
40fb9820
L
9684 if (i.types[n].bitfield.imm64)
9685 size = 8;
9686 else if (i.types[n].bitfield.imm8 || i.types[n].bitfield.imm8s)
9687 size = 1;
9688 else if (i.types[n].bitfield.imm16)
9689 size = 2;
e205caa7
L
9690 return size;
9691}
9692
29b0f896 9693static void
64e74474 9694output_disp (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
9695{
9696 char *p;
9697 unsigned int n;
252b5132 9698
29b0f896
AM
9699 for (n = 0; n < i.operands; n++)
9700 {
b5014f7a 9701 if (operand_type_check (i.types[n], disp))
29b0f896 9702 {
48ef937e
JB
9703 int size = disp_size (n);
9704
9705 if (now_seg == absolute_section)
9706 abs_section_offset += size;
9707 else if (i.op[n].disps->X_op == O_constant)
29b0f896 9708 {
43234a1e 9709 offsetT val = i.op[n].disps->X_add_number;
252b5132 9710
629cfaf1
JB
9711 val = offset_in_range (val >> (size == 1 ? i.memshift : 0),
9712 size);
29b0f896
AM
9713 p = frag_more (size);
9714 md_number_to_chars (p, val, size);
9715 }
9716 else
9717 {
f86103b7 9718 enum bfd_reloc_code_real reloc_type;
40fb9820 9719 int sign = i.types[n].bitfield.disp32s;
29b0f896 9720 int pcrel = (i.flags[n] & Operand_PCrel) != 0;
02a86693 9721 fixS *fixP;
29b0f896 9722
e205caa7 9723 /* We can't have 8 bit displacement here. */
9c2799c2 9724 gas_assert (!i.types[n].bitfield.disp8);
e205caa7 9725
29b0f896
AM
9726 /* The PC relative address is computed relative
9727 to the instruction boundary, so in case immediate
9728 fields follows, we need to adjust the value. */
9729 if (pcrel && i.imm_operands)
9730 {
29b0f896 9731 unsigned int n1;
e205caa7 9732 int sz = 0;
252b5132 9733
29b0f896 9734 for (n1 = 0; n1 < i.operands; n1++)
40fb9820 9735 if (operand_type_check (i.types[n1], imm))
252b5132 9736 {
e205caa7
L
9737 /* Only one immediate is allowed for PC
9738 relative address. */
9c2799c2 9739 gas_assert (sz == 0);
e205caa7
L
9740 sz = imm_size (n1);
9741 i.op[n].disps->X_add_number -= sz;
252b5132 9742 }
29b0f896 9743 /* We should find the immediate. */
9c2799c2 9744 gas_assert (sz != 0);
29b0f896 9745 }
520dc8e8 9746
29b0f896 9747 p = frag_more (size);
d258b828 9748 reloc_type = reloc (size, pcrel, sign, i.reloc[n]);
d6ab8113 9749 if (GOT_symbol
2bbd9c25 9750 && GOT_symbol == i.op[n].disps->X_add_symbol
d6ab8113 9751 && (((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
9752 || reloc_type == BFD_RELOC_X86_64_32S
9753 || (reloc_type == BFD_RELOC_64
9754 && object_64bit))
d6ab8113
JB
9755 && (i.op[n].disps->X_op == O_symbol
9756 || (i.op[n].disps->X_op == O_add
9757 && ((symbol_get_value_expression
9758 (i.op[n].disps->X_op_symbol)->X_op)
9759 == O_subtract))))
9760 || reloc_type == BFD_RELOC_32_PCREL))
2bbd9c25 9761 {
4fa24527 9762 if (!object_64bit)
7b81dfbb
AJ
9763 {
9764 reloc_type = BFD_RELOC_386_GOTPC;
e379e5f3 9765 i.has_gotpc_tls_reloc = TRUE;
d583596c
JB
9766 i.op[n].imms->X_add_number +=
9767 encoding_length (insn_start_frag, insn_start_off, p);
7b81dfbb
AJ
9768 }
9769 else if (reloc_type == BFD_RELOC_64)
9770 reloc_type = BFD_RELOC_X86_64_GOTPC64;
d6ab8113 9771 else
7b81dfbb
AJ
9772 /* Don't do the adjustment for x86-64, as there
9773 the pcrel addressing is relative to the _next_
9774 insn, and that is taken care of in other code. */
d6ab8113 9775 reloc_type = BFD_RELOC_X86_64_GOTPC32;
2bbd9c25 9776 }
e379e5f3
L
9777 else if (align_branch_power)
9778 {
9779 switch (reloc_type)
9780 {
9781 case BFD_RELOC_386_TLS_GD:
9782 case BFD_RELOC_386_TLS_LDM:
9783 case BFD_RELOC_386_TLS_IE:
9784 case BFD_RELOC_386_TLS_IE_32:
9785 case BFD_RELOC_386_TLS_GOTIE:
9786 case BFD_RELOC_386_TLS_GOTDESC:
9787 case BFD_RELOC_386_TLS_DESC_CALL:
9788 case BFD_RELOC_X86_64_TLSGD:
9789 case BFD_RELOC_X86_64_TLSLD:
9790 case BFD_RELOC_X86_64_GOTTPOFF:
9791 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
9792 case BFD_RELOC_X86_64_TLSDESC_CALL:
9793 i.has_gotpc_tls_reloc = TRUE;
9794 default:
9795 break;
9796 }
9797 }
02a86693
L
9798 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal,
9799 size, i.op[n].disps, pcrel,
9800 reloc_type);
9801 /* Check for "call/jmp *mem", "mov mem, %reg",
9802 "test %reg, mem" and "binop mem, %reg" where binop
9803 is one of adc, add, and, cmp, or, sbb, sub, xor
e60f4d3b
L
9804 instructions without data prefix. Always generate
9805 R_386_GOT32X for "sym*GOT" operand in 32-bit mode. */
9806 if (i.prefix[DATA_PREFIX] == 0
9807 && (generate_relax_relocations
9808 || (!object_64bit
9809 && i.rm.mode == 0
9810 && i.rm.regmem == 5))
0cb4071e
L
9811 && (i.rm.mode == 2
9812 || (i.rm.mode == 0 && i.rm.regmem == 5))
2ae4c703 9813 && !is_any_vex_encoding(&i.tm)
02a86693
L
9814 && ((i.operands == 1
9815 && i.tm.base_opcode == 0xff
9816 && (i.rm.reg == 2 || i.rm.reg == 4))
9817 || (i.operands == 2
9818 && (i.tm.base_opcode == 0x8b
9819 || i.tm.base_opcode == 0x85
2ae4c703 9820 || (i.tm.base_opcode & ~0x38) == 0x03))))
02a86693
L
9821 {
9822 if (object_64bit)
9823 {
9824 fixP->fx_tcbit = i.rex != 0;
9825 if (i.base_reg
e968fc9b 9826 && (i.base_reg->reg_num == RegIP))
02a86693
L
9827 fixP->fx_tcbit2 = 1;
9828 }
9829 else
9830 fixP->fx_tcbit2 = 1;
9831 }
29b0f896
AM
9832 }
9833 }
9834 }
9835}
252b5132 9836
29b0f896 9837static void
64e74474 9838output_imm (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
9839{
9840 char *p;
9841 unsigned int n;
252b5132 9842
29b0f896
AM
9843 for (n = 0; n < i.operands; n++)
9844 {
43234a1e
L
9845 /* Skip SAE/RC Imm operand in EVEX. They are already handled. */
9846 if (i.rounding && (int) n == i.rounding->operand)
9847 continue;
9848
40fb9820 9849 if (operand_type_check (i.types[n], imm))
29b0f896 9850 {
48ef937e
JB
9851 int size = imm_size (n);
9852
9853 if (now_seg == absolute_section)
9854 abs_section_offset += size;
9855 else if (i.op[n].imms->X_op == O_constant)
29b0f896 9856 {
29b0f896 9857 offsetT val;
b4cac588 9858
29b0f896
AM
9859 val = offset_in_range (i.op[n].imms->X_add_number,
9860 size);
9861 p = frag_more (size);
9862 md_number_to_chars (p, val, size);
9863 }
9864 else
9865 {
9866 /* Not absolute_section.
9867 Need a 32-bit fixup (don't support 8bit
9868 non-absolute imms). Try to support other
9869 sizes ... */
f86103b7 9870 enum bfd_reloc_code_real reloc_type;
e205caa7 9871 int sign;
29b0f896 9872
40fb9820 9873 if (i.types[n].bitfield.imm32s
a7d61044 9874 && (i.suffix == QWORD_MNEM_SUFFIX
40fb9820 9875 || (!i.suffix && i.tm.opcode_modifier.no_lsuf)))
29b0f896 9876 sign = 1;
e205caa7
L
9877 else
9878 sign = 0;
520dc8e8 9879
29b0f896 9880 p = frag_more (size);
d258b828 9881 reloc_type = reloc (size, 0, sign, i.reloc[n]);
f86103b7 9882
2bbd9c25
JJ
9883 /* This is tough to explain. We end up with this one if we
9884 * have operands that look like
9885 * "_GLOBAL_OFFSET_TABLE_+[.-.L284]". The goal here is to
9886 * obtain the absolute address of the GOT, and it is strongly
9887 * preferable from a performance point of view to avoid using
9888 * a runtime relocation for this. The actual sequence of
9889 * instructions often look something like:
9890 *
9891 * call .L66
9892 * .L66:
9893 * popl %ebx
9894 * addl $_GLOBAL_OFFSET_TABLE_+[.-.L66],%ebx
9895 *
9896 * The call and pop essentially return the absolute address
9897 * of the label .L66 and store it in %ebx. The linker itself
9898 * will ultimately change the first operand of the addl so
9899 * that %ebx points to the GOT, but to keep things simple, the
9900 * .o file must have this operand set so that it generates not
9901 * the absolute address of .L66, but the absolute address of
9902 * itself. This allows the linker itself simply treat a GOTPC
9903 * relocation as asking for a pcrel offset to the GOT to be
9904 * added in, and the addend of the relocation is stored in the
9905 * operand field for the instruction itself.
9906 *
9907 * Our job here is to fix the operand so that it would add
9908 * the correct offset so that %ebx would point to itself. The
9909 * thing that is tricky is that .-.L66 will point to the
9910 * beginning of the instruction, so we need to further modify
9911 * the operand so that it will point to itself. There are
9912 * other cases where you have something like:
9913 *
9914 * .long $_GLOBAL_OFFSET_TABLE_+[.-.L66]
9915 *
9916 * and here no correction would be required. Internally in
9917 * the assembler we treat operands of this form as not being
9918 * pcrel since the '.' is explicitly mentioned, and I wonder
9919 * whether it would simplify matters to do it this way. Who
9920 * knows. In earlier versions of the PIC patches, the
9921 * pcrel_adjust field was used to store the correction, but
9922 * since the expression is not pcrel, I felt it would be
9923 * confusing to do it this way. */
9924
d6ab8113 9925 if ((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
9926 || reloc_type == BFD_RELOC_X86_64_32S
9927 || reloc_type == BFD_RELOC_64)
29b0f896
AM
9928 && GOT_symbol
9929 && GOT_symbol == i.op[n].imms->X_add_symbol
9930 && (i.op[n].imms->X_op == O_symbol
9931 || (i.op[n].imms->X_op == O_add
9932 && ((symbol_get_value_expression
9933 (i.op[n].imms->X_op_symbol)->X_op)
9934 == O_subtract))))
9935 {
4fa24527 9936 if (!object_64bit)
d6ab8113 9937 reloc_type = BFD_RELOC_386_GOTPC;
7b81dfbb 9938 else if (size == 4)
d6ab8113 9939 reloc_type = BFD_RELOC_X86_64_GOTPC32;
7b81dfbb
AJ
9940 else if (size == 8)
9941 reloc_type = BFD_RELOC_X86_64_GOTPC64;
e379e5f3 9942 i.has_gotpc_tls_reloc = TRUE;
d583596c
JB
9943 i.op[n].imms->X_add_number +=
9944 encoding_length (insn_start_frag, insn_start_off, p);
29b0f896 9945 }
29b0f896
AM
9946 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
9947 i.op[n].imms, 0, reloc_type);
9948 }
9949 }
9950 }
252b5132
RH
9951}
9952\f
d182319b
JB
9953/* x86_cons_fix_new is called via the expression parsing code when a
9954 reloc is needed. We use this hook to get the correct .got reloc. */
d182319b
JB
9955static int cons_sign = -1;
9956
9957void
e3bb37b5 9958x86_cons_fix_new (fragS *frag, unsigned int off, unsigned int len,
62ebcb5c 9959 expressionS *exp, bfd_reloc_code_real_type r)
d182319b 9960{
d258b828 9961 r = reloc (len, 0, cons_sign, r);
d182319b
JB
9962
9963#ifdef TE_PE
9964 if (exp->X_op == O_secrel)
9965 {
9966 exp->X_op = O_symbol;
9967 r = BFD_RELOC_32_SECREL;
9968 }
9969#endif
9970
9971 fix_new_exp (frag, off, len, exp, 0, r);
9972}
9973
357d1bd8
L
9974/* Export the ABI address size for use by TC_ADDRESS_BYTES for the
9975 purpose of the `.dc.a' internal pseudo-op. */
9976
9977int
9978x86_address_bytes (void)
9979{
9980 if ((stdoutput->arch_info->mach & bfd_mach_x64_32))
9981 return 4;
9982 return stdoutput->arch_info->bits_per_address / 8;
9983}
9984
d382c579
TG
9985#if !(defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined (OBJ_MACH_O)) \
9986 || defined (LEX_AT)
d258b828 9987# define lex_got(reloc, adjust, types) NULL
718ddfc0 9988#else
f3c180ae
AM
9989/* Parse operands of the form
9990 <symbol>@GOTOFF+<nnn>
9991 and similar .plt or .got references.
9992
9993 If we find one, set up the correct relocation in RELOC and copy the
9994 input string, minus the `@GOTOFF' into a malloc'd buffer for
9995 parsing by the calling routine. Return this buffer, and if ADJUST
9996 is non-null set it to the length of the string we removed from the
9997 input line. Otherwise return NULL. */
9998static char *
91d6fa6a 9999lex_got (enum bfd_reloc_code_real *rel,
64e74474 10000 int *adjust,
d258b828 10001 i386_operand_type *types)
f3c180ae 10002{
7b81dfbb
AJ
10003 /* Some of the relocations depend on the size of what field is to
10004 be relocated. But in our callers i386_immediate and i386_displacement
10005 we don't yet know the operand size (this will be set by insn
10006 matching). Hence we record the word32 relocation here,
10007 and adjust the reloc according to the real size in reloc(). */
f3c180ae
AM
10008 static const struct {
10009 const char *str;
cff8d58a 10010 int len;
4fa24527 10011 const enum bfd_reloc_code_real rel[2];
40fb9820 10012 const i386_operand_type types64;
844bf810 10013 bfd_boolean need_GOT_symbol;
f3c180ae 10014 } gotrel[] = {
8ce3d284 10015#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
10016 { STRING_COMMA_LEN ("SIZE"), { BFD_RELOC_SIZE32,
10017 BFD_RELOC_SIZE32 },
844bf810 10018 OPERAND_TYPE_IMM32_64, FALSE },
8ce3d284 10019#endif
cff8d58a
L
10020 { STRING_COMMA_LEN ("PLTOFF"), { _dummy_first_bfd_reloc_code_real,
10021 BFD_RELOC_X86_64_PLTOFF64 },
844bf810 10022 OPERAND_TYPE_IMM64, TRUE },
cff8d58a
L
10023 { STRING_COMMA_LEN ("PLT"), { BFD_RELOC_386_PLT32,
10024 BFD_RELOC_X86_64_PLT32 },
844bf810 10025 OPERAND_TYPE_IMM32_32S_DISP32, FALSE },
cff8d58a
L
10026 { STRING_COMMA_LEN ("GOTPLT"), { _dummy_first_bfd_reloc_code_real,
10027 BFD_RELOC_X86_64_GOTPLT64 },
844bf810 10028 OPERAND_TYPE_IMM64_DISP64, TRUE },
cff8d58a
L
10029 { STRING_COMMA_LEN ("GOTOFF"), { BFD_RELOC_386_GOTOFF,
10030 BFD_RELOC_X86_64_GOTOFF64 },
844bf810 10031 OPERAND_TYPE_IMM64_DISP64, TRUE },
cff8d58a
L
10032 { STRING_COMMA_LEN ("GOTPCREL"), { _dummy_first_bfd_reloc_code_real,
10033 BFD_RELOC_X86_64_GOTPCREL },
844bf810 10034 OPERAND_TYPE_IMM32_32S_DISP32, TRUE },
cff8d58a
L
10035 { STRING_COMMA_LEN ("TLSGD"), { BFD_RELOC_386_TLS_GD,
10036 BFD_RELOC_X86_64_TLSGD },
844bf810 10037 OPERAND_TYPE_IMM32_32S_DISP32, TRUE },
cff8d58a
L
10038 { STRING_COMMA_LEN ("TLSLDM"), { BFD_RELOC_386_TLS_LDM,
10039 _dummy_first_bfd_reloc_code_real },
844bf810 10040 OPERAND_TYPE_NONE, TRUE },
cff8d58a
L
10041 { STRING_COMMA_LEN ("TLSLD"), { _dummy_first_bfd_reloc_code_real,
10042 BFD_RELOC_X86_64_TLSLD },
844bf810 10043 OPERAND_TYPE_IMM32_32S_DISP32, TRUE },
cff8d58a
L
10044 { STRING_COMMA_LEN ("GOTTPOFF"), { BFD_RELOC_386_TLS_IE_32,
10045 BFD_RELOC_X86_64_GOTTPOFF },
844bf810 10046 OPERAND_TYPE_IMM32_32S_DISP32, TRUE },
cff8d58a
L
10047 { STRING_COMMA_LEN ("TPOFF"), { BFD_RELOC_386_TLS_LE_32,
10048 BFD_RELOC_X86_64_TPOFF32 },
844bf810 10049 OPERAND_TYPE_IMM32_32S_64_DISP32_64, TRUE },
cff8d58a
L
10050 { STRING_COMMA_LEN ("NTPOFF"), { BFD_RELOC_386_TLS_LE,
10051 _dummy_first_bfd_reloc_code_real },
844bf810 10052 OPERAND_TYPE_NONE, TRUE },
cff8d58a
L
10053 { STRING_COMMA_LEN ("DTPOFF"), { BFD_RELOC_386_TLS_LDO_32,
10054 BFD_RELOC_X86_64_DTPOFF32 },
844bf810 10055 OPERAND_TYPE_IMM32_32S_64_DISP32_64, TRUE },
cff8d58a
L
10056 { STRING_COMMA_LEN ("GOTNTPOFF"),{ BFD_RELOC_386_TLS_GOTIE,
10057 _dummy_first_bfd_reloc_code_real },
844bf810 10058 OPERAND_TYPE_NONE, TRUE },
cff8d58a
L
10059 { STRING_COMMA_LEN ("INDNTPOFF"),{ BFD_RELOC_386_TLS_IE,
10060 _dummy_first_bfd_reloc_code_real },
844bf810 10061 OPERAND_TYPE_NONE, TRUE },
cff8d58a
L
10062 { STRING_COMMA_LEN ("GOT"), { BFD_RELOC_386_GOT32,
10063 BFD_RELOC_X86_64_GOT32 },
844bf810 10064 OPERAND_TYPE_IMM32_32S_64_DISP32, TRUE },
cff8d58a
L
10065 { STRING_COMMA_LEN ("TLSDESC"), { BFD_RELOC_386_TLS_GOTDESC,
10066 BFD_RELOC_X86_64_GOTPC32_TLSDESC },
844bf810 10067 OPERAND_TYPE_IMM32_32S_DISP32, TRUE },
cff8d58a
L
10068 { STRING_COMMA_LEN ("TLSCALL"), { BFD_RELOC_386_TLS_DESC_CALL,
10069 BFD_RELOC_X86_64_TLSDESC_CALL },
844bf810 10070 OPERAND_TYPE_IMM32_32S_DISP32, TRUE },
f3c180ae
AM
10071 };
10072 char *cp;
10073 unsigned int j;
10074
d382c579 10075#if defined (OBJ_MAYBE_ELF)
718ddfc0
JB
10076 if (!IS_ELF)
10077 return NULL;
d382c579 10078#endif
718ddfc0 10079
f3c180ae 10080 for (cp = input_line_pointer; *cp != '@'; cp++)
67c11a9b 10081 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
f3c180ae
AM
10082 return NULL;
10083
47465058 10084 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
f3c180ae 10085 {
cff8d58a 10086 int len = gotrel[j].len;
28f81592 10087 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
f3c180ae 10088 {
4fa24527 10089 if (gotrel[j].rel[object_64bit] != 0)
f3c180ae 10090 {
28f81592
AM
10091 int first, second;
10092 char *tmpbuf, *past_reloc;
f3c180ae 10093
91d6fa6a 10094 *rel = gotrel[j].rel[object_64bit];
f3c180ae 10095
3956db08
JB
10096 if (types)
10097 {
10098 if (flag_code != CODE_64BIT)
40fb9820
L
10099 {
10100 types->bitfield.imm32 = 1;
10101 types->bitfield.disp32 = 1;
10102 }
3956db08
JB
10103 else
10104 *types = gotrel[j].types64;
10105 }
10106
844bf810 10107 if (gotrel[j].need_GOT_symbol && GOT_symbol == NULL)
f3c180ae
AM
10108 GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
10109
28f81592 10110 /* The length of the first part of our input line. */
f3c180ae 10111 first = cp - input_line_pointer;
28f81592
AM
10112
10113 /* The second part goes from after the reloc token until
67c11a9b 10114 (and including) an end_of_line char or comma. */
28f81592 10115 past_reloc = cp + 1 + len;
67c11a9b
AM
10116 cp = past_reloc;
10117 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
10118 ++cp;
10119 second = cp + 1 - past_reloc;
28f81592
AM
10120
10121 /* Allocate and copy string. The trailing NUL shouldn't
10122 be necessary, but be safe. */
add39d23 10123 tmpbuf = XNEWVEC (char, first + second + 2);
f3c180ae 10124 memcpy (tmpbuf, input_line_pointer, first);
0787a12d
AM
10125 if (second != 0 && *past_reloc != ' ')
10126 /* Replace the relocation token with ' ', so that
10127 errors like foo@GOTOFF1 will be detected. */
10128 tmpbuf[first++] = ' ';
af89796a
L
10129 else
10130 /* Increment length by 1 if the relocation token is
10131 removed. */
10132 len++;
10133 if (adjust)
10134 *adjust = len;
0787a12d
AM
10135 memcpy (tmpbuf + first, past_reloc, second);
10136 tmpbuf[first + second] = '\0';
f3c180ae
AM
10137 return tmpbuf;
10138 }
10139
4fa24527
JB
10140 as_bad (_("@%s reloc is not supported with %d-bit output format"),
10141 gotrel[j].str, 1 << (5 + object_64bit));
f3c180ae
AM
10142 return NULL;
10143 }
10144 }
10145
10146 /* Might be a symbol version string. Don't as_bad here. */
10147 return NULL;
10148}
4e4f7c87 10149#endif
f3c180ae 10150
a988325c
NC
10151#ifdef TE_PE
10152#ifdef lex_got
10153#undef lex_got
10154#endif
10155/* Parse operands of the form
10156 <symbol>@SECREL32+<nnn>
10157
10158 If we find one, set up the correct relocation in RELOC and copy the
10159 input string, minus the `@SECREL32' into a malloc'd buffer for
10160 parsing by the calling routine. Return this buffer, and if ADJUST
10161 is non-null set it to the length of the string we removed from the
34bca508
L
10162 input line. Otherwise return NULL.
10163
a988325c
NC
10164 This function is copied from the ELF version above adjusted for PE targets. */
10165
10166static char *
10167lex_got (enum bfd_reloc_code_real *rel ATTRIBUTE_UNUSED,
10168 int *adjust ATTRIBUTE_UNUSED,
d258b828 10169 i386_operand_type *types)
a988325c
NC
10170{
10171 static const struct
10172 {
10173 const char *str;
10174 int len;
10175 const enum bfd_reloc_code_real rel[2];
10176 const i386_operand_type types64;
10177 }
10178 gotrel[] =
10179 {
10180 { STRING_COMMA_LEN ("SECREL32"), { BFD_RELOC_32_SECREL,
10181 BFD_RELOC_32_SECREL },
10182 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
10183 };
10184
10185 char *cp;
10186 unsigned j;
10187
10188 for (cp = input_line_pointer; *cp != '@'; cp++)
10189 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
10190 return NULL;
10191
10192 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
10193 {
10194 int len = gotrel[j].len;
10195
10196 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
10197 {
10198 if (gotrel[j].rel[object_64bit] != 0)
10199 {
10200 int first, second;
10201 char *tmpbuf, *past_reloc;
10202
10203 *rel = gotrel[j].rel[object_64bit];
10204 if (adjust)
10205 *adjust = len;
10206
10207 if (types)
10208 {
10209 if (flag_code != CODE_64BIT)
10210 {
10211 types->bitfield.imm32 = 1;
10212 types->bitfield.disp32 = 1;
10213 }
10214 else
10215 *types = gotrel[j].types64;
10216 }
10217
10218 /* The length of the first part of our input line. */
10219 first = cp - input_line_pointer;
10220
10221 /* The second part goes from after the reloc token until
10222 (and including) an end_of_line char or comma. */
10223 past_reloc = cp + 1 + len;
10224 cp = past_reloc;
10225 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
10226 ++cp;
10227 second = cp + 1 - past_reloc;
10228
10229 /* Allocate and copy string. The trailing NUL shouldn't
10230 be necessary, but be safe. */
add39d23 10231 tmpbuf = XNEWVEC (char, first + second + 2);
a988325c
NC
10232 memcpy (tmpbuf, input_line_pointer, first);
10233 if (second != 0 && *past_reloc != ' ')
10234 /* Replace the relocation token with ' ', so that
10235 errors like foo@SECLREL321 will be detected. */
10236 tmpbuf[first++] = ' ';
10237 memcpy (tmpbuf + first, past_reloc, second);
10238 tmpbuf[first + second] = '\0';
10239 return tmpbuf;
10240 }
10241
10242 as_bad (_("@%s reloc is not supported with %d-bit output format"),
10243 gotrel[j].str, 1 << (5 + object_64bit));
10244 return NULL;
10245 }
10246 }
10247
10248 /* Might be a symbol version string. Don't as_bad here. */
10249 return NULL;
10250}
10251
10252#endif /* TE_PE */
10253
62ebcb5c 10254bfd_reloc_code_real_type
e3bb37b5 10255x86_cons (expressionS *exp, int size)
f3c180ae 10256{
62ebcb5c
AM
10257 bfd_reloc_code_real_type got_reloc = NO_RELOC;
10258
ee86248c
JB
10259 intel_syntax = -intel_syntax;
10260
3c7b9c2c 10261 exp->X_md = 0;
4fa24527 10262 if (size == 4 || (object_64bit && size == 8))
f3c180ae
AM
10263 {
10264 /* Handle @GOTOFF and the like in an expression. */
10265 char *save;
10266 char *gotfree_input_line;
4a57f2cf 10267 int adjust = 0;
f3c180ae
AM
10268
10269 save = input_line_pointer;
d258b828 10270 gotfree_input_line = lex_got (&got_reloc, &adjust, NULL);
f3c180ae
AM
10271 if (gotfree_input_line)
10272 input_line_pointer = gotfree_input_line;
10273
10274 expression (exp);
10275
10276 if (gotfree_input_line)
10277 {
10278 /* expression () has merrily parsed up to the end of line,
10279 or a comma - in the wrong buffer. Transfer how far
10280 input_line_pointer has moved to the right buffer. */
10281 input_line_pointer = (save
10282 + (input_line_pointer - gotfree_input_line)
10283 + adjust);
10284 free (gotfree_input_line);
3992d3b7
AM
10285 if (exp->X_op == O_constant
10286 || exp->X_op == O_absent
10287 || exp->X_op == O_illegal
0398aac5 10288 || exp->X_op == O_register
3992d3b7
AM
10289 || exp->X_op == O_big)
10290 {
10291 char c = *input_line_pointer;
10292 *input_line_pointer = 0;
10293 as_bad (_("missing or invalid expression `%s'"), save);
10294 *input_line_pointer = c;
10295 }
b9519cfe
L
10296 else if ((got_reloc == BFD_RELOC_386_PLT32
10297 || got_reloc == BFD_RELOC_X86_64_PLT32)
10298 && exp->X_op != O_symbol)
10299 {
10300 char c = *input_line_pointer;
10301 *input_line_pointer = 0;
10302 as_bad (_("invalid PLT expression `%s'"), save);
10303 *input_line_pointer = c;
10304 }
f3c180ae
AM
10305 }
10306 }
10307 else
10308 expression (exp);
ee86248c
JB
10309
10310 intel_syntax = -intel_syntax;
10311
10312 if (intel_syntax)
10313 i386_intel_simplify (exp);
62ebcb5c
AM
10314
10315 return got_reloc;
f3c180ae 10316}
f3c180ae 10317
9f32dd5b
L
10318static void
10319signed_cons (int size)
6482c264 10320{
d182319b
JB
10321 if (flag_code == CODE_64BIT)
10322 cons_sign = 1;
10323 cons (size);
10324 cons_sign = -1;
6482c264
NC
10325}
10326
d182319b 10327#ifdef TE_PE
6482c264 10328static void
7016a5d5 10329pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
6482c264
NC
10330{
10331 expressionS exp;
10332
10333 do
10334 {
10335 expression (&exp);
10336 if (exp.X_op == O_symbol)
10337 exp.X_op = O_secrel;
10338
10339 emit_expr (&exp, 4);
10340 }
10341 while (*input_line_pointer++ == ',');
10342
10343 input_line_pointer--;
10344 demand_empty_rest_of_line ();
10345}
6482c264
NC
10346#endif
10347
43234a1e
L
10348/* Handle Vector operations. */
10349
10350static char *
10351check_VecOperations (char *op_string, char *op_end)
10352{
10353 const reg_entry *mask;
10354 const char *saved;
10355 char *end_op;
10356
10357 while (*op_string
10358 && (op_end == NULL || op_string < op_end))
10359 {
10360 saved = op_string;
10361 if (*op_string == '{')
10362 {
10363 op_string++;
10364
10365 /* Check broadcasts. */
10366 if (strncmp (op_string, "1to", 3) == 0)
10367 {
10368 int bcst_type;
10369
10370 if (i.broadcast)
10371 goto duplicated_vec_op;
10372
10373 op_string += 3;
10374 if (*op_string == '8')
8e6e0792 10375 bcst_type = 8;
b28d1bda 10376 else if (*op_string == '4')
8e6e0792 10377 bcst_type = 4;
b28d1bda 10378 else if (*op_string == '2')
8e6e0792 10379 bcst_type = 2;
43234a1e
L
10380 else if (*op_string == '1'
10381 && *(op_string+1) == '6')
10382 {
8e6e0792 10383 bcst_type = 16;
43234a1e
L
10384 op_string++;
10385 }
10386 else
10387 {
10388 as_bad (_("Unsupported broadcast: `%s'"), saved);
10389 return NULL;
10390 }
10391 op_string++;
10392
10393 broadcast_op.type = bcst_type;
10394 broadcast_op.operand = this_operand;
1f75763a 10395 broadcast_op.bytes = 0;
43234a1e
L
10396 i.broadcast = &broadcast_op;
10397 }
10398 /* Check masking operation. */
10399 else if ((mask = parse_register (op_string, &end_op)) != NULL)
10400 {
8a6fb3f9
JB
10401 if (mask == &bad_reg)
10402 return NULL;
10403
43234a1e 10404 /* k0 can't be used for write mask. */
f74a6307 10405 if (mask->reg_type.bitfield.class != RegMask || !mask->reg_num)
43234a1e 10406 {
6d2cd6b2
JB
10407 as_bad (_("`%s%s' can't be used for write mask"),
10408 register_prefix, mask->reg_name);
43234a1e
L
10409 return NULL;
10410 }
10411
10412 if (!i.mask)
10413 {
10414 mask_op.mask = mask;
10415 mask_op.zeroing = 0;
10416 mask_op.operand = this_operand;
10417 i.mask = &mask_op;
10418 }
10419 else
10420 {
10421 if (i.mask->mask)
10422 goto duplicated_vec_op;
10423
10424 i.mask->mask = mask;
10425
10426 /* Only "{z}" is allowed here. No need to check
10427 zeroing mask explicitly. */
10428 if (i.mask->operand != this_operand)
10429 {
10430 as_bad (_("invalid write mask `%s'"), saved);
10431 return NULL;
10432 }
10433 }
10434
10435 op_string = end_op;
10436 }
10437 /* Check zeroing-flag for masking operation. */
10438 else if (*op_string == 'z')
10439 {
10440 if (!i.mask)
10441 {
10442 mask_op.mask = NULL;
10443 mask_op.zeroing = 1;
10444 mask_op.operand = this_operand;
10445 i.mask = &mask_op;
10446 }
10447 else
10448 {
10449 if (i.mask->zeroing)
10450 {
10451 duplicated_vec_op:
10452 as_bad (_("duplicated `%s'"), saved);
10453 return NULL;
10454 }
10455
10456 i.mask->zeroing = 1;
10457
10458 /* Only "{%k}" is allowed here. No need to check mask
10459 register explicitly. */
10460 if (i.mask->operand != this_operand)
10461 {
10462 as_bad (_("invalid zeroing-masking `%s'"),
10463 saved);
10464 return NULL;
10465 }
10466 }
10467
10468 op_string++;
10469 }
10470 else
10471 goto unknown_vec_op;
10472
10473 if (*op_string != '}')
10474 {
10475 as_bad (_("missing `}' in `%s'"), saved);
10476 return NULL;
10477 }
10478 op_string++;
0ba3a731
L
10479
10480 /* Strip whitespace since the addition of pseudo prefixes
10481 changed how the scrubber treats '{'. */
10482 if (is_space_char (*op_string))
10483 ++op_string;
10484
43234a1e
L
10485 continue;
10486 }
10487 unknown_vec_op:
10488 /* We don't know this one. */
10489 as_bad (_("unknown vector operation: `%s'"), saved);
10490 return NULL;
10491 }
10492
6d2cd6b2
JB
10493 if (i.mask && i.mask->zeroing && !i.mask->mask)
10494 {
10495 as_bad (_("zeroing-masking only allowed with write mask"));
10496 return NULL;
10497 }
10498
43234a1e
L
10499 return op_string;
10500}
10501
252b5132 10502static int
70e41ade 10503i386_immediate (char *imm_start)
252b5132
RH
10504{
10505 char *save_input_line_pointer;
f3c180ae 10506 char *gotfree_input_line;
252b5132 10507 segT exp_seg = 0;
47926f60 10508 expressionS *exp;
40fb9820
L
10509 i386_operand_type types;
10510
0dfbf9d7 10511 operand_type_set (&types, ~0);
252b5132
RH
10512
10513 if (i.imm_operands == MAX_IMMEDIATE_OPERANDS)
10514 {
31b2323c
L
10515 as_bad (_("at most %d immediate operands are allowed"),
10516 MAX_IMMEDIATE_OPERANDS);
252b5132
RH
10517 return 0;
10518 }
10519
10520 exp = &im_expressions[i.imm_operands++];
520dc8e8 10521 i.op[this_operand].imms = exp;
252b5132
RH
10522
10523 if (is_space_char (*imm_start))
10524 ++imm_start;
10525
10526 save_input_line_pointer = input_line_pointer;
10527 input_line_pointer = imm_start;
10528
d258b828 10529 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
10530 if (gotfree_input_line)
10531 input_line_pointer = gotfree_input_line;
252b5132
RH
10532
10533 exp_seg = expression (exp);
10534
83183c0c 10535 SKIP_WHITESPACE ();
43234a1e
L
10536
10537 /* Handle vector operations. */
10538 if (*input_line_pointer == '{')
10539 {
10540 input_line_pointer = check_VecOperations (input_line_pointer,
10541 NULL);
10542 if (input_line_pointer == NULL)
10543 return 0;
10544 }
10545
252b5132 10546 if (*input_line_pointer)
f3c180ae 10547 as_bad (_("junk `%s' after expression"), input_line_pointer);
252b5132
RH
10548
10549 input_line_pointer = save_input_line_pointer;
f3c180ae 10550 if (gotfree_input_line)
ee86248c
JB
10551 {
10552 free (gotfree_input_line);
10553
10554 if (exp->X_op == O_constant || exp->X_op == O_register)
10555 exp->X_op = O_illegal;
10556 }
10557
10558 return i386_finalize_immediate (exp_seg, exp, types, imm_start);
10559}
252b5132 10560
ee86248c
JB
10561static int
10562i386_finalize_immediate (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
10563 i386_operand_type types, const char *imm_start)
10564{
10565 if (exp->X_op == O_absent || exp->X_op == O_illegal || exp->X_op == O_big)
252b5132 10566 {
313c53d1
L
10567 if (imm_start)
10568 as_bad (_("missing or invalid immediate expression `%s'"),
10569 imm_start);
3992d3b7 10570 return 0;
252b5132 10571 }
3e73aa7c 10572 else if (exp->X_op == O_constant)
252b5132 10573 {
47926f60 10574 /* Size it properly later. */
40fb9820 10575 i.types[this_operand].bitfield.imm64 = 1;
13f864ae
L
10576 /* If not 64bit, sign extend val. */
10577 if (flag_code != CODE_64BIT
4eed87de
AM
10578 && (exp->X_add_number & ~(((addressT) 2 << 31) - 1)) == 0)
10579 exp->X_add_number
10580 = (exp->X_add_number ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
252b5132 10581 }
4c63da97 10582#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
f86103b7 10583 else if (OUTPUT_FLAVOR == bfd_target_aout_flavour
31312f95 10584 && exp_seg != absolute_section
47926f60 10585 && exp_seg != text_section
24eab124
AM
10586 && exp_seg != data_section
10587 && exp_seg != bss_section
10588 && exp_seg != undefined_section
f86103b7 10589 && !bfd_is_com_section (exp_seg))
252b5132 10590 {
d0b47220 10591 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
252b5132
RH
10592 return 0;
10593 }
10594#endif
a841bdf5 10595 else if (!intel_syntax && exp_seg == reg_section)
bb8f5920 10596 {
313c53d1
L
10597 if (imm_start)
10598 as_bad (_("illegal immediate register operand %s"), imm_start);
bb8f5920
L
10599 return 0;
10600 }
252b5132
RH
10601 else
10602 {
10603 /* This is an address. The size of the address will be
24eab124 10604 determined later, depending on destination register,
3e73aa7c 10605 suffix, or the default for the section. */
40fb9820
L
10606 i.types[this_operand].bitfield.imm8 = 1;
10607 i.types[this_operand].bitfield.imm16 = 1;
10608 i.types[this_operand].bitfield.imm32 = 1;
10609 i.types[this_operand].bitfield.imm32s = 1;
10610 i.types[this_operand].bitfield.imm64 = 1;
c6fb90c8
L
10611 i.types[this_operand] = operand_type_and (i.types[this_operand],
10612 types);
252b5132
RH
10613 }
10614
10615 return 1;
10616}
10617
551c1ca1 10618static char *
e3bb37b5 10619i386_scale (char *scale)
252b5132 10620{
551c1ca1
AM
10621 offsetT val;
10622 char *save = input_line_pointer;
252b5132 10623
551c1ca1
AM
10624 input_line_pointer = scale;
10625 val = get_absolute_expression ();
10626
10627 switch (val)
252b5132 10628 {
551c1ca1 10629 case 1:
252b5132
RH
10630 i.log2_scale_factor = 0;
10631 break;
551c1ca1 10632 case 2:
252b5132
RH
10633 i.log2_scale_factor = 1;
10634 break;
551c1ca1 10635 case 4:
252b5132
RH
10636 i.log2_scale_factor = 2;
10637 break;
551c1ca1 10638 case 8:
252b5132
RH
10639 i.log2_scale_factor = 3;
10640 break;
10641 default:
a724f0f4
JB
10642 {
10643 char sep = *input_line_pointer;
10644
10645 *input_line_pointer = '\0';
10646 as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
10647 scale);
10648 *input_line_pointer = sep;
10649 input_line_pointer = save;
10650 return NULL;
10651 }
252b5132 10652 }
29b0f896 10653 if (i.log2_scale_factor != 0 && i.index_reg == 0)
252b5132
RH
10654 {
10655 as_warn (_("scale factor of %d without an index register"),
24eab124 10656 1 << i.log2_scale_factor);
252b5132 10657 i.log2_scale_factor = 0;
252b5132 10658 }
551c1ca1
AM
10659 scale = input_line_pointer;
10660 input_line_pointer = save;
10661 return scale;
252b5132
RH
10662}
10663
252b5132 10664static int
e3bb37b5 10665i386_displacement (char *disp_start, char *disp_end)
252b5132 10666{
29b0f896 10667 expressionS *exp;
252b5132
RH
10668 segT exp_seg = 0;
10669 char *save_input_line_pointer;
f3c180ae 10670 char *gotfree_input_line;
40fb9820
L
10671 int override;
10672 i386_operand_type bigdisp, types = anydisp;
3992d3b7 10673 int ret;
252b5132 10674
31b2323c
L
10675 if (i.disp_operands == MAX_MEMORY_OPERANDS)
10676 {
10677 as_bad (_("at most %d displacement operands are allowed"),
10678 MAX_MEMORY_OPERANDS);
10679 return 0;
10680 }
10681
0dfbf9d7 10682 operand_type_set (&bigdisp, 0);
6f2f06be 10683 if (i.jumpabsolute
48bcea9f 10684 || i.types[this_operand].bitfield.baseindex
0cfa3eb3
JB
10685 || (current_templates->start->opcode_modifier.jump != JUMP
10686 && current_templates->start->opcode_modifier.jump != JUMP_DWORD))
e05278af 10687 {
48bcea9f 10688 i386_addressing_mode ();
e05278af 10689 override = (i.prefix[ADDR_PREFIX] != 0);
40fb9820
L
10690 if (flag_code == CODE_64BIT)
10691 {
10692 if (!override)
10693 {
10694 bigdisp.bitfield.disp32s = 1;
10695 bigdisp.bitfield.disp64 = 1;
10696 }
48bcea9f
JB
10697 else
10698 bigdisp.bitfield.disp32 = 1;
40fb9820
L
10699 }
10700 else if ((flag_code == CODE_16BIT) ^ override)
40fb9820 10701 bigdisp.bitfield.disp16 = 1;
48bcea9f
JB
10702 else
10703 bigdisp.bitfield.disp32 = 1;
e05278af
JB
10704 }
10705 else
10706 {
376cd056
JB
10707 /* For PC-relative branches, the width of the displacement may be
10708 dependent upon data size, but is never dependent upon address size.
10709 Also make sure to not unintentionally match against a non-PC-relative
10710 branch template. */
10711 static templates aux_templates;
10712 const insn_template *t = current_templates->start;
10713 bfd_boolean has_intel64 = FALSE;
10714
10715 aux_templates.start = t;
10716 while (++t < current_templates->end)
10717 {
10718 if (t->opcode_modifier.jump
10719 != current_templates->start->opcode_modifier.jump)
10720 break;
4b5aaf5f 10721 if ((t->opcode_modifier.isa64 >= INTEL64))
376cd056
JB
10722 has_intel64 = TRUE;
10723 }
10724 if (t < current_templates->end)
10725 {
10726 aux_templates.end = t;
10727 current_templates = &aux_templates;
10728 }
10729
e05278af 10730 override = (i.prefix[DATA_PREFIX] != 0);
40fb9820
L
10731 if (flag_code == CODE_64BIT)
10732 {
376cd056
JB
10733 if ((override || i.suffix == WORD_MNEM_SUFFIX)
10734 && (!intel64 || !has_intel64))
40fb9820
L
10735 bigdisp.bitfield.disp16 = 1;
10736 else
48bcea9f 10737 bigdisp.bitfield.disp32s = 1;
40fb9820
L
10738 }
10739 else
e05278af
JB
10740 {
10741 if (!override)
10742 override = (i.suffix == (flag_code != CODE_16BIT
10743 ? WORD_MNEM_SUFFIX
10744 : LONG_MNEM_SUFFIX));
40fb9820
L
10745 bigdisp.bitfield.disp32 = 1;
10746 if ((flag_code == CODE_16BIT) ^ override)
10747 {
10748 bigdisp.bitfield.disp32 = 0;
10749 bigdisp.bitfield.disp16 = 1;
10750 }
e05278af 10751 }
e05278af 10752 }
c6fb90c8
L
10753 i.types[this_operand] = operand_type_or (i.types[this_operand],
10754 bigdisp);
252b5132
RH
10755
10756 exp = &disp_expressions[i.disp_operands];
520dc8e8 10757 i.op[this_operand].disps = exp;
252b5132
RH
10758 i.disp_operands++;
10759 save_input_line_pointer = input_line_pointer;
10760 input_line_pointer = disp_start;
10761 END_STRING_AND_SAVE (disp_end);
10762
10763#ifndef GCC_ASM_O_HACK
10764#define GCC_ASM_O_HACK 0
10765#endif
10766#if GCC_ASM_O_HACK
10767 END_STRING_AND_SAVE (disp_end + 1);
40fb9820 10768 if (i.types[this_operand].bitfield.baseIndex
24eab124 10769 && displacement_string_end[-1] == '+')
252b5132
RH
10770 {
10771 /* This hack is to avoid a warning when using the "o"
24eab124
AM
10772 constraint within gcc asm statements.
10773 For instance:
10774
10775 #define _set_tssldt_desc(n,addr,limit,type) \
10776 __asm__ __volatile__ ( \
10777 "movw %w2,%0\n\t" \
10778 "movw %w1,2+%0\n\t" \
10779 "rorl $16,%1\n\t" \
10780 "movb %b1,4+%0\n\t" \
10781 "movb %4,5+%0\n\t" \
10782 "movb $0,6+%0\n\t" \
10783 "movb %h1,7+%0\n\t" \
10784 "rorl $16,%1" \
10785 : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type))
10786
10787 This works great except that the output assembler ends
10788 up looking a bit weird if it turns out that there is
10789 no offset. You end up producing code that looks like:
10790
10791 #APP
10792 movw $235,(%eax)
10793 movw %dx,2+(%eax)
10794 rorl $16,%edx
10795 movb %dl,4+(%eax)
10796 movb $137,5+(%eax)
10797 movb $0,6+(%eax)
10798 movb %dh,7+(%eax)
10799 rorl $16,%edx
10800 #NO_APP
10801
47926f60 10802 So here we provide the missing zero. */
24eab124
AM
10803
10804 *displacement_string_end = '0';
252b5132
RH
10805 }
10806#endif
d258b828 10807 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
10808 if (gotfree_input_line)
10809 input_line_pointer = gotfree_input_line;
252b5132 10810
24eab124 10811 exp_seg = expression (exp);
252b5132 10812
636c26b0
AM
10813 SKIP_WHITESPACE ();
10814 if (*input_line_pointer)
10815 as_bad (_("junk `%s' after expression"), input_line_pointer);
10816#if GCC_ASM_O_HACK
10817 RESTORE_END_STRING (disp_end + 1);
10818#endif
636c26b0 10819 input_line_pointer = save_input_line_pointer;
636c26b0 10820 if (gotfree_input_line)
ee86248c
JB
10821 {
10822 free (gotfree_input_line);
10823
10824 if (exp->X_op == O_constant || exp->X_op == O_register)
10825 exp->X_op = O_illegal;
10826 }
10827
10828 ret = i386_finalize_displacement (exp_seg, exp, types, disp_start);
10829
10830 RESTORE_END_STRING (disp_end);
10831
10832 return ret;
10833}
10834
10835static int
10836i386_finalize_displacement (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
10837 i386_operand_type types, const char *disp_start)
10838{
10839 i386_operand_type bigdisp;
10840 int ret = 1;
636c26b0 10841
24eab124
AM
10842 /* We do this to make sure that the section symbol is in
10843 the symbol table. We will ultimately change the relocation
47926f60 10844 to be relative to the beginning of the section. */
1ae12ab7 10845 if (i.reloc[this_operand] == BFD_RELOC_386_GOTOFF
d6ab8113
JB
10846 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL
10847 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
24eab124 10848 {
636c26b0 10849 if (exp->X_op != O_symbol)
3992d3b7 10850 goto inv_disp;
636c26b0 10851
e5cb08ac 10852 if (S_IS_LOCAL (exp->X_add_symbol)
c64efb4b
L
10853 && S_GET_SEGMENT (exp->X_add_symbol) != undefined_section
10854 && S_GET_SEGMENT (exp->X_add_symbol) != expr_section)
24eab124 10855 section_symbol (S_GET_SEGMENT (exp->X_add_symbol));
24eab124
AM
10856 exp->X_op = O_subtract;
10857 exp->X_op_symbol = GOT_symbol;
1ae12ab7 10858 if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL)
29b0f896 10859 i.reloc[this_operand] = BFD_RELOC_32_PCREL;
d6ab8113
JB
10860 else if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
10861 i.reloc[this_operand] = BFD_RELOC_64;
23df1078 10862 else
29b0f896 10863 i.reloc[this_operand] = BFD_RELOC_32;
24eab124 10864 }
252b5132 10865
3992d3b7
AM
10866 else if (exp->X_op == O_absent
10867 || exp->X_op == O_illegal
ee86248c 10868 || exp->X_op == O_big)
2daf4fd8 10869 {
3992d3b7
AM
10870 inv_disp:
10871 as_bad (_("missing or invalid displacement expression `%s'"),
2daf4fd8 10872 disp_start);
3992d3b7 10873 ret = 0;
2daf4fd8
AM
10874 }
10875
0e1147d9
L
10876 else if (flag_code == CODE_64BIT
10877 && !i.prefix[ADDR_PREFIX]
10878 && exp->X_op == O_constant)
10879 {
10880 /* Since displacement is signed extended to 64bit, don't allow
10881 disp32 and turn off disp32s if they are out of range. */
10882 i.types[this_operand].bitfield.disp32 = 0;
10883 if (!fits_in_signed_long (exp->X_add_number))
10884 {
10885 i.types[this_operand].bitfield.disp32s = 0;
10886 if (i.types[this_operand].bitfield.baseindex)
10887 {
10888 as_bad (_("0x%lx out range of signed 32bit displacement"),
10889 (long) exp->X_add_number);
10890 ret = 0;
10891 }
10892 }
10893 }
10894
4c63da97 10895#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
3992d3b7
AM
10896 else if (exp->X_op != O_constant
10897 && OUTPUT_FLAVOR == bfd_target_aout_flavour
10898 && exp_seg != absolute_section
10899 && exp_seg != text_section
10900 && exp_seg != data_section
10901 && exp_seg != bss_section
10902 && exp_seg != undefined_section
10903 && !bfd_is_com_section (exp_seg))
24eab124 10904 {
d0b47220 10905 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
3992d3b7 10906 ret = 0;
24eab124 10907 }
252b5132 10908#endif
3956db08 10909
48bcea9f
JB
10910 if (current_templates->start->opcode_modifier.jump == JUMP_BYTE
10911 /* Constants get taken care of by optimize_disp(). */
10912 && exp->X_op != O_constant)
10913 i.types[this_operand].bitfield.disp8 = 1;
10914
40fb9820
L
10915 /* Check if this is a displacement only operand. */
10916 bigdisp = i.types[this_operand];
10917 bigdisp.bitfield.disp8 = 0;
10918 bigdisp.bitfield.disp16 = 0;
10919 bigdisp.bitfield.disp32 = 0;
10920 bigdisp.bitfield.disp32s = 0;
10921 bigdisp.bitfield.disp64 = 0;
0dfbf9d7 10922 if (operand_type_all_zero (&bigdisp))
c6fb90c8
L
10923 i.types[this_operand] = operand_type_and (i.types[this_operand],
10924 types);
3956db08 10925
3992d3b7 10926 return ret;
252b5132
RH
10927}
10928
2abc2bec
JB
10929/* Return the active addressing mode, taking address override and
10930 registers forming the address into consideration. Update the
10931 address override prefix if necessary. */
47926f60 10932
2abc2bec
JB
10933static enum flag_code
10934i386_addressing_mode (void)
252b5132 10935{
be05d201
L
10936 enum flag_code addr_mode;
10937
10938 if (i.prefix[ADDR_PREFIX])
10939 addr_mode = flag_code == CODE_32BIT ? CODE_16BIT : CODE_32BIT;
a23b33b3
JB
10940 else if (flag_code == CODE_16BIT
10941 && current_templates->start->cpu_flags.bitfield.cpumpx
10942 /* Avoid replacing the "16-bit addressing not allowed" diagnostic
10943 from md_assemble() by "is not a valid base/index expression"
10944 when there is a base and/or index. */
10945 && !i.types[this_operand].bitfield.baseindex)
10946 {
10947 /* MPX insn memory operands with neither base nor index must be forced
10948 to use 32-bit addressing in 16-bit mode. */
10949 addr_mode = CODE_32BIT;
10950 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
10951 ++i.prefixes;
10952 gas_assert (!i.types[this_operand].bitfield.disp16);
10953 gas_assert (!i.types[this_operand].bitfield.disp32);
10954 }
be05d201
L
10955 else
10956 {
10957 addr_mode = flag_code;
10958
24eab124 10959#if INFER_ADDR_PREFIX
be05d201
L
10960 if (i.mem_operands == 0)
10961 {
10962 /* Infer address prefix from the first memory operand. */
10963 const reg_entry *addr_reg = i.base_reg;
10964
10965 if (addr_reg == NULL)
10966 addr_reg = i.index_reg;
eecb386c 10967
be05d201
L
10968 if (addr_reg)
10969 {
e968fc9b 10970 if (addr_reg->reg_type.bitfield.dword)
be05d201
L
10971 addr_mode = CODE_32BIT;
10972 else if (flag_code != CODE_64BIT
dc821c5f 10973 && addr_reg->reg_type.bitfield.word)
be05d201
L
10974 addr_mode = CODE_16BIT;
10975
10976 if (addr_mode != flag_code)
10977 {
10978 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
10979 i.prefixes += 1;
10980 /* Change the size of any displacement too. At most one
10981 of Disp16 or Disp32 is set.
10982 FIXME. There doesn't seem to be any real need for
10983 separate Disp16 and Disp32 flags. The same goes for
10984 Imm16 and Imm32. Removing them would probably clean
10985 up the code quite a lot. */
10986 if (flag_code != CODE_64BIT
10987 && (i.types[this_operand].bitfield.disp16
10988 || i.types[this_operand].bitfield.disp32))
10989 i.types[this_operand]
10990 = operand_type_xor (i.types[this_operand], disp16_32);
10991 }
10992 }
10993 }
24eab124 10994#endif
be05d201
L
10995 }
10996
2abc2bec
JB
10997 return addr_mode;
10998}
10999
11000/* Make sure the memory operand we've been dealt is valid.
11001 Return 1 on success, 0 on a failure. */
11002
11003static int
11004i386_index_check (const char *operand_string)
11005{
11006 const char *kind = "base/index";
11007 enum flag_code addr_mode = i386_addressing_mode ();
a152332d 11008 const insn_template *t = current_templates->start;
2abc2bec 11009
a152332d
JB
11010 if (t->opcode_modifier.isstring
11011 && !t->cpu_flags.bitfield.cpupadlock
fc0763e6
JB
11012 && (current_templates->end[-1].opcode_modifier.isstring
11013 || i.mem_operands))
11014 {
11015 /* Memory operands of string insns are special in that they only allow
11016 a single register (rDI, rSI, or rBX) as their memory address. */
be05d201
L
11017 const reg_entry *expected_reg;
11018 static const char *di_si[][2] =
11019 {
11020 { "esi", "edi" },
11021 { "si", "di" },
11022 { "rsi", "rdi" }
11023 };
11024 static const char *bx[] = { "ebx", "bx", "rbx" };
fc0763e6
JB
11025
11026 kind = "string address";
11027
a152332d 11028 if (t->opcode_modifier.prefixok == PrefixRep)
fc0763e6 11029 {
51c8edf6
JB
11030 int es_op = current_templates->end[-1].opcode_modifier.isstring
11031 - IS_STRING_ES_OP0;
11032 int op = 0;
fc0763e6 11033
51c8edf6 11034 if (!current_templates->end[-1].operand_types[0].bitfield.baseindex
fc0763e6
JB
11035 || ((!i.mem_operands != !intel_syntax)
11036 && current_templates->end[-1].operand_types[1]
11037 .bitfield.baseindex))
51c8edf6 11038 op = 1;
fe0e921f
AM
11039 expected_reg
11040 = (const reg_entry *) str_hash_find (reg_hash,
11041 di_si[addr_mode][op == es_op]);
fc0763e6
JB
11042 }
11043 else
fe0e921f
AM
11044 expected_reg
11045 = (const reg_entry *)str_hash_find (reg_hash, bx[addr_mode]);
fc0763e6 11046
be05d201
L
11047 if (i.base_reg != expected_reg
11048 || i.index_reg
fc0763e6 11049 || operand_type_check (i.types[this_operand], disp))
fc0763e6 11050 {
be05d201
L
11051 /* The second memory operand must have the same size as
11052 the first one. */
11053 if (i.mem_operands
11054 && i.base_reg
11055 && !((addr_mode == CODE_64BIT
dc821c5f 11056 && i.base_reg->reg_type.bitfield.qword)
be05d201 11057 || (addr_mode == CODE_32BIT
dc821c5f
JB
11058 ? i.base_reg->reg_type.bitfield.dword
11059 : i.base_reg->reg_type.bitfield.word)))
be05d201
L
11060 goto bad_address;
11061
fc0763e6
JB
11062 as_warn (_("`%s' is not valid here (expected `%c%s%s%c')"),
11063 operand_string,
11064 intel_syntax ? '[' : '(',
11065 register_prefix,
be05d201 11066 expected_reg->reg_name,
fc0763e6 11067 intel_syntax ? ']' : ')');
be05d201 11068 return 1;
fc0763e6 11069 }
be05d201
L
11070 else
11071 return 1;
11072
dc1e8a47 11073 bad_address:
be05d201
L
11074 as_bad (_("`%s' is not a valid %s expression"),
11075 operand_string, kind);
11076 return 0;
3e73aa7c
JH
11077 }
11078 else
11079 {
be05d201
L
11080 if (addr_mode != CODE_16BIT)
11081 {
11082 /* 32-bit/64-bit checks. */
41eb8e88
L
11083 if (i.disp_encoding == disp_encoding_16bit)
11084 {
11085 bad_disp:
11086 as_bad (_("invalid `%s' prefix"),
11087 addr_mode == CODE_16BIT ? "{disp32}" : "{disp16}");
11088 return 0;
11089 }
11090
be05d201 11091 if ((i.base_reg
e968fc9b
JB
11092 && ((addr_mode == CODE_64BIT
11093 ? !i.base_reg->reg_type.bitfield.qword
11094 : !i.base_reg->reg_type.bitfield.dword)
11095 || (i.index_reg && i.base_reg->reg_num == RegIP)
11096 || i.base_reg->reg_num == RegIZ))
be05d201 11097 || (i.index_reg
1b54b8d7
JB
11098 && !i.index_reg->reg_type.bitfield.xmmword
11099 && !i.index_reg->reg_type.bitfield.ymmword
11100 && !i.index_reg->reg_type.bitfield.zmmword
be05d201 11101 && ((addr_mode == CODE_64BIT
e968fc9b
JB
11102 ? !i.index_reg->reg_type.bitfield.qword
11103 : !i.index_reg->reg_type.bitfield.dword)
be05d201
L
11104 || !i.index_reg->reg_type.bitfield.baseindex)))
11105 goto bad_address;
8178be5b 11106
260cd341 11107 /* bndmk, bndldx, bndstx and mandatory non-vector SIB have special restrictions. */
a152332d
JB
11108 if ((t->opcode_modifier.opcodeprefix == PREFIX_0XF3
11109 && t->base_opcode == 0x0f1b)
11110 || (t->opcode_modifier.opcodeprefix == PREFIX_NONE
11111 && (t->base_opcode & ~1) == 0x0f1a)
11112 || t->opcode_modifier.sib == SIBMEM)
8178be5b
JB
11113 {
11114 /* They cannot use RIP-relative addressing. */
e968fc9b 11115 if (i.base_reg && i.base_reg->reg_num == RegIP)
8178be5b
JB
11116 {
11117 as_bad (_("`%s' cannot be used here"), operand_string);
11118 return 0;
11119 }
11120
11121 /* bndldx and bndstx ignore their scale factor. */
a152332d
JB
11122 if (t->opcode_modifier.opcodeprefix == PREFIX_NONE
11123 && (t->base_opcode & ~1) == 0x0f1a
8178be5b
JB
11124 && i.log2_scale_factor)
11125 as_warn (_("register scaling is being ignored here"));
11126 }
be05d201
L
11127 }
11128 else
3e73aa7c 11129 {
be05d201 11130 /* 16-bit checks. */
41eb8e88
L
11131 if (i.disp_encoding == disp_encoding_32bit)
11132 goto bad_disp;
11133
3e73aa7c 11134 if ((i.base_reg
dc821c5f 11135 && (!i.base_reg->reg_type.bitfield.word
40fb9820 11136 || !i.base_reg->reg_type.bitfield.baseindex))
3e73aa7c 11137 || (i.index_reg
dc821c5f 11138 && (!i.index_reg->reg_type.bitfield.word
40fb9820 11139 || !i.index_reg->reg_type.bitfield.baseindex
29b0f896
AM
11140 || !(i.base_reg
11141 && i.base_reg->reg_num < 6
11142 && i.index_reg->reg_num >= 6
11143 && i.log2_scale_factor == 0))))
be05d201 11144 goto bad_address;
3e73aa7c
JH
11145 }
11146 }
be05d201 11147 return 1;
24eab124 11148}
252b5132 11149
43234a1e
L
11150/* Handle vector immediates. */
11151
11152static int
11153RC_SAE_immediate (const char *imm_start)
11154{
11155 unsigned int match_found, j;
11156 const char *pstr = imm_start;
11157 expressionS *exp;
11158
11159 if (*pstr != '{')
11160 return 0;
11161
11162 pstr++;
11163 match_found = 0;
11164 for (j = 0; j < ARRAY_SIZE (RC_NamesTable); j++)
11165 {
11166 if (!strncmp (pstr, RC_NamesTable[j].name, RC_NamesTable[j].len))
11167 {
11168 if (!i.rounding)
11169 {
11170 rc_op.type = RC_NamesTable[j].type;
11171 rc_op.operand = this_operand;
11172 i.rounding = &rc_op;
11173 }
11174 else
11175 {
11176 as_bad (_("duplicated `%s'"), imm_start);
11177 return 0;
11178 }
11179 pstr += RC_NamesTable[j].len;
11180 match_found = 1;
11181 break;
11182 }
11183 }
11184 if (!match_found)
11185 return 0;
11186
11187 if (*pstr++ != '}')
11188 {
11189 as_bad (_("Missing '}': '%s'"), imm_start);
11190 return 0;
11191 }
11192 /* RC/SAE immediate string should contain nothing more. */;
11193 if (*pstr != 0)
11194 {
11195 as_bad (_("Junk after '}': '%s'"), imm_start);
11196 return 0;
11197 }
11198
11199 exp = &im_expressions[i.imm_operands++];
11200 i.op[this_operand].imms = exp;
11201
11202 exp->X_op = O_constant;
11203 exp->X_add_number = 0;
11204 exp->X_add_symbol = (symbolS *) 0;
11205 exp->X_op_symbol = (symbolS *) 0;
11206
11207 i.types[this_operand].bitfield.imm8 = 1;
11208 return 1;
11209}
11210
8325cc63
JB
11211/* Only string instructions can have a second memory operand, so
11212 reduce current_templates to just those if it contains any. */
11213static int
11214maybe_adjust_templates (void)
11215{
11216 const insn_template *t;
11217
11218 gas_assert (i.mem_operands == 1);
11219
11220 for (t = current_templates->start; t < current_templates->end; ++t)
11221 if (t->opcode_modifier.isstring)
11222 break;
11223
11224 if (t < current_templates->end)
11225 {
11226 static templates aux_templates;
11227 bfd_boolean recheck;
11228
11229 aux_templates.start = t;
11230 for (; t < current_templates->end; ++t)
11231 if (!t->opcode_modifier.isstring)
11232 break;
11233 aux_templates.end = t;
11234
11235 /* Determine whether to re-check the first memory operand. */
11236 recheck = (aux_templates.start != current_templates->start
11237 || t != current_templates->end);
11238
11239 current_templates = &aux_templates;
11240
11241 if (recheck)
11242 {
11243 i.mem_operands = 0;
11244 if (i.memop1_string != NULL
11245 && i386_index_check (i.memop1_string) == 0)
11246 return 0;
11247 i.mem_operands = 1;
11248 }
11249 }
11250
11251 return 1;
11252}
11253
fc0763e6 11254/* Parse OPERAND_STRING into the i386_insn structure I. Returns zero
47926f60 11255 on error. */
252b5132 11256
252b5132 11257static int
a7619375 11258i386_att_operand (char *operand_string)
252b5132 11259{
af6bdddf
AM
11260 const reg_entry *r;
11261 char *end_op;
24eab124 11262 char *op_string = operand_string;
252b5132 11263
24eab124 11264 if (is_space_char (*op_string))
252b5132
RH
11265 ++op_string;
11266
24eab124 11267 /* We check for an absolute prefix (differentiating,
47926f60 11268 for example, 'jmp pc_relative_label' from 'jmp *absolute_label'. */
24eab124
AM
11269 if (*op_string == ABSOLUTE_PREFIX)
11270 {
11271 ++op_string;
11272 if (is_space_char (*op_string))
11273 ++op_string;
6f2f06be 11274 i.jumpabsolute = TRUE;
24eab124 11275 }
252b5132 11276
47926f60 11277 /* Check if operand is a register. */
4d1bb795 11278 if ((r = parse_register (op_string, &end_op)) != NULL)
24eab124 11279 {
40fb9820
L
11280 i386_operand_type temp;
11281
8a6fb3f9
JB
11282 if (r == &bad_reg)
11283 return 0;
11284
24eab124
AM
11285 /* Check for a segment override by searching for ':' after a
11286 segment register. */
11287 op_string = end_op;
11288 if (is_space_char (*op_string))
11289 ++op_string;
00cee14f 11290 if (*op_string == ':' && r->reg_type.bitfield.class == SReg)
24eab124
AM
11291 {
11292 switch (r->reg_num)
11293 {
11294 case 0:
11295 i.seg[i.mem_operands] = &es;
11296 break;
11297 case 1:
11298 i.seg[i.mem_operands] = &cs;
11299 break;
11300 case 2:
11301 i.seg[i.mem_operands] = &ss;
11302 break;
11303 case 3:
11304 i.seg[i.mem_operands] = &ds;
11305 break;
11306 case 4:
11307 i.seg[i.mem_operands] = &fs;
11308 break;
11309 case 5:
11310 i.seg[i.mem_operands] = &gs;
11311 break;
11312 }
252b5132 11313
24eab124 11314 /* Skip the ':' and whitespace. */
252b5132
RH
11315 ++op_string;
11316 if (is_space_char (*op_string))
24eab124 11317 ++op_string;
252b5132 11318
24eab124
AM
11319 if (!is_digit_char (*op_string)
11320 && !is_identifier_char (*op_string)
11321 && *op_string != '('
11322 && *op_string != ABSOLUTE_PREFIX)
11323 {
11324 as_bad (_("bad memory operand `%s'"), op_string);
11325 return 0;
11326 }
47926f60 11327 /* Handle case of %es:*foo. */
24eab124
AM
11328 if (*op_string == ABSOLUTE_PREFIX)
11329 {
11330 ++op_string;
11331 if (is_space_char (*op_string))
11332 ++op_string;
6f2f06be 11333 i.jumpabsolute = TRUE;
24eab124
AM
11334 }
11335 goto do_memory_reference;
11336 }
43234a1e
L
11337
11338 /* Handle vector operations. */
11339 if (*op_string == '{')
11340 {
11341 op_string = check_VecOperations (op_string, NULL);
11342 if (op_string == NULL)
11343 return 0;
11344 }
11345
24eab124
AM
11346 if (*op_string)
11347 {
d0b47220 11348 as_bad (_("junk `%s' after register"), op_string);
24eab124
AM
11349 return 0;
11350 }
40fb9820
L
11351 temp = r->reg_type;
11352 temp.bitfield.baseindex = 0;
c6fb90c8
L
11353 i.types[this_operand] = operand_type_or (i.types[this_operand],
11354 temp);
7d5e4556 11355 i.types[this_operand].bitfield.unspecified = 0;
520dc8e8 11356 i.op[this_operand].regs = r;
24eab124
AM
11357 i.reg_operands++;
11358 }
af6bdddf
AM
11359 else if (*op_string == REGISTER_PREFIX)
11360 {
11361 as_bad (_("bad register name `%s'"), op_string);
11362 return 0;
11363 }
24eab124 11364 else if (*op_string == IMMEDIATE_PREFIX)
ce8a8b2f 11365 {
24eab124 11366 ++op_string;
6f2f06be 11367 if (i.jumpabsolute)
24eab124 11368 {
d0b47220 11369 as_bad (_("immediate operand illegal with absolute jump"));
24eab124
AM
11370 return 0;
11371 }
11372 if (!i386_immediate (op_string))
11373 return 0;
11374 }
43234a1e
L
11375 else if (RC_SAE_immediate (operand_string))
11376 {
11377 /* If it is a RC or SAE immediate, do nothing. */
11378 ;
11379 }
24eab124
AM
11380 else if (is_digit_char (*op_string)
11381 || is_identifier_char (*op_string)
d02603dc 11382 || *op_string == '"'
e5cb08ac 11383 || *op_string == '(')
24eab124 11384 {
47926f60 11385 /* This is a memory reference of some sort. */
af6bdddf 11386 char *base_string;
252b5132 11387
47926f60 11388 /* Start and end of displacement string expression (if found). */
eecb386c
AM
11389 char *displacement_string_start;
11390 char *displacement_string_end;
43234a1e 11391 char *vop_start;
252b5132 11392
24eab124 11393 do_memory_reference:
8325cc63
JB
11394 if (i.mem_operands == 1 && !maybe_adjust_templates ())
11395 return 0;
24eab124 11396 if ((i.mem_operands == 1
40fb9820 11397 && !current_templates->start->opcode_modifier.isstring)
24eab124
AM
11398 || i.mem_operands == 2)
11399 {
11400 as_bad (_("too many memory references for `%s'"),
11401 current_templates->start->name);
11402 return 0;
11403 }
252b5132 11404
24eab124
AM
11405 /* Check for base index form. We detect the base index form by
11406 looking for an ')' at the end of the operand, searching
11407 for the '(' matching it, and finding a REGISTER_PREFIX or ','
11408 after the '('. */
af6bdddf 11409 base_string = op_string + strlen (op_string);
c3332e24 11410
43234a1e
L
11411 /* Handle vector operations. */
11412 vop_start = strchr (op_string, '{');
11413 if (vop_start && vop_start < base_string)
11414 {
11415 if (check_VecOperations (vop_start, base_string) == NULL)
11416 return 0;
11417 base_string = vop_start;
11418 }
11419
af6bdddf
AM
11420 --base_string;
11421 if (is_space_char (*base_string))
11422 --base_string;
252b5132 11423
47926f60 11424 /* If we only have a displacement, set-up for it to be parsed later. */
af6bdddf
AM
11425 displacement_string_start = op_string;
11426 displacement_string_end = base_string + 1;
252b5132 11427
24eab124
AM
11428 if (*base_string == ')')
11429 {
af6bdddf 11430 char *temp_string;
24eab124
AM
11431 unsigned int parens_balanced = 1;
11432 /* We've already checked that the number of left & right ()'s are
47926f60 11433 equal, so this loop will not be infinite. */
24eab124
AM
11434 do
11435 {
11436 base_string--;
11437 if (*base_string == ')')
11438 parens_balanced++;
11439 if (*base_string == '(')
11440 parens_balanced--;
11441 }
11442 while (parens_balanced);
c3332e24 11443
af6bdddf 11444 temp_string = base_string;
c3332e24 11445
24eab124 11446 /* Skip past '(' and whitespace. */
252b5132
RH
11447 ++base_string;
11448 if (is_space_char (*base_string))
24eab124 11449 ++base_string;
252b5132 11450
af6bdddf 11451 if (*base_string == ','
4eed87de
AM
11452 || ((i.base_reg = parse_register (base_string, &end_op))
11453 != NULL))
252b5132 11454 {
af6bdddf 11455 displacement_string_end = temp_string;
252b5132 11456
40fb9820 11457 i.types[this_operand].bitfield.baseindex = 1;
252b5132 11458
af6bdddf 11459 if (i.base_reg)
24eab124 11460 {
8a6fb3f9
JB
11461 if (i.base_reg == &bad_reg)
11462 return 0;
24eab124
AM
11463 base_string = end_op;
11464 if (is_space_char (*base_string))
11465 ++base_string;
af6bdddf
AM
11466 }
11467
11468 /* There may be an index reg or scale factor here. */
11469 if (*base_string == ',')
11470 {
11471 ++base_string;
11472 if (is_space_char (*base_string))
11473 ++base_string;
11474
4eed87de
AM
11475 if ((i.index_reg = parse_register (base_string, &end_op))
11476 != NULL)
24eab124 11477 {
8a6fb3f9
JB
11478 if (i.index_reg == &bad_reg)
11479 return 0;
af6bdddf 11480 base_string = end_op;
24eab124
AM
11481 if (is_space_char (*base_string))
11482 ++base_string;
af6bdddf
AM
11483 if (*base_string == ',')
11484 {
11485 ++base_string;
11486 if (is_space_char (*base_string))
11487 ++base_string;
11488 }
e5cb08ac 11489 else if (*base_string != ')')
af6bdddf 11490 {
4eed87de
AM
11491 as_bad (_("expecting `,' or `)' "
11492 "after index register in `%s'"),
af6bdddf
AM
11493 operand_string);
11494 return 0;
11495 }
24eab124 11496 }
af6bdddf 11497 else if (*base_string == REGISTER_PREFIX)
24eab124 11498 {
f76bf5e0
L
11499 end_op = strchr (base_string, ',');
11500 if (end_op)
11501 *end_op = '\0';
af6bdddf 11502 as_bad (_("bad register name `%s'"), base_string);
24eab124
AM
11503 return 0;
11504 }
252b5132 11505
47926f60 11506 /* Check for scale factor. */
551c1ca1 11507 if (*base_string != ')')
af6bdddf 11508 {
551c1ca1
AM
11509 char *end_scale = i386_scale (base_string);
11510
11511 if (!end_scale)
af6bdddf 11512 return 0;
24eab124 11513
551c1ca1 11514 base_string = end_scale;
af6bdddf
AM
11515 if (is_space_char (*base_string))
11516 ++base_string;
11517 if (*base_string != ')')
11518 {
4eed87de
AM
11519 as_bad (_("expecting `)' "
11520 "after scale factor in `%s'"),
af6bdddf
AM
11521 operand_string);
11522 return 0;
11523 }
11524 }
11525 else if (!i.index_reg)
24eab124 11526 {
4eed87de
AM
11527 as_bad (_("expecting index register or scale factor "
11528 "after `,'; got '%c'"),
af6bdddf 11529 *base_string);
24eab124
AM
11530 return 0;
11531 }
11532 }
af6bdddf 11533 else if (*base_string != ')')
24eab124 11534 {
4eed87de
AM
11535 as_bad (_("expecting `,' or `)' "
11536 "after base register in `%s'"),
af6bdddf 11537 operand_string);
24eab124
AM
11538 return 0;
11539 }
c3332e24 11540 }
af6bdddf 11541 else if (*base_string == REGISTER_PREFIX)
c3332e24 11542 {
f76bf5e0
L
11543 end_op = strchr (base_string, ',');
11544 if (end_op)
11545 *end_op = '\0';
af6bdddf 11546 as_bad (_("bad register name `%s'"), base_string);
24eab124 11547 return 0;
c3332e24 11548 }
24eab124
AM
11549 }
11550
11551 /* If there's an expression beginning the operand, parse it,
11552 assuming displacement_string_start and
11553 displacement_string_end are meaningful. */
11554 if (displacement_string_start != displacement_string_end)
11555 {
11556 if (!i386_displacement (displacement_string_start,
11557 displacement_string_end))
11558 return 0;
11559 }
11560
11561 /* Special case for (%dx) while doing input/output op. */
11562 if (i.base_reg
75e5731b
JB
11563 && i.base_reg->reg_type.bitfield.instance == RegD
11564 && i.base_reg->reg_type.bitfield.word
24eab124
AM
11565 && i.index_reg == 0
11566 && i.log2_scale_factor == 0
11567 && i.seg[i.mem_operands] == 0
40fb9820 11568 && !operand_type_check (i.types[this_operand], disp))
24eab124 11569 {
2fb5be8d 11570 i.types[this_operand] = i.base_reg->reg_type;
24eab124
AM
11571 return 1;
11572 }
11573
eecb386c
AM
11574 if (i386_index_check (operand_string) == 0)
11575 return 0;
c48dadc9 11576 i.flags[this_operand] |= Operand_Mem;
8325cc63
JB
11577 if (i.mem_operands == 0)
11578 i.memop1_string = xstrdup (operand_string);
24eab124
AM
11579 i.mem_operands++;
11580 }
11581 else
ce8a8b2f
AM
11582 {
11583 /* It's not a memory operand; argh! */
24eab124
AM
11584 as_bad (_("invalid char %s beginning operand %d `%s'"),
11585 output_invalid (*op_string),
11586 this_operand + 1,
11587 op_string);
11588 return 0;
11589 }
47926f60 11590 return 1; /* Normal return. */
252b5132
RH
11591}
11592\f
fa94de6b
RM
11593/* Calculate the maximum variable size (i.e., excluding fr_fix)
11594 that an rs_machine_dependent frag may reach. */
11595
11596unsigned int
11597i386_frag_max_var (fragS *frag)
11598{
11599 /* The only relaxable frags are for jumps.
11600 Unconditional jumps can grow by 4 bytes and others by 5 bytes. */
11601 gas_assert (frag->fr_type == rs_machine_dependent);
11602 return TYPE_FROM_RELAX_STATE (frag->fr_subtype) == UNCOND_JUMP ? 4 : 5;
11603}
11604
b084df0b
L
11605#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11606static int
8dcea932 11607elf_symbol_resolved_in_segment_p (symbolS *fr_symbol, offsetT fr_var)
b084df0b
L
11608{
11609 /* STT_GNU_IFUNC symbol must go through PLT. */
11610 if ((symbol_get_bfdsym (fr_symbol)->flags
11611 & BSF_GNU_INDIRECT_FUNCTION) != 0)
11612 return 0;
11613
11614 if (!S_IS_EXTERNAL (fr_symbol))
11615 /* Symbol may be weak or local. */
11616 return !S_IS_WEAK (fr_symbol);
11617
8dcea932
L
11618 /* Global symbols with non-default visibility can't be preempted. */
11619 if (ELF_ST_VISIBILITY (S_GET_OTHER (fr_symbol)) != STV_DEFAULT)
11620 return 1;
11621
11622 if (fr_var != NO_RELOC)
11623 switch ((enum bfd_reloc_code_real) fr_var)
11624 {
11625 case BFD_RELOC_386_PLT32:
11626 case BFD_RELOC_X86_64_PLT32:
33eaf5de 11627 /* Symbol with PLT relocation may be preempted. */
8dcea932
L
11628 return 0;
11629 default:
11630 abort ();
11631 }
11632
b084df0b
L
11633 /* Global symbols with default visibility in a shared library may be
11634 preempted by another definition. */
8dcea932 11635 return !shared;
b084df0b
L
11636}
11637#endif
11638
79d72f45
HL
11639/* Table 3-2. Macro-Fusible Instructions in Haswell Microarchitecture
11640 Note also work for Skylake and Cascadelake.
11641---------------------------------------------------------------------
11642| JCC | ADD/SUB/CMP | INC/DEC | TEST/AND |
11643| ------ | ----------- | ------- | -------- |
11644| Jo | N | N | Y |
11645| Jno | N | N | Y |
11646| Jc/Jb | Y | N | Y |
11647| Jae/Jnb | Y | N | Y |
11648| Je/Jz | Y | Y | Y |
11649| Jne/Jnz | Y | Y | Y |
11650| Jna/Jbe | Y | N | Y |
11651| Ja/Jnbe | Y | N | Y |
11652| Js | N | N | Y |
11653| Jns | N | N | Y |
11654| Jp/Jpe | N | N | Y |
11655| Jnp/Jpo | N | N | Y |
11656| Jl/Jnge | Y | Y | Y |
11657| Jge/Jnl | Y | Y | Y |
11658| Jle/Jng | Y | Y | Y |
11659| Jg/Jnle | Y | Y | Y |
11660--------------------------------------------------------------------- */
11661static int
11662i386_macro_fusible_p (enum mf_cmp_kind mf_cmp, enum mf_jcc_kind mf_jcc)
11663{
11664 if (mf_cmp == mf_cmp_alu_cmp)
11665 return ((mf_jcc >= mf_jcc_jc && mf_jcc <= mf_jcc_jna)
11666 || mf_jcc == mf_jcc_jl || mf_jcc == mf_jcc_jle);
11667 if (mf_cmp == mf_cmp_incdec)
11668 return (mf_jcc == mf_jcc_je || mf_jcc == mf_jcc_jl
11669 || mf_jcc == mf_jcc_jle);
11670 if (mf_cmp == mf_cmp_test_and)
11671 return 1;
11672 return 0;
11673}
11674
e379e5f3
L
11675/* Return the next non-empty frag. */
11676
11677static fragS *
11678i386_next_non_empty_frag (fragS *fragP)
11679{
11680 /* There may be a frag with a ".fill 0" when there is no room in
11681 the current frag for frag_grow in output_insn. */
11682 for (fragP = fragP->fr_next;
11683 (fragP != NULL
11684 && fragP->fr_type == rs_fill
11685 && fragP->fr_fix == 0);
11686 fragP = fragP->fr_next)
11687 ;
11688 return fragP;
11689}
11690
11691/* Return the next jcc frag after BRANCH_PADDING. */
11692
11693static fragS *
79d72f45 11694i386_next_fusible_jcc_frag (fragS *maybe_cmp_fragP, fragS *pad_fragP)
e379e5f3 11695{
79d72f45
HL
11696 fragS *branch_fragP;
11697 if (!pad_fragP)
e379e5f3
L
11698 return NULL;
11699
79d72f45
HL
11700 if (pad_fragP->fr_type == rs_machine_dependent
11701 && (TYPE_FROM_RELAX_STATE (pad_fragP->fr_subtype)
e379e5f3
L
11702 == BRANCH_PADDING))
11703 {
79d72f45
HL
11704 branch_fragP = i386_next_non_empty_frag (pad_fragP);
11705 if (branch_fragP->fr_type != rs_machine_dependent)
e379e5f3 11706 return NULL;
79d72f45
HL
11707 if (TYPE_FROM_RELAX_STATE (branch_fragP->fr_subtype) == COND_JUMP
11708 && i386_macro_fusible_p (maybe_cmp_fragP->tc_frag_data.mf_type,
11709 pad_fragP->tc_frag_data.mf_type))
11710 return branch_fragP;
e379e5f3
L
11711 }
11712
11713 return NULL;
11714}
11715
11716/* Classify BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags. */
11717
11718static void
11719i386_classify_machine_dependent_frag (fragS *fragP)
11720{
11721 fragS *cmp_fragP;
11722 fragS *pad_fragP;
11723 fragS *branch_fragP;
11724 fragS *next_fragP;
11725 unsigned int max_prefix_length;
11726
11727 if (fragP->tc_frag_data.classified)
11728 return;
11729
11730 /* First scan for BRANCH_PADDING and FUSED_JCC_PADDING. Convert
11731 FUSED_JCC_PADDING and merge BRANCH_PADDING. */
11732 for (next_fragP = fragP;
11733 next_fragP != NULL;
11734 next_fragP = next_fragP->fr_next)
11735 {
11736 next_fragP->tc_frag_data.classified = 1;
11737 if (next_fragP->fr_type == rs_machine_dependent)
11738 switch (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype))
11739 {
11740 case BRANCH_PADDING:
11741 /* The BRANCH_PADDING frag must be followed by a branch
11742 frag. */
11743 branch_fragP = i386_next_non_empty_frag (next_fragP);
11744 next_fragP->tc_frag_data.u.branch_fragP = branch_fragP;
11745 break;
11746 case FUSED_JCC_PADDING:
11747 /* Check if this is a fused jcc:
11748 FUSED_JCC_PADDING
11749 CMP like instruction
11750 BRANCH_PADDING
11751 COND_JUMP
11752 */
11753 cmp_fragP = i386_next_non_empty_frag (next_fragP);
11754 pad_fragP = i386_next_non_empty_frag (cmp_fragP);
79d72f45 11755 branch_fragP = i386_next_fusible_jcc_frag (next_fragP, pad_fragP);
e379e5f3
L
11756 if (branch_fragP)
11757 {
11758 /* The BRANCH_PADDING frag is merged with the
11759 FUSED_JCC_PADDING frag. */
11760 next_fragP->tc_frag_data.u.branch_fragP = branch_fragP;
11761 /* CMP like instruction size. */
11762 next_fragP->tc_frag_data.cmp_size = cmp_fragP->fr_fix;
11763 frag_wane (pad_fragP);
11764 /* Skip to branch_fragP. */
11765 next_fragP = branch_fragP;
11766 }
11767 else if (next_fragP->tc_frag_data.max_prefix_length)
11768 {
11769 /* Turn FUSED_JCC_PADDING into BRANCH_PREFIX if it isn't
11770 a fused jcc. */
11771 next_fragP->fr_subtype
11772 = ENCODE_RELAX_STATE (BRANCH_PREFIX, 0);
11773 next_fragP->tc_frag_data.max_bytes
11774 = next_fragP->tc_frag_data.max_prefix_length;
11775 /* This will be updated in the BRANCH_PREFIX scan. */
11776 next_fragP->tc_frag_data.max_prefix_length = 0;
11777 }
11778 else
11779 frag_wane (next_fragP);
11780 break;
11781 }
11782 }
11783
11784 /* Stop if there is no BRANCH_PREFIX. */
11785 if (!align_branch_prefix_size)
11786 return;
11787
11788 /* Scan for BRANCH_PREFIX. */
11789 for (; fragP != NULL; fragP = fragP->fr_next)
11790 {
11791 if (fragP->fr_type != rs_machine_dependent
11792 || (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
11793 != BRANCH_PREFIX))
11794 continue;
11795
11796 /* Count all BRANCH_PREFIX frags before BRANCH_PADDING and
11797 COND_JUMP_PREFIX. */
11798 max_prefix_length = 0;
11799 for (next_fragP = fragP;
11800 next_fragP != NULL;
11801 next_fragP = next_fragP->fr_next)
11802 {
11803 if (next_fragP->fr_type == rs_fill)
11804 /* Skip rs_fill frags. */
11805 continue;
11806 else if (next_fragP->fr_type != rs_machine_dependent)
11807 /* Stop for all other frags. */
11808 break;
11809
11810 /* rs_machine_dependent frags. */
11811 if (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11812 == BRANCH_PREFIX)
11813 {
11814 /* Count BRANCH_PREFIX frags. */
11815 if (max_prefix_length >= MAX_FUSED_JCC_PADDING_SIZE)
11816 {
11817 max_prefix_length = MAX_FUSED_JCC_PADDING_SIZE;
11818 frag_wane (next_fragP);
11819 }
11820 else
11821 max_prefix_length
11822 += next_fragP->tc_frag_data.max_bytes;
11823 }
11824 else if ((TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11825 == BRANCH_PADDING)
11826 || (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11827 == FUSED_JCC_PADDING))
11828 {
11829 /* Stop at BRANCH_PADDING and FUSED_JCC_PADDING. */
11830 fragP->tc_frag_data.u.padding_fragP = next_fragP;
11831 break;
11832 }
11833 else
11834 /* Stop for other rs_machine_dependent frags. */
11835 break;
11836 }
11837
11838 fragP->tc_frag_data.max_prefix_length = max_prefix_length;
11839
11840 /* Skip to the next frag. */
11841 fragP = next_fragP;
11842 }
11843}
11844
11845/* Compute padding size for
11846
11847 FUSED_JCC_PADDING
11848 CMP like instruction
11849 BRANCH_PADDING
11850 COND_JUMP/UNCOND_JUMP
11851
11852 or
11853
11854 BRANCH_PADDING
11855 COND_JUMP/UNCOND_JUMP
11856 */
11857
11858static int
11859i386_branch_padding_size (fragS *fragP, offsetT address)
11860{
11861 unsigned int offset, size, padding_size;
11862 fragS *branch_fragP = fragP->tc_frag_data.u.branch_fragP;
11863
11864 /* The start address of the BRANCH_PADDING or FUSED_JCC_PADDING frag. */
11865 if (!address)
11866 address = fragP->fr_address;
11867 address += fragP->fr_fix;
11868
11869 /* CMP like instrunction size. */
11870 size = fragP->tc_frag_data.cmp_size;
11871
11872 /* The base size of the branch frag. */
11873 size += branch_fragP->fr_fix;
11874
11875 /* Add opcode and displacement bytes for the rs_machine_dependent
11876 branch frag. */
11877 if (branch_fragP->fr_type == rs_machine_dependent)
11878 size += md_relax_table[branch_fragP->fr_subtype].rlx_length;
11879
11880 /* Check if branch is within boundary and doesn't end at the last
11881 byte. */
11882 offset = address & ((1U << align_branch_power) - 1);
11883 if ((offset + size) >= (1U << align_branch_power))
11884 /* Padding needed to avoid crossing boundary. */
11885 padding_size = (1U << align_branch_power) - offset;
11886 else
11887 /* No padding needed. */
11888 padding_size = 0;
11889
11890 /* The return value may be saved in tc_frag_data.length which is
11891 unsigned byte. */
11892 if (!fits_in_unsigned_byte (padding_size))
11893 abort ();
11894
11895 return padding_size;
11896}
11897
11898/* i386_generic_table_relax_frag()
11899
11900 Handle BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags to
11901 grow/shrink padding to align branch frags. Hand others to
11902 relax_frag(). */
11903
11904long
11905i386_generic_table_relax_frag (segT segment, fragS *fragP, long stretch)
11906{
11907 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11908 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
11909 {
11910 long padding_size = i386_branch_padding_size (fragP, 0);
11911 long grow = padding_size - fragP->tc_frag_data.length;
11912
11913 /* When the BRANCH_PREFIX frag is used, the computed address
11914 must match the actual address and there should be no padding. */
11915 if (fragP->tc_frag_data.padding_address
11916 && (fragP->tc_frag_data.padding_address != fragP->fr_address
11917 || padding_size))
11918 abort ();
11919
11920 /* Update the padding size. */
11921 if (grow)
11922 fragP->tc_frag_data.length = padding_size;
11923
11924 return grow;
11925 }
11926 else if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11927 {
11928 fragS *padding_fragP, *next_fragP;
11929 long padding_size, left_size, last_size;
11930
11931 padding_fragP = fragP->tc_frag_data.u.padding_fragP;
11932 if (!padding_fragP)
11933 /* Use the padding set by the leading BRANCH_PREFIX frag. */
11934 return (fragP->tc_frag_data.length
11935 - fragP->tc_frag_data.last_length);
11936
11937 /* Compute the relative address of the padding frag in the very
11938 first time where the BRANCH_PREFIX frag sizes are zero. */
11939 if (!fragP->tc_frag_data.padding_address)
11940 fragP->tc_frag_data.padding_address
11941 = padding_fragP->fr_address - (fragP->fr_address - stretch);
11942
11943 /* First update the last length from the previous interation. */
11944 left_size = fragP->tc_frag_data.prefix_length;
11945 for (next_fragP = fragP;
11946 next_fragP != padding_fragP;
11947 next_fragP = next_fragP->fr_next)
11948 if (next_fragP->fr_type == rs_machine_dependent
11949 && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11950 == BRANCH_PREFIX))
11951 {
11952 if (left_size)
11953 {
11954 int max = next_fragP->tc_frag_data.max_bytes;
11955 if (max)
11956 {
11957 int size;
11958 if (max > left_size)
11959 size = left_size;
11960 else
11961 size = max;
11962 left_size -= size;
11963 next_fragP->tc_frag_data.last_length = size;
11964 }
11965 }
11966 else
11967 next_fragP->tc_frag_data.last_length = 0;
11968 }
11969
11970 /* Check the padding size for the padding frag. */
11971 padding_size = i386_branch_padding_size
11972 (padding_fragP, (fragP->fr_address
11973 + fragP->tc_frag_data.padding_address));
11974
11975 last_size = fragP->tc_frag_data.prefix_length;
11976 /* Check if there is change from the last interation. */
11977 if (padding_size == last_size)
11978 {
11979 /* Update the expected address of the padding frag. */
11980 padding_fragP->tc_frag_data.padding_address
11981 = (fragP->fr_address + padding_size
11982 + fragP->tc_frag_data.padding_address);
11983 return 0;
11984 }
11985
11986 if (padding_size > fragP->tc_frag_data.max_prefix_length)
11987 {
11988 /* No padding if there is no sufficient room. Clear the
11989 expected address of the padding frag. */
11990 padding_fragP->tc_frag_data.padding_address = 0;
11991 padding_size = 0;
11992 }
11993 else
11994 /* Store the expected address of the padding frag. */
11995 padding_fragP->tc_frag_data.padding_address
11996 = (fragP->fr_address + padding_size
11997 + fragP->tc_frag_data.padding_address);
11998
11999 fragP->tc_frag_data.prefix_length = padding_size;
12000
12001 /* Update the length for the current interation. */
12002 left_size = padding_size;
12003 for (next_fragP = fragP;
12004 next_fragP != padding_fragP;
12005 next_fragP = next_fragP->fr_next)
12006 if (next_fragP->fr_type == rs_machine_dependent
12007 && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
12008 == BRANCH_PREFIX))
12009 {
12010 if (left_size)
12011 {
12012 int max = next_fragP->tc_frag_data.max_bytes;
12013 if (max)
12014 {
12015 int size;
12016 if (max > left_size)
12017 size = left_size;
12018 else
12019 size = max;
12020 left_size -= size;
12021 next_fragP->tc_frag_data.length = size;
12022 }
12023 }
12024 else
12025 next_fragP->tc_frag_data.length = 0;
12026 }
12027
12028 return (fragP->tc_frag_data.length
12029 - fragP->tc_frag_data.last_length);
12030 }
12031 return relax_frag (segment, fragP, stretch);
12032}
12033
ee7fcc42
AM
12034/* md_estimate_size_before_relax()
12035
12036 Called just before relax() for rs_machine_dependent frags. The x86
12037 assembler uses these frags to handle variable size jump
12038 instructions.
12039
12040 Any symbol that is now undefined will not become defined.
12041 Return the correct fr_subtype in the frag.
12042 Return the initial "guess for variable size of frag" to caller.
12043 The guess is actually the growth beyond the fixed part. Whatever
12044 we do to grow the fixed or variable part contributes to our
12045 returned value. */
12046
252b5132 12047int
7016a5d5 12048md_estimate_size_before_relax (fragS *fragP, segT segment)
252b5132 12049{
e379e5f3
L
12050 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
12051 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX
12052 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
12053 {
12054 i386_classify_machine_dependent_frag (fragP);
12055 return fragP->tc_frag_data.length;
12056 }
12057
252b5132 12058 /* We've already got fragP->fr_subtype right; all we have to do is
b98ef147
AM
12059 check for un-relaxable symbols. On an ELF system, we can't relax
12060 an externally visible symbol, because it may be overridden by a
12061 shared library. */
12062 if (S_GET_SEGMENT (fragP->fr_symbol) != segment
6d249963 12063#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 12064 || (IS_ELF
8dcea932
L
12065 && !elf_symbol_resolved_in_segment_p (fragP->fr_symbol,
12066 fragP->fr_var))
fbeb56a4
DK
12067#endif
12068#if defined (OBJ_COFF) && defined (TE_PE)
7ab9ffdd 12069 || (OUTPUT_FLAVOR == bfd_target_coff_flavour
fbeb56a4 12070 && S_IS_WEAK (fragP->fr_symbol))
b98ef147
AM
12071#endif
12072 )
252b5132 12073 {
b98ef147
AM
12074 /* Symbol is undefined in this segment, or we need to keep a
12075 reloc so that weak symbols can be overridden. */
12076 int size = (fragP->fr_subtype & CODE16) ? 2 : 4;
f86103b7 12077 enum bfd_reloc_code_real reloc_type;
ee7fcc42
AM
12078 unsigned char *opcode;
12079 int old_fr_fix;
f6af82bd 12080
ee7fcc42 12081 if (fragP->fr_var != NO_RELOC)
1e9cc1c2 12082 reloc_type = (enum bfd_reloc_code_real) fragP->fr_var;
b98ef147 12083 else if (size == 2)
f6af82bd 12084 reloc_type = BFD_RELOC_16_PCREL;
bd7ab16b
L
12085#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
12086 else if (need_plt32_p (fragP->fr_symbol))
12087 reloc_type = BFD_RELOC_X86_64_PLT32;
12088#endif
f6af82bd
AM
12089 else
12090 reloc_type = BFD_RELOC_32_PCREL;
252b5132 12091
ee7fcc42
AM
12092 old_fr_fix = fragP->fr_fix;
12093 opcode = (unsigned char *) fragP->fr_opcode;
12094
fddf5b5b 12095 switch (TYPE_FROM_RELAX_STATE (fragP->fr_subtype))
252b5132 12096 {
fddf5b5b
AM
12097 case UNCOND_JUMP:
12098 /* Make jmp (0xeb) a (d)word displacement jump. */
47926f60 12099 opcode[0] = 0xe9;
252b5132 12100 fragP->fr_fix += size;
062cd5e7
AS
12101 fix_new (fragP, old_fr_fix, size,
12102 fragP->fr_symbol,
12103 fragP->fr_offset, 1,
12104 reloc_type);
252b5132
RH
12105 break;
12106
fddf5b5b 12107 case COND_JUMP86:
412167cb
AM
12108 if (size == 2
12109 && (!no_cond_jump_promotion || fragP->fr_var != NO_RELOC))
fddf5b5b
AM
12110 {
12111 /* Negate the condition, and branch past an
12112 unconditional jump. */
12113 opcode[0] ^= 1;
12114 opcode[1] = 3;
12115 /* Insert an unconditional jump. */
12116 opcode[2] = 0xe9;
12117 /* We added two extra opcode bytes, and have a two byte
12118 offset. */
12119 fragP->fr_fix += 2 + 2;
062cd5e7
AS
12120 fix_new (fragP, old_fr_fix + 2, 2,
12121 fragP->fr_symbol,
12122 fragP->fr_offset, 1,
12123 reloc_type);
fddf5b5b
AM
12124 break;
12125 }
12126 /* Fall through. */
12127
12128 case COND_JUMP:
412167cb
AM
12129 if (no_cond_jump_promotion && fragP->fr_var == NO_RELOC)
12130 {
3e02c1cc
AM
12131 fixS *fixP;
12132
412167cb 12133 fragP->fr_fix += 1;
3e02c1cc
AM
12134 fixP = fix_new (fragP, old_fr_fix, 1,
12135 fragP->fr_symbol,
12136 fragP->fr_offset, 1,
12137 BFD_RELOC_8_PCREL);
12138 fixP->fx_signed = 1;
412167cb
AM
12139 break;
12140 }
93c2a809 12141
24eab124 12142 /* This changes the byte-displacement jump 0x7N
fddf5b5b 12143 to the (d)word-displacement jump 0x0f,0x8N. */
252b5132 12144 opcode[1] = opcode[0] + 0x10;
f6af82bd 12145 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
47926f60
KH
12146 /* We've added an opcode byte. */
12147 fragP->fr_fix += 1 + size;
062cd5e7
AS
12148 fix_new (fragP, old_fr_fix + 1, size,
12149 fragP->fr_symbol,
12150 fragP->fr_offset, 1,
12151 reloc_type);
252b5132 12152 break;
fddf5b5b
AM
12153
12154 default:
12155 BAD_CASE (fragP->fr_subtype);
12156 break;
252b5132
RH
12157 }
12158 frag_wane (fragP);
ee7fcc42 12159 return fragP->fr_fix - old_fr_fix;
252b5132 12160 }
93c2a809 12161
93c2a809
AM
12162 /* Guess size depending on current relax state. Initially the relax
12163 state will correspond to a short jump and we return 1, because
12164 the variable part of the frag (the branch offset) is one byte
12165 long. However, we can relax a section more than once and in that
12166 case we must either set fr_subtype back to the unrelaxed state,
12167 or return the value for the appropriate branch. */
12168 return md_relax_table[fragP->fr_subtype].rlx_length;
ee7fcc42
AM
12169}
12170
47926f60
KH
12171/* Called after relax() is finished.
12172
12173 In: Address of frag.
12174 fr_type == rs_machine_dependent.
12175 fr_subtype is what the address relaxed to.
12176
12177 Out: Any fixSs and constants are set up.
12178 Caller will turn frag into a ".space 0". */
12179
252b5132 12180void
7016a5d5
TG
12181md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec ATTRIBUTE_UNUSED,
12182 fragS *fragP)
252b5132 12183{
29b0f896 12184 unsigned char *opcode;
252b5132 12185 unsigned char *where_to_put_displacement = NULL;
847f7ad4
AM
12186 offsetT target_address;
12187 offsetT opcode_address;
252b5132 12188 unsigned int extension = 0;
847f7ad4 12189 offsetT displacement_from_opcode_start;
252b5132 12190
e379e5f3
L
12191 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
12192 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING
12193 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
12194 {
12195 /* Generate nop padding. */
12196 unsigned int size = fragP->tc_frag_data.length;
12197 if (size)
12198 {
12199 if (size > fragP->tc_frag_data.max_bytes)
12200 abort ();
12201
12202 if (flag_debug)
12203 {
12204 const char *msg;
12205 const char *branch = "branch";
12206 const char *prefix = "";
12207 fragS *padding_fragP;
12208 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
12209 == BRANCH_PREFIX)
12210 {
12211 padding_fragP = fragP->tc_frag_data.u.padding_fragP;
12212 switch (fragP->tc_frag_data.default_prefix)
12213 {
12214 default:
12215 abort ();
12216 break;
12217 case CS_PREFIX_OPCODE:
12218 prefix = " cs";
12219 break;
12220 case DS_PREFIX_OPCODE:
12221 prefix = " ds";
12222 break;
12223 case ES_PREFIX_OPCODE:
12224 prefix = " es";
12225 break;
12226 case FS_PREFIX_OPCODE:
12227 prefix = " fs";
12228 break;
12229 case GS_PREFIX_OPCODE:
12230 prefix = " gs";
12231 break;
12232 case SS_PREFIX_OPCODE:
12233 prefix = " ss";
12234 break;
12235 }
12236 if (padding_fragP)
12237 msg = _("%s:%u: add %d%s at 0x%llx to align "
12238 "%s within %d-byte boundary\n");
12239 else
12240 msg = _("%s:%u: add additional %d%s at 0x%llx to "
12241 "align %s within %d-byte boundary\n");
12242 }
12243 else
12244 {
12245 padding_fragP = fragP;
12246 msg = _("%s:%u: add %d%s-byte nop at 0x%llx to align "
12247 "%s within %d-byte boundary\n");
12248 }
12249
12250 if (padding_fragP)
12251 switch (padding_fragP->tc_frag_data.branch_type)
12252 {
12253 case align_branch_jcc:
12254 branch = "jcc";
12255 break;
12256 case align_branch_fused:
12257 branch = "fused jcc";
12258 break;
12259 case align_branch_jmp:
12260 branch = "jmp";
12261 break;
12262 case align_branch_call:
12263 branch = "call";
12264 break;
12265 case align_branch_indirect:
12266 branch = "indiret branch";
12267 break;
12268 case align_branch_ret:
12269 branch = "ret";
12270 break;
12271 default:
12272 break;
12273 }
12274
12275 fprintf (stdout, msg,
12276 fragP->fr_file, fragP->fr_line, size, prefix,
12277 (long long) fragP->fr_address, branch,
12278 1 << align_branch_power);
12279 }
12280 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
12281 memset (fragP->fr_opcode,
12282 fragP->tc_frag_data.default_prefix, size);
12283 else
12284 i386_generate_nops (fragP, (char *) fragP->fr_opcode,
12285 size, 0);
12286 fragP->fr_fix += size;
12287 }
12288 return;
12289 }
12290
252b5132
RH
12291 opcode = (unsigned char *) fragP->fr_opcode;
12292
47926f60 12293 /* Address we want to reach in file space. */
252b5132 12294 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
252b5132 12295
47926f60 12296 /* Address opcode resides at in file space. */
252b5132
RH
12297 opcode_address = fragP->fr_address + fragP->fr_fix;
12298
47926f60 12299 /* Displacement from opcode start to fill into instruction. */
252b5132
RH
12300 displacement_from_opcode_start = target_address - opcode_address;
12301
fddf5b5b 12302 if ((fragP->fr_subtype & BIG) == 0)
252b5132 12303 {
47926f60
KH
12304 /* Don't have to change opcode. */
12305 extension = 1; /* 1 opcode + 1 displacement */
252b5132 12306 where_to_put_displacement = &opcode[1];
fddf5b5b
AM
12307 }
12308 else
12309 {
12310 if (no_cond_jump_promotion
12311 && TYPE_FROM_RELAX_STATE (fragP->fr_subtype) != UNCOND_JUMP)
4eed87de
AM
12312 as_warn_where (fragP->fr_file, fragP->fr_line,
12313 _("long jump required"));
252b5132 12314
fddf5b5b
AM
12315 switch (fragP->fr_subtype)
12316 {
12317 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG):
12318 extension = 4; /* 1 opcode + 4 displacement */
12319 opcode[0] = 0xe9;
12320 where_to_put_displacement = &opcode[1];
12321 break;
252b5132 12322
fddf5b5b
AM
12323 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16):
12324 extension = 2; /* 1 opcode + 2 displacement */
12325 opcode[0] = 0xe9;
12326 where_to_put_displacement = &opcode[1];
12327 break;
252b5132 12328
fddf5b5b
AM
12329 case ENCODE_RELAX_STATE (COND_JUMP, BIG):
12330 case ENCODE_RELAX_STATE (COND_JUMP86, BIG):
12331 extension = 5; /* 2 opcode + 4 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_JUMP, BIG16):
12338 extension = 3; /* 2 opcode + 2 displacement */
12339 opcode[1] = opcode[0] + 0x10;
12340 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
12341 where_to_put_displacement = &opcode[2];
12342 break;
252b5132 12343
fddf5b5b
AM
12344 case ENCODE_RELAX_STATE (COND_JUMP86, BIG16):
12345 extension = 4;
12346 opcode[0] ^= 1;
12347 opcode[1] = 3;
12348 opcode[2] = 0xe9;
12349 where_to_put_displacement = &opcode[3];
12350 break;
12351
12352 default:
12353 BAD_CASE (fragP->fr_subtype);
12354 break;
12355 }
252b5132 12356 }
fddf5b5b 12357
7b81dfbb
AJ
12358 /* If size if less then four we are sure that the operand fits,
12359 but if it's 4, then it could be that the displacement is larger
12360 then -/+ 2GB. */
12361 if (DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype) == 4
12362 && object_64bit
12363 && ((addressT) (displacement_from_opcode_start - extension
4eed87de
AM
12364 + ((addressT) 1 << 31))
12365 > (((addressT) 2 << 31) - 1)))
7b81dfbb
AJ
12366 {
12367 as_bad_where (fragP->fr_file, fragP->fr_line,
12368 _("jump target out of range"));
12369 /* Make us emit 0. */
12370 displacement_from_opcode_start = extension;
12371 }
47926f60 12372 /* Now put displacement after opcode. */
252b5132
RH
12373 md_number_to_chars ((char *) where_to_put_displacement,
12374 (valueT) (displacement_from_opcode_start - extension),
fddf5b5b 12375 DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
252b5132
RH
12376 fragP->fr_fix += extension;
12377}
12378\f
7016a5d5 12379/* Apply a fixup (fixP) to segment data, once it has been determined
252b5132
RH
12380 by our caller that we have all the info we need to fix it up.
12381
7016a5d5
TG
12382 Parameter valP is the pointer to the value of the bits.
12383
252b5132
RH
12384 On the 386, immediates, displacements, and data pointers are all in
12385 the same (little-endian) format, so we don't need to care about which
12386 we are handling. */
12387
94f592af 12388void
7016a5d5 12389md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 12390{
94f592af 12391 char *p = fixP->fx_where + fixP->fx_frag->fr_literal;
c6682705 12392 valueT value = *valP;
252b5132 12393
f86103b7 12394#if !defined (TE_Mach)
93382f6d
AM
12395 if (fixP->fx_pcrel)
12396 {
12397 switch (fixP->fx_r_type)
12398 {
5865bb77
ILT
12399 default:
12400 break;
12401
d6ab8113
JB
12402 case BFD_RELOC_64:
12403 fixP->fx_r_type = BFD_RELOC_64_PCREL;
12404 break;
93382f6d 12405 case BFD_RELOC_32:
ae8887b5 12406 case BFD_RELOC_X86_64_32S:
93382f6d
AM
12407 fixP->fx_r_type = BFD_RELOC_32_PCREL;
12408 break;
12409 case BFD_RELOC_16:
12410 fixP->fx_r_type = BFD_RELOC_16_PCREL;
12411 break;
12412 case BFD_RELOC_8:
12413 fixP->fx_r_type = BFD_RELOC_8_PCREL;
12414 break;
12415 }
12416 }
252b5132 12417
a161fe53 12418 if (fixP->fx_addsy != NULL
31312f95 12419 && (fixP->fx_r_type == BFD_RELOC_32_PCREL
d6ab8113 12420 || fixP->fx_r_type == BFD_RELOC_64_PCREL
31312f95 12421 || fixP->fx_r_type == BFD_RELOC_16_PCREL
d258b828 12422 || fixP->fx_r_type == BFD_RELOC_8_PCREL)
31312f95 12423 && !use_rela_relocations)
252b5132 12424 {
31312f95
AM
12425 /* This is a hack. There should be a better way to handle this.
12426 This covers for the fact that bfd_install_relocation will
12427 subtract the current location (for partial_inplace, PC relative
12428 relocations); see more below. */
252b5132 12429#ifndef OBJ_AOUT
718ddfc0 12430 if (IS_ELF
252b5132
RH
12431#ifdef TE_PE
12432 || OUTPUT_FLAVOR == bfd_target_coff_flavour
12433#endif
12434 )
12435 value += fixP->fx_where + fixP->fx_frag->fr_address;
12436#endif
12437#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 12438 if (IS_ELF)
252b5132 12439 {
6539b54b 12440 segT sym_seg = S_GET_SEGMENT (fixP->fx_addsy);
2f66722d 12441
6539b54b 12442 if ((sym_seg == seg
2f66722d 12443 || (symbol_section_p (fixP->fx_addsy)
6539b54b 12444 && sym_seg != absolute_section))
af65af87 12445 && !generic_force_reloc (fixP))
2f66722d
AM
12446 {
12447 /* Yes, we add the values in twice. This is because
6539b54b
AM
12448 bfd_install_relocation subtracts them out again. I think
12449 bfd_install_relocation is broken, but I don't dare change
2f66722d
AM
12450 it. FIXME. */
12451 value += fixP->fx_where + fixP->fx_frag->fr_address;
12452 }
252b5132
RH
12453 }
12454#endif
12455#if defined (OBJ_COFF) && defined (TE_PE)
977cdf5a
NC
12456 /* For some reason, the PE format does not store a
12457 section address offset for a PC relative symbol. */
12458 if (S_GET_SEGMENT (fixP->fx_addsy) != seg
7be1c489 12459 || S_IS_WEAK (fixP->fx_addsy))
252b5132
RH
12460 value += md_pcrel_from (fixP);
12461#endif
12462 }
fbeb56a4 12463#if defined (OBJ_COFF) && defined (TE_PE)
f01c1a09
NC
12464 if (fixP->fx_addsy != NULL
12465 && S_IS_WEAK (fixP->fx_addsy)
12466 /* PR 16858: Do not modify weak function references. */
12467 && ! fixP->fx_pcrel)
fbeb56a4 12468 {
296a8689
NC
12469#if !defined (TE_PEP)
12470 /* For x86 PE weak function symbols are neither PC-relative
12471 nor do they set S_IS_FUNCTION. So the only reliable way
12472 to detect them is to check the flags of their containing
12473 section. */
12474 if (S_GET_SEGMENT (fixP->fx_addsy) != NULL
12475 && S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_CODE)
12476 ;
12477 else
12478#endif
fbeb56a4
DK
12479 value -= S_GET_VALUE (fixP->fx_addsy);
12480 }
12481#endif
252b5132
RH
12482
12483 /* Fix a few things - the dynamic linker expects certain values here,
0234cb7c 12484 and we must not disappoint it. */
252b5132 12485#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 12486 if (IS_ELF && fixP->fx_addsy)
47926f60
KH
12487 switch (fixP->fx_r_type)
12488 {
12489 case BFD_RELOC_386_PLT32:
3e73aa7c 12490 case BFD_RELOC_X86_64_PLT32:
b9519cfe
L
12491 /* Make the jump instruction point to the address of the operand.
12492 At runtime we merely add the offset to the actual PLT entry.
12493 NB: Subtract the offset size only for jump instructions. */
12494 if (fixP->fx_pcrel)
12495 value = -4;
47926f60 12496 break;
31312f95 12497
13ae64f3
JJ
12498 case BFD_RELOC_386_TLS_GD:
12499 case BFD_RELOC_386_TLS_LDM:
13ae64f3 12500 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
12501 case BFD_RELOC_386_TLS_IE:
12502 case BFD_RELOC_386_TLS_GOTIE:
67a4f2b7 12503 case BFD_RELOC_386_TLS_GOTDESC:
bffbf940
JJ
12504 case BFD_RELOC_X86_64_TLSGD:
12505 case BFD_RELOC_X86_64_TLSLD:
12506 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7 12507 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
00f7efb6
JJ
12508 value = 0; /* Fully resolved at runtime. No addend. */
12509 /* Fallthrough */
12510 case BFD_RELOC_386_TLS_LE:
12511 case BFD_RELOC_386_TLS_LDO_32:
12512 case BFD_RELOC_386_TLS_LE_32:
12513 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 12514 case BFD_RELOC_X86_64_DTPOFF64:
00f7efb6 12515 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113 12516 case BFD_RELOC_X86_64_TPOFF64:
00f7efb6
JJ
12517 S_SET_THREAD_LOCAL (fixP->fx_addsy);
12518 break;
12519
67a4f2b7
AO
12520 case BFD_RELOC_386_TLS_DESC_CALL:
12521 case BFD_RELOC_X86_64_TLSDESC_CALL:
12522 value = 0; /* Fully resolved at runtime. No addend. */
12523 S_SET_THREAD_LOCAL (fixP->fx_addsy);
12524 fixP->fx_done = 0;
12525 return;
12526
47926f60
KH
12527 case BFD_RELOC_VTABLE_INHERIT:
12528 case BFD_RELOC_VTABLE_ENTRY:
12529 fixP->fx_done = 0;
94f592af 12530 return;
47926f60
KH
12531
12532 default:
12533 break;
12534 }
12535#endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) */
c6682705 12536 *valP = value;
f86103b7 12537#endif /* !defined (TE_Mach) */
3e73aa7c 12538
3e73aa7c 12539 /* Are we finished with this relocation now? */
c6682705 12540 if (fixP->fx_addsy == NULL)
3e73aa7c 12541 fixP->fx_done = 1;
fbeb56a4
DK
12542#if defined (OBJ_COFF) && defined (TE_PE)
12543 else if (fixP->fx_addsy != NULL && S_IS_WEAK (fixP->fx_addsy))
12544 {
12545 fixP->fx_done = 0;
12546 /* Remember value for tc_gen_reloc. */
12547 fixP->fx_addnumber = value;
12548 /* Clear out the frag for now. */
12549 value = 0;
12550 }
12551#endif
3e73aa7c
JH
12552 else if (use_rela_relocations)
12553 {
12554 fixP->fx_no_overflow = 1;
062cd5e7
AS
12555 /* Remember value for tc_gen_reloc. */
12556 fixP->fx_addnumber = value;
3e73aa7c
JH
12557 value = 0;
12558 }
f86103b7 12559
94f592af 12560 md_number_to_chars (p, value, fixP->fx_size);
252b5132 12561}
252b5132 12562\f
6d4af3c2 12563const char *
499ac353 12564md_atof (int type, char *litP, int *sizeP)
252b5132 12565{
499ac353
NC
12566 /* This outputs the LITTLENUMs in REVERSE order;
12567 in accord with the bigendian 386. */
12568 return ieee_md_atof (type, litP, sizeP, FALSE);
252b5132
RH
12569}
12570\f
2d545b82 12571static char output_invalid_buf[sizeof (unsigned char) * 2 + 6];
252b5132 12572
252b5132 12573static char *
e3bb37b5 12574output_invalid (int c)
252b5132 12575{
3882b010 12576 if (ISPRINT (c))
f9f21a03
L
12577 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
12578 "'%c'", c);
252b5132 12579 else
f9f21a03 12580 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
2d545b82 12581 "(0x%x)", (unsigned char) c);
252b5132
RH
12582 return output_invalid_buf;
12583}
12584
8a6fb3f9
JB
12585/* Verify that @r can be used in the current context. */
12586
12587static bfd_boolean check_register (const reg_entry *r)
12588{
12589 if (allow_pseudo_reg)
12590 return TRUE;
12591
12592 if (operand_type_all_zero (&r->reg_type))
12593 return FALSE;
12594
12595 if ((r->reg_type.bitfield.dword
12596 || (r->reg_type.bitfield.class == SReg && r->reg_num > 3)
12597 || r->reg_type.bitfield.class == RegCR
22e00a3f 12598 || r->reg_type.bitfield.class == RegDR)
8a6fb3f9
JB
12599 && !cpu_arch_flags.bitfield.cpui386)
12600 return FALSE;
12601
22e00a3f
JB
12602 if (r->reg_type.bitfield.class == RegTR
12603 && (flag_code == CODE_64BIT
12604 || !cpu_arch_flags.bitfield.cpui386
12605 || cpu_arch_isa_flags.bitfield.cpui586
12606 || cpu_arch_isa_flags.bitfield.cpui686))
12607 return FALSE;
12608
8a6fb3f9
JB
12609 if (r->reg_type.bitfield.class == RegMMX && !cpu_arch_flags.bitfield.cpummx)
12610 return FALSE;
12611
12612 if (!cpu_arch_flags.bitfield.cpuavx512f)
12613 {
12614 if (r->reg_type.bitfield.zmmword
12615 || r->reg_type.bitfield.class == RegMask)
12616 return FALSE;
12617
12618 if (!cpu_arch_flags.bitfield.cpuavx)
12619 {
12620 if (r->reg_type.bitfield.ymmword)
12621 return FALSE;
12622
12623 if (!cpu_arch_flags.bitfield.cpusse && r->reg_type.bitfield.xmmword)
12624 return FALSE;
12625 }
12626 }
12627
260cd341
LC
12628 if (r->reg_type.bitfield.tmmword
12629 && (!cpu_arch_flags.bitfield.cpuamx_tile
12630 || flag_code != CODE_64BIT))
12631 return FALSE;
12632
8a6fb3f9
JB
12633 if (r->reg_type.bitfield.class == RegBND && !cpu_arch_flags.bitfield.cpumpx)
12634 return FALSE;
12635
12636 /* Don't allow fake index register unless allow_index_reg isn't 0. */
12637 if (!allow_index_reg && r->reg_num == RegIZ)
12638 return FALSE;
12639
12640 /* Upper 16 vector registers are only available with VREX in 64bit
12641 mode, and require EVEX encoding. */
12642 if (r->reg_flags & RegVRex)
12643 {
12644 if (!cpu_arch_flags.bitfield.cpuavx512f
12645 || flag_code != CODE_64BIT)
12646 return FALSE;
12647
da4977e0
JB
12648 if (i.vec_encoding == vex_encoding_default)
12649 i.vec_encoding = vex_encoding_evex;
12650 else if (i.vec_encoding != vex_encoding_evex)
12651 i.vec_encoding = vex_encoding_error;
8a6fb3f9
JB
12652 }
12653
12654 if (((r->reg_flags & (RegRex64 | RegRex)) || r->reg_type.bitfield.qword)
12655 && (!cpu_arch_flags.bitfield.cpulm || r->reg_type.bitfield.class != RegCR)
12656 && flag_code != CODE_64BIT)
12657 return FALSE;
12658
12659 if (r->reg_type.bitfield.class == SReg && r->reg_num == RegFlat
12660 && !intel_syntax)
12661 return FALSE;
12662
12663 return TRUE;
12664}
12665
af6bdddf 12666/* REG_STRING starts *before* REGISTER_PREFIX. */
252b5132
RH
12667
12668static const reg_entry *
4d1bb795 12669parse_real_register (char *reg_string, char **end_op)
252b5132 12670{
af6bdddf
AM
12671 char *s = reg_string;
12672 char *p;
252b5132
RH
12673 char reg_name_given[MAX_REG_NAME_SIZE + 1];
12674 const reg_entry *r;
12675
12676 /* Skip possible REGISTER_PREFIX and possible whitespace. */
12677 if (*s == REGISTER_PREFIX)
12678 ++s;
12679
12680 if (is_space_char (*s))
12681 ++s;
12682
12683 p = reg_name_given;
af6bdddf 12684 while ((*p++ = register_chars[(unsigned char) *s]) != '\0')
252b5132
RH
12685 {
12686 if (p >= reg_name_given + MAX_REG_NAME_SIZE)
af6bdddf
AM
12687 return (const reg_entry *) NULL;
12688 s++;
252b5132
RH
12689 }
12690
6588847e
DN
12691 /* For naked regs, make sure that we are not dealing with an identifier.
12692 This prevents confusing an identifier like `eax_var' with register
12693 `eax'. */
12694 if (allow_naked_reg && identifier_chars[(unsigned char) *s])
12695 return (const reg_entry *) NULL;
12696
af6bdddf 12697 *end_op = s;
252b5132 12698
629310ab 12699 r = (const reg_entry *) str_hash_find (reg_hash, reg_name_given);
252b5132 12700
5f47d35b 12701 /* Handle floating point regs, allowing spaces in the (i) part. */
47926f60 12702 if (r == i386_regtab /* %st is first entry of table */)
5f47d35b 12703 {
0e0eea78
JB
12704 if (!cpu_arch_flags.bitfield.cpu8087
12705 && !cpu_arch_flags.bitfield.cpu287
af32b722
JB
12706 && !cpu_arch_flags.bitfield.cpu387
12707 && !allow_pseudo_reg)
0e0eea78
JB
12708 return (const reg_entry *) NULL;
12709
5f47d35b
AM
12710 if (is_space_char (*s))
12711 ++s;
12712 if (*s == '(')
12713 {
af6bdddf 12714 ++s;
5f47d35b
AM
12715 if (is_space_char (*s))
12716 ++s;
12717 if (*s >= '0' && *s <= '7')
12718 {
db557034 12719 int fpr = *s - '0';
af6bdddf 12720 ++s;
5f47d35b
AM
12721 if (is_space_char (*s))
12722 ++s;
12723 if (*s == ')')
12724 {
12725 *end_op = s + 1;
629310ab 12726 r = (const reg_entry *) str_hash_find (reg_hash, "st(0)");
db557034
AM
12727 know (r);
12728 return r + fpr;
5f47d35b 12729 }
5f47d35b 12730 }
47926f60 12731 /* We have "%st(" then garbage. */
5f47d35b
AM
12732 return (const reg_entry *) NULL;
12733 }
12734 }
12735
8a6fb3f9 12736 return r && check_register (r) ? r : NULL;
252b5132 12737}
4d1bb795
JB
12738
12739/* REG_STRING starts *before* REGISTER_PREFIX. */
12740
12741static const reg_entry *
12742parse_register (char *reg_string, char **end_op)
12743{
12744 const reg_entry *r;
12745
12746 if (*reg_string == REGISTER_PREFIX || allow_naked_reg)
12747 r = parse_real_register (reg_string, end_op);
12748 else
12749 r = NULL;
12750 if (!r)
12751 {
12752 char *save = input_line_pointer;
12753 char c;
12754 symbolS *symbolP;
12755
12756 input_line_pointer = reg_string;
d02603dc 12757 c = get_symbol_name (&reg_string);
4d1bb795
JB
12758 symbolP = symbol_find (reg_string);
12759 if (symbolP && S_GET_SEGMENT (symbolP) == reg_section)
12760 {
12761 const expressionS *e = symbol_get_value_expression (symbolP);
12762
0398aac5 12763 know (e->X_op == O_register);
4eed87de 12764 know (e->X_add_number >= 0
c3fe08fa 12765 && (valueT) e->X_add_number < i386_regtab_size);
4d1bb795 12766 r = i386_regtab + e->X_add_number;
8a6fb3f9
JB
12767 if (!check_register (r))
12768 {
12769 as_bad (_("register '%s%s' cannot be used here"),
12770 register_prefix, r->reg_name);
12771 r = &bad_reg;
12772 }
4d1bb795
JB
12773 *end_op = input_line_pointer;
12774 }
12775 *input_line_pointer = c;
12776 input_line_pointer = save;
12777 }
12778 return r;
12779}
12780
12781int
12782i386_parse_name (char *name, expressionS *e, char *nextcharP)
12783{
12784 const reg_entry *r;
12785 char *end = input_line_pointer;
12786
12787 *end = *nextcharP;
12788 r = parse_register (name, &input_line_pointer);
12789 if (r && end <= input_line_pointer)
12790 {
12791 *nextcharP = *input_line_pointer;
12792 *input_line_pointer = 0;
8a6fb3f9
JB
12793 if (r != &bad_reg)
12794 {
12795 e->X_op = O_register;
12796 e->X_add_number = r - i386_regtab;
12797 }
12798 else
12799 e->X_op = O_illegal;
4d1bb795
JB
12800 return 1;
12801 }
12802 input_line_pointer = end;
12803 *end = 0;
ee86248c 12804 return intel_syntax ? i386_intel_parse_name (name, e) : 0;
4d1bb795
JB
12805}
12806
12807void
12808md_operand (expressionS *e)
12809{
ee86248c
JB
12810 char *end;
12811 const reg_entry *r;
4d1bb795 12812
ee86248c
JB
12813 switch (*input_line_pointer)
12814 {
12815 case REGISTER_PREFIX:
12816 r = parse_real_register (input_line_pointer, &end);
4d1bb795
JB
12817 if (r)
12818 {
12819 e->X_op = O_register;
12820 e->X_add_number = r - i386_regtab;
12821 input_line_pointer = end;
12822 }
ee86248c
JB
12823 break;
12824
12825 case '[':
9c2799c2 12826 gas_assert (intel_syntax);
ee86248c
JB
12827 end = input_line_pointer++;
12828 expression (e);
12829 if (*input_line_pointer == ']')
12830 {
12831 ++input_line_pointer;
12832 e->X_op_symbol = make_expr_symbol (e);
12833 e->X_add_symbol = NULL;
12834 e->X_add_number = 0;
12835 e->X_op = O_index;
12836 }
12837 else
12838 {
12839 e->X_op = O_absent;
12840 input_line_pointer = end;
12841 }
12842 break;
4d1bb795
JB
12843 }
12844}
12845
252b5132 12846\f
4cc782b5 12847#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
b6f8c7c4 12848const char *md_shortopts = "kVQ:sqnO::";
252b5132 12849#else
b6f8c7c4 12850const char *md_shortopts = "qnO::";
252b5132 12851#endif
6e0b89ee 12852
3e73aa7c 12853#define OPTION_32 (OPTION_MD_BASE + 0)
b3b91714
AM
12854#define OPTION_64 (OPTION_MD_BASE + 1)
12855#define OPTION_DIVIDE (OPTION_MD_BASE + 2)
9103f4f4
L
12856#define OPTION_MARCH (OPTION_MD_BASE + 3)
12857#define OPTION_MTUNE (OPTION_MD_BASE + 4)
1efbbeb4
L
12858#define OPTION_MMNEMONIC (OPTION_MD_BASE + 5)
12859#define OPTION_MSYNTAX (OPTION_MD_BASE + 6)
12860#define OPTION_MINDEX_REG (OPTION_MD_BASE + 7)
12861#define OPTION_MNAKED_REG (OPTION_MD_BASE + 8)
bd5dea88 12862#define OPTION_MRELAX_RELOCATIONS (OPTION_MD_BASE + 9)
c0f3af97 12863#define OPTION_MSSE2AVX (OPTION_MD_BASE + 10)
daf50ae7 12864#define OPTION_MSSE_CHECK (OPTION_MD_BASE + 11)
7bab8ab5
JB
12865#define OPTION_MOPERAND_CHECK (OPTION_MD_BASE + 12)
12866#define OPTION_MAVXSCALAR (OPTION_MD_BASE + 13)
12867#define OPTION_X32 (OPTION_MD_BASE + 14)
7e8b059b 12868#define OPTION_MADD_BND_PREFIX (OPTION_MD_BASE + 15)
43234a1e
L
12869#define OPTION_MEVEXLIG (OPTION_MD_BASE + 16)
12870#define OPTION_MEVEXWIG (OPTION_MD_BASE + 17)
167ad85b 12871#define OPTION_MBIG_OBJ (OPTION_MD_BASE + 18)
d1982f93 12872#define OPTION_MOMIT_LOCK_PREFIX (OPTION_MD_BASE + 19)
d3d3c6db 12873#define OPTION_MEVEXRCIG (OPTION_MD_BASE + 20)
8dcea932 12874#define OPTION_MSHARED (OPTION_MD_BASE + 21)
5db04b09
L
12875#define OPTION_MAMD64 (OPTION_MD_BASE + 22)
12876#define OPTION_MINTEL64 (OPTION_MD_BASE + 23)
e4e00185 12877#define OPTION_MFENCE_AS_LOCK_ADD (OPTION_MD_BASE + 24)
b4a3a7b4 12878#define OPTION_X86_USED_NOTE (OPTION_MD_BASE + 25)
03751133 12879#define OPTION_MVEXWIG (OPTION_MD_BASE + 26)
e379e5f3
L
12880#define OPTION_MALIGN_BRANCH_BOUNDARY (OPTION_MD_BASE + 27)
12881#define OPTION_MALIGN_BRANCH_PREFIX_SIZE (OPTION_MD_BASE + 28)
12882#define OPTION_MALIGN_BRANCH (OPTION_MD_BASE + 29)
76cf450b 12883#define OPTION_MBRANCHES_WITH_32B_BOUNDARIES (OPTION_MD_BASE + 30)
ae531041
L
12884#define OPTION_MLFENCE_AFTER_LOAD (OPTION_MD_BASE + 31)
12885#define OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH (OPTION_MD_BASE + 32)
12886#define OPTION_MLFENCE_BEFORE_RET (OPTION_MD_BASE + 33)
b3b91714 12887
99ad8390
NC
12888struct option md_longopts[] =
12889{
3e73aa7c 12890 {"32", no_argument, NULL, OPTION_32},
321098a5 12891#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 12892 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c 12893 {"64", no_argument, NULL, OPTION_64},
351f65ca
L
12894#endif
12895#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 12896 {"x32", no_argument, NULL, OPTION_X32},
8dcea932 12897 {"mshared", no_argument, NULL, OPTION_MSHARED},
b4a3a7b4 12898 {"mx86-used-note", required_argument, NULL, OPTION_X86_USED_NOTE},
6e0b89ee 12899#endif
b3b91714 12900 {"divide", no_argument, NULL, OPTION_DIVIDE},
9103f4f4
L
12901 {"march", required_argument, NULL, OPTION_MARCH},
12902 {"mtune", required_argument, NULL, OPTION_MTUNE},
1efbbeb4
L
12903 {"mmnemonic", required_argument, NULL, OPTION_MMNEMONIC},
12904 {"msyntax", required_argument, NULL, OPTION_MSYNTAX},
12905 {"mindex-reg", no_argument, NULL, OPTION_MINDEX_REG},
12906 {"mnaked-reg", no_argument, NULL, OPTION_MNAKED_REG},
c0f3af97 12907 {"msse2avx", no_argument, NULL, OPTION_MSSE2AVX},
daf50ae7 12908 {"msse-check", required_argument, NULL, OPTION_MSSE_CHECK},
7bab8ab5 12909 {"moperand-check", required_argument, NULL, OPTION_MOPERAND_CHECK},
539f890d 12910 {"mavxscalar", required_argument, NULL, OPTION_MAVXSCALAR},
03751133 12911 {"mvexwig", required_argument, NULL, OPTION_MVEXWIG},
7e8b059b 12912 {"madd-bnd-prefix", no_argument, NULL, OPTION_MADD_BND_PREFIX},
43234a1e
L
12913 {"mevexlig", required_argument, NULL, OPTION_MEVEXLIG},
12914 {"mevexwig", required_argument, NULL, OPTION_MEVEXWIG},
167ad85b
TG
12915# if defined (TE_PE) || defined (TE_PEP)
12916 {"mbig-obj", no_argument, NULL, OPTION_MBIG_OBJ},
12917#endif
d1982f93 12918 {"momit-lock-prefix", required_argument, NULL, OPTION_MOMIT_LOCK_PREFIX},
e4e00185 12919 {"mfence-as-lock-add", required_argument, NULL, OPTION_MFENCE_AS_LOCK_ADD},
0cb4071e 12920 {"mrelax-relocations", required_argument, NULL, OPTION_MRELAX_RELOCATIONS},
d3d3c6db 12921 {"mevexrcig", required_argument, NULL, OPTION_MEVEXRCIG},
e379e5f3
L
12922 {"malign-branch-boundary", required_argument, NULL, OPTION_MALIGN_BRANCH_BOUNDARY},
12923 {"malign-branch-prefix-size", required_argument, NULL, OPTION_MALIGN_BRANCH_PREFIX_SIZE},
12924 {"malign-branch", required_argument, NULL, OPTION_MALIGN_BRANCH},
76cf450b 12925 {"mbranches-within-32B-boundaries", no_argument, NULL, OPTION_MBRANCHES_WITH_32B_BOUNDARIES},
ae531041
L
12926 {"mlfence-after-load", required_argument, NULL, OPTION_MLFENCE_AFTER_LOAD},
12927 {"mlfence-before-indirect-branch", required_argument, NULL,
12928 OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH},
12929 {"mlfence-before-ret", required_argument, NULL, OPTION_MLFENCE_BEFORE_RET},
5db04b09
L
12930 {"mamd64", no_argument, NULL, OPTION_MAMD64},
12931 {"mintel64", no_argument, NULL, OPTION_MINTEL64},
252b5132
RH
12932 {NULL, no_argument, NULL, 0}
12933};
12934size_t md_longopts_size = sizeof (md_longopts);
12935
12936int
17b9d67d 12937md_parse_option (int c, const char *arg)
252b5132 12938{
91d6fa6a 12939 unsigned int j;
e379e5f3 12940 char *arch, *next, *saved, *type;
9103f4f4 12941
252b5132
RH
12942 switch (c)
12943 {
12b55ccc
L
12944 case 'n':
12945 optimize_align_code = 0;
12946 break;
12947
a38cf1db
AM
12948 case 'q':
12949 quiet_warnings = 1;
252b5132
RH
12950 break;
12951
12952#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
a38cf1db
AM
12953 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
12954 should be emitted or not. FIXME: Not implemented. */
12955 case 'Q':
d4693039
JB
12956 if ((arg[0] != 'y' && arg[0] != 'n') || arg[1])
12957 return 0;
252b5132
RH
12958 break;
12959
12960 /* -V: SVR4 argument to print version ID. */
12961 case 'V':
12962 print_version_id ();
12963 break;
12964
a38cf1db
AM
12965 /* -k: Ignore for FreeBSD compatibility. */
12966 case 'k':
252b5132 12967 break;
4cc782b5
ILT
12968
12969 case 's':
12970 /* -s: On i386 Solaris, this tells the native assembler to use
29b0f896 12971 .stab instead of .stab.excl. We always use .stab anyhow. */
4cc782b5 12972 break;
8dcea932
L
12973
12974 case OPTION_MSHARED:
12975 shared = 1;
12976 break;
b4a3a7b4
L
12977
12978 case OPTION_X86_USED_NOTE:
12979 if (strcasecmp (arg, "yes") == 0)
12980 x86_used_note = 1;
12981 else if (strcasecmp (arg, "no") == 0)
12982 x86_used_note = 0;
12983 else
12984 as_fatal (_("invalid -mx86-used-note= option: `%s'"), arg);
12985 break;
12986
12987
99ad8390 12988#endif
321098a5 12989#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 12990 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c
JH
12991 case OPTION_64:
12992 {
12993 const char **list, **l;
12994
3e73aa7c
JH
12995 list = bfd_target_list ();
12996 for (l = list; *l != NULL; l++)
08dedd66 12997 if (startswith (*l, "elf64-x86-64")
99ad8390
NC
12998 || strcmp (*l, "coff-x86-64") == 0
12999 || strcmp (*l, "pe-x86-64") == 0
d382c579
TG
13000 || strcmp (*l, "pei-x86-64") == 0
13001 || strcmp (*l, "mach-o-x86-64") == 0)
6e0b89ee
AM
13002 {
13003 default_arch = "x86_64";
13004 break;
13005 }
3e73aa7c 13006 if (*l == NULL)
2b5d6a91 13007 as_fatal (_("no compiled in support for x86_64"));
3e73aa7c
JH
13008 free (list);
13009 }
13010 break;
13011#endif
252b5132 13012
351f65ca 13013#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 13014 case OPTION_X32:
351f65ca
L
13015 if (IS_ELF)
13016 {
13017 const char **list, **l;
13018
13019 list = bfd_target_list ();
13020 for (l = list; *l != NULL; l++)
08dedd66 13021 if (startswith (*l, "elf32-x86-64"))
351f65ca
L
13022 {
13023 default_arch = "x86_64:32";
13024 break;
13025 }
13026 if (*l == NULL)
2b5d6a91 13027 as_fatal (_("no compiled in support for 32bit x86_64"));
351f65ca
L
13028 free (list);
13029 }
13030 else
13031 as_fatal (_("32bit x86_64 is only supported for ELF"));
13032 break;
13033#endif
13034
6e0b89ee
AM
13035 case OPTION_32:
13036 default_arch = "i386";
13037 break;
13038
b3b91714
AM
13039 case OPTION_DIVIDE:
13040#ifdef SVR4_COMMENT_CHARS
13041 {
13042 char *n, *t;
13043 const char *s;
13044
add39d23 13045 n = XNEWVEC (char, strlen (i386_comment_chars) + 1);
b3b91714
AM
13046 t = n;
13047 for (s = i386_comment_chars; *s != '\0'; s++)
13048 if (*s != '/')
13049 *t++ = *s;
13050 *t = '\0';
13051 i386_comment_chars = n;
13052 }
13053#endif
13054 break;
13055
9103f4f4 13056 case OPTION_MARCH:
293f5f65
L
13057 saved = xstrdup (arg);
13058 arch = saved;
13059 /* Allow -march=+nosse. */
13060 if (*arch == '+')
13061 arch++;
6305a203 13062 do
9103f4f4 13063 {
6305a203 13064 if (*arch == '.')
2b5d6a91 13065 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
13066 next = strchr (arch, '+');
13067 if (next)
13068 *next++ = '\0';
91d6fa6a 13069 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 13070 {
91d6fa6a 13071 if (strcmp (arch, cpu_arch [j].name) == 0)
ccc9c027 13072 {
6305a203 13073 /* Processor. */
1ded5609
JB
13074 if (! cpu_arch[j].flags.bitfield.cpui386)
13075 continue;
13076
91d6fa6a 13077 cpu_arch_name = cpu_arch[j].name;
6305a203 13078 cpu_sub_arch_name = NULL;
91d6fa6a
NC
13079 cpu_arch_flags = cpu_arch[j].flags;
13080 cpu_arch_isa = cpu_arch[j].type;
13081 cpu_arch_isa_flags = cpu_arch[j].flags;
6305a203
L
13082 if (!cpu_arch_tune_set)
13083 {
13084 cpu_arch_tune = cpu_arch_isa;
13085 cpu_arch_tune_flags = cpu_arch_isa_flags;
13086 }
13087 break;
13088 }
91d6fa6a
NC
13089 else if (*cpu_arch [j].name == '.'
13090 && strcmp (arch, cpu_arch [j].name + 1) == 0)
6305a203 13091 {
33eaf5de 13092 /* ISA extension. */
6305a203 13093 i386_cpu_flags flags;
309d3373 13094
293f5f65
L
13095 flags = cpu_flags_or (cpu_arch_flags,
13096 cpu_arch[j].flags);
81486035 13097
5b64d091 13098 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
6305a203
L
13099 {
13100 if (cpu_sub_arch_name)
13101 {
13102 char *name = cpu_sub_arch_name;
13103 cpu_sub_arch_name = concat (name,
91d6fa6a 13104 cpu_arch[j].name,
1bf57e9f 13105 (const char *) NULL);
6305a203
L
13106 free (name);
13107 }
13108 else
91d6fa6a 13109 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
6305a203 13110 cpu_arch_flags = flags;
a586129e 13111 cpu_arch_isa_flags = flags;
6305a203 13112 }
0089dace
L
13113 else
13114 cpu_arch_isa_flags
13115 = cpu_flags_or (cpu_arch_isa_flags,
13116 cpu_arch[j].flags);
6305a203 13117 break;
ccc9c027 13118 }
9103f4f4 13119 }
6305a203 13120
293f5f65
L
13121 if (j >= ARRAY_SIZE (cpu_arch))
13122 {
33eaf5de 13123 /* Disable an ISA extension. */
293f5f65
L
13124 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
13125 if (strcmp (arch, cpu_noarch [j].name) == 0)
13126 {
13127 i386_cpu_flags flags;
13128
13129 flags = cpu_flags_and_not (cpu_arch_flags,
13130 cpu_noarch[j].flags);
13131 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
13132 {
13133 if (cpu_sub_arch_name)
13134 {
13135 char *name = cpu_sub_arch_name;
13136 cpu_sub_arch_name = concat (arch,
13137 (const char *) NULL);
13138 free (name);
13139 }
13140 else
13141 cpu_sub_arch_name = xstrdup (arch);
13142 cpu_arch_flags = flags;
13143 cpu_arch_isa_flags = flags;
13144 }
13145 break;
13146 }
13147
13148 if (j >= ARRAY_SIZE (cpu_noarch))
13149 j = ARRAY_SIZE (cpu_arch);
13150 }
13151
91d6fa6a 13152 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 13153 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
13154
13155 arch = next;
9103f4f4 13156 }
293f5f65
L
13157 while (next != NULL);
13158 free (saved);
9103f4f4
L
13159 break;
13160
13161 case OPTION_MTUNE:
13162 if (*arg == '.')
2b5d6a91 13163 as_fatal (_("invalid -mtune= option: `%s'"), arg);
91d6fa6a 13164 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 13165 {
91d6fa6a 13166 if (strcmp (arg, cpu_arch [j].name) == 0)
9103f4f4 13167 {
ccc9c027 13168 cpu_arch_tune_set = 1;
91d6fa6a
NC
13169 cpu_arch_tune = cpu_arch [j].type;
13170 cpu_arch_tune_flags = cpu_arch[j].flags;
9103f4f4
L
13171 break;
13172 }
13173 }
91d6fa6a 13174 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 13175 as_fatal (_("invalid -mtune= option: `%s'"), arg);
9103f4f4
L
13176 break;
13177
1efbbeb4
L
13178 case OPTION_MMNEMONIC:
13179 if (strcasecmp (arg, "att") == 0)
13180 intel_mnemonic = 0;
13181 else if (strcasecmp (arg, "intel") == 0)
13182 intel_mnemonic = 1;
13183 else
2b5d6a91 13184 as_fatal (_("invalid -mmnemonic= option: `%s'"), arg);
1efbbeb4
L
13185 break;
13186
13187 case OPTION_MSYNTAX:
13188 if (strcasecmp (arg, "att") == 0)
13189 intel_syntax = 0;
13190 else if (strcasecmp (arg, "intel") == 0)
13191 intel_syntax = 1;
13192 else
2b5d6a91 13193 as_fatal (_("invalid -msyntax= option: `%s'"), arg);
1efbbeb4
L
13194 break;
13195
13196 case OPTION_MINDEX_REG:
13197 allow_index_reg = 1;
13198 break;
13199
13200 case OPTION_MNAKED_REG:
13201 allow_naked_reg = 1;
13202 break;
13203
c0f3af97
L
13204 case OPTION_MSSE2AVX:
13205 sse2avx = 1;
13206 break;
13207
daf50ae7
L
13208 case OPTION_MSSE_CHECK:
13209 if (strcasecmp (arg, "error") == 0)
7bab8ab5 13210 sse_check = check_error;
daf50ae7 13211 else if (strcasecmp (arg, "warning") == 0)
7bab8ab5 13212 sse_check = check_warning;
daf50ae7 13213 else if (strcasecmp (arg, "none") == 0)
7bab8ab5 13214 sse_check = check_none;
daf50ae7 13215 else
2b5d6a91 13216 as_fatal (_("invalid -msse-check= option: `%s'"), arg);
daf50ae7
L
13217 break;
13218
7bab8ab5
JB
13219 case OPTION_MOPERAND_CHECK:
13220 if (strcasecmp (arg, "error") == 0)
13221 operand_check = check_error;
13222 else if (strcasecmp (arg, "warning") == 0)
13223 operand_check = check_warning;
13224 else if (strcasecmp (arg, "none") == 0)
13225 operand_check = check_none;
13226 else
13227 as_fatal (_("invalid -moperand-check= option: `%s'"), arg);
13228 break;
13229
539f890d
L
13230 case OPTION_MAVXSCALAR:
13231 if (strcasecmp (arg, "128") == 0)
13232 avxscalar = vex128;
13233 else if (strcasecmp (arg, "256") == 0)
13234 avxscalar = vex256;
13235 else
2b5d6a91 13236 as_fatal (_("invalid -mavxscalar= option: `%s'"), arg);
539f890d
L
13237 break;
13238
03751133
L
13239 case OPTION_MVEXWIG:
13240 if (strcmp (arg, "0") == 0)
40c9c8de 13241 vexwig = vexw0;
03751133 13242 else if (strcmp (arg, "1") == 0)
40c9c8de 13243 vexwig = vexw1;
03751133
L
13244 else
13245 as_fatal (_("invalid -mvexwig= option: `%s'"), arg);
13246 break;
13247
7e8b059b
L
13248 case OPTION_MADD_BND_PREFIX:
13249 add_bnd_prefix = 1;
13250 break;
13251
43234a1e
L
13252 case OPTION_MEVEXLIG:
13253 if (strcmp (arg, "128") == 0)
13254 evexlig = evexl128;
13255 else if (strcmp (arg, "256") == 0)
13256 evexlig = evexl256;
13257 else if (strcmp (arg, "512") == 0)
13258 evexlig = evexl512;
13259 else
13260 as_fatal (_("invalid -mevexlig= option: `%s'"), arg);
13261 break;
13262
d3d3c6db
IT
13263 case OPTION_MEVEXRCIG:
13264 if (strcmp (arg, "rne") == 0)
13265 evexrcig = rne;
13266 else if (strcmp (arg, "rd") == 0)
13267 evexrcig = rd;
13268 else if (strcmp (arg, "ru") == 0)
13269 evexrcig = ru;
13270 else if (strcmp (arg, "rz") == 0)
13271 evexrcig = rz;
13272 else
13273 as_fatal (_("invalid -mevexrcig= option: `%s'"), arg);
13274 break;
13275
43234a1e
L
13276 case OPTION_MEVEXWIG:
13277 if (strcmp (arg, "0") == 0)
13278 evexwig = evexw0;
13279 else if (strcmp (arg, "1") == 0)
13280 evexwig = evexw1;
13281 else
13282 as_fatal (_("invalid -mevexwig= option: `%s'"), arg);
13283 break;
13284
167ad85b
TG
13285# if defined (TE_PE) || defined (TE_PEP)
13286 case OPTION_MBIG_OBJ:
13287 use_big_obj = 1;
13288 break;
13289#endif
13290
d1982f93 13291 case OPTION_MOMIT_LOCK_PREFIX:
d022bddd
IT
13292 if (strcasecmp (arg, "yes") == 0)
13293 omit_lock_prefix = 1;
13294 else if (strcasecmp (arg, "no") == 0)
13295 omit_lock_prefix = 0;
13296 else
13297 as_fatal (_("invalid -momit-lock-prefix= option: `%s'"), arg);
13298 break;
13299
e4e00185
AS
13300 case OPTION_MFENCE_AS_LOCK_ADD:
13301 if (strcasecmp (arg, "yes") == 0)
13302 avoid_fence = 1;
13303 else if (strcasecmp (arg, "no") == 0)
13304 avoid_fence = 0;
13305 else
13306 as_fatal (_("invalid -mfence-as-lock-add= option: `%s'"), arg);
13307 break;
13308
ae531041
L
13309 case OPTION_MLFENCE_AFTER_LOAD:
13310 if (strcasecmp (arg, "yes") == 0)
13311 lfence_after_load = 1;
13312 else if (strcasecmp (arg, "no") == 0)
13313 lfence_after_load = 0;
13314 else
13315 as_fatal (_("invalid -mlfence-after-load= option: `%s'"), arg);
13316 break;
13317
13318 case OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH:
13319 if (strcasecmp (arg, "all") == 0)
a09f656b 13320 {
13321 lfence_before_indirect_branch = lfence_branch_all;
13322 if (lfence_before_ret == lfence_before_ret_none)
13323 lfence_before_ret = lfence_before_ret_shl;
13324 }
ae531041
L
13325 else if (strcasecmp (arg, "memory") == 0)
13326 lfence_before_indirect_branch = lfence_branch_memory;
13327 else if (strcasecmp (arg, "register") == 0)
13328 lfence_before_indirect_branch = lfence_branch_register;
13329 else if (strcasecmp (arg, "none") == 0)
13330 lfence_before_indirect_branch = lfence_branch_none;
13331 else
13332 as_fatal (_("invalid -mlfence-before-indirect-branch= option: `%s'"),
13333 arg);
13334 break;
13335
13336 case OPTION_MLFENCE_BEFORE_RET:
13337 if (strcasecmp (arg, "or") == 0)
13338 lfence_before_ret = lfence_before_ret_or;
13339 else if (strcasecmp (arg, "not") == 0)
13340 lfence_before_ret = lfence_before_ret_not;
a09f656b 13341 else if (strcasecmp (arg, "shl") == 0 || strcasecmp (arg, "yes") == 0)
13342 lfence_before_ret = lfence_before_ret_shl;
ae531041
L
13343 else if (strcasecmp (arg, "none") == 0)
13344 lfence_before_ret = lfence_before_ret_none;
13345 else
13346 as_fatal (_("invalid -mlfence-before-ret= option: `%s'"),
13347 arg);
13348 break;
13349
0cb4071e
L
13350 case OPTION_MRELAX_RELOCATIONS:
13351 if (strcasecmp (arg, "yes") == 0)
13352 generate_relax_relocations = 1;
13353 else if (strcasecmp (arg, "no") == 0)
13354 generate_relax_relocations = 0;
13355 else
13356 as_fatal (_("invalid -mrelax-relocations= option: `%s'"), arg);
13357 break;
13358
e379e5f3
L
13359 case OPTION_MALIGN_BRANCH_BOUNDARY:
13360 {
13361 char *end;
13362 long int align = strtoul (arg, &end, 0);
13363 if (*end == '\0')
13364 {
13365 if (align == 0)
13366 {
13367 align_branch_power = 0;
13368 break;
13369 }
13370 else if (align >= 16)
13371 {
13372 int align_power;
13373 for (align_power = 0;
13374 (align & 1) == 0;
13375 align >>= 1, align_power++)
13376 continue;
13377 /* Limit alignment power to 31. */
13378 if (align == 1 && align_power < 32)
13379 {
13380 align_branch_power = align_power;
13381 break;
13382 }
13383 }
13384 }
13385 as_fatal (_("invalid -malign-branch-boundary= value: %s"), arg);
13386 }
13387 break;
13388
13389 case OPTION_MALIGN_BRANCH_PREFIX_SIZE:
13390 {
13391 char *end;
13392 int align = strtoul (arg, &end, 0);
13393 /* Some processors only support 5 prefixes. */
13394 if (*end == '\0' && align >= 0 && align < 6)
13395 {
13396 align_branch_prefix_size = align;
13397 break;
13398 }
13399 as_fatal (_("invalid -malign-branch-prefix-size= value: %s"),
13400 arg);
13401 }
13402 break;
13403
13404 case OPTION_MALIGN_BRANCH:
13405 align_branch = 0;
13406 saved = xstrdup (arg);
13407 type = saved;
13408 do
13409 {
13410 next = strchr (type, '+');
13411 if (next)
13412 *next++ = '\0';
13413 if (strcasecmp (type, "jcc") == 0)
13414 align_branch |= align_branch_jcc_bit;
13415 else if (strcasecmp (type, "fused") == 0)
13416 align_branch |= align_branch_fused_bit;
13417 else if (strcasecmp (type, "jmp") == 0)
13418 align_branch |= align_branch_jmp_bit;
13419 else if (strcasecmp (type, "call") == 0)
13420 align_branch |= align_branch_call_bit;
13421 else if (strcasecmp (type, "ret") == 0)
13422 align_branch |= align_branch_ret_bit;
13423 else if (strcasecmp (type, "indirect") == 0)
13424 align_branch |= align_branch_indirect_bit;
13425 else
13426 as_fatal (_("invalid -malign-branch= option: `%s'"), arg);
13427 type = next;
13428 }
13429 while (next != NULL);
13430 free (saved);
13431 break;
13432
76cf450b
L
13433 case OPTION_MBRANCHES_WITH_32B_BOUNDARIES:
13434 align_branch_power = 5;
13435 align_branch_prefix_size = 5;
13436 align_branch = (align_branch_jcc_bit
13437 | align_branch_fused_bit
13438 | align_branch_jmp_bit);
13439 break;
13440
5db04b09 13441 case OPTION_MAMD64:
4b5aaf5f 13442 isa64 = amd64;
5db04b09
L
13443 break;
13444
13445 case OPTION_MINTEL64:
4b5aaf5f 13446 isa64 = intel64;
5db04b09
L
13447 break;
13448
b6f8c7c4
L
13449 case 'O':
13450 if (arg == NULL)
13451 {
13452 optimize = 1;
13453 /* Turn off -Os. */
13454 optimize_for_space = 0;
13455 }
13456 else if (*arg == 's')
13457 {
13458 optimize_for_space = 1;
13459 /* Turn on all encoding optimizations. */
41fd2579 13460 optimize = INT_MAX;
b6f8c7c4
L
13461 }
13462 else
13463 {
13464 optimize = atoi (arg);
13465 /* Turn off -Os. */
13466 optimize_for_space = 0;
13467 }
13468 break;
13469
252b5132
RH
13470 default:
13471 return 0;
13472 }
13473 return 1;
13474}
13475
8a2c8fef
L
13476#define MESSAGE_TEMPLATE \
13477" "
13478
293f5f65
L
13479static char *
13480output_message (FILE *stream, char *p, char *message, char *start,
13481 int *left_p, const char *name, int len)
13482{
13483 int size = sizeof (MESSAGE_TEMPLATE);
13484 int left = *left_p;
13485
13486 /* Reserve 2 spaces for ", " or ",\0" */
13487 left -= len + 2;
13488
13489 /* Check if there is any room. */
13490 if (left >= 0)
13491 {
13492 if (p != start)
13493 {
13494 *p++ = ',';
13495 *p++ = ' ';
13496 }
13497 p = mempcpy (p, name, len);
13498 }
13499 else
13500 {
13501 /* Output the current message now and start a new one. */
13502 *p++ = ',';
13503 *p = '\0';
13504 fprintf (stream, "%s\n", message);
13505 p = start;
13506 left = size - (start - message) - len - 2;
13507
13508 gas_assert (left >= 0);
13509
13510 p = mempcpy (p, name, len);
13511 }
13512
13513 *left_p = left;
13514 return p;
13515}
13516
8a2c8fef 13517static void
1ded5609 13518show_arch (FILE *stream, int ext, int check)
8a2c8fef
L
13519{
13520 static char message[] = MESSAGE_TEMPLATE;
13521 char *start = message + 27;
13522 char *p;
13523 int size = sizeof (MESSAGE_TEMPLATE);
13524 int left;
13525 const char *name;
13526 int len;
13527 unsigned int j;
13528
13529 p = start;
13530 left = size - (start - message);
13531 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
13532 {
13533 /* Should it be skipped? */
13534 if (cpu_arch [j].skip)
13535 continue;
13536
13537 name = cpu_arch [j].name;
13538 len = cpu_arch [j].len;
13539 if (*name == '.')
13540 {
13541 /* It is an extension. Skip if we aren't asked to show it. */
13542 if (ext)
13543 {
13544 name++;
13545 len--;
13546 }
13547 else
13548 continue;
13549 }
13550 else if (ext)
13551 {
13552 /* It is an processor. Skip if we show only extension. */
13553 continue;
13554 }
1ded5609
JB
13555 else if (check && ! cpu_arch[j].flags.bitfield.cpui386)
13556 {
13557 /* It is an impossible processor - skip. */
13558 continue;
13559 }
8a2c8fef 13560
293f5f65 13561 p = output_message (stream, p, message, start, &left, name, len);
8a2c8fef
L
13562 }
13563
293f5f65
L
13564 /* Display disabled extensions. */
13565 if (ext)
13566 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
13567 {
13568 name = cpu_noarch [j].name;
13569 len = cpu_noarch [j].len;
13570 p = output_message (stream, p, message, start, &left, name,
13571 len);
13572 }
13573
8a2c8fef
L
13574 *p = '\0';
13575 fprintf (stream, "%s\n", message);
13576}
13577
252b5132 13578void
8a2c8fef 13579md_show_usage (FILE *stream)
252b5132 13580{
4cc782b5
ILT
13581#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13582 fprintf (stream, _("\
d4693039 13583 -Qy, -Qn ignored\n\
a38cf1db 13584 -V print assembler version number\n\
b3b91714
AM
13585 -k ignored\n"));
13586#endif
13587 fprintf (stream, _("\
12b55ccc 13588 -n Do not optimize code alignment\n\
b3b91714
AM
13589 -q quieten some warnings\n"));
13590#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13591 fprintf (stream, _("\
a38cf1db 13592 -s ignored\n"));
b3b91714 13593#endif
d7f449c0
L
13594#if defined BFD64 && (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
13595 || defined (TE_PE) || defined (TE_PEP))
751d281c 13596 fprintf (stream, _("\
570561f7 13597 --32/--64/--x32 generate 32bit/64bit/x32 code\n"));
751d281c 13598#endif
b3b91714
AM
13599#ifdef SVR4_COMMENT_CHARS
13600 fprintf (stream, _("\
13601 --divide do not treat `/' as a comment character\n"));
a38cf1db
AM
13602#else
13603 fprintf (stream, _("\
b3b91714 13604 --divide ignored\n"));
4cc782b5 13605#endif
9103f4f4 13606 fprintf (stream, _("\
6305a203 13607 -march=CPU[,+EXTENSION...]\n\
8a2c8fef 13608 generate code for CPU and EXTENSION, CPU is one of:\n"));
1ded5609 13609 show_arch (stream, 0, 1);
8a2c8fef
L
13610 fprintf (stream, _("\
13611 EXTENSION is combination of:\n"));
1ded5609 13612 show_arch (stream, 1, 0);
6305a203 13613 fprintf (stream, _("\
8a2c8fef 13614 -mtune=CPU optimize for CPU, CPU is one of:\n"));
1ded5609 13615 show_arch (stream, 0, 0);
ba104c83 13616 fprintf (stream, _("\
c0f3af97
L
13617 -msse2avx encode SSE instructions with VEX prefix\n"));
13618 fprintf (stream, _("\
7c5c05ef 13619 -msse-check=[none|error|warning] (default: warning)\n\
daf50ae7
L
13620 check SSE instructions\n"));
13621 fprintf (stream, _("\
7c5c05ef 13622 -moperand-check=[none|error|warning] (default: warning)\n\
7bab8ab5
JB
13623 check operand combinations for validity\n"));
13624 fprintf (stream, _("\
7c5c05ef
L
13625 -mavxscalar=[128|256] (default: 128)\n\
13626 encode scalar AVX instructions with specific vector\n\
539f890d
L
13627 length\n"));
13628 fprintf (stream, _("\
03751133
L
13629 -mvexwig=[0|1] (default: 0)\n\
13630 encode VEX instructions with specific VEX.W value\n\
13631 for VEX.W bit ignored instructions\n"));
13632 fprintf (stream, _("\
7c5c05ef
L
13633 -mevexlig=[128|256|512] (default: 128)\n\
13634 encode scalar EVEX instructions with specific vector\n\
43234a1e
L
13635 length\n"));
13636 fprintf (stream, _("\
7c5c05ef
L
13637 -mevexwig=[0|1] (default: 0)\n\
13638 encode EVEX instructions with specific EVEX.W value\n\
43234a1e
L
13639 for EVEX.W bit ignored instructions\n"));
13640 fprintf (stream, _("\
7c5c05ef 13641 -mevexrcig=[rne|rd|ru|rz] (default: rne)\n\
d3d3c6db
IT
13642 encode EVEX instructions with specific EVEX.RC value\n\
13643 for SAE-only ignored instructions\n"));
13644 fprintf (stream, _("\
7c5c05ef
L
13645 -mmnemonic=[att|intel] "));
13646 if (SYSV386_COMPAT)
13647 fprintf (stream, _("(default: att)\n"));
13648 else
13649 fprintf (stream, _("(default: intel)\n"));
13650 fprintf (stream, _("\
13651 use AT&T/Intel mnemonic\n"));
ba104c83 13652 fprintf (stream, _("\
7c5c05ef
L
13653 -msyntax=[att|intel] (default: att)\n\
13654 use AT&T/Intel syntax\n"));
ba104c83
L
13655 fprintf (stream, _("\
13656 -mindex-reg support pseudo index registers\n"));
13657 fprintf (stream, _("\
13658 -mnaked-reg don't require `%%' prefix for registers\n"));
13659 fprintf (stream, _("\
7e8b059b 13660 -madd-bnd-prefix add BND prefix for all valid branches\n"));
b4a3a7b4 13661#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8dcea932
L
13662 fprintf (stream, _("\
13663 -mshared disable branch optimization for shared code\n"));
b4a3a7b4
L
13664 fprintf (stream, _("\
13665 -mx86-used-note=[no|yes] "));
13666 if (DEFAULT_X86_USED_NOTE)
13667 fprintf (stream, _("(default: yes)\n"));
13668 else
13669 fprintf (stream, _("(default: no)\n"));
13670 fprintf (stream, _("\
13671 generate x86 used ISA and feature properties\n"));
13672#endif
13673#if defined (TE_PE) || defined (TE_PEP)
167ad85b
TG
13674 fprintf (stream, _("\
13675 -mbig-obj generate big object files\n"));
13676#endif
d022bddd 13677 fprintf (stream, _("\
7c5c05ef 13678 -momit-lock-prefix=[no|yes] (default: no)\n\
d022bddd 13679 strip all lock prefixes\n"));
5db04b09 13680 fprintf (stream, _("\
7c5c05ef 13681 -mfence-as-lock-add=[no|yes] (default: no)\n\
e4e00185
AS
13682 encode lfence, mfence and sfence as\n\
13683 lock addl $0x0, (%%{re}sp)\n"));
13684 fprintf (stream, _("\
7c5c05ef
L
13685 -mrelax-relocations=[no|yes] "));
13686 if (DEFAULT_GENERATE_X86_RELAX_RELOCATIONS)
13687 fprintf (stream, _("(default: yes)\n"));
13688 else
13689 fprintf (stream, _("(default: no)\n"));
13690 fprintf (stream, _("\
0cb4071e
L
13691 generate relax relocations\n"));
13692 fprintf (stream, _("\
e379e5f3
L
13693 -malign-branch-boundary=NUM (default: 0)\n\
13694 align branches within NUM byte boundary\n"));
13695 fprintf (stream, _("\
13696 -malign-branch=TYPE[+TYPE...] (default: jcc+fused+jmp)\n\
13697 TYPE is combination of jcc, fused, jmp, call, ret,\n\
13698 indirect\n\
13699 specify types of branches to align\n"));
13700 fprintf (stream, _("\
13701 -malign-branch-prefix-size=NUM (default: 5)\n\
13702 align branches with NUM prefixes per instruction\n"));
13703 fprintf (stream, _("\
76cf450b
L
13704 -mbranches-within-32B-boundaries\n\
13705 align branches within 32 byte boundary\n"));
13706 fprintf (stream, _("\
ae531041
L
13707 -mlfence-after-load=[no|yes] (default: no)\n\
13708 generate lfence after load\n"));
13709 fprintf (stream, _("\
13710 -mlfence-before-indirect-branch=[none|all|register|memory] (default: none)\n\
13711 generate lfence before indirect near branch\n"));
13712 fprintf (stream, _("\
a09f656b 13713 -mlfence-before-ret=[none|or|not|shl|yes] (default: none)\n\
ae531041
L
13714 generate lfence before ret\n"));
13715 fprintf (stream, _("\
7c5c05ef 13716 -mamd64 accept only AMD64 ISA [default]\n"));
5db04b09
L
13717 fprintf (stream, _("\
13718 -mintel64 accept only Intel64 ISA\n"));
252b5132
RH
13719}
13720
3e73aa7c 13721#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
321098a5 13722 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
e57f8c65 13723 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
252b5132
RH
13724
13725/* Pick the target format to use. */
13726
47926f60 13727const char *
e3bb37b5 13728i386_target_format (void)
252b5132 13729{
351f65ca
L
13730 if (!strncmp (default_arch, "x86_64", 6))
13731 {
13732 update_code_flag (CODE_64BIT, 1);
13733 if (default_arch[6] == '\0')
7f56bc95 13734 x86_elf_abi = X86_64_ABI;
351f65ca 13735 else
7f56bc95 13736 x86_elf_abi = X86_64_X32_ABI;
351f65ca 13737 }
3e73aa7c 13738 else if (!strcmp (default_arch, "i386"))
78f12dd3 13739 update_code_flag (CODE_32BIT, 1);
5197d474
L
13740 else if (!strcmp (default_arch, "iamcu"))
13741 {
13742 update_code_flag (CODE_32BIT, 1);
13743 if (cpu_arch_isa == PROCESSOR_UNKNOWN)
13744 {
13745 static const i386_cpu_flags iamcu_flags = CPU_IAMCU_FLAGS;
13746 cpu_arch_name = "iamcu";
13747 cpu_sub_arch_name = NULL;
13748 cpu_arch_flags = iamcu_flags;
13749 cpu_arch_isa = PROCESSOR_IAMCU;
13750 cpu_arch_isa_flags = iamcu_flags;
13751 if (!cpu_arch_tune_set)
13752 {
13753 cpu_arch_tune = cpu_arch_isa;
13754 cpu_arch_tune_flags = cpu_arch_isa_flags;
13755 }
13756 }
8d471ec1 13757 else if (cpu_arch_isa != PROCESSOR_IAMCU)
5197d474
L
13758 as_fatal (_("Intel MCU doesn't support `%s' architecture"),
13759 cpu_arch_name);
13760 }
3e73aa7c 13761 else
2b5d6a91 13762 as_fatal (_("unknown architecture"));
89507696
JB
13763
13764 if (cpu_flags_all_zero (&cpu_arch_isa_flags))
13765 cpu_arch_isa_flags = cpu_arch[flag_code == CODE_64BIT].flags;
13766 if (cpu_flags_all_zero (&cpu_arch_tune_flags))
13767 cpu_arch_tune_flags = cpu_arch[flag_code == CODE_64BIT].flags;
13768
252b5132
RH
13769 switch (OUTPUT_FLAVOR)
13770 {
9384f2ff 13771#if defined (OBJ_MAYBE_AOUT) || defined (OBJ_AOUT)
4c63da97 13772 case bfd_target_aout_flavour:
47926f60 13773 return AOUT_TARGET_FORMAT;
4c63da97 13774#endif
9384f2ff
AM
13775#if defined (OBJ_MAYBE_COFF) || defined (OBJ_COFF)
13776# if defined (TE_PE) || defined (TE_PEP)
13777 case bfd_target_coff_flavour:
167ad85b
TG
13778 if (flag_code == CODE_64BIT)
13779 return use_big_obj ? "pe-bigobj-x86-64" : "pe-x86-64";
13780 else
251dae91 13781 return use_big_obj ? "pe-bigobj-i386" : "pe-i386";
9384f2ff 13782# elif defined (TE_GO32)
0561d57c
JK
13783 case bfd_target_coff_flavour:
13784 return "coff-go32";
9384f2ff 13785# else
252b5132
RH
13786 case bfd_target_coff_flavour:
13787 return "coff-i386";
9384f2ff 13788# endif
4c63da97 13789#endif
3e73aa7c 13790#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
252b5132 13791 case bfd_target_elf_flavour:
3e73aa7c 13792 {
351f65ca
L
13793 const char *format;
13794
13795 switch (x86_elf_abi)
4fa24527 13796 {
351f65ca
L
13797 default:
13798 format = ELF_TARGET_FORMAT;
e379e5f3
L
13799#ifndef TE_SOLARIS
13800 tls_get_addr = "___tls_get_addr";
13801#endif
351f65ca 13802 break;
7f56bc95 13803 case X86_64_ABI:
351f65ca 13804 use_rela_relocations = 1;
4fa24527 13805 object_64bit = 1;
e379e5f3
L
13806#ifndef TE_SOLARIS
13807 tls_get_addr = "__tls_get_addr";
13808#endif
351f65ca
L
13809 format = ELF_TARGET_FORMAT64;
13810 break;
7f56bc95 13811 case X86_64_X32_ABI:
4fa24527 13812 use_rela_relocations = 1;
351f65ca 13813 object_64bit = 1;
e379e5f3
L
13814#ifndef TE_SOLARIS
13815 tls_get_addr = "__tls_get_addr";
13816#endif
862be3fb 13817 disallow_64bit_reloc = 1;
351f65ca
L
13818 format = ELF_TARGET_FORMAT32;
13819 break;
4fa24527 13820 }
3632d14b 13821 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 13822 {
7f56bc95 13823 if (x86_elf_abi != X86_64_ABI)
8a9036a4
L
13824 as_fatal (_("Intel L1OM is 64bit only"));
13825 return ELF_TARGET_L1OM_FORMAT;
13826 }
b49f93f6 13827 else if (cpu_arch_isa == PROCESSOR_K1OM)
7a9068fe
L
13828 {
13829 if (x86_elf_abi != X86_64_ABI)
13830 as_fatal (_("Intel K1OM is 64bit only"));
13831 return ELF_TARGET_K1OM_FORMAT;
13832 }
81486035
L
13833 else if (cpu_arch_isa == PROCESSOR_IAMCU)
13834 {
13835 if (x86_elf_abi != I386_ABI)
13836 as_fatal (_("Intel MCU is 32bit only"));
13837 return ELF_TARGET_IAMCU_FORMAT;
13838 }
8a9036a4 13839 else
351f65ca 13840 return format;
3e73aa7c 13841 }
e57f8c65
TG
13842#endif
13843#if defined (OBJ_MACH_O)
13844 case bfd_target_mach_o_flavour:
d382c579
TG
13845 if (flag_code == CODE_64BIT)
13846 {
13847 use_rela_relocations = 1;
13848 object_64bit = 1;
13849 return "mach-o-x86-64";
13850 }
13851 else
13852 return "mach-o-i386";
4c63da97 13853#endif
252b5132
RH
13854 default:
13855 abort ();
13856 return NULL;
13857 }
13858}
13859
47926f60 13860#endif /* OBJ_MAYBE_ more than one */
252b5132 13861\f
252b5132 13862symbolS *
7016a5d5 13863md_undefined_symbol (char *name)
252b5132 13864{
18dc2407
ILT
13865 if (name[0] == GLOBAL_OFFSET_TABLE_NAME[0]
13866 && name[1] == GLOBAL_OFFSET_TABLE_NAME[1]
13867 && name[2] == GLOBAL_OFFSET_TABLE_NAME[2]
13868 && strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0)
24eab124
AM
13869 {
13870 if (!GOT_symbol)
13871 {
13872 if (symbol_find (name))
13873 as_bad (_("GOT already in symbol table"));
13874 GOT_symbol = symbol_new (name, undefined_section,
e01e1cee 13875 &zero_address_frag, 0);
24eab124
AM
13876 };
13877 return GOT_symbol;
13878 }
252b5132
RH
13879 return 0;
13880}
13881
13882/* Round up a section size to the appropriate boundary. */
47926f60 13883
252b5132 13884valueT
7016a5d5 13885md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size)
252b5132 13886{
4c63da97
AM
13887#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
13888 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
13889 {
13890 /* For a.out, force the section size to be aligned. If we don't do
13891 this, BFD will align it for us, but it will not write out the
13892 final bytes of the section. This may be a bug in BFD, but it is
13893 easier to fix it here since that is how the other a.out targets
13894 work. */
13895 int align;
13896
fd361982 13897 align = bfd_section_alignment (segment);
8d3842cd 13898 size = ((size + (1 << align) - 1) & (-((valueT) 1 << align)));
4c63da97 13899 }
252b5132
RH
13900#endif
13901
13902 return size;
13903}
13904
13905/* On the i386, PC-relative offsets are relative to the start of the
13906 next instruction. That is, the address of the offset, plus its
13907 size, since the offset is always the last part of the insn. */
13908
13909long
e3bb37b5 13910md_pcrel_from (fixS *fixP)
252b5132
RH
13911{
13912 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
13913}
13914
13915#ifndef I386COFF
13916
13917static void
e3bb37b5 13918s_bss (int ignore ATTRIBUTE_UNUSED)
252b5132 13919{
29b0f896 13920 int temp;
252b5132 13921
8a75718c
JB
13922#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13923 if (IS_ELF)
13924 obj_elf_section_change_hook ();
13925#endif
252b5132
RH
13926 temp = get_absolute_expression ();
13927 subseg_set (bss_section, (subsegT) temp);
13928 demand_empty_rest_of_line ();
13929}
13930
13931#endif
13932
e379e5f3
L
13933/* Remember constant directive. */
13934
13935void
13936i386_cons_align (int ignore ATTRIBUTE_UNUSED)
13937{
13938 if (last_insn.kind != last_insn_directive
13939 && (bfd_section_flags (now_seg) & SEC_CODE))
13940 {
13941 last_insn.seg = now_seg;
13942 last_insn.kind = last_insn_directive;
13943 last_insn.name = "constant directive";
13944 last_insn.file = as_where (&last_insn.line);
ae531041
L
13945 if (lfence_before_ret != lfence_before_ret_none)
13946 {
13947 if (lfence_before_indirect_branch != lfence_branch_none)
13948 as_warn (_("constant directive skips -mlfence-before-ret "
13949 "and -mlfence-before-indirect-branch"));
13950 else
13951 as_warn (_("constant directive skips -mlfence-before-ret"));
13952 }
13953 else if (lfence_before_indirect_branch != lfence_branch_none)
13954 as_warn (_("constant directive skips -mlfence-before-indirect-branch"));
e379e5f3
L
13955 }
13956}
13957
252b5132 13958void
e3bb37b5 13959i386_validate_fix (fixS *fixp)
252b5132 13960{
02a86693 13961 if (fixp->fx_subsy)
252b5132 13962 {
02a86693 13963 if (fixp->fx_subsy == GOT_symbol)
23df1078 13964 {
02a86693
L
13965 if (fixp->fx_r_type == BFD_RELOC_32_PCREL)
13966 {
13967 if (!object_64bit)
13968 abort ();
13969#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13970 if (fixp->fx_tcbit2)
56ceb5b5
L
13971 fixp->fx_r_type = (fixp->fx_tcbit
13972 ? BFD_RELOC_X86_64_REX_GOTPCRELX
13973 : BFD_RELOC_X86_64_GOTPCRELX);
02a86693
L
13974 else
13975#endif
13976 fixp->fx_r_type = BFD_RELOC_X86_64_GOTPCREL;
13977 }
d6ab8113 13978 else
02a86693
L
13979 {
13980 if (!object_64bit)
13981 fixp->fx_r_type = BFD_RELOC_386_GOTOFF;
13982 else
13983 fixp->fx_r_type = BFD_RELOC_X86_64_GOTOFF64;
13984 }
13985 fixp->fx_subsy = 0;
23df1078 13986 }
252b5132 13987 }
02a86693 13988#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2585b7a5 13989 else
02a86693 13990 {
2585b7a5
L
13991 /* NB: Commit 292676c1 resolved PLT32 reloc aganst local symbol
13992 to section. Since PLT32 relocation must be against symbols,
13993 turn such PLT32 relocation into PC32 relocation. */
13994 if (fixp->fx_addsy
13995 && (fixp->fx_r_type == BFD_RELOC_386_PLT32
13996 || fixp->fx_r_type == BFD_RELOC_X86_64_PLT32)
13997 && symbol_section_p (fixp->fx_addsy))
13998 fixp->fx_r_type = BFD_RELOC_32_PCREL;
13999 if (!object_64bit)
14000 {
14001 if (fixp->fx_r_type == BFD_RELOC_386_GOT32
14002 && fixp->fx_tcbit2)
14003 fixp->fx_r_type = BFD_RELOC_386_GOT32X;
14004 }
02a86693
L
14005 }
14006#endif
252b5132
RH
14007}
14008
252b5132 14009arelent *
7016a5d5 14010tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
14011{
14012 arelent *rel;
14013 bfd_reloc_code_real_type code;
14014
14015 switch (fixp->fx_r_type)
14016 {
8ce3d284 14017#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
14018 case BFD_RELOC_SIZE32:
14019 case BFD_RELOC_SIZE64:
14020 if (S_IS_DEFINED (fixp->fx_addsy)
14021 && !S_IS_EXTERNAL (fixp->fx_addsy))
14022 {
14023 /* Resolve size relocation against local symbol to size of
14024 the symbol plus addend. */
14025 valueT value = S_GET_SIZE (fixp->fx_addsy) + fixp->fx_offset;
14026 if (fixp->fx_r_type == BFD_RELOC_SIZE32
14027 && !fits_in_unsigned_long (value))
14028 as_bad_where (fixp->fx_file, fixp->fx_line,
14029 _("symbol size computation overflow"));
14030 fixp->fx_addsy = NULL;
14031 fixp->fx_subsy = NULL;
14032 md_apply_fix (fixp, (valueT *) &value, NULL);
14033 return NULL;
14034 }
8ce3d284 14035#endif
1a0670f3 14036 /* Fall through. */
8fd4256d 14037
3e73aa7c
JH
14038 case BFD_RELOC_X86_64_PLT32:
14039 case BFD_RELOC_X86_64_GOT32:
14040 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
14041 case BFD_RELOC_X86_64_GOTPCRELX:
14042 case BFD_RELOC_X86_64_REX_GOTPCRELX:
252b5132
RH
14043 case BFD_RELOC_386_PLT32:
14044 case BFD_RELOC_386_GOT32:
02a86693 14045 case BFD_RELOC_386_GOT32X:
252b5132
RH
14046 case BFD_RELOC_386_GOTOFF:
14047 case BFD_RELOC_386_GOTPC:
13ae64f3
JJ
14048 case BFD_RELOC_386_TLS_GD:
14049 case BFD_RELOC_386_TLS_LDM:
14050 case BFD_RELOC_386_TLS_LDO_32:
14051 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
14052 case BFD_RELOC_386_TLS_IE:
14053 case BFD_RELOC_386_TLS_GOTIE:
13ae64f3
JJ
14054 case BFD_RELOC_386_TLS_LE_32:
14055 case BFD_RELOC_386_TLS_LE:
67a4f2b7
AO
14056 case BFD_RELOC_386_TLS_GOTDESC:
14057 case BFD_RELOC_386_TLS_DESC_CALL:
bffbf940
JJ
14058 case BFD_RELOC_X86_64_TLSGD:
14059 case BFD_RELOC_X86_64_TLSLD:
14060 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 14061 case BFD_RELOC_X86_64_DTPOFF64:
bffbf940
JJ
14062 case BFD_RELOC_X86_64_GOTTPOFF:
14063 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113
JB
14064 case BFD_RELOC_X86_64_TPOFF64:
14065 case BFD_RELOC_X86_64_GOTOFF64:
14066 case BFD_RELOC_X86_64_GOTPC32:
7b81dfbb
AJ
14067 case BFD_RELOC_X86_64_GOT64:
14068 case BFD_RELOC_X86_64_GOTPCREL64:
14069 case BFD_RELOC_X86_64_GOTPC64:
14070 case BFD_RELOC_X86_64_GOTPLT64:
14071 case BFD_RELOC_X86_64_PLTOFF64:
67a4f2b7
AO
14072 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
14073 case BFD_RELOC_X86_64_TLSDESC_CALL:
252b5132
RH
14074 case BFD_RELOC_RVA:
14075 case BFD_RELOC_VTABLE_ENTRY:
14076 case BFD_RELOC_VTABLE_INHERIT:
6482c264
NC
14077#ifdef TE_PE
14078 case BFD_RELOC_32_SECREL:
14079#endif
252b5132
RH
14080 code = fixp->fx_r_type;
14081 break;
dbbaec26
L
14082 case BFD_RELOC_X86_64_32S:
14083 if (!fixp->fx_pcrel)
14084 {
14085 /* Don't turn BFD_RELOC_X86_64_32S into BFD_RELOC_32. */
14086 code = fixp->fx_r_type;
14087 break;
14088 }
1a0670f3 14089 /* Fall through. */
252b5132 14090 default:
93382f6d 14091 if (fixp->fx_pcrel)
252b5132 14092 {
93382f6d
AM
14093 switch (fixp->fx_size)
14094 {
14095 default:
b091f402
AM
14096 as_bad_where (fixp->fx_file, fixp->fx_line,
14097 _("can not do %d byte pc-relative relocation"),
14098 fixp->fx_size);
93382f6d
AM
14099 code = BFD_RELOC_32_PCREL;
14100 break;
14101 case 1: code = BFD_RELOC_8_PCREL; break;
14102 case 2: code = BFD_RELOC_16_PCREL; break;
d258b828 14103 case 4: code = BFD_RELOC_32_PCREL; break;
d6ab8113
JB
14104#ifdef BFD64
14105 case 8: code = BFD_RELOC_64_PCREL; break;
14106#endif
93382f6d
AM
14107 }
14108 }
14109 else
14110 {
14111 switch (fixp->fx_size)
14112 {
14113 default:
b091f402
AM
14114 as_bad_where (fixp->fx_file, fixp->fx_line,
14115 _("can not do %d byte relocation"),
14116 fixp->fx_size);
93382f6d
AM
14117 code = BFD_RELOC_32;
14118 break;
14119 case 1: code = BFD_RELOC_8; break;
14120 case 2: code = BFD_RELOC_16; break;
14121 case 4: code = BFD_RELOC_32; break;
937149dd 14122#ifdef BFD64
3e73aa7c 14123 case 8: code = BFD_RELOC_64; break;
937149dd 14124#endif
93382f6d 14125 }
252b5132
RH
14126 }
14127 break;
14128 }
252b5132 14129
d182319b
JB
14130 if ((code == BFD_RELOC_32
14131 || code == BFD_RELOC_32_PCREL
14132 || code == BFD_RELOC_X86_64_32S)
252b5132
RH
14133 && GOT_symbol
14134 && fixp->fx_addsy == GOT_symbol)
3e73aa7c 14135 {
4fa24527 14136 if (!object_64bit)
d6ab8113
JB
14137 code = BFD_RELOC_386_GOTPC;
14138 else
14139 code = BFD_RELOC_X86_64_GOTPC32;
3e73aa7c 14140 }
7b81dfbb
AJ
14141 if ((code == BFD_RELOC_64 || code == BFD_RELOC_64_PCREL)
14142 && GOT_symbol
14143 && fixp->fx_addsy == GOT_symbol)
14144 {
14145 code = BFD_RELOC_X86_64_GOTPC64;
14146 }
252b5132 14147
add39d23
TS
14148 rel = XNEW (arelent);
14149 rel->sym_ptr_ptr = XNEW (asymbol *);
49309057 14150 *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
14151
14152 rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
c87db184 14153
3e73aa7c
JH
14154 if (!use_rela_relocations)
14155 {
14156 /* HACK: Since i386 ELF uses Rel instead of Rela, encode the
14157 vtable entry to be used in the relocation's section offset. */
14158 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
14159 rel->address = fixp->fx_offset;
fbeb56a4
DK
14160#if defined (OBJ_COFF) && defined (TE_PE)
14161 else if (fixp->fx_addsy && S_IS_WEAK (fixp->fx_addsy))
14162 rel->addend = fixp->fx_addnumber - (S_GET_VALUE (fixp->fx_addsy) * 2);
14163 else
14164#endif
c6682705 14165 rel->addend = 0;
3e73aa7c
JH
14166 }
14167 /* Use the rela in 64bit mode. */
252b5132 14168 else
3e73aa7c 14169 {
862be3fb
L
14170 if (disallow_64bit_reloc)
14171 switch (code)
14172 {
862be3fb
L
14173 case BFD_RELOC_X86_64_DTPOFF64:
14174 case BFD_RELOC_X86_64_TPOFF64:
14175 case BFD_RELOC_64_PCREL:
14176 case BFD_RELOC_X86_64_GOTOFF64:
14177 case BFD_RELOC_X86_64_GOT64:
14178 case BFD_RELOC_X86_64_GOTPCREL64:
14179 case BFD_RELOC_X86_64_GOTPC64:
14180 case BFD_RELOC_X86_64_GOTPLT64:
14181 case BFD_RELOC_X86_64_PLTOFF64:
14182 as_bad_where (fixp->fx_file, fixp->fx_line,
14183 _("cannot represent relocation type %s in x32 mode"),
14184 bfd_get_reloc_code_name (code));
14185 break;
14186 default:
14187 break;
14188 }
14189
062cd5e7
AS
14190 if (!fixp->fx_pcrel)
14191 rel->addend = fixp->fx_offset;
14192 else
14193 switch (code)
14194 {
14195 case BFD_RELOC_X86_64_PLT32:
14196 case BFD_RELOC_X86_64_GOT32:
14197 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
14198 case BFD_RELOC_X86_64_GOTPCRELX:
14199 case BFD_RELOC_X86_64_REX_GOTPCRELX:
bffbf940
JJ
14200 case BFD_RELOC_X86_64_TLSGD:
14201 case BFD_RELOC_X86_64_TLSLD:
14202 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7
AO
14203 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
14204 case BFD_RELOC_X86_64_TLSDESC_CALL:
062cd5e7
AS
14205 rel->addend = fixp->fx_offset - fixp->fx_size;
14206 break;
14207 default:
14208 rel->addend = (section->vma
14209 - fixp->fx_size
14210 + fixp->fx_addnumber
14211 + md_pcrel_from (fixp));
14212 break;
14213 }
3e73aa7c
JH
14214 }
14215
252b5132
RH
14216 rel->howto = bfd_reloc_type_lookup (stdoutput, code);
14217 if (rel->howto == NULL)
14218 {
14219 as_bad_where (fixp->fx_file, fixp->fx_line,
d0b47220 14220 _("cannot represent relocation type %s"),
252b5132
RH
14221 bfd_get_reloc_code_name (code));
14222 /* Set howto to a garbage value so that we can keep going. */
14223 rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
9c2799c2 14224 gas_assert (rel->howto != NULL);
252b5132
RH
14225 }
14226
14227 return rel;
14228}
14229
ee86248c 14230#include "tc-i386-intel.c"
54cfded0 14231
a60de03c
JB
14232void
14233tc_x86_parse_to_dw2regnum (expressionS *exp)
54cfded0 14234{
a60de03c
JB
14235 int saved_naked_reg;
14236 char saved_register_dot;
54cfded0 14237
a60de03c
JB
14238 saved_naked_reg = allow_naked_reg;
14239 allow_naked_reg = 1;
14240 saved_register_dot = register_chars['.'];
14241 register_chars['.'] = '.';
14242 allow_pseudo_reg = 1;
14243 expression_and_evaluate (exp);
14244 allow_pseudo_reg = 0;
14245 register_chars['.'] = saved_register_dot;
14246 allow_naked_reg = saved_naked_reg;
14247
e96d56a1 14248 if (exp->X_op == O_register && exp->X_add_number >= 0)
54cfded0 14249 {
a60de03c
JB
14250 if ((addressT) exp->X_add_number < i386_regtab_size)
14251 {
14252 exp->X_op = O_constant;
14253 exp->X_add_number = i386_regtab[exp->X_add_number]
14254 .dw2_regnum[flag_code >> 1];
14255 }
14256 else
14257 exp->X_op = O_illegal;
54cfded0 14258 }
54cfded0
AM
14259}
14260
14261void
14262tc_x86_frame_initial_instructions (void)
14263{
a60de03c
JB
14264 static unsigned int sp_regno[2];
14265
14266 if (!sp_regno[flag_code >> 1])
14267 {
14268 char *saved_input = input_line_pointer;
14269 char sp[][4] = {"esp", "rsp"};
14270 expressionS exp;
a4447b93 14271
a60de03c
JB
14272 input_line_pointer = sp[flag_code >> 1];
14273 tc_x86_parse_to_dw2regnum (&exp);
9c2799c2 14274 gas_assert (exp.X_op == O_constant);
a60de03c
JB
14275 sp_regno[flag_code >> 1] = exp.X_add_number;
14276 input_line_pointer = saved_input;
14277 }
a4447b93 14278
61ff971f
L
14279 cfi_add_CFA_def_cfa (sp_regno[flag_code >> 1], -x86_cie_data_alignment);
14280 cfi_add_CFA_offset (x86_dwarf2_return_column, x86_cie_data_alignment);
54cfded0 14281}
d2b2c203 14282
d7921315
L
14283int
14284x86_dwarf2_addr_size (void)
14285{
14286#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
14287 if (x86_elf_abi == X86_64_X32_ABI)
14288 return 4;
14289#endif
14290 return bfd_arch_bits_per_address (stdoutput) / 8;
14291}
14292
d2b2c203
DJ
14293int
14294i386_elf_section_type (const char *str, size_t len)
14295{
14296 if (flag_code == CODE_64BIT
14297 && len == sizeof ("unwind") - 1
14298 && strncmp (str, "unwind", 6) == 0)
14299 return SHT_X86_64_UNWIND;
14300
14301 return -1;
14302}
bb41ade5 14303
ad5fec3b
EB
14304#ifdef TE_SOLARIS
14305void
14306i386_solaris_fix_up_eh_frame (segT sec)
14307{
14308 if (flag_code == CODE_64BIT)
14309 elf_section_type (sec) = SHT_X86_64_UNWIND;
14310}
14311#endif
14312
bb41ade5
AM
14313#ifdef TE_PE
14314void
14315tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
14316{
91d6fa6a 14317 expressionS exp;
bb41ade5 14318
91d6fa6a
NC
14319 exp.X_op = O_secrel;
14320 exp.X_add_symbol = symbol;
14321 exp.X_add_number = 0;
14322 emit_expr (&exp, size);
bb41ade5
AM
14323}
14324#endif
3b22753a
L
14325
14326#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
14327/* For ELF on x86-64, add support for SHF_X86_64_LARGE. */
14328
01e1a5bc 14329bfd_vma
6d4af3c2 14330x86_64_section_letter (int letter, const char **ptr_msg)
3b22753a
L
14331{
14332 if (flag_code == CODE_64BIT)
14333 {
14334 if (letter == 'l')
14335 return SHF_X86_64_LARGE;
14336
8f3bae45 14337 *ptr_msg = _("bad .section directive: want a,l,w,x,M,S,G,T in string");
64e74474 14338 }
3b22753a 14339 else
8f3bae45 14340 *ptr_msg = _("bad .section directive: want a,w,x,M,S,G,T in string");
3b22753a
L
14341 return -1;
14342}
14343
01e1a5bc 14344bfd_vma
3b22753a
L
14345x86_64_section_word (char *str, size_t len)
14346{
08dedd66 14347 if (len == 5 && flag_code == CODE_64BIT && startswith (str, "large"))
3b22753a
L
14348 return SHF_X86_64_LARGE;
14349
14350 return -1;
14351}
14352
14353static void
14354handle_large_common (int small ATTRIBUTE_UNUSED)
14355{
14356 if (flag_code != CODE_64BIT)
14357 {
14358 s_comm_internal (0, elf_common_parse);
14359 as_warn (_(".largecomm supported only in 64bit mode, producing .comm"));
14360 }
14361 else
14362 {
14363 static segT lbss_section;
14364 asection *saved_com_section_ptr = elf_com_section_ptr;
14365 asection *saved_bss_section = bss_section;
14366
14367 if (lbss_section == NULL)
14368 {
14369 flagword applicable;
14370 segT seg = now_seg;
14371 subsegT subseg = now_subseg;
14372
14373 /* The .lbss section is for local .largecomm symbols. */
14374 lbss_section = subseg_new (".lbss", 0);
14375 applicable = bfd_applicable_section_flags (stdoutput);
fd361982 14376 bfd_set_section_flags (lbss_section, applicable & SEC_ALLOC);
3b22753a
L
14377 seg_info (lbss_section)->bss = 1;
14378
14379 subseg_set (seg, subseg);
14380 }
14381
14382 elf_com_section_ptr = &_bfd_elf_large_com_section;
14383 bss_section = lbss_section;
14384
14385 s_comm_internal (0, elf_common_parse);
14386
14387 elf_com_section_ptr = saved_com_section_ptr;
14388 bss_section = saved_bss_section;
14389 }
14390}
14391#endif /* OBJ_ELF || OBJ_MAYBE_ELF */
This page took 2.677371 seconds and 4 git commands to generate.