]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-i386.c
x86: drop stray assignment from build_evex_prefix()
[thirdparty/binutils-gdb.git] / gas / config / tc-i386.c
CommitLineData
b534c6d3 1/* tc-i386.c -- Assemble code for the Intel 80386
b3adc24a 2 Copyright (C) 1989-2020 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20
47926f60
KH
21/* Intel 80386 machine specific gas.
22 Written by Eliot Dresselhaus (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
L
292 unsupported,
293 invalid_vsib_address,
7bab8ab5 294 invalid_vector_register_set,
43234a1e
L
295 unsupported_vector_index_register,
296 unsupported_broadcast,
43234a1e
L
297 broadcast_needed,
298 unsupported_masking,
299 mask_not_on_destination,
300 no_default_mask,
301 unsupported_rc_sae,
302 rc_sae_operand_not_last_imm,
303 invalid_register_operand,
a65babc9
L
304 };
305
252b5132
RH
306struct _i386_insn
307 {
47926f60 308 /* TM holds the template for the insn were currently assembling. */
d3ce72d0 309 insn_template tm;
252b5132 310
7d5e4556
L
311 /* SUFFIX holds the instruction size suffix for byte, word, dword
312 or qword, if given. */
252b5132
RH
313 char suffix;
314
47926f60 315 /* OPERANDS gives the number of given operands. */
252b5132
RH
316 unsigned int operands;
317
318 /* REG_OPERANDS, DISP_OPERANDS, MEM_OPERANDS, IMM_OPERANDS give the number
319 of given register, displacement, memory operands and immediate
47926f60 320 operands. */
252b5132
RH
321 unsigned int reg_operands, disp_operands, mem_operands, imm_operands;
322
323 /* TYPES [i] is the type (see above #defines) which tells us how to
520dc8e8 324 use OP[i] for the corresponding operand. */
40fb9820 325 i386_operand_type types[MAX_OPERANDS];
252b5132 326
520dc8e8
AM
327 /* Displacement expression, immediate expression, or register for each
328 operand. */
329 union i386_op op[MAX_OPERANDS];
252b5132 330
3e73aa7c
JH
331 /* Flags for operands. */
332 unsigned int flags[MAX_OPERANDS];
333#define Operand_PCrel 1
c48dadc9 334#define Operand_Mem 2
3e73aa7c 335
252b5132 336 /* Relocation type for operand */
f86103b7 337 enum bfd_reloc_code_real reloc[MAX_OPERANDS];
252b5132 338
252b5132
RH
339 /* BASE_REG, INDEX_REG, and LOG2_SCALE_FACTOR are used to encode
340 the base index byte below. */
341 const reg_entry *base_reg;
342 const reg_entry *index_reg;
343 unsigned int log2_scale_factor;
344
345 /* SEG gives the seg_entries of this insn. They are zero unless
47926f60 346 explicit segment overrides are given. */
ce8a8b2f 347 const seg_entry *seg[2];
252b5132 348
8325cc63
JB
349 /* Copied first memory operand string, for re-checking. */
350 char *memop1_string;
351
252b5132
RH
352 /* PREFIX holds all the given prefix opcodes (usually null).
353 PREFIXES is the number of prefix opcodes. */
354 unsigned int prefixes;
355 unsigned char prefix[MAX_PREFIXES];
356
50128d0c
JB
357 /* Register is in low 3 bits of opcode. */
358 bfd_boolean short_form;
359
6f2f06be
JB
360 /* The operand to a branch insn indicates an absolute branch. */
361 bfd_boolean jumpabsolute;
362
b4a3a7b4
L
363 /* Has MMX register operands. */
364 bfd_boolean has_regmmx;
365
366 /* Has XMM register operands. */
367 bfd_boolean has_regxmm;
368
369 /* Has YMM register operands. */
370 bfd_boolean has_regymm;
371
372 /* Has ZMM register operands. */
373 bfd_boolean has_regzmm;
374
e379e5f3
L
375 /* Has GOTPC or TLS relocation. */
376 bfd_boolean has_gotpc_tls_reloc;
377
252b5132 378 /* RM and SIB are the modrm byte and the sib byte where the
c1e679ec 379 addressing modes of this insn are encoded. */
252b5132 380 modrm_byte rm;
3e73aa7c 381 rex_byte rex;
43234a1e 382 rex_byte vrex;
252b5132 383 sib_byte sib;
c0f3af97 384 vex_prefix vex;
b6169b20 385
43234a1e
L
386 /* Masking attributes. */
387 struct Mask_Operation *mask;
388
389 /* Rounding control and SAE attributes. */
390 struct RC_Operation *rounding;
391
392 /* Broadcasting attributes. */
393 struct Broadcast_Operation *broadcast;
394
395 /* Compressed disp8*N attribute. */
396 unsigned int memshift;
397
86fa6981
L
398 /* Prefer load or store in encoding. */
399 enum
400 {
401 dir_encoding_default = 0,
402 dir_encoding_load,
64c49ab3
JB
403 dir_encoding_store,
404 dir_encoding_swap
86fa6981 405 } dir_encoding;
891edac4 406
a501d77e
L
407 /* Prefer 8bit or 32bit displacement in encoding. */
408 enum
409 {
410 disp_encoding_default = 0,
411 disp_encoding_8bit,
412 disp_encoding_32bit
413 } disp_encoding;
f8a5c266 414
6b6b6807
L
415 /* Prefer the REX byte in encoding. */
416 bfd_boolean rex_encoding;
417
b6f8c7c4
L
418 /* Disable instruction size optimization. */
419 bfd_boolean no_optimize;
420
86fa6981
L
421 /* How to encode vector instructions. */
422 enum
423 {
424 vex_encoding_default = 0,
42e04b36 425 vex_encoding_vex,
86fa6981 426 vex_encoding_vex3,
da4977e0
JB
427 vex_encoding_evex,
428 vex_encoding_error
86fa6981
L
429 } vec_encoding;
430
d5de92cf
L
431 /* REP prefix. */
432 const char *rep_prefix;
433
165de32a
L
434 /* HLE prefix. */
435 const char *hle_prefix;
42164a71 436
7e8b059b
L
437 /* Have BND prefix. */
438 const char *bnd_prefix;
439
04ef582a
L
440 /* Have NOTRACK prefix. */
441 const char *notrack_prefix;
442
891edac4 443 /* Error message. */
a65babc9 444 enum i386_error error;
252b5132
RH
445 };
446
447typedef struct _i386_insn i386_insn;
448
43234a1e
L
449/* Link RC type with corresponding string, that'll be looked for in
450 asm. */
451struct RC_name
452{
453 enum rc_type type;
454 const char *name;
455 unsigned int len;
456};
457
458static const struct RC_name RC_NamesTable[] =
459{
460 { rne, STRING_COMMA_LEN ("rn-sae") },
461 { rd, STRING_COMMA_LEN ("rd-sae") },
462 { ru, STRING_COMMA_LEN ("ru-sae") },
463 { rz, STRING_COMMA_LEN ("rz-sae") },
464 { saeonly, STRING_COMMA_LEN ("sae") },
465};
466
252b5132
RH
467/* List of chars besides those in app.c:symbol_chars that can start an
468 operand. Used to prevent the scrubber eating vital white-space. */
86fa6981 469const char extra_symbol_chars[] = "*%-([{}"
252b5132 470#ifdef LEX_AT
32137342
NC
471 "@"
472#endif
473#ifdef LEX_QM
474 "?"
252b5132 475#endif
32137342 476 ;
252b5132 477
29b0f896
AM
478#if (defined (TE_I386AIX) \
479 || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) \
3896cfd5 480 && !defined (TE_GNU) \
29b0f896 481 && !defined (TE_LINUX) \
8d63c93e 482 && !defined (TE_NACL) \
29b0f896 483 && !defined (TE_FreeBSD) \
5b806d27 484 && !defined (TE_DragonFly) \
29b0f896 485 && !defined (TE_NetBSD)))
252b5132 486/* This array holds the chars that always start a comment. If the
b3b91714
AM
487 pre-processor is disabled, these aren't very useful. The option
488 --divide will remove '/' from this list. */
489const char *i386_comment_chars = "#/";
490#define SVR4_COMMENT_CHARS 1
252b5132 491#define PREFIX_SEPARATOR '\\'
252b5132 492
b3b91714
AM
493#else
494const char *i386_comment_chars = "#";
495#define PREFIX_SEPARATOR '/'
496#endif
497
252b5132
RH
498/* This array holds the chars that only start a comment at the beginning of
499 a line. If the line seems to have the form '# 123 filename'
ce8a8b2f
AM
500 .line and .file directives will appear in the pre-processed output.
501 Note that input_file.c hand checks for '#' at the beginning of the
252b5132 502 first line of the input file. This is because the compiler outputs
ce8a8b2f
AM
503 #NO_APP at the beginning of its output.
504 Also note that comments started like this one will always work if
252b5132 505 '/' isn't otherwise defined. */
b3b91714 506const char line_comment_chars[] = "#/";
252b5132 507
63a0b638 508const char line_separator_chars[] = ";";
252b5132 509
ce8a8b2f
AM
510/* Chars that can be used to separate mant from exp in floating point
511 nums. */
252b5132
RH
512const char EXP_CHARS[] = "eE";
513
ce8a8b2f
AM
514/* Chars that mean this number is a floating point constant
515 As in 0f12.456
516 or 0d1.2345e12. */
252b5132
RH
517const char FLT_CHARS[] = "fFdDxX";
518
ce8a8b2f 519/* Tables for lexical analysis. */
252b5132
RH
520static char mnemonic_chars[256];
521static char register_chars[256];
522static char operand_chars[256];
523static char identifier_chars[256];
524static char digit_chars[256];
525
ce8a8b2f 526/* Lexical macros. */
252b5132
RH
527#define is_mnemonic_char(x) (mnemonic_chars[(unsigned char) x])
528#define is_operand_char(x) (operand_chars[(unsigned char) x])
529#define is_register_char(x) (register_chars[(unsigned char) x])
530#define is_space_char(x) ((x) == ' ')
531#define is_identifier_char(x) (identifier_chars[(unsigned char) x])
532#define is_digit_char(x) (digit_chars[(unsigned char) x])
533
0234cb7c 534/* All non-digit non-letter characters that may occur in an operand. */
252b5132
RH
535static char operand_special_chars[] = "%$-+(,)*._~/<>|&^!:[@]";
536
537/* md_assemble() always leaves the strings it's passed unaltered. To
538 effect this we maintain a stack of saved characters that we've smashed
539 with '\0's (indicating end of strings for various sub-fields of the
47926f60 540 assembler instruction). */
252b5132 541static char save_stack[32];
ce8a8b2f 542static char *save_stack_p;
252b5132
RH
543#define END_STRING_AND_SAVE(s) \
544 do { *save_stack_p++ = *(s); *(s) = '\0'; } while (0)
545#define RESTORE_END_STRING(s) \
546 do { *(s) = *--save_stack_p; } while (0)
547
47926f60 548/* The instruction we're assembling. */
252b5132
RH
549static i386_insn i;
550
551/* Possible templates for current insn. */
552static const templates *current_templates;
553
31b2323c
L
554/* Per instruction expressionS buffers: max displacements & immediates. */
555static expressionS disp_expressions[MAX_MEMORY_OPERANDS];
556static expressionS im_expressions[MAX_IMMEDIATE_OPERANDS];
252b5132 557
47926f60 558/* Current operand we are working on. */
ee86248c 559static int this_operand = -1;
252b5132 560
3e73aa7c
JH
561/* We support four different modes. FLAG_CODE variable is used to distinguish
562 these. */
563
564enum flag_code {
565 CODE_32BIT,
566 CODE_16BIT,
567 CODE_64BIT };
568
569static enum flag_code flag_code;
4fa24527 570static unsigned int object_64bit;
862be3fb 571static unsigned int disallow_64bit_reloc;
3e73aa7c 572static int use_rela_relocations = 0;
e379e5f3
L
573/* __tls_get_addr/___tls_get_addr symbol for TLS. */
574static const char *tls_get_addr;
3e73aa7c 575
7af8ed2d
NC
576#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
577 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
578 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
579
351f65ca
L
580/* The ELF ABI to use. */
581enum x86_elf_abi
582{
583 I386_ABI,
7f56bc95
L
584 X86_64_ABI,
585 X86_64_X32_ABI
351f65ca
L
586};
587
588static enum x86_elf_abi x86_elf_abi = I386_ABI;
7af8ed2d 589#endif
351f65ca 590
167ad85b
TG
591#if defined (TE_PE) || defined (TE_PEP)
592/* Use big object file format. */
593static int use_big_obj = 0;
594#endif
595
8dcea932
L
596#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
597/* 1 if generating code for a shared library. */
598static int shared = 0;
599#endif
600
47926f60
KH
601/* 1 for intel syntax,
602 0 if att syntax. */
603static int intel_syntax = 0;
252b5132 604
4b5aaf5f
L
605static enum x86_64_isa
606{
607 amd64 = 1, /* AMD64 ISA. */
608 intel64 /* Intel64 ISA. */
609} isa64;
e89c5eaa 610
1efbbeb4
L
611/* 1 for intel mnemonic,
612 0 if att mnemonic. */
613static int intel_mnemonic = !SYSV386_COMPAT;
614
a60de03c
JB
615/* 1 if pseudo registers are permitted. */
616static int allow_pseudo_reg = 0;
617
47926f60
KH
618/* 1 if register prefix % not required. */
619static int allow_naked_reg = 0;
252b5132 620
33eaf5de 621/* 1 if the assembler should add BND prefix for all control-transferring
7e8b059b
L
622 instructions supporting it, even if this prefix wasn't specified
623 explicitly. */
624static int add_bnd_prefix = 0;
625
ba104c83 626/* 1 if pseudo index register, eiz/riz, is allowed . */
db51cc60
L
627static int allow_index_reg = 0;
628
d022bddd
IT
629/* 1 if the assembler should ignore LOCK prefix, even if it was
630 specified explicitly. */
631static int omit_lock_prefix = 0;
632
e4e00185
AS
633/* 1 if the assembler should encode lfence, mfence, and sfence as
634 "lock addl $0, (%{re}sp)". */
635static int avoid_fence = 0;
636
ae531041
L
637/* 1 if lfence should be inserted after every load. */
638static int lfence_after_load = 0;
639
640/* Non-zero if lfence should be inserted before indirect branch. */
641static enum lfence_before_indirect_branch_kind
642 {
643 lfence_branch_none = 0,
644 lfence_branch_register,
645 lfence_branch_memory,
646 lfence_branch_all
647 }
648lfence_before_indirect_branch;
649
650/* Non-zero if lfence should be inserted before ret. */
651static enum lfence_before_ret_kind
652 {
653 lfence_before_ret_none = 0,
654 lfence_before_ret_not,
a09f656b 655 lfence_before_ret_or,
656 lfence_before_ret_shl
ae531041
L
657 }
658lfence_before_ret;
659
660/* Types of previous instruction is .byte or prefix. */
e379e5f3
L
661static struct
662 {
663 segT seg;
664 const char *file;
665 const char *name;
666 unsigned int line;
667 enum last_insn_kind
668 {
669 last_insn_other = 0,
670 last_insn_directive,
671 last_insn_prefix
672 } kind;
673 } last_insn;
674
0cb4071e
L
675/* 1 if the assembler should generate relax relocations. */
676
677static int generate_relax_relocations
678 = DEFAULT_GENERATE_X86_RELAX_RELOCATIONS;
679
7bab8ab5 680static enum check_kind
daf50ae7 681 {
7bab8ab5
JB
682 check_none = 0,
683 check_warning,
684 check_error
daf50ae7 685 }
7bab8ab5 686sse_check, operand_check = check_warning;
daf50ae7 687
e379e5f3
L
688/* Non-zero if branches should be aligned within power of 2 boundary. */
689static int align_branch_power = 0;
690
691/* Types of branches to align. */
692enum align_branch_kind
693 {
694 align_branch_none = 0,
695 align_branch_jcc = 1,
696 align_branch_fused = 2,
697 align_branch_jmp = 3,
698 align_branch_call = 4,
699 align_branch_indirect = 5,
700 align_branch_ret = 6
701 };
702
703/* Type bits of branches to align. */
704enum align_branch_bit
705 {
706 align_branch_jcc_bit = 1 << align_branch_jcc,
707 align_branch_fused_bit = 1 << align_branch_fused,
708 align_branch_jmp_bit = 1 << align_branch_jmp,
709 align_branch_call_bit = 1 << align_branch_call,
710 align_branch_indirect_bit = 1 << align_branch_indirect,
711 align_branch_ret_bit = 1 << align_branch_ret
712 };
713
714static unsigned int align_branch = (align_branch_jcc_bit
715 | align_branch_fused_bit
716 | align_branch_jmp_bit);
717
79d72f45
HL
718/* Types of condition jump used by macro-fusion. */
719enum mf_jcc_kind
720 {
721 mf_jcc_jo = 0, /* base opcode 0x70 */
722 mf_jcc_jc, /* base opcode 0x72 */
723 mf_jcc_je, /* base opcode 0x74 */
724 mf_jcc_jna, /* base opcode 0x76 */
725 mf_jcc_js, /* base opcode 0x78 */
726 mf_jcc_jp, /* base opcode 0x7a */
727 mf_jcc_jl, /* base opcode 0x7c */
728 mf_jcc_jle, /* base opcode 0x7e */
729 };
730
731/* Types of compare flag-modifying insntructions used by macro-fusion. */
732enum mf_cmp_kind
733 {
734 mf_cmp_test_and, /* test/cmp */
735 mf_cmp_alu_cmp, /* add/sub/cmp */
736 mf_cmp_incdec /* inc/dec */
737 };
738
e379e5f3
L
739/* The maximum padding size for fused jcc. CMP like instruction can
740 be 9 bytes and jcc can be 6 bytes. Leave room just in case for
741 prefixes. */
742#define MAX_FUSED_JCC_PADDING_SIZE 20
743
744/* The maximum number of prefixes added for an instruction. */
745static unsigned int align_branch_prefix_size = 5;
746
b6f8c7c4
L
747/* Optimization:
748 1. Clear the REX_W bit with register operand if possible.
749 2. Above plus use 128bit vector instruction to clear the full vector
750 register.
751 */
752static int optimize = 0;
753
754/* Optimization:
755 1. Clear the REX_W bit with register operand if possible.
756 2. Above plus use 128bit vector instruction to clear the full vector
757 register.
758 3. Above plus optimize "test{q,l,w} $imm8,%r{64,32,16}" to
759 "testb $imm7,%r8".
760 */
761static int optimize_for_space = 0;
762
2ca3ace5
L
763/* Register prefix used for error message. */
764static const char *register_prefix = "%";
765
47926f60
KH
766/* Used in 16 bit gcc mode to add an l suffix to call, ret, enter,
767 leave, push, and pop instructions so that gcc has the same stack
768 frame as in 32 bit mode. */
769static char stackop_size = '\0';
eecb386c 770
12b55ccc
L
771/* Non-zero to optimize code alignment. */
772int optimize_align_code = 1;
773
47926f60
KH
774/* Non-zero to quieten some warnings. */
775static int quiet_warnings = 0;
a38cf1db 776
47926f60
KH
777/* CPU name. */
778static const char *cpu_arch_name = NULL;
6305a203 779static char *cpu_sub_arch_name = NULL;
a38cf1db 780
47926f60 781/* CPU feature flags. */
40fb9820
L
782static i386_cpu_flags cpu_arch_flags = CPU_UNKNOWN_FLAGS;
783
ccc9c027
L
784/* If we have selected a cpu we are generating instructions for. */
785static int cpu_arch_tune_set = 0;
786
9103f4f4 787/* Cpu we are generating instructions for. */
fbf3f584 788enum processor_type cpu_arch_tune = PROCESSOR_UNKNOWN;
9103f4f4
L
789
790/* CPU feature flags of cpu we are generating instructions for. */
40fb9820 791static i386_cpu_flags cpu_arch_tune_flags;
9103f4f4 792
ccc9c027 793/* CPU instruction set architecture used. */
fbf3f584 794enum processor_type cpu_arch_isa = PROCESSOR_UNKNOWN;
ccc9c027 795
9103f4f4 796/* CPU feature flags of instruction set architecture used. */
fbf3f584 797i386_cpu_flags cpu_arch_isa_flags;
9103f4f4 798
fddf5b5b
AM
799/* If set, conditional jumps are not automatically promoted to handle
800 larger than a byte offset. */
801static unsigned int no_cond_jump_promotion = 0;
802
c0f3af97
L
803/* Encode SSE instructions with VEX prefix. */
804static unsigned int sse2avx;
805
539f890d
L
806/* Encode scalar AVX instructions with specific vector length. */
807static enum
808 {
809 vex128 = 0,
810 vex256
811 } avxscalar;
812
03751133
L
813/* Encode VEX WIG instructions with specific vex.w. */
814static enum
815 {
816 vexw0 = 0,
817 vexw1
818 } vexwig;
819
43234a1e
L
820/* Encode scalar EVEX LIG instructions with specific vector length. */
821static enum
822 {
823 evexl128 = 0,
824 evexl256,
825 evexl512
826 } evexlig;
827
828/* Encode EVEX WIG instructions with specific evex.w. */
829static enum
830 {
831 evexw0 = 0,
832 evexw1
833 } evexwig;
834
d3d3c6db
IT
835/* Value to encode in EVEX RC bits, for SAE-only instructions. */
836static enum rc_type evexrcig = rne;
837
29b0f896 838/* Pre-defined "_GLOBAL_OFFSET_TABLE_". */
87c245cc 839static symbolS *GOT_symbol;
29b0f896 840
a4447b93
RH
841/* The dwarf2 return column, adjusted for 32 or 64 bit. */
842unsigned int x86_dwarf2_return_column;
843
844/* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
845int x86_cie_data_alignment;
846
252b5132 847/* Interface to relax_segment.
fddf5b5b
AM
848 There are 3 major relax states for 386 jump insns because the
849 different types of jumps add different sizes to frags when we're
e379e5f3
L
850 figuring out what sort of jump to choose to reach a given label.
851
852 BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING are used to align
853 branches which are handled by md_estimate_size_before_relax() and
854 i386_generic_table_relax_frag(). */
252b5132 855
47926f60 856/* Types. */
93c2a809
AM
857#define UNCOND_JUMP 0
858#define COND_JUMP 1
859#define COND_JUMP86 2
e379e5f3
L
860#define BRANCH_PADDING 3
861#define BRANCH_PREFIX 4
862#define FUSED_JCC_PADDING 5
fddf5b5b 863
47926f60 864/* Sizes. */
252b5132
RH
865#define CODE16 1
866#define SMALL 0
29b0f896 867#define SMALL16 (SMALL | CODE16)
252b5132 868#define BIG 2
29b0f896 869#define BIG16 (BIG | CODE16)
252b5132
RH
870
871#ifndef INLINE
872#ifdef __GNUC__
873#define INLINE __inline__
874#else
875#define INLINE
876#endif
877#endif
878
fddf5b5b
AM
879#define ENCODE_RELAX_STATE(type, size) \
880 ((relax_substateT) (((type) << 2) | (size)))
881#define TYPE_FROM_RELAX_STATE(s) \
882 ((s) >> 2)
883#define DISP_SIZE_FROM_RELAX_STATE(s) \
884 ((((s) & 3) == BIG ? 4 : (((s) & 3) == BIG16 ? 2 : 1)))
252b5132
RH
885
886/* This table is used by relax_frag to promote short jumps to long
887 ones where necessary. SMALL (short) jumps may be promoted to BIG
888 (32 bit long) ones, and SMALL16 jumps to BIG16 (16 bit long). We
889 don't allow a short jump in a 32 bit code segment to be promoted to
890 a 16 bit offset jump because it's slower (requires data size
891 prefix), and doesn't work, unless the destination is in the bottom
892 64k of the code segment (The top 16 bits of eip are zeroed). */
893
894const relax_typeS md_relax_table[] =
895{
24eab124
AM
896 /* The fields are:
897 1) most positive reach of this state,
898 2) most negative reach of this state,
93c2a809 899 3) how many bytes this mode will have in the variable part of the frag
ce8a8b2f 900 4) which index into the table to try if we can't fit into this one. */
252b5132 901
fddf5b5b 902 /* UNCOND_JUMP states. */
93c2a809
AM
903 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG)},
904 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16)},
905 /* dword jmp adds 4 bytes to frag:
906 0 extra opcode bytes, 4 displacement bytes. */
252b5132 907 {0, 0, 4, 0},
93c2a809
AM
908 /* word jmp adds 2 byte2 to frag:
909 0 extra opcode bytes, 2 displacement bytes. */
252b5132
RH
910 {0, 0, 2, 0},
911
93c2a809
AM
912 /* COND_JUMP states. */
913 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG)},
914 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG16)},
915 /* dword conditionals adds 5 bytes to frag:
916 1 extra opcode byte, 4 displacement bytes. */
917 {0, 0, 5, 0},
fddf5b5b 918 /* word conditionals add 3 bytes to frag:
93c2a809
AM
919 1 extra opcode byte, 2 displacement bytes. */
920 {0, 0, 3, 0},
921
922 /* COND_JUMP86 states. */
923 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG)},
924 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG16)},
925 /* dword conditionals adds 5 bytes to frag:
926 1 extra opcode byte, 4 displacement bytes. */
927 {0, 0, 5, 0},
928 /* word conditionals add 4 bytes to frag:
929 1 displacement byte and a 3 byte long branch insn. */
930 {0, 0, 4, 0}
252b5132
RH
931};
932
9103f4f4
L
933static const arch_entry cpu_arch[] =
934{
89507696
JB
935 /* Do not replace the first two entries - i386_target_format()
936 relies on them being there in this order. */
8a2c8fef 937 { STRING_COMMA_LEN ("generic32"), PROCESSOR_GENERIC32,
293f5f65 938 CPU_GENERIC32_FLAGS, 0 },
8a2c8fef 939 { STRING_COMMA_LEN ("generic64"), PROCESSOR_GENERIC64,
293f5f65 940 CPU_GENERIC64_FLAGS, 0 },
8a2c8fef 941 { STRING_COMMA_LEN ("i8086"), PROCESSOR_UNKNOWN,
293f5f65 942 CPU_NONE_FLAGS, 0 },
8a2c8fef 943 { STRING_COMMA_LEN ("i186"), PROCESSOR_UNKNOWN,
293f5f65 944 CPU_I186_FLAGS, 0 },
8a2c8fef 945 { STRING_COMMA_LEN ("i286"), PROCESSOR_UNKNOWN,
293f5f65 946 CPU_I286_FLAGS, 0 },
8a2c8fef 947 { STRING_COMMA_LEN ("i386"), PROCESSOR_I386,
293f5f65 948 CPU_I386_FLAGS, 0 },
8a2c8fef 949 { STRING_COMMA_LEN ("i486"), PROCESSOR_I486,
293f5f65 950 CPU_I486_FLAGS, 0 },
8a2c8fef 951 { STRING_COMMA_LEN ("i586"), PROCESSOR_PENTIUM,
293f5f65 952 CPU_I586_FLAGS, 0 },
8a2c8fef 953 { STRING_COMMA_LEN ("i686"), PROCESSOR_PENTIUMPRO,
293f5f65 954 CPU_I686_FLAGS, 0 },
8a2c8fef 955 { STRING_COMMA_LEN ("pentium"), PROCESSOR_PENTIUM,
293f5f65 956 CPU_I586_FLAGS, 0 },
8a2c8fef 957 { STRING_COMMA_LEN ("pentiumpro"), PROCESSOR_PENTIUMPRO,
293f5f65 958 CPU_PENTIUMPRO_FLAGS, 0 },
8a2c8fef 959 { STRING_COMMA_LEN ("pentiumii"), PROCESSOR_PENTIUMPRO,
293f5f65 960 CPU_P2_FLAGS, 0 },
8a2c8fef 961 { STRING_COMMA_LEN ("pentiumiii"),PROCESSOR_PENTIUMPRO,
293f5f65 962 CPU_P3_FLAGS, 0 },
8a2c8fef 963 { STRING_COMMA_LEN ("pentium4"), PROCESSOR_PENTIUM4,
293f5f65 964 CPU_P4_FLAGS, 0 },
8a2c8fef 965 { STRING_COMMA_LEN ("prescott"), PROCESSOR_NOCONA,
293f5f65 966 CPU_CORE_FLAGS, 0 },
8a2c8fef 967 { STRING_COMMA_LEN ("nocona"), PROCESSOR_NOCONA,
293f5f65 968 CPU_NOCONA_FLAGS, 0 },
8a2c8fef 969 { STRING_COMMA_LEN ("yonah"), PROCESSOR_CORE,
293f5f65 970 CPU_CORE_FLAGS, 1 },
8a2c8fef 971 { STRING_COMMA_LEN ("core"), PROCESSOR_CORE,
293f5f65 972 CPU_CORE_FLAGS, 0 },
8a2c8fef 973 { STRING_COMMA_LEN ("merom"), PROCESSOR_CORE2,
293f5f65 974 CPU_CORE2_FLAGS, 1 },
8a2c8fef 975 { STRING_COMMA_LEN ("core2"), PROCESSOR_CORE2,
293f5f65 976 CPU_CORE2_FLAGS, 0 },
8a2c8fef 977 { STRING_COMMA_LEN ("corei7"), PROCESSOR_COREI7,
293f5f65 978 CPU_COREI7_FLAGS, 0 },
8a2c8fef 979 { STRING_COMMA_LEN ("l1om"), PROCESSOR_L1OM,
293f5f65 980 CPU_L1OM_FLAGS, 0 },
7a9068fe 981 { STRING_COMMA_LEN ("k1om"), PROCESSOR_K1OM,
293f5f65 982 CPU_K1OM_FLAGS, 0 },
81486035 983 { STRING_COMMA_LEN ("iamcu"), PROCESSOR_IAMCU,
293f5f65 984 CPU_IAMCU_FLAGS, 0 },
8a2c8fef 985 { STRING_COMMA_LEN ("k6"), PROCESSOR_K6,
293f5f65 986 CPU_K6_FLAGS, 0 },
8a2c8fef 987 { STRING_COMMA_LEN ("k6_2"), PROCESSOR_K6,
293f5f65 988 CPU_K6_2_FLAGS, 0 },
8a2c8fef 989 { STRING_COMMA_LEN ("athlon"), PROCESSOR_ATHLON,
293f5f65 990 CPU_ATHLON_FLAGS, 0 },
8a2c8fef 991 { STRING_COMMA_LEN ("sledgehammer"), PROCESSOR_K8,
293f5f65 992 CPU_K8_FLAGS, 1 },
8a2c8fef 993 { STRING_COMMA_LEN ("opteron"), PROCESSOR_K8,
293f5f65 994 CPU_K8_FLAGS, 0 },
8a2c8fef 995 { STRING_COMMA_LEN ("k8"), PROCESSOR_K8,
293f5f65 996 CPU_K8_FLAGS, 0 },
8a2c8fef 997 { STRING_COMMA_LEN ("amdfam10"), PROCESSOR_AMDFAM10,
293f5f65 998 CPU_AMDFAM10_FLAGS, 0 },
8aedb9fe 999 { STRING_COMMA_LEN ("bdver1"), PROCESSOR_BD,
293f5f65 1000 CPU_BDVER1_FLAGS, 0 },
8aedb9fe 1001 { STRING_COMMA_LEN ("bdver2"), PROCESSOR_BD,
293f5f65 1002 CPU_BDVER2_FLAGS, 0 },
5e5c50d3 1003 { STRING_COMMA_LEN ("bdver3"), PROCESSOR_BD,
293f5f65 1004 CPU_BDVER3_FLAGS, 0 },
c7b0bd56 1005 { STRING_COMMA_LEN ("bdver4"), PROCESSOR_BD,
293f5f65 1006 CPU_BDVER4_FLAGS, 0 },
029f3522 1007 { STRING_COMMA_LEN ("znver1"), PROCESSOR_ZNVER,
293f5f65 1008 CPU_ZNVER1_FLAGS, 0 },
a9660a6f
AP
1009 { STRING_COMMA_LEN ("znver2"), PROCESSOR_ZNVER,
1010 CPU_ZNVER2_FLAGS, 0 },
7b458c12 1011 { STRING_COMMA_LEN ("btver1"), PROCESSOR_BT,
293f5f65 1012 CPU_BTVER1_FLAGS, 0 },
7b458c12 1013 { STRING_COMMA_LEN ("btver2"), PROCESSOR_BT,
293f5f65 1014 CPU_BTVER2_FLAGS, 0 },
8a2c8fef 1015 { STRING_COMMA_LEN (".8087"), PROCESSOR_UNKNOWN,
293f5f65 1016 CPU_8087_FLAGS, 0 },
8a2c8fef 1017 { STRING_COMMA_LEN (".287"), PROCESSOR_UNKNOWN,
293f5f65 1018 CPU_287_FLAGS, 0 },
8a2c8fef 1019 { STRING_COMMA_LEN (".387"), PROCESSOR_UNKNOWN,
293f5f65 1020 CPU_387_FLAGS, 0 },
1848e567
L
1021 { STRING_COMMA_LEN (".687"), PROCESSOR_UNKNOWN,
1022 CPU_687_FLAGS, 0 },
d871f3f4
L
1023 { STRING_COMMA_LEN (".cmov"), PROCESSOR_UNKNOWN,
1024 CPU_CMOV_FLAGS, 0 },
1025 { STRING_COMMA_LEN (".fxsr"), PROCESSOR_UNKNOWN,
1026 CPU_FXSR_FLAGS, 0 },
8a2c8fef 1027 { STRING_COMMA_LEN (".mmx"), PROCESSOR_UNKNOWN,
293f5f65 1028 CPU_MMX_FLAGS, 0 },
8a2c8fef 1029 { STRING_COMMA_LEN (".sse"), PROCESSOR_UNKNOWN,
293f5f65 1030 CPU_SSE_FLAGS, 0 },
8a2c8fef 1031 { STRING_COMMA_LEN (".sse2"), PROCESSOR_UNKNOWN,
293f5f65 1032 CPU_SSE2_FLAGS, 0 },
8a2c8fef 1033 { STRING_COMMA_LEN (".sse3"), PROCESSOR_UNKNOWN,
293f5f65 1034 CPU_SSE3_FLAGS, 0 },
af5c13b0
L
1035 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
1036 CPU_SSE4A_FLAGS, 0 },
8a2c8fef 1037 { STRING_COMMA_LEN (".ssse3"), PROCESSOR_UNKNOWN,
293f5f65 1038 CPU_SSSE3_FLAGS, 0 },
8a2c8fef 1039 { STRING_COMMA_LEN (".sse4.1"), PROCESSOR_UNKNOWN,
293f5f65 1040 CPU_SSE4_1_FLAGS, 0 },
8a2c8fef 1041 { STRING_COMMA_LEN (".sse4.2"), PROCESSOR_UNKNOWN,
293f5f65 1042 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 1043 { STRING_COMMA_LEN (".sse4"), PROCESSOR_UNKNOWN,
293f5f65 1044 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 1045 { STRING_COMMA_LEN (".avx"), PROCESSOR_UNKNOWN,
293f5f65 1046 CPU_AVX_FLAGS, 0 },
6c30d220 1047 { STRING_COMMA_LEN (".avx2"), PROCESSOR_UNKNOWN,
293f5f65 1048 CPU_AVX2_FLAGS, 0 },
43234a1e 1049 { STRING_COMMA_LEN (".avx512f"), PROCESSOR_UNKNOWN,
293f5f65 1050 CPU_AVX512F_FLAGS, 0 },
43234a1e 1051 { STRING_COMMA_LEN (".avx512cd"), PROCESSOR_UNKNOWN,
293f5f65 1052 CPU_AVX512CD_FLAGS, 0 },
43234a1e 1053 { STRING_COMMA_LEN (".avx512er"), PROCESSOR_UNKNOWN,
293f5f65 1054 CPU_AVX512ER_FLAGS, 0 },
43234a1e 1055 { STRING_COMMA_LEN (".avx512pf"), PROCESSOR_UNKNOWN,
293f5f65 1056 CPU_AVX512PF_FLAGS, 0 },
1dfc6506 1057 { STRING_COMMA_LEN (".avx512dq"), PROCESSOR_UNKNOWN,
293f5f65 1058 CPU_AVX512DQ_FLAGS, 0 },
1dfc6506 1059 { STRING_COMMA_LEN (".avx512bw"), PROCESSOR_UNKNOWN,
293f5f65 1060 CPU_AVX512BW_FLAGS, 0 },
1dfc6506 1061 { STRING_COMMA_LEN (".avx512vl"), PROCESSOR_UNKNOWN,
293f5f65 1062 CPU_AVX512VL_FLAGS, 0 },
8a2c8fef 1063 { STRING_COMMA_LEN (".vmx"), PROCESSOR_UNKNOWN,
293f5f65 1064 CPU_VMX_FLAGS, 0 },
8729a6f6 1065 { STRING_COMMA_LEN (".vmfunc"), PROCESSOR_UNKNOWN,
293f5f65 1066 CPU_VMFUNC_FLAGS, 0 },
8a2c8fef 1067 { STRING_COMMA_LEN (".smx"), PROCESSOR_UNKNOWN,
293f5f65 1068 CPU_SMX_FLAGS, 0 },
8a2c8fef 1069 { STRING_COMMA_LEN (".xsave"), PROCESSOR_UNKNOWN,
293f5f65 1070 CPU_XSAVE_FLAGS, 0 },
c7b8aa3a 1071 { STRING_COMMA_LEN (".xsaveopt"), PROCESSOR_UNKNOWN,
293f5f65 1072 CPU_XSAVEOPT_FLAGS, 0 },
1dfc6506 1073 { STRING_COMMA_LEN (".xsavec"), PROCESSOR_UNKNOWN,
293f5f65 1074 CPU_XSAVEC_FLAGS, 0 },
1dfc6506 1075 { STRING_COMMA_LEN (".xsaves"), PROCESSOR_UNKNOWN,
293f5f65 1076 CPU_XSAVES_FLAGS, 0 },
8a2c8fef 1077 { STRING_COMMA_LEN (".aes"), PROCESSOR_UNKNOWN,
293f5f65 1078 CPU_AES_FLAGS, 0 },
8a2c8fef 1079 { STRING_COMMA_LEN (".pclmul"), PROCESSOR_UNKNOWN,
293f5f65 1080 CPU_PCLMUL_FLAGS, 0 },
8a2c8fef 1081 { STRING_COMMA_LEN (".clmul"), PROCESSOR_UNKNOWN,
293f5f65 1082 CPU_PCLMUL_FLAGS, 1 },
c7b8aa3a 1083 { STRING_COMMA_LEN (".fsgsbase"), PROCESSOR_UNKNOWN,
293f5f65 1084 CPU_FSGSBASE_FLAGS, 0 },
c7b8aa3a 1085 { STRING_COMMA_LEN (".rdrnd"), PROCESSOR_UNKNOWN,
293f5f65 1086 CPU_RDRND_FLAGS, 0 },
c7b8aa3a 1087 { STRING_COMMA_LEN (".f16c"), PROCESSOR_UNKNOWN,
293f5f65 1088 CPU_F16C_FLAGS, 0 },
6c30d220 1089 { STRING_COMMA_LEN (".bmi2"), PROCESSOR_UNKNOWN,
293f5f65 1090 CPU_BMI2_FLAGS, 0 },
8a2c8fef 1091 { STRING_COMMA_LEN (".fma"), PROCESSOR_UNKNOWN,
293f5f65 1092 CPU_FMA_FLAGS, 0 },
8a2c8fef 1093 { STRING_COMMA_LEN (".fma4"), PROCESSOR_UNKNOWN,
293f5f65 1094 CPU_FMA4_FLAGS, 0 },
8a2c8fef 1095 { STRING_COMMA_LEN (".xop"), PROCESSOR_UNKNOWN,
293f5f65 1096 CPU_XOP_FLAGS, 0 },
8a2c8fef 1097 { STRING_COMMA_LEN (".lwp"), PROCESSOR_UNKNOWN,
293f5f65 1098 CPU_LWP_FLAGS, 0 },
8a2c8fef 1099 { STRING_COMMA_LEN (".movbe"), PROCESSOR_UNKNOWN,
293f5f65 1100 CPU_MOVBE_FLAGS, 0 },
60aa667e 1101 { STRING_COMMA_LEN (".cx16"), PROCESSOR_UNKNOWN,
293f5f65 1102 CPU_CX16_FLAGS, 0 },
8a2c8fef 1103 { STRING_COMMA_LEN (".ept"), PROCESSOR_UNKNOWN,
293f5f65 1104 CPU_EPT_FLAGS, 0 },
6c30d220 1105 { STRING_COMMA_LEN (".lzcnt"), PROCESSOR_UNKNOWN,
293f5f65 1106 CPU_LZCNT_FLAGS, 0 },
272a84b1
L
1107 { STRING_COMMA_LEN (".popcnt"), PROCESSOR_UNKNOWN,
1108 CPU_POPCNT_FLAGS, 0 },
42164a71 1109 { STRING_COMMA_LEN (".hle"), PROCESSOR_UNKNOWN,
293f5f65 1110 CPU_HLE_FLAGS, 0 },
42164a71 1111 { STRING_COMMA_LEN (".rtm"), PROCESSOR_UNKNOWN,
293f5f65 1112 CPU_RTM_FLAGS, 0 },
6c30d220 1113 { STRING_COMMA_LEN (".invpcid"), PROCESSOR_UNKNOWN,
293f5f65 1114 CPU_INVPCID_FLAGS, 0 },
8a2c8fef 1115 { STRING_COMMA_LEN (".clflush"), PROCESSOR_UNKNOWN,
293f5f65 1116 CPU_CLFLUSH_FLAGS, 0 },
22109423 1117 { STRING_COMMA_LEN (".nop"), PROCESSOR_UNKNOWN,
293f5f65 1118 CPU_NOP_FLAGS, 0 },
8a2c8fef 1119 { STRING_COMMA_LEN (".syscall"), PROCESSOR_UNKNOWN,
293f5f65 1120 CPU_SYSCALL_FLAGS, 0 },
8a2c8fef 1121 { STRING_COMMA_LEN (".rdtscp"), PROCESSOR_UNKNOWN,
293f5f65 1122 CPU_RDTSCP_FLAGS, 0 },
8a2c8fef 1123 { STRING_COMMA_LEN (".3dnow"), PROCESSOR_UNKNOWN,
293f5f65 1124 CPU_3DNOW_FLAGS, 0 },
8a2c8fef 1125 { STRING_COMMA_LEN (".3dnowa"), PROCESSOR_UNKNOWN,
293f5f65 1126 CPU_3DNOWA_FLAGS, 0 },
8a2c8fef 1127 { STRING_COMMA_LEN (".padlock"), PROCESSOR_UNKNOWN,
293f5f65 1128 CPU_PADLOCK_FLAGS, 0 },
8a2c8fef 1129 { STRING_COMMA_LEN (".pacifica"), PROCESSOR_UNKNOWN,
293f5f65 1130 CPU_SVME_FLAGS, 1 },
8a2c8fef 1131 { STRING_COMMA_LEN (".svme"), PROCESSOR_UNKNOWN,
293f5f65 1132 CPU_SVME_FLAGS, 0 },
8a2c8fef 1133 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
293f5f65 1134 CPU_SSE4A_FLAGS, 0 },
8a2c8fef 1135 { STRING_COMMA_LEN (".abm"), PROCESSOR_UNKNOWN,
293f5f65 1136 CPU_ABM_FLAGS, 0 },
87973e9f 1137 { STRING_COMMA_LEN (".bmi"), PROCESSOR_UNKNOWN,
293f5f65 1138 CPU_BMI_FLAGS, 0 },
2a2a0f38 1139 { STRING_COMMA_LEN (".tbm"), PROCESSOR_UNKNOWN,
293f5f65 1140 CPU_TBM_FLAGS, 0 },
e2e1fcde 1141 { STRING_COMMA_LEN (".adx"), PROCESSOR_UNKNOWN,
293f5f65 1142 CPU_ADX_FLAGS, 0 },
e2e1fcde 1143 { STRING_COMMA_LEN (".rdseed"), PROCESSOR_UNKNOWN,
293f5f65 1144 CPU_RDSEED_FLAGS, 0 },
e2e1fcde 1145 { STRING_COMMA_LEN (".prfchw"), PROCESSOR_UNKNOWN,
293f5f65 1146 CPU_PRFCHW_FLAGS, 0 },
5c111e37 1147 { STRING_COMMA_LEN (".smap"), PROCESSOR_UNKNOWN,
293f5f65 1148 CPU_SMAP_FLAGS, 0 },
7e8b059b 1149 { STRING_COMMA_LEN (".mpx"), PROCESSOR_UNKNOWN,
293f5f65 1150 CPU_MPX_FLAGS, 0 },
a0046408 1151 { STRING_COMMA_LEN (".sha"), PROCESSOR_UNKNOWN,
293f5f65 1152 CPU_SHA_FLAGS, 0 },
963f3586 1153 { STRING_COMMA_LEN (".clflushopt"), PROCESSOR_UNKNOWN,
293f5f65 1154 CPU_CLFLUSHOPT_FLAGS, 0 },
dcf893b5 1155 { STRING_COMMA_LEN (".prefetchwt1"), PROCESSOR_UNKNOWN,
293f5f65 1156 CPU_PREFETCHWT1_FLAGS, 0 },
2cf200a4 1157 { STRING_COMMA_LEN (".se1"), PROCESSOR_UNKNOWN,
293f5f65 1158 CPU_SE1_FLAGS, 0 },
c5e7287a 1159 { STRING_COMMA_LEN (".clwb"), PROCESSOR_UNKNOWN,
293f5f65 1160 CPU_CLWB_FLAGS, 0 },
2cc1b5aa 1161 { STRING_COMMA_LEN (".avx512ifma"), PROCESSOR_UNKNOWN,
293f5f65 1162 CPU_AVX512IFMA_FLAGS, 0 },
14f195c9 1163 { STRING_COMMA_LEN (".avx512vbmi"), PROCESSOR_UNKNOWN,
293f5f65 1164 CPU_AVX512VBMI_FLAGS, 0 },
920d2ddc
IT
1165 { STRING_COMMA_LEN (".avx512_4fmaps"), PROCESSOR_UNKNOWN,
1166 CPU_AVX512_4FMAPS_FLAGS, 0 },
47acf0bd
IT
1167 { STRING_COMMA_LEN (".avx512_4vnniw"), PROCESSOR_UNKNOWN,
1168 CPU_AVX512_4VNNIW_FLAGS, 0 },
620214f7
IT
1169 { STRING_COMMA_LEN (".avx512_vpopcntdq"), PROCESSOR_UNKNOWN,
1170 CPU_AVX512_VPOPCNTDQ_FLAGS, 0 },
53467f57
IT
1171 { STRING_COMMA_LEN (".avx512_vbmi2"), PROCESSOR_UNKNOWN,
1172 CPU_AVX512_VBMI2_FLAGS, 0 },
8cfcb765
IT
1173 { STRING_COMMA_LEN (".avx512_vnni"), PROCESSOR_UNKNOWN,
1174 CPU_AVX512_VNNI_FLAGS, 0 },
ee6872be
IT
1175 { STRING_COMMA_LEN (".avx512_bitalg"), PROCESSOR_UNKNOWN,
1176 CPU_AVX512_BITALG_FLAGS, 0 },
029f3522 1177 { STRING_COMMA_LEN (".clzero"), PROCESSOR_UNKNOWN,
293f5f65 1178 CPU_CLZERO_FLAGS, 0 },
9916071f 1179 { STRING_COMMA_LEN (".mwaitx"), PROCESSOR_UNKNOWN,
293f5f65 1180 CPU_MWAITX_FLAGS, 0 },
8eab4136 1181 { STRING_COMMA_LEN (".ospke"), PROCESSOR_UNKNOWN,
293f5f65 1182 CPU_OSPKE_FLAGS, 0 },
8bc52696 1183 { STRING_COMMA_LEN (".rdpid"), PROCESSOR_UNKNOWN,
293f5f65 1184 CPU_RDPID_FLAGS, 0 },
6b40c462
L
1185 { STRING_COMMA_LEN (".ptwrite"), PROCESSOR_UNKNOWN,
1186 CPU_PTWRITE_FLAGS, 0 },
d777820b
IT
1187 { STRING_COMMA_LEN (".ibt"), PROCESSOR_UNKNOWN,
1188 CPU_IBT_FLAGS, 0 },
1189 { STRING_COMMA_LEN (".shstk"), PROCESSOR_UNKNOWN,
1190 CPU_SHSTK_FLAGS, 0 },
48521003
IT
1191 { STRING_COMMA_LEN (".gfni"), PROCESSOR_UNKNOWN,
1192 CPU_GFNI_FLAGS, 0 },
8dcf1fad
IT
1193 { STRING_COMMA_LEN (".vaes"), PROCESSOR_UNKNOWN,
1194 CPU_VAES_FLAGS, 0 },
ff1982d5
IT
1195 { STRING_COMMA_LEN (".vpclmulqdq"), PROCESSOR_UNKNOWN,
1196 CPU_VPCLMULQDQ_FLAGS, 0 },
3233d7d0
IT
1197 { STRING_COMMA_LEN (".wbnoinvd"), PROCESSOR_UNKNOWN,
1198 CPU_WBNOINVD_FLAGS, 0 },
be3a8dca
IT
1199 { STRING_COMMA_LEN (".pconfig"), PROCESSOR_UNKNOWN,
1200 CPU_PCONFIG_FLAGS, 0 },
de89d0a3
IT
1201 { STRING_COMMA_LEN (".waitpkg"), PROCESSOR_UNKNOWN,
1202 CPU_WAITPKG_FLAGS, 0 },
c48935d7
IT
1203 { STRING_COMMA_LEN (".cldemote"), PROCESSOR_UNKNOWN,
1204 CPU_CLDEMOTE_FLAGS, 0 },
c0a30a9f
L
1205 { STRING_COMMA_LEN (".movdiri"), PROCESSOR_UNKNOWN,
1206 CPU_MOVDIRI_FLAGS, 0 },
1207 { STRING_COMMA_LEN (".movdir64b"), PROCESSOR_UNKNOWN,
1208 CPU_MOVDIR64B_FLAGS, 0 },
d6aab7a1
XG
1209 { STRING_COMMA_LEN (".avx512_bf16"), PROCESSOR_UNKNOWN,
1210 CPU_AVX512_BF16_FLAGS, 0 },
9186c494
L
1211 { STRING_COMMA_LEN (".avx512_vp2intersect"), PROCESSOR_UNKNOWN,
1212 CPU_AVX512_VP2INTERSECT_FLAGS, 0 },
dd455cf5
L
1213 { STRING_COMMA_LEN (".enqcmd"), PROCESSOR_UNKNOWN,
1214 CPU_ENQCMD_FLAGS, 0 },
4b27d27c
L
1215 { STRING_COMMA_LEN (".serialize"), PROCESSOR_UNKNOWN,
1216 CPU_SERIALIZE_FLAGS, 0 },
142861df
JB
1217 { STRING_COMMA_LEN (".rdpru"), PROCESSOR_UNKNOWN,
1218 CPU_RDPRU_FLAGS, 0 },
1219 { STRING_COMMA_LEN (".mcommit"), PROCESSOR_UNKNOWN,
1220 CPU_MCOMMIT_FLAGS, 0 },
a847e322
JB
1221 { STRING_COMMA_LEN (".sev_es"), PROCESSOR_UNKNOWN,
1222 CPU_SEV_ES_FLAGS, 0 },
bb651e8b
CL
1223 { STRING_COMMA_LEN (".tsxldtrk"), PROCESSOR_UNKNOWN,
1224 CPU_TSXLDTRK_FLAGS, 0 },
293f5f65
L
1225};
1226
1227static const noarch_entry cpu_noarch[] =
1228{
1229 { STRING_COMMA_LEN ("no87"), CPU_ANY_X87_FLAGS },
1848e567
L
1230 { STRING_COMMA_LEN ("no287"), CPU_ANY_287_FLAGS },
1231 { STRING_COMMA_LEN ("no387"), CPU_ANY_387_FLAGS },
1232 { STRING_COMMA_LEN ("no687"), CPU_ANY_687_FLAGS },
d871f3f4
L
1233 { STRING_COMMA_LEN ("nocmov"), CPU_ANY_CMOV_FLAGS },
1234 { STRING_COMMA_LEN ("nofxsr"), CPU_ANY_FXSR_FLAGS },
293f5f65
L
1235 { STRING_COMMA_LEN ("nommx"), CPU_ANY_MMX_FLAGS },
1236 { STRING_COMMA_LEN ("nosse"), CPU_ANY_SSE_FLAGS },
1848e567
L
1237 { STRING_COMMA_LEN ("nosse2"), CPU_ANY_SSE2_FLAGS },
1238 { STRING_COMMA_LEN ("nosse3"), CPU_ANY_SSE3_FLAGS },
af5c13b0 1239 { STRING_COMMA_LEN ("nosse4a"), CPU_ANY_SSE4A_FLAGS },
1848e567
L
1240 { STRING_COMMA_LEN ("nossse3"), CPU_ANY_SSSE3_FLAGS },
1241 { STRING_COMMA_LEN ("nosse4.1"), CPU_ANY_SSE4_1_FLAGS },
1242 { STRING_COMMA_LEN ("nosse4.2"), CPU_ANY_SSE4_2_FLAGS },
af5c13b0 1243 { STRING_COMMA_LEN ("nosse4"), CPU_ANY_SSE4_1_FLAGS },
293f5f65 1244 { STRING_COMMA_LEN ("noavx"), CPU_ANY_AVX_FLAGS },
1848e567 1245 { STRING_COMMA_LEN ("noavx2"), CPU_ANY_AVX2_FLAGS },
144b71e2
L
1246 { STRING_COMMA_LEN ("noavx512f"), CPU_ANY_AVX512F_FLAGS },
1247 { STRING_COMMA_LEN ("noavx512cd"), CPU_ANY_AVX512CD_FLAGS },
1248 { STRING_COMMA_LEN ("noavx512er"), CPU_ANY_AVX512ER_FLAGS },
1249 { STRING_COMMA_LEN ("noavx512pf"), CPU_ANY_AVX512PF_FLAGS },
1250 { STRING_COMMA_LEN ("noavx512dq"), CPU_ANY_AVX512DQ_FLAGS },
1251 { STRING_COMMA_LEN ("noavx512bw"), CPU_ANY_AVX512BW_FLAGS },
1252 { STRING_COMMA_LEN ("noavx512vl"), CPU_ANY_AVX512VL_FLAGS },
1253 { STRING_COMMA_LEN ("noavx512ifma"), CPU_ANY_AVX512IFMA_FLAGS },
1254 { STRING_COMMA_LEN ("noavx512vbmi"), CPU_ANY_AVX512VBMI_FLAGS },
920d2ddc 1255 { STRING_COMMA_LEN ("noavx512_4fmaps"), CPU_ANY_AVX512_4FMAPS_FLAGS },
47acf0bd 1256 { STRING_COMMA_LEN ("noavx512_4vnniw"), CPU_ANY_AVX512_4VNNIW_FLAGS },
620214f7 1257 { STRING_COMMA_LEN ("noavx512_vpopcntdq"), CPU_ANY_AVX512_VPOPCNTDQ_FLAGS },
53467f57 1258 { STRING_COMMA_LEN ("noavx512_vbmi2"), CPU_ANY_AVX512_VBMI2_FLAGS },
8cfcb765 1259 { STRING_COMMA_LEN ("noavx512_vnni"), CPU_ANY_AVX512_VNNI_FLAGS },
ee6872be 1260 { STRING_COMMA_LEN ("noavx512_bitalg"), CPU_ANY_AVX512_BITALG_FLAGS },
d777820b
IT
1261 { STRING_COMMA_LEN ("noibt"), CPU_ANY_IBT_FLAGS },
1262 { STRING_COMMA_LEN ("noshstk"), CPU_ANY_SHSTK_FLAGS },
c0a30a9f
L
1263 { STRING_COMMA_LEN ("nomovdiri"), CPU_ANY_MOVDIRI_FLAGS },
1264 { STRING_COMMA_LEN ("nomovdir64b"), CPU_ANY_MOVDIR64B_FLAGS },
d6aab7a1 1265 { STRING_COMMA_LEN ("noavx512_bf16"), CPU_ANY_AVX512_BF16_FLAGS },
708a2fff
CL
1266 { STRING_COMMA_LEN ("noavx512_vp2intersect"),
1267 CPU_ANY_AVX512_VP2INTERSECT_FLAGS },
dd455cf5 1268 { STRING_COMMA_LEN ("noenqcmd"), CPU_ANY_ENQCMD_FLAGS },
4b27d27c 1269 { STRING_COMMA_LEN ("noserialize"), CPU_ANY_SERIALIZE_FLAGS },
bb651e8b 1270 { STRING_COMMA_LEN ("notsxldtrk"), CPU_ANY_TSXLDTRK_FLAGS },
e413e4e9
AM
1271};
1272
704209c0 1273#ifdef I386COFF
a6c24e68
NC
1274/* Like s_lcomm_internal in gas/read.c but the alignment string
1275 is allowed to be optional. */
1276
1277static symbolS *
1278pe_lcomm_internal (int needs_align, symbolS *symbolP, addressT size)
1279{
1280 addressT align = 0;
1281
1282 SKIP_WHITESPACE ();
1283
7ab9ffdd 1284 if (needs_align
a6c24e68
NC
1285 && *input_line_pointer == ',')
1286 {
1287 align = parse_align (needs_align - 1);
7ab9ffdd 1288
a6c24e68
NC
1289 if (align == (addressT) -1)
1290 return NULL;
1291 }
1292 else
1293 {
1294 if (size >= 8)
1295 align = 3;
1296 else if (size >= 4)
1297 align = 2;
1298 else if (size >= 2)
1299 align = 1;
1300 else
1301 align = 0;
1302 }
1303
1304 bss_alloc (symbolP, size, align);
1305 return symbolP;
1306}
1307
704209c0 1308static void
a6c24e68
NC
1309pe_lcomm (int needs_align)
1310{
1311 s_comm_internal (needs_align * 2, pe_lcomm_internal);
1312}
704209c0 1313#endif
a6c24e68 1314
29b0f896
AM
1315const pseudo_typeS md_pseudo_table[] =
1316{
1317#if !defined(OBJ_AOUT) && !defined(USE_ALIGN_PTWO)
1318 {"align", s_align_bytes, 0},
1319#else
1320 {"align", s_align_ptwo, 0},
1321#endif
1322 {"arch", set_cpu_arch, 0},
1323#ifndef I386COFF
1324 {"bss", s_bss, 0},
a6c24e68
NC
1325#else
1326 {"lcomm", pe_lcomm, 1},
29b0f896
AM
1327#endif
1328 {"ffloat", float_cons, 'f'},
1329 {"dfloat", float_cons, 'd'},
1330 {"tfloat", float_cons, 'x'},
1331 {"value", cons, 2},
d182319b 1332 {"slong", signed_cons, 4},
29b0f896
AM
1333 {"noopt", s_ignore, 0},
1334 {"optim", s_ignore, 0},
1335 {"code16gcc", set_16bit_gcc_code_flag, CODE_16BIT},
1336 {"code16", set_code_flag, CODE_16BIT},
1337 {"code32", set_code_flag, CODE_32BIT},
da5f19a2 1338#ifdef BFD64
29b0f896 1339 {"code64", set_code_flag, CODE_64BIT},
da5f19a2 1340#endif
29b0f896
AM
1341 {"intel_syntax", set_intel_syntax, 1},
1342 {"att_syntax", set_intel_syntax, 0},
1efbbeb4
L
1343 {"intel_mnemonic", set_intel_mnemonic, 1},
1344 {"att_mnemonic", set_intel_mnemonic, 0},
db51cc60
L
1345 {"allow_index_reg", set_allow_index_reg, 1},
1346 {"disallow_index_reg", set_allow_index_reg, 0},
7bab8ab5
JB
1347 {"sse_check", set_check, 0},
1348 {"operand_check", set_check, 1},
3b22753a
L
1349#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
1350 {"largecomm", handle_large_common, 0},
07a53e5c 1351#else
68d20676 1352 {"file", dwarf2_directive_file, 0},
07a53e5c
RH
1353 {"loc", dwarf2_directive_loc, 0},
1354 {"loc_mark_labels", dwarf2_directive_loc_mark_labels, 0},
3b22753a 1355#endif
6482c264
NC
1356#ifdef TE_PE
1357 {"secrel32", pe_directive_secrel, 0},
1358#endif
29b0f896
AM
1359 {0, 0, 0}
1360};
1361
1362/* For interface with expression (). */
1363extern char *input_line_pointer;
1364
1365/* Hash table for instruction mnemonic lookup. */
1366static struct hash_control *op_hash;
1367
1368/* Hash table for register lookup. */
1369static struct hash_control *reg_hash;
1370\f
ce8a8b2f
AM
1371 /* Various efficient no-op patterns for aligning code labels.
1372 Note: Don't try to assemble the instructions in the comments.
1373 0L and 0w are not legal. */
62a02d25
L
1374static const unsigned char f32_1[] =
1375 {0x90}; /* nop */
1376static const unsigned char f32_2[] =
1377 {0x66,0x90}; /* xchg %ax,%ax */
1378static const unsigned char f32_3[] =
1379 {0x8d,0x76,0x00}; /* leal 0(%esi),%esi */
1380static const unsigned char f32_4[] =
1381 {0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
62a02d25
L
1382static const unsigned char f32_6[] =
1383 {0x8d,0xb6,0x00,0x00,0x00,0x00}; /* leal 0L(%esi),%esi */
1384static const unsigned char f32_7[] =
1385 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
62a02d25 1386static const unsigned char f16_3[] =
3ae729d5 1387 {0x8d,0x74,0x00}; /* lea 0(%si),%si */
62a02d25 1388static const unsigned char f16_4[] =
3ae729d5
L
1389 {0x8d,0xb4,0x00,0x00}; /* lea 0W(%si),%si */
1390static const unsigned char jump_disp8[] =
1391 {0xeb}; /* jmp disp8 */
1392static const unsigned char jump32_disp32[] =
1393 {0xe9}; /* jmp disp32 */
1394static const unsigned char jump16_disp32[] =
1395 {0x66,0xe9}; /* jmp disp32 */
62a02d25
L
1396/* 32-bit NOPs patterns. */
1397static const unsigned char *const f32_patt[] = {
3ae729d5 1398 f32_1, f32_2, f32_3, f32_4, NULL, f32_6, f32_7
62a02d25
L
1399};
1400/* 16-bit NOPs patterns. */
1401static const unsigned char *const f16_patt[] = {
3ae729d5 1402 f32_1, f32_2, f16_3, f16_4
62a02d25
L
1403};
1404/* nopl (%[re]ax) */
1405static const unsigned char alt_3[] =
1406 {0x0f,0x1f,0x00};
1407/* nopl 0(%[re]ax) */
1408static const unsigned char alt_4[] =
1409 {0x0f,0x1f,0x40,0x00};
1410/* nopl 0(%[re]ax,%[re]ax,1) */
1411static const unsigned char alt_5[] =
1412 {0x0f,0x1f,0x44,0x00,0x00};
1413/* nopw 0(%[re]ax,%[re]ax,1) */
1414static const unsigned char alt_6[] =
1415 {0x66,0x0f,0x1f,0x44,0x00,0x00};
1416/* nopl 0L(%[re]ax) */
1417static const unsigned char alt_7[] =
1418 {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
1419/* nopl 0L(%[re]ax,%[re]ax,1) */
1420static const unsigned char alt_8[] =
1421 {0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1422/* nopw 0L(%[re]ax,%[re]ax,1) */
1423static const unsigned char alt_9[] =
1424 {0x66,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1425/* nopw %cs:0L(%[re]ax,%[re]ax,1) */
1426static const unsigned char alt_10[] =
1427 {0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
3ae729d5
L
1428/* data16 nopw %cs:0L(%eax,%eax,1) */
1429static const unsigned char alt_11[] =
1430 {0x66,0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
62a02d25
L
1431/* 32-bit and 64-bit NOPs patterns. */
1432static const unsigned char *const alt_patt[] = {
1433 f32_1, f32_2, alt_3, alt_4, alt_5, alt_6, alt_7, alt_8,
3ae729d5 1434 alt_9, alt_10, alt_11
62a02d25
L
1435};
1436
1437/* Genenerate COUNT bytes of NOPs to WHERE from PATT with the maximum
1438 size of a single NOP instruction MAX_SINGLE_NOP_SIZE. */
1439
1440static void
1441i386_output_nops (char *where, const unsigned char *const *patt,
1442 int count, int max_single_nop_size)
1443
1444{
3ae729d5
L
1445 /* Place the longer NOP first. */
1446 int last;
1447 int offset;
3076e594
NC
1448 const unsigned char *nops;
1449
1450 if (max_single_nop_size < 1)
1451 {
1452 as_fatal (_("i386_output_nops called to generate nops of at most %d bytes!"),
1453 max_single_nop_size);
1454 return;
1455 }
1456
1457 nops = patt[max_single_nop_size - 1];
3ae729d5
L
1458
1459 /* Use the smaller one if the requsted one isn't available. */
1460 if (nops == NULL)
62a02d25 1461 {
3ae729d5
L
1462 max_single_nop_size--;
1463 nops = patt[max_single_nop_size - 1];
62a02d25
L
1464 }
1465
3ae729d5
L
1466 last = count % max_single_nop_size;
1467
1468 count -= last;
1469 for (offset = 0; offset < count; offset += max_single_nop_size)
1470 memcpy (where + offset, nops, max_single_nop_size);
1471
1472 if (last)
1473 {
1474 nops = patt[last - 1];
1475 if (nops == NULL)
1476 {
1477 /* Use the smaller one plus one-byte NOP if the needed one
1478 isn't available. */
1479 last--;
1480 nops = patt[last - 1];
1481 memcpy (where + offset, nops, last);
1482 where[offset + last] = *patt[0];
1483 }
1484 else
1485 memcpy (where + offset, nops, last);
1486 }
62a02d25
L
1487}
1488
3ae729d5
L
1489static INLINE int
1490fits_in_imm7 (offsetT num)
1491{
1492 return (num & 0x7f) == num;
1493}
1494
1495static INLINE int
1496fits_in_imm31 (offsetT num)
1497{
1498 return (num & 0x7fffffff) == num;
1499}
62a02d25
L
1500
1501/* Genenerate COUNT bytes of NOPs to WHERE with the maximum size of a
1502 single NOP instruction LIMIT. */
1503
1504void
3ae729d5 1505i386_generate_nops (fragS *fragP, char *where, offsetT count, int limit)
62a02d25 1506{
3ae729d5 1507 const unsigned char *const *patt = NULL;
62a02d25 1508 int max_single_nop_size;
3ae729d5
L
1509 /* Maximum number of NOPs before switching to jump over NOPs. */
1510 int max_number_of_nops;
62a02d25 1511
3ae729d5 1512 switch (fragP->fr_type)
62a02d25 1513 {
3ae729d5
L
1514 case rs_fill_nop:
1515 case rs_align_code:
1516 break;
e379e5f3
L
1517 case rs_machine_dependent:
1518 /* Allow NOP padding for jumps and calls. */
1519 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
1520 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
1521 break;
1522 /* Fall through. */
3ae729d5 1523 default:
62a02d25
L
1524 return;
1525 }
1526
ccc9c027
L
1527 /* We need to decide which NOP sequence to use for 32bit and
1528 64bit. When -mtune= is used:
4eed87de 1529
76bc74dc
L
1530 1. For PROCESSOR_I386, PROCESSOR_I486, PROCESSOR_PENTIUM and
1531 PROCESSOR_GENERIC32, f32_patt will be used.
80b8656c
L
1532 2. For the rest, alt_patt will be used.
1533
1534 When -mtune= isn't used, alt_patt will be used if
22109423 1535 cpu_arch_isa_flags has CpuNop. Otherwise, f32_patt will
76bc74dc 1536 be used.
ccc9c027
L
1537
1538 When -march= or .arch is used, we can't use anything beyond
1539 cpu_arch_isa_flags. */
1540
1541 if (flag_code == CODE_16BIT)
1542 {
3ae729d5
L
1543 patt = f16_patt;
1544 max_single_nop_size = sizeof (f16_patt) / sizeof (f16_patt[0]);
1545 /* Limit number of NOPs to 2 in 16-bit mode. */
1546 max_number_of_nops = 2;
252b5132 1547 }
33fef721 1548 else
ccc9c027 1549 {
fbf3f584 1550 if (fragP->tc_frag_data.isa == PROCESSOR_UNKNOWN)
ccc9c027
L
1551 {
1552 /* PROCESSOR_UNKNOWN means that all ISAs may be used. */
1553 switch (cpu_arch_tune)
1554 {
1555 case PROCESSOR_UNKNOWN:
1556 /* We use cpu_arch_isa_flags to check if we SHOULD
22109423
L
1557 optimize with nops. */
1558 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1559 patt = alt_patt;
ccc9c027
L
1560 else
1561 patt = f32_patt;
1562 break;
ccc9c027
L
1563 case PROCESSOR_PENTIUM4:
1564 case PROCESSOR_NOCONA:
ef05d495 1565 case PROCESSOR_CORE:
76bc74dc 1566 case PROCESSOR_CORE2:
bd5295b2 1567 case PROCESSOR_COREI7:
3632d14b 1568 case PROCESSOR_L1OM:
7a9068fe 1569 case PROCESSOR_K1OM:
76bc74dc 1570 case PROCESSOR_GENERIC64:
ccc9c027
L
1571 case PROCESSOR_K6:
1572 case PROCESSOR_ATHLON:
1573 case PROCESSOR_K8:
4eed87de 1574 case PROCESSOR_AMDFAM10:
8aedb9fe 1575 case PROCESSOR_BD:
029f3522 1576 case PROCESSOR_ZNVER:
7b458c12 1577 case PROCESSOR_BT:
80b8656c 1578 patt = alt_patt;
ccc9c027 1579 break;
76bc74dc 1580 case PROCESSOR_I386:
ccc9c027
L
1581 case PROCESSOR_I486:
1582 case PROCESSOR_PENTIUM:
2dde1948 1583 case PROCESSOR_PENTIUMPRO:
81486035 1584 case PROCESSOR_IAMCU:
ccc9c027
L
1585 case PROCESSOR_GENERIC32:
1586 patt = f32_patt;
1587 break;
4eed87de 1588 }
ccc9c027
L
1589 }
1590 else
1591 {
fbf3f584 1592 switch (fragP->tc_frag_data.tune)
ccc9c027
L
1593 {
1594 case PROCESSOR_UNKNOWN:
e6a14101 1595 /* When cpu_arch_isa is set, cpu_arch_tune shouldn't be
ccc9c027
L
1596 PROCESSOR_UNKNOWN. */
1597 abort ();
1598 break;
1599
76bc74dc 1600 case PROCESSOR_I386:
ccc9c027
L
1601 case PROCESSOR_I486:
1602 case PROCESSOR_PENTIUM:
81486035 1603 case PROCESSOR_IAMCU:
ccc9c027
L
1604 case PROCESSOR_K6:
1605 case PROCESSOR_ATHLON:
1606 case PROCESSOR_K8:
4eed87de 1607 case PROCESSOR_AMDFAM10:
8aedb9fe 1608 case PROCESSOR_BD:
029f3522 1609 case PROCESSOR_ZNVER:
7b458c12 1610 case PROCESSOR_BT:
ccc9c027
L
1611 case PROCESSOR_GENERIC32:
1612 /* We use cpu_arch_isa_flags to check if we CAN optimize
22109423
L
1613 with nops. */
1614 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1615 patt = alt_patt;
ccc9c027
L
1616 else
1617 patt = f32_patt;
1618 break;
76bc74dc
L
1619 case PROCESSOR_PENTIUMPRO:
1620 case PROCESSOR_PENTIUM4:
1621 case PROCESSOR_NOCONA:
1622 case PROCESSOR_CORE:
ef05d495 1623 case PROCESSOR_CORE2:
bd5295b2 1624 case PROCESSOR_COREI7:
3632d14b 1625 case PROCESSOR_L1OM:
7a9068fe 1626 case PROCESSOR_K1OM:
22109423 1627 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1628 patt = alt_patt;
ccc9c027
L
1629 else
1630 patt = f32_patt;
1631 break;
1632 case PROCESSOR_GENERIC64:
80b8656c 1633 patt = alt_patt;
ccc9c027 1634 break;
4eed87de 1635 }
ccc9c027
L
1636 }
1637
76bc74dc
L
1638 if (patt == f32_patt)
1639 {
3ae729d5
L
1640 max_single_nop_size = sizeof (f32_patt) / sizeof (f32_patt[0]);
1641 /* Limit number of NOPs to 2 for older processors. */
1642 max_number_of_nops = 2;
76bc74dc
L
1643 }
1644 else
1645 {
3ae729d5
L
1646 max_single_nop_size = sizeof (alt_patt) / sizeof (alt_patt[0]);
1647 /* Limit number of NOPs to 7 for newer processors. */
1648 max_number_of_nops = 7;
1649 }
1650 }
1651
1652 if (limit == 0)
1653 limit = max_single_nop_size;
1654
1655 if (fragP->fr_type == rs_fill_nop)
1656 {
1657 /* Output NOPs for .nop directive. */
1658 if (limit > max_single_nop_size)
1659 {
1660 as_bad_where (fragP->fr_file, fragP->fr_line,
1661 _("invalid single nop size: %d "
1662 "(expect within [0, %d])"),
1663 limit, max_single_nop_size);
1664 return;
1665 }
1666 }
e379e5f3 1667 else if (fragP->fr_type != rs_machine_dependent)
3ae729d5
L
1668 fragP->fr_var = count;
1669
1670 if ((count / max_single_nop_size) > max_number_of_nops)
1671 {
1672 /* Generate jump over NOPs. */
1673 offsetT disp = count - 2;
1674 if (fits_in_imm7 (disp))
1675 {
1676 /* Use "jmp disp8" if possible. */
1677 count = disp;
1678 where[0] = jump_disp8[0];
1679 where[1] = count;
1680 where += 2;
1681 }
1682 else
1683 {
1684 unsigned int size_of_jump;
1685
1686 if (flag_code == CODE_16BIT)
1687 {
1688 where[0] = jump16_disp32[0];
1689 where[1] = jump16_disp32[1];
1690 size_of_jump = 2;
1691 }
1692 else
1693 {
1694 where[0] = jump32_disp32[0];
1695 size_of_jump = 1;
1696 }
1697
1698 count -= size_of_jump + 4;
1699 if (!fits_in_imm31 (count))
1700 {
1701 as_bad_where (fragP->fr_file, fragP->fr_line,
1702 _("jump over nop padding out of range"));
1703 return;
1704 }
1705
1706 md_number_to_chars (where + size_of_jump, count, 4);
1707 where += size_of_jump + 4;
76bc74dc 1708 }
ccc9c027 1709 }
3ae729d5
L
1710
1711 /* Generate multiple NOPs. */
1712 i386_output_nops (where, patt, count, limit);
252b5132
RH
1713}
1714
c6fb90c8 1715static INLINE int
0dfbf9d7 1716operand_type_all_zero (const union i386_operand_type *x)
40fb9820 1717{
0dfbf9d7 1718 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1719 {
1720 case 3:
0dfbf9d7 1721 if (x->array[2])
c6fb90c8 1722 return 0;
1a0670f3 1723 /* Fall through. */
c6fb90c8 1724 case 2:
0dfbf9d7 1725 if (x->array[1])
c6fb90c8 1726 return 0;
1a0670f3 1727 /* Fall through. */
c6fb90c8 1728 case 1:
0dfbf9d7 1729 return !x->array[0];
c6fb90c8
L
1730 default:
1731 abort ();
1732 }
40fb9820
L
1733}
1734
c6fb90c8 1735static INLINE void
0dfbf9d7 1736operand_type_set (union i386_operand_type *x, unsigned int v)
40fb9820 1737{
0dfbf9d7 1738 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1739 {
1740 case 3:
0dfbf9d7 1741 x->array[2] = v;
1a0670f3 1742 /* Fall through. */
c6fb90c8 1743 case 2:
0dfbf9d7 1744 x->array[1] = v;
1a0670f3 1745 /* Fall through. */
c6fb90c8 1746 case 1:
0dfbf9d7 1747 x->array[0] = v;
1a0670f3 1748 /* Fall through. */
c6fb90c8
L
1749 break;
1750 default:
1751 abort ();
1752 }
bab6aec1
JB
1753
1754 x->bitfield.class = ClassNone;
75e5731b 1755 x->bitfield.instance = InstanceNone;
c6fb90c8 1756}
40fb9820 1757
c6fb90c8 1758static INLINE int
0dfbf9d7
L
1759operand_type_equal (const union i386_operand_type *x,
1760 const union i386_operand_type *y)
c6fb90c8 1761{
0dfbf9d7 1762 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1763 {
1764 case 3:
0dfbf9d7 1765 if (x->array[2] != y->array[2])
c6fb90c8 1766 return 0;
1a0670f3 1767 /* Fall through. */
c6fb90c8 1768 case 2:
0dfbf9d7 1769 if (x->array[1] != y->array[1])
c6fb90c8 1770 return 0;
1a0670f3 1771 /* Fall through. */
c6fb90c8 1772 case 1:
0dfbf9d7 1773 return x->array[0] == y->array[0];
c6fb90c8
L
1774 break;
1775 default:
1776 abort ();
1777 }
1778}
40fb9820 1779
0dfbf9d7
L
1780static INLINE int
1781cpu_flags_all_zero (const union i386_cpu_flags *x)
1782{
1783 switch (ARRAY_SIZE(x->array))
1784 {
53467f57
IT
1785 case 4:
1786 if (x->array[3])
1787 return 0;
1788 /* Fall through. */
0dfbf9d7
L
1789 case 3:
1790 if (x->array[2])
1791 return 0;
1a0670f3 1792 /* Fall through. */
0dfbf9d7
L
1793 case 2:
1794 if (x->array[1])
1795 return 0;
1a0670f3 1796 /* Fall through. */
0dfbf9d7
L
1797 case 1:
1798 return !x->array[0];
1799 default:
1800 abort ();
1801 }
1802}
1803
0dfbf9d7
L
1804static INLINE int
1805cpu_flags_equal (const union i386_cpu_flags *x,
1806 const union i386_cpu_flags *y)
1807{
1808 switch (ARRAY_SIZE(x->array))
1809 {
53467f57
IT
1810 case 4:
1811 if (x->array[3] != y->array[3])
1812 return 0;
1813 /* Fall through. */
0dfbf9d7
L
1814 case 3:
1815 if (x->array[2] != y->array[2])
1816 return 0;
1a0670f3 1817 /* Fall through. */
0dfbf9d7
L
1818 case 2:
1819 if (x->array[1] != y->array[1])
1820 return 0;
1a0670f3 1821 /* Fall through. */
0dfbf9d7
L
1822 case 1:
1823 return x->array[0] == y->array[0];
1824 break;
1825 default:
1826 abort ();
1827 }
1828}
c6fb90c8
L
1829
1830static INLINE int
1831cpu_flags_check_cpu64 (i386_cpu_flags f)
1832{
1833 return !((flag_code == CODE_64BIT && f.bitfield.cpuno64)
1834 || (flag_code != CODE_64BIT && f.bitfield.cpu64));
40fb9820
L
1835}
1836
c6fb90c8
L
1837static INLINE i386_cpu_flags
1838cpu_flags_and (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1839{
c6fb90c8
L
1840 switch (ARRAY_SIZE (x.array))
1841 {
53467f57
IT
1842 case 4:
1843 x.array [3] &= y.array [3];
1844 /* Fall through. */
c6fb90c8
L
1845 case 3:
1846 x.array [2] &= y.array [2];
1a0670f3 1847 /* Fall through. */
c6fb90c8
L
1848 case 2:
1849 x.array [1] &= y.array [1];
1a0670f3 1850 /* Fall through. */
c6fb90c8
L
1851 case 1:
1852 x.array [0] &= y.array [0];
1853 break;
1854 default:
1855 abort ();
1856 }
1857 return x;
1858}
40fb9820 1859
c6fb90c8
L
1860static INLINE i386_cpu_flags
1861cpu_flags_or (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1862{
c6fb90c8 1863 switch (ARRAY_SIZE (x.array))
40fb9820 1864 {
53467f57
IT
1865 case 4:
1866 x.array [3] |= y.array [3];
1867 /* Fall through. */
c6fb90c8
L
1868 case 3:
1869 x.array [2] |= y.array [2];
1a0670f3 1870 /* Fall through. */
c6fb90c8
L
1871 case 2:
1872 x.array [1] |= y.array [1];
1a0670f3 1873 /* Fall through. */
c6fb90c8
L
1874 case 1:
1875 x.array [0] |= y.array [0];
40fb9820
L
1876 break;
1877 default:
1878 abort ();
1879 }
40fb9820
L
1880 return x;
1881}
1882
309d3373
JB
1883static INLINE i386_cpu_flags
1884cpu_flags_and_not (i386_cpu_flags x, i386_cpu_flags y)
1885{
1886 switch (ARRAY_SIZE (x.array))
1887 {
53467f57
IT
1888 case 4:
1889 x.array [3] &= ~y.array [3];
1890 /* Fall through. */
309d3373
JB
1891 case 3:
1892 x.array [2] &= ~y.array [2];
1a0670f3 1893 /* Fall through. */
309d3373
JB
1894 case 2:
1895 x.array [1] &= ~y.array [1];
1a0670f3 1896 /* Fall through. */
309d3373
JB
1897 case 1:
1898 x.array [0] &= ~y.array [0];
1899 break;
1900 default:
1901 abort ();
1902 }
1903 return x;
1904}
1905
6c0946d0
JB
1906static const i386_cpu_flags avx512 = CPU_ANY_AVX512F_FLAGS;
1907
c0f3af97
L
1908#define CPU_FLAGS_ARCH_MATCH 0x1
1909#define CPU_FLAGS_64BIT_MATCH 0x2
1910
c0f3af97 1911#define CPU_FLAGS_PERFECT_MATCH \
db12e14e 1912 (CPU_FLAGS_ARCH_MATCH | CPU_FLAGS_64BIT_MATCH)
c0f3af97
L
1913
1914/* Return CPU flags match bits. */
3629bb00 1915
40fb9820 1916static int
d3ce72d0 1917cpu_flags_match (const insn_template *t)
40fb9820 1918{
c0f3af97
L
1919 i386_cpu_flags x = t->cpu_flags;
1920 int match = cpu_flags_check_cpu64 (x) ? CPU_FLAGS_64BIT_MATCH : 0;
40fb9820
L
1921
1922 x.bitfield.cpu64 = 0;
1923 x.bitfield.cpuno64 = 0;
1924
0dfbf9d7 1925 if (cpu_flags_all_zero (&x))
c0f3af97
L
1926 {
1927 /* This instruction is available on all archs. */
db12e14e 1928 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 1929 }
3629bb00
L
1930 else
1931 {
c0f3af97 1932 /* This instruction is available only on some archs. */
3629bb00
L
1933 i386_cpu_flags cpu = cpu_arch_flags;
1934
ab592e75
JB
1935 /* AVX512VL is no standalone feature - match it and then strip it. */
1936 if (x.bitfield.cpuavx512vl && !cpu.bitfield.cpuavx512vl)
1937 return match;
1938 x.bitfield.cpuavx512vl = 0;
1939
3629bb00 1940 cpu = cpu_flags_and (x, cpu);
c0f3af97
L
1941 if (!cpu_flags_all_zero (&cpu))
1942 {
a5ff0eb2
L
1943 if (x.bitfield.cpuavx)
1944 {
929f69fa 1945 /* We need to check a few extra flags with AVX. */
b9d49817
JB
1946 if (cpu.bitfield.cpuavx
1947 && (!t->opcode_modifier.sse2avx || sse2avx)
1948 && (!x.bitfield.cpuaes || cpu.bitfield.cpuaes)
929f69fa 1949 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
b9d49817
JB
1950 && (!x.bitfield.cpupclmul || cpu.bitfield.cpupclmul))
1951 match |= CPU_FLAGS_ARCH_MATCH;
a5ff0eb2 1952 }
929f69fa
JB
1953 else if (x.bitfield.cpuavx512f)
1954 {
1955 /* We need to check a few extra flags with AVX512F. */
1956 if (cpu.bitfield.cpuavx512f
1957 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
1958 && (!x.bitfield.cpuvaes || cpu.bitfield.cpuvaes)
1959 && (!x.bitfield.cpuvpclmulqdq || cpu.bitfield.cpuvpclmulqdq))
1960 match |= CPU_FLAGS_ARCH_MATCH;
1961 }
a5ff0eb2 1962 else
db12e14e 1963 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 1964 }
3629bb00 1965 }
c0f3af97 1966 return match;
40fb9820
L
1967}
1968
c6fb90c8
L
1969static INLINE i386_operand_type
1970operand_type_and (i386_operand_type x, i386_operand_type y)
40fb9820 1971{
bab6aec1
JB
1972 if (x.bitfield.class != y.bitfield.class)
1973 x.bitfield.class = ClassNone;
75e5731b
JB
1974 if (x.bitfield.instance != y.bitfield.instance)
1975 x.bitfield.instance = InstanceNone;
bab6aec1 1976
c6fb90c8
L
1977 switch (ARRAY_SIZE (x.array))
1978 {
1979 case 3:
1980 x.array [2] &= y.array [2];
1a0670f3 1981 /* Fall through. */
c6fb90c8
L
1982 case 2:
1983 x.array [1] &= y.array [1];
1a0670f3 1984 /* Fall through. */
c6fb90c8
L
1985 case 1:
1986 x.array [0] &= y.array [0];
1987 break;
1988 default:
1989 abort ();
1990 }
1991 return x;
40fb9820
L
1992}
1993
73053c1f
JB
1994static INLINE i386_operand_type
1995operand_type_and_not (i386_operand_type x, i386_operand_type y)
1996{
bab6aec1 1997 gas_assert (y.bitfield.class == ClassNone);
75e5731b 1998 gas_assert (y.bitfield.instance == InstanceNone);
bab6aec1 1999
73053c1f
JB
2000 switch (ARRAY_SIZE (x.array))
2001 {
2002 case 3:
2003 x.array [2] &= ~y.array [2];
2004 /* Fall through. */
2005 case 2:
2006 x.array [1] &= ~y.array [1];
2007 /* Fall through. */
2008 case 1:
2009 x.array [0] &= ~y.array [0];
2010 break;
2011 default:
2012 abort ();
2013 }
2014 return x;
2015}
2016
c6fb90c8
L
2017static INLINE i386_operand_type
2018operand_type_or (i386_operand_type x, i386_operand_type y)
40fb9820 2019{
bab6aec1
JB
2020 gas_assert (x.bitfield.class == ClassNone ||
2021 y.bitfield.class == ClassNone ||
2022 x.bitfield.class == y.bitfield.class);
75e5731b
JB
2023 gas_assert (x.bitfield.instance == InstanceNone ||
2024 y.bitfield.instance == InstanceNone ||
2025 x.bitfield.instance == y.bitfield.instance);
bab6aec1 2026
c6fb90c8 2027 switch (ARRAY_SIZE (x.array))
40fb9820 2028 {
c6fb90c8
L
2029 case 3:
2030 x.array [2] |= y.array [2];
1a0670f3 2031 /* Fall through. */
c6fb90c8
L
2032 case 2:
2033 x.array [1] |= y.array [1];
1a0670f3 2034 /* Fall through. */
c6fb90c8
L
2035 case 1:
2036 x.array [0] |= y.array [0];
40fb9820
L
2037 break;
2038 default:
2039 abort ();
2040 }
c6fb90c8
L
2041 return x;
2042}
40fb9820 2043
c6fb90c8
L
2044static INLINE i386_operand_type
2045operand_type_xor (i386_operand_type x, i386_operand_type y)
2046{
bab6aec1 2047 gas_assert (y.bitfield.class == ClassNone);
75e5731b 2048 gas_assert (y.bitfield.instance == InstanceNone);
bab6aec1 2049
c6fb90c8
L
2050 switch (ARRAY_SIZE (x.array))
2051 {
2052 case 3:
2053 x.array [2] ^= y.array [2];
1a0670f3 2054 /* Fall through. */
c6fb90c8
L
2055 case 2:
2056 x.array [1] ^= y.array [1];
1a0670f3 2057 /* Fall through. */
c6fb90c8
L
2058 case 1:
2059 x.array [0] ^= y.array [0];
2060 break;
2061 default:
2062 abort ();
2063 }
40fb9820
L
2064 return x;
2065}
2066
40fb9820
L
2067static const i386_operand_type disp16 = OPERAND_TYPE_DISP16;
2068static const i386_operand_type disp32 = OPERAND_TYPE_DISP32;
2069static const i386_operand_type disp32s = OPERAND_TYPE_DISP32S;
2070static const i386_operand_type disp16_32 = OPERAND_TYPE_DISP16_32;
bab6aec1
JB
2071static const i386_operand_type anydisp = OPERAND_TYPE_ANYDISP;
2072static const i386_operand_type anyimm = OPERAND_TYPE_ANYIMM;
40fb9820 2073static const i386_operand_type regxmm = OPERAND_TYPE_REGXMM;
43234a1e 2074static const i386_operand_type regmask = OPERAND_TYPE_REGMASK;
40fb9820
L
2075static const i386_operand_type imm8 = OPERAND_TYPE_IMM8;
2076static const i386_operand_type imm8s = OPERAND_TYPE_IMM8S;
2077static const i386_operand_type imm16 = OPERAND_TYPE_IMM16;
2078static const i386_operand_type imm32 = OPERAND_TYPE_IMM32;
2079static const i386_operand_type imm32s = OPERAND_TYPE_IMM32S;
2080static const i386_operand_type imm64 = OPERAND_TYPE_IMM64;
2081static const i386_operand_type imm16_32 = OPERAND_TYPE_IMM16_32;
2082static const i386_operand_type imm16_32s = OPERAND_TYPE_IMM16_32S;
2083static const i386_operand_type imm16_32_32s = OPERAND_TYPE_IMM16_32_32S;
2084
2085enum operand_type
2086{
2087 reg,
40fb9820
L
2088 imm,
2089 disp,
2090 anymem
2091};
2092
c6fb90c8 2093static INLINE int
40fb9820
L
2094operand_type_check (i386_operand_type t, enum operand_type c)
2095{
2096 switch (c)
2097 {
2098 case reg:
bab6aec1 2099 return t.bitfield.class == Reg;
40fb9820 2100
40fb9820
L
2101 case imm:
2102 return (t.bitfield.imm8
2103 || t.bitfield.imm8s
2104 || t.bitfield.imm16
2105 || t.bitfield.imm32
2106 || t.bitfield.imm32s
2107 || t.bitfield.imm64);
2108
2109 case disp:
2110 return (t.bitfield.disp8
2111 || t.bitfield.disp16
2112 || t.bitfield.disp32
2113 || t.bitfield.disp32s
2114 || t.bitfield.disp64);
2115
2116 case anymem:
2117 return (t.bitfield.disp8
2118 || t.bitfield.disp16
2119 || t.bitfield.disp32
2120 || t.bitfield.disp32s
2121 || t.bitfield.disp64
2122 || t.bitfield.baseindex);
2123
2124 default:
2125 abort ();
2126 }
2cfe26b6
AM
2127
2128 return 0;
40fb9820
L
2129}
2130
7a54636a
L
2131/* Return 1 if there is no conflict in 8bit/16bit/32bit/64bit/80bit size
2132 between operand GIVEN and opeand WANTED for instruction template T. */
5c07affc
L
2133
2134static INLINE int
7a54636a
L
2135match_operand_size (const insn_template *t, unsigned int wanted,
2136 unsigned int given)
5c07affc 2137{
3ac21baa
JB
2138 return !((i.types[given].bitfield.byte
2139 && !t->operand_types[wanted].bitfield.byte)
2140 || (i.types[given].bitfield.word
2141 && !t->operand_types[wanted].bitfield.word)
2142 || (i.types[given].bitfield.dword
2143 && !t->operand_types[wanted].bitfield.dword)
2144 || (i.types[given].bitfield.qword
2145 && !t->operand_types[wanted].bitfield.qword)
2146 || (i.types[given].bitfield.tbyte
2147 && !t->operand_types[wanted].bitfield.tbyte));
5c07affc
L
2148}
2149
dd40ce22
L
2150/* Return 1 if there is no conflict in SIMD register between operand
2151 GIVEN and opeand WANTED for instruction template T. */
1b54b8d7
JB
2152
2153static INLINE int
dd40ce22
L
2154match_simd_size (const insn_template *t, unsigned int wanted,
2155 unsigned int given)
1b54b8d7 2156{
3ac21baa
JB
2157 return !((i.types[given].bitfield.xmmword
2158 && !t->operand_types[wanted].bitfield.xmmword)
2159 || (i.types[given].bitfield.ymmword
2160 && !t->operand_types[wanted].bitfield.ymmword)
2161 || (i.types[given].bitfield.zmmword
2162 && !t->operand_types[wanted].bitfield.zmmword));
1b54b8d7
JB
2163}
2164
7a54636a
L
2165/* Return 1 if there is no conflict in any size between operand GIVEN
2166 and opeand WANTED for instruction template T. */
5c07affc
L
2167
2168static INLINE int
dd40ce22
L
2169match_mem_size (const insn_template *t, unsigned int wanted,
2170 unsigned int given)
5c07affc 2171{
7a54636a 2172 return (match_operand_size (t, wanted, given)
3ac21baa 2173 && !((i.types[given].bitfield.unspecified
af508cb9 2174 && !i.broadcast
3ac21baa
JB
2175 && !t->operand_types[wanted].bitfield.unspecified)
2176 || (i.types[given].bitfield.fword
2177 && !t->operand_types[wanted].bitfield.fword)
1b54b8d7
JB
2178 /* For scalar opcode templates to allow register and memory
2179 operands at the same time, some special casing is needed
d6793fa1
JB
2180 here. Also for v{,p}broadcast*, {,v}pmov{s,z}*, and
2181 down-conversion vpmov*. */
3528c362 2182 || ((t->operand_types[wanted].bitfield.class == RegSIMD
bc49bfd8
JB
2183 && t->operand_types[wanted].bitfield.byte
2184 + t->operand_types[wanted].bitfield.word
2185 + t->operand_types[wanted].bitfield.dword
2186 + t->operand_types[wanted].bitfield.qword
2187 > !!t->opcode_modifier.broadcast)
3ac21baa
JB
2188 ? (i.types[given].bitfield.xmmword
2189 || i.types[given].bitfield.ymmword
2190 || i.types[given].bitfield.zmmword)
2191 : !match_simd_size(t, wanted, given))));
5c07affc
L
2192}
2193
3ac21baa
JB
2194/* Return value has MATCH_STRAIGHT set if there is no size conflict on any
2195 operands for instruction template T, and it has MATCH_REVERSE set if there
2196 is no size conflict on any operands for the template with operands reversed
2197 (and the template allows for reversing in the first place). */
5c07affc 2198
3ac21baa
JB
2199#define MATCH_STRAIGHT 1
2200#define MATCH_REVERSE 2
2201
2202static INLINE unsigned int
d3ce72d0 2203operand_size_match (const insn_template *t)
5c07affc 2204{
3ac21baa 2205 unsigned int j, match = MATCH_STRAIGHT;
5c07affc 2206
0cfa3eb3 2207 /* Don't check non-absolute jump instructions. */
5c07affc 2208 if (t->opcode_modifier.jump
0cfa3eb3 2209 && t->opcode_modifier.jump != JUMP_ABSOLUTE)
5c07affc
L
2210 return match;
2211
2212 /* Check memory and accumulator operand size. */
2213 for (j = 0; j < i.operands; j++)
2214 {
3528c362
JB
2215 if (i.types[j].bitfield.class != Reg
2216 && i.types[j].bitfield.class != RegSIMD
601e8564 2217 && t->opcode_modifier.anysize)
5c07affc
L
2218 continue;
2219
bab6aec1 2220 if (t->operand_types[j].bitfield.class == Reg
7a54636a 2221 && !match_operand_size (t, j, j))
5c07affc
L
2222 {
2223 match = 0;
2224 break;
2225 }
2226
3528c362 2227 if (t->operand_types[j].bitfield.class == RegSIMD
3ac21baa 2228 && !match_simd_size (t, j, j))
1b54b8d7
JB
2229 {
2230 match = 0;
2231 break;
2232 }
2233
75e5731b 2234 if (t->operand_types[j].bitfield.instance == Accum
7a54636a 2235 && (!match_operand_size (t, j, j) || !match_simd_size (t, j, j)))
1b54b8d7
JB
2236 {
2237 match = 0;
2238 break;
2239 }
2240
c48dadc9 2241 if ((i.flags[j] & Operand_Mem) && !match_mem_size (t, j, j))
5c07affc
L
2242 {
2243 match = 0;
2244 break;
2245 }
2246 }
2247
3ac21baa 2248 if (!t->opcode_modifier.d)
891edac4 2249 {
dc1e8a47 2250 mismatch:
3ac21baa
JB
2251 if (!match)
2252 i.error = operand_size_mismatch;
2253 return match;
891edac4 2254 }
5c07affc
L
2255
2256 /* Check reverse. */
f5eb1d70 2257 gas_assert (i.operands >= 2 && i.operands <= 3);
5c07affc 2258
f5eb1d70 2259 for (j = 0; j < i.operands; j++)
5c07affc 2260 {
f5eb1d70
JB
2261 unsigned int given = i.operands - j - 1;
2262
bab6aec1 2263 if (t->operand_types[j].bitfield.class == Reg
f5eb1d70 2264 && !match_operand_size (t, j, given))
891edac4 2265 goto mismatch;
5c07affc 2266
3528c362 2267 if (t->operand_types[j].bitfield.class == RegSIMD
f5eb1d70 2268 && !match_simd_size (t, j, given))
dbbc8b7e
JB
2269 goto mismatch;
2270
75e5731b 2271 if (t->operand_types[j].bitfield.instance == Accum
f5eb1d70
JB
2272 && (!match_operand_size (t, j, given)
2273 || !match_simd_size (t, j, given)))
dbbc8b7e
JB
2274 goto mismatch;
2275
f5eb1d70 2276 if ((i.flags[given] & Operand_Mem) && !match_mem_size (t, j, given))
891edac4 2277 goto mismatch;
5c07affc
L
2278 }
2279
3ac21baa 2280 return match | MATCH_REVERSE;
5c07affc
L
2281}
2282
c6fb90c8 2283static INLINE int
40fb9820
L
2284operand_type_match (i386_operand_type overlap,
2285 i386_operand_type given)
2286{
2287 i386_operand_type temp = overlap;
2288
7d5e4556 2289 temp.bitfield.unspecified = 0;
5c07affc
L
2290 temp.bitfield.byte = 0;
2291 temp.bitfield.word = 0;
2292 temp.bitfield.dword = 0;
2293 temp.bitfield.fword = 0;
2294 temp.bitfield.qword = 0;
2295 temp.bitfield.tbyte = 0;
2296 temp.bitfield.xmmword = 0;
c0f3af97 2297 temp.bitfield.ymmword = 0;
43234a1e 2298 temp.bitfield.zmmword = 0;
0dfbf9d7 2299 if (operand_type_all_zero (&temp))
891edac4 2300 goto mismatch;
40fb9820 2301
6f2f06be 2302 if (given.bitfield.baseindex == overlap.bitfield.baseindex)
891edac4
L
2303 return 1;
2304
dc1e8a47 2305 mismatch:
a65babc9 2306 i.error = operand_type_mismatch;
891edac4 2307 return 0;
40fb9820
L
2308}
2309
7d5e4556 2310/* If given types g0 and g1 are registers they must be of the same type
10c17abd 2311 unless the expected operand type register overlap is null.
5de4d9ef 2312 Some Intel syntax memory operand size checking also happens here. */
40fb9820 2313
c6fb90c8 2314static INLINE int
dc821c5f 2315operand_type_register_match (i386_operand_type g0,
40fb9820 2316 i386_operand_type t0,
40fb9820
L
2317 i386_operand_type g1,
2318 i386_operand_type t1)
2319{
bab6aec1 2320 if (g0.bitfield.class != Reg
3528c362 2321 && g0.bitfield.class != RegSIMD
10c17abd
JB
2322 && (!operand_type_check (g0, anymem)
2323 || g0.bitfield.unspecified
5de4d9ef
JB
2324 || (t0.bitfield.class != Reg
2325 && t0.bitfield.class != RegSIMD)))
40fb9820
L
2326 return 1;
2327
bab6aec1 2328 if (g1.bitfield.class != Reg
3528c362 2329 && g1.bitfield.class != RegSIMD
10c17abd
JB
2330 && (!operand_type_check (g1, anymem)
2331 || g1.bitfield.unspecified
5de4d9ef
JB
2332 || (t1.bitfield.class != Reg
2333 && t1.bitfield.class != RegSIMD)))
40fb9820
L
2334 return 1;
2335
dc821c5f
JB
2336 if (g0.bitfield.byte == g1.bitfield.byte
2337 && g0.bitfield.word == g1.bitfield.word
2338 && g0.bitfield.dword == g1.bitfield.dword
10c17abd
JB
2339 && g0.bitfield.qword == g1.bitfield.qword
2340 && g0.bitfield.xmmword == g1.bitfield.xmmword
2341 && g0.bitfield.ymmword == g1.bitfield.ymmword
2342 && g0.bitfield.zmmword == g1.bitfield.zmmword)
40fb9820
L
2343 return 1;
2344
dc821c5f
JB
2345 if (!(t0.bitfield.byte & t1.bitfield.byte)
2346 && !(t0.bitfield.word & t1.bitfield.word)
2347 && !(t0.bitfield.dword & t1.bitfield.dword)
10c17abd
JB
2348 && !(t0.bitfield.qword & t1.bitfield.qword)
2349 && !(t0.bitfield.xmmword & t1.bitfield.xmmword)
2350 && !(t0.bitfield.ymmword & t1.bitfield.ymmword)
2351 && !(t0.bitfield.zmmword & t1.bitfield.zmmword))
891edac4
L
2352 return 1;
2353
a65babc9 2354 i.error = register_type_mismatch;
891edac4
L
2355
2356 return 0;
40fb9820
L
2357}
2358
4c692bc7
JB
2359static INLINE unsigned int
2360register_number (const reg_entry *r)
2361{
2362 unsigned int nr = r->reg_num;
2363
2364 if (r->reg_flags & RegRex)
2365 nr += 8;
2366
200cbe0f
L
2367 if (r->reg_flags & RegVRex)
2368 nr += 16;
2369
4c692bc7
JB
2370 return nr;
2371}
2372
252b5132 2373static INLINE unsigned int
40fb9820 2374mode_from_disp_size (i386_operand_type t)
252b5132 2375{
b5014f7a 2376 if (t.bitfield.disp8)
40fb9820
L
2377 return 1;
2378 else if (t.bitfield.disp16
2379 || t.bitfield.disp32
2380 || t.bitfield.disp32s)
2381 return 2;
2382 else
2383 return 0;
252b5132
RH
2384}
2385
2386static INLINE int
65879393 2387fits_in_signed_byte (addressT num)
252b5132 2388{
65879393 2389 return num + 0x80 <= 0xff;
47926f60 2390}
252b5132
RH
2391
2392static INLINE int
65879393 2393fits_in_unsigned_byte (addressT num)
252b5132 2394{
65879393 2395 return num <= 0xff;
47926f60 2396}
252b5132
RH
2397
2398static INLINE int
65879393 2399fits_in_unsigned_word (addressT num)
252b5132 2400{
65879393 2401 return num <= 0xffff;
47926f60 2402}
252b5132
RH
2403
2404static INLINE int
65879393 2405fits_in_signed_word (addressT num)
252b5132 2406{
65879393 2407 return num + 0x8000 <= 0xffff;
47926f60 2408}
2a962e6d 2409
3e73aa7c 2410static INLINE int
65879393 2411fits_in_signed_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2412{
2413#ifndef BFD64
2414 return 1;
2415#else
65879393 2416 return num + 0x80000000 <= 0xffffffff;
3e73aa7c
JH
2417#endif
2418} /* fits_in_signed_long() */
2a962e6d 2419
3e73aa7c 2420static INLINE int
65879393 2421fits_in_unsigned_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2422{
2423#ifndef BFD64
2424 return 1;
2425#else
65879393 2426 return num <= 0xffffffff;
3e73aa7c
JH
2427#endif
2428} /* fits_in_unsigned_long() */
252b5132 2429
43234a1e 2430static INLINE int
b5014f7a 2431fits_in_disp8 (offsetT num)
43234a1e
L
2432{
2433 int shift = i.memshift;
2434 unsigned int mask;
2435
2436 if (shift == -1)
2437 abort ();
2438
2439 mask = (1 << shift) - 1;
2440
2441 /* Return 0 if NUM isn't properly aligned. */
2442 if ((num & mask))
2443 return 0;
2444
2445 /* Check if NUM will fit in 8bit after shift. */
2446 return fits_in_signed_byte (num >> shift);
2447}
2448
a683cc34
SP
2449static INLINE int
2450fits_in_imm4 (offsetT num)
2451{
2452 return (num & 0xf) == num;
2453}
2454
40fb9820 2455static i386_operand_type
e3bb37b5 2456smallest_imm_type (offsetT num)
252b5132 2457{
40fb9820 2458 i386_operand_type t;
7ab9ffdd 2459
0dfbf9d7 2460 operand_type_set (&t, 0);
40fb9820
L
2461 t.bitfield.imm64 = 1;
2462
2463 if (cpu_arch_tune != PROCESSOR_I486 && num == 1)
e413e4e9
AM
2464 {
2465 /* This code is disabled on the 486 because all the Imm1 forms
2466 in the opcode table are slower on the i486. They're the
2467 versions with the implicitly specified single-position
2468 displacement, which has another syntax if you really want to
2469 use that form. */
40fb9820
L
2470 t.bitfield.imm1 = 1;
2471 t.bitfield.imm8 = 1;
2472 t.bitfield.imm8s = 1;
2473 t.bitfield.imm16 = 1;
2474 t.bitfield.imm32 = 1;
2475 t.bitfield.imm32s = 1;
2476 }
2477 else if (fits_in_signed_byte (num))
2478 {
2479 t.bitfield.imm8 = 1;
2480 t.bitfield.imm8s = 1;
2481 t.bitfield.imm16 = 1;
2482 t.bitfield.imm32 = 1;
2483 t.bitfield.imm32s = 1;
2484 }
2485 else if (fits_in_unsigned_byte (num))
2486 {
2487 t.bitfield.imm8 = 1;
2488 t.bitfield.imm16 = 1;
2489 t.bitfield.imm32 = 1;
2490 t.bitfield.imm32s = 1;
2491 }
2492 else if (fits_in_signed_word (num) || fits_in_unsigned_word (num))
2493 {
2494 t.bitfield.imm16 = 1;
2495 t.bitfield.imm32 = 1;
2496 t.bitfield.imm32s = 1;
2497 }
2498 else if (fits_in_signed_long (num))
2499 {
2500 t.bitfield.imm32 = 1;
2501 t.bitfield.imm32s = 1;
2502 }
2503 else if (fits_in_unsigned_long (num))
2504 t.bitfield.imm32 = 1;
2505
2506 return t;
47926f60 2507}
252b5132 2508
847f7ad4 2509static offsetT
e3bb37b5 2510offset_in_range (offsetT val, int size)
847f7ad4 2511{
508866be 2512 addressT mask;
ba2adb93 2513
847f7ad4
AM
2514 switch (size)
2515 {
508866be
L
2516 case 1: mask = ((addressT) 1 << 8) - 1; break;
2517 case 2: mask = ((addressT) 1 << 16) - 1; break;
3b0ec529 2518 case 4: mask = ((addressT) 2 << 31) - 1; break;
3e73aa7c
JH
2519#ifdef BFD64
2520 case 8: mask = ((addressT) 2 << 63) - 1; break;
2521#endif
47926f60 2522 default: abort ();
847f7ad4
AM
2523 }
2524
9de868bf
L
2525#ifdef BFD64
2526 /* If BFD64, sign extend val for 32bit address mode. */
2527 if (flag_code != CODE_64BIT
2528 || i.prefix[ADDR_PREFIX])
3e73aa7c
JH
2529 if ((val & ~(((addressT) 2 << 31) - 1)) == 0)
2530 val = (val ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
fa289fb8 2531#endif
ba2adb93 2532
47926f60 2533 if ((val & ~mask) != 0 && (val & ~mask) != ~mask)
847f7ad4
AM
2534 {
2535 char buf1[40], buf2[40];
2536
2537 sprint_value (buf1, val);
2538 sprint_value (buf2, val & mask);
2539 as_warn (_("%s shortened to %s"), buf1, buf2);
2540 }
2541 return val & mask;
2542}
2543
c32fa91d
L
2544enum PREFIX_GROUP
2545{
2546 PREFIX_EXIST = 0,
2547 PREFIX_LOCK,
2548 PREFIX_REP,
04ef582a 2549 PREFIX_DS,
c32fa91d
L
2550 PREFIX_OTHER
2551};
2552
2553/* Returns
2554 a. PREFIX_EXIST if attempting to add a prefix where one from the
2555 same class already exists.
2556 b. PREFIX_LOCK if lock prefix is added.
2557 c. PREFIX_REP if rep/repne prefix is added.
04ef582a
L
2558 d. PREFIX_DS if ds prefix is added.
2559 e. PREFIX_OTHER if other prefix is added.
c32fa91d
L
2560 */
2561
2562static enum PREFIX_GROUP
e3bb37b5 2563add_prefix (unsigned int prefix)
252b5132 2564{
c32fa91d 2565 enum PREFIX_GROUP ret = PREFIX_OTHER;
b1905489 2566 unsigned int q;
252b5132 2567
29b0f896
AM
2568 if (prefix >= REX_OPCODE && prefix < REX_OPCODE + 16
2569 && flag_code == CODE_64BIT)
b1905489 2570 {
161a04f6 2571 if ((i.prefix[REX_PREFIX] & prefix & REX_W)
44846f29
JB
2572 || (i.prefix[REX_PREFIX] & prefix & REX_R)
2573 || (i.prefix[REX_PREFIX] & prefix & REX_X)
2574 || (i.prefix[REX_PREFIX] & prefix & REX_B))
c32fa91d 2575 ret = PREFIX_EXIST;
b1905489
JB
2576 q = REX_PREFIX;
2577 }
3e73aa7c 2578 else
b1905489
JB
2579 {
2580 switch (prefix)
2581 {
2582 default:
2583 abort ();
2584
b1905489 2585 case DS_PREFIX_OPCODE:
04ef582a
L
2586 ret = PREFIX_DS;
2587 /* Fall through. */
2588 case CS_PREFIX_OPCODE:
b1905489
JB
2589 case ES_PREFIX_OPCODE:
2590 case FS_PREFIX_OPCODE:
2591 case GS_PREFIX_OPCODE:
2592 case SS_PREFIX_OPCODE:
2593 q = SEG_PREFIX;
2594 break;
2595
2596 case REPNE_PREFIX_OPCODE:
2597 case REPE_PREFIX_OPCODE:
c32fa91d
L
2598 q = REP_PREFIX;
2599 ret = PREFIX_REP;
2600 break;
2601
b1905489 2602 case LOCK_PREFIX_OPCODE:
c32fa91d
L
2603 q = LOCK_PREFIX;
2604 ret = PREFIX_LOCK;
b1905489
JB
2605 break;
2606
2607 case FWAIT_OPCODE:
2608 q = WAIT_PREFIX;
2609 break;
2610
2611 case ADDR_PREFIX_OPCODE:
2612 q = ADDR_PREFIX;
2613 break;
2614
2615 case DATA_PREFIX_OPCODE:
2616 q = DATA_PREFIX;
2617 break;
2618 }
2619 if (i.prefix[q] != 0)
c32fa91d 2620 ret = PREFIX_EXIST;
b1905489 2621 }
252b5132 2622
b1905489 2623 if (ret)
252b5132 2624 {
b1905489
JB
2625 if (!i.prefix[q])
2626 ++i.prefixes;
2627 i.prefix[q] |= prefix;
252b5132 2628 }
b1905489
JB
2629 else
2630 as_bad (_("same type of prefix used twice"));
252b5132 2631
252b5132
RH
2632 return ret;
2633}
2634
2635static void
78f12dd3 2636update_code_flag (int value, int check)
eecb386c 2637{
78f12dd3
L
2638 PRINTF_LIKE ((*as_error));
2639
1e9cc1c2 2640 flag_code = (enum flag_code) value;
40fb9820
L
2641 if (flag_code == CODE_64BIT)
2642 {
2643 cpu_arch_flags.bitfield.cpu64 = 1;
2644 cpu_arch_flags.bitfield.cpuno64 = 0;
40fb9820
L
2645 }
2646 else
2647 {
2648 cpu_arch_flags.bitfield.cpu64 = 0;
2649 cpu_arch_flags.bitfield.cpuno64 = 1;
40fb9820
L
2650 }
2651 if (value == CODE_64BIT && !cpu_arch_flags.bitfield.cpulm )
3e73aa7c 2652 {
78f12dd3
L
2653 if (check)
2654 as_error = as_fatal;
2655 else
2656 as_error = as_bad;
2657 (*as_error) (_("64bit mode not supported on `%s'."),
2658 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2659 }
40fb9820 2660 if (value == CODE_32BIT && !cpu_arch_flags.bitfield.cpui386)
3e73aa7c 2661 {
78f12dd3
L
2662 if (check)
2663 as_error = as_fatal;
2664 else
2665 as_error = as_bad;
2666 (*as_error) (_("32bit mode not supported on `%s'."),
2667 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2668 }
eecb386c
AM
2669 stackop_size = '\0';
2670}
2671
78f12dd3
L
2672static void
2673set_code_flag (int value)
2674{
2675 update_code_flag (value, 0);
2676}
2677
eecb386c 2678static void
e3bb37b5 2679set_16bit_gcc_code_flag (int new_code_flag)
252b5132 2680{
1e9cc1c2 2681 flag_code = (enum flag_code) new_code_flag;
40fb9820
L
2682 if (flag_code != CODE_16BIT)
2683 abort ();
2684 cpu_arch_flags.bitfield.cpu64 = 0;
2685 cpu_arch_flags.bitfield.cpuno64 = 1;
9306ca4a 2686 stackop_size = LONG_MNEM_SUFFIX;
252b5132
RH
2687}
2688
2689static void
e3bb37b5 2690set_intel_syntax (int syntax_flag)
252b5132
RH
2691{
2692 /* Find out if register prefixing is specified. */
2693 int ask_naked_reg = 0;
2694
2695 SKIP_WHITESPACE ();
29b0f896 2696 if (!is_end_of_line[(unsigned char) *input_line_pointer])
252b5132 2697 {
d02603dc
NC
2698 char *string;
2699 int e = get_symbol_name (&string);
252b5132 2700
47926f60 2701 if (strcmp (string, "prefix") == 0)
252b5132 2702 ask_naked_reg = 1;
47926f60 2703 else if (strcmp (string, "noprefix") == 0)
252b5132
RH
2704 ask_naked_reg = -1;
2705 else
d0b47220 2706 as_bad (_("bad argument to syntax directive."));
d02603dc 2707 (void) restore_line_pointer (e);
252b5132
RH
2708 }
2709 demand_empty_rest_of_line ();
c3332e24 2710
252b5132
RH
2711 intel_syntax = syntax_flag;
2712
2713 if (ask_naked_reg == 0)
f86103b7
AM
2714 allow_naked_reg = (intel_syntax
2715 && (bfd_get_symbol_leading_char (stdoutput) != '\0'));
252b5132
RH
2716 else
2717 allow_naked_reg = (ask_naked_reg < 0);
9306ca4a 2718
ee86248c 2719 expr_set_rank (O_full_ptr, syntax_flag ? 10 : 0);
7ab9ffdd 2720
e4a3b5a4 2721 identifier_chars['%'] = intel_syntax && allow_naked_reg ? '%' : 0;
9306ca4a 2722 identifier_chars['$'] = intel_syntax ? '$' : 0;
e4a3b5a4 2723 register_prefix = allow_naked_reg ? "" : "%";
252b5132
RH
2724}
2725
1efbbeb4
L
2726static void
2727set_intel_mnemonic (int mnemonic_flag)
2728{
e1d4d893 2729 intel_mnemonic = mnemonic_flag;
1efbbeb4
L
2730}
2731
db51cc60
L
2732static void
2733set_allow_index_reg (int flag)
2734{
2735 allow_index_reg = flag;
2736}
2737
cb19c032 2738static void
7bab8ab5 2739set_check (int what)
cb19c032 2740{
7bab8ab5
JB
2741 enum check_kind *kind;
2742 const char *str;
2743
2744 if (what)
2745 {
2746 kind = &operand_check;
2747 str = "operand";
2748 }
2749 else
2750 {
2751 kind = &sse_check;
2752 str = "sse";
2753 }
2754
cb19c032
L
2755 SKIP_WHITESPACE ();
2756
2757 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2758 {
d02603dc
NC
2759 char *string;
2760 int e = get_symbol_name (&string);
cb19c032
L
2761
2762 if (strcmp (string, "none") == 0)
7bab8ab5 2763 *kind = check_none;
cb19c032 2764 else if (strcmp (string, "warning") == 0)
7bab8ab5 2765 *kind = check_warning;
cb19c032 2766 else if (strcmp (string, "error") == 0)
7bab8ab5 2767 *kind = check_error;
cb19c032 2768 else
7bab8ab5 2769 as_bad (_("bad argument to %s_check directive."), str);
d02603dc 2770 (void) restore_line_pointer (e);
cb19c032
L
2771 }
2772 else
7bab8ab5 2773 as_bad (_("missing argument for %s_check directive"), str);
cb19c032
L
2774
2775 demand_empty_rest_of_line ();
2776}
2777
8a9036a4
L
2778static void
2779check_cpu_arch_compatible (const char *name ATTRIBUTE_UNUSED,
1e9cc1c2 2780 i386_cpu_flags new_flag ATTRIBUTE_UNUSED)
8a9036a4
L
2781{
2782#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2783 static const char *arch;
2784
2785 /* Intel LIOM is only supported on ELF. */
2786 if (!IS_ELF)
2787 return;
2788
2789 if (!arch)
2790 {
2791 /* Use cpu_arch_name if it is set in md_parse_option. Otherwise
2792 use default_arch. */
2793 arch = cpu_arch_name;
2794 if (!arch)
2795 arch = default_arch;
2796 }
2797
81486035
L
2798 /* If we are targeting Intel MCU, we must enable it. */
2799 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_IAMCU
2800 || new_flag.bitfield.cpuiamcu)
2801 return;
2802
3632d14b 2803 /* If we are targeting Intel L1OM, we must enable it. */
8a9036a4 2804 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_L1OM
1e9cc1c2 2805 || new_flag.bitfield.cpul1om)
8a9036a4 2806 return;
76ba9986 2807
7a9068fe
L
2808 /* If we are targeting Intel K1OM, we must enable it. */
2809 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_K1OM
2810 || new_flag.bitfield.cpuk1om)
2811 return;
2812
8a9036a4
L
2813 as_bad (_("`%s' is not supported on `%s'"), name, arch);
2814#endif
2815}
2816
e413e4e9 2817static void
e3bb37b5 2818set_cpu_arch (int dummy ATTRIBUTE_UNUSED)
e413e4e9 2819{
47926f60 2820 SKIP_WHITESPACE ();
e413e4e9 2821
29b0f896 2822 if (!is_end_of_line[(unsigned char) *input_line_pointer])
e413e4e9 2823 {
d02603dc
NC
2824 char *string;
2825 int e = get_symbol_name (&string);
91d6fa6a 2826 unsigned int j;
40fb9820 2827 i386_cpu_flags flags;
e413e4e9 2828
91d6fa6a 2829 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
e413e4e9 2830 {
91d6fa6a 2831 if (strcmp (string, cpu_arch[j].name) == 0)
e413e4e9 2832 {
91d6fa6a 2833 check_cpu_arch_compatible (string, cpu_arch[j].flags);
8a9036a4 2834
5c6af06e
JB
2835 if (*string != '.')
2836 {
91d6fa6a 2837 cpu_arch_name = cpu_arch[j].name;
5c6af06e 2838 cpu_sub_arch_name = NULL;
91d6fa6a 2839 cpu_arch_flags = cpu_arch[j].flags;
40fb9820
L
2840 if (flag_code == CODE_64BIT)
2841 {
2842 cpu_arch_flags.bitfield.cpu64 = 1;
2843 cpu_arch_flags.bitfield.cpuno64 = 0;
2844 }
2845 else
2846 {
2847 cpu_arch_flags.bitfield.cpu64 = 0;
2848 cpu_arch_flags.bitfield.cpuno64 = 1;
2849 }
91d6fa6a
NC
2850 cpu_arch_isa = cpu_arch[j].type;
2851 cpu_arch_isa_flags = cpu_arch[j].flags;
ccc9c027
L
2852 if (!cpu_arch_tune_set)
2853 {
2854 cpu_arch_tune = cpu_arch_isa;
2855 cpu_arch_tune_flags = cpu_arch_isa_flags;
2856 }
5c6af06e
JB
2857 break;
2858 }
40fb9820 2859
293f5f65
L
2860 flags = cpu_flags_or (cpu_arch_flags,
2861 cpu_arch[j].flags);
81486035 2862
5b64d091 2863 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
5c6af06e 2864 {
6305a203
L
2865 if (cpu_sub_arch_name)
2866 {
2867 char *name = cpu_sub_arch_name;
2868 cpu_sub_arch_name = concat (name,
91d6fa6a 2869 cpu_arch[j].name,
1bf57e9f 2870 (const char *) NULL);
6305a203
L
2871 free (name);
2872 }
2873 else
91d6fa6a 2874 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
40fb9820 2875 cpu_arch_flags = flags;
a586129e 2876 cpu_arch_isa_flags = flags;
5c6af06e 2877 }
0089dace
L
2878 else
2879 cpu_arch_isa_flags
2880 = cpu_flags_or (cpu_arch_isa_flags,
2881 cpu_arch[j].flags);
d02603dc 2882 (void) restore_line_pointer (e);
5c6af06e
JB
2883 demand_empty_rest_of_line ();
2884 return;
e413e4e9
AM
2885 }
2886 }
293f5f65
L
2887
2888 if (*string == '.' && j >= ARRAY_SIZE (cpu_arch))
2889 {
33eaf5de 2890 /* Disable an ISA extension. */
293f5f65
L
2891 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
2892 if (strcmp (string + 1, cpu_noarch [j].name) == 0)
2893 {
2894 flags = cpu_flags_and_not (cpu_arch_flags,
2895 cpu_noarch[j].flags);
2896 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
2897 {
2898 if (cpu_sub_arch_name)
2899 {
2900 char *name = cpu_sub_arch_name;
2901 cpu_sub_arch_name = concat (name, string,
2902 (const char *) NULL);
2903 free (name);
2904 }
2905 else
2906 cpu_sub_arch_name = xstrdup (string);
2907 cpu_arch_flags = flags;
2908 cpu_arch_isa_flags = flags;
2909 }
2910 (void) restore_line_pointer (e);
2911 demand_empty_rest_of_line ();
2912 return;
2913 }
2914
2915 j = ARRAY_SIZE (cpu_arch);
2916 }
2917
91d6fa6a 2918 if (j >= ARRAY_SIZE (cpu_arch))
e413e4e9
AM
2919 as_bad (_("no such architecture: `%s'"), string);
2920
2921 *input_line_pointer = e;
2922 }
2923 else
2924 as_bad (_("missing cpu architecture"));
2925
fddf5b5b
AM
2926 no_cond_jump_promotion = 0;
2927 if (*input_line_pointer == ','
29b0f896 2928 && !is_end_of_line[(unsigned char) input_line_pointer[1]])
fddf5b5b 2929 {
d02603dc
NC
2930 char *string;
2931 char e;
2932
2933 ++input_line_pointer;
2934 e = get_symbol_name (&string);
fddf5b5b
AM
2935
2936 if (strcmp (string, "nojumps") == 0)
2937 no_cond_jump_promotion = 1;
2938 else if (strcmp (string, "jumps") == 0)
2939 ;
2940 else
2941 as_bad (_("no such architecture modifier: `%s'"), string);
2942
d02603dc 2943 (void) restore_line_pointer (e);
fddf5b5b
AM
2944 }
2945
e413e4e9
AM
2946 demand_empty_rest_of_line ();
2947}
2948
8a9036a4
L
2949enum bfd_architecture
2950i386_arch (void)
2951{
3632d14b 2952 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4
L
2953 {
2954 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2955 || flag_code != CODE_64BIT)
2956 as_fatal (_("Intel L1OM is 64bit ELF only"));
2957 return bfd_arch_l1om;
2958 }
7a9068fe
L
2959 else if (cpu_arch_isa == PROCESSOR_K1OM)
2960 {
2961 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2962 || flag_code != CODE_64BIT)
2963 as_fatal (_("Intel K1OM is 64bit ELF only"));
2964 return bfd_arch_k1om;
2965 }
81486035
L
2966 else if (cpu_arch_isa == PROCESSOR_IAMCU)
2967 {
2968 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2969 || flag_code == CODE_64BIT)
2970 as_fatal (_("Intel MCU is 32bit ELF only"));
2971 return bfd_arch_iamcu;
2972 }
8a9036a4
L
2973 else
2974 return bfd_arch_i386;
2975}
2976
b9d79e03 2977unsigned long
7016a5d5 2978i386_mach (void)
b9d79e03 2979{
351f65ca 2980 if (!strncmp (default_arch, "x86_64", 6))
8a9036a4 2981 {
3632d14b 2982 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 2983 {
351f65ca
L
2984 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2985 || default_arch[6] != '\0')
8a9036a4
L
2986 as_fatal (_("Intel L1OM is 64bit ELF only"));
2987 return bfd_mach_l1om;
2988 }
7a9068fe
L
2989 else if (cpu_arch_isa == PROCESSOR_K1OM)
2990 {
2991 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2992 || default_arch[6] != '\0')
2993 as_fatal (_("Intel K1OM is 64bit ELF only"));
2994 return bfd_mach_k1om;
2995 }
351f65ca 2996 else if (default_arch[6] == '\0')
8a9036a4 2997 return bfd_mach_x86_64;
351f65ca
L
2998 else
2999 return bfd_mach_x64_32;
8a9036a4 3000 }
5197d474
L
3001 else if (!strcmp (default_arch, "i386")
3002 || !strcmp (default_arch, "iamcu"))
81486035
L
3003 {
3004 if (cpu_arch_isa == PROCESSOR_IAMCU)
3005 {
3006 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
3007 as_fatal (_("Intel MCU is 32bit ELF only"));
3008 return bfd_mach_i386_iamcu;
3009 }
3010 else
3011 return bfd_mach_i386_i386;
3012 }
b9d79e03 3013 else
2b5d6a91 3014 as_fatal (_("unknown architecture"));
b9d79e03 3015}
b9d79e03 3016\f
252b5132 3017void
7016a5d5 3018md_begin (void)
252b5132
RH
3019{
3020 const char *hash_err;
3021
86fa6981
L
3022 /* Support pseudo prefixes like {disp32}. */
3023 lex_type ['{'] = LEX_BEGIN_NAME;
3024
47926f60 3025 /* Initialize op_hash hash table. */
252b5132
RH
3026 op_hash = hash_new ();
3027
3028 {
d3ce72d0 3029 const insn_template *optab;
29b0f896 3030 templates *core_optab;
252b5132 3031
47926f60
KH
3032 /* Setup for loop. */
3033 optab = i386_optab;
add39d23 3034 core_optab = XNEW (templates);
252b5132
RH
3035 core_optab->start = optab;
3036
3037 while (1)
3038 {
3039 ++optab;
3040 if (optab->name == NULL
3041 || strcmp (optab->name, (optab - 1)->name) != 0)
3042 {
3043 /* different name --> ship out current template list;
47926f60 3044 add to hash table; & begin anew. */
252b5132
RH
3045 core_optab->end = optab;
3046 hash_err = hash_insert (op_hash,
3047 (optab - 1)->name,
5a49b8ac 3048 (void *) core_optab);
252b5132
RH
3049 if (hash_err)
3050 {
b37df7c4 3051 as_fatal (_("can't hash %s: %s"),
252b5132
RH
3052 (optab - 1)->name,
3053 hash_err);
3054 }
3055 if (optab->name == NULL)
3056 break;
add39d23 3057 core_optab = XNEW (templates);
252b5132
RH
3058 core_optab->start = optab;
3059 }
3060 }
3061 }
3062
47926f60 3063 /* Initialize reg_hash hash table. */
252b5132
RH
3064 reg_hash = hash_new ();
3065 {
29b0f896 3066 const reg_entry *regtab;
c3fe08fa 3067 unsigned int regtab_size = i386_regtab_size;
252b5132 3068
c3fe08fa 3069 for (regtab = i386_regtab; regtab_size--; regtab++)
252b5132 3070 {
5a49b8ac 3071 hash_err = hash_insert (reg_hash, regtab->reg_name, (void *) regtab);
252b5132 3072 if (hash_err)
b37df7c4 3073 as_fatal (_("can't hash %s: %s"),
3e73aa7c
JH
3074 regtab->reg_name,
3075 hash_err);
252b5132
RH
3076 }
3077 }
3078
47926f60 3079 /* Fill in lexical tables: mnemonic_chars, operand_chars. */
252b5132 3080 {
29b0f896
AM
3081 int c;
3082 char *p;
252b5132
RH
3083
3084 for (c = 0; c < 256; c++)
3085 {
3882b010 3086 if (ISDIGIT (c))
252b5132
RH
3087 {
3088 digit_chars[c] = c;
3089 mnemonic_chars[c] = c;
3090 register_chars[c] = c;
3091 operand_chars[c] = c;
3092 }
3882b010 3093 else if (ISLOWER (c))
252b5132
RH
3094 {
3095 mnemonic_chars[c] = c;
3096 register_chars[c] = c;
3097 operand_chars[c] = c;
3098 }
3882b010 3099 else if (ISUPPER (c))
252b5132 3100 {
3882b010 3101 mnemonic_chars[c] = TOLOWER (c);
252b5132
RH
3102 register_chars[c] = mnemonic_chars[c];
3103 operand_chars[c] = c;
3104 }
43234a1e 3105 else if (c == '{' || c == '}')
86fa6981
L
3106 {
3107 mnemonic_chars[c] = c;
3108 operand_chars[c] = c;
3109 }
252b5132 3110
3882b010 3111 if (ISALPHA (c) || ISDIGIT (c))
252b5132
RH
3112 identifier_chars[c] = c;
3113 else if (c >= 128)
3114 {
3115 identifier_chars[c] = c;
3116 operand_chars[c] = c;
3117 }
3118 }
3119
3120#ifdef LEX_AT
3121 identifier_chars['@'] = '@';
32137342
NC
3122#endif
3123#ifdef LEX_QM
3124 identifier_chars['?'] = '?';
3125 operand_chars['?'] = '?';
252b5132 3126#endif
252b5132 3127 digit_chars['-'] = '-';
c0f3af97 3128 mnemonic_chars['_'] = '_';
791fe849 3129 mnemonic_chars['-'] = '-';
0003779b 3130 mnemonic_chars['.'] = '.';
252b5132
RH
3131 identifier_chars['_'] = '_';
3132 identifier_chars['.'] = '.';
3133
3134 for (p = operand_special_chars; *p != '\0'; p++)
3135 operand_chars[(unsigned char) *p] = *p;
3136 }
3137
a4447b93
RH
3138 if (flag_code == CODE_64BIT)
3139 {
ca19b261
KT
3140#if defined (OBJ_COFF) && defined (TE_PE)
3141 x86_dwarf2_return_column = (OUTPUT_FLAVOR == bfd_target_coff_flavour
3142 ? 32 : 16);
3143#else
a4447b93 3144 x86_dwarf2_return_column = 16;
ca19b261 3145#endif
61ff971f 3146 x86_cie_data_alignment = -8;
a4447b93
RH
3147 }
3148 else
3149 {
3150 x86_dwarf2_return_column = 8;
3151 x86_cie_data_alignment = -4;
3152 }
e379e5f3
L
3153
3154 /* NB: FUSED_JCC_PADDING frag must have sufficient room so that it
3155 can be turned into BRANCH_PREFIX frag. */
3156 if (align_branch_prefix_size > MAX_FUSED_JCC_PADDING_SIZE)
3157 abort ();
252b5132
RH
3158}
3159
3160void
e3bb37b5 3161i386_print_statistics (FILE *file)
252b5132
RH
3162{
3163 hash_print_statistics (file, "i386 opcode", op_hash);
3164 hash_print_statistics (file, "i386 register", reg_hash);
3165}
3166\f
252b5132
RH
3167#ifdef DEBUG386
3168
ce8a8b2f 3169/* Debugging routines for md_assemble. */
d3ce72d0 3170static void pte (insn_template *);
40fb9820 3171static void pt (i386_operand_type);
e3bb37b5
L
3172static void pe (expressionS *);
3173static void ps (symbolS *);
252b5132
RH
3174
3175static void
2c703856 3176pi (const char *line, i386_insn *x)
252b5132 3177{
09137c09 3178 unsigned int j;
252b5132
RH
3179
3180 fprintf (stdout, "%s: template ", line);
3181 pte (&x->tm);
09f131f2
JH
3182 fprintf (stdout, " address: base %s index %s scale %x\n",
3183 x->base_reg ? x->base_reg->reg_name : "none",
3184 x->index_reg ? x->index_reg->reg_name : "none",
3185 x->log2_scale_factor);
3186 fprintf (stdout, " modrm: mode %x reg %x reg/mem %x\n",
252b5132 3187 x->rm.mode, x->rm.reg, x->rm.regmem);
09f131f2
JH
3188 fprintf (stdout, " sib: base %x index %x scale %x\n",
3189 x->sib.base, x->sib.index, x->sib.scale);
3190 fprintf (stdout, " rex: 64bit %x extX %x extY %x extZ %x\n",
161a04f6
L
3191 (x->rex & REX_W) != 0,
3192 (x->rex & REX_R) != 0,
3193 (x->rex & REX_X) != 0,
3194 (x->rex & REX_B) != 0);
09137c09 3195 for (j = 0; j < x->operands; j++)
252b5132 3196 {
09137c09
SP
3197 fprintf (stdout, " #%d: ", j + 1);
3198 pt (x->types[j]);
252b5132 3199 fprintf (stdout, "\n");
bab6aec1 3200 if (x->types[j].bitfield.class == Reg
3528c362
JB
3201 || x->types[j].bitfield.class == RegMMX
3202 || x->types[j].bitfield.class == RegSIMD
dd6b8a0b 3203 || x->types[j].bitfield.class == RegMask
00cee14f 3204 || x->types[j].bitfield.class == SReg
4a5c67ed
JB
3205 || x->types[j].bitfield.class == RegCR
3206 || x->types[j].bitfield.class == RegDR
dd6b8a0b
JB
3207 || x->types[j].bitfield.class == RegTR
3208 || x->types[j].bitfield.class == RegBND)
09137c09
SP
3209 fprintf (stdout, "%s\n", x->op[j].regs->reg_name);
3210 if (operand_type_check (x->types[j], imm))
3211 pe (x->op[j].imms);
3212 if (operand_type_check (x->types[j], disp))
3213 pe (x->op[j].disps);
252b5132
RH
3214 }
3215}
3216
3217static void
d3ce72d0 3218pte (insn_template *t)
252b5132 3219{
09137c09 3220 unsigned int j;
252b5132 3221 fprintf (stdout, " %d operands ", t->operands);
47926f60 3222 fprintf (stdout, "opcode %x ", t->base_opcode);
252b5132
RH
3223 if (t->extension_opcode != None)
3224 fprintf (stdout, "ext %x ", t->extension_opcode);
40fb9820 3225 if (t->opcode_modifier.d)
252b5132 3226 fprintf (stdout, "D");
40fb9820 3227 if (t->opcode_modifier.w)
252b5132
RH
3228 fprintf (stdout, "W");
3229 fprintf (stdout, "\n");
09137c09 3230 for (j = 0; j < t->operands; j++)
252b5132 3231 {
09137c09
SP
3232 fprintf (stdout, " #%d type ", j + 1);
3233 pt (t->operand_types[j]);
252b5132
RH
3234 fprintf (stdout, "\n");
3235 }
3236}
3237
3238static void
e3bb37b5 3239pe (expressionS *e)
252b5132 3240{
24eab124 3241 fprintf (stdout, " operation %d\n", e->X_op);
b77ad1d4
AM
3242 fprintf (stdout, " add_number %ld (%lx)\n",
3243 (long) e->X_add_number, (long) e->X_add_number);
252b5132
RH
3244 if (e->X_add_symbol)
3245 {
3246 fprintf (stdout, " add_symbol ");
3247 ps (e->X_add_symbol);
3248 fprintf (stdout, "\n");
3249 }
3250 if (e->X_op_symbol)
3251 {
3252 fprintf (stdout, " op_symbol ");
3253 ps (e->X_op_symbol);
3254 fprintf (stdout, "\n");
3255 }
3256}
3257
3258static void
e3bb37b5 3259ps (symbolS *s)
252b5132
RH
3260{
3261 fprintf (stdout, "%s type %s%s",
3262 S_GET_NAME (s),
3263 S_IS_EXTERNAL (s) ? "EXTERNAL " : "",
3264 segment_name (S_GET_SEGMENT (s)));
3265}
3266
7b81dfbb 3267static struct type_name
252b5132 3268 {
40fb9820
L
3269 i386_operand_type mask;
3270 const char *name;
252b5132 3271 }
7b81dfbb 3272const type_names[] =
252b5132 3273{
40fb9820
L
3274 { OPERAND_TYPE_REG8, "r8" },
3275 { OPERAND_TYPE_REG16, "r16" },
3276 { OPERAND_TYPE_REG32, "r32" },
3277 { OPERAND_TYPE_REG64, "r64" },
2c703856
JB
3278 { OPERAND_TYPE_ACC8, "acc8" },
3279 { OPERAND_TYPE_ACC16, "acc16" },
3280 { OPERAND_TYPE_ACC32, "acc32" },
3281 { OPERAND_TYPE_ACC64, "acc64" },
40fb9820
L
3282 { OPERAND_TYPE_IMM8, "i8" },
3283 { OPERAND_TYPE_IMM8, "i8s" },
3284 { OPERAND_TYPE_IMM16, "i16" },
3285 { OPERAND_TYPE_IMM32, "i32" },
3286 { OPERAND_TYPE_IMM32S, "i32s" },
3287 { OPERAND_TYPE_IMM64, "i64" },
3288 { OPERAND_TYPE_IMM1, "i1" },
3289 { OPERAND_TYPE_BASEINDEX, "BaseIndex" },
3290 { OPERAND_TYPE_DISP8, "d8" },
3291 { OPERAND_TYPE_DISP16, "d16" },
3292 { OPERAND_TYPE_DISP32, "d32" },
3293 { OPERAND_TYPE_DISP32S, "d32s" },
3294 { OPERAND_TYPE_DISP64, "d64" },
3295 { OPERAND_TYPE_INOUTPORTREG, "InOutPortReg" },
3296 { OPERAND_TYPE_SHIFTCOUNT, "ShiftCount" },
3297 { OPERAND_TYPE_CONTROL, "control reg" },
3298 { OPERAND_TYPE_TEST, "test reg" },
3299 { OPERAND_TYPE_DEBUG, "debug reg" },
3300 { OPERAND_TYPE_FLOATREG, "FReg" },
3301 { OPERAND_TYPE_FLOATACC, "FAcc" },
21df382b 3302 { OPERAND_TYPE_SREG, "SReg" },
40fb9820
L
3303 { OPERAND_TYPE_REGMMX, "rMMX" },
3304 { OPERAND_TYPE_REGXMM, "rXMM" },
0349dc08 3305 { OPERAND_TYPE_REGYMM, "rYMM" },
43234a1e
L
3306 { OPERAND_TYPE_REGZMM, "rZMM" },
3307 { OPERAND_TYPE_REGMASK, "Mask reg" },
252b5132
RH
3308};
3309
3310static void
40fb9820 3311pt (i386_operand_type t)
252b5132 3312{
40fb9820 3313 unsigned int j;
c6fb90c8 3314 i386_operand_type a;
252b5132 3315
40fb9820 3316 for (j = 0; j < ARRAY_SIZE (type_names); j++)
c6fb90c8
L
3317 {
3318 a = operand_type_and (t, type_names[j].mask);
2c703856 3319 if (operand_type_equal (&a, &type_names[j].mask))
c6fb90c8
L
3320 fprintf (stdout, "%s, ", type_names[j].name);
3321 }
252b5132
RH
3322 fflush (stdout);
3323}
3324
3325#endif /* DEBUG386 */
3326\f
252b5132 3327static bfd_reloc_code_real_type
3956db08 3328reloc (unsigned int size,
64e74474
AM
3329 int pcrel,
3330 int sign,
3331 bfd_reloc_code_real_type other)
252b5132 3332{
47926f60 3333 if (other != NO_RELOC)
3956db08 3334 {
91d6fa6a 3335 reloc_howto_type *rel;
3956db08
JB
3336
3337 if (size == 8)
3338 switch (other)
3339 {
64e74474
AM
3340 case BFD_RELOC_X86_64_GOT32:
3341 return BFD_RELOC_X86_64_GOT64;
3342 break;
553d1284
L
3343 case BFD_RELOC_X86_64_GOTPLT64:
3344 return BFD_RELOC_X86_64_GOTPLT64;
3345 break;
64e74474
AM
3346 case BFD_RELOC_X86_64_PLTOFF64:
3347 return BFD_RELOC_X86_64_PLTOFF64;
3348 break;
3349 case BFD_RELOC_X86_64_GOTPC32:
3350 other = BFD_RELOC_X86_64_GOTPC64;
3351 break;
3352 case BFD_RELOC_X86_64_GOTPCREL:
3353 other = BFD_RELOC_X86_64_GOTPCREL64;
3354 break;
3355 case BFD_RELOC_X86_64_TPOFF32:
3356 other = BFD_RELOC_X86_64_TPOFF64;
3357 break;
3358 case BFD_RELOC_X86_64_DTPOFF32:
3359 other = BFD_RELOC_X86_64_DTPOFF64;
3360 break;
3361 default:
3362 break;
3956db08 3363 }
e05278af 3364
8ce3d284 3365#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
3366 if (other == BFD_RELOC_SIZE32)
3367 {
3368 if (size == 8)
1ab668bf 3369 other = BFD_RELOC_SIZE64;
8fd4256d 3370 if (pcrel)
1ab668bf
AM
3371 {
3372 as_bad (_("there are no pc-relative size relocations"));
3373 return NO_RELOC;
3374 }
8fd4256d 3375 }
8ce3d284 3376#endif
8fd4256d 3377
e05278af 3378 /* Sign-checking 4-byte relocations in 16-/32-bit code is pointless. */
f2d8a97c 3379 if (size == 4 && (flag_code != CODE_64BIT || disallow_64bit_reloc))
e05278af
JB
3380 sign = -1;
3381
91d6fa6a
NC
3382 rel = bfd_reloc_type_lookup (stdoutput, other);
3383 if (!rel)
3956db08 3384 as_bad (_("unknown relocation (%u)"), other);
91d6fa6a 3385 else if (size != bfd_get_reloc_size (rel))
3956db08 3386 as_bad (_("%u-byte relocation cannot be applied to %u-byte field"),
91d6fa6a 3387 bfd_get_reloc_size (rel),
3956db08 3388 size);
91d6fa6a 3389 else if (pcrel && !rel->pc_relative)
3956db08 3390 as_bad (_("non-pc-relative relocation for pc-relative field"));
91d6fa6a 3391 else if ((rel->complain_on_overflow == complain_overflow_signed
3956db08 3392 && !sign)
91d6fa6a 3393 || (rel->complain_on_overflow == complain_overflow_unsigned
64e74474 3394 && sign > 0))
3956db08
JB
3395 as_bad (_("relocated field and relocation type differ in signedness"));
3396 else
3397 return other;
3398 return NO_RELOC;
3399 }
252b5132
RH
3400
3401 if (pcrel)
3402 {
3e73aa7c 3403 if (!sign)
3956db08 3404 as_bad (_("there are no unsigned pc-relative relocations"));
252b5132
RH
3405 switch (size)
3406 {
3407 case 1: return BFD_RELOC_8_PCREL;
3408 case 2: return BFD_RELOC_16_PCREL;
d258b828 3409 case 4: return BFD_RELOC_32_PCREL;
d6ab8113 3410 case 8: return BFD_RELOC_64_PCREL;
252b5132 3411 }
3956db08 3412 as_bad (_("cannot do %u byte pc-relative relocation"), size);
252b5132
RH
3413 }
3414 else
3415 {
3956db08 3416 if (sign > 0)
e5cb08ac 3417 switch (size)
3e73aa7c
JH
3418 {
3419 case 4: return BFD_RELOC_X86_64_32S;
3420 }
3421 else
3422 switch (size)
3423 {
3424 case 1: return BFD_RELOC_8;
3425 case 2: return BFD_RELOC_16;
3426 case 4: return BFD_RELOC_32;
3427 case 8: return BFD_RELOC_64;
3428 }
3956db08
JB
3429 as_bad (_("cannot do %s %u byte relocation"),
3430 sign > 0 ? "signed" : "unsigned", size);
252b5132
RH
3431 }
3432
0cc9e1d3 3433 return NO_RELOC;
252b5132
RH
3434}
3435
47926f60
KH
3436/* Here we decide which fixups can be adjusted to make them relative to
3437 the beginning of the section instead of the symbol. Basically we need
3438 to make sure that the dynamic relocations are done correctly, so in
3439 some cases we force the original symbol to be used. */
3440
252b5132 3441int
e3bb37b5 3442tc_i386_fix_adjustable (fixS *fixP ATTRIBUTE_UNUSED)
252b5132 3443{
6d249963 3444#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 3445 if (!IS_ELF)
31312f95
AM
3446 return 1;
3447
a161fe53
AM
3448 /* Don't adjust pc-relative references to merge sections in 64-bit
3449 mode. */
3450 if (use_rela_relocations
3451 && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0
3452 && fixP->fx_pcrel)
252b5132 3453 return 0;
31312f95 3454
8d01d9a9
AJ
3455 /* The x86_64 GOTPCREL are represented as 32bit PCrel relocations
3456 and changed later by validate_fix. */
3457 if (GOT_symbol && fixP->fx_subsy == GOT_symbol
3458 && fixP->fx_r_type == BFD_RELOC_32_PCREL)
3459 return 0;
3460
8fd4256d
L
3461 /* Adjust_reloc_syms doesn't know about the GOT. Need to keep symbol
3462 for size relocations. */
3463 if (fixP->fx_r_type == BFD_RELOC_SIZE32
3464 || fixP->fx_r_type == BFD_RELOC_SIZE64
3465 || fixP->fx_r_type == BFD_RELOC_386_GOTOFF
252b5132 3466 || fixP->fx_r_type == BFD_RELOC_386_GOT32
02a86693 3467 || fixP->fx_r_type == BFD_RELOC_386_GOT32X
13ae64f3
JJ
3468 || fixP->fx_r_type == BFD_RELOC_386_TLS_GD
3469 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDM
3470 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDO_32
3471 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE_32
37e55690
JJ
3472 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE
3473 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTIE
13ae64f3
JJ
3474 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE_32
3475 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE
67a4f2b7
AO
3476 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTDESC
3477 || fixP->fx_r_type == BFD_RELOC_386_TLS_DESC_CALL
3e73aa7c 3478 || fixP->fx_r_type == BFD_RELOC_X86_64_GOT32
80b3ee89 3479 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCREL
56ceb5b5
L
3480 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCRELX
3481 || fixP->fx_r_type == BFD_RELOC_X86_64_REX_GOTPCRELX
bffbf940
JJ
3482 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSGD
3483 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSLD
3484 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF32
d6ab8113 3485 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF64
bffbf940
JJ
3486 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTTPOFF
3487 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF32
d6ab8113
JB
3488 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF64
3489 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTOFF64
67a4f2b7
AO
3490 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPC32_TLSDESC
3491 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSDESC_CALL
252b5132
RH
3492 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
3493 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
3494 return 0;
31312f95 3495#endif
252b5132
RH
3496 return 1;
3497}
252b5132 3498
b4cac588 3499static int
e3bb37b5 3500intel_float_operand (const char *mnemonic)
252b5132 3501{
9306ca4a
JB
3502 /* Note that the value returned is meaningful only for opcodes with (memory)
3503 operands, hence the code here is free to improperly handle opcodes that
3504 have no operands (for better performance and smaller code). */
3505
3506 if (mnemonic[0] != 'f')
3507 return 0; /* non-math */
3508
3509 switch (mnemonic[1])
3510 {
3511 /* fclex, fdecstp, fdisi, femms, feni, fincstp, finit, fsetpm, and
3512 the fs segment override prefix not currently handled because no
3513 call path can make opcodes without operands get here */
3514 case 'i':
3515 return 2 /* integer op */;
3516 case 'l':
3517 if (mnemonic[2] == 'd' && (mnemonic[3] == 'c' || mnemonic[3] == 'e'))
3518 return 3; /* fldcw/fldenv */
3519 break;
3520 case 'n':
3521 if (mnemonic[2] != 'o' /* fnop */)
3522 return 3; /* non-waiting control op */
3523 break;
3524 case 'r':
3525 if (mnemonic[2] == 's')
3526 return 3; /* frstor/frstpm */
3527 break;
3528 case 's':
3529 if (mnemonic[2] == 'a')
3530 return 3; /* fsave */
3531 if (mnemonic[2] == 't')
3532 {
3533 switch (mnemonic[3])
3534 {
3535 case 'c': /* fstcw */
3536 case 'd': /* fstdw */
3537 case 'e': /* fstenv */
3538 case 's': /* fsts[gw] */
3539 return 3;
3540 }
3541 }
3542 break;
3543 case 'x':
3544 if (mnemonic[2] == 'r' || mnemonic[2] == 's')
3545 return 0; /* fxsave/fxrstor are not really math ops */
3546 break;
3547 }
252b5132 3548
9306ca4a 3549 return 1;
252b5132
RH
3550}
3551
c0f3af97
L
3552/* Build the VEX prefix. */
3553
3554static void
d3ce72d0 3555build_vex_prefix (const insn_template *t)
c0f3af97
L
3556{
3557 unsigned int register_specifier;
3558 unsigned int implied_prefix;
3559 unsigned int vector_length;
03751133 3560 unsigned int w;
c0f3af97
L
3561
3562 /* Check register specifier. */
3563 if (i.vex.register_specifier)
43234a1e
L
3564 {
3565 register_specifier =
3566 ~register_number (i.vex.register_specifier) & 0xf;
3567 gas_assert ((i.vex.register_specifier->reg_flags & RegVRex) == 0);
3568 }
c0f3af97
L
3569 else
3570 register_specifier = 0xf;
3571
79f0fa25
L
3572 /* Use 2-byte VEX prefix by swapping destination and source operand
3573 if there are more than 1 register operand. */
3574 if (i.reg_operands > 1
3575 && i.vec_encoding != vex_encoding_vex3
86fa6981 3576 && i.dir_encoding == dir_encoding_default
fa99fab2 3577 && i.operands == i.reg_operands
dbbc8b7e 3578 && operand_type_equal (&i.types[0], &i.types[i.operands - 1])
7f399153 3579 && i.tm.opcode_modifier.vexopcode == VEX0F
dbbc8b7e 3580 && (i.tm.opcode_modifier.load || i.tm.opcode_modifier.d)
fa99fab2
L
3581 && i.rex == REX_B)
3582 {
3583 unsigned int xchg = i.operands - 1;
3584 union i386_op temp_op;
3585 i386_operand_type temp_type;
3586
3587 temp_type = i.types[xchg];
3588 i.types[xchg] = i.types[0];
3589 i.types[0] = temp_type;
3590 temp_op = i.op[xchg];
3591 i.op[xchg] = i.op[0];
3592 i.op[0] = temp_op;
3593
9c2799c2 3594 gas_assert (i.rm.mode == 3);
fa99fab2
L
3595
3596 i.rex = REX_R;
3597 xchg = i.rm.regmem;
3598 i.rm.regmem = i.rm.reg;
3599 i.rm.reg = xchg;
3600
dbbc8b7e
JB
3601 if (i.tm.opcode_modifier.d)
3602 i.tm.base_opcode ^= (i.tm.base_opcode & 0xee) != 0x6e
3603 ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD;
3604 else /* Use the next insn. */
3605 i.tm = t[1];
fa99fab2
L
3606 }
3607
79dec6b7
JB
3608 /* Use 2-byte VEX prefix by swapping commutative source operands if there
3609 are no memory operands and at least 3 register ones. */
3610 if (i.reg_operands >= 3
3611 && i.vec_encoding != vex_encoding_vex3
3612 && i.reg_operands == i.operands - i.imm_operands
3613 && i.tm.opcode_modifier.vex
3614 && i.tm.opcode_modifier.commutative
3615 && (i.tm.opcode_modifier.sse2avx || optimize > 1)
3616 && i.rex == REX_B
3617 && i.vex.register_specifier
3618 && !(i.vex.register_specifier->reg_flags & RegRex))
3619 {
3620 unsigned int xchg = i.operands - i.reg_operands;
3621 union i386_op temp_op;
3622 i386_operand_type temp_type;
3623
3624 gas_assert (i.tm.opcode_modifier.vexopcode == VEX0F);
3625 gas_assert (!i.tm.opcode_modifier.sae);
3626 gas_assert (operand_type_equal (&i.types[i.operands - 2],
3627 &i.types[i.operands - 3]));
3628 gas_assert (i.rm.mode == 3);
3629
3630 temp_type = i.types[xchg];
3631 i.types[xchg] = i.types[xchg + 1];
3632 i.types[xchg + 1] = temp_type;
3633 temp_op = i.op[xchg];
3634 i.op[xchg] = i.op[xchg + 1];
3635 i.op[xchg + 1] = temp_op;
3636
3637 i.rex = 0;
3638 xchg = i.rm.regmem | 8;
3639 i.rm.regmem = ~register_specifier & 0xf;
3640 gas_assert (!(i.rm.regmem & 8));
3641 i.vex.register_specifier += xchg - i.rm.regmem;
3642 register_specifier = ~xchg & 0xf;
3643 }
3644
539f890d
L
3645 if (i.tm.opcode_modifier.vex == VEXScalar)
3646 vector_length = avxscalar;
10c17abd
JB
3647 else if (i.tm.opcode_modifier.vex == VEX256)
3648 vector_length = 1;
539f890d 3649 else
10c17abd 3650 {
56522fc5 3651 unsigned int op;
10c17abd 3652
c7213af9
L
3653 /* Determine vector length from the last multi-length vector
3654 operand. */
10c17abd 3655 vector_length = 0;
56522fc5 3656 for (op = t->operands; op--;)
10c17abd
JB
3657 if (t->operand_types[op].bitfield.xmmword
3658 && t->operand_types[op].bitfield.ymmword
3659 && i.types[op].bitfield.ymmword)
3660 {
3661 vector_length = 1;
3662 break;
3663 }
3664 }
c0f3af97
L
3665
3666 switch ((i.tm.base_opcode >> 8) & 0xff)
3667 {
3668 case 0:
3669 implied_prefix = 0;
3670 break;
3671 case DATA_PREFIX_OPCODE:
3672 implied_prefix = 1;
3673 break;
3674 case REPE_PREFIX_OPCODE:
3675 implied_prefix = 2;
3676 break;
3677 case REPNE_PREFIX_OPCODE:
3678 implied_prefix = 3;
3679 break;
3680 default:
3681 abort ();
3682 }
3683
03751133
L
3684 /* Check the REX.W bit and VEXW. */
3685 if (i.tm.opcode_modifier.vexw == VEXWIG)
3686 w = (vexwig == vexw1 || (i.rex & REX_W)) ? 1 : 0;
3687 else if (i.tm.opcode_modifier.vexw)
3688 w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0;
3689 else
931d03b7 3690 w = (flag_code == CODE_64BIT ? i.rex & REX_W : vexwig == vexw1) ? 1 : 0;
03751133 3691
c0f3af97 3692 /* Use 2-byte VEX prefix if possible. */
03751133
L
3693 if (w == 0
3694 && i.vec_encoding != vex_encoding_vex3
86fa6981 3695 && i.tm.opcode_modifier.vexopcode == VEX0F
c0f3af97
L
3696 && (i.rex & (REX_W | REX_X | REX_B)) == 0)
3697 {
3698 /* 2-byte VEX prefix. */
3699 unsigned int r;
3700
3701 i.vex.length = 2;
3702 i.vex.bytes[0] = 0xc5;
3703
3704 /* Check the REX.R bit. */
3705 r = (i.rex & REX_R) ? 0 : 1;
3706 i.vex.bytes[1] = (r << 7
3707 | register_specifier << 3
3708 | vector_length << 2
3709 | implied_prefix);
3710 }
3711 else
3712 {
3713 /* 3-byte VEX prefix. */
03751133 3714 unsigned int m;
c0f3af97 3715
f88c9eb0 3716 i.vex.length = 3;
f88c9eb0 3717
7f399153 3718 switch (i.tm.opcode_modifier.vexopcode)
5dd85c99 3719 {
7f399153
L
3720 case VEX0F:
3721 m = 0x1;
80de6e00 3722 i.vex.bytes[0] = 0xc4;
7f399153
L
3723 break;
3724 case VEX0F38:
3725 m = 0x2;
80de6e00 3726 i.vex.bytes[0] = 0xc4;
7f399153
L
3727 break;
3728 case VEX0F3A:
3729 m = 0x3;
80de6e00 3730 i.vex.bytes[0] = 0xc4;
7f399153
L
3731 break;
3732 case XOP08:
5dd85c99
SP
3733 m = 0x8;
3734 i.vex.bytes[0] = 0x8f;
7f399153
L
3735 break;
3736 case XOP09:
f88c9eb0
SP
3737 m = 0x9;
3738 i.vex.bytes[0] = 0x8f;
7f399153
L
3739 break;
3740 case XOP0A:
f88c9eb0
SP
3741 m = 0xa;
3742 i.vex.bytes[0] = 0x8f;
7f399153
L
3743 break;
3744 default:
3745 abort ();
f88c9eb0 3746 }
c0f3af97 3747
c0f3af97
L
3748 /* The high 3 bits of the second VEX byte are 1's compliment
3749 of RXB bits from REX. */
3750 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m;
3751
c0f3af97
L
3752 i.vex.bytes[2] = (w << 7
3753 | register_specifier << 3
3754 | vector_length << 2
3755 | implied_prefix);
3756 }
3757}
3758
e771e7c9
JB
3759static INLINE bfd_boolean
3760is_evex_encoding (const insn_template *t)
3761{
7091c612 3762 return t->opcode_modifier.evex || t->opcode_modifier.disp8memshift
e771e7c9 3763 || t->opcode_modifier.broadcast || t->opcode_modifier.masking
a80195f1 3764 || t->opcode_modifier.sae;
e771e7c9
JB
3765}
3766
7a8655d2
JB
3767static INLINE bfd_boolean
3768is_any_vex_encoding (const insn_template *t)
3769{
3770 return t->opcode_modifier.vex || t->opcode_modifier.vexopcode
3771 || is_evex_encoding (t);
3772}
3773
43234a1e
L
3774/* Build the EVEX prefix. */
3775
3776static void
3777build_evex_prefix (void)
3778{
3779 unsigned int register_specifier;
3780 unsigned int implied_prefix;
3781 unsigned int m, w;
3782 rex_byte vrex_used = 0;
3783
3784 /* Check register specifier. */
3785 if (i.vex.register_specifier)
3786 {
3787 gas_assert ((i.vrex & REX_X) == 0);
3788
3789 register_specifier = i.vex.register_specifier->reg_num;
3790 if ((i.vex.register_specifier->reg_flags & RegRex))
3791 register_specifier += 8;
3792 /* The upper 16 registers are encoded in the fourth byte of the
3793 EVEX prefix. */
3794 if (!(i.vex.register_specifier->reg_flags & RegVRex))
3795 i.vex.bytes[3] = 0x8;
3796 register_specifier = ~register_specifier & 0xf;
3797 }
3798 else
3799 {
3800 register_specifier = 0xf;
3801
3802 /* Encode upper 16 vector index register in the fourth byte of
3803 the EVEX prefix. */
3804 if (!(i.vrex & REX_X))
3805 i.vex.bytes[3] = 0x8;
3806 else
3807 vrex_used |= REX_X;
3808 }
3809
3810 switch ((i.tm.base_opcode >> 8) & 0xff)
3811 {
3812 case 0:
3813 implied_prefix = 0;
3814 break;
3815 case DATA_PREFIX_OPCODE:
3816 implied_prefix = 1;
3817 break;
3818 case REPE_PREFIX_OPCODE:
3819 implied_prefix = 2;
3820 break;
3821 case REPNE_PREFIX_OPCODE:
3822 implied_prefix = 3;
3823 break;
3824 default:
3825 abort ();
3826 }
3827
3828 /* 4 byte EVEX prefix. */
3829 i.vex.length = 4;
3830 i.vex.bytes[0] = 0x62;
3831
3832 /* mmmm bits. */
3833 switch (i.tm.opcode_modifier.vexopcode)
3834 {
3835 case VEX0F:
3836 m = 1;
3837 break;
3838 case VEX0F38:
3839 m = 2;
3840 break;
3841 case VEX0F3A:
3842 m = 3;
3843 break;
3844 default:
3845 abort ();
3846 break;
3847 }
3848
3849 /* The high 3 bits of the second EVEX byte are 1's compliment of RXB
3850 bits from REX. */
3851 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m;
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{
4019 switch (i.tm.opcode_modifier.hleprefixok)
4020 {
4021 default:
4022 abort ();
82c2def5 4023 case HLEPrefixNone:
165de32a
L
4024 as_bad (_("invalid instruction `%s' after `%s'"),
4025 i.tm.name, i.hle_prefix);
42164a71 4026 return 0;
82c2def5 4027 case HLEPrefixLock:
42164a71
L
4028 if (i.prefix[LOCK_PREFIX])
4029 return 1;
165de32a 4030 as_bad (_("missing `lock' with `%s'"), i.hle_prefix);
42164a71 4031 return 0;
82c2def5 4032 case HLEPrefixAny:
42164a71 4033 return 1;
82c2def5 4034 case HLEPrefixRelease:
42164a71
L
4035 if (i.prefix[HLE_PREFIX] != XRELEASE_PREFIX_OPCODE)
4036 {
4037 as_bad (_("instruction `%s' after `xacquire' not allowed"),
4038 i.tm.name);
4039 return 0;
4040 }
8dc0818e 4041 if (i.mem_operands == 0 || !(i.flags[i.operands - 1] & Operand_Mem))
42164a71
L
4042 {
4043 as_bad (_("memory destination needed for instruction `%s'"
4044 " after `xrelease'"), i.tm.name);
4045 return 0;
4046 }
4047 return 1;
4048 }
4049}
4050
b6f8c7c4
L
4051/* Try the shortest encoding by shortening operand size. */
4052
4053static void
4054optimize_encoding (void)
4055{
a0a1771e 4056 unsigned int j;
b6f8c7c4
L
4057
4058 if (optimize_for_space
72aea328 4059 && !is_any_vex_encoding (&i.tm)
b6f8c7c4
L
4060 && i.reg_operands == 1
4061 && i.imm_operands == 1
4062 && !i.types[1].bitfield.byte
4063 && i.op[0].imms->X_op == O_constant
4064 && fits_in_imm7 (i.op[0].imms->X_add_number)
72aea328 4065 && (i.tm.base_opcode == 0xa8
b6f8c7c4
L
4066 || (i.tm.base_opcode == 0xf6
4067 && i.tm.extension_opcode == 0x0)))
4068 {
4069 /* Optimize: -Os:
4070 test $imm7, %r64/%r32/%r16 -> test $imm7, %r8
4071 */
4072 unsigned int base_regnum = i.op[1].regs->reg_num;
4073 if (flag_code == CODE_64BIT || base_regnum < 4)
4074 {
4075 i.types[1].bitfield.byte = 1;
4076 /* Ignore the suffix. */
4077 i.suffix = 0;
7697afb6
JB
4078 /* Convert to byte registers. */
4079 if (i.types[1].bitfield.word)
4080 j = 16;
4081 else if (i.types[1].bitfield.dword)
4082 j = 32;
4083 else
4084 j = 48;
4085 if (!(i.op[1].regs->reg_flags & RegRex) && base_regnum < 4)
4086 j += 8;
4087 i.op[1].regs -= j;
b6f8c7c4
L
4088 }
4089 }
4090 else if (flag_code == CODE_64BIT
72aea328 4091 && !is_any_vex_encoding (&i.tm)
d3d50934
L
4092 && ((i.types[1].bitfield.qword
4093 && i.reg_operands == 1
b6f8c7c4
L
4094 && i.imm_operands == 1
4095 && i.op[0].imms->X_op == O_constant
507916b8 4096 && ((i.tm.base_opcode == 0xb8
b6f8c7c4
L
4097 && i.tm.extension_opcode == None
4098 && fits_in_unsigned_long (i.op[0].imms->X_add_number))
4099 || (fits_in_imm31 (i.op[0].imms->X_add_number)
72aea328
JB
4100 && ((i.tm.base_opcode == 0x24
4101 || i.tm.base_opcode == 0xa8)
b6f8c7c4
L
4102 || (i.tm.base_opcode == 0x80
4103 && i.tm.extension_opcode == 0x4)
4104 || ((i.tm.base_opcode == 0xf6
507916b8 4105 || (i.tm.base_opcode | 1) == 0xc7)
b8364fa7
JB
4106 && i.tm.extension_opcode == 0x0)))
4107 || (fits_in_imm7 (i.op[0].imms->X_add_number)
4108 && i.tm.base_opcode == 0x83
4109 && i.tm.extension_opcode == 0x4)))
d3d50934
L
4110 || (i.types[0].bitfield.qword
4111 && ((i.reg_operands == 2
4112 && i.op[0].regs == i.op[1].regs
72aea328
JB
4113 && (i.tm.base_opcode == 0x30
4114 || i.tm.base_opcode == 0x28))
d3d50934
L
4115 || (i.reg_operands == 1
4116 && i.operands == 1
72aea328 4117 && i.tm.base_opcode == 0x30)))))
b6f8c7c4
L
4118 {
4119 /* Optimize: -O:
4120 andq $imm31, %r64 -> andl $imm31, %r32
b8364fa7 4121 andq $imm7, %r64 -> andl $imm7, %r32
b6f8c7c4
L
4122 testq $imm31, %r64 -> testl $imm31, %r32
4123 xorq %r64, %r64 -> xorl %r32, %r32
4124 subq %r64, %r64 -> subl %r32, %r32
4125 movq $imm31, %r64 -> movl $imm31, %r32
4126 movq $imm32, %r64 -> movl $imm32, %r32
4127 */
4128 i.tm.opcode_modifier.norex64 = 1;
507916b8 4129 if (i.tm.base_opcode == 0xb8 || (i.tm.base_opcode | 1) == 0xc7)
b6f8c7c4
L
4130 {
4131 /* Handle
4132 movq $imm31, %r64 -> movl $imm31, %r32
4133 movq $imm32, %r64 -> movl $imm32, %r32
4134 */
4135 i.tm.operand_types[0].bitfield.imm32 = 1;
4136 i.tm.operand_types[0].bitfield.imm32s = 0;
4137 i.tm.operand_types[0].bitfield.imm64 = 0;
4138 i.types[0].bitfield.imm32 = 1;
4139 i.types[0].bitfield.imm32s = 0;
4140 i.types[0].bitfield.imm64 = 0;
4141 i.types[1].bitfield.dword = 1;
4142 i.types[1].bitfield.qword = 0;
507916b8 4143 if ((i.tm.base_opcode | 1) == 0xc7)
b6f8c7c4
L
4144 {
4145 /* Handle
4146 movq $imm31, %r64 -> movl $imm31, %r32
4147 */
507916b8 4148 i.tm.base_opcode = 0xb8;
b6f8c7c4 4149 i.tm.extension_opcode = None;
507916b8 4150 i.tm.opcode_modifier.w = 0;
b6f8c7c4
L
4151 i.tm.opcode_modifier.modrm = 0;
4152 }
4153 }
4154 }
5641ec01
JB
4155 else if (optimize > 1
4156 && !optimize_for_space
72aea328 4157 && !is_any_vex_encoding (&i.tm)
5641ec01
JB
4158 && i.reg_operands == 2
4159 && i.op[0].regs == i.op[1].regs
4160 && ((i.tm.base_opcode & ~(Opcode_D | 1)) == 0x8
4161 || (i.tm.base_opcode & ~(Opcode_D | 1)) == 0x20)
4162 && (flag_code != CODE_64BIT || !i.types[0].bitfield.dword))
4163 {
4164 /* Optimize: -O2:
4165 andb %rN, %rN -> testb %rN, %rN
4166 andw %rN, %rN -> testw %rN, %rN
4167 andq %rN, %rN -> testq %rN, %rN
4168 orb %rN, %rN -> testb %rN, %rN
4169 orw %rN, %rN -> testw %rN, %rN
4170 orq %rN, %rN -> testq %rN, %rN
4171
4172 and outside of 64-bit mode
4173
4174 andl %rN, %rN -> testl %rN, %rN
4175 orl %rN, %rN -> testl %rN, %rN
4176 */
4177 i.tm.base_opcode = 0x84 | (i.tm.base_opcode & 1);
4178 }
99112332 4179 else if (i.reg_operands == 3
b6f8c7c4
L
4180 && i.op[0].regs == i.op[1].regs
4181 && !i.types[2].bitfield.xmmword
4182 && (i.tm.opcode_modifier.vex
7a69eac3 4183 || ((!i.mask || i.mask->zeroing)
b6f8c7c4 4184 && !i.rounding
e771e7c9 4185 && is_evex_encoding (&i.tm)
80c34c38 4186 && (i.vec_encoding != vex_encoding_evex
dd22218c 4187 || cpu_arch_isa_flags.bitfield.cpuavx512vl
80c34c38 4188 || i.tm.cpu_flags.bitfield.cpuavx512vl
7091c612 4189 || (i.tm.operand_types[2].bitfield.zmmword
dd22218c 4190 && i.types[2].bitfield.ymmword))))
b6f8c7c4
L
4191 && ((i.tm.base_opcode == 0x55
4192 || i.tm.base_opcode == 0x6655
4193 || i.tm.base_opcode == 0x66df
4194 || i.tm.base_opcode == 0x57
4195 || i.tm.base_opcode == 0x6657
8305403a
L
4196 || i.tm.base_opcode == 0x66ef
4197 || i.tm.base_opcode == 0x66f8
4198 || i.tm.base_opcode == 0x66f9
4199 || i.tm.base_opcode == 0x66fa
1424ad86
JB
4200 || i.tm.base_opcode == 0x66fb
4201 || i.tm.base_opcode == 0x42
4202 || i.tm.base_opcode == 0x6642
4203 || i.tm.base_opcode == 0x47
4204 || i.tm.base_opcode == 0x6647)
b6f8c7c4
L
4205 && i.tm.extension_opcode == None))
4206 {
99112332 4207 /* Optimize: -O1:
8305403a
L
4208 VOP, one of vandnps, vandnpd, vxorps, vxorpd, vpsubb, vpsubd,
4209 vpsubq and vpsubw:
b6f8c7c4
L
4210 EVEX VOP %zmmM, %zmmM, %zmmN
4211 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4212 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4213 EVEX VOP %ymmM, %ymmM, %ymmN
4214 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4215 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4216 VEX VOP %ymmM, %ymmM, %ymmN
4217 -> VEX VOP %xmmM, %xmmM, %xmmN
4218 VOP, one of vpandn and vpxor:
4219 VEX VOP %ymmM, %ymmM, %ymmN
4220 -> VEX VOP %xmmM, %xmmM, %xmmN
4221 VOP, one of vpandnd and vpandnq:
4222 EVEX VOP %zmmM, %zmmM, %zmmN
4223 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4224 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4225 EVEX VOP %ymmM, %ymmM, %ymmN
4226 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4227 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4228 VOP, one of vpxord and vpxorq:
4229 EVEX VOP %zmmM, %zmmM, %zmmN
4230 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4231 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4232 EVEX VOP %ymmM, %ymmM, %ymmN
4233 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4234 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
1424ad86
JB
4235 VOP, one of kxord and kxorq:
4236 VEX VOP %kM, %kM, %kN
4237 -> VEX kxorw %kM, %kM, %kN
4238 VOP, one of kandnd and kandnq:
4239 VEX VOP %kM, %kM, %kN
4240 -> VEX kandnw %kM, %kM, %kN
b6f8c7c4 4241 */
e771e7c9 4242 if (is_evex_encoding (&i.tm))
b6f8c7c4 4243 {
7b1d7ca1 4244 if (i.vec_encoding != vex_encoding_evex)
b6f8c7c4
L
4245 {
4246 i.tm.opcode_modifier.vex = VEX128;
4247 i.tm.opcode_modifier.vexw = VEXW0;
4248 i.tm.opcode_modifier.evex = 0;
4249 }
7b1d7ca1 4250 else if (optimize > 1)
dd22218c
L
4251 i.tm.opcode_modifier.evex = EVEX128;
4252 else
4253 return;
b6f8c7c4 4254 }
f74a6307 4255 else if (i.tm.operand_types[0].bitfield.class == RegMask)
1424ad86
JB
4256 {
4257 i.tm.base_opcode &= 0xff;
4258 i.tm.opcode_modifier.vexw = VEXW0;
4259 }
b6f8c7c4
L
4260 else
4261 i.tm.opcode_modifier.vex = VEX128;
4262
4263 if (i.tm.opcode_modifier.vex)
4264 for (j = 0; j < 3; j++)
4265 {
4266 i.types[j].bitfield.xmmword = 1;
4267 i.types[j].bitfield.ymmword = 0;
4268 }
4269 }
392a5972 4270 else if (i.vec_encoding != vex_encoding_evex
97ed31ae 4271 && !i.types[0].bitfield.zmmword
392a5972 4272 && !i.types[1].bitfield.zmmword
97ed31ae 4273 && !i.mask
a0a1771e 4274 && !i.broadcast
97ed31ae 4275 && is_evex_encoding (&i.tm)
392a5972
L
4276 && ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0x666f
4277 || (i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf36f
a0a1771e
JB
4278 || (i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf26f
4279 || (i.tm.base_opcode & ~4) == 0x66db
4280 || (i.tm.base_opcode & ~4) == 0x66eb)
97ed31ae
L
4281 && i.tm.extension_opcode == None)
4282 {
4283 /* Optimize: -O1:
4284 VOP, one of vmovdqa32, vmovdqa64, vmovdqu8, vmovdqu16,
4285 vmovdqu32 and vmovdqu64:
4286 EVEX VOP %xmmM, %xmmN
4287 -> VEX vmovdqa|vmovdqu %xmmM, %xmmN (M and N < 16)
4288 EVEX VOP %ymmM, %ymmN
4289 -> VEX vmovdqa|vmovdqu %ymmM, %ymmN (M and N < 16)
4290 EVEX VOP %xmmM, mem
4291 -> VEX vmovdqa|vmovdqu %xmmM, mem (M < 16)
4292 EVEX VOP %ymmM, mem
4293 -> VEX vmovdqa|vmovdqu %ymmM, mem (M < 16)
4294 EVEX VOP mem, %xmmN
4295 -> VEX mvmovdqa|vmovdquem, %xmmN (N < 16)
4296 EVEX VOP mem, %ymmN
4297 -> VEX vmovdqa|vmovdqu mem, %ymmN (N < 16)
a0a1771e
JB
4298 VOP, one of vpand, vpandn, vpor, vpxor:
4299 EVEX VOP{d,q} %xmmL, %xmmM, %xmmN
4300 -> VEX VOP %xmmL, %xmmM, %xmmN (L, M, and N < 16)
4301 EVEX VOP{d,q} %ymmL, %ymmM, %ymmN
4302 -> VEX VOP %ymmL, %ymmM, %ymmN (L, M, and N < 16)
4303 EVEX VOP{d,q} mem, %xmmM, %xmmN
4304 -> VEX VOP mem, %xmmM, %xmmN (M and N < 16)
4305 EVEX VOP{d,q} mem, %ymmM, %ymmN
4306 -> VEX VOP mem, %ymmM, %ymmN (M and N < 16)
97ed31ae 4307 */
a0a1771e 4308 for (j = 0; j < i.operands; j++)
392a5972
L
4309 if (operand_type_check (i.types[j], disp)
4310 && i.op[j].disps->X_op == O_constant)
4311 {
4312 /* Since the VEX prefix has 2 or 3 bytes, the EVEX prefix
4313 has 4 bytes, EVEX Disp8 has 1 byte and VEX Disp32 has 4
4314 bytes, we choose EVEX Disp8 over VEX Disp32. */
4315 int evex_disp8, vex_disp8;
4316 unsigned int memshift = i.memshift;
4317 offsetT n = i.op[j].disps->X_add_number;
4318
4319 evex_disp8 = fits_in_disp8 (n);
4320 i.memshift = 0;
4321 vex_disp8 = fits_in_disp8 (n);
4322 if (evex_disp8 != vex_disp8)
4323 {
4324 i.memshift = memshift;
4325 return;
4326 }
4327
4328 i.types[j].bitfield.disp8 = vex_disp8;
4329 break;
4330 }
4331 if ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf26f)
4332 i.tm.base_opcode ^= 0xf36f ^ 0xf26f;
97ed31ae
L
4333 i.tm.opcode_modifier.vex
4334 = i.types[0].bitfield.ymmword ? VEX256 : VEX128;
4335 i.tm.opcode_modifier.vexw = VEXW0;
79dec6b7
JB
4336 /* VPAND, VPOR, and VPXOR are commutative. */
4337 if (i.reg_operands == 3 && i.tm.base_opcode != 0x66df)
4338 i.tm.opcode_modifier.commutative = 1;
97ed31ae
L
4339 i.tm.opcode_modifier.evex = 0;
4340 i.tm.opcode_modifier.masking = 0;
a0a1771e 4341 i.tm.opcode_modifier.broadcast = 0;
97ed31ae
L
4342 i.tm.opcode_modifier.disp8memshift = 0;
4343 i.memshift = 0;
a0a1771e
JB
4344 if (j < i.operands)
4345 i.types[j].bitfield.disp8
4346 = fits_in_disp8 (i.op[j].disps->X_add_number);
97ed31ae 4347 }
b6f8c7c4
L
4348}
4349
ae531041
L
4350/* Return non-zero for load instruction. */
4351
4352static int
4353load_insn_p (void)
4354{
4355 unsigned int dest;
4356 int any_vex_p = is_any_vex_encoding (&i.tm);
4357 unsigned int base_opcode = i.tm.base_opcode | 1;
4358
4359 if (!any_vex_p)
4360 {
a09f656b 4361 /* Anysize insns: lea, invlpg, clflush, prefetchnta, prefetcht0,
4362 prefetcht1, prefetcht2, prefetchtw, bndmk, bndcl, bndcu, bndcn,
4363 bndstx, bndldx, prefetchwt1, clflushopt, clwb, cldemote. */
4364 if (i.tm.opcode_modifier.anysize)
ae531041
L
4365 return 0;
4366
a09f656b 4367 /* pop, popf, popa. */
4368 if (strcmp (i.tm.name, "pop") == 0
4369 || i.tm.base_opcode == 0x9d
4370 || i.tm.base_opcode == 0x61)
ae531041
L
4371 return 1;
4372
4373 /* movs, cmps, lods, scas. */
4374 if ((i.tm.base_opcode | 0xb) == 0xaf)
4375 return 1;
4376
a09f656b 4377 /* outs, xlatb. */
4378 if (base_opcode == 0x6f
4379 || i.tm.base_opcode == 0xd7)
ae531041 4380 return 1;
a09f656b 4381 /* NB: For AMD-specific insns with implicit memory operands,
4382 they're intentionally not covered. */
ae531041
L
4383 }
4384
4385 /* No memory operand. */
4386 if (!i.mem_operands)
4387 return 0;
4388
4389 if (any_vex_p)
4390 {
4391 /* vldmxcsr. */
4392 if (i.tm.base_opcode == 0xae
4393 && i.tm.opcode_modifier.vex
4394 && i.tm.opcode_modifier.vexopcode == VEX0F
4395 && i.tm.extension_opcode == 2)
4396 return 1;
4397 }
4398 else
4399 {
4400 /* test, not, neg, mul, imul, div, idiv. */
4401 if ((i.tm.base_opcode == 0xf6 || i.tm.base_opcode == 0xf7)
4402 && i.tm.extension_opcode != 1)
4403 return 1;
4404
4405 /* inc, dec. */
4406 if (base_opcode == 0xff && i.tm.extension_opcode <= 1)
4407 return 1;
4408
4409 /* add, or, adc, sbb, and, sub, xor, cmp. */
4410 if (i.tm.base_opcode >= 0x80 && i.tm.base_opcode <= 0x83)
4411 return 1;
4412
4413 /* bt, bts, btr, btc. */
4414 if (i.tm.base_opcode == 0xfba
4415 && (i.tm.extension_opcode >= 4 && i.tm.extension_opcode <= 7))
4416 return 1;
4417
4418 /* rol, ror, rcl, rcr, shl/sal, shr, sar. */
4419 if ((base_opcode == 0xc1
4420 || (i.tm.base_opcode >= 0xd0 && i.tm.base_opcode <= 0xd3))
4421 && i.tm.extension_opcode != 6)
4422 return 1;
4423
4424 /* cmpxchg8b, cmpxchg16b, xrstors. */
4425 if (i.tm.base_opcode == 0xfc7
4426 && (i.tm.extension_opcode == 1 || i.tm.extension_opcode == 3))
4427 return 1;
4428
4429 /* fxrstor, ldmxcsr, xrstor. */
4430 if (i.tm.base_opcode == 0xfae
4431 && (i.tm.extension_opcode == 1
4432 || i.tm.extension_opcode == 2
4433 || i.tm.extension_opcode == 5))
4434 return 1;
4435
4436 /* lgdt, lidt, lmsw. */
4437 if (i.tm.base_opcode == 0xf01
4438 && (i.tm.extension_opcode == 2
4439 || i.tm.extension_opcode == 3
4440 || i.tm.extension_opcode == 6))
4441 return 1;
4442
4443 /* vmptrld */
4444 if (i.tm.base_opcode == 0xfc7
4445 && i.tm.extension_opcode == 6)
4446 return 1;
4447
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
L
4770 /* Check if REP prefix is OK. */
4771 if (i.rep_prefix && !i.tm.opcode_modifier.repprefixok)
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
L
4780 if (i.prefix[LOCK_PREFIX]
4781 && (!i.tm.opcode_modifier.islockable
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
7a8655d2
JB
4790 /* Check for data size prefix on VEX/XOP/EVEX encoded insns. */
4791 if (i.prefix[DATA_PREFIX] && is_any_vex_encoding (&i.tm))
4792 {
4793 as_bad (_("data size prefix invalid with `%s'"), i.tm.name);
4794 return;
4795 }
4796
42164a71 4797 /* Check if HLE prefix is OK. */
165de32a 4798 if (i.hle_prefix && !check_hle ())
42164a71
L
4799 return;
4800
7e8b059b
L
4801 /* Check BND prefix. */
4802 if (i.bnd_prefix && !i.tm.opcode_modifier.bndprefixok)
4803 as_bad (_("expecting valid branch instruction after `bnd'"));
4804
04ef582a 4805 /* Check NOTRACK prefix. */
9fef80d6
L
4806 if (i.notrack_prefix && !i.tm.opcode_modifier.notrackprefixok)
4807 as_bad (_("expecting indirect branch instruction after `notrack'"));
04ef582a 4808
327e8c42
JB
4809 if (i.tm.cpu_flags.bitfield.cpumpx)
4810 {
4811 if (flag_code == CODE_64BIT && i.prefix[ADDR_PREFIX])
4812 as_bad (_("32-bit address isn't allowed in 64-bit MPX instructions."));
4813 else if (flag_code != CODE_16BIT
4814 ? i.prefix[ADDR_PREFIX]
4815 : i.mem_operands && !i.prefix[ADDR_PREFIX])
4816 as_bad (_("16-bit address isn't allowed in MPX instructions"));
4817 }
7e8b059b
L
4818
4819 /* Insert BND prefix. */
76d3a78a
JB
4820 if (add_bnd_prefix && i.tm.opcode_modifier.bndprefixok)
4821 {
4822 if (!i.prefix[BND_PREFIX])
4823 add_prefix (BND_PREFIX_OPCODE);
4824 else if (i.prefix[BND_PREFIX] != BND_PREFIX_OPCODE)
4825 {
4826 as_warn (_("replacing `rep'/`repe' prefix by `bnd'"));
4827 i.prefix[BND_PREFIX] = BND_PREFIX_OPCODE;
4828 }
4829 }
7e8b059b 4830
29b0f896 4831 /* Check string instruction segment overrides. */
51c8edf6 4832 if (i.tm.opcode_modifier.isstring >= IS_STRING_ES_OP0)
29b0f896 4833 {
51c8edf6 4834 gas_assert (i.mem_operands);
29b0f896 4835 if (!check_string ())
5dd0794d 4836 return;
fc0763e6 4837 i.disp_operands = 0;
29b0f896 4838 }
5dd0794d 4839
b6f8c7c4
L
4840 if (optimize && !i.no_optimize && i.tm.opcode_modifier.optimize)
4841 optimize_encoding ();
4842
29b0f896
AM
4843 if (!process_suffix ())
4844 return;
e413e4e9 4845
bc0844ae
L
4846 /* Update operand types. */
4847 for (j = 0; j < i.operands; j++)
4848 i.types[j] = operand_type_and (i.types[j], i.tm.operand_types[j]);
4849
29b0f896
AM
4850 /* Make still unresolved immediate matches conform to size of immediate
4851 given in i.suffix. */
4852 if (!finalize_imm ())
4853 return;
252b5132 4854
40fb9820 4855 if (i.types[0].bitfield.imm1)
29b0f896 4856 i.imm_operands = 0; /* kludge for shift insns. */
252b5132 4857
9afe6eb8
L
4858 /* We only need to check those implicit registers for instructions
4859 with 3 operands or less. */
4860 if (i.operands <= 3)
4861 for (j = 0; j < i.operands; j++)
75e5731b
JB
4862 if (i.types[j].bitfield.instance != InstanceNone
4863 && !i.types[j].bitfield.xmmword)
9afe6eb8 4864 i.reg_operands--;
40fb9820 4865
c0f3af97
L
4866 /* ImmExt should be processed after SSE2AVX. */
4867 if (!i.tm.opcode_modifier.sse2avx
4868 && i.tm.opcode_modifier.immext)
65da13b5 4869 process_immext ();
252b5132 4870
29b0f896
AM
4871 /* For insns with operands there are more diddles to do to the opcode. */
4872 if (i.operands)
4873 {
4874 if (!process_operands ())
4875 return;
4876 }
40fb9820 4877 else if (!quiet_warnings && i.tm.opcode_modifier.ugh)
29b0f896
AM
4878 {
4879 /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. */
4880 as_warn (_("translating to `%sp'"), i.tm.name);
4881 }
252b5132 4882
7a8655d2 4883 if (is_any_vex_encoding (&i.tm))
9e5e5283 4884 {
c1dc7af5 4885 if (!cpu_arch_flags.bitfield.cpui286)
9e5e5283 4886 {
c1dc7af5 4887 as_bad (_("instruction `%s' isn't supported outside of protected mode."),
9e5e5283
L
4888 i.tm.name);
4889 return;
4890 }
c0f3af97 4891
9e5e5283
L
4892 if (i.tm.opcode_modifier.vex)
4893 build_vex_prefix (t);
4894 else
4895 build_evex_prefix ();
4896 }
43234a1e 4897
5dd85c99
SP
4898 /* Handle conversion of 'int $3' --> special int3 insn. XOP or FMA4
4899 instructions may define INT_OPCODE as well, so avoid this corner
4900 case for those instructions that use MODRM. */
4901 if (i.tm.base_opcode == INT_OPCODE
a6461c02
SP
4902 && !i.tm.opcode_modifier.modrm
4903 && i.op[0].imms->X_add_number == 3)
29b0f896
AM
4904 {
4905 i.tm.base_opcode = INT3_OPCODE;
4906 i.imm_operands = 0;
4907 }
252b5132 4908
0cfa3eb3
JB
4909 if ((i.tm.opcode_modifier.jump == JUMP
4910 || i.tm.opcode_modifier.jump == JUMP_BYTE
4911 || i.tm.opcode_modifier.jump == JUMP_DWORD)
29b0f896
AM
4912 && i.op[0].disps->X_op == O_constant)
4913 {
4914 /* Convert "jmp constant" (and "call constant") to a jump (call) to
4915 the absolute address given by the constant. Since ix86 jumps and
4916 calls are pc relative, we need to generate a reloc. */
4917 i.op[0].disps->X_add_symbol = &abs_symbol;
4918 i.op[0].disps->X_op = O_symbol;
4919 }
252b5132 4920
29b0f896
AM
4921 /* For 8 bit registers we need an empty rex prefix. Also if the
4922 instruction already has a prefix, we need to convert old
4923 registers to new ones. */
773f551c 4924
bab6aec1 4925 if ((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte
29b0f896 4926 && (i.op[0].regs->reg_flags & RegRex64) != 0)
bab6aec1 4927 || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte
29b0f896 4928 && (i.op[1].regs->reg_flags & RegRex64) != 0)
bab6aec1
JB
4929 || (((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte)
4930 || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte))
29b0f896
AM
4931 && i.rex != 0))
4932 {
4933 int x;
726c5dcd 4934
29b0f896
AM
4935 i.rex |= REX_OPCODE;
4936 for (x = 0; x < 2; x++)
4937 {
4938 /* Look for 8 bit operand that uses old registers. */
bab6aec1 4939 if (i.types[x].bitfield.class == Reg && i.types[x].bitfield.byte
29b0f896 4940 && (i.op[x].regs->reg_flags & RegRex64) == 0)
773f551c 4941 {
3f93af61 4942 gas_assert (!(i.op[x].regs->reg_flags & RegRex));
29b0f896
AM
4943 /* In case it is "hi" register, give up. */
4944 if (i.op[x].regs->reg_num > 3)
a540244d 4945 as_bad (_("can't encode register '%s%s' in an "
4eed87de 4946 "instruction requiring REX prefix."),
a540244d 4947 register_prefix, i.op[x].regs->reg_name);
773f551c 4948
29b0f896
AM
4949 /* Otherwise it is equivalent to the extended register.
4950 Since the encoding doesn't change this is merely
4951 cosmetic cleanup for debug output. */
4952
4953 i.op[x].regs = i.op[x].regs + 8;
773f551c 4954 }
29b0f896
AM
4955 }
4956 }
773f551c 4957
6b6b6807
L
4958 if (i.rex == 0 && i.rex_encoding)
4959 {
4960 /* Check if we can add a REX_OPCODE byte. Look for 8 bit operand
3f93af61 4961 that uses legacy register. If it is "hi" register, don't add
6b6b6807
L
4962 the REX_OPCODE byte. */
4963 int x;
4964 for (x = 0; x < 2; x++)
bab6aec1 4965 if (i.types[x].bitfield.class == Reg
6b6b6807
L
4966 && i.types[x].bitfield.byte
4967 && (i.op[x].regs->reg_flags & RegRex64) == 0
4968 && i.op[x].regs->reg_num > 3)
4969 {
3f93af61 4970 gas_assert (!(i.op[x].regs->reg_flags & RegRex));
6b6b6807
L
4971 i.rex_encoding = FALSE;
4972 break;
4973 }
4974
4975 if (i.rex_encoding)
4976 i.rex = REX_OPCODE;
4977 }
4978
7ab9ffdd 4979 if (i.rex != 0)
29b0f896
AM
4980 add_prefix (REX_OPCODE | i.rex);
4981
ae531041
L
4982 insert_lfence_before ();
4983
29b0f896
AM
4984 /* We are ready to output the insn. */
4985 output_insn ();
e379e5f3 4986
ae531041
L
4987 insert_lfence_after ();
4988
e379e5f3
L
4989 last_insn.seg = now_seg;
4990
4991 if (i.tm.opcode_modifier.isprefix)
4992 {
4993 last_insn.kind = last_insn_prefix;
4994 last_insn.name = i.tm.name;
4995 last_insn.file = as_where (&last_insn.line);
4996 }
4997 else
4998 last_insn.kind = last_insn_other;
29b0f896
AM
4999}
5000
5001static char *
e3bb37b5 5002parse_insn (char *line, char *mnemonic)
29b0f896
AM
5003{
5004 char *l = line;
5005 char *token_start = l;
5006 char *mnem_p;
5c6af06e 5007 int supported;
d3ce72d0 5008 const insn_template *t;
b6169b20 5009 char *dot_p = NULL;
29b0f896 5010
29b0f896
AM
5011 while (1)
5012 {
5013 mnem_p = mnemonic;
5014 while ((*mnem_p = mnemonic_chars[(unsigned char) *l]) != 0)
5015 {
b6169b20
L
5016 if (*mnem_p == '.')
5017 dot_p = mnem_p;
29b0f896
AM
5018 mnem_p++;
5019 if (mnem_p >= mnemonic + MAX_MNEM_SIZE)
45288df1 5020 {
29b0f896
AM
5021 as_bad (_("no such instruction: `%s'"), token_start);
5022 return NULL;
5023 }
5024 l++;
5025 }
5026 if (!is_space_char (*l)
5027 && *l != END_OF_INSN
e44823cf
JB
5028 && (intel_syntax
5029 || (*l != PREFIX_SEPARATOR
5030 && *l != ',')))
29b0f896
AM
5031 {
5032 as_bad (_("invalid character %s in mnemonic"),
5033 output_invalid (*l));
5034 return NULL;
5035 }
5036 if (token_start == l)
5037 {
e44823cf 5038 if (!intel_syntax && *l == PREFIX_SEPARATOR)
29b0f896
AM
5039 as_bad (_("expecting prefix; got nothing"));
5040 else
5041 as_bad (_("expecting mnemonic; got nothing"));
5042 return NULL;
5043 }
45288df1 5044
29b0f896 5045 /* Look up instruction (or prefix) via hash table. */
d3ce72d0 5046 current_templates = (const templates *) hash_find (op_hash, mnemonic);
47926f60 5047
29b0f896
AM
5048 if (*l != END_OF_INSN
5049 && (!is_space_char (*l) || l[1] != END_OF_INSN)
5050 && current_templates
40fb9820 5051 && current_templates->start->opcode_modifier.isprefix)
29b0f896 5052 {
c6fb90c8 5053 if (!cpu_flags_check_cpu64 (current_templates->start->cpu_flags))
2dd88dca
JB
5054 {
5055 as_bad ((flag_code != CODE_64BIT
5056 ? _("`%s' is only supported in 64-bit mode")
5057 : _("`%s' is not supported in 64-bit mode")),
5058 current_templates->start->name);
5059 return NULL;
5060 }
29b0f896
AM
5061 /* If we are in 16-bit mode, do not allow addr16 or data16.
5062 Similarly, in 32-bit mode, do not allow addr32 or data32. */
673fe0f0
JB
5063 if ((current_templates->start->opcode_modifier.size == SIZE16
5064 || current_templates->start->opcode_modifier.size == SIZE32)
29b0f896 5065 && flag_code != CODE_64BIT
673fe0f0 5066 && ((current_templates->start->opcode_modifier.size == SIZE32)
29b0f896
AM
5067 ^ (flag_code == CODE_16BIT)))
5068 {
5069 as_bad (_("redundant %s prefix"),
5070 current_templates->start->name);
5071 return NULL;
45288df1 5072 }
86fa6981 5073 if (current_templates->start->opcode_length == 0)
29b0f896 5074 {
86fa6981
L
5075 /* Handle pseudo prefixes. */
5076 switch (current_templates->start->base_opcode)
5077 {
5078 case 0x0:
5079 /* {disp8} */
5080 i.disp_encoding = disp_encoding_8bit;
5081 break;
5082 case 0x1:
5083 /* {disp32} */
5084 i.disp_encoding = disp_encoding_32bit;
5085 break;
5086 case 0x2:
5087 /* {load} */
5088 i.dir_encoding = dir_encoding_load;
5089 break;
5090 case 0x3:
5091 /* {store} */
5092 i.dir_encoding = dir_encoding_store;
5093 break;
5094 case 0x4:
42e04b36
L
5095 /* {vex} */
5096 i.vec_encoding = vex_encoding_vex;
86fa6981
L
5097 break;
5098 case 0x5:
5099 /* {vex3} */
5100 i.vec_encoding = vex_encoding_vex3;
5101 break;
5102 case 0x6:
5103 /* {evex} */
5104 i.vec_encoding = vex_encoding_evex;
5105 break;
6b6b6807
L
5106 case 0x7:
5107 /* {rex} */
5108 i.rex_encoding = TRUE;
5109 break;
b6f8c7c4
L
5110 case 0x8:
5111 /* {nooptimize} */
5112 i.no_optimize = TRUE;
5113 break;
86fa6981
L
5114 default:
5115 abort ();
5116 }
5117 }
5118 else
5119 {
5120 /* Add prefix, checking for repeated prefixes. */
4e9ac44a 5121 switch (add_prefix (current_templates->start->base_opcode))
86fa6981 5122 {
4e9ac44a
L
5123 case PREFIX_EXIST:
5124 return NULL;
5125 case PREFIX_DS:
d777820b 5126 if (current_templates->start->cpu_flags.bitfield.cpuibt)
4e9ac44a
L
5127 i.notrack_prefix = current_templates->start->name;
5128 break;
5129 case PREFIX_REP:
5130 if (current_templates->start->cpu_flags.bitfield.cpuhle)
5131 i.hle_prefix = current_templates->start->name;
5132 else if (current_templates->start->cpu_flags.bitfield.cpumpx)
5133 i.bnd_prefix = current_templates->start->name;
5134 else
5135 i.rep_prefix = current_templates->start->name;
5136 break;
5137 default:
5138 break;
86fa6981 5139 }
29b0f896
AM
5140 }
5141 /* Skip past PREFIX_SEPARATOR and reset token_start. */
5142 token_start = ++l;
5143 }
5144 else
5145 break;
5146 }
45288df1 5147
30a55f88 5148 if (!current_templates)
b6169b20 5149 {
07d5e953
JB
5150 /* Deprecated functionality (new code should use pseudo-prefixes instead):
5151 Check if we should swap operand or force 32bit displacement in
f8a5c266 5152 encoding. */
30a55f88 5153 if (mnem_p - 2 == dot_p && dot_p[1] == 's')
64c49ab3 5154 i.dir_encoding = dir_encoding_swap;
8d63c93e 5155 else if (mnem_p - 3 == dot_p
a501d77e
L
5156 && dot_p[1] == 'd'
5157 && dot_p[2] == '8')
5158 i.disp_encoding = disp_encoding_8bit;
8d63c93e 5159 else if (mnem_p - 4 == dot_p
f8a5c266
L
5160 && dot_p[1] == 'd'
5161 && dot_p[2] == '3'
5162 && dot_p[3] == '2')
a501d77e 5163 i.disp_encoding = disp_encoding_32bit;
30a55f88
L
5164 else
5165 goto check_suffix;
5166 mnem_p = dot_p;
5167 *dot_p = '\0';
d3ce72d0 5168 current_templates = (const templates *) hash_find (op_hash, mnemonic);
b6169b20
L
5169 }
5170
29b0f896
AM
5171 if (!current_templates)
5172 {
dc1e8a47 5173 check_suffix:
1c529385 5174 if (mnem_p > mnemonic)
29b0f896 5175 {
1c529385
LH
5176 /* See if we can get a match by trimming off a suffix. */
5177 switch (mnem_p[-1])
29b0f896 5178 {
1c529385
LH
5179 case WORD_MNEM_SUFFIX:
5180 if (intel_syntax && (intel_float_operand (mnemonic) & 2))
29b0f896
AM
5181 i.suffix = SHORT_MNEM_SUFFIX;
5182 else
1c529385
LH
5183 /* Fall through. */
5184 case BYTE_MNEM_SUFFIX:
5185 case QWORD_MNEM_SUFFIX:
5186 i.suffix = mnem_p[-1];
29b0f896 5187 mnem_p[-1] = '\0';
d3ce72d0 5188 current_templates = (const templates *) hash_find (op_hash,
1c529385
LH
5189 mnemonic);
5190 break;
5191 case SHORT_MNEM_SUFFIX:
5192 case LONG_MNEM_SUFFIX:
5193 if (!intel_syntax)
5194 {
5195 i.suffix = mnem_p[-1];
5196 mnem_p[-1] = '\0';
5197 current_templates = (const templates *) hash_find (op_hash,
5198 mnemonic);
5199 }
5200 break;
5201
5202 /* Intel Syntax. */
5203 case 'd':
5204 if (intel_syntax)
5205 {
5206 if (intel_float_operand (mnemonic) == 1)
5207 i.suffix = SHORT_MNEM_SUFFIX;
5208 else
5209 i.suffix = LONG_MNEM_SUFFIX;
5210 mnem_p[-1] = '\0';
5211 current_templates = (const templates *) hash_find (op_hash,
5212 mnemonic);
5213 }
5214 break;
29b0f896 5215 }
29b0f896 5216 }
1c529385 5217
29b0f896
AM
5218 if (!current_templates)
5219 {
5220 as_bad (_("no such instruction: `%s'"), token_start);
5221 return NULL;
5222 }
5223 }
252b5132 5224
0cfa3eb3
JB
5225 if (current_templates->start->opcode_modifier.jump == JUMP
5226 || current_templates->start->opcode_modifier.jump == JUMP_BYTE)
29b0f896
AM
5227 {
5228 /* Check for a branch hint. We allow ",pt" and ",pn" for
5229 predict taken and predict not taken respectively.
5230 I'm not sure that branch hints actually do anything on loop
5231 and jcxz insns (JumpByte) for current Pentium4 chips. They
5232 may work in the future and it doesn't hurt to accept them
5233 now. */
5234 if (l[0] == ',' && l[1] == 'p')
5235 {
5236 if (l[2] == 't')
5237 {
5238 if (!add_prefix (DS_PREFIX_OPCODE))
5239 return NULL;
5240 l += 3;
5241 }
5242 else if (l[2] == 'n')
5243 {
5244 if (!add_prefix (CS_PREFIX_OPCODE))
5245 return NULL;
5246 l += 3;
5247 }
5248 }
5249 }
5250 /* Any other comma loses. */
5251 if (*l == ',')
5252 {
5253 as_bad (_("invalid character %s in mnemonic"),
5254 output_invalid (*l));
5255 return NULL;
5256 }
252b5132 5257
29b0f896 5258 /* Check if instruction is supported on specified architecture. */
5c6af06e
JB
5259 supported = 0;
5260 for (t = current_templates->start; t < current_templates->end; ++t)
5261 {
c0f3af97
L
5262 supported |= cpu_flags_match (t);
5263 if (supported == CPU_FLAGS_PERFECT_MATCH)
548d0ee6
JB
5264 {
5265 if (!cpu_arch_flags.bitfield.cpui386 && (flag_code != CODE_16BIT))
5266 as_warn (_("use .code16 to ensure correct addressing mode"));
3629bb00 5267
548d0ee6
JB
5268 return l;
5269 }
29b0f896 5270 }
3629bb00 5271
548d0ee6
JB
5272 if (!(supported & CPU_FLAGS_64BIT_MATCH))
5273 as_bad (flag_code == CODE_64BIT
5274 ? _("`%s' is not supported in 64-bit mode")
5275 : _("`%s' is only supported in 64-bit mode"),
5276 current_templates->start->name);
5277 else
5278 as_bad (_("`%s' is not supported on `%s%s'"),
5279 current_templates->start->name,
5280 cpu_arch_name ? cpu_arch_name : default_arch,
5281 cpu_sub_arch_name ? cpu_sub_arch_name : "");
252b5132 5282
548d0ee6 5283 return NULL;
29b0f896 5284}
252b5132 5285
29b0f896 5286static char *
e3bb37b5 5287parse_operands (char *l, const char *mnemonic)
29b0f896
AM
5288{
5289 char *token_start;
3138f287 5290
29b0f896
AM
5291 /* 1 if operand is pending after ','. */
5292 unsigned int expecting_operand = 0;
252b5132 5293
29b0f896
AM
5294 /* Non-zero if operand parens not balanced. */
5295 unsigned int paren_not_balanced;
5296
5297 while (*l != END_OF_INSN)
5298 {
5299 /* Skip optional white space before operand. */
5300 if (is_space_char (*l))
5301 ++l;
d02603dc 5302 if (!is_operand_char (*l) && *l != END_OF_INSN && *l != '"')
29b0f896
AM
5303 {
5304 as_bad (_("invalid character %s before operand %d"),
5305 output_invalid (*l),
5306 i.operands + 1);
5307 return NULL;
5308 }
d02603dc 5309 token_start = l; /* After white space. */
29b0f896
AM
5310 paren_not_balanced = 0;
5311 while (paren_not_balanced || *l != ',')
5312 {
5313 if (*l == END_OF_INSN)
5314 {
5315 if (paren_not_balanced)
5316 {
5317 if (!intel_syntax)
5318 as_bad (_("unbalanced parenthesis in operand %d."),
5319 i.operands + 1);
5320 else
5321 as_bad (_("unbalanced brackets in operand %d."),
5322 i.operands + 1);
5323 return NULL;
5324 }
5325 else
5326 break; /* we are done */
5327 }
d02603dc 5328 else if (!is_operand_char (*l) && !is_space_char (*l) && *l != '"')
29b0f896
AM
5329 {
5330 as_bad (_("invalid character %s in operand %d"),
5331 output_invalid (*l),
5332 i.operands + 1);
5333 return NULL;
5334 }
5335 if (!intel_syntax)
5336 {
5337 if (*l == '(')
5338 ++paren_not_balanced;
5339 if (*l == ')')
5340 --paren_not_balanced;
5341 }
5342 else
5343 {
5344 if (*l == '[')
5345 ++paren_not_balanced;
5346 if (*l == ']')
5347 --paren_not_balanced;
5348 }
5349 l++;
5350 }
5351 if (l != token_start)
5352 { /* Yes, we've read in another operand. */
5353 unsigned int operand_ok;
5354 this_operand = i.operands++;
5355 if (i.operands > MAX_OPERANDS)
5356 {
5357 as_bad (_("spurious operands; (%d operands/instruction max)"),
5358 MAX_OPERANDS);
5359 return NULL;
5360 }
9d46ce34 5361 i.types[this_operand].bitfield.unspecified = 1;
29b0f896
AM
5362 /* Now parse operand adding info to 'i' as we go along. */
5363 END_STRING_AND_SAVE (l);
5364
1286ab78
L
5365 if (i.mem_operands > 1)
5366 {
5367 as_bad (_("too many memory references for `%s'"),
5368 mnemonic);
5369 return 0;
5370 }
5371
29b0f896
AM
5372 if (intel_syntax)
5373 operand_ok =
5374 i386_intel_operand (token_start,
5375 intel_float_operand (mnemonic));
5376 else
a7619375 5377 operand_ok = i386_att_operand (token_start);
29b0f896
AM
5378
5379 RESTORE_END_STRING (l);
5380 if (!operand_ok)
5381 return NULL;
5382 }
5383 else
5384 {
5385 if (expecting_operand)
5386 {
5387 expecting_operand_after_comma:
5388 as_bad (_("expecting operand after ','; got nothing"));
5389 return NULL;
5390 }
5391 if (*l == ',')
5392 {
5393 as_bad (_("expecting operand before ','; got nothing"));
5394 return NULL;
5395 }
5396 }
7f3f1ea2 5397
29b0f896
AM
5398 /* Now *l must be either ',' or END_OF_INSN. */
5399 if (*l == ',')
5400 {
5401 if (*++l == END_OF_INSN)
5402 {
5403 /* Just skip it, if it's \n complain. */
5404 goto expecting_operand_after_comma;
5405 }
5406 expecting_operand = 1;
5407 }
5408 }
5409 return l;
5410}
7f3f1ea2 5411
050dfa73 5412static void
4d456e3d 5413swap_2_operands (int xchg1, int xchg2)
050dfa73
MM
5414{
5415 union i386_op temp_op;
40fb9820 5416 i386_operand_type temp_type;
c48dadc9 5417 unsigned int temp_flags;
050dfa73 5418 enum bfd_reloc_code_real temp_reloc;
4eed87de 5419
050dfa73
MM
5420 temp_type = i.types[xchg2];
5421 i.types[xchg2] = i.types[xchg1];
5422 i.types[xchg1] = temp_type;
c48dadc9
JB
5423
5424 temp_flags = i.flags[xchg2];
5425 i.flags[xchg2] = i.flags[xchg1];
5426 i.flags[xchg1] = temp_flags;
5427
050dfa73
MM
5428 temp_op = i.op[xchg2];
5429 i.op[xchg2] = i.op[xchg1];
5430 i.op[xchg1] = temp_op;
c48dadc9 5431
050dfa73
MM
5432 temp_reloc = i.reloc[xchg2];
5433 i.reloc[xchg2] = i.reloc[xchg1];
5434 i.reloc[xchg1] = temp_reloc;
43234a1e
L
5435
5436 if (i.mask)
5437 {
5438 if (i.mask->operand == xchg1)
5439 i.mask->operand = xchg2;
5440 else if (i.mask->operand == xchg2)
5441 i.mask->operand = xchg1;
5442 }
5443 if (i.broadcast)
5444 {
5445 if (i.broadcast->operand == xchg1)
5446 i.broadcast->operand = xchg2;
5447 else if (i.broadcast->operand == xchg2)
5448 i.broadcast->operand = xchg1;
5449 }
5450 if (i.rounding)
5451 {
5452 if (i.rounding->operand == xchg1)
5453 i.rounding->operand = xchg2;
5454 else if (i.rounding->operand == xchg2)
5455 i.rounding->operand = xchg1;
5456 }
050dfa73
MM
5457}
5458
29b0f896 5459static void
e3bb37b5 5460swap_operands (void)
29b0f896 5461{
b7c61d9a 5462 switch (i.operands)
050dfa73 5463 {
c0f3af97 5464 case 5:
b7c61d9a 5465 case 4:
4d456e3d 5466 swap_2_operands (1, i.operands - 2);
1a0670f3 5467 /* Fall through. */
b7c61d9a
L
5468 case 3:
5469 case 2:
4d456e3d 5470 swap_2_operands (0, i.operands - 1);
b7c61d9a
L
5471 break;
5472 default:
5473 abort ();
29b0f896 5474 }
29b0f896
AM
5475
5476 if (i.mem_operands == 2)
5477 {
5478 const seg_entry *temp_seg;
5479 temp_seg = i.seg[0];
5480 i.seg[0] = i.seg[1];
5481 i.seg[1] = temp_seg;
5482 }
5483}
252b5132 5484
29b0f896
AM
5485/* Try to ensure constant immediates are represented in the smallest
5486 opcode possible. */
5487static void
e3bb37b5 5488optimize_imm (void)
29b0f896
AM
5489{
5490 char guess_suffix = 0;
5491 int op;
252b5132 5492
29b0f896
AM
5493 if (i.suffix)
5494 guess_suffix = i.suffix;
5495 else if (i.reg_operands)
5496 {
5497 /* Figure out a suffix from the last register operand specified.
75e5731b
JB
5498 We can't do this properly yet, i.e. excluding special register
5499 instances, but the following works for instructions with
5500 immediates. In any case, we can't set i.suffix yet. */
29b0f896 5501 for (op = i.operands; --op >= 0;)
bab6aec1
JB
5502 if (i.types[op].bitfield.class != Reg)
5503 continue;
5504 else if (i.types[op].bitfield.byte)
7ab9ffdd 5505 {
40fb9820
L
5506 guess_suffix = BYTE_MNEM_SUFFIX;
5507 break;
5508 }
bab6aec1 5509 else if (i.types[op].bitfield.word)
252b5132 5510 {
40fb9820
L
5511 guess_suffix = WORD_MNEM_SUFFIX;
5512 break;
5513 }
bab6aec1 5514 else if (i.types[op].bitfield.dword)
40fb9820
L
5515 {
5516 guess_suffix = LONG_MNEM_SUFFIX;
5517 break;
5518 }
bab6aec1 5519 else if (i.types[op].bitfield.qword)
40fb9820
L
5520 {
5521 guess_suffix = QWORD_MNEM_SUFFIX;
29b0f896 5522 break;
252b5132 5523 }
29b0f896
AM
5524 }
5525 else if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
5526 guess_suffix = WORD_MNEM_SUFFIX;
5527
5528 for (op = i.operands; --op >= 0;)
40fb9820 5529 if (operand_type_check (i.types[op], imm))
29b0f896
AM
5530 {
5531 switch (i.op[op].imms->X_op)
252b5132 5532 {
29b0f896
AM
5533 case O_constant:
5534 /* If a suffix is given, this operand may be shortened. */
5535 switch (guess_suffix)
252b5132 5536 {
29b0f896 5537 case LONG_MNEM_SUFFIX:
40fb9820
L
5538 i.types[op].bitfield.imm32 = 1;
5539 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
5540 break;
5541 case WORD_MNEM_SUFFIX:
40fb9820
L
5542 i.types[op].bitfield.imm16 = 1;
5543 i.types[op].bitfield.imm32 = 1;
5544 i.types[op].bitfield.imm32s = 1;
5545 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
5546 break;
5547 case BYTE_MNEM_SUFFIX:
40fb9820
L
5548 i.types[op].bitfield.imm8 = 1;
5549 i.types[op].bitfield.imm8s = 1;
5550 i.types[op].bitfield.imm16 = 1;
5551 i.types[op].bitfield.imm32 = 1;
5552 i.types[op].bitfield.imm32s = 1;
5553 i.types[op].bitfield.imm64 = 1;
29b0f896 5554 break;
252b5132 5555 }
252b5132 5556
29b0f896
AM
5557 /* If this operand is at most 16 bits, convert it
5558 to a signed 16 bit number before trying to see
5559 whether it will fit in an even smaller size.
5560 This allows a 16-bit operand such as $0xffe0 to
5561 be recognised as within Imm8S range. */
40fb9820 5562 if ((i.types[op].bitfield.imm16)
29b0f896 5563 && (i.op[op].imms->X_add_number & ~(offsetT) 0xffff) == 0)
252b5132 5564 {
29b0f896
AM
5565 i.op[op].imms->X_add_number =
5566 (((i.op[op].imms->X_add_number & 0xffff) ^ 0x8000) - 0x8000);
5567 }
a28def75
L
5568#ifdef BFD64
5569 /* Store 32-bit immediate in 64-bit for 64-bit BFD. */
40fb9820 5570 if ((i.types[op].bitfield.imm32)
29b0f896
AM
5571 && ((i.op[op].imms->X_add_number & ~(((offsetT) 2 << 31) - 1))
5572 == 0))
5573 {
5574 i.op[op].imms->X_add_number = ((i.op[op].imms->X_add_number
5575 ^ ((offsetT) 1 << 31))
5576 - ((offsetT) 1 << 31));
5577 }
a28def75 5578#endif
40fb9820 5579 i.types[op]
c6fb90c8
L
5580 = operand_type_or (i.types[op],
5581 smallest_imm_type (i.op[op].imms->X_add_number));
252b5132 5582
29b0f896
AM
5583 /* We must avoid matching of Imm32 templates when 64bit
5584 only immediate is available. */
5585 if (guess_suffix == QWORD_MNEM_SUFFIX)
40fb9820 5586 i.types[op].bitfield.imm32 = 0;
29b0f896 5587 break;
252b5132 5588
29b0f896
AM
5589 case O_absent:
5590 case O_register:
5591 abort ();
5592
5593 /* Symbols and expressions. */
5594 default:
9cd96992
JB
5595 /* Convert symbolic operand to proper sizes for matching, but don't
5596 prevent matching a set of insns that only supports sizes other
5597 than those matching the insn suffix. */
5598 {
40fb9820 5599 i386_operand_type mask, allowed;
d3ce72d0 5600 const insn_template *t;
9cd96992 5601
0dfbf9d7
L
5602 operand_type_set (&mask, 0);
5603 operand_type_set (&allowed, 0);
40fb9820 5604
4eed87de
AM
5605 for (t = current_templates->start;
5606 t < current_templates->end;
5607 ++t)
bab6aec1
JB
5608 {
5609 allowed = operand_type_or (allowed, t->operand_types[op]);
5610 allowed = operand_type_and (allowed, anyimm);
5611 }
9cd96992
JB
5612 switch (guess_suffix)
5613 {
5614 case QWORD_MNEM_SUFFIX:
40fb9820
L
5615 mask.bitfield.imm64 = 1;
5616 mask.bitfield.imm32s = 1;
9cd96992
JB
5617 break;
5618 case LONG_MNEM_SUFFIX:
40fb9820 5619 mask.bitfield.imm32 = 1;
9cd96992
JB
5620 break;
5621 case WORD_MNEM_SUFFIX:
40fb9820 5622 mask.bitfield.imm16 = 1;
9cd96992
JB
5623 break;
5624 case BYTE_MNEM_SUFFIX:
40fb9820 5625 mask.bitfield.imm8 = 1;
9cd96992
JB
5626 break;
5627 default:
9cd96992
JB
5628 break;
5629 }
c6fb90c8 5630 allowed = operand_type_and (mask, allowed);
0dfbf9d7 5631 if (!operand_type_all_zero (&allowed))
c6fb90c8 5632 i.types[op] = operand_type_and (i.types[op], mask);
9cd96992 5633 }
29b0f896 5634 break;
252b5132 5635 }
29b0f896
AM
5636 }
5637}
47926f60 5638
29b0f896
AM
5639/* Try to use the smallest displacement type too. */
5640static void
e3bb37b5 5641optimize_disp (void)
29b0f896
AM
5642{
5643 int op;
3e73aa7c 5644
29b0f896 5645 for (op = i.operands; --op >= 0;)
40fb9820 5646 if (operand_type_check (i.types[op], disp))
252b5132 5647 {
b300c311 5648 if (i.op[op].disps->X_op == O_constant)
252b5132 5649 {
91d6fa6a 5650 offsetT op_disp = i.op[op].disps->X_add_number;
29b0f896 5651
40fb9820 5652 if (i.types[op].bitfield.disp16
91d6fa6a 5653 && (op_disp & ~(offsetT) 0xffff) == 0)
b300c311
L
5654 {
5655 /* If this operand is at most 16 bits, convert
5656 to a signed 16 bit number and don't use 64bit
5657 displacement. */
91d6fa6a 5658 op_disp = (((op_disp & 0xffff) ^ 0x8000) - 0x8000);
40fb9820 5659 i.types[op].bitfield.disp64 = 0;
b300c311 5660 }
a28def75
L
5661#ifdef BFD64
5662 /* Optimize 64-bit displacement to 32-bit for 64-bit BFD. */
40fb9820 5663 if (i.types[op].bitfield.disp32
91d6fa6a 5664 && (op_disp & ~(((offsetT) 2 << 31) - 1)) == 0)
b300c311
L
5665 {
5666 /* If this operand is at most 32 bits, convert
5667 to a signed 32 bit number and don't use 64bit
5668 displacement. */
91d6fa6a
NC
5669 op_disp &= (((offsetT) 2 << 31) - 1);
5670 op_disp = (op_disp ^ ((offsetT) 1 << 31)) - ((addressT) 1 << 31);
40fb9820 5671 i.types[op].bitfield.disp64 = 0;
b300c311 5672 }
a28def75 5673#endif
91d6fa6a 5674 if (!op_disp && i.types[op].bitfield.baseindex)
b300c311 5675 {
40fb9820
L
5676 i.types[op].bitfield.disp8 = 0;
5677 i.types[op].bitfield.disp16 = 0;
5678 i.types[op].bitfield.disp32 = 0;
5679 i.types[op].bitfield.disp32s = 0;
5680 i.types[op].bitfield.disp64 = 0;
b300c311
L
5681 i.op[op].disps = 0;
5682 i.disp_operands--;
5683 }
5684 else if (flag_code == CODE_64BIT)
5685 {
91d6fa6a 5686 if (fits_in_signed_long (op_disp))
28a9d8f5 5687 {
40fb9820
L
5688 i.types[op].bitfield.disp64 = 0;
5689 i.types[op].bitfield.disp32s = 1;
28a9d8f5 5690 }
0e1147d9 5691 if (i.prefix[ADDR_PREFIX]
91d6fa6a 5692 && fits_in_unsigned_long (op_disp))
40fb9820 5693 i.types[op].bitfield.disp32 = 1;
b300c311 5694 }
40fb9820
L
5695 if ((i.types[op].bitfield.disp32
5696 || i.types[op].bitfield.disp32s
5697 || i.types[op].bitfield.disp16)
b5014f7a 5698 && fits_in_disp8 (op_disp))
40fb9820 5699 i.types[op].bitfield.disp8 = 1;
252b5132 5700 }
67a4f2b7
AO
5701 else if (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
5702 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL)
5703 {
5704 fix_new_exp (frag_now, frag_more (0) - frag_now->fr_literal, 0,
5705 i.op[op].disps, 0, i.reloc[op]);
40fb9820
L
5706 i.types[op].bitfield.disp8 = 0;
5707 i.types[op].bitfield.disp16 = 0;
5708 i.types[op].bitfield.disp32 = 0;
5709 i.types[op].bitfield.disp32s = 0;
5710 i.types[op].bitfield.disp64 = 0;
67a4f2b7
AO
5711 }
5712 else
b300c311 5713 /* We only support 64bit displacement on constants. */
40fb9820 5714 i.types[op].bitfield.disp64 = 0;
252b5132 5715 }
29b0f896
AM
5716}
5717
4a1b91ea
L
5718/* Return 1 if there is a match in broadcast bytes between operand
5719 GIVEN and instruction template T. */
5720
5721static INLINE int
5722match_broadcast_size (const insn_template *t, unsigned int given)
5723{
5724 return ((t->opcode_modifier.broadcast == BYTE_BROADCAST
5725 && i.types[given].bitfield.byte)
5726 || (t->opcode_modifier.broadcast == WORD_BROADCAST
5727 && i.types[given].bitfield.word)
5728 || (t->opcode_modifier.broadcast == DWORD_BROADCAST
5729 && i.types[given].bitfield.dword)
5730 || (t->opcode_modifier.broadcast == QWORD_BROADCAST
5731 && i.types[given].bitfield.qword));
5732}
5733
6c30d220
L
5734/* Check if operands are valid for the instruction. */
5735
5736static int
5737check_VecOperands (const insn_template *t)
5738{
43234a1e 5739 unsigned int op;
e2195274 5740 i386_cpu_flags cpu;
e2195274
JB
5741
5742 /* Templates allowing for ZMMword as well as YMMword and/or XMMword for
5743 any one operand are implicity requiring AVX512VL support if the actual
5744 operand size is YMMword or XMMword. Since this function runs after
5745 template matching, there's no need to check for YMMword/XMMword in
5746 the template. */
5747 cpu = cpu_flags_and (t->cpu_flags, avx512);
5748 if (!cpu_flags_all_zero (&cpu)
5749 && !t->cpu_flags.bitfield.cpuavx512vl
5750 && !cpu_arch_flags.bitfield.cpuavx512vl)
5751 {
5752 for (op = 0; op < t->operands; ++op)
5753 {
5754 if (t->operand_types[op].bitfield.zmmword
5755 && (i.types[op].bitfield.ymmword
5756 || i.types[op].bitfield.xmmword))
5757 {
5758 i.error = unsupported;
5759 return 1;
5760 }
5761 }
5762 }
43234a1e 5763
6c30d220
L
5764 /* Without VSIB byte, we can't have a vector register for index. */
5765 if (!t->opcode_modifier.vecsib
5766 && i.index_reg
1b54b8d7
JB
5767 && (i.index_reg->reg_type.bitfield.xmmword
5768 || i.index_reg->reg_type.bitfield.ymmword
5769 || i.index_reg->reg_type.bitfield.zmmword))
6c30d220
L
5770 {
5771 i.error = unsupported_vector_index_register;
5772 return 1;
5773 }
5774
ad8ecc81
MZ
5775 /* Check if default mask is allowed. */
5776 if (t->opcode_modifier.nodefmask
5777 && (!i.mask || i.mask->mask->reg_num == 0))
5778 {
5779 i.error = no_default_mask;
5780 return 1;
5781 }
5782
7bab8ab5
JB
5783 /* For VSIB byte, we need a vector register for index, and all vector
5784 registers must be distinct. */
5785 if (t->opcode_modifier.vecsib)
5786 {
5787 if (!i.index_reg
6c30d220 5788 || !((t->opcode_modifier.vecsib == VecSIB128
1b54b8d7 5789 && i.index_reg->reg_type.bitfield.xmmword)
6c30d220 5790 || (t->opcode_modifier.vecsib == VecSIB256
1b54b8d7 5791 && i.index_reg->reg_type.bitfield.ymmword)
43234a1e 5792 || (t->opcode_modifier.vecsib == VecSIB512
1b54b8d7 5793 && i.index_reg->reg_type.bitfield.zmmword)))
7bab8ab5
JB
5794 {
5795 i.error = invalid_vsib_address;
5796 return 1;
5797 }
5798
43234a1e
L
5799 gas_assert (i.reg_operands == 2 || i.mask);
5800 if (i.reg_operands == 2 && !i.mask)
5801 {
3528c362 5802 gas_assert (i.types[0].bitfield.class == RegSIMD);
1b54b8d7
JB
5803 gas_assert (i.types[0].bitfield.xmmword
5804 || i.types[0].bitfield.ymmword);
3528c362 5805 gas_assert (i.types[2].bitfield.class == RegSIMD);
1b54b8d7
JB
5806 gas_assert (i.types[2].bitfield.xmmword
5807 || i.types[2].bitfield.ymmword);
43234a1e
L
5808 if (operand_check == check_none)
5809 return 0;
5810 if (register_number (i.op[0].regs)
5811 != register_number (i.index_reg)
5812 && register_number (i.op[2].regs)
5813 != register_number (i.index_reg)
5814 && register_number (i.op[0].regs)
5815 != register_number (i.op[2].regs))
5816 return 0;
5817 if (operand_check == check_error)
5818 {
5819 i.error = invalid_vector_register_set;
5820 return 1;
5821 }
5822 as_warn (_("mask, index, and destination registers should be distinct"));
5823 }
8444f82a
MZ
5824 else if (i.reg_operands == 1 && i.mask)
5825 {
3528c362 5826 if (i.types[1].bitfield.class == RegSIMD
1b54b8d7
JB
5827 && (i.types[1].bitfield.xmmword
5828 || i.types[1].bitfield.ymmword
5829 || i.types[1].bitfield.zmmword)
8444f82a
MZ
5830 && (register_number (i.op[1].regs)
5831 == register_number (i.index_reg)))
5832 {
5833 if (operand_check == check_error)
5834 {
5835 i.error = invalid_vector_register_set;
5836 return 1;
5837 }
5838 if (operand_check != check_none)
5839 as_warn (_("index and destination registers should be distinct"));
5840 }
5841 }
43234a1e 5842 }
7bab8ab5 5843
43234a1e
L
5844 /* Check if broadcast is supported by the instruction and is applied
5845 to the memory operand. */
5846 if (i.broadcast)
5847 {
8e6e0792 5848 i386_operand_type type, overlap;
43234a1e
L
5849
5850 /* Check if specified broadcast is supported in this instruction,
4a1b91ea 5851 and its broadcast bytes match the memory operand. */
32546502 5852 op = i.broadcast->operand;
8e6e0792 5853 if (!t->opcode_modifier.broadcast
c48dadc9 5854 || !(i.flags[op] & Operand_Mem)
c39e5b26 5855 || (!i.types[op].bitfield.unspecified
4a1b91ea 5856 && !match_broadcast_size (t, op)))
43234a1e
L
5857 {
5858 bad_broadcast:
5859 i.error = unsupported_broadcast;
5860 return 1;
5861 }
8e6e0792 5862
4a1b91ea
L
5863 i.broadcast->bytes = ((1 << (t->opcode_modifier.broadcast - 1))
5864 * i.broadcast->type);
8e6e0792 5865 operand_type_set (&type, 0);
4a1b91ea 5866 switch (i.broadcast->bytes)
8e6e0792 5867 {
4a1b91ea
L
5868 case 2:
5869 type.bitfield.word = 1;
5870 break;
5871 case 4:
5872 type.bitfield.dword = 1;
5873 break;
8e6e0792
JB
5874 case 8:
5875 type.bitfield.qword = 1;
5876 break;
5877 case 16:
5878 type.bitfield.xmmword = 1;
5879 break;
5880 case 32:
5881 type.bitfield.ymmword = 1;
5882 break;
5883 case 64:
5884 type.bitfield.zmmword = 1;
5885 break;
5886 default:
5887 goto bad_broadcast;
5888 }
5889
5890 overlap = operand_type_and (type, t->operand_types[op]);
bc49bfd8
JB
5891 if (t->operand_types[op].bitfield.class == RegSIMD
5892 && t->operand_types[op].bitfield.byte
5893 + t->operand_types[op].bitfield.word
5894 + t->operand_types[op].bitfield.dword
5895 + t->operand_types[op].bitfield.qword > 1)
5896 {
5897 overlap.bitfield.xmmword = 0;
5898 overlap.bitfield.ymmword = 0;
5899 overlap.bitfield.zmmword = 0;
5900 }
8e6e0792
JB
5901 if (operand_type_all_zero (&overlap))
5902 goto bad_broadcast;
5903
5904 if (t->opcode_modifier.checkregsize)
5905 {
5906 unsigned int j;
5907
e2195274 5908 type.bitfield.baseindex = 1;
8e6e0792
JB
5909 for (j = 0; j < i.operands; ++j)
5910 {
5911 if (j != op
5912 && !operand_type_register_match(i.types[j],
5913 t->operand_types[j],
5914 type,
5915 t->operand_types[op]))
5916 goto bad_broadcast;
5917 }
5918 }
43234a1e
L
5919 }
5920 /* If broadcast is supported in this instruction, we need to check if
5921 operand of one-element size isn't specified without broadcast. */
5922 else if (t->opcode_modifier.broadcast && i.mem_operands)
5923 {
5924 /* Find memory operand. */
5925 for (op = 0; op < i.operands; op++)
8dc0818e 5926 if (i.flags[op] & Operand_Mem)
43234a1e
L
5927 break;
5928 gas_assert (op < i.operands);
5929 /* Check size of the memory operand. */
4a1b91ea 5930 if (match_broadcast_size (t, op))
43234a1e
L
5931 {
5932 i.error = broadcast_needed;
5933 return 1;
5934 }
5935 }
c39e5b26
JB
5936 else
5937 op = MAX_OPERANDS - 1; /* Avoid uninitialized variable warning. */
43234a1e
L
5938
5939 /* Check if requested masking is supported. */
ae2387fe 5940 if (i.mask)
43234a1e 5941 {
ae2387fe
JB
5942 switch (t->opcode_modifier.masking)
5943 {
5944 case BOTH_MASKING:
5945 break;
5946 case MERGING_MASKING:
5947 if (i.mask->zeroing)
5948 {
5949 case 0:
5950 i.error = unsupported_masking;
5951 return 1;
5952 }
5953 break;
5954 case DYNAMIC_MASKING:
5955 /* Memory destinations allow only merging masking. */
5956 if (i.mask->zeroing && i.mem_operands)
5957 {
5958 /* Find memory operand. */
5959 for (op = 0; op < i.operands; op++)
c48dadc9 5960 if (i.flags[op] & Operand_Mem)
ae2387fe
JB
5961 break;
5962 gas_assert (op < i.operands);
5963 if (op == i.operands - 1)
5964 {
5965 i.error = unsupported_masking;
5966 return 1;
5967 }
5968 }
5969 break;
5970 default:
5971 abort ();
5972 }
43234a1e
L
5973 }
5974
5975 /* Check if masking is applied to dest operand. */
5976 if (i.mask && (i.mask->operand != (int) (i.operands - 1)))
5977 {
5978 i.error = mask_not_on_destination;
5979 return 1;
5980 }
5981
43234a1e
L
5982 /* Check RC/SAE. */
5983 if (i.rounding)
5984 {
a80195f1
JB
5985 if (!t->opcode_modifier.sae
5986 || (i.rounding->type != saeonly && !t->opcode_modifier.staticrounding))
43234a1e
L
5987 {
5988 i.error = unsupported_rc_sae;
5989 return 1;
5990 }
5991 /* If the instruction has several immediate operands and one of
5992 them is rounding, the rounding operand should be the last
5993 immediate operand. */
5994 if (i.imm_operands > 1
5995 && i.rounding->operand != (int) (i.imm_operands - 1))
7bab8ab5 5996 {
43234a1e 5997 i.error = rc_sae_operand_not_last_imm;
7bab8ab5
JB
5998 return 1;
5999 }
6c30d220
L
6000 }
6001
da4977e0
JB
6002 /* Check the special Imm4 cases; must be the first operand. */
6003 if (t->cpu_flags.bitfield.cpuxop && t->operands == 5)
6004 {
6005 if (i.op[0].imms->X_op != O_constant
6006 || !fits_in_imm4 (i.op[0].imms->X_add_number))
6007 {
6008 i.error = bad_imm4;
6009 return 1;
6010 }
6011
6012 /* Turn off Imm<N> so that update_imm won't complain. */
6013 operand_type_set (&i.types[0], 0);
6014 }
6015
43234a1e 6016 /* Check vector Disp8 operand. */
b5014f7a
JB
6017 if (t->opcode_modifier.disp8memshift
6018 && i.disp_encoding != disp_encoding_32bit)
43234a1e
L
6019 {
6020 if (i.broadcast)
4a1b91ea 6021 i.memshift = t->opcode_modifier.broadcast - 1;
7091c612 6022 else if (t->opcode_modifier.disp8memshift != DISP8_SHIFT_VL)
43234a1e 6023 i.memshift = t->opcode_modifier.disp8memshift;
7091c612
JB
6024 else
6025 {
6026 const i386_operand_type *type = NULL;
6027
6028 i.memshift = 0;
6029 for (op = 0; op < i.operands; op++)
8dc0818e 6030 if (i.flags[op] & Operand_Mem)
7091c612 6031 {
4174bfff
JB
6032 if (t->opcode_modifier.evex == EVEXLIG)
6033 i.memshift = 2 + (i.suffix == QWORD_MNEM_SUFFIX);
6034 else if (t->operand_types[op].bitfield.xmmword
6035 + t->operand_types[op].bitfield.ymmword
6036 + t->operand_types[op].bitfield.zmmword <= 1)
7091c612
JB
6037 type = &t->operand_types[op];
6038 else if (!i.types[op].bitfield.unspecified)
6039 type = &i.types[op];
6040 }
3528c362 6041 else if (i.types[op].bitfield.class == RegSIMD
4174bfff 6042 && t->opcode_modifier.evex != EVEXLIG)
7091c612
JB
6043 {
6044 if (i.types[op].bitfield.zmmword)
6045 i.memshift = 6;
6046 else if (i.types[op].bitfield.ymmword && i.memshift < 5)
6047 i.memshift = 5;
6048 else if (i.types[op].bitfield.xmmword && i.memshift < 4)
6049 i.memshift = 4;
6050 }
6051
6052 if (type)
6053 {
6054 if (type->bitfield.zmmword)
6055 i.memshift = 6;
6056 else if (type->bitfield.ymmword)
6057 i.memshift = 5;
6058 else if (type->bitfield.xmmword)
6059 i.memshift = 4;
6060 }
6061
6062 /* For the check in fits_in_disp8(). */
6063 if (i.memshift == 0)
6064 i.memshift = -1;
6065 }
43234a1e
L
6066
6067 for (op = 0; op < i.operands; op++)
6068 if (operand_type_check (i.types[op], disp)
6069 && i.op[op].disps->X_op == O_constant)
6070 {
b5014f7a 6071 if (fits_in_disp8 (i.op[op].disps->X_add_number))
43234a1e 6072 {
b5014f7a
JB
6073 i.types[op].bitfield.disp8 = 1;
6074 return 0;
43234a1e 6075 }
b5014f7a 6076 i.types[op].bitfield.disp8 = 0;
43234a1e
L
6077 }
6078 }
b5014f7a
JB
6079
6080 i.memshift = 0;
43234a1e 6081
6c30d220
L
6082 return 0;
6083}
6084
da4977e0 6085/* Check if encoding requirements are met by the instruction. */
a683cc34
SP
6086
6087static int
da4977e0 6088VEX_check_encoding (const insn_template *t)
a683cc34 6089{
da4977e0
JB
6090 if (i.vec_encoding == vex_encoding_error)
6091 {
6092 i.error = unsupported;
6093 return 1;
6094 }
6095
86fa6981 6096 if (i.vec_encoding == vex_encoding_evex)
43234a1e 6097 {
86fa6981 6098 /* This instruction must be encoded with EVEX prefix. */
e771e7c9 6099 if (!is_evex_encoding (t))
86fa6981
L
6100 {
6101 i.error = unsupported;
6102 return 1;
6103 }
6104 return 0;
43234a1e
L
6105 }
6106
a683cc34 6107 if (!t->opcode_modifier.vex)
86fa6981
L
6108 {
6109 /* This instruction template doesn't have VEX prefix. */
6110 if (i.vec_encoding != vex_encoding_default)
6111 {
6112 i.error = unsupported;
6113 return 1;
6114 }
6115 return 0;
6116 }
a683cc34 6117
a683cc34
SP
6118 return 0;
6119}
6120
d3ce72d0 6121static const insn_template *
83b16ac6 6122match_template (char mnem_suffix)
29b0f896
AM
6123{
6124 /* Points to template once we've found it. */
d3ce72d0 6125 const insn_template *t;
40fb9820 6126 i386_operand_type overlap0, overlap1, overlap2, overlap3;
c0f3af97 6127 i386_operand_type overlap4;
29b0f896 6128 unsigned int found_reverse_match;
dc2be329 6129 i386_opcode_modifier suffix_check;
40fb9820 6130 i386_operand_type operand_types [MAX_OPERANDS];
539e75ad 6131 int addr_prefix_disp;
45a4bb20 6132 unsigned int j, size_match, check_register;
5614d22c 6133 enum i386_error specific_error = 0;
29b0f896 6134
c0f3af97
L
6135#if MAX_OPERANDS != 5
6136# error "MAX_OPERANDS must be 5."
f48ff2ae
L
6137#endif
6138
29b0f896 6139 found_reverse_match = 0;
539e75ad 6140 addr_prefix_disp = -1;
40fb9820 6141
dc2be329 6142 /* Prepare for mnemonic suffix check. */
40fb9820 6143 memset (&suffix_check, 0, sizeof (suffix_check));
dc2be329
L
6144 switch (mnem_suffix)
6145 {
6146 case BYTE_MNEM_SUFFIX:
6147 suffix_check.no_bsuf = 1;
6148 break;
6149 case WORD_MNEM_SUFFIX:
6150 suffix_check.no_wsuf = 1;
6151 break;
6152 case SHORT_MNEM_SUFFIX:
6153 suffix_check.no_ssuf = 1;
6154 break;
6155 case LONG_MNEM_SUFFIX:
6156 suffix_check.no_lsuf = 1;
6157 break;
6158 case QWORD_MNEM_SUFFIX:
6159 suffix_check.no_qsuf = 1;
6160 break;
6161 default:
6162 /* NB: In Intel syntax, normally we can check for memory operand
6163 size when there is no mnemonic suffix. But jmp and call have
6164 2 different encodings with Dword memory operand size, one with
6165 No_ldSuf and the other without. i.suffix is set to
6166 LONG_DOUBLE_MNEM_SUFFIX to skip the one with No_ldSuf. */
6167 if (i.suffix == LONG_DOUBLE_MNEM_SUFFIX)
6168 suffix_check.no_ldsuf = 1;
83b16ac6
JB
6169 }
6170
01559ecc
L
6171 /* Must have right number of operands. */
6172 i.error = number_of_operands_mismatch;
6173
45aa61fe 6174 for (t = current_templates->start; t < current_templates->end; t++)
29b0f896 6175 {
539e75ad 6176 addr_prefix_disp = -1;
dbbc8b7e 6177 found_reverse_match = 0;
539e75ad 6178
29b0f896
AM
6179 if (i.operands != t->operands)
6180 continue;
6181
50aecf8c 6182 /* Check processor support. */
a65babc9 6183 i.error = unsupported;
45a4bb20 6184 if (cpu_flags_match (t) != CPU_FLAGS_PERFECT_MATCH)
50aecf8c
L
6185 continue;
6186
e1d4d893 6187 /* Check AT&T mnemonic. */
a65babc9 6188 i.error = unsupported_with_intel_mnemonic;
e1d4d893 6189 if (intel_mnemonic && t->opcode_modifier.attmnemonic)
1efbbeb4
L
6190 continue;
6191
4b5aaf5f 6192 /* Check AT&T/Intel syntax. */
a65babc9 6193 i.error = unsupported_syntax;
5c07affc 6194 if ((intel_syntax && t->opcode_modifier.attsyntax)
4b5aaf5f 6195 || (!intel_syntax && t->opcode_modifier.intelsyntax))
1efbbeb4
L
6196 continue;
6197
4b5aaf5f
L
6198 /* Check Intel64/AMD64 ISA. */
6199 switch (isa64)
6200 {
6201 default:
6202 /* Default: Don't accept Intel64. */
6203 if (t->opcode_modifier.isa64 == INTEL64)
6204 continue;
6205 break;
6206 case amd64:
6207 /* -mamd64: Don't accept Intel64 and Intel64 only. */
6208 if (t->opcode_modifier.isa64 >= INTEL64)
6209 continue;
6210 break;
6211 case intel64:
6212 /* -mintel64: Don't accept AMD64. */
5990e377 6213 if (t->opcode_modifier.isa64 == AMD64 && flag_code == CODE_64BIT)
4b5aaf5f
L
6214 continue;
6215 break;
6216 }
6217
dc2be329 6218 /* Check the suffix. */
a65babc9 6219 i.error = invalid_instruction_suffix;
dc2be329
L
6220 if ((t->opcode_modifier.no_bsuf && suffix_check.no_bsuf)
6221 || (t->opcode_modifier.no_wsuf && suffix_check.no_wsuf)
6222 || (t->opcode_modifier.no_lsuf && suffix_check.no_lsuf)
6223 || (t->opcode_modifier.no_ssuf && suffix_check.no_ssuf)
6224 || (t->opcode_modifier.no_qsuf && suffix_check.no_qsuf)
6225 || (t->opcode_modifier.no_ldsuf && suffix_check.no_ldsuf))
83b16ac6 6226 continue;
29b0f896 6227
3ac21baa
JB
6228 size_match = operand_size_match (t);
6229 if (!size_match)
7d5e4556 6230 continue;
539e75ad 6231
6f2f06be
JB
6232 /* This is intentionally not
6233
0cfa3eb3 6234 if (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE))
6f2f06be
JB
6235
6236 as the case of a missing * on the operand is accepted (perhaps with
6237 a warning, issued further down). */
0cfa3eb3 6238 if (i.jumpabsolute && t->opcode_modifier.jump != JUMP_ABSOLUTE)
6f2f06be
JB
6239 {
6240 i.error = operand_type_mismatch;
6241 continue;
6242 }
6243
5c07affc
L
6244 for (j = 0; j < MAX_OPERANDS; j++)
6245 operand_types[j] = t->operand_types[j];
6246
e365e234
JB
6247 /* In general, don't allow
6248 - 64-bit operands outside of 64-bit mode,
6249 - 32-bit operands on pre-386. */
4873e243 6250 j = i.imm_operands + (t->operands > i.imm_operands + 1);
e365e234
JB
6251 if (((i.suffix == QWORD_MNEM_SUFFIX
6252 && flag_code != CODE_64BIT
6253 && (t->base_opcode != 0x0fc7
6254 || t->extension_opcode != 1 /* cmpxchg8b */))
6255 || (i.suffix == LONG_MNEM_SUFFIX
6256 && !cpu_arch_flags.bitfield.cpui386))
45aa61fe 6257 && (intel_syntax
3cd7f3e3 6258 ? (t->opcode_modifier.mnemonicsize != IGNORESIZE
45aa61fe
AM
6259 && !intel_float_operand (t->name))
6260 : intel_float_operand (t->name) != 2)
4873e243
JB
6261 && (t->operands == i.imm_operands
6262 || (operand_types[i.imm_operands].bitfield.class != RegMMX
6263 && operand_types[i.imm_operands].bitfield.class != RegSIMD
6264 && operand_types[i.imm_operands].bitfield.class != RegMask)
6265 || (operand_types[j].bitfield.class != RegMMX
6266 && operand_types[j].bitfield.class != RegSIMD
6267 && operand_types[j].bitfield.class != RegMask))
6268 && !t->opcode_modifier.vecsib)
192dc9c6
JB
6269 continue;
6270
29b0f896 6271 /* Do not verify operands when there are none. */
e365e234 6272 if (!t->operands)
da4977e0
JB
6273 {
6274 if (VEX_check_encoding (t))
6275 {
6276 specific_error = i.error;
6277 continue;
6278 }
6279
6280 /* We've found a match; break out of loop. */
6281 break;
6282 }
252b5132 6283
48bcea9f
JB
6284 if (!t->opcode_modifier.jump
6285 || t->opcode_modifier.jump == JUMP_ABSOLUTE)
6286 {
6287 /* There should be only one Disp operand. */
6288 for (j = 0; j < MAX_OPERANDS; j++)
6289 if (operand_type_check (operand_types[j], disp))
539e75ad 6290 break;
48bcea9f
JB
6291 if (j < MAX_OPERANDS)
6292 {
6293 bfd_boolean override = (i.prefix[ADDR_PREFIX] != 0);
6294
6295 addr_prefix_disp = j;
6296
6297 /* Address size prefix will turn Disp64/Disp32S/Disp32/Disp16
6298 operand into Disp32/Disp32/Disp16/Disp32 operand. */
6299 switch (flag_code)
40fb9820 6300 {
48bcea9f
JB
6301 case CODE_16BIT:
6302 override = !override;
6303 /* Fall through. */
6304 case CODE_32BIT:
6305 if (operand_types[j].bitfield.disp32
6306 && operand_types[j].bitfield.disp16)
40fb9820 6307 {
48bcea9f
JB
6308 operand_types[j].bitfield.disp16 = override;
6309 operand_types[j].bitfield.disp32 = !override;
40fb9820 6310 }
48bcea9f
JB
6311 operand_types[j].bitfield.disp32s = 0;
6312 operand_types[j].bitfield.disp64 = 0;
6313 break;
6314
6315 case CODE_64BIT:
6316 if (operand_types[j].bitfield.disp32s
6317 || operand_types[j].bitfield.disp64)
40fb9820 6318 {
48bcea9f
JB
6319 operand_types[j].bitfield.disp64 &= !override;
6320 operand_types[j].bitfield.disp32s &= !override;
6321 operand_types[j].bitfield.disp32 = override;
40fb9820 6322 }
48bcea9f
JB
6323 operand_types[j].bitfield.disp16 = 0;
6324 break;
40fb9820 6325 }
539e75ad 6326 }
48bcea9f 6327 }
539e75ad 6328
02a86693
L
6329 /* Force 0x8b encoding for "mov foo@GOT, %eax". */
6330 if (i.reloc[0] == BFD_RELOC_386_GOT32 && t->base_opcode == 0xa0)
6331 continue;
6332
56ffb741 6333 /* We check register size if needed. */
e2195274
JB
6334 if (t->opcode_modifier.checkregsize)
6335 {
6336 check_register = (1 << t->operands) - 1;
6337 if (i.broadcast)
6338 check_register &= ~(1 << i.broadcast->operand);
6339 }
6340 else
6341 check_register = 0;
6342
c6fb90c8 6343 overlap0 = operand_type_and (i.types[0], operand_types[0]);
29b0f896
AM
6344 switch (t->operands)
6345 {
6346 case 1:
40fb9820 6347 if (!operand_type_match (overlap0, i.types[0]))
29b0f896
AM
6348 continue;
6349 break;
6350 case 2:
33eaf5de 6351 /* xchg %eax, %eax is a special case. It is an alias for nop
8b38ad71
L
6352 only in 32bit mode and we can use opcode 0x90. In 64bit
6353 mode, we can't use 0x90 for xchg %eax, %eax since it should
6354 zero-extend %eax to %rax. */
6355 if (flag_code == CODE_64BIT
6356 && t->base_opcode == 0x90
75e5731b
JB
6357 && i.types[0].bitfield.instance == Accum
6358 && i.types[0].bitfield.dword
6359 && i.types[1].bitfield.instance == Accum
6360 && i.types[1].bitfield.dword)
8b38ad71 6361 continue;
1212781b
JB
6362 /* xrelease mov %eax, <disp> is another special case. It must not
6363 match the accumulator-only encoding of mov. */
6364 if (flag_code != CODE_64BIT
6365 && i.hle_prefix
6366 && t->base_opcode == 0xa0
75e5731b 6367 && i.types[0].bitfield.instance == Accum
8dc0818e 6368 && (i.flags[1] & Operand_Mem))
1212781b 6369 continue;
f5eb1d70
JB
6370 /* Fall through. */
6371
6372 case 3:
3ac21baa
JB
6373 if (!(size_match & MATCH_STRAIGHT))
6374 goto check_reverse;
64c49ab3
JB
6375 /* Reverse direction of operands if swapping is possible in the first
6376 place (operands need to be symmetric) and
6377 - the load form is requested, and the template is a store form,
6378 - the store form is requested, and the template is a load form,
6379 - the non-default (swapped) form is requested. */
6380 overlap1 = operand_type_and (operand_types[0], operand_types[1]);
f5eb1d70 6381 if (t->opcode_modifier.d && i.reg_operands == i.operands
64c49ab3
JB
6382 && !operand_type_all_zero (&overlap1))
6383 switch (i.dir_encoding)
6384 {
6385 case dir_encoding_load:
6386 if (operand_type_check (operand_types[i.operands - 1], anymem)
dfd69174 6387 || t->opcode_modifier.regmem)
64c49ab3
JB
6388 goto check_reverse;
6389 break;
6390
6391 case dir_encoding_store:
6392 if (!operand_type_check (operand_types[i.operands - 1], anymem)
dfd69174 6393 && !t->opcode_modifier.regmem)
64c49ab3
JB
6394 goto check_reverse;
6395 break;
6396
6397 case dir_encoding_swap:
6398 goto check_reverse;
6399
6400 case dir_encoding_default:
6401 break;
6402 }
86fa6981 6403 /* If we want store form, we skip the current load. */
64c49ab3
JB
6404 if ((i.dir_encoding == dir_encoding_store
6405 || i.dir_encoding == dir_encoding_swap)
86fa6981
L
6406 && i.mem_operands == 0
6407 && t->opcode_modifier.load)
fa99fab2 6408 continue;
1a0670f3 6409 /* Fall through. */
f48ff2ae 6410 case 4:
c0f3af97 6411 case 5:
c6fb90c8 6412 overlap1 = operand_type_and (i.types[1], operand_types[1]);
40fb9820
L
6413 if (!operand_type_match (overlap0, i.types[0])
6414 || !operand_type_match (overlap1, i.types[1])
e2195274 6415 || ((check_register & 3) == 3
dc821c5f 6416 && !operand_type_register_match (i.types[0],
40fb9820 6417 operand_types[0],
dc821c5f 6418 i.types[1],
40fb9820 6419 operand_types[1])))
29b0f896
AM
6420 {
6421 /* Check if other direction is valid ... */
38e314eb 6422 if (!t->opcode_modifier.d)
29b0f896
AM
6423 continue;
6424
dc1e8a47 6425 check_reverse:
3ac21baa
JB
6426 if (!(size_match & MATCH_REVERSE))
6427 continue;
29b0f896 6428 /* Try reversing direction of operands. */
f5eb1d70
JB
6429 overlap0 = operand_type_and (i.types[0], operand_types[i.operands - 1]);
6430 overlap1 = operand_type_and (i.types[i.operands - 1], operand_types[0]);
40fb9820 6431 if (!operand_type_match (overlap0, i.types[0])
f5eb1d70 6432 || !operand_type_match (overlap1, i.types[i.operands - 1])
45664ddb 6433 || (check_register
dc821c5f 6434 && !operand_type_register_match (i.types[0],
f5eb1d70
JB
6435 operand_types[i.operands - 1],
6436 i.types[i.operands - 1],
45664ddb 6437 operand_types[0])))
29b0f896
AM
6438 {
6439 /* Does not match either direction. */
6440 continue;
6441 }
38e314eb 6442 /* found_reverse_match holds which of D or FloatR
29b0f896 6443 we've found. */
38e314eb
JB
6444 if (!t->opcode_modifier.d)
6445 found_reverse_match = 0;
6446 else if (operand_types[0].bitfield.tbyte)
8a2ed489 6447 found_reverse_match = Opcode_FloatD;
dbbc8b7e 6448 else if (operand_types[0].bitfield.xmmword
f5eb1d70 6449 || operand_types[i.operands - 1].bitfield.xmmword
3528c362
JB
6450 || operand_types[0].bitfield.class == RegMMX
6451 || operand_types[i.operands - 1].bitfield.class == RegMMX
dbbc8b7e
JB
6452 || is_any_vex_encoding(t))
6453 found_reverse_match = (t->base_opcode & 0xee) != 0x6e
6454 ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD;
8a2ed489 6455 else
38e314eb 6456 found_reverse_match = Opcode_D;
40fb9820 6457 if (t->opcode_modifier.floatr)
8a2ed489 6458 found_reverse_match |= Opcode_FloatR;
29b0f896 6459 }
f48ff2ae 6460 else
29b0f896 6461 {
f48ff2ae 6462 /* Found a forward 2 operand match here. */
d1cbb4db
L
6463 switch (t->operands)
6464 {
c0f3af97
L
6465 case 5:
6466 overlap4 = operand_type_and (i.types[4],
6467 operand_types[4]);
1a0670f3 6468 /* Fall through. */
d1cbb4db 6469 case 4:
c6fb90c8
L
6470 overlap3 = operand_type_and (i.types[3],
6471 operand_types[3]);
1a0670f3 6472 /* Fall through. */
d1cbb4db 6473 case 3:
c6fb90c8
L
6474 overlap2 = operand_type_and (i.types[2],
6475 operand_types[2]);
d1cbb4db
L
6476 break;
6477 }
29b0f896 6478
f48ff2ae
L
6479 switch (t->operands)
6480 {
c0f3af97
L
6481 case 5:
6482 if (!operand_type_match (overlap4, i.types[4])
dc821c5f 6483 || !operand_type_register_match (i.types[3],
c0f3af97 6484 operand_types[3],
c0f3af97
L
6485 i.types[4],
6486 operand_types[4]))
6487 continue;
1a0670f3 6488 /* Fall through. */
f48ff2ae 6489 case 4:
40fb9820 6490 if (!operand_type_match (overlap3, i.types[3])
e2195274
JB
6491 || ((check_register & 0xa) == 0xa
6492 && !operand_type_register_match (i.types[1],
f7768225
JB
6493 operand_types[1],
6494 i.types[3],
e2195274
JB
6495 operand_types[3]))
6496 || ((check_register & 0xc) == 0xc
6497 && !operand_type_register_match (i.types[2],
6498 operand_types[2],
6499 i.types[3],
6500 operand_types[3])))
f48ff2ae 6501 continue;
1a0670f3 6502 /* Fall through. */
f48ff2ae
L
6503 case 3:
6504 /* Here we make use of the fact that there are no
23e42951 6505 reverse match 3 operand instructions. */
40fb9820 6506 if (!operand_type_match (overlap2, i.types[2])
e2195274
JB
6507 || ((check_register & 5) == 5
6508 && !operand_type_register_match (i.types[0],
23e42951
JB
6509 operand_types[0],
6510 i.types[2],
e2195274
JB
6511 operand_types[2]))
6512 || ((check_register & 6) == 6
6513 && !operand_type_register_match (i.types[1],
6514 operand_types[1],
6515 i.types[2],
6516 operand_types[2])))
f48ff2ae
L
6517 continue;
6518 break;
6519 }
29b0f896 6520 }
f48ff2ae 6521 /* Found either forward/reverse 2, 3 or 4 operand match here:
29b0f896
AM
6522 slip through to break. */
6523 }
c0f3af97 6524
da4977e0
JB
6525 /* Check if vector operands are valid. */
6526 if (check_VecOperands (t))
6527 {
6528 specific_error = i.error;
6529 continue;
6530 }
6531
6532 /* Check if VEX/EVEX encoding requirements can be satisfied. */
6533 if (VEX_check_encoding (t))
5614d22c
JB
6534 {
6535 specific_error = i.error;
6536 continue;
6537 }
a683cc34 6538
29b0f896
AM
6539 /* We've found a match; break out of loop. */
6540 break;
6541 }
6542
6543 if (t == current_templates->end)
6544 {
6545 /* We found no match. */
a65babc9 6546 const char *err_msg;
5614d22c 6547 switch (specific_error ? specific_error : i.error)
a65babc9
L
6548 {
6549 default:
6550 abort ();
86e026a4 6551 case operand_size_mismatch:
a65babc9
L
6552 err_msg = _("operand size mismatch");
6553 break;
6554 case operand_type_mismatch:
6555 err_msg = _("operand type mismatch");
6556 break;
6557 case register_type_mismatch:
6558 err_msg = _("register type mismatch");
6559 break;
6560 case number_of_operands_mismatch:
6561 err_msg = _("number of operands mismatch");
6562 break;
6563 case invalid_instruction_suffix:
6564 err_msg = _("invalid instruction suffix");
6565 break;
6566 case bad_imm4:
4a2608e3 6567 err_msg = _("constant doesn't fit in 4 bits");
a65babc9 6568 break;
a65babc9
L
6569 case unsupported_with_intel_mnemonic:
6570 err_msg = _("unsupported with Intel mnemonic");
6571 break;
6572 case unsupported_syntax:
6573 err_msg = _("unsupported syntax");
6574 break;
6575 case unsupported:
35262a23 6576 as_bad (_("unsupported instruction `%s'"),
10efe3f6
L
6577 current_templates->start->name);
6578 return NULL;
6c30d220
L
6579 case invalid_vsib_address:
6580 err_msg = _("invalid VSIB address");
6581 break;
7bab8ab5
JB
6582 case invalid_vector_register_set:
6583 err_msg = _("mask, index, and destination registers must be distinct");
6584 break;
6c30d220
L
6585 case unsupported_vector_index_register:
6586 err_msg = _("unsupported vector index register");
6587 break;
43234a1e
L
6588 case unsupported_broadcast:
6589 err_msg = _("unsupported broadcast");
6590 break;
43234a1e
L
6591 case broadcast_needed:
6592 err_msg = _("broadcast is needed for operand of such type");
6593 break;
6594 case unsupported_masking:
6595 err_msg = _("unsupported masking");
6596 break;
6597 case mask_not_on_destination:
6598 err_msg = _("mask not on destination operand");
6599 break;
6600 case no_default_mask:
6601 err_msg = _("default mask isn't allowed");
6602 break;
6603 case unsupported_rc_sae:
6604 err_msg = _("unsupported static rounding/sae");
6605 break;
6606 case rc_sae_operand_not_last_imm:
6607 if (intel_syntax)
6608 err_msg = _("RC/SAE operand must precede immediate operands");
6609 else
6610 err_msg = _("RC/SAE operand must follow immediate operands");
6611 break;
6612 case invalid_register_operand:
6613 err_msg = _("invalid register operand");
6614 break;
a65babc9
L
6615 }
6616 as_bad (_("%s for `%s'"), err_msg,
891edac4 6617 current_templates->start->name);
fa99fab2 6618 return NULL;
29b0f896 6619 }
252b5132 6620
29b0f896
AM
6621 if (!quiet_warnings)
6622 {
6623 if (!intel_syntax
0cfa3eb3 6624 && (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE)))
6f2f06be 6625 as_warn (_("indirect %s without `*'"), t->name);
29b0f896 6626
40fb9820 6627 if (t->opcode_modifier.isprefix
3cd7f3e3 6628 && t->opcode_modifier.mnemonicsize == IGNORESIZE)
29b0f896
AM
6629 {
6630 /* Warn them that a data or address size prefix doesn't
6631 affect assembly of the next line of code. */
6632 as_warn (_("stand-alone `%s' prefix"), t->name);
6633 }
6634 }
6635
6636 /* Copy the template we found. */
6637 i.tm = *t;
539e75ad
L
6638
6639 if (addr_prefix_disp != -1)
6640 i.tm.operand_types[addr_prefix_disp]
6641 = operand_types[addr_prefix_disp];
6642
29b0f896
AM
6643 if (found_reverse_match)
6644 {
dfd69174
JB
6645 /* If we found a reverse match we must alter the opcode direction
6646 bit and clear/flip the regmem modifier one. found_reverse_match
6647 holds bits to change (different for int & float insns). */
29b0f896
AM
6648
6649 i.tm.base_opcode ^= found_reverse_match;
6650
f5eb1d70
JB
6651 i.tm.operand_types[0] = operand_types[i.operands - 1];
6652 i.tm.operand_types[i.operands - 1] = operand_types[0];
dfd69174
JB
6653
6654 /* Certain SIMD insns have their load forms specified in the opcode
6655 table, and hence we need to _set_ RegMem instead of clearing it.
6656 We need to avoid setting the bit though on insns like KMOVW. */
6657 i.tm.opcode_modifier.regmem
6658 = i.tm.opcode_modifier.modrm && i.tm.opcode_modifier.d
6659 && i.tm.operands > 2U - i.tm.opcode_modifier.sse2avx
6660 && !i.tm.opcode_modifier.regmem;
29b0f896
AM
6661 }
6662
fa99fab2 6663 return t;
29b0f896
AM
6664}
6665
6666static int
e3bb37b5 6667check_string (void)
29b0f896 6668{
51c8edf6
JB
6669 unsigned int es_op = i.tm.opcode_modifier.isstring - IS_STRING_ES_OP0;
6670 unsigned int op = i.tm.operand_types[0].bitfield.baseindex ? es_op : 0;
8dc0818e 6671
51c8edf6 6672 if (i.seg[op] != NULL && i.seg[op] != &es)
29b0f896 6673 {
51c8edf6
JB
6674 as_bad (_("`%s' operand %u must use `%ses' segment"),
6675 i.tm.name,
6676 intel_syntax ? i.tm.operands - es_op : es_op + 1,
6677 register_prefix);
6678 return 0;
29b0f896 6679 }
51c8edf6
JB
6680
6681 /* There's only ever one segment override allowed per instruction.
6682 This instruction possibly has a legal segment override on the
6683 second operand, so copy the segment to where non-string
6684 instructions store it, allowing common code. */
6685 i.seg[op] = i.seg[1];
6686
29b0f896
AM
6687 return 1;
6688}
6689
6690static int
543613e9 6691process_suffix (void)
29b0f896
AM
6692{
6693 /* If matched instruction specifies an explicit instruction mnemonic
6694 suffix, use it. */
673fe0f0 6695 if (i.tm.opcode_modifier.size == SIZE16)
40fb9820 6696 i.suffix = WORD_MNEM_SUFFIX;
673fe0f0 6697 else if (i.tm.opcode_modifier.size == SIZE32)
40fb9820 6698 i.suffix = LONG_MNEM_SUFFIX;
673fe0f0 6699 else if (i.tm.opcode_modifier.size == SIZE64)
40fb9820 6700 i.suffix = QWORD_MNEM_SUFFIX;
13e600d0 6701 else if (i.reg_operands
c8f8eebc
JB
6702 && (i.operands > 1 || i.types[0].bitfield.class == Reg)
6703 && !i.tm.opcode_modifier.addrprefixopreg)
29b0f896 6704 {
65fca059
JB
6705 unsigned int numop = i.operands;
6706
6707 /* movsx/movzx want only their source operand considered here, for the
6708 ambiguity checking below. The suffix will be replaced afterwards
6709 to represent the destination (register). */
6710 if (((i.tm.base_opcode | 8) == 0xfbe && i.tm.opcode_modifier.w)
6711 || (i.tm.base_opcode == 0x63 && i.tm.cpu_flags.bitfield.cpu64))
6712 --i.operands;
6713
643bb870
JB
6714 /* crc32 needs REX.W set regardless of suffix / source operand size. */
6715 if (i.tm.base_opcode == 0xf20f38f0
6716 && i.tm.operand_types[1].bitfield.qword)
6717 i.rex |= REX_W;
6718
29b0f896 6719 /* If there's no instruction mnemonic suffix we try to invent one
13e600d0 6720 based on GPR operands. */
29b0f896
AM
6721 if (!i.suffix)
6722 {
6723 /* We take i.suffix from the last register operand specified,
6724 Destination register type is more significant than source
381d071f
L
6725 register type. crc32 in SSE4.2 prefers source register
6726 type. */
1a035124 6727 unsigned int op = i.tm.base_opcode != 0xf20f38f0 ? i.operands : 1;
20592a94 6728
1a035124
JB
6729 while (op--)
6730 if (i.tm.operand_types[op].bitfield.instance == InstanceNone
6731 || i.tm.operand_types[op].bitfield.instance == Accum)
6732 {
6733 if (i.types[op].bitfield.class != Reg)
6734 continue;
6735 if (i.types[op].bitfield.byte)
6736 i.suffix = BYTE_MNEM_SUFFIX;
6737 else if (i.types[op].bitfield.word)
6738 i.suffix = WORD_MNEM_SUFFIX;
6739 else if (i.types[op].bitfield.dword)
6740 i.suffix = LONG_MNEM_SUFFIX;
6741 else if (i.types[op].bitfield.qword)
6742 i.suffix = QWORD_MNEM_SUFFIX;
6743 else
6744 continue;
6745 break;
6746 }
65fca059
JB
6747
6748 /* As an exception, movsx/movzx silently default to a byte source
6749 in AT&T mode. */
6750 if ((i.tm.base_opcode | 8) == 0xfbe && i.tm.opcode_modifier.w
6751 && !i.suffix && !intel_syntax)
6752 i.suffix = BYTE_MNEM_SUFFIX;
29b0f896
AM
6753 }
6754 else if (i.suffix == BYTE_MNEM_SUFFIX)
6755 {
2eb952a4 6756 if (intel_syntax
3cd7f3e3 6757 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
2eb952a4
L
6758 && i.tm.opcode_modifier.no_bsuf)
6759 i.suffix = 0;
6760 else if (!check_byte_reg ())
29b0f896
AM
6761 return 0;
6762 }
6763 else if (i.suffix == LONG_MNEM_SUFFIX)
6764 {
2eb952a4 6765 if (intel_syntax
3cd7f3e3 6766 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
9f123b91
JB
6767 && i.tm.opcode_modifier.no_lsuf
6768 && !i.tm.opcode_modifier.todword
6769 && !i.tm.opcode_modifier.toqword)
2eb952a4
L
6770 i.suffix = 0;
6771 else if (!check_long_reg ())
29b0f896
AM
6772 return 0;
6773 }
6774 else if (i.suffix == QWORD_MNEM_SUFFIX)
6775 {
955e1e6a 6776 if (intel_syntax
3cd7f3e3 6777 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
9f123b91
JB
6778 && i.tm.opcode_modifier.no_qsuf
6779 && !i.tm.opcode_modifier.todword
6780 && !i.tm.opcode_modifier.toqword)
955e1e6a
L
6781 i.suffix = 0;
6782 else if (!check_qword_reg ())
29b0f896
AM
6783 return 0;
6784 }
6785 else if (i.suffix == WORD_MNEM_SUFFIX)
6786 {
2eb952a4 6787 if (intel_syntax
3cd7f3e3 6788 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
2eb952a4
L
6789 && i.tm.opcode_modifier.no_wsuf)
6790 i.suffix = 0;
6791 else if (!check_word_reg ())
29b0f896
AM
6792 return 0;
6793 }
3cd7f3e3
L
6794 else if (intel_syntax
6795 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE)
29b0f896
AM
6796 /* Do nothing if the instruction is going to ignore the prefix. */
6797 ;
6798 else
6799 abort ();
65fca059
JB
6800
6801 /* Undo the movsx/movzx change done above. */
6802 i.operands = numop;
29b0f896 6803 }
3cd7f3e3
L
6804 else if (i.tm.opcode_modifier.mnemonicsize == DEFAULTSIZE
6805 && !i.suffix)
29b0f896 6806 {
13e600d0
JB
6807 i.suffix = stackop_size;
6808 if (stackop_size == LONG_MNEM_SUFFIX)
06f74c5c
L
6809 {
6810 /* stackop_size is set to LONG_MNEM_SUFFIX for the
6811 .code16gcc directive to support 16-bit mode with
6812 32-bit address. For IRET without a suffix, generate
6813 16-bit IRET (opcode 0xcf) to return from an interrupt
6814 handler. */
13e600d0
JB
6815 if (i.tm.base_opcode == 0xcf)
6816 {
6817 i.suffix = WORD_MNEM_SUFFIX;
6818 as_warn (_("generating 16-bit `iret' for .code16gcc directive"));
6819 }
6820 /* Warn about changed behavior for segment register push/pop. */
6821 else if ((i.tm.base_opcode | 1) == 0x07)
6822 as_warn (_("generating 32-bit `%s', unlike earlier gas versions"),
6823 i.tm.name);
06f74c5c 6824 }
29b0f896 6825 }
c006a730 6826 else if (!i.suffix
0cfa3eb3
JB
6827 && (i.tm.opcode_modifier.jump == JUMP_ABSOLUTE
6828 || i.tm.opcode_modifier.jump == JUMP_BYTE
6829 || i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT
64e74474
AM
6830 || (i.tm.base_opcode == 0x0f01 /* [ls][gi]dt */
6831 && i.tm.extension_opcode <= 3)))
9306ca4a
JB
6832 {
6833 switch (flag_code)
6834 {
6835 case CODE_64BIT:
40fb9820 6836 if (!i.tm.opcode_modifier.no_qsuf)
9306ca4a 6837 {
828c2a25
JB
6838 if (i.tm.opcode_modifier.jump == JUMP_BYTE
6839 || i.tm.opcode_modifier.no_lsuf)
6840 i.suffix = QWORD_MNEM_SUFFIX;
9306ca4a
JB
6841 break;
6842 }
1a0670f3 6843 /* Fall through. */
9306ca4a 6844 case CODE_32BIT:
40fb9820 6845 if (!i.tm.opcode_modifier.no_lsuf)
9306ca4a
JB
6846 i.suffix = LONG_MNEM_SUFFIX;
6847 break;
6848 case CODE_16BIT:
40fb9820 6849 if (!i.tm.opcode_modifier.no_wsuf)
9306ca4a
JB
6850 i.suffix = WORD_MNEM_SUFFIX;
6851 break;
6852 }
6853 }
252b5132 6854
c006a730 6855 if (!i.suffix
3cd7f3e3 6856 && (i.tm.opcode_modifier.mnemonicsize != DEFAULTSIZE
873494c8
JB
6857 /* Also cover lret/retf/iret in 64-bit mode. */
6858 || (flag_code == CODE_64BIT
6859 && !i.tm.opcode_modifier.no_lsuf
6860 && !i.tm.opcode_modifier.no_qsuf))
3cd7f3e3 6861 && i.tm.opcode_modifier.mnemonicsize != IGNORESIZE
62b3f548
JB
6862 /* Accept FLDENV et al without suffix. */
6863 && (i.tm.opcode_modifier.no_ssuf || i.tm.opcode_modifier.floatmf))
29b0f896 6864 {
6c0946d0 6865 unsigned int suffixes, evex = 0;
c006a730
JB
6866
6867 suffixes = !i.tm.opcode_modifier.no_bsuf;
6868 if (!i.tm.opcode_modifier.no_wsuf)
6869 suffixes |= 1 << 1;
6870 if (!i.tm.opcode_modifier.no_lsuf)
6871 suffixes |= 1 << 2;
6872 if (!i.tm.opcode_modifier.no_ldsuf)
6873 suffixes |= 1 << 3;
6874 if (!i.tm.opcode_modifier.no_ssuf)
6875 suffixes |= 1 << 4;
6876 if (flag_code == CODE_64BIT && !i.tm.opcode_modifier.no_qsuf)
6877 suffixes |= 1 << 5;
6878
6c0946d0
JB
6879 /* For [XYZ]MMWORD operands inspect operand sizes. While generally
6880 also suitable for AT&T syntax mode, it was requested that this be
6881 restricted to just Intel syntax. */
b9915cbc 6882 if (intel_syntax && is_any_vex_encoding (&i.tm) && !i.broadcast)
6c0946d0 6883 {
b9915cbc 6884 unsigned int op;
6c0946d0 6885
b9915cbc 6886 for (op = 0; op < i.tm.operands; ++op)
6c0946d0 6887 {
b9915cbc
JB
6888 if (is_evex_encoding (&i.tm)
6889 && !cpu_arch_flags.bitfield.cpuavx512vl)
6c0946d0 6890 {
b9915cbc
JB
6891 if (i.tm.operand_types[op].bitfield.ymmword)
6892 i.tm.operand_types[op].bitfield.xmmword = 0;
6893 if (i.tm.operand_types[op].bitfield.zmmword)
6894 i.tm.operand_types[op].bitfield.ymmword = 0;
6895 if (!i.tm.opcode_modifier.evex
6896 || i.tm.opcode_modifier.evex == EVEXDYN)
6897 i.tm.opcode_modifier.evex = EVEX512;
6898 }
6c0946d0 6899
b9915cbc
JB
6900 if (i.tm.operand_types[op].bitfield.xmmword
6901 + i.tm.operand_types[op].bitfield.ymmword
6902 + i.tm.operand_types[op].bitfield.zmmword < 2)
6903 continue;
6c0946d0 6904
b9915cbc
JB
6905 /* Any properly sized operand disambiguates the insn. */
6906 if (i.types[op].bitfield.xmmword
6907 || i.types[op].bitfield.ymmword
6908 || i.types[op].bitfield.zmmword)
6909 {
6910 suffixes &= ~(7 << 6);
6911 evex = 0;
6912 break;
6913 }
6c0946d0 6914
b9915cbc
JB
6915 if ((i.flags[op] & Operand_Mem)
6916 && i.tm.operand_types[op].bitfield.unspecified)
6917 {
6918 if (i.tm.operand_types[op].bitfield.xmmword)
6919 suffixes |= 1 << 6;
6920 if (i.tm.operand_types[op].bitfield.ymmword)
6921 suffixes |= 1 << 7;
6922 if (i.tm.operand_types[op].bitfield.zmmword)
6923 suffixes |= 1 << 8;
6924 if (is_evex_encoding (&i.tm))
6925 evex = EVEX512;
6c0946d0
JB
6926 }
6927 }
6928 }
6929
6930 /* Are multiple suffixes / operand sizes allowed? */
c006a730 6931 if (suffixes & (suffixes - 1))
9306ca4a 6932 {
873494c8 6933 if (intel_syntax
3cd7f3e3 6934 && (i.tm.opcode_modifier.mnemonicsize != DEFAULTSIZE
873494c8 6935 || operand_check == check_error))
9306ca4a 6936 {
c006a730 6937 as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
9306ca4a
JB
6938 return 0;
6939 }
c006a730 6940 if (operand_check == check_error)
9306ca4a 6941 {
c006a730
JB
6942 as_bad (_("no instruction mnemonic suffix given and "
6943 "no register operands; can't size `%s'"), i.tm.name);
9306ca4a
JB
6944 return 0;
6945 }
c006a730 6946 if (operand_check == check_warning)
873494c8
JB
6947 as_warn (_("%s; using default for `%s'"),
6948 intel_syntax
6949 ? _("ambiguous operand size")
6950 : _("no instruction mnemonic suffix given and "
6951 "no register operands"),
6952 i.tm.name);
c006a730
JB
6953
6954 if (i.tm.opcode_modifier.floatmf)
6955 i.suffix = SHORT_MNEM_SUFFIX;
65fca059
JB
6956 else if ((i.tm.base_opcode | 8) == 0xfbe
6957 || (i.tm.base_opcode == 0x63
6958 && i.tm.cpu_flags.bitfield.cpu64))
6959 /* handled below */;
6c0946d0
JB
6960 else if (evex)
6961 i.tm.opcode_modifier.evex = evex;
c006a730
JB
6962 else if (flag_code == CODE_16BIT)
6963 i.suffix = WORD_MNEM_SUFFIX;
1a035124 6964 else if (!i.tm.opcode_modifier.no_lsuf)
c006a730 6965 i.suffix = LONG_MNEM_SUFFIX;
1a035124
JB
6966 else
6967 i.suffix = QWORD_MNEM_SUFFIX;
9306ca4a 6968 }
29b0f896 6969 }
252b5132 6970
65fca059
JB
6971 if ((i.tm.base_opcode | 8) == 0xfbe
6972 || (i.tm.base_opcode == 0x63 && i.tm.cpu_flags.bitfield.cpu64))
6973 {
6974 /* In Intel syntax, movsx/movzx must have a "suffix" (checked above).
6975 In AT&T syntax, if there is no suffix (warned about above), the default
6976 will be byte extension. */
6977 if (i.tm.opcode_modifier.w && i.suffix && i.suffix != BYTE_MNEM_SUFFIX)
6978 i.tm.base_opcode |= 1;
6979
6980 /* For further processing, the suffix should represent the destination
6981 (register). This is already the case when one was used with
6982 mov[sz][bw]*, but we need to replace it for mov[sz]x, or if there was
6983 no suffix to begin with. */
6984 if (i.tm.opcode_modifier.w || i.tm.base_opcode == 0x63 || !i.suffix)
6985 {
6986 if (i.types[1].bitfield.word)
6987 i.suffix = WORD_MNEM_SUFFIX;
6988 else if (i.types[1].bitfield.qword)
6989 i.suffix = QWORD_MNEM_SUFFIX;
6990 else
6991 i.suffix = LONG_MNEM_SUFFIX;
6992
6993 i.tm.opcode_modifier.w = 0;
6994 }
6995 }
6996
50128d0c
JB
6997 if (!i.tm.opcode_modifier.modrm && i.reg_operands && i.tm.operands < 3)
6998 i.short_form = (i.tm.operand_types[0].bitfield.class == Reg)
6999 != (i.tm.operand_types[1].bitfield.class == Reg);
7000
d2224064
JB
7001 /* Change the opcode based on the operand size given by i.suffix. */
7002 switch (i.suffix)
29b0f896 7003 {
d2224064
JB
7004 /* Size floating point instruction. */
7005 case LONG_MNEM_SUFFIX:
7006 if (i.tm.opcode_modifier.floatmf)
7007 {
7008 i.tm.base_opcode ^= 4;
7009 break;
7010 }
7011 /* fall through */
7012 case WORD_MNEM_SUFFIX:
7013 case QWORD_MNEM_SUFFIX:
29b0f896 7014 /* It's not a byte, select word/dword operation. */
40fb9820 7015 if (i.tm.opcode_modifier.w)
29b0f896 7016 {
50128d0c 7017 if (i.short_form)
29b0f896
AM
7018 i.tm.base_opcode |= 8;
7019 else
7020 i.tm.base_opcode |= 1;
7021 }
d2224064
JB
7022 /* fall through */
7023 case SHORT_MNEM_SUFFIX:
29b0f896
AM
7024 /* Now select between word & dword operations via the operand
7025 size prefix, except for instructions that will ignore this
7026 prefix anyway. */
c8f8eebc 7027 if (i.suffix != QWORD_MNEM_SUFFIX
3cd7f3e3 7028 && i.tm.opcode_modifier.mnemonicsize != IGNORESIZE
c8f8eebc
JB
7029 && !i.tm.opcode_modifier.floatmf
7030 && !is_any_vex_encoding (&i.tm)
7031 && ((i.suffix == LONG_MNEM_SUFFIX) == (flag_code == CODE_16BIT)
7032 || (flag_code == CODE_64BIT
7033 && i.tm.opcode_modifier.jump == JUMP_BYTE)))
24eab124
AM
7034 {
7035 unsigned int prefix = DATA_PREFIX_OPCODE;
543613e9 7036
0cfa3eb3 7037 if (i.tm.opcode_modifier.jump == JUMP_BYTE) /* jcxz, loop */
29b0f896 7038 prefix = ADDR_PREFIX_OPCODE;
252b5132 7039
29b0f896
AM
7040 if (!add_prefix (prefix))
7041 return 0;
24eab124 7042 }
252b5132 7043
29b0f896
AM
7044 /* Set mode64 for an operand. */
7045 if (i.suffix == QWORD_MNEM_SUFFIX
9146926a 7046 && flag_code == CODE_64BIT
d2224064 7047 && !i.tm.opcode_modifier.norex64
4ed21b58 7048 && !i.tm.opcode_modifier.vexw
46e883c5 7049 /* Special case for xchg %rax,%rax. It is NOP and doesn't
d2224064
JB
7050 need rex64. */
7051 && ! (i.operands == 2
7052 && i.tm.base_opcode == 0x90
7053 && i.tm.extension_opcode == None
75e5731b
JB
7054 && i.types[0].bitfield.instance == Accum
7055 && i.types[0].bitfield.qword
7056 && i.types[1].bitfield.instance == Accum
7057 && i.types[1].bitfield.qword))
d2224064 7058 i.rex |= REX_W;
3e73aa7c 7059
d2224064 7060 break;
29b0f896 7061 }
7ecd2f8b 7062
c8f8eebc 7063 if (i.tm.opcode_modifier.addrprefixopreg)
c0a30a9f 7064 {
c8f8eebc
JB
7065 gas_assert (!i.suffix);
7066 gas_assert (i.reg_operands);
c0a30a9f 7067
c8f8eebc
JB
7068 if (i.tm.operand_types[0].bitfield.instance == Accum
7069 || i.operands == 1)
7070 {
7071 /* The address size override prefix changes the size of the
7072 first operand. */
7073 if (flag_code == CODE_64BIT
7074 && i.op[0].regs->reg_type.bitfield.word)
7075 {
7076 as_bad (_("16-bit addressing unavailable for `%s'"),
7077 i.tm.name);
7078 return 0;
7079 }
7080
7081 if ((flag_code == CODE_32BIT
7082 ? i.op[0].regs->reg_type.bitfield.word
7083 : i.op[0].regs->reg_type.bitfield.dword)
7084 && !add_prefix (ADDR_PREFIX_OPCODE))
7085 return 0;
7086 }
c0a30a9f
L
7087 else
7088 {
c8f8eebc
JB
7089 /* Check invalid register operand when the address size override
7090 prefix changes the size of register operands. */
7091 unsigned int op;
7092 enum { need_word, need_dword, need_qword } need;
7093
7094 if (flag_code == CODE_32BIT)
7095 need = i.prefix[ADDR_PREFIX] ? need_word : need_dword;
7096 else if (i.prefix[ADDR_PREFIX])
c0a30a9f
L
7097 need = need_dword;
7098 else
7099 need = flag_code == CODE_64BIT ? need_qword : need_word;
c0a30a9f 7100
c8f8eebc
JB
7101 for (op = 0; op < i.operands; op++)
7102 {
7103 if (i.types[op].bitfield.class != Reg)
7104 continue;
7105
7106 switch (need)
7107 {
7108 case need_word:
7109 if (i.op[op].regs->reg_type.bitfield.word)
7110 continue;
7111 break;
7112 case need_dword:
7113 if (i.op[op].regs->reg_type.bitfield.dword)
7114 continue;
7115 break;
7116 case need_qword:
7117 if (i.op[op].regs->reg_type.bitfield.qword)
7118 continue;
7119 break;
7120 }
7121
7122 as_bad (_("invalid register operand size for `%s'"),
7123 i.tm.name);
7124 return 0;
7125 }
7126 }
c0a30a9f
L
7127 }
7128
29b0f896
AM
7129 return 1;
7130}
3e73aa7c 7131
29b0f896 7132static int
543613e9 7133check_byte_reg (void)
29b0f896
AM
7134{
7135 int op;
543613e9 7136
29b0f896
AM
7137 for (op = i.operands; --op >= 0;)
7138 {
dc821c5f 7139 /* Skip non-register operands. */
bab6aec1 7140 if (i.types[op].bitfield.class != Reg)
dc821c5f
JB
7141 continue;
7142
29b0f896
AM
7143 /* If this is an eight bit register, it's OK. If it's the 16 or
7144 32 bit version of an eight bit register, we will just use the
7145 low portion, and that's OK too. */
dc821c5f 7146 if (i.types[op].bitfield.byte)
29b0f896
AM
7147 continue;
7148
5a819eb9 7149 /* I/O port address operands are OK too. */
75e5731b
JB
7150 if (i.tm.operand_types[op].bitfield.instance == RegD
7151 && i.tm.operand_types[op].bitfield.word)
5a819eb9
JB
7152 continue;
7153
9706160a
JB
7154 /* crc32 only wants its source operand checked here. */
7155 if (i.tm.base_opcode == 0xf20f38f0 && op)
9344ff29
L
7156 continue;
7157
29b0f896 7158 /* Any other register is bad. */
73c76375
JB
7159 as_bad (_("`%s%s' not allowed with `%s%c'"),
7160 register_prefix, i.op[op].regs->reg_name,
7161 i.tm.name, i.suffix);
7162 return 0;
29b0f896
AM
7163 }
7164 return 1;
7165}
7166
7167static int
e3bb37b5 7168check_long_reg (void)
29b0f896
AM
7169{
7170 int op;
7171
7172 for (op = i.operands; --op >= 0;)
dc821c5f 7173 /* Skip non-register operands. */
bab6aec1 7174 if (i.types[op].bitfield.class != Reg)
dc821c5f 7175 continue;
29b0f896
AM
7176 /* Reject eight bit registers, except where the template requires
7177 them. (eg. movzb) */
dc821c5f 7178 else if (i.types[op].bitfield.byte
bab6aec1 7179 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7180 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
7181 && (i.tm.operand_types[op].bitfield.word
7182 || i.tm.operand_types[op].bitfield.dword))
29b0f896 7183 {
a540244d
L
7184 as_bad (_("`%s%s' not allowed with `%s%c'"),
7185 register_prefix,
29b0f896
AM
7186 i.op[op].regs->reg_name,
7187 i.tm.name,
7188 i.suffix);
7189 return 0;
7190 }
be4c5e58
L
7191 /* Error if the e prefix on a general reg is missing. */
7192 else if (i.types[op].bitfield.word
bab6aec1 7193 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7194 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7195 && i.tm.operand_types[op].bitfield.dword)
29b0f896 7196 {
be4c5e58
L
7197 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
7198 register_prefix, i.op[op].regs->reg_name,
7199 i.suffix);
7200 return 0;
252b5132 7201 }
e4630f71 7202 /* Warn if the r prefix on a general reg is present. */
dc821c5f 7203 else if (i.types[op].bitfield.qword
bab6aec1 7204 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7205 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7206 && i.tm.operand_types[op].bitfield.dword)
252b5132 7207 {
34828aad 7208 if (intel_syntax
65fca059 7209 && i.tm.opcode_modifier.toqword
3528c362 7210 && i.types[0].bitfield.class != RegSIMD)
34828aad 7211 {
ca61edf2 7212 /* Convert to QWORD. We want REX byte. */
34828aad
L
7213 i.suffix = QWORD_MNEM_SUFFIX;
7214 }
7215 else
7216 {
2b5d6a91 7217 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
7218 register_prefix, i.op[op].regs->reg_name,
7219 i.suffix);
7220 return 0;
7221 }
29b0f896
AM
7222 }
7223 return 1;
7224}
252b5132 7225
29b0f896 7226static int
e3bb37b5 7227check_qword_reg (void)
29b0f896
AM
7228{
7229 int op;
252b5132 7230
29b0f896 7231 for (op = i.operands; --op >= 0; )
dc821c5f 7232 /* Skip non-register operands. */
bab6aec1 7233 if (i.types[op].bitfield.class != Reg)
dc821c5f 7234 continue;
29b0f896
AM
7235 /* Reject eight bit registers, except where the template requires
7236 them. (eg. movzb) */
dc821c5f 7237 else if (i.types[op].bitfield.byte
bab6aec1 7238 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7239 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
7240 && (i.tm.operand_types[op].bitfield.word
7241 || i.tm.operand_types[op].bitfield.dword))
29b0f896 7242 {
a540244d
L
7243 as_bad (_("`%s%s' not allowed with `%s%c'"),
7244 register_prefix,
29b0f896
AM
7245 i.op[op].regs->reg_name,
7246 i.tm.name,
7247 i.suffix);
7248 return 0;
7249 }
e4630f71 7250 /* Warn if the r prefix on a general reg is missing. */
dc821c5f
JB
7251 else if ((i.types[op].bitfield.word
7252 || i.types[op].bitfield.dword)
bab6aec1 7253 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7254 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7255 && i.tm.operand_types[op].bitfield.qword)
29b0f896
AM
7256 {
7257 /* Prohibit these changes in the 64bit mode, since the
7258 lowering is more complicated. */
34828aad 7259 if (intel_syntax
ca61edf2 7260 && i.tm.opcode_modifier.todword
3528c362 7261 && i.types[0].bitfield.class != RegSIMD)
34828aad 7262 {
ca61edf2 7263 /* Convert to DWORD. We don't want REX byte. */
34828aad
L
7264 i.suffix = LONG_MNEM_SUFFIX;
7265 }
7266 else
7267 {
2b5d6a91 7268 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
7269 register_prefix, i.op[op].regs->reg_name,
7270 i.suffix);
7271 return 0;
7272 }
252b5132 7273 }
29b0f896
AM
7274 return 1;
7275}
252b5132 7276
29b0f896 7277static int
e3bb37b5 7278check_word_reg (void)
29b0f896
AM
7279{
7280 int op;
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 }
9706160a
JB
7300 /* Error if the e or r prefix on a general reg is present. */
7301 else if ((i.types[op].bitfield.dword
dc821c5f 7302 || i.types[op].bitfield.qword)
bab6aec1 7303 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7304 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7305 && i.tm.operand_types[op].bitfield.word)
252b5132 7306 {
9706160a
JB
7307 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
7308 register_prefix, i.op[op].regs->reg_name,
7309 i.suffix);
7310 return 0;
29b0f896
AM
7311 }
7312 return 1;
7313}
252b5132 7314
29b0f896 7315static int
40fb9820 7316update_imm (unsigned int j)
29b0f896 7317{
bc0844ae 7318 i386_operand_type overlap = i.types[j];
40fb9820
L
7319 if ((overlap.bitfield.imm8
7320 || overlap.bitfield.imm8s
7321 || overlap.bitfield.imm16
7322 || overlap.bitfield.imm32
7323 || overlap.bitfield.imm32s
7324 || overlap.bitfield.imm64)
0dfbf9d7
L
7325 && !operand_type_equal (&overlap, &imm8)
7326 && !operand_type_equal (&overlap, &imm8s)
7327 && !operand_type_equal (&overlap, &imm16)
7328 && !operand_type_equal (&overlap, &imm32)
7329 && !operand_type_equal (&overlap, &imm32s)
7330 && !operand_type_equal (&overlap, &imm64))
29b0f896
AM
7331 {
7332 if (i.suffix)
7333 {
40fb9820
L
7334 i386_operand_type temp;
7335
0dfbf9d7 7336 operand_type_set (&temp, 0);
7ab9ffdd 7337 if (i.suffix == BYTE_MNEM_SUFFIX)
40fb9820
L
7338 {
7339 temp.bitfield.imm8 = overlap.bitfield.imm8;
7340 temp.bitfield.imm8s = overlap.bitfield.imm8s;
7341 }
7342 else if (i.suffix == WORD_MNEM_SUFFIX)
7343 temp.bitfield.imm16 = overlap.bitfield.imm16;
7344 else if (i.suffix == QWORD_MNEM_SUFFIX)
7345 {
7346 temp.bitfield.imm64 = overlap.bitfield.imm64;
7347 temp.bitfield.imm32s = overlap.bitfield.imm32s;
7348 }
7349 else
7350 temp.bitfield.imm32 = overlap.bitfield.imm32;
7351 overlap = temp;
29b0f896 7352 }
0dfbf9d7
L
7353 else if (operand_type_equal (&overlap, &imm16_32_32s)
7354 || operand_type_equal (&overlap, &imm16_32)
7355 || operand_type_equal (&overlap, &imm16_32s))
29b0f896 7356 {
40fb9820 7357 if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
65da13b5 7358 overlap = imm16;
40fb9820 7359 else
65da13b5 7360 overlap = imm32s;
29b0f896 7361 }
0dfbf9d7
L
7362 if (!operand_type_equal (&overlap, &imm8)
7363 && !operand_type_equal (&overlap, &imm8s)
7364 && !operand_type_equal (&overlap, &imm16)
7365 && !operand_type_equal (&overlap, &imm32)
7366 && !operand_type_equal (&overlap, &imm32s)
7367 && !operand_type_equal (&overlap, &imm64))
29b0f896 7368 {
4eed87de
AM
7369 as_bad (_("no instruction mnemonic suffix given; "
7370 "can't determine immediate size"));
29b0f896
AM
7371 return 0;
7372 }
7373 }
40fb9820 7374 i.types[j] = overlap;
29b0f896 7375
40fb9820
L
7376 return 1;
7377}
7378
7379static int
7380finalize_imm (void)
7381{
bc0844ae 7382 unsigned int j, n;
29b0f896 7383
bc0844ae
L
7384 /* Update the first 2 immediate operands. */
7385 n = i.operands > 2 ? 2 : i.operands;
7386 if (n)
7387 {
7388 for (j = 0; j < n; j++)
7389 if (update_imm (j) == 0)
7390 return 0;
40fb9820 7391
bc0844ae
L
7392 /* The 3rd operand can't be immediate operand. */
7393 gas_assert (operand_type_check (i.types[2], imm) == 0);
7394 }
29b0f896
AM
7395
7396 return 1;
7397}
7398
7399static int
e3bb37b5 7400process_operands (void)
29b0f896
AM
7401{
7402 /* Default segment register this instruction will use for memory
7403 accesses. 0 means unknown. This is only for optimizing out
7404 unnecessary segment overrides. */
7405 const seg_entry *default_seg = 0;
7406
2426c15f 7407 if (i.tm.opcode_modifier.sse2avx && i.tm.opcode_modifier.vexvvvv)
29b0f896 7408 {
91d6fa6a
NC
7409 unsigned int dupl = i.operands;
7410 unsigned int dest = dupl - 1;
9fcfb3d7
L
7411 unsigned int j;
7412
c0f3af97 7413 /* The destination must be an xmm register. */
9c2799c2 7414 gas_assert (i.reg_operands
91d6fa6a 7415 && MAX_OPERANDS > dupl
7ab9ffdd 7416 && operand_type_equal (&i.types[dest], &regxmm));
c0f3af97 7417
75e5731b 7418 if (i.tm.operand_types[0].bitfield.instance == Accum
1b54b8d7 7419 && i.tm.operand_types[0].bitfield.xmmword)
e2ec9d29 7420 {
8cd7925b 7421 if (i.tm.opcode_modifier.vexsources == VEX3SOURCES)
c0f3af97
L
7422 {
7423 /* Keep xmm0 for instructions with VEX prefix and 3
7424 sources. */
75e5731b 7425 i.tm.operand_types[0].bitfield.instance = InstanceNone;
3528c362 7426 i.tm.operand_types[0].bitfield.class = RegSIMD;
c0f3af97
L
7427 goto duplicate;
7428 }
e2ec9d29 7429 else
c0f3af97
L
7430 {
7431 /* We remove the first xmm0 and keep the number of
7432 operands unchanged, which in fact duplicates the
7433 destination. */
7434 for (j = 1; j < i.operands; j++)
7435 {
7436 i.op[j - 1] = i.op[j];
7437 i.types[j - 1] = i.types[j];
7438 i.tm.operand_types[j - 1] = i.tm.operand_types[j];
8dc0818e 7439 i.flags[j - 1] = i.flags[j];
c0f3af97
L
7440 }
7441 }
7442 }
7443 else if (i.tm.opcode_modifier.implicit1stxmm0)
7ab9ffdd 7444 {
91d6fa6a 7445 gas_assert ((MAX_OPERANDS - 1) > dupl
8cd7925b
L
7446 && (i.tm.opcode_modifier.vexsources
7447 == VEX3SOURCES));
c0f3af97
L
7448
7449 /* Add the implicit xmm0 for instructions with VEX prefix
7450 and 3 sources. */
7451 for (j = i.operands; j > 0; j--)
7452 {
7453 i.op[j] = i.op[j - 1];
7454 i.types[j] = i.types[j - 1];
7455 i.tm.operand_types[j] = i.tm.operand_types[j - 1];
8dc0818e 7456 i.flags[j] = i.flags[j - 1];
c0f3af97
L
7457 }
7458 i.op[0].regs
7459 = (const reg_entry *) hash_find (reg_hash, "xmm0");
7ab9ffdd 7460 i.types[0] = regxmm;
c0f3af97
L
7461 i.tm.operand_types[0] = regxmm;
7462
7463 i.operands += 2;
7464 i.reg_operands += 2;
7465 i.tm.operands += 2;
7466
91d6fa6a 7467 dupl++;
c0f3af97 7468 dest++;
91d6fa6a
NC
7469 i.op[dupl] = i.op[dest];
7470 i.types[dupl] = i.types[dest];
7471 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
8dc0818e 7472 i.flags[dupl] = i.flags[dest];
e2ec9d29 7473 }
c0f3af97
L
7474 else
7475 {
dc1e8a47 7476 duplicate:
c0f3af97
L
7477 i.operands++;
7478 i.reg_operands++;
7479 i.tm.operands++;
7480
91d6fa6a
NC
7481 i.op[dupl] = i.op[dest];
7482 i.types[dupl] = i.types[dest];
7483 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
8dc0818e 7484 i.flags[dupl] = i.flags[dest];
c0f3af97
L
7485 }
7486
7487 if (i.tm.opcode_modifier.immext)
7488 process_immext ();
7489 }
75e5731b 7490 else if (i.tm.operand_types[0].bitfield.instance == Accum
1b54b8d7 7491 && i.tm.operand_types[0].bitfield.xmmword)
c0f3af97
L
7492 {
7493 unsigned int j;
7494
9fcfb3d7
L
7495 for (j = 1; j < i.operands; j++)
7496 {
7497 i.op[j - 1] = i.op[j];
7498 i.types[j - 1] = i.types[j];
7499
7500 /* We need to adjust fields in i.tm since they are used by
7501 build_modrm_byte. */
7502 i.tm.operand_types [j - 1] = i.tm.operand_types [j];
8dc0818e
JB
7503
7504 i.flags[j - 1] = i.flags[j];
9fcfb3d7
L
7505 }
7506
e2ec9d29
L
7507 i.operands--;
7508 i.reg_operands--;
e2ec9d29
L
7509 i.tm.operands--;
7510 }
920d2ddc
IT
7511 else if (i.tm.opcode_modifier.implicitquadgroup)
7512 {
a477a8c4
JB
7513 unsigned int regnum, first_reg_in_group, last_reg_in_group;
7514
920d2ddc 7515 /* The second operand must be {x,y,z}mmN, where N is a multiple of 4. */
3528c362 7516 gas_assert (i.operands >= 2 && i.types[1].bitfield.class == RegSIMD);
a477a8c4
JB
7517 regnum = register_number (i.op[1].regs);
7518 first_reg_in_group = regnum & ~3;
7519 last_reg_in_group = first_reg_in_group + 3;
7520 if (regnum != first_reg_in_group)
7521 as_warn (_("source register `%s%s' implicitly denotes"
7522 " `%s%.3s%u' to `%s%.3s%u' source group in `%s'"),
7523 register_prefix, i.op[1].regs->reg_name,
7524 register_prefix, i.op[1].regs->reg_name, first_reg_in_group,
7525 register_prefix, i.op[1].regs->reg_name, last_reg_in_group,
7526 i.tm.name);
7527 }
e2ec9d29
L
7528 else if (i.tm.opcode_modifier.regkludge)
7529 {
7530 /* The imul $imm, %reg instruction is converted into
7531 imul $imm, %reg, %reg, and the clr %reg instruction
7532 is converted into xor %reg, %reg. */
7533
7534 unsigned int first_reg_op;
7535
7536 if (operand_type_check (i.types[0], reg))
7537 first_reg_op = 0;
7538 else
7539 first_reg_op = 1;
7540 /* Pretend we saw the extra register operand. */
9c2799c2 7541 gas_assert (i.reg_operands == 1
7ab9ffdd 7542 && i.op[first_reg_op + 1].regs == 0);
e2ec9d29
L
7543 i.op[first_reg_op + 1].regs = i.op[first_reg_op].regs;
7544 i.types[first_reg_op + 1] = i.types[first_reg_op];
7545 i.operands++;
7546 i.reg_operands++;
29b0f896
AM
7547 }
7548
85b80b0f 7549 if (i.tm.opcode_modifier.modrm)
29b0f896
AM
7550 {
7551 /* The opcode is completed (modulo i.tm.extension_opcode which
52271982
AM
7552 must be put into the modrm byte). Now, we make the modrm and
7553 index base bytes based on all the info we've collected. */
29b0f896
AM
7554
7555 default_seg = build_modrm_byte ();
7556 }
00cee14f 7557 else if (i.types[0].bitfield.class == SReg)
85b80b0f
JB
7558 {
7559 if (flag_code != CODE_64BIT
7560 ? i.tm.base_opcode == POP_SEG_SHORT
7561 && i.op[0].regs->reg_num == 1
7562 : (i.tm.base_opcode | 1) == POP_SEG386_SHORT
7563 && i.op[0].regs->reg_num < 4)
7564 {
7565 as_bad (_("you can't `%s %s%s'"),
7566 i.tm.name, register_prefix, i.op[0].regs->reg_name);
7567 return 0;
7568 }
7569 if ( i.op[0].regs->reg_num > 3 && i.tm.opcode_length == 1 )
7570 {
7571 i.tm.base_opcode ^= POP_SEG_SHORT ^ POP_SEG386_SHORT;
7572 i.tm.opcode_length = 2;
7573 }
7574 i.tm.base_opcode |= (i.op[0].regs->reg_num << 3);
7575 }
8a2ed489 7576 else if ((i.tm.base_opcode & ~0x3) == MOV_AX_DISP32)
29b0f896
AM
7577 {
7578 default_seg = &ds;
7579 }
40fb9820 7580 else if (i.tm.opcode_modifier.isstring)
29b0f896
AM
7581 {
7582 /* For the string instructions that allow a segment override
7583 on one of their operands, the default segment is ds. */
7584 default_seg = &ds;
7585 }
50128d0c 7586 else if (i.short_form)
85b80b0f
JB
7587 {
7588 /* The register or float register operand is in operand
7589 0 or 1. */
bab6aec1 7590 unsigned int op = i.tm.operand_types[0].bitfield.class != Reg;
85b80b0f
JB
7591
7592 /* Register goes in low 3 bits of opcode. */
7593 i.tm.base_opcode |= i.op[op].regs->reg_num;
7594 if ((i.op[op].regs->reg_flags & RegRex) != 0)
7595 i.rex |= REX_B;
7596 if (!quiet_warnings && i.tm.opcode_modifier.ugh)
7597 {
7598 /* Warn about some common errors, but press on regardless.
7599 The first case can be generated by gcc (<= 2.8.1). */
7600 if (i.operands == 2)
7601 {
7602 /* Reversed arguments on faddp, fsubp, etc. */
7603 as_warn (_("translating to `%s %s%s,%s%s'"), i.tm.name,
7604 register_prefix, i.op[!intel_syntax].regs->reg_name,
7605 register_prefix, i.op[intel_syntax].regs->reg_name);
7606 }
7607 else
7608 {
7609 /* Extraneous `l' suffix on fp insn. */
7610 as_warn (_("translating to `%s %s%s'"), i.tm.name,
7611 register_prefix, i.op[0].regs->reg_name);
7612 }
7613 }
7614 }
29b0f896 7615
514a8bb0 7616 if ((i.seg[0] || i.prefix[SEG_PREFIX])
514a8bb0
JB
7617 && i.tm.base_opcode == 0x8d /* lea */
7618 && !is_any_vex_encoding(&i.tm))
92334ad2
JB
7619 {
7620 if (!quiet_warnings)
7621 as_warn (_("segment override on `%s' is ineffectual"), i.tm.name);
7622 if (optimize)
7623 {
7624 i.seg[0] = NULL;
7625 i.prefix[SEG_PREFIX] = 0;
7626 }
7627 }
52271982
AM
7628
7629 /* If a segment was explicitly specified, and the specified segment
b6773884
JB
7630 is neither the default nor the one already recorded from a prefix,
7631 use an opcode prefix to select it. If we never figured out what
7632 the default segment is, then default_seg will be zero at this
7633 point, and the specified segment prefix will always be used. */
7634 if (i.seg[0]
7635 && i.seg[0] != default_seg
7636 && i.seg[0]->seg_prefix != i.prefix[SEG_PREFIX])
29b0f896
AM
7637 {
7638 if (!add_prefix (i.seg[0]->seg_prefix))
7639 return 0;
7640 }
7641 return 1;
7642}
7643
7644static const seg_entry *
e3bb37b5 7645build_modrm_byte (void)
29b0f896
AM
7646{
7647 const seg_entry *default_seg = 0;
c0f3af97 7648 unsigned int source, dest;
8cd7925b 7649 int vex_3_sources;
c0f3af97 7650
8cd7925b 7651 vex_3_sources = i.tm.opcode_modifier.vexsources == VEX3SOURCES;
c0f3af97
L
7652 if (vex_3_sources)
7653 {
91d6fa6a 7654 unsigned int nds, reg_slot;
4c2c6516 7655 expressionS *exp;
c0f3af97 7656
6b8d3588 7657 dest = i.operands - 1;
c0f3af97 7658 nds = dest - 1;
922d8de8 7659
a683cc34 7660 /* There are 2 kinds of instructions:
bed3d976 7661 1. 5 operands: 4 register operands or 3 register operands
9d3bf266 7662 plus 1 memory operand plus one Imm4 operand, VexXDS, and
bed3d976 7663 VexW0 or VexW1. The destination must be either XMM, YMM or
43234a1e 7664 ZMM register.
bed3d976 7665 2. 4 operands: 4 register operands or 3 register operands
2f1bada2 7666 plus 1 memory operand, with VexXDS. */
922d8de8 7667 gas_assert ((i.reg_operands == 4
bed3d976
JB
7668 || (i.reg_operands == 3 && i.mem_operands == 1))
7669 && i.tm.opcode_modifier.vexvvvv == VEXXDS
dcd7e323 7670 && i.tm.opcode_modifier.vexw
3528c362 7671 && i.tm.operand_types[dest].bitfield.class == RegSIMD);
a683cc34 7672
48db9223
JB
7673 /* If VexW1 is set, the first non-immediate operand is the source and
7674 the second non-immediate one is encoded in the immediate operand. */
7675 if (i.tm.opcode_modifier.vexw == VEXW1)
7676 {
7677 source = i.imm_operands;
7678 reg_slot = i.imm_operands + 1;
7679 }
7680 else
7681 {
7682 source = i.imm_operands + 1;
7683 reg_slot = i.imm_operands;
7684 }
7685
a683cc34 7686 if (i.imm_operands == 0)
bed3d976
JB
7687 {
7688 /* When there is no immediate operand, generate an 8bit
7689 immediate operand to encode the first operand. */
7690 exp = &im_expressions[i.imm_operands++];
7691 i.op[i.operands].imms = exp;
7692 i.types[i.operands] = imm8;
7693 i.operands++;
7694
3528c362 7695 gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD);
bed3d976
JB
7696 exp->X_op = O_constant;
7697 exp->X_add_number = register_number (i.op[reg_slot].regs) << 4;
43234a1e
L
7698 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
7699 }
922d8de8 7700 else
bed3d976 7701 {
9d3bf266
JB
7702 gas_assert (i.imm_operands == 1);
7703 gas_assert (fits_in_imm4 (i.op[0].imms->X_add_number));
7704 gas_assert (!i.tm.opcode_modifier.immext);
a683cc34 7705
9d3bf266
JB
7706 /* Turn on Imm8 again so that output_imm will generate it. */
7707 i.types[0].bitfield.imm8 = 1;
bed3d976 7708
3528c362 7709 gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD);
9d3bf266 7710 i.op[0].imms->X_add_number
bed3d976 7711 |= register_number (i.op[reg_slot].regs) << 4;
43234a1e 7712 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
bed3d976 7713 }
a683cc34 7714
3528c362 7715 gas_assert (i.tm.operand_types[nds].bitfield.class == RegSIMD);
dae39acc 7716 i.vex.register_specifier = i.op[nds].regs;
c0f3af97
L
7717 }
7718 else
7719 source = dest = 0;
29b0f896
AM
7720
7721 /* i.reg_operands MUST be the number of real register operands;
c0f3af97
L
7722 implicit registers do not count. If there are 3 register
7723 operands, it must be a instruction with VexNDS. For a
7724 instruction with VexNDD, the destination register is encoded
7725 in VEX prefix. If there are 4 register operands, it must be
7726 a instruction with VEX prefix and 3 sources. */
7ab9ffdd
L
7727 if (i.mem_operands == 0
7728 && ((i.reg_operands == 2
2426c15f 7729 && i.tm.opcode_modifier.vexvvvv <= VEXXDS)
7ab9ffdd 7730 || (i.reg_operands == 3
2426c15f 7731 && i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd 7732 || (i.reg_operands == 4 && vex_3_sources)))
29b0f896 7733 {
cab737b9
L
7734 switch (i.operands)
7735 {
7736 case 2:
7737 source = 0;
7738 break;
7739 case 3:
c81128dc
L
7740 /* When there are 3 operands, one of them may be immediate,
7741 which may be the first or the last operand. Otherwise,
c0f3af97
L
7742 the first operand must be shift count register (cl) or it
7743 is an instruction with VexNDS. */
9c2799c2 7744 gas_assert (i.imm_operands == 1
7ab9ffdd 7745 || (i.imm_operands == 0
2426c15f 7746 && (i.tm.opcode_modifier.vexvvvv == VEXXDS
75e5731b
JB
7747 || (i.types[0].bitfield.instance == RegC
7748 && i.types[0].bitfield.byte))));
40fb9820 7749 if (operand_type_check (i.types[0], imm)
75e5731b
JB
7750 || (i.types[0].bitfield.instance == RegC
7751 && i.types[0].bitfield.byte))
40fb9820
L
7752 source = 1;
7753 else
7754 source = 0;
cab737b9
L
7755 break;
7756 case 4:
368d64cc
L
7757 /* When there are 4 operands, the first two must be 8bit
7758 immediate operands. The source operand will be the 3rd
c0f3af97
L
7759 one.
7760
7761 For instructions with VexNDS, if the first operand
7762 an imm8, the source operand is the 2nd one. If the last
7763 operand is imm8, the source operand is the first one. */
9c2799c2 7764 gas_assert ((i.imm_operands == 2
7ab9ffdd
L
7765 && i.types[0].bitfield.imm8
7766 && i.types[1].bitfield.imm8)
2426c15f 7767 || (i.tm.opcode_modifier.vexvvvv == VEXXDS
7ab9ffdd
L
7768 && i.imm_operands == 1
7769 && (i.types[0].bitfield.imm8
43234a1e
L
7770 || i.types[i.operands - 1].bitfield.imm8
7771 || i.rounding)));
9f2670f2
L
7772 if (i.imm_operands == 2)
7773 source = 2;
7774 else
c0f3af97
L
7775 {
7776 if (i.types[0].bitfield.imm8)
7777 source = 1;
7778 else
7779 source = 0;
7780 }
c0f3af97
L
7781 break;
7782 case 5:
e771e7c9 7783 if (is_evex_encoding (&i.tm))
43234a1e
L
7784 {
7785 /* For EVEX instructions, when there are 5 operands, the
7786 first one must be immediate operand. If the second one
7787 is immediate operand, the source operand is the 3th
7788 one. If the last one is immediate operand, the source
7789 operand is the 2nd one. */
7790 gas_assert (i.imm_operands == 2
7791 && i.tm.opcode_modifier.sae
7792 && operand_type_check (i.types[0], imm));
7793 if (operand_type_check (i.types[1], imm))
7794 source = 2;
7795 else if (operand_type_check (i.types[4], imm))
7796 source = 1;
7797 else
7798 abort ();
7799 }
cab737b9
L
7800 break;
7801 default:
7802 abort ();
7803 }
7804
c0f3af97
L
7805 if (!vex_3_sources)
7806 {
7807 dest = source + 1;
7808
43234a1e
L
7809 /* RC/SAE operand could be between DEST and SRC. That happens
7810 when one operand is GPR and the other one is XMM/YMM/ZMM
7811 register. */
7812 if (i.rounding && i.rounding->operand == (int) dest)
7813 dest++;
7814
2426c15f 7815 if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
c0f3af97 7816 {
43234a1e 7817 /* For instructions with VexNDS, the register-only source
c5d0745b 7818 operand must be a 32/64bit integer, XMM, YMM, ZMM, or mask
dfd69174 7819 register. It is encoded in VEX prefix. */
f12dc422
L
7820
7821 i386_operand_type op;
7822 unsigned int vvvv;
7823
7824 /* Check register-only source operand when two source
7825 operands are swapped. */
7826 if (!i.tm.operand_types[source].bitfield.baseindex
7827 && i.tm.operand_types[dest].bitfield.baseindex)
7828 {
7829 vvvv = source;
7830 source = dest;
7831 }
7832 else
7833 vvvv = dest;
7834
7835 op = i.tm.operand_types[vvvv];
c0f3af97 7836 if ((dest + 1) >= i.operands
bab6aec1 7837 || ((op.bitfield.class != Reg
dc821c5f 7838 || (!op.bitfield.dword && !op.bitfield.qword))
3528c362 7839 && op.bitfield.class != RegSIMD
43234a1e 7840 && !operand_type_equal (&op, &regmask)))
c0f3af97 7841 abort ();
f12dc422 7842 i.vex.register_specifier = i.op[vvvv].regs;
c0f3af97
L
7843 dest++;
7844 }
7845 }
29b0f896
AM
7846
7847 i.rm.mode = 3;
dfd69174
JB
7848 /* One of the register operands will be encoded in the i.rm.reg
7849 field, the other in the combined i.rm.mode and i.rm.regmem
29b0f896
AM
7850 fields. If no form of this instruction supports a memory
7851 destination operand, then we assume the source operand may
7852 sometimes be a memory operand and so we need to store the
7853 destination in the i.rm.reg field. */
dfd69174 7854 if (!i.tm.opcode_modifier.regmem
40fb9820 7855 && operand_type_check (i.tm.operand_types[dest], anymem) == 0)
29b0f896
AM
7856 {
7857 i.rm.reg = i.op[dest].regs->reg_num;
7858 i.rm.regmem = i.op[source].regs->reg_num;
3528c362
JB
7859 if (i.op[dest].regs->reg_type.bitfield.class == RegMMX
7860 || i.op[source].regs->reg_type.bitfield.class == RegMMX)
b4a3a7b4 7861 i.has_regmmx = TRUE;
3528c362
JB
7862 else if (i.op[dest].regs->reg_type.bitfield.class == RegSIMD
7863 || i.op[source].regs->reg_type.bitfield.class == RegSIMD)
b4a3a7b4
L
7864 {
7865 if (i.types[dest].bitfield.zmmword
7866 || i.types[source].bitfield.zmmword)
7867 i.has_regzmm = TRUE;
7868 else if (i.types[dest].bitfield.ymmword
7869 || i.types[source].bitfield.ymmword)
7870 i.has_regymm = TRUE;
7871 else
7872 i.has_regxmm = TRUE;
7873 }
29b0f896 7874 if ((i.op[dest].regs->reg_flags & RegRex) != 0)
161a04f6 7875 i.rex |= REX_R;
43234a1e
L
7876 if ((i.op[dest].regs->reg_flags & RegVRex) != 0)
7877 i.vrex |= REX_R;
29b0f896 7878 if ((i.op[source].regs->reg_flags & RegRex) != 0)
161a04f6 7879 i.rex |= REX_B;
43234a1e
L
7880 if ((i.op[source].regs->reg_flags & RegVRex) != 0)
7881 i.vrex |= REX_B;
29b0f896
AM
7882 }
7883 else
7884 {
7885 i.rm.reg = i.op[source].regs->reg_num;
7886 i.rm.regmem = i.op[dest].regs->reg_num;
7887 if ((i.op[dest].regs->reg_flags & RegRex) != 0)
161a04f6 7888 i.rex |= REX_B;
43234a1e
L
7889 if ((i.op[dest].regs->reg_flags & RegVRex) != 0)
7890 i.vrex |= REX_B;
29b0f896 7891 if ((i.op[source].regs->reg_flags & RegRex) != 0)
161a04f6 7892 i.rex |= REX_R;
43234a1e
L
7893 if ((i.op[source].regs->reg_flags & RegVRex) != 0)
7894 i.vrex |= REX_R;
29b0f896 7895 }
e0c7f900 7896 if (flag_code != CODE_64BIT && (i.rex & REX_R))
c4a530c5 7897 {
4a5c67ed 7898 if (i.types[!i.tm.opcode_modifier.regmem].bitfield.class != RegCR)
c4a530c5 7899 abort ();
e0c7f900 7900 i.rex &= ~REX_R;
c4a530c5
JB
7901 add_prefix (LOCK_PREFIX_OPCODE);
7902 }
29b0f896
AM
7903 }
7904 else
7905 { /* If it's not 2 reg operands... */
c0f3af97
L
7906 unsigned int mem;
7907
29b0f896
AM
7908 if (i.mem_operands)
7909 {
7910 unsigned int fake_zero_displacement = 0;
99018f42 7911 unsigned int op;
4eed87de 7912
7ab9ffdd 7913 for (op = 0; op < i.operands; op++)
8dc0818e 7914 if (i.flags[op] & Operand_Mem)
7ab9ffdd 7915 break;
7ab9ffdd 7916 gas_assert (op < i.operands);
29b0f896 7917
6c30d220
L
7918 if (i.tm.opcode_modifier.vecsib)
7919 {
e968fc9b 7920 if (i.index_reg->reg_num == RegIZ)
6c30d220
L
7921 abort ();
7922
7923 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7924 if (!i.base_reg)
7925 {
7926 i.sib.base = NO_BASE_REGISTER;
7927 i.sib.scale = i.log2_scale_factor;
7928 i.types[op].bitfield.disp8 = 0;
7929 i.types[op].bitfield.disp16 = 0;
7930 i.types[op].bitfield.disp64 = 0;
43083a50 7931 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
6c30d220
L
7932 {
7933 /* Must be 32 bit */
7934 i.types[op].bitfield.disp32 = 1;
7935 i.types[op].bitfield.disp32s = 0;
7936 }
7937 else
7938 {
7939 i.types[op].bitfield.disp32 = 0;
7940 i.types[op].bitfield.disp32s = 1;
7941 }
7942 }
7943 i.sib.index = i.index_reg->reg_num;
7944 if ((i.index_reg->reg_flags & RegRex) != 0)
7945 i.rex |= REX_X;
43234a1e
L
7946 if ((i.index_reg->reg_flags & RegVRex) != 0)
7947 i.vrex |= REX_X;
6c30d220
L
7948 }
7949
29b0f896
AM
7950 default_seg = &ds;
7951
7952 if (i.base_reg == 0)
7953 {
7954 i.rm.mode = 0;
7955 if (!i.disp_operands)
9bb129e8 7956 fake_zero_displacement = 1;
29b0f896
AM
7957 if (i.index_reg == 0)
7958 {
73053c1f
JB
7959 i386_operand_type newdisp;
7960
6c30d220 7961 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896 7962 /* Operand is just <disp> */
20f0a1fc 7963 if (flag_code == CODE_64BIT)
29b0f896
AM
7964 {
7965 /* 64bit mode overwrites the 32bit absolute
7966 addressing by RIP relative addressing and
7967 absolute addressing is encoded by one of the
7968 redundant SIB forms. */
7969 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7970 i.sib.base = NO_BASE_REGISTER;
7971 i.sib.index = NO_INDEX_REGISTER;
73053c1f 7972 newdisp = (!i.prefix[ADDR_PREFIX] ? disp32s : disp32);
20f0a1fc 7973 }
fc225355
L
7974 else if ((flag_code == CODE_16BIT)
7975 ^ (i.prefix[ADDR_PREFIX] != 0))
20f0a1fc
NC
7976 {
7977 i.rm.regmem = NO_BASE_REGISTER_16;
73053c1f 7978 newdisp = disp16;
20f0a1fc
NC
7979 }
7980 else
7981 {
7982 i.rm.regmem = NO_BASE_REGISTER;
73053c1f 7983 newdisp = disp32;
29b0f896 7984 }
73053c1f
JB
7985 i.types[op] = operand_type_and_not (i.types[op], anydisp);
7986 i.types[op] = operand_type_or (i.types[op], newdisp);
29b0f896 7987 }
6c30d220 7988 else if (!i.tm.opcode_modifier.vecsib)
29b0f896 7989 {
6c30d220 7990 /* !i.base_reg && i.index_reg */
e968fc9b 7991 if (i.index_reg->reg_num == RegIZ)
db51cc60
L
7992 i.sib.index = NO_INDEX_REGISTER;
7993 else
7994 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
7995 i.sib.base = NO_BASE_REGISTER;
7996 i.sib.scale = i.log2_scale_factor;
7997 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
40fb9820
L
7998 i.types[op].bitfield.disp8 = 0;
7999 i.types[op].bitfield.disp16 = 0;
8000 i.types[op].bitfield.disp64 = 0;
43083a50 8001 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
40fb9820
L
8002 {
8003 /* Must be 32 bit */
8004 i.types[op].bitfield.disp32 = 1;
8005 i.types[op].bitfield.disp32s = 0;
8006 }
29b0f896 8007 else
40fb9820
L
8008 {
8009 i.types[op].bitfield.disp32 = 0;
8010 i.types[op].bitfield.disp32s = 1;
8011 }
29b0f896 8012 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 8013 i.rex |= REX_X;
29b0f896
AM
8014 }
8015 }
8016 /* RIP addressing for 64bit mode. */
e968fc9b 8017 else if (i.base_reg->reg_num == RegIP)
29b0f896 8018 {
6c30d220 8019 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896 8020 i.rm.regmem = NO_BASE_REGISTER;
40fb9820
L
8021 i.types[op].bitfield.disp8 = 0;
8022 i.types[op].bitfield.disp16 = 0;
8023 i.types[op].bitfield.disp32 = 0;
8024 i.types[op].bitfield.disp32s = 1;
8025 i.types[op].bitfield.disp64 = 0;
71903a11 8026 i.flags[op] |= Operand_PCrel;
20f0a1fc
NC
8027 if (! i.disp_operands)
8028 fake_zero_displacement = 1;
29b0f896 8029 }
dc821c5f 8030 else if (i.base_reg->reg_type.bitfield.word)
29b0f896 8031 {
6c30d220 8032 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896
AM
8033 switch (i.base_reg->reg_num)
8034 {
8035 case 3: /* (%bx) */
8036 if (i.index_reg == 0)
8037 i.rm.regmem = 7;
8038 else /* (%bx,%si) -> 0, or (%bx,%di) -> 1 */
8039 i.rm.regmem = i.index_reg->reg_num - 6;
8040 break;
8041 case 5: /* (%bp) */
8042 default_seg = &ss;
8043 if (i.index_reg == 0)
8044 {
8045 i.rm.regmem = 6;
40fb9820 8046 if (operand_type_check (i.types[op], disp) == 0)
29b0f896
AM
8047 {
8048 /* fake (%bp) into 0(%bp) */
b5014f7a 8049 i.types[op].bitfield.disp8 = 1;
252b5132 8050 fake_zero_displacement = 1;
29b0f896
AM
8051 }
8052 }
8053 else /* (%bp,%si) -> 2, or (%bp,%di) -> 3 */
8054 i.rm.regmem = i.index_reg->reg_num - 6 + 2;
8055 break;
8056 default: /* (%si) -> 4 or (%di) -> 5 */
8057 i.rm.regmem = i.base_reg->reg_num - 6 + 4;
8058 }
8059 i.rm.mode = mode_from_disp_size (i.types[op]);
8060 }
8061 else /* i.base_reg and 32/64 bit mode */
8062 {
8063 if (flag_code == CODE_64BIT
40fb9820
L
8064 && operand_type_check (i.types[op], disp))
8065 {
73053c1f
JB
8066 i.types[op].bitfield.disp16 = 0;
8067 i.types[op].bitfield.disp64 = 0;
40fb9820 8068 if (i.prefix[ADDR_PREFIX] == 0)
73053c1f
JB
8069 {
8070 i.types[op].bitfield.disp32 = 0;
8071 i.types[op].bitfield.disp32s = 1;
8072 }
40fb9820 8073 else
73053c1f
JB
8074 {
8075 i.types[op].bitfield.disp32 = 1;
8076 i.types[op].bitfield.disp32s = 0;
8077 }
40fb9820 8078 }
20f0a1fc 8079
6c30d220
L
8080 if (!i.tm.opcode_modifier.vecsib)
8081 i.rm.regmem = i.base_reg->reg_num;
29b0f896 8082 if ((i.base_reg->reg_flags & RegRex) != 0)
161a04f6 8083 i.rex |= REX_B;
29b0f896
AM
8084 i.sib.base = i.base_reg->reg_num;
8085 /* x86-64 ignores REX prefix bit here to avoid decoder
8086 complications. */
848930b2
JB
8087 if (!(i.base_reg->reg_flags & RegRex)
8088 && (i.base_reg->reg_num == EBP_REG_NUM
8089 || i.base_reg->reg_num == ESP_REG_NUM))
29b0f896 8090 default_seg = &ss;
848930b2 8091 if (i.base_reg->reg_num == 5 && i.disp_operands == 0)
29b0f896 8092 {
848930b2 8093 fake_zero_displacement = 1;
b5014f7a 8094 i.types[op].bitfield.disp8 = 1;
29b0f896
AM
8095 }
8096 i.sib.scale = i.log2_scale_factor;
8097 if (i.index_reg == 0)
8098 {
6c30d220 8099 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896
AM
8100 /* <disp>(%esp) becomes two byte modrm with no index
8101 register. We've already stored the code for esp
8102 in i.rm.regmem ie. ESCAPE_TO_TWO_BYTE_ADDRESSING.
8103 Any base register besides %esp will not use the
8104 extra modrm byte. */
8105 i.sib.index = NO_INDEX_REGISTER;
29b0f896 8106 }
6c30d220 8107 else if (!i.tm.opcode_modifier.vecsib)
29b0f896 8108 {
e968fc9b 8109 if (i.index_reg->reg_num == RegIZ)
db51cc60
L
8110 i.sib.index = NO_INDEX_REGISTER;
8111 else
8112 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
8113 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
8114 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 8115 i.rex |= REX_X;
29b0f896 8116 }
67a4f2b7
AO
8117
8118 if (i.disp_operands
8119 && (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
8120 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL))
8121 i.rm.mode = 0;
8122 else
a501d77e
L
8123 {
8124 if (!fake_zero_displacement
8125 && !i.disp_operands
8126 && i.disp_encoding)
8127 {
8128 fake_zero_displacement = 1;
8129 if (i.disp_encoding == disp_encoding_8bit)
8130 i.types[op].bitfield.disp8 = 1;
8131 else
8132 i.types[op].bitfield.disp32 = 1;
8133 }
8134 i.rm.mode = mode_from_disp_size (i.types[op]);
8135 }
29b0f896 8136 }
252b5132 8137
29b0f896
AM
8138 if (fake_zero_displacement)
8139 {
8140 /* Fakes a zero displacement assuming that i.types[op]
8141 holds the correct displacement size. */
8142 expressionS *exp;
8143
9c2799c2 8144 gas_assert (i.op[op].disps == 0);
29b0f896
AM
8145 exp = &disp_expressions[i.disp_operands++];
8146 i.op[op].disps = exp;
8147 exp->X_op = O_constant;
8148 exp->X_add_number = 0;
8149 exp->X_add_symbol = (symbolS *) 0;
8150 exp->X_op_symbol = (symbolS *) 0;
8151 }
c0f3af97
L
8152
8153 mem = op;
29b0f896 8154 }
c0f3af97
L
8155 else
8156 mem = ~0;
252b5132 8157
8c43a48b 8158 if (i.tm.opcode_modifier.vexsources == XOP2SOURCES)
5dd85c99
SP
8159 {
8160 if (operand_type_check (i.types[0], imm))
8161 i.vex.register_specifier = NULL;
8162 else
8163 {
8164 /* VEX.vvvv encodes one of the sources when the first
8165 operand is not an immediate. */
1ef99a7b 8166 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
8167 i.vex.register_specifier = i.op[0].regs;
8168 else
8169 i.vex.register_specifier = i.op[1].regs;
8170 }
8171
8172 /* Destination is a XMM register encoded in the ModRM.reg
8173 and VEX.R bit. */
8174 i.rm.reg = i.op[2].regs->reg_num;
8175 if ((i.op[2].regs->reg_flags & RegRex) != 0)
8176 i.rex |= REX_R;
8177
8178 /* ModRM.rm and VEX.B encodes the other source. */
8179 if (!i.mem_operands)
8180 {
8181 i.rm.mode = 3;
8182
1ef99a7b 8183 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
8184 i.rm.regmem = i.op[1].regs->reg_num;
8185 else
8186 i.rm.regmem = i.op[0].regs->reg_num;
8187
8188 if ((i.op[1].regs->reg_flags & RegRex) != 0)
8189 i.rex |= REX_B;
8190 }
8191 }
2426c15f 8192 else if (i.tm.opcode_modifier.vexvvvv == VEXLWP)
f88c9eb0
SP
8193 {
8194 i.vex.register_specifier = i.op[2].regs;
8195 if (!i.mem_operands)
8196 {
8197 i.rm.mode = 3;
8198 i.rm.regmem = i.op[1].regs->reg_num;
8199 if ((i.op[1].regs->reg_flags & RegRex) != 0)
8200 i.rex |= REX_B;
8201 }
8202 }
29b0f896
AM
8203 /* Fill in i.rm.reg or i.rm.regmem field with register operand
8204 (if any) based on i.tm.extension_opcode. Again, we must be
8205 careful to make sure that segment/control/debug/test/MMX
8206 registers are coded into the i.rm.reg field. */
f88c9eb0 8207 else if (i.reg_operands)
29b0f896 8208 {
99018f42 8209 unsigned int op;
7ab9ffdd
L
8210 unsigned int vex_reg = ~0;
8211
8212 for (op = 0; op < i.operands; op++)
b4a3a7b4 8213 {
bab6aec1 8214 if (i.types[op].bitfield.class == Reg
f74a6307
JB
8215 || i.types[op].bitfield.class == RegBND
8216 || i.types[op].bitfield.class == RegMask
00cee14f 8217 || i.types[op].bitfield.class == SReg
4a5c67ed
JB
8218 || i.types[op].bitfield.class == RegCR
8219 || i.types[op].bitfield.class == RegDR
8220 || i.types[op].bitfield.class == RegTR)
b4a3a7b4 8221 break;
3528c362 8222 if (i.types[op].bitfield.class == RegSIMD)
b4a3a7b4
L
8223 {
8224 if (i.types[op].bitfield.zmmword)
8225 i.has_regzmm = TRUE;
8226 else if (i.types[op].bitfield.ymmword)
8227 i.has_regymm = TRUE;
8228 else
8229 i.has_regxmm = TRUE;
8230 break;
8231 }
3528c362 8232 if (i.types[op].bitfield.class == RegMMX)
b4a3a7b4
L
8233 {
8234 i.has_regmmx = TRUE;
8235 break;
8236 }
8237 }
c0209578 8238
7ab9ffdd
L
8239 if (vex_3_sources)
8240 op = dest;
2426c15f 8241 else if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd
L
8242 {
8243 /* For instructions with VexNDS, the register-only
8244 source operand is encoded in VEX prefix. */
8245 gas_assert (mem != (unsigned int) ~0);
c0f3af97 8246
7ab9ffdd 8247 if (op > mem)
c0f3af97 8248 {
7ab9ffdd
L
8249 vex_reg = op++;
8250 gas_assert (op < i.operands);
c0f3af97
L
8251 }
8252 else
c0f3af97 8253 {
f12dc422
L
8254 /* Check register-only source operand when two source
8255 operands are swapped. */
8256 if (!i.tm.operand_types[op].bitfield.baseindex
8257 && i.tm.operand_types[op + 1].bitfield.baseindex)
8258 {
8259 vex_reg = op;
8260 op += 2;
8261 gas_assert (mem == (vex_reg + 1)
8262 && op < i.operands);
8263 }
8264 else
8265 {
8266 vex_reg = op + 1;
8267 gas_assert (vex_reg < i.operands);
8268 }
c0f3af97 8269 }
7ab9ffdd 8270 }
2426c15f 8271 else if (i.tm.opcode_modifier.vexvvvv == VEXNDD)
7ab9ffdd 8272 {
f12dc422 8273 /* For instructions with VexNDD, the register destination
7ab9ffdd 8274 is encoded in VEX prefix. */
f12dc422
L
8275 if (i.mem_operands == 0)
8276 {
8277 /* There is no memory operand. */
8278 gas_assert ((op + 2) == i.operands);
8279 vex_reg = op + 1;
8280 }
8281 else
8d63c93e 8282 {
ed438a93
JB
8283 /* There are only 2 non-immediate operands. */
8284 gas_assert (op < i.imm_operands + 2
8285 && i.operands == i.imm_operands + 2);
8286 vex_reg = i.imm_operands + 1;
f12dc422 8287 }
7ab9ffdd
L
8288 }
8289 else
8290 gas_assert (op < i.operands);
99018f42 8291
7ab9ffdd
L
8292 if (vex_reg != (unsigned int) ~0)
8293 {
f12dc422 8294 i386_operand_type *type = &i.tm.operand_types[vex_reg];
7ab9ffdd 8295
bab6aec1 8296 if ((type->bitfield.class != Reg
dc821c5f 8297 || (!type->bitfield.dword && !type->bitfield.qword))
3528c362 8298 && type->bitfield.class != RegSIMD
43234a1e 8299 && !operand_type_equal (type, &regmask))
7ab9ffdd 8300 abort ();
f88c9eb0 8301
7ab9ffdd
L
8302 i.vex.register_specifier = i.op[vex_reg].regs;
8303 }
8304
1b9f0c97
L
8305 /* Don't set OP operand twice. */
8306 if (vex_reg != op)
7ab9ffdd 8307 {
1b9f0c97
L
8308 /* If there is an extension opcode to put here, the
8309 register number must be put into the regmem field. */
8310 if (i.tm.extension_opcode != None)
8311 {
8312 i.rm.regmem = i.op[op].regs->reg_num;
8313 if ((i.op[op].regs->reg_flags & RegRex) != 0)
8314 i.rex |= REX_B;
43234a1e
L
8315 if ((i.op[op].regs->reg_flags & RegVRex) != 0)
8316 i.vrex |= REX_B;
1b9f0c97
L
8317 }
8318 else
8319 {
8320 i.rm.reg = i.op[op].regs->reg_num;
8321 if ((i.op[op].regs->reg_flags & RegRex) != 0)
8322 i.rex |= REX_R;
43234a1e
L
8323 if ((i.op[op].regs->reg_flags & RegVRex) != 0)
8324 i.vrex |= REX_R;
1b9f0c97 8325 }
7ab9ffdd 8326 }
252b5132 8327
29b0f896
AM
8328 /* Now, if no memory operand has set i.rm.mode = 0, 1, 2 we
8329 must set it to 3 to indicate this is a register operand
8330 in the regmem field. */
8331 if (!i.mem_operands)
8332 i.rm.mode = 3;
8333 }
252b5132 8334
29b0f896 8335 /* Fill in i.rm.reg field with extension opcode (if any). */
c1e679ec 8336 if (i.tm.extension_opcode != None)
29b0f896
AM
8337 i.rm.reg = i.tm.extension_opcode;
8338 }
8339 return default_seg;
8340}
252b5132 8341
376cd056
JB
8342static unsigned int
8343flip_code16 (unsigned int code16)
8344{
8345 gas_assert (i.tm.operands == 1);
8346
8347 return !(i.prefix[REX_PREFIX] & REX_W)
8348 && (code16 ? i.tm.operand_types[0].bitfield.disp32
8349 || i.tm.operand_types[0].bitfield.disp32s
8350 : i.tm.operand_types[0].bitfield.disp16)
8351 ? CODE16 : 0;
8352}
8353
29b0f896 8354static void
e3bb37b5 8355output_branch (void)
29b0f896
AM
8356{
8357 char *p;
f8a5c266 8358 int size;
29b0f896
AM
8359 int code16;
8360 int prefix;
8361 relax_substateT subtype;
8362 symbolS *sym;
8363 offsetT off;
8364
f8a5c266 8365 code16 = flag_code == CODE_16BIT ? CODE16 : 0;
a501d77e 8366 size = i.disp_encoding == disp_encoding_32bit ? BIG : SMALL;
29b0f896
AM
8367
8368 prefix = 0;
8369 if (i.prefix[DATA_PREFIX] != 0)
252b5132 8370 {
29b0f896
AM
8371 prefix = 1;
8372 i.prefixes -= 1;
376cd056 8373 code16 ^= flip_code16(code16);
252b5132 8374 }
29b0f896
AM
8375 /* Pentium4 branch hints. */
8376 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
8377 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
2f66722d 8378 {
29b0f896
AM
8379 prefix++;
8380 i.prefixes--;
8381 }
8382 if (i.prefix[REX_PREFIX] != 0)
8383 {
8384 prefix++;
8385 i.prefixes--;
2f66722d
AM
8386 }
8387
7e8b059b
L
8388 /* BND prefixed jump. */
8389 if (i.prefix[BND_PREFIX] != 0)
8390 {
6cb0a70e
JB
8391 prefix++;
8392 i.prefixes--;
7e8b059b
L
8393 }
8394
f2810fe0
JB
8395 if (i.prefixes != 0)
8396 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
29b0f896
AM
8397
8398 /* It's always a symbol; End frag & setup for relax.
8399 Make sure there is enough room in this frag for the largest
8400 instruction we may generate in md_convert_frag. This is 2
8401 bytes for the opcode and room for the prefix and largest
8402 displacement. */
8403 frag_grow (prefix + 2 + 4);
8404 /* Prefix and 1 opcode byte go in fr_fix. */
8405 p = frag_more (prefix + 1);
8406 if (i.prefix[DATA_PREFIX] != 0)
8407 *p++ = DATA_PREFIX_OPCODE;
8408 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE
8409 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE)
8410 *p++ = i.prefix[SEG_PREFIX];
6cb0a70e
JB
8411 if (i.prefix[BND_PREFIX] != 0)
8412 *p++ = BND_PREFIX_OPCODE;
29b0f896
AM
8413 if (i.prefix[REX_PREFIX] != 0)
8414 *p++ = i.prefix[REX_PREFIX];
8415 *p = i.tm.base_opcode;
8416
8417 if ((unsigned char) *p == JUMP_PC_RELATIVE)
f8a5c266 8418 subtype = ENCODE_RELAX_STATE (UNCOND_JUMP, size);
40fb9820 8419 else if (cpu_arch_flags.bitfield.cpui386)
f8a5c266 8420 subtype = ENCODE_RELAX_STATE (COND_JUMP, size);
29b0f896 8421 else
f8a5c266 8422 subtype = ENCODE_RELAX_STATE (COND_JUMP86, size);
29b0f896 8423 subtype |= code16;
3e73aa7c 8424
29b0f896
AM
8425 sym = i.op[0].disps->X_add_symbol;
8426 off = i.op[0].disps->X_add_number;
3e73aa7c 8427
29b0f896
AM
8428 if (i.op[0].disps->X_op != O_constant
8429 && i.op[0].disps->X_op != O_symbol)
3e73aa7c 8430 {
29b0f896
AM
8431 /* Handle complex expressions. */
8432 sym = make_expr_symbol (i.op[0].disps);
8433 off = 0;
8434 }
3e73aa7c 8435
29b0f896
AM
8436 /* 1 possible extra opcode + 4 byte displacement go in var part.
8437 Pass reloc in fr_var. */
d258b828 8438 frag_var (rs_machine_dependent, 5, i.reloc[0], subtype, sym, off, p);
29b0f896 8439}
3e73aa7c 8440
bd7ab16b
L
8441#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8442/* Return TRUE iff PLT32 relocation should be used for branching to
8443 symbol S. */
8444
8445static bfd_boolean
8446need_plt32_p (symbolS *s)
8447{
8448 /* PLT32 relocation is ELF only. */
8449 if (!IS_ELF)
8450 return FALSE;
8451
a5def729
RO
8452#ifdef TE_SOLARIS
8453 /* Don't emit PLT32 relocation on Solaris: neither native linker nor
8454 krtld support it. */
8455 return FALSE;
8456#endif
8457
bd7ab16b
L
8458 /* Since there is no need to prepare for PLT branch on x86-64, we
8459 can generate R_X86_64_PLT32, instead of R_X86_64_PC32, which can
8460 be used as a marker for 32-bit PC-relative branches. */
8461 if (!object_64bit)
8462 return FALSE;
8463
8464 /* Weak or undefined symbol need PLT32 relocation. */
8465 if (S_IS_WEAK (s) || !S_IS_DEFINED (s))
8466 return TRUE;
8467
8468 /* Non-global symbol doesn't need PLT32 relocation. */
8469 if (! S_IS_EXTERNAL (s))
8470 return FALSE;
8471
8472 /* Other global symbols need PLT32 relocation. NB: Symbol with
8473 non-default visibilities are treated as normal global symbol
8474 so that PLT32 relocation can be used as a marker for 32-bit
8475 PC-relative branches. It is useful for linker relaxation. */
8476 return TRUE;
8477}
8478#endif
8479
29b0f896 8480static void
e3bb37b5 8481output_jump (void)
29b0f896
AM
8482{
8483 char *p;
8484 int size;
3e02c1cc 8485 fixS *fixP;
bd7ab16b 8486 bfd_reloc_code_real_type jump_reloc = i.reloc[0];
29b0f896 8487
0cfa3eb3 8488 if (i.tm.opcode_modifier.jump == JUMP_BYTE)
29b0f896
AM
8489 {
8490 /* This is a loop or jecxz type instruction. */
8491 size = 1;
8492 if (i.prefix[ADDR_PREFIX] != 0)
8493 {
8494 FRAG_APPEND_1_CHAR (ADDR_PREFIX_OPCODE);
8495 i.prefixes -= 1;
8496 }
8497 /* Pentium4 branch hints. */
8498 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
8499 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
8500 {
8501 FRAG_APPEND_1_CHAR (i.prefix[SEG_PREFIX]);
8502 i.prefixes--;
3e73aa7c
JH
8503 }
8504 }
29b0f896
AM
8505 else
8506 {
8507 int code16;
3e73aa7c 8508
29b0f896
AM
8509 code16 = 0;
8510 if (flag_code == CODE_16BIT)
8511 code16 = CODE16;
3e73aa7c 8512
29b0f896
AM
8513 if (i.prefix[DATA_PREFIX] != 0)
8514 {
8515 FRAG_APPEND_1_CHAR (DATA_PREFIX_OPCODE);
8516 i.prefixes -= 1;
376cd056 8517 code16 ^= flip_code16(code16);
29b0f896 8518 }
252b5132 8519
29b0f896
AM
8520 size = 4;
8521 if (code16)
8522 size = 2;
8523 }
9fcc94b6 8524
6cb0a70e
JB
8525 /* BND prefixed jump. */
8526 if (i.prefix[BND_PREFIX] != 0)
29b0f896 8527 {
6cb0a70e 8528 FRAG_APPEND_1_CHAR (i.prefix[BND_PREFIX]);
29b0f896
AM
8529 i.prefixes -= 1;
8530 }
252b5132 8531
6cb0a70e 8532 if (i.prefix[REX_PREFIX] != 0)
7e8b059b 8533 {
6cb0a70e 8534 FRAG_APPEND_1_CHAR (i.prefix[REX_PREFIX]);
7e8b059b
L
8535 i.prefixes -= 1;
8536 }
8537
f2810fe0
JB
8538 if (i.prefixes != 0)
8539 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
e0890092 8540
42164a71
L
8541 p = frag_more (i.tm.opcode_length + size);
8542 switch (i.tm.opcode_length)
8543 {
8544 case 2:
8545 *p++ = i.tm.base_opcode >> 8;
1a0670f3 8546 /* Fall through. */
42164a71
L
8547 case 1:
8548 *p++ = i.tm.base_opcode;
8549 break;
8550 default:
8551 abort ();
8552 }
e0890092 8553
bd7ab16b
L
8554#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8555 if (size == 4
8556 && jump_reloc == NO_RELOC
8557 && need_plt32_p (i.op[0].disps->X_add_symbol))
8558 jump_reloc = BFD_RELOC_X86_64_PLT32;
8559#endif
8560
8561 jump_reloc = reloc (size, 1, 1, jump_reloc);
8562
3e02c1cc 8563 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal, size,
bd7ab16b 8564 i.op[0].disps, 1, jump_reloc);
3e02c1cc
AM
8565
8566 /* All jumps handled here are signed, but don't use a signed limit
8567 check for 32 and 16 bit jumps as we want to allow wrap around at
8568 4G and 64k respectively. */
8569 if (size == 1)
8570 fixP->fx_signed = 1;
29b0f896 8571}
e0890092 8572
29b0f896 8573static void
e3bb37b5 8574output_interseg_jump (void)
29b0f896
AM
8575{
8576 char *p;
8577 int size;
8578 int prefix;
8579 int code16;
252b5132 8580
29b0f896
AM
8581 code16 = 0;
8582 if (flag_code == CODE_16BIT)
8583 code16 = CODE16;
a217f122 8584
29b0f896
AM
8585 prefix = 0;
8586 if (i.prefix[DATA_PREFIX] != 0)
8587 {
8588 prefix = 1;
8589 i.prefixes -= 1;
8590 code16 ^= CODE16;
8591 }
6cb0a70e
JB
8592
8593 gas_assert (!i.prefix[REX_PREFIX]);
252b5132 8594
29b0f896
AM
8595 size = 4;
8596 if (code16)
8597 size = 2;
252b5132 8598
f2810fe0
JB
8599 if (i.prefixes != 0)
8600 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
252b5132 8601
29b0f896
AM
8602 /* 1 opcode; 2 segment; offset */
8603 p = frag_more (prefix + 1 + 2 + size);
3e73aa7c 8604
29b0f896
AM
8605 if (i.prefix[DATA_PREFIX] != 0)
8606 *p++ = DATA_PREFIX_OPCODE;
252b5132 8607
29b0f896
AM
8608 if (i.prefix[REX_PREFIX] != 0)
8609 *p++ = i.prefix[REX_PREFIX];
252b5132 8610
29b0f896
AM
8611 *p++ = i.tm.base_opcode;
8612 if (i.op[1].imms->X_op == O_constant)
8613 {
8614 offsetT n = i.op[1].imms->X_add_number;
252b5132 8615
29b0f896
AM
8616 if (size == 2
8617 && !fits_in_unsigned_word (n)
8618 && !fits_in_signed_word (n))
8619 {
8620 as_bad (_("16-bit jump out of range"));
8621 return;
8622 }
8623 md_number_to_chars (p, n, size);
8624 }
8625 else
8626 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
d258b828 8627 i.op[1].imms, 0, reloc (size, 0, 0, i.reloc[1]));
29b0f896
AM
8628 if (i.op[0].imms->X_op != O_constant)
8629 as_bad (_("can't handle non absolute segment in `%s'"),
8630 i.tm.name);
8631 md_number_to_chars (p + size, (valueT) i.op[0].imms->X_add_number, 2);
8632}
a217f122 8633
b4a3a7b4
L
8634#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8635void
8636x86_cleanup (void)
8637{
8638 char *p;
8639 asection *seg = now_seg;
8640 subsegT subseg = now_subseg;
8641 asection *sec;
8642 unsigned int alignment, align_size_1;
8643 unsigned int isa_1_descsz, feature_2_descsz, descsz;
8644 unsigned int isa_1_descsz_raw, feature_2_descsz_raw;
8645 unsigned int padding;
8646
8647 if (!IS_ELF || !x86_used_note)
8648 return;
8649
b4a3a7b4
L
8650 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X86;
8651
8652 /* The .note.gnu.property section layout:
8653
8654 Field Length Contents
8655 ---- ---- ----
8656 n_namsz 4 4
8657 n_descsz 4 The note descriptor size
8658 n_type 4 NT_GNU_PROPERTY_TYPE_0
8659 n_name 4 "GNU"
8660 n_desc n_descsz The program property array
8661 .... .... ....
8662 */
8663
8664 /* Create the .note.gnu.property section. */
8665 sec = subseg_new (NOTE_GNU_PROPERTY_SECTION_NAME, 0);
fd361982 8666 bfd_set_section_flags (sec,
b4a3a7b4
L
8667 (SEC_ALLOC
8668 | SEC_LOAD
8669 | SEC_DATA
8670 | SEC_HAS_CONTENTS
8671 | SEC_READONLY));
8672
8673 if (get_elf_backend_data (stdoutput)->s->elfclass == ELFCLASS64)
8674 {
8675 align_size_1 = 7;
8676 alignment = 3;
8677 }
8678 else
8679 {
8680 align_size_1 = 3;
8681 alignment = 2;
8682 }
8683
fd361982 8684 bfd_set_section_alignment (sec, alignment);
b4a3a7b4
L
8685 elf_section_type (sec) = SHT_NOTE;
8686
8687 /* GNU_PROPERTY_X86_ISA_1_USED: 4-byte type + 4-byte data size
8688 + 4-byte data */
8689 isa_1_descsz_raw = 4 + 4 + 4;
8690 /* Align GNU_PROPERTY_X86_ISA_1_USED. */
8691 isa_1_descsz = (isa_1_descsz_raw + align_size_1) & ~align_size_1;
8692
8693 feature_2_descsz_raw = isa_1_descsz;
8694 /* GNU_PROPERTY_X86_FEATURE_2_USED: 4-byte type + 4-byte data size
8695 + 4-byte data */
8696 feature_2_descsz_raw += 4 + 4 + 4;
8697 /* Align GNU_PROPERTY_X86_FEATURE_2_USED. */
8698 feature_2_descsz = ((feature_2_descsz_raw + align_size_1)
8699 & ~align_size_1);
8700
8701 descsz = feature_2_descsz;
8702 /* Section size: n_namsz + n_descsz + n_type + n_name + n_descsz. */
8703 p = frag_more (4 + 4 + 4 + 4 + descsz);
8704
8705 /* Write n_namsz. */
8706 md_number_to_chars (p, (valueT) 4, 4);
8707
8708 /* Write n_descsz. */
8709 md_number_to_chars (p + 4, (valueT) descsz, 4);
8710
8711 /* Write n_type. */
8712 md_number_to_chars (p + 4 * 2, (valueT) NT_GNU_PROPERTY_TYPE_0, 4);
8713
8714 /* Write n_name. */
8715 memcpy (p + 4 * 3, "GNU", 4);
8716
8717 /* Write 4-byte type. */
8718 md_number_to_chars (p + 4 * 4,
8719 (valueT) GNU_PROPERTY_X86_ISA_1_USED, 4);
8720
8721 /* Write 4-byte data size. */
8722 md_number_to_chars (p + 4 * 5, (valueT) 4, 4);
8723
8724 /* Write 4-byte data. */
8725 md_number_to_chars (p + 4 * 6, (valueT) x86_isa_1_used, 4);
8726
8727 /* Zero out paddings. */
8728 padding = isa_1_descsz - isa_1_descsz_raw;
8729 if (padding)
8730 memset (p + 4 * 7, 0, padding);
8731
8732 /* Write 4-byte type. */
8733 md_number_to_chars (p + isa_1_descsz + 4 * 4,
8734 (valueT) GNU_PROPERTY_X86_FEATURE_2_USED, 4);
8735
8736 /* Write 4-byte data size. */
8737 md_number_to_chars (p + isa_1_descsz + 4 * 5, (valueT) 4, 4);
8738
8739 /* Write 4-byte data. */
8740 md_number_to_chars (p + isa_1_descsz + 4 * 6,
8741 (valueT) x86_feature_2_used, 4);
8742
8743 /* Zero out paddings. */
8744 padding = feature_2_descsz - feature_2_descsz_raw;
8745 if (padding)
8746 memset (p + isa_1_descsz + 4 * 7, 0, padding);
8747
8748 /* We probably can't restore the current segment, for there likely
8749 isn't one yet... */
8750 if (seg && subseg)
8751 subseg_set (seg, subseg);
8752}
8753#endif
8754
9c33702b
JB
8755static unsigned int
8756encoding_length (const fragS *start_frag, offsetT start_off,
8757 const char *frag_now_ptr)
8758{
8759 unsigned int len = 0;
8760
8761 if (start_frag != frag_now)
8762 {
8763 const fragS *fr = start_frag;
8764
8765 do {
8766 len += fr->fr_fix;
8767 fr = fr->fr_next;
8768 } while (fr && fr != frag_now);
8769 }
8770
8771 return len - start_off + (frag_now_ptr - frag_now->fr_literal);
8772}
8773
e379e5f3 8774/* Return 1 for test, and, cmp, add, sub, inc and dec which may
79d72f45
HL
8775 be macro-fused with conditional jumps.
8776 NB: If TEST/AND/CMP/ADD/SUB/INC/DEC is of RIP relative address,
8777 or is one of the following format:
8778
8779 cmp m, imm
8780 add m, imm
8781 sub m, imm
8782 test m, imm
8783 and m, imm
8784 inc m
8785 dec m
8786
8787 it is unfusible. */
e379e5f3
L
8788
8789static int
79d72f45 8790maybe_fused_with_jcc_p (enum mf_cmp_kind* mf_cmp_p)
e379e5f3
L
8791{
8792 /* No RIP address. */
8793 if (i.base_reg && i.base_reg->reg_num == RegIP)
8794 return 0;
8795
8796 /* No VEX/EVEX encoding. */
8797 if (is_any_vex_encoding (&i.tm))
8798 return 0;
8799
79d72f45
HL
8800 /* add, sub without add/sub m, imm. */
8801 if (i.tm.base_opcode <= 5
e379e5f3
L
8802 || (i.tm.base_opcode >= 0x28 && i.tm.base_opcode <= 0x2d)
8803 || ((i.tm.base_opcode | 3) == 0x83
79d72f45 8804 && (i.tm.extension_opcode == 0x5
e379e5f3 8805 || i.tm.extension_opcode == 0x0)))
79d72f45
HL
8806 {
8807 *mf_cmp_p = mf_cmp_alu_cmp;
8808 return !(i.mem_operands && i.imm_operands);
8809 }
e379e5f3 8810
79d72f45
HL
8811 /* and without and m, imm. */
8812 if ((i.tm.base_opcode >= 0x20 && i.tm.base_opcode <= 0x25)
8813 || ((i.tm.base_opcode | 3) == 0x83
8814 && i.tm.extension_opcode == 0x4))
8815 {
8816 *mf_cmp_p = mf_cmp_test_and;
8817 return !(i.mem_operands && i.imm_operands);
8818 }
8819
8820 /* test without test m imm. */
e379e5f3
L
8821 if ((i.tm.base_opcode | 1) == 0x85
8822 || (i.tm.base_opcode | 1) == 0xa9
8823 || ((i.tm.base_opcode | 1) == 0xf7
79d72f45
HL
8824 && i.tm.extension_opcode == 0))
8825 {
8826 *mf_cmp_p = mf_cmp_test_and;
8827 return !(i.mem_operands && i.imm_operands);
8828 }
8829
8830 /* cmp without cmp m, imm. */
8831 if ((i.tm.base_opcode >= 0x38 && i.tm.base_opcode <= 0x3d)
e379e5f3
L
8832 || ((i.tm.base_opcode | 3) == 0x83
8833 && (i.tm.extension_opcode == 0x7)))
79d72f45
HL
8834 {
8835 *mf_cmp_p = mf_cmp_alu_cmp;
8836 return !(i.mem_operands && i.imm_operands);
8837 }
e379e5f3 8838
79d72f45 8839 /* inc, dec without inc/dec m. */
e379e5f3
L
8840 if ((i.tm.cpu_flags.bitfield.cpuno64
8841 && (i.tm.base_opcode | 0xf) == 0x4f)
8842 || ((i.tm.base_opcode | 1) == 0xff
8843 && i.tm.extension_opcode <= 0x1))
79d72f45
HL
8844 {
8845 *mf_cmp_p = mf_cmp_incdec;
8846 return !i.mem_operands;
8847 }
e379e5f3
L
8848
8849 return 0;
8850}
8851
8852/* Return 1 if a FUSED_JCC_PADDING frag should be generated. */
8853
8854static int
79d72f45 8855add_fused_jcc_padding_frag_p (enum mf_cmp_kind* mf_cmp_p)
e379e5f3
L
8856{
8857 /* NB: Don't work with COND_JUMP86 without i386. */
8858 if (!align_branch_power
8859 || now_seg == absolute_section
8860 || !cpu_arch_flags.bitfield.cpui386
8861 || !(align_branch & align_branch_fused_bit))
8862 return 0;
8863
79d72f45 8864 if (maybe_fused_with_jcc_p (mf_cmp_p))
e379e5f3
L
8865 {
8866 if (last_insn.kind == last_insn_other
8867 || last_insn.seg != now_seg)
8868 return 1;
8869 if (flag_debug)
8870 as_warn_where (last_insn.file, last_insn.line,
8871 _("`%s` skips -malign-branch-boundary on `%s`"),
8872 last_insn.name, i.tm.name);
8873 }
8874
8875 return 0;
8876}
8877
8878/* Return 1 if a BRANCH_PREFIX frag should be generated. */
8879
8880static int
8881add_branch_prefix_frag_p (void)
8882{
8883 /* NB: Don't work with COND_JUMP86 without i386. Don't add prefix
8884 to PadLock instructions since they include prefixes in opcode. */
8885 if (!align_branch_power
8886 || !align_branch_prefix_size
8887 || now_seg == absolute_section
8888 || i.tm.cpu_flags.bitfield.cpupadlock
8889 || !cpu_arch_flags.bitfield.cpui386)
8890 return 0;
8891
8892 /* Don't add prefix if it is a prefix or there is no operand in case
8893 that segment prefix is special. */
8894 if (!i.operands || i.tm.opcode_modifier.isprefix)
8895 return 0;
8896
8897 if (last_insn.kind == last_insn_other
8898 || last_insn.seg != now_seg)
8899 return 1;
8900
8901 if (flag_debug)
8902 as_warn_where (last_insn.file, last_insn.line,
8903 _("`%s` skips -malign-branch-boundary on `%s`"),
8904 last_insn.name, i.tm.name);
8905
8906 return 0;
8907}
8908
8909/* Return 1 if a BRANCH_PADDING frag should be generated. */
8910
8911static int
79d72f45
HL
8912add_branch_padding_frag_p (enum align_branch_kind *branch_p,
8913 enum mf_jcc_kind *mf_jcc_p)
e379e5f3
L
8914{
8915 int add_padding;
8916
8917 /* NB: Don't work with COND_JUMP86 without i386. */
8918 if (!align_branch_power
8919 || now_seg == absolute_section
8920 || !cpu_arch_flags.bitfield.cpui386)
8921 return 0;
8922
8923 add_padding = 0;
8924
8925 /* Check for jcc and direct jmp. */
8926 if (i.tm.opcode_modifier.jump == JUMP)
8927 {
8928 if (i.tm.base_opcode == JUMP_PC_RELATIVE)
8929 {
8930 *branch_p = align_branch_jmp;
8931 add_padding = align_branch & align_branch_jmp_bit;
8932 }
8933 else
8934 {
79d72f45
HL
8935 /* Because J<cc> and JN<cc> share same group in macro-fusible table,
8936 igore the lowest bit. */
8937 *mf_jcc_p = (i.tm.base_opcode & 0x0e) >> 1;
e379e5f3
L
8938 *branch_p = align_branch_jcc;
8939 if ((align_branch & align_branch_jcc_bit))
8940 add_padding = 1;
8941 }
8942 }
8943 else if (is_any_vex_encoding (&i.tm))
8944 return 0;
8945 else if ((i.tm.base_opcode | 1) == 0xc3)
8946 {
8947 /* Near ret. */
8948 *branch_p = align_branch_ret;
8949 if ((align_branch & align_branch_ret_bit))
8950 add_padding = 1;
8951 }
8952 else
8953 {
8954 /* Check for indirect jmp, direct and indirect calls. */
8955 if (i.tm.base_opcode == 0xe8)
8956 {
8957 /* Direct call. */
8958 *branch_p = align_branch_call;
8959 if ((align_branch & align_branch_call_bit))
8960 add_padding = 1;
8961 }
8962 else if (i.tm.base_opcode == 0xff
8963 && (i.tm.extension_opcode == 2
8964 || i.tm.extension_opcode == 4))
8965 {
8966 /* Indirect call and jmp. */
8967 *branch_p = align_branch_indirect;
8968 if ((align_branch & align_branch_indirect_bit))
8969 add_padding = 1;
8970 }
8971
8972 if (add_padding
8973 && i.disp_operands
8974 && tls_get_addr
8975 && (i.op[0].disps->X_op == O_symbol
8976 || (i.op[0].disps->X_op == O_subtract
8977 && i.op[0].disps->X_op_symbol == GOT_symbol)))
8978 {
8979 symbolS *s = i.op[0].disps->X_add_symbol;
8980 /* No padding to call to global or undefined tls_get_addr. */
8981 if ((S_IS_EXTERNAL (s) || !S_IS_DEFINED (s))
8982 && strcmp (S_GET_NAME (s), tls_get_addr) == 0)
8983 return 0;
8984 }
8985 }
8986
8987 if (add_padding
8988 && last_insn.kind != last_insn_other
8989 && last_insn.seg == now_seg)
8990 {
8991 if (flag_debug)
8992 as_warn_where (last_insn.file, last_insn.line,
8993 _("`%s` skips -malign-branch-boundary on `%s`"),
8994 last_insn.name, i.tm.name);
8995 return 0;
8996 }
8997
8998 return add_padding;
8999}
9000
29b0f896 9001static void
e3bb37b5 9002output_insn (void)
29b0f896 9003{
2bbd9c25
JJ
9004 fragS *insn_start_frag;
9005 offsetT insn_start_off;
e379e5f3
L
9006 fragS *fragP = NULL;
9007 enum align_branch_kind branch = align_branch_none;
79d72f45
HL
9008 /* The initializer is arbitrary just to avoid uninitialized error.
9009 it's actually either assigned in add_branch_padding_frag_p
9010 or never be used. */
9011 enum mf_jcc_kind mf_jcc = mf_jcc_jo;
2bbd9c25 9012
b4a3a7b4
L
9013#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
9014 if (IS_ELF && x86_used_note)
9015 {
9016 if (i.tm.cpu_flags.bitfield.cpucmov)
9017 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_CMOV;
9018 if (i.tm.cpu_flags.bitfield.cpusse)
9019 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE;
9020 if (i.tm.cpu_flags.bitfield.cpusse2)
9021 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE2;
9022 if (i.tm.cpu_flags.bitfield.cpusse3)
9023 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE3;
9024 if (i.tm.cpu_flags.bitfield.cpussse3)
9025 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSSE3;
9026 if (i.tm.cpu_flags.bitfield.cpusse4_1)
9027 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE4_1;
9028 if (i.tm.cpu_flags.bitfield.cpusse4_2)
9029 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE4_2;
9030 if (i.tm.cpu_flags.bitfield.cpuavx)
9031 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX;
9032 if (i.tm.cpu_flags.bitfield.cpuavx2)
9033 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX2;
9034 if (i.tm.cpu_flags.bitfield.cpufma)
9035 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_FMA;
9036 if (i.tm.cpu_flags.bitfield.cpuavx512f)
9037 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512F;
9038 if (i.tm.cpu_flags.bitfield.cpuavx512cd)
9039 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512CD;
9040 if (i.tm.cpu_flags.bitfield.cpuavx512er)
9041 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512ER;
9042 if (i.tm.cpu_flags.bitfield.cpuavx512pf)
9043 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512PF;
9044 if (i.tm.cpu_flags.bitfield.cpuavx512vl)
9045 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512VL;
9046 if (i.tm.cpu_flags.bitfield.cpuavx512dq)
9047 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512DQ;
9048 if (i.tm.cpu_flags.bitfield.cpuavx512bw)
9049 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512BW;
9050 if (i.tm.cpu_flags.bitfield.cpuavx512_4fmaps)
9051 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_4FMAPS;
9052 if (i.tm.cpu_flags.bitfield.cpuavx512_4vnniw)
9053 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_4VNNIW;
9054 if (i.tm.cpu_flags.bitfield.cpuavx512_bitalg)
9055 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_BITALG;
9056 if (i.tm.cpu_flags.bitfield.cpuavx512ifma)
9057 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_IFMA;
9058 if (i.tm.cpu_flags.bitfield.cpuavx512vbmi)
9059 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_VBMI;
9060 if (i.tm.cpu_flags.bitfield.cpuavx512_vbmi2)
9061 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_VBMI2;
9062 if (i.tm.cpu_flags.bitfield.cpuavx512_vnni)
9063 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_VNNI;
462cac58
L
9064 if (i.tm.cpu_flags.bitfield.cpuavx512_bf16)
9065 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_BF16;
b4a3a7b4
L
9066
9067 if (i.tm.cpu_flags.bitfield.cpu8087
9068 || i.tm.cpu_flags.bitfield.cpu287
9069 || i.tm.cpu_flags.bitfield.cpu387
9070 || i.tm.cpu_flags.bitfield.cpu687
9071 || i.tm.cpu_flags.bitfield.cpufisttp)
9072 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X87;
319ff62c
JB
9073 if (i.has_regmmx
9074 || i.tm.base_opcode == 0xf77 /* emms */
a7e12755
L
9075 || i.tm.base_opcode == 0xf0e /* femms */
9076 || i.tm.base_opcode == 0xf2a /* cvtpi2ps */
9077 || i.tm.base_opcode == 0x660f2a /* cvtpi2pd */)
b4a3a7b4
L
9078 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_MMX;
9079 if (i.has_regxmm)
9080 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XMM;
9081 if (i.has_regymm)
9082 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_YMM;
9083 if (i.has_regzmm)
9084 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_ZMM;
9085 if (i.tm.cpu_flags.bitfield.cpufxsr)
9086 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_FXSR;
9087 if (i.tm.cpu_flags.bitfield.cpuxsave)
9088 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVE;
9089 if (i.tm.cpu_flags.bitfield.cpuxsaveopt)
9090 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT;
9091 if (i.tm.cpu_flags.bitfield.cpuxsavec)
9092 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEC;
9093 }
9094#endif
9095
29b0f896
AM
9096 /* Tie dwarf2 debug info to the address at the start of the insn.
9097 We can't do this after the insn has been output as the current
9098 frag may have been closed off. eg. by frag_var. */
9099 dwarf2_emit_insn (0);
9100
2bbd9c25
JJ
9101 insn_start_frag = frag_now;
9102 insn_start_off = frag_now_fix ();
9103
79d72f45 9104 if (add_branch_padding_frag_p (&branch, &mf_jcc))
e379e5f3
L
9105 {
9106 char *p;
9107 /* Branch can be 8 bytes. Leave some room for prefixes. */
9108 unsigned int max_branch_padding_size = 14;
9109
9110 /* Align section to boundary. */
9111 record_alignment (now_seg, align_branch_power);
9112
9113 /* Make room for padding. */
9114 frag_grow (max_branch_padding_size);
9115
9116 /* Start of the padding. */
9117 p = frag_more (0);
9118
9119 fragP = frag_now;
9120
9121 frag_var (rs_machine_dependent, max_branch_padding_size, 0,
9122 ENCODE_RELAX_STATE (BRANCH_PADDING, 0),
9123 NULL, 0, p);
9124
79d72f45 9125 fragP->tc_frag_data.mf_type = mf_jcc;
e379e5f3
L
9126 fragP->tc_frag_data.branch_type = branch;
9127 fragP->tc_frag_data.max_bytes = max_branch_padding_size;
9128 }
9129
29b0f896 9130 /* Output jumps. */
0cfa3eb3 9131 if (i.tm.opcode_modifier.jump == JUMP)
29b0f896 9132 output_branch ();
0cfa3eb3
JB
9133 else if (i.tm.opcode_modifier.jump == JUMP_BYTE
9134 || i.tm.opcode_modifier.jump == JUMP_DWORD)
29b0f896 9135 output_jump ();
0cfa3eb3 9136 else if (i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT)
29b0f896
AM
9137 output_interseg_jump ();
9138 else
9139 {
9140 /* Output normal instructions here. */
9141 char *p;
9142 unsigned char *q;
47465058 9143 unsigned int j;
331d2d0d 9144 unsigned int prefix;
79d72f45 9145 enum mf_cmp_kind mf_cmp;
4dffcebc 9146
e4e00185 9147 if (avoid_fence
c3949f43
JB
9148 && (i.tm.base_opcode == 0xfaee8
9149 || i.tm.base_opcode == 0xfaef0
9150 || i.tm.base_opcode == 0xfaef8))
e4e00185
AS
9151 {
9152 /* Encode lfence, mfence, and sfence as
9153 f0 83 04 24 00 lock addl $0x0, (%{re}sp). */
9154 offsetT val = 0x240483f0ULL;
9155 p = frag_more (5);
9156 md_number_to_chars (p, val, 5);
9157 return;
9158 }
9159
d022bddd
IT
9160 /* Some processors fail on LOCK prefix. This options makes
9161 assembler ignore LOCK prefix and serves as a workaround. */
9162 if (omit_lock_prefix)
9163 {
9164 if (i.tm.base_opcode == LOCK_PREFIX_OPCODE)
9165 return;
9166 i.prefix[LOCK_PREFIX] = 0;
9167 }
9168
e379e5f3
L
9169 if (branch)
9170 /* Skip if this is a branch. */
9171 ;
79d72f45 9172 else if (add_fused_jcc_padding_frag_p (&mf_cmp))
e379e5f3
L
9173 {
9174 /* Make room for padding. */
9175 frag_grow (MAX_FUSED_JCC_PADDING_SIZE);
9176 p = frag_more (0);
9177
9178 fragP = frag_now;
9179
9180 frag_var (rs_machine_dependent, MAX_FUSED_JCC_PADDING_SIZE, 0,
9181 ENCODE_RELAX_STATE (FUSED_JCC_PADDING, 0),
9182 NULL, 0, p);
9183
79d72f45 9184 fragP->tc_frag_data.mf_type = mf_cmp;
e379e5f3
L
9185 fragP->tc_frag_data.branch_type = align_branch_fused;
9186 fragP->tc_frag_data.max_bytes = MAX_FUSED_JCC_PADDING_SIZE;
9187 }
9188 else if (add_branch_prefix_frag_p ())
9189 {
9190 unsigned int max_prefix_size = align_branch_prefix_size;
9191
9192 /* Make room for padding. */
9193 frag_grow (max_prefix_size);
9194 p = frag_more (0);
9195
9196 fragP = frag_now;
9197
9198 frag_var (rs_machine_dependent, max_prefix_size, 0,
9199 ENCODE_RELAX_STATE (BRANCH_PREFIX, 0),
9200 NULL, 0, p);
9201
9202 fragP->tc_frag_data.max_bytes = max_prefix_size;
9203 }
9204
43234a1e
L
9205 /* Since the VEX/EVEX prefix contains the implicit prefix, we
9206 don't need the explicit prefix. */
9207 if (!i.tm.opcode_modifier.vex && !i.tm.opcode_modifier.evex)
bc4bd9ab 9208 {
c0f3af97 9209 switch (i.tm.opcode_length)
bc4bd9ab 9210 {
c0f3af97
L
9211 case 3:
9212 if (i.tm.base_opcode & 0xff000000)
4dffcebc 9213 {
c0f3af97 9214 prefix = (i.tm.base_opcode >> 24) & 0xff;
c3949f43
JB
9215 if (!i.tm.cpu_flags.bitfield.cpupadlock
9216 || prefix != REPE_PREFIX_OPCODE
9217 || (i.prefix[REP_PREFIX] != REPE_PREFIX_OPCODE))
9218 add_prefix (prefix);
c0f3af97
L
9219 }
9220 break;
9221 case 2:
9222 if ((i.tm.base_opcode & 0xff0000) != 0)
9223 {
9224 prefix = (i.tm.base_opcode >> 16) & 0xff;
c3949f43 9225 add_prefix (prefix);
4dffcebc 9226 }
c0f3af97
L
9227 break;
9228 case 1:
9229 break;
390c91cf
L
9230 case 0:
9231 /* Check for pseudo prefixes. */
9232 as_bad_where (insn_start_frag->fr_file,
9233 insn_start_frag->fr_line,
9234 _("pseudo prefix without instruction"));
9235 return;
c0f3af97
L
9236 default:
9237 abort ();
bc4bd9ab 9238 }
c0f3af97 9239
6d19a37a 9240#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
cf61b747
L
9241 /* For x32, add a dummy REX_OPCODE prefix for mov/add with
9242 R_X86_64_GOTTPOFF relocation so that linker can safely
14470f07
L
9243 perform IE->LE optimization. A dummy REX_OPCODE prefix
9244 is also needed for lea with R_X86_64_GOTPC32_TLSDESC
9245 relocation for GDesc -> IE/LE optimization. */
cf61b747
L
9246 if (x86_elf_abi == X86_64_X32_ABI
9247 && i.operands == 2
14470f07
L
9248 && (i.reloc[0] == BFD_RELOC_X86_64_GOTTPOFF
9249 || i.reloc[0] == BFD_RELOC_X86_64_GOTPC32_TLSDESC)
cf61b747
L
9250 && i.prefix[REX_PREFIX] == 0)
9251 add_prefix (REX_OPCODE);
6d19a37a 9252#endif
cf61b747 9253
c0f3af97
L
9254 /* The prefix bytes. */
9255 for (j = ARRAY_SIZE (i.prefix), q = i.prefix; j > 0; j--, q++)
9256 if (*q)
9257 FRAG_APPEND_1_CHAR (*q);
0f10071e 9258 }
ae5c1c7b 9259 else
c0f3af97
L
9260 {
9261 for (j = 0, q = i.prefix; j < ARRAY_SIZE (i.prefix); j++, q++)
9262 if (*q)
9263 switch (j)
9264 {
9265 case REX_PREFIX:
9266 /* REX byte is encoded in VEX prefix. */
9267 break;
9268 case SEG_PREFIX:
9269 case ADDR_PREFIX:
9270 FRAG_APPEND_1_CHAR (*q);
9271 break;
9272 default:
9273 /* There should be no other prefixes for instructions
9274 with VEX prefix. */
9275 abort ();
9276 }
9277
43234a1e
L
9278 /* For EVEX instructions i.vrex should become 0 after
9279 build_evex_prefix. For VEX instructions upper 16 registers
9280 aren't available, so VREX should be 0. */
9281 if (i.vrex)
9282 abort ();
c0f3af97
L
9283 /* Now the VEX prefix. */
9284 p = frag_more (i.vex.length);
9285 for (j = 0; j < i.vex.length; j++)
9286 p[j] = i.vex.bytes[j];
9287 }
252b5132 9288
29b0f896 9289 /* Now the opcode; be careful about word order here! */
4dffcebc 9290 if (i.tm.opcode_length == 1)
29b0f896
AM
9291 {
9292 FRAG_APPEND_1_CHAR (i.tm.base_opcode);
9293 }
9294 else
9295 {
4dffcebc 9296 switch (i.tm.opcode_length)
331d2d0d 9297 {
43234a1e
L
9298 case 4:
9299 p = frag_more (4);
9300 *p++ = (i.tm.base_opcode >> 24) & 0xff;
9301 *p++ = (i.tm.base_opcode >> 16) & 0xff;
9302 break;
4dffcebc 9303 case 3:
331d2d0d
L
9304 p = frag_more (3);
9305 *p++ = (i.tm.base_opcode >> 16) & 0xff;
4dffcebc
L
9306 break;
9307 case 2:
9308 p = frag_more (2);
9309 break;
9310 default:
9311 abort ();
9312 break;
331d2d0d 9313 }
0f10071e 9314
29b0f896
AM
9315 /* Put out high byte first: can't use md_number_to_chars! */
9316 *p++ = (i.tm.base_opcode >> 8) & 0xff;
9317 *p = i.tm.base_opcode & 0xff;
9318 }
3e73aa7c 9319
29b0f896 9320 /* Now the modrm byte and sib byte (if present). */
40fb9820 9321 if (i.tm.opcode_modifier.modrm)
29b0f896 9322 {
4a3523fa
L
9323 FRAG_APPEND_1_CHAR ((i.rm.regmem << 0
9324 | i.rm.reg << 3
9325 | i.rm.mode << 6));
29b0f896
AM
9326 /* If i.rm.regmem == ESP (4)
9327 && i.rm.mode != (Register mode)
9328 && not 16 bit
9329 ==> need second modrm byte. */
9330 if (i.rm.regmem == ESCAPE_TO_TWO_BYTE_ADDRESSING
9331 && i.rm.mode != 3
dc821c5f 9332 && !(i.base_reg && i.base_reg->reg_type.bitfield.word))
4a3523fa
L
9333 FRAG_APPEND_1_CHAR ((i.sib.base << 0
9334 | i.sib.index << 3
9335 | i.sib.scale << 6));
29b0f896 9336 }
3e73aa7c 9337
29b0f896 9338 if (i.disp_operands)
2bbd9c25 9339 output_disp (insn_start_frag, insn_start_off);
3e73aa7c 9340
29b0f896 9341 if (i.imm_operands)
2bbd9c25 9342 output_imm (insn_start_frag, insn_start_off);
9c33702b
JB
9343
9344 /*
9345 * frag_now_fix () returning plain abs_section_offset when we're in the
9346 * absolute section, and abs_section_offset not getting updated as data
9347 * gets added to the frag breaks the logic below.
9348 */
9349 if (now_seg != absolute_section)
9350 {
9351 j = encoding_length (insn_start_frag, insn_start_off, frag_more (0));
9352 if (j > 15)
9353 as_warn (_("instruction length of %u bytes exceeds the limit of 15"),
9354 j);
e379e5f3
L
9355 else if (fragP)
9356 {
9357 /* NB: Don't add prefix with GOTPC relocation since
9358 output_disp() above depends on the fixed encoding
9359 length. Can't add prefix with TLS relocation since
9360 it breaks TLS linker optimization. */
9361 unsigned int max = i.has_gotpc_tls_reloc ? 0 : 15 - j;
9362 /* Prefix count on the current instruction. */
9363 unsigned int count = i.vex.length;
9364 unsigned int k;
9365 for (k = 0; k < ARRAY_SIZE (i.prefix); k++)
9366 /* REX byte is encoded in VEX/EVEX prefix. */
9367 if (i.prefix[k] && (k != REX_PREFIX || !i.vex.length))
9368 count++;
9369
9370 /* Count prefixes for extended opcode maps. */
9371 if (!i.vex.length)
9372 switch (i.tm.opcode_length)
9373 {
9374 case 3:
9375 if (((i.tm.base_opcode >> 16) & 0xff) == 0xf)
9376 {
9377 count++;
9378 switch ((i.tm.base_opcode >> 8) & 0xff)
9379 {
9380 case 0x38:
9381 case 0x3a:
9382 count++;
9383 break;
9384 default:
9385 break;
9386 }
9387 }
9388 break;
9389 case 2:
9390 if (((i.tm.base_opcode >> 8) & 0xff) == 0xf)
9391 count++;
9392 break;
9393 case 1:
9394 break;
9395 default:
9396 abort ();
9397 }
9398
9399 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
9400 == BRANCH_PREFIX)
9401 {
9402 /* Set the maximum prefix size in BRANCH_PREFIX
9403 frag. */
9404 if (fragP->tc_frag_data.max_bytes > max)
9405 fragP->tc_frag_data.max_bytes = max;
9406 if (fragP->tc_frag_data.max_bytes > count)
9407 fragP->tc_frag_data.max_bytes -= count;
9408 else
9409 fragP->tc_frag_data.max_bytes = 0;
9410 }
9411 else
9412 {
9413 /* Remember the maximum prefix size in FUSED_JCC_PADDING
9414 frag. */
9415 unsigned int max_prefix_size;
9416 if (align_branch_prefix_size > max)
9417 max_prefix_size = max;
9418 else
9419 max_prefix_size = align_branch_prefix_size;
9420 if (max_prefix_size > count)
9421 fragP->tc_frag_data.max_prefix_length
9422 = max_prefix_size - count;
9423 }
9424
9425 /* Use existing segment prefix if possible. Use CS
9426 segment prefix in 64-bit mode. In 32-bit mode, use SS
9427 segment prefix with ESP/EBP base register and use DS
9428 segment prefix without ESP/EBP base register. */
9429 if (i.prefix[SEG_PREFIX])
9430 fragP->tc_frag_data.default_prefix = i.prefix[SEG_PREFIX];
9431 else if (flag_code == CODE_64BIT)
9432 fragP->tc_frag_data.default_prefix = CS_PREFIX_OPCODE;
9433 else if (i.base_reg
9434 && (i.base_reg->reg_num == 4
9435 || i.base_reg->reg_num == 5))
9436 fragP->tc_frag_data.default_prefix = SS_PREFIX_OPCODE;
9437 else
9438 fragP->tc_frag_data.default_prefix = DS_PREFIX_OPCODE;
9439 }
9c33702b 9440 }
29b0f896 9441 }
252b5132 9442
e379e5f3
L
9443 /* NB: Don't work with COND_JUMP86 without i386. */
9444 if (align_branch_power
9445 && now_seg != absolute_section
9446 && cpu_arch_flags.bitfield.cpui386)
9447 {
9448 /* Terminate each frag so that we can add prefix and check for
9449 fused jcc. */
9450 frag_wane (frag_now);
9451 frag_new (0);
9452 }
9453
29b0f896
AM
9454#ifdef DEBUG386
9455 if (flag_debug)
9456 {
7b81dfbb 9457 pi ("" /*line*/, &i);
29b0f896
AM
9458 }
9459#endif /* DEBUG386 */
9460}
252b5132 9461
e205caa7
L
9462/* Return the size of the displacement operand N. */
9463
9464static int
9465disp_size (unsigned int n)
9466{
9467 int size = 4;
43234a1e 9468
b5014f7a 9469 if (i.types[n].bitfield.disp64)
40fb9820
L
9470 size = 8;
9471 else if (i.types[n].bitfield.disp8)
9472 size = 1;
9473 else if (i.types[n].bitfield.disp16)
9474 size = 2;
e205caa7
L
9475 return size;
9476}
9477
9478/* Return the size of the immediate operand N. */
9479
9480static int
9481imm_size (unsigned int n)
9482{
9483 int size = 4;
40fb9820
L
9484 if (i.types[n].bitfield.imm64)
9485 size = 8;
9486 else if (i.types[n].bitfield.imm8 || i.types[n].bitfield.imm8s)
9487 size = 1;
9488 else if (i.types[n].bitfield.imm16)
9489 size = 2;
e205caa7
L
9490 return size;
9491}
9492
29b0f896 9493static void
64e74474 9494output_disp (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
9495{
9496 char *p;
9497 unsigned int n;
252b5132 9498
29b0f896
AM
9499 for (n = 0; n < i.operands; n++)
9500 {
b5014f7a 9501 if (operand_type_check (i.types[n], disp))
29b0f896
AM
9502 {
9503 if (i.op[n].disps->X_op == O_constant)
9504 {
e205caa7 9505 int size = disp_size (n);
43234a1e 9506 offsetT val = i.op[n].disps->X_add_number;
252b5132 9507
629cfaf1
JB
9508 val = offset_in_range (val >> (size == 1 ? i.memshift : 0),
9509 size);
29b0f896
AM
9510 p = frag_more (size);
9511 md_number_to_chars (p, val, size);
9512 }
9513 else
9514 {
f86103b7 9515 enum bfd_reloc_code_real reloc_type;
e205caa7 9516 int size = disp_size (n);
40fb9820 9517 int sign = i.types[n].bitfield.disp32s;
29b0f896 9518 int pcrel = (i.flags[n] & Operand_PCrel) != 0;
02a86693 9519 fixS *fixP;
29b0f896 9520
e205caa7 9521 /* We can't have 8 bit displacement here. */
9c2799c2 9522 gas_assert (!i.types[n].bitfield.disp8);
e205caa7 9523
29b0f896
AM
9524 /* The PC relative address is computed relative
9525 to the instruction boundary, so in case immediate
9526 fields follows, we need to adjust the value. */
9527 if (pcrel && i.imm_operands)
9528 {
29b0f896 9529 unsigned int n1;
e205caa7 9530 int sz = 0;
252b5132 9531
29b0f896 9532 for (n1 = 0; n1 < i.operands; n1++)
40fb9820 9533 if (operand_type_check (i.types[n1], imm))
252b5132 9534 {
e205caa7
L
9535 /* Only one immediate is allowed for PC
9536 relative address. */
9c2799c2 9537 gas_assert (sz == 0);
e205caa7
L
9538 sz = imm_size (n1);
9539 i.op[n].disps->X_add_number -= sz;
252b5132 9540 }
29b0f896 9541 /* We should find the immediate. */
9c2799c2 9542 gas_assert (sz != 0);
29b0f896 9543 }
520dc8e8 9544
29b0f896 9545 p = frag_more (size);
d258b828 9546 reloc_type = reloc (size, pcrel, sign, i.reloc[n]);
d6ab8113 9547 if (GOT_symbol
2bbd9c25 9548 && GOT_symbol == i.op[n].disps->X_add_symbol
d6ab8113 9549 && (((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
9550 || reloc_type == BFD_RELOC_X86_64_32S
9551 || (reloc_type == BFD_RELOC_64
9552 && object_64bit))
d6ab8113
JB
9553 && (i.op[n].disps->X_op == O_symbol
9554 || (i.op[n].disps->X_op == O_add
9555 && ((symbol_get_value_expression
9556 (i.op[n].disps->X_op_symbol)->X_op)
9557 == O_subtract))))
9558 || reloc_type == BFD_RELOC_32_PCREL))
2bbd9c25 9559 {
4fa24527 9560 if (!object_64bit)
7b81dfbb
AJ
9561 {
9562 reloc_type = BFD_RELOC_386_GOTPC;
e379e5f3 9563 i.has_gotpc_tls_reloc = TRUE;
d583596c
JB
9564 i.op[n].imms->X_add_number +=
9565 encoding_length (insn_start_frag, insn_start_off, p);
7b81dfbb
AJ
9566 }
9567 else if (reloc_type == BFD_RELOC_64)
9568 reloc_type = BFD_RELOC_X86_64_GOTPC64;
d6ab8113 9569 else
7b81dfbb
AJ
9570 /* Don't do the adjustment for x86-64, as there
9571 the pcrel addressing is relative to the _next_
9572 insn, and that is taken care of in other code. */
d6ab8113 9573 reloc_type = BFD_RELOC_X86_64_GOTPC32;
2bbd9c25 9574 }
e379e5f3
L
9575 else if (align_branch_power)
9576 {
9577 switch (reloc_type)
9578 {
9579 case BFD_RELOC_386_TLS_GD:
9580 case BFD_RELOC_386_TLS_LDM:
9581 case BFD_RELOC_386_TLS_IE:
9582 case BFD_RELOC_386_TLS_IE_32:
9583 case BFD_RELOC_386_TLS_GOTIE:
9584 case BFD_RELOC_386_TLS_GOTDESC:
9585 case BFD_RELOC_386_TLS_DESC_CALL:
9586 case BFD_RELOC_X86_64_TLSGD:
9587 case BFD_RELOC_X86_64_TLSLD:
9588 case BFD_RELOC_X86_64_GOTTPOFF:
9589 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
9590 case BFD_RELOC_X86_64_TLSDESC_CALL:
9591 i.has_gotpc_tls_reloc = TRUE;
9592 default:
9593 break;
9594 }
9595 }
02a86693
L
9596 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal,
9597 size, i.op[n].disps, pcrel,
9598 reloc_type);
9599 /* Check for "call/jmp *mem", "mov mem, %reg",
9600 "test %reg, mem" and "binop mem, %reg" where binop
9601 is one of adc, add, and, cmp, or, sbb, sub, xor
e60f4d3b
L
9602 instructions without data prefix. Always generate
9603 R_386_GOT32X for "sym*GOT" operand in 32-bit mode. */
9604 if (i.prefix[DATA_PREFIX] == 0
9605 && (generate_relax_relocations
9606 || (!object_64bit
9607 && i.rm.mode == 0
9608 && i.rm.regmem == 5))
0cb4071e
L
9609 && (i.rm.mode == 2
9610 || (i.rm.mode == 0 && i.rm.regmem == 5))
2ae4c703 9611 && !is_any_vex_encoding(&i.tm)
02a86693
L
9612 && ((i.operands == 1
9613 && i.tm.base_opcode == 0xff
9614 && (i.rm.reg == 2 || i.rm.reg == 4))
9615 || (i.operands == 2
9616 && (i.tm.base_opcode == 0x8b
9617 || i.tm.base_opcode == 0x85
2ae4c703 9618 || (i.tm.base_opcode & ~0x38) == 0x03))))
02a86693
L
9619 {
9620 if (object_64bit)
9621 {
9622 fixP->fx_tcbit = i.rex != 0;
9623 if (i.base_reg
e968fc9b 9624 && (i.base_reg->reg_num == RegIP))
02a86693
L
9625 fixP->fx_tcbit2 = 1;
9626 }
9627 else
9628 fixP->fx_tcbit2 = 1;
9629 }
29b0f896
AM
9630 }
9631 }
9632 }
9633}
252b5132 9634
29b0f896 9635static void
64e74474 9636output_imm (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
9637{
9638 char *p;
9639 unsigned int n;
252b5132 9640
29b0f896
AM
9641 for (n = 0; n < i.operands; n++)
9642 {
43234a1e
L
9643 /* Skip SAE/RC Imm operand in EVEX. They are already handled. */
9644 if (i.rounding && (int) n == i.rounding->operand)
9645 continue;
9646
40fb9820 9647 if (operand_type_check (i.types[n], imm))
29b0f896
AM
9648 {
9649 if (i.op[n].imms->X_op == O_constant)
9650 {
e205caa7 9651 int size = imm_size (n);
29b0f896 9652 offsetT val;
b4cac588 9653
29b0f896
AM
9654 val = offset_in_range (i.op[n].imms->X_add_number,
9655 size);
9656 p = frag_more (size);
9657 md_number_to_chars (p, val, size);
9658 }
9659 else
9660 {
9661 /* Not absolute_section.
9662 Need a 32-bit fixup (don't support 8bit
9663 non-absolute imms). Try to support other
9664 sizes ... */
f86103b7 9665 enum bfd_reloc_code_real reloc_type;
e205caa7
L
9666 int size = imm_size (n);
9667 int sign;
29b0f896 9668
40fb9820 9669 if (i.types[n].bitfield.imm32s
a7d61044 9670 && (i.suffix == QWORD_MNEM_SUFFIX
40fb9820 9671 || (!i.suffix && i.tm.opcode_modifier.no_lsuf)))
29b0f896 9672 sign = 1;
e205caa7
L
9673 else
9674 sign = 0;
520dc8e8 9675
29b0f896 9676 p = frag_more (size);
d258b828 9677 reloc_type = reloc (size, 0, sign, i.reloc[n]);
f86103b7 9678
2bbd9c25
JJ
9679 /* This is tough to explain. We end up with this one if we
9680 * have operands that look like
9681 * "_GLOBAL_OFFSET_TABLE_+[.-.L284]". The goal here is to
9682 * obtain the absolute address of the GOT, and it is strongly
9683 * preferable from a performance point of view to avoid using
9684 * a runtime relocation for this. The actual sequence of
9685 * instructions often look something like:
9686 *
9687 * call .L66
9688 * .L66:
9689 * popl %ebx
9690 * addl $_GLOBAL_OFFSET_TABLE_+[.-.L66],%ebx
9691 *
9692 * The call and pop essentially return the absolute address
9693 * of the label .L66 and store it in %ebx. The linker itself
9694 * will ultimately change the first operand of the addl so
9695 * that %ebx points to the GOT, but to keep things simple, the
9696 * .o file must have this operand set so that it generates not
9697 * the absolute address of .L66, but the absolute address of
9698 * itself. This allows the linker itself simply treat a GOTPC
9699 * relocation as asking for a pcrel offset to the GOT to be
9700 * added in, and the addend of the relocation is stored in the
9701 * operand field for the instruction itself.
9702 *
9703 * Our job here is to fix the operand so that it would add
9704 * the correct offset so that %ebx would point to itself. The
9705 * thing that is tricky is that .-.L66 will point to the
9706 * beginning of the instruction, so we need to further modify
9707 * the operand so that it will point to itself. There are
9708 * other cases where you have something like:
9709 *
9710 * .long $_GLOBAL_OFFSET_TABLE_+[.-.L66]
9711 *
9712 * and here no correction would be required. Internally in
9713 * the assembler we treat operands of this form as not being
9714 * pcrel since the '.' is explicitly mentioned, and I wonder
9715 * whether it would simplify matters to do it this way. Who
9716 * knows. In earlier versions of the PIC patches, the
9717 * pcrel_adjust field was used to store the correction, but
9718 * since the expression is not pcrel, I felt it would be
9719 * confusing to do it this way. */
9720
d6ab8113 9721 if ((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
9722 || reloc_type == BFD_RELOC_X86_64_32S
9723 || reloc_type == BFD_RELOC_64)
29b0f896
AM
9724 && GOT_symbol
9725 && GOT_symbol == i.op[n].imms->X_add_symbol
9726 && (i.op[n].imms->X_op == O_symbol
9727 || (i.op[n].imms->X_op == O_add
9728 && ((symbol_get_value_expression
9729 (i.op[n].imms->X_op_symbol)->X_op)
9730 == O_subtract))))
9731 {
4fa24527 9732 if (!object_64bit)
d6ab8113 9733 reloc_type = BFD_RELOC_386_GOTPC;
7b81dfbb 9734 else if (size == 4)
d6ab8113 9735 reloc_type = BFD_RELOC_X86_64_GOTPC32;
7b81dfbb
AJ
9736 else if (size == 8)
9737 reloc_type = BFD_RELOC_X86_64_GOTPC64;
e379e5f3 9738 i.has_gotpc_tls_reloc = TRUE;
d583596c
JB
9739 i.op[n].imms->X_add_number +=
9740 encoding_length (insn_start_frag, insn_start_off, p);
29b0f896 9741 }
29b0f896
AM
9742 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
9743 i.op[n].imms, 0, reloc_type);
9744 }
9745 }
9746 }
252b5132
RH
9747}
9748\f
d182319b
JB
9749/* x86_cons_fix_new is called via the expression parsing code when a
9750 reloc is needed. We use this hook to get the correct .got reloc. */
d182319b
JB
9751static int cons_sign = -1;
9752
9753void
e3bb37b5 9754x86_cons_fix_new (fragS *frag, unsigned int off, unsigned int len,
62ebcb5c 9755 expressionS *exp, bfd_reloc_code_real_type r)
d182319b 9756{
d258b828 9757 r = reloc (len, 0, cons_sign, r);
d182319b
JB
9758
9759#ifdef TE_PE
9760 if (exp->X_op == O_secrel)
9761 {
9762 exp->X_op = O_symbol;
9763 r = BFD_RELOC_32_SECREL;
9764 }
9765#endif
9766
9767 fix_new_exp (frag, off, len, exp, 0, r);
9768}
9769
357d1bd8
L
9770/* Export the ABI address size for use by TC_ADDRESS_BYTES for the
9771 purpose of the `.dc.a' internal pseudo-op. */
9772
9773int
9774x86_address_bytes (void)
9775{
9776 if ((stdoutput->arch_info->mach & bfd_mach_x64_32))
9777 return 4;
9778 return stdoutput->arch_info->bits_per_address / 8;
9779}
9780
d382c579
TG
9781#if !(defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined (OBJ_MACH_O)) \
9782 || defined (LEX_AT)
d258b828 9783# define lex_got(reloc, adjust, types) NULL
718ddfc0 9784#else
f3c180ae
AM
9785/* Parse operands of the form
9786 <symbol>@GOTOFF+<nnn>
9787 and similar .plt or .got references.
9788
9789 If we find one, set up the correct relocation in RELOC and copy the
9790 input string, minus the `@GOTOFF' into a malloc'd buffer for
9791 parsing by the calling routine. Return this buffer, and if ADJUST
9792 is non-null set it to the length of the string we removed from the
9793 input line. Otherwise return NULL. */
9794static char *
91d6fa6a 9795lex_got (enum bfd_reloc_code_real *rel,
64e74474 9796 int *adjust,
d258b828 9797 i386_operand_type *types)
f3c180ae 9798{
7b81dfbb
AJ
9799 /* Some of the relocations depend on the size of what field is to
9800 be relocated. But in our callers i386_immediate and i386_displacement
9801 we don't yet know the operand size (this will be set by insn
9802 matching). Hence we record the word32 relocation here,
9803 and adjust the reloc according to the real size in reloc(). */
f3c180ae
AM
9804 static const struct {
9805 const char *str;
cff8d58a 9806 int len;
4fa24527 9807 const enum bfd_reloc_code_real rel[2];
40fb9820 9808 const i386_operand_type types64;
f3c180ae 9809 } gotrel[] = {
8ce3d284 9810#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
9811 { STRING_COMMA_LEN ("SIZE"), { BFD_RELOC_SIZE32,
9812 BFD_RELOC_SIZE32 },
9813 OPERAND_TYPE_IMM32_64 },
8ce3d284 9814#endif
cff8d58a
L
9815 { STRING_COMMA_LEN ("PLTOFF"), { _dummy_first_bfd_reloc_code_real,
9816 BFD_RELOC_X86_64_PLTOFF64 },
40fb9820 9817 OPERAND_TYPE_IMM64 },
cff8d58a
L
9818 { STRING_COMMA_LEN ("PLT"), { BFD_RELOC_386_PLT32,
9819 BFD_RELOC_X86_64_PLT32 },
40fb9820 9820 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9821 { STRING_COMMA_LEN ("GOTPLT"), { _dummy_first_bfd_reloc_code_real,
9822 BFD_RELOC_X86_64_GOTPLT64 },
40fb9820 9823 OPERAND_TYPE_IMM64_DISP64 },
cff8d58a
L
9824 { STRING_COMMA_LEN ("GOTOFF"), { BFD_RELOC_386_GOTOFF,
9825 BFD_RELOC_X86_64_GOTOFF64 },
40fb9820 9826 OPERAND_TYPE_IMM64_DISP64 },
cff8d58a
L
9827 { STRING_COMMA_LEN ("GOTPCREL"), { _dummy_first_bfd_reloc_code_real,
9828 BFD_RELOC_X86_64_GOTPCREL },
40fb9820 9829 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9830 { STRING_COMMA_LEN ("TLSGD"), { BFD_RELOC_386_TLS_GD,
9831 BFD_RELOC_X86_64_TLSGD },
40fb9820 9832 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9833 { STRING_COMMA_LEN ("TLSLDM"), { BFD_RELOC_386_TLS_LDM,
9834 _dummy_first_bfd_reloc_code_real },
40fb9820 9835 OPERAND_TYPE_NONE },
cff8d58a
L
9836 { STRING_COMMA_LEN ("TLSLD"), { _dummy_first_bfd_reloc_code_real,
9837 BFD_RELOC_X86_64_TLSLD },
40fb9820 9838 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9839 { STRING_COMMA_LEN ("GOTTPOFF"), { BFD_RELOC_386_TLS_IE_32,
9840 BFD_RELOC_X86_64_GOTTPOFF },
40fb9820 9841 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9842 { STRING_COMMA_LEN ("TPOFF"), { BFD_RELOC_386_TLS_LE_32,
9843 BFD_RELOC_X86_64_TPOFF32 },
40fb9820 9844 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
cff8d58a
L
9845 { STRING_COMMA_LEN ("NTPOFF"), { BFD_RELOC_386_TLS_LE,
9846 _dummy_first_bfd_reloc_code_real },
40fb9820 9847 OPERAND_TYPE_NONE },
cff8d58a
L
9848 { STRING_COMMA_LEN ("DTPOFF"), { BFD_RELOC_386_TLS_LDO_32,
9849 BFD_RELOC_X86_64_DTPOFF32 },
40fb9820 9850 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
cff8d58a
L
9851 { STRING_COMMA_LEN ("GOTNTPOFF"),{ BFD_RELOC_386_TLS_GOTIE,
9852 _dummy_first_bfd_reloc_code_real },
40fb9820 9853 OPERAND_TYPE_NONE },
cff8d58a
L
9854 { STRING_COMMA_LEN ("INDNTPOFF"),{ BFD_RELOC_386_TLS_IE,
9855 _dummy_first_bfd_reloc_code_real },
40fb9820 9856 OPERAND_TYPE_NONE },
cff8d58a
L
9857 { STRING_COMMA_LEN ("GOT"), { BFD_RELOC_386_GOT32,
9858 BFD_RELOC_X86_64_GOT32 },
40fb9820 9859 OPERAND_TYPE_IMM32_32S_64_DISP32 },
cff8d58a
L
9860 { STRING_COMMA_LEN ("TLSDESC"), { BFD_RELOC_386_TLS_GOTDESC,
9861 BFD_RELOC_X86_64_GOTPC32_TLSDESC },
40fb9820 9862 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9863 { STRING_COMMA_LEN ("TLSCALL"), { BFD_RELOC_386_TLS_DESC_CALL,
9864 BFD_RELOC_X86_64_TLSDESC_CALL },
40fb9820 9865 OPERAND_TYPE_IMM32_32S_DISP32 },
f3c180ae
AM
9866 };
9867 char *cp;
9868 unsigned int j;
9869
d382c579 9870#if defined (OBJ_MAYBE_ELF)
718ddfc0
JB
9871 if (!IS_ELF)
9872 return NULL;
d382c579 9873#endif
718ddfc0 9874
f3c180ae 9875 for (cp = input_line_pointer; *cp != '@'; cp++)
67c11a9b 9876 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
f3c180ae
AM
9877 return NULL;
9878
47465058 9879 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
f3c180ae 9880 {
cff8d58a 9881 int len = gotrel[j].len;
28f81592 9882 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
f3c180ae 9883 {
4fa24527 9884 if (gotrel[j].rel[object_64bit] != 0)
f3c180ae 9885 {
28f81592
AM
9886 int first, second;
9887 char *tmpbuf, *past_reloc;
f3c180ae 9888
91d6fa6a 9889 *rel = gotrel[j].rel[object_64bit];
f3c180ae 9890
3956db08
JB
9891 if (types)
9892 {
9893 if (flag_code != CODE_64BIT)
40fb9820
L
9894 {
9895 types->bitfield.imm32 = 1;
9896 types->bitfield.disp32 = 1;
9897 }
3956db08
JB
9898 else
9899 *types = gotrel[j].types64;
9900 }
9901
8fd4256d 9902 if (j != 0 && GOT_symbol == NULL)
f3c180ae
AM
9903 GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
9904
28f81592 9905 /* The length of the first part of our input line. */
f3c180ae 9906 first = cp - input_line_pointer;
28f81592
AM
9907
9908 /* The second part goes from after the reloc token until
67c11a9b 9909 (and including) an end_of_line char or comma. */
28f81592 9910 past_reloc = cp + 1 + len;
67c11a9b
AM
9911 cp = past_reloc;
9912 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
9913 ++cp;
9914 second = cp + 1 - past_reloc;
28f81592
AM
9915
9916 /* Allocate and copy string. The trailing NUL shouldn't
9917 be necessary, but be safe. */
add39d23 9918 tmpbuf = XNEWVEC (char, first + second + 2);
f3c180ae 9919 memcpy (tmpbuf, input_line_pointer, first);
0787a12d
AM
9920 if (second != 0 && *past_reloc != ' ')
9921 /* Replace the relocation token with ' ', so that
9922 errors like foo@GOTOFF1 will be detected. */
9923 tmpbuf[first++] = ' ';
af89796a
L
9924 else
9925 /* Increment length by 1 if the relocation token is
9926 removed. */
9927 len++;
9928 if (adjust)
9929 *adjust = len;
0787a12d
AM
9930 memcpy (tmpbuf + first, past_reloc, second);
9931 tmpbuf[first + second] = '\0';
f3c180ae
AM
9932 return tmpbuf;
9933 }
9934
4fa24527
JB
9935 as_bad (_("@%s reloc is not supported with %d-bit output format"),
9936 gotrel[j].str, 1 << (5 + object_64bit));
f3c180ae
AM
9937 return NULL;
9938 }
9939 }
9940
9941 /* Might be a symbol version string. Don't as_bad here. */
9942 return NULL;
9943}
4e4f7c87 9944#endif
f3c180ae 9945
a988325c
NC
9946#ifdef TE_PE
9947#ifdef lex_got
9948#undef lex_got
9949#endif
9950/* Parse operands of the form
9951 <symbol>@SECREL32+<nnn>
9952
9953 If we find one, set up the correct relocation in RELOC and copy the
9954 input string, minus the `@SECREL32' into a malloc'd buffer for
9955 parsing by the calling routine. Return this buffer, and if ADJUST
9956 is non-null set it to the length of the string we removed from the
34bca508
L
9957 input line. Otherwise return NULL.
9958
a988325c
NC
9959 This function is copied from the ELF version above adjusted for PE targets. */
9960
9961static char *
9962lex_got (enum bfd_reloc_code_real *rel ATTRIBUTE_UNUSED,
9963 int *adjust ATTRIBUTE_UNUSED,
d258b828 9964 i386_operand_type *types)
a988325c
NC
9965{
9966 static const struct
9967 {
9968 const char *str;
9969 int len;
9970 const enum bfd_reloc_code_real rel[2];
9971 const i386_operand_type types64;
9972 }
9973 gotrel[] =
9974 {
9975 { STRING_COMMA_LEN ("SECREL32"), { BFD_RELOC_32_SECREL,
9976 BFD_RELOC_32_SECREL },
9977 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
9978 };
9979
9980 char *cp;
9981 unsigned j;
9982
9983 for (cp = input_line_pointer; *cp != '@'; cp++)
9984 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
9985 return NULL;
9986
9987 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
9988 {
9989 int len = gotrel[j].len;
9990
9991 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
9992 {
9993 if (gotrel[j].rel[object_64bit] != 0)
9994 {
9995 int first, second;
9996 char *tmpbuf, *past_reloc;
9997
9998 *rel = gotrel[j].rel[object_64bit];
9999 if (adjust)
10000 *adjust = len;
10001
10002 if (types)
10003 {
10004 if (flag_code != CODE_64BIT)
10005 {
10006 types->bitfield.imm32 = 1;
10007 types->bitfield.disp32 = 1;
10008 }
10009 else
10010 *types = gotrel[j].types64;
10011 }
10012
10013 /* The length of the first part of our input line. */
10014 first = cp - input_line_pointer;
10015
10016 /* The second part goes from after the reloc token until
10017 (and including) an end_of_line char or comma. */
10018 past_reloc = cp + 1 + len;
10019 cp = past_reloc;
10020 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
10021 ++cp;
10022 second = cp + 1 - past_reloc;
10023
10024 /* Allocate and copy string. The trailing NUL shouldn't
10025 be necessary, but be safe. */
add39d23 10026 tmpbuf = XNEWVEC (char, first + second + 2);
a988325c
NC
10027 memcpy (tmpbuf, input_line_pointer, first);
10028 if (second != 0 && *past_reloc != ' ')
10029 /* Replace the relocation token with ' ', so that
10030 errors like foo@SECLREL321 will be detected. */
10031 tmpbuf[first++] = ' ';
10032 memcpy (tmpbuf + first, past_reloc, second);
10033 tmpbuf[first + second] = '\0';
10034 return tmpbuf;
10035 }
10036
10037 as_bad (_("@%s reloc is not supported with %d-bit output format"),
10038 gotrel[j].str, 1 << (5 + object_64bit));
10039 return NULL;
10040 }
10041 }
10042
10043 /* Might be a symbol version string. Don't as_bad here. */
10044 return NULL;
10045}
10046
10047#endif /* TE_PE */
10048
62ebcb5c 10049bfd_reloc_code_real_type
e3bb37b5 10050x86_cons (expressionS *exp, int size)
f3c180ae 10051{
62ebcb5c
AM
10052 bfd_reloc_code_real_type got_reloc = NO_RELOC;
10053
ee86248c
JB
10054 intel_syntax = -intel_syntax;
10055
3c7b9c2c 10056 exp->X_md = 0;
4fa24527 10057 if (size == 4 || (object_64bit && size == 8))
f3c180ae
AM
10058 {
10059 /* Handle @GOTOFF and the like in an expression. */
10060 char *save;
10061 char *gotfree_input_line;
4a57f2cf 10062 int adjust = 0;
f3c180ae
AM
10063
10064 save = input_line_pointer;
d258b828 10065 gotfree_input_line = lex_got (&got_reloc, &adjust, NULL);
f3c180ae
AM
10066 if (gotfree_input_line)
10067 input_line_pointer = gotfree_input_line;
10068
10069 expression (exp);
10070
10071 if (gotfree_input_line)
10072 {
10073 /* expression () has merrily parsed up to the end of line,
10074 or a comma - in the wrong buffer. Transfer how far
10075 input_line_pointer has moved to the right buffer. */
10076 input_line_pointer = (save
10077 + (input_line_pointer - gotfree_input_line)
10078 + adjust);
10079 free (gotfree_input_line);
3992d3b7
AM
10080 if (exp->X_op == O_constant
10081 || exp->X_op == O_absent
10082 || exp->X_op == O_illegal
0398aac5 10083 || exp->X_op == O_register
3992d3b7
AM
10084 || exp->X_op == O_big)
10085 {
10086 char c = *input_line_pointer;
10087 *input_line_pointer = 0;
10088 as_bad (_("missing or invalid expression `%s'"), save);
10089 *input_line_pointer = c;
10090 }
b9519cfe
L
10091 else if ((got_reloc == BFD_RELOC_386_PLT32
10092 || got_reloc == BFD_RELOC_X86_64_PLT32)
10093 && exp->X_op != O_symbol)
10094 {
10095 char c = *input_line_pointer;
10096 *input_line_pointer = 0;
10097 as_bad (_("invalid PLT expression `%s'"), save);
10098 *input_line_pointer = c;
10099 }
f3c180ae
AM
10100 }
10101 }
10102 else
10103 expression (exp);
ee86248c
JB
10104
10105 intel_syntax = -intel_syntax;
10106
10107 if (intel_syntax)
10108 i386_intel_simplify (exp);
62ebcb5c
AM
10109
10110 return got_reloc;
f3c180ae 10111}
f3c180ae 10112
9f32dd5b
L
10113static void
10114signed_cons (int size)
6482c264 10115{
d182319b
JB
10116 if (flag_code == CODE_64BIT)
10117 cons_sign = 1;
10118 cons (size);
10119 cons_sign = -1;
6482c264
NC
10120}
10121
d182319b 10122#ifdef TE_PE
6482c264 10123static void
7016a5d5 10124pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
6482c264
NC
10125{
10126 expressionS exp;
10127
10128 do
10129 {
10130 expression (&exp);
10131 if (exp.X_op == O_symbol)
10132 exp.X_op = O_secrel;
10133
10134 emit_expr (&exp, 4);
10135 }
10136 while (*input_line_pointer++ == ',');
10137
10138 input_line_pointer--;
10139 demand_empty_rest_of_line ();
10140}
6482c264
NC
10141#endif
10142
43234a1e
L
10143/* Handle Vector operations. */
10144
10145static char *
10146check_VecOperations (char *op_string, char *op_end)
10147{
10148 const reg_entry *mask;
10149 const char *saved;
10150 char *end_op;
10151
10152 while (*op_string
10153 && (op_end == NULL || op_string < op_end))
10154 {
10155 saved = op_string;
10156 if (*op_string == '{')
10157 {
10158 op_string++;
10159
10160 /* Check broadcasts. */
10161 if (strncmp (op_string, "1to", 3) == 0)
10162 {
10163 int bcst_type;
10164
10165 if (i.broadcast)
10166 goto duplicated_vec_op;
10167
10168 op_string += 3;
10169 if (*op_string == '8')
8e6e0792 10170 bcst_type = 8;
b28d1bda 10171 else if (*op_string == '4')
8e6e0792 10172 bcst_type = 4;
b28d1bda 10173 else if (*op_string == '2')
8e6e0792 10174 bcst_type = 2;
43234a1e
L
10175 else if (*op_string == '1'
10176 && *(op_string+1) == '6')
10177 {
8e6e0792 10178 bcst_type = 16;
43234a1e
L
10179 op_string++;
10180 }
10181 else
10182 {
10183 as_bad (_("Unsupported broadcast: `%s'"), saved);
10184 return NULL;
10185 }
10186 op_string++;
10187
10188 broadcast_op.type = bcst_type;
10189 broadcast_op.operand = this_operand;
1f75763a 10190 broadcast_op.bytes = 0;
43234a1e
L
10191 i.broadcast = &broadcast_op;
10192 }
10193 /* Check masking operation. */
10194 else if ((mask = parse_register (op_string, &end_op)) != NULL)
10195 {
8a6fb3f9
JB
10196 if (mask == &bad_reg)
10197 return NULL;
10198
43234a1e 10199 /* k0 can't be used for write mask. */
f74a6307 10200 if (mask->reg_type.bitfield.class != RegMask || !mask->reg_num)
43234a1e 10201 {
6d2cd6b2
JB
10202 as_bad (_("`%s%s' can't be used for write mask"),
10203 register_prefix, mask->reg_name);
43234a1e
L
10204 return NULL;
10205 }
10206
10207 if (!i.mask)
10208 {
10209 mask_op.mask = mask;
10210 mask_op.zeroing = 0;
10211 mask_op.operand = this_operand;
10212 i.mask = &mask_op;
10213 }
10214 else
10215 {
10216 if (i.mask->mask)
10217 goto duplicated_vec_op;
10218
10219 i.mask->mask = mask;
10220
10221 /* Only "{z}" is allowed here. No need to check
10222 zeroing mask explicitly. */
10223 if (i.mask->operand != this_operand)
10224 {
10225 as_bad (_("invalid write mask `%s'"), saved);
10226 return NULL;
10227 }
10228 }
10229
10230 op_string = end_op;
10231 }
10232 /* Check zeroing-flag for masking operation. */
10233 else if (*op_string == 'z')
10234 {
10235 if (!i.mask)
10236 {
10237 mask_op.mask = NULL;
10238 mask_op.zeroing = 1;
10239 mask_op.operand = this_operand;
10240 i.mask = &mask_op;
10241 }
10242 else
10243 {
10244 if (i.mask->zeroing)
10245 {
10246 duplicated_vec_op:
10247 as_bad (_("duplicated `%s'"), saved);
10248 return NULL;
10249 }
10250
10251 i.mask->zeroing = 1;
10252
10253 /* Only "{%k}" is allowed here. No need to check mask
10254 register explicitly. */
10255 if (i.mask->operand != this_operand)
10256 {
10257 as_bad (_("invalid zeroing-masking `%s'"),
10258 saved);
10259 return NULL;
10260 }
10261 }
10262
10263 op_string++;
10264 }
10265 else
10266 goto unknown_vec_op;
10267
10268 if (*op_string != '}')
10269 {
10270 as_bad (_("missing `}' in `%s'"), saved);
10271 return NULL;
10272 }
10273 op_string++;
0ba3a731
L
10274
10275 /* Strip whitespace since the addition of pseudo prefixes
10276 changed how the scrubber treats '{'. */
10277 if (is_space_char (*op_string))
10278 ++op_string;
10279
43234a1e
L
10280 continue;
10281 }
10282 unknown_vec_op:
10283 /* We don't know this one. */
10284 as_bad (_("unknown vector operation: `%s'"), saved);
10285 return NULL;
10286 }
10287
6d2cd6b2
JB
10288 if (i.mask && i.mask->zeroing && !i.mask->mask)
10289 {
10290 as_bad (_("zeroing-masking only allowed with write mask"));
10291 return NULL;
10292 }
10293
43234a1e
L
10294 return op_string;
10295}
10296
252b5132 10297static int
70e41ade 10298i386_immediate (char *imm_start)
252b5132
RH
10299{
10300 char *save_input_line_pointer;
f3c180ae 10301 char *gotfree_input_line;
252b5132 10302 segT exp_seg = 0;
47926f60 10303 expressionS *exp;
40fb9820
L
10304 i386_operand_type types;
10305
0dfbf9d7 10306 operand_type_set (&types, ~0);
252b5132
RH
10307
10308 if (i.imm_operands == MAX_IMMEDIATE_OPERANDS)
10309 {
31b2323c
L
10310 as_bad (_("at most %d immediate operands are allowed"),
10311 MAX_IMMEDIATE_OPERANDS);
252b5132
RH
10312 return 0;
10313 }
10314
10315 exp = &im_expressions[i.imm_operands++];
520dc8e8 10316 i.op[this_operand].imms = exp;
252b5132
RH
10317
10318 if (is_space_char (*imm_start))
10319 ++imm_start;
10320
10321 save_input_line_pointer = input_line_pointer;
10322 input_line_pointer = imm_start;
10323
d258b828 10324 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
10325 if (gotfree_input_line)
10326 input_line_pointer = gotfree_input_line;
252b5132
RH
10327
10328 exp_seg = expression (exp);
10329
83183c0c 10330 SKIP_WHITESPACE ();
43234a1e
L
10331
10332 /* Handle vector operations. */
10333 if (*input_line_pointer == '{')
10334 {
10335 input_line_pointer = check_VecOperations (input_line_pointer,
10336 NULL);
10337 if (input_line_pointer == NULL)
10338 return 0;
10339 }
10340
252b5132 10341 if (*input_line_pointer)
f3c180ae 10342 as_bad (_("junk `%s' after expression"), input_line_pointer);
252b5132
RH
10343
10344 input_line_pointer = save_input_line_pointer;
f3c180ae 10345 if (gotfree_input_line)
ee86248c
JB
10346 {
10347 free (gotfree_input_line);
10348
10349 if (exp->X_op == O_constant || exp->X_op == O_register)
10350 exp->X_op = O_illegal;
10351 }
10352
10353 return i386_finalize_immediate (exp_seg, exp, types, imm_start);
10354}
252b5132 10355
ee86248c
JB
10356static int
10357i386_finalize_immediate (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
10358 i386_operand_type types, const char *imm_start)
10359{
10360 if (exp->X_op == O_absent || exp->X_op == O_illegal || exp->X_op == O_big)
252b5132 10361 {
313c53d1
L
10362 if (imm_start)
10363 as_bad (_("missing or invalid immediate expression `%s'"),
10364 imm_start);
3992d3b7 10365 return 0;
252b5132 10366 }
3e73aa7c 10367 else if (exp->X_op == O_constant)
252b5132 10368 {
47926f60 10369 /* Size it properly later. */
40fb9820 10370 i.types[this_operand].bitfield.imm64 = 1;
13f864ae
L
10371 /* If not 64bit, sign extend val. */
10372 if (flag_code != CODE_64BIT
4eed87de
AM
10373 && (exp->X_add_number & ~(((addressT) 2 << 31) - 1)) == 0)
10374 exp->X_add_number
10375 = (exp->X_add_number ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
252b5132 10376 }
4c63da97 10377#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
f86103b7 10378 else if (OUTPUT_FLAVOR == bfd_target_aout_flavour
31312f95 10379 && exp_seg != absolute_section
47926f60 10380 && exp_seg != text_section
24eab124
AM
10381 && exp_seg != data_section
10382 && exp_seg != bss_section
10383 && exp_seg != undefined_section
f86103b7 10384 && !bfd_is_com_section (exp_seg))
252b5132 10385 {
d0b47220 10386 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
252b5132
RH
10387 return 0;
10388 }
10389#endif
a841bdf5 10390 else if (!intel_syntax && exp_seg == reg_section)
bb8f5920 10391 {
313c53d1
L
10392 if (imm_start)
10393 as_bad (_("illegal immediate register operand %s"), imm_start);
bb8f5920
L
10394 return 0;
10395 }
252b5132
RH
10396 else
10397 {
10398 /* This is an address. The size of the address will be
24eab124 10399 determined later, depending on destination register,
3e73aa7c 10400 suffix, or the default for the section. */
40fb9820
L
10401 i.types[this_operand].bitfield.imm8 = 1;
10402 i.types[this_operand].bitfield.imm16 = 1;
10403 i.types[this_operand].bitfield.imm32 = 1;
10404 i.types[this_operand].bitfield.imm32s = 1;
10405 i.types[this_operand].bitfield.imm64 = 1;
c6fb90c8
L
10406 i.types[this_operand] = operand_type_and (i.types[this_operand],
10407 types);
252b5132
RH
10408 }
10409
10410 return 1;
10411}
10412
551c1ca1 10413static char *
e3bb37b5 10414i386_scale (char *scale)
252b5132 10415{
551c1ca1
AM
10416 offsetT val;
10417 char *save = input_line_pointer;
252b5132 10418
551c1ca1
AM
10419 input_line_pointer = scale;
10420 val = get_absolute_expression ();
10421
10422 switch (val)
252b5132 10423 {
551c1ca1 10424 case 1:
252b5132
RH
10425 i.log2_scale_factor = 0;
10426 break;
551c1ca1 10427 case 2:
252b5132
RH
10428 i.log2_scale_factor = 1;
10429 break;
551c1ca1 10430 case 4:
252b5132
RH
10431 i.log2_scale_factor = 2;
10432 break;
551c1ca1 10433 case 8:
252b5132
RH
10434 i.log2_scale_factor = 3;
10435 break;
10436 default:
a724f0f4
JB
10437 {
10438 char sep = *input_line_pointer;
10439
10440 *input_line_pointer = '\0';
10441 as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
10442 scale);
10443 *input_line_pointer = sep;
10444 input_line_pointer = save;
10445 return NULL;
10446 }
252b5132 10447 }
29b0f896 10448 if (i.log2_scale_factor != 0 && i.index_reg == 0)
252b5132
RH
10449 {
10450 as_warn (_("scale factor of %d without an index register"),
24eab124 10451 1 << i.log2_scale_factor);
252b5132 10452 i.log2_scale_factor = 0;
252b5132 10453 }
551c1ca1
AM
10454 scale = input_line_pointer;
10455 input_line_pointer = save;
10456 return scale;
252b5132
RH
10457}
10458
252b5132 10459static int
e3bb37b5 10460i386_displacement (char *disp_start, char *disp_end)
252b5132 10461{
29b0f896 10462 expressionS *exp;
252b5132
RH
10463 segT exp_seg = 0;
10464 char *save_input_line_pointer;
f3c180ae 10465 char *gotfree_input_line;
40fb9820
L
10466 int override;
10467 i386_operand_type bigdisp, types = anydisp;
3992d3b7 10468 int ret;
252b5132 10469
31b2323c
L
10470 if (i.disp_operands == MAX_MEMORY_OPERANDS)
10471 {
10472 as_bad (_("at most %d displacement operands are allowed"),
10473 MAX_MEMORY_OPERANDS);
10474 return 0;
10475 }
10476
0dfbf9d7 10477 operand_type_set (&bigdisp, 0);
6f2f06be 10478 if (i.jumpabsolute
48bcea9f 10479 || i.types[this_operand].bitfield.baseindex
0cfa3eb3
JB
10480 || (current_templates->start->opcode_modifier.jump != JUMP
10481 && current_templates->start->opcode_modifier.jump != JUMP_DWORD))
e05278af 10482 {
48bcea9f 10483 i386_addressing_mode ();
e05278af 10484 override = (i.prefix[ADDR_PREFIX] != 0);
40fb9820
L
10485 if (flag_code == CODE_64BIT)
10486 {
10487 if (!override)
10488 {
10489 bigdisp.bitfield.disp32s = 1;
10490 bigdisp.bitfield.disp64 = 1;
10491 }
48bcea9f
JB
10492 else
10493 bigdisp.bitfield.disp32 = 1;
40fb9820
L
10494 }
10495 else if ((flag_code == CODE_16BIT) ^ override)
40fb9820 10496 bigdisp.bitfield.disp16 = 1;
48bcea9f
JB
10497 else
10498 bigdisp.bitfield.disp32 = 1;
e05278af
JB
10499 }
10500 else
10501 {
376cd056
JB
10502 /* For PC-relative branches, the width of the displacement may be
10503 dependent upon data size, but is never dependent upon address size.
10504 Also make sure to not unintentionally match against a non-PC-relative
10505 branch template. */
10506 static templates aux_templates;
10507 const insn_template *t = current_templates->start;
10508 bfd_boolean has_intel64 = FALSE;
10509
10510 aux_templates.start = t;
10511 while (++t < current_templates->end)
10512 {
10513 if (t->opcode_modifier.jump
10514 != current_templates->start->opcode_modifier.jump)
10515 break;
4b5aaf5f 10516 if ((t->opcode_modifier.isa64 >= INTEL64))
376cd056
JB
10517 has_intel64 = TRUE;
10518 }
10519 if (t < current_templates->end)
10520 {
10521 aux_templates.end = t;
10522 current_templates = &aux_templates;
10523 }
10524
e05278af 10525 override = (i.prefix[DATA_PREFIX] != 0);
40fb9820
L
10526 if (flag_code == CODE_64BIT)
10527 {
376cd056
JB
10528 if ((override || i.suffix == WORD_MNEM_SUFFIX)
10529 && (!intel64 || !has_intel64))
40fb9820
L
10530 bigdisp.bitfield.disp16 = 1;
10531 else
48bcea9f 10532 bigdisp.bitfield.disp32s = 1;
40fb9820
L
10533 }
10534 else
e05278af
JB
10535 {
10536 if (!override)
10537 override = (i.suffix == (flag_code != CODE_16BIT
10538 ? WORD_MNEM_SUFFIX
10539 : LONG_MNEM_SUFFIX));
40fb9820
L
10540 bigdisp.bitfield.disp32 = 1;
10541 if ((flag_code == CODE_16BIT) ^ override)
10542 {
10543 bigdisp.bitfield.disp32 = 0;
10544 bigdisp.bitfield.disp16 = 1;
10545 }
e05278af 10546 }
e05278af 10547 }
c6fb90c8
L
10548 i.types[this_operand] = operand_type_or (i.types[this_operand],
10549 bigdisp);
252b5132
RH
10550
10551 exp = &disp_expressions[i.disp_operands];
520dc8e8 10552 i.op[this_operand].disps = exp;
252b5132
RH
10553 i.disp_operands++;
10554 save_input_line_pointer = input_line_pointer;
10555 input_line_pointer = disp_start;
10556 END_STRING_AND_SAVE (disp_end);
10557
10558#ifndef GCC_ASM_O_HACK
10559#define GCC_ASM_O_HACK 0
10560#endif
10561#if GCC_ASM_O_HACK
10562 END_STRING_AND_SAVE (disp_end + 1);
40fb9820 10563 if (i.types[this_operand].bitfield.baseIndex
24eab124 10564 && displacement_string_end[-1] == '+')
252b5132
RH
10565 {
10566 /* This hack is to avoid a warning when using the "o"
24eab124
AM
10567 constraint within gcc asm statements.
10568 For instance:
10569
10570 #define _set_tssldt_desc(n,addr,limit,type) \
10571 __asm__ __volatile__ ( \
10572 "movw %w2,%0\n\t" \
10573 "movw %w1,2+%0\n\t" \
10574 "rorl $16,%1\n\t" \
10575 "movb %b1,4+%0\n\t" \
10576 "movb %4,5+%0\n\t" \
10577 "movb $0,6+%0\n\t" \
10578 "movb %h1,7+%0\n\t" \
10579 "rorl $16,%1" \
10580 : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type))
10581
10582 This works great except that the output assembler ends
10583 up looking a bit weird if it turns out that there is
10584 no offset. You end up producing code that looks like:
10585
10586 #APP
10587 movw $235,(%eax)
10588 movw %dx,2+(%eax)
10589 rorl $16,%edx
10590 movb %dl,4+(%eax)
10591 movb $137,5+(%eax)
10592 movb $0,6+(%eax)
10593 movb %dh,7+(%eax)
10594 rorl $16,%edx
10595 #NO_APP
10596
47926f60 10597 So here we provide the missing zero. */
24eab124
AM
10598
10599 *displacement_string_end = '0';
252b5132
RH
10600 }
10601#endif
d258b828 10602 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
10603 if (gotfree_input_line)
10604 input_line_pointer = gotfree_input_line;
252b5132 10605
24eab124 10606 exp_seg = expression (exp);
252b5132 10607
636c26b0
AM
10608 SKIP_WHITESPACE ();
10609 if (*input_line_pointer)
10610 as_bad (_("junk `%s' after expression"), input_line_pointer);
10611#if GCC_ASM_O_HACK
10612 RESTORE_END_STRING (disp_end + 1);
10613#endif
636c26b0 10614 input_line_pointer = save_input_line_pointer;
636c26b0 10615 if (gotfree_input_line)
ee86248c
JB
10616 {
10617 free (gotfree_input_line);
10618
10619 if (exp->X_op == O_constant || exp->X_op == O_register)
10620 exp->X_op = O_illegal;
10621 }
10622
10623 ret = i386_finalize_displacement (exp_seg, exp, types, disp_start);
10624
10625 RESTORE_END_STRING (disp_end);
10626
10627 return ret;
10628}
10629
10630static int
10631i386_finalize_displacement (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
10632 i386_operand_type types, const char *disp_start)
10633{
10634 i386_operand_type bigdisp;
10635 int ret = 1;
636c26b0 10636
24eab124
AM
10637 /* We do this to make sure that the section symbol is in
10638 the symbol table. We will ultimately change the relocation
47926f60 10639 to be relative to the beginning of the section. */
1ae12ab7 10640 if (i.reloc[this_operand] == BFD_RELOC_386_GOTOFF
d6ab8113
JB
10641 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL
10642 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
24eab124 10643 {
636c26b0 10644 if (exp->X_op != O_symbol)
3992d3b7 10645 goto inv_disp;
636c26b0 10646
e5cb08ac 10647 if (S_IS_LOCAL (exp->X_add_symbol)
c64efb4b
L
10648 && S_GET_SEGMENT (exp->X_add_symbol) != undefined_section
10649 && S_GET_SEGMENT (exp->X_add_symbol) != expr_section)
24eab124 10650 section_symbol (S_GET_SEGMENT (exp->X_add_symbol));
24eab124
AM
10651 exp->X_op = O_subtract;
10652 exp->X_op_symbol = GOT_symbol;
1ae12ab7 10653 if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL)
29b0f896 10654 i.reloc[this_operand] = BFD_RELOC_32_PCREL;
d6ab8113
JB
10655 else if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
10656 i.reloc[this_operand] = BFD_RELOC_64;
23df1078 10657 else
29b0f896 10658 i.reloc[this_operand] = BFD_RELOC_32;
24eab124 10659 }
252b5132 10660
3992d3b7
AM
10661 else if (exp->X_op == O_absent
10662 || exp->X_op == O_illegal
ee86248c 10663 || exp->X_op == O_big)
2daf4fd8 10664 {
3992d3b7
AM
10665 inv_disp:
10666 as_bad (_("missing or invalid displacement expression `%s'"),
2daf4fd8 10667 disp_start);
3992d3b7 10668 ret = 0;
2daf4fd8
AM
10669 }
10670
0e1147d9
L
10671 else if (flag_code == CODE_64BIT
10672 && !i.prefix[ADDR_PREFIX]
10673 && exp->X_op == O_constant)
10674 {
10675 /* Since displacement is signed extended to 64bit, don't allow
10676 disp32 and turn off disp32s if they are out of range. */
10677 i.types[this_operand].bitfield.disp32 = 0;
10678 if (!fits_in_signed_long (exp->X_add_number))
10679 {
10680 i.types[this_operand].bitfield.disp32s = 0;
10681 if (i.types[this_operand].bitfield.baseindex)
10682 {
10683 as_bad (_("0x%lx out range of signed 32bit displacement"),
10684 (long) exp->X_add_number);
10685 ret = 0;
10686 }
10687 }
10688 }
10689
4c63da97 10690#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
3992d3b7
AM
10691 else if (exp->X_op != O_constant
10692 && OUTPUT_FLAVOR == bfd_target_aout_flavour
10693 && exp_seg != absolute_section
10694 && exp_seg != text_section
10695 && exp_seg != data_section
10696 && exp_seg != bss_section
10697 && exp_seg != undefined_section
10698 && !bfd_is_com_section (exp_seg))
24eab124 10699 {
d0b47220 10700 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
3992d3b7 10701 ret = 0;
24eab124 10702 }
252b5132 10703#endif
3956db08 10704
48bcea9f
JB
10705 if (current_templates->start->opcode_modifier.jump == JUMP_BYTE
10706 /* Constants get taken care of by optimize_disp(). */
10707 && exp->X_op != O_constant)
10708 i.types[this_operand].bitfield.disp8 = 1;
10709
40fb9820
L
10710 /* Check if this is a displacement only operand. */
10711 bigdisp = i.types[this_operand];
10712 bigdisp.bitfield.disp8 = 0;
10713 bigdisp.bitfield.disp16 = 0;
10714 bigdisp.bitfield.disp32 = 0;
10715 bigdisp.bitfield.disp32s = 0;
10716 bigdisp.bitfield.disp64 = 0;
0dfbf9d7 10717 if (operand_type_all_zero (&bigdisp))
c6fb90c8
L
10718 i.types[this_operand] = operand_type_and (i.types[this_operand],
10719 types);
3956db08 10720
3992d3b7 10721 return ret;
252b5132
RH
10722}
10723
2abc2bec
JB
10724/* Return the active addressing mode, taking address override and
10725 registers forming the address into consideration. Update the
10726 address override prefix if necessary. */
47926f60 10727
2abc2bec
JB
10728static enum flag_code
10729i386_addressing_mode (void)
252b5132 10730{
be05d201
L
10731 enum flag_code addr_mode;
10732
10733 if (i.prefix[ADDR_PREFIX])
10734 addr_mode = flag_code == CODE_32BIT ? CODE_16BIT : CODE_32BIT;
a23b33b3
JB
10735 else if (flag_code == CODE_16BIT
10736 && current_templates->start->cpu_flags.bitfield.cpumpx
10737 /* Avoid replacing the "16-bit addressing not allowed" diagnostic
10738 from md_assemble() by "is not a valid base/index expression"
10739 when there is a base and/or index. */
10740 && !i.types[this_operand].bitfield.baseindex)
10741 {
10742 /* MPX insn memory operands with neither base nor index must be forced
10743 to use 32-bit addressing in 16-bit mode. */
10744 addr_mode = CODE_32BIT;
10745 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
10746 ++i.prefixes;
10747 gas_assert (!i.types[this_operand].bitfield.disp16);
10748 gas_assert (!i.types[this_operand].bitfield.disp32);
10749 }
be05d201
L
10750 else
10751 {
10752 addr_mode = flag_code;
10753
24eab124 10754#if INFER_ADDR_PREFIX
be05d201
L
10755 if (i.mem_operands == 0)
10756 {
10757 /* Infer address prefix from the first memory operand. */
10758 const reg_entry *addr_reg = i.base_reg;
10759
10760 if (addr_reg == NULL)
10761 addr_reg = i.index_reg;
eecb386c 10762
be05d201
L
10763 if (addr_reg)
10764 {
e968fc9b 10765 if (addr_reg->reg_type.bitfield.dword)
be05d201
L
10766 addr_mode = CODE_32BIT;
10767 else if (flag_code != CODE_64BIT
dc821c5f 10768 && addr_reg->reg_type.bitfield.word)
be05d201
L
10769 addr_mode = CODE_16BIT;
10770
10771 if (addr_mode != flag_code)
10772 {
10773 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
10774 i.prefixes += 1;
10775 /* Change the size of any displacement too. At most one
10776 of Disp16 or Disp32 is set.
10777 FIXME. There doesn't seem to be any real need for
10778 separate Disp16 and Disp32 flags. The same goes for
10779 Imm16 and Imm32. Removing them would probably clean
10780 up the code quite a lot. */
10781 if (flag_code != CODE_64BIT
10782 && (i.types[this_operand].bitfield.disp16
10783 || i.types[this_operand].bitfield.disp32))
10784 i.types[this_operand]
10785 = operand_type_xor (i.types[this_operand], disp16_32);
10786 }
10787 }
10788 }
24eab124 10789#endif
be05d201
L
10790 }
10791
2abc2bec
JB
10792 return addr_mode;
10793}
10794
10795/* Make sure the memory operand we've been dealt is valid.
10796 Return 1 on success, 0 on a failure. */
10797
10798static int
10799i386_index_check (const char *operand_string)
10800{
10801 const char *kind = "base/index";
10802 enum flag_code addr_mode = i386_addressing_mode ();
10803
fc0763e6 10804 if (current_templates->start->opcode_modifier.isstring
c3949f43 10805 && !current_templates->start->cpu_flags.bitfield.cpupadlock
fc0763e6
JB
10806 && (current_templates->end[-1].opcode_modifier.isstring
10807 || i.mem_operands))
10808 {
10809 /* Memory operands of string insns are special in that they only allow
10810 a single register (rDI, rSI, or rBX) as their memory address. */
be05d201
L
10811 const reg_entry *expected_reg;
10812 static const char *di_si[][2] =
10813 {
10814 { "esi", "edi" },
10815 { "si", "di" },
10816 { "rsi", "rdi" }
10817 };
10818 static const char *bx[] = { "ebx", "bx", "rbx" };
fc0763e6
JB
10819
10820 kind = "string address";
10821
8325cc63 10822 if (current_templates->start->opcode_modifier.repprefixok)
fc0763e6 10823 {
51c8edf6
JB
10824 int es_op = current_templates->end[-1].opcode_modifier.isstring
10825 - IS_STRING_ES_OP0;
10826 int op = 0;
fc0763e6 10827
51c8edf6 10828 if (!current_templates->end[-1].operand_types[0].bitfield.baseindex
fc0763e6
JB
10829 || ((!i.mem_operands != !intel_syntax)
10830 && current_templates->end[-1].operand_types[1]
10831 .bitfield.baseindex))
51c8edf6
JB
10832 op = 1;
10833 expected_reg = hash_find (reg_hash, di_si[addr_mode][op == es_op]);
fc0763e6
JB
10834 }
10835 else
be05d201 10836 expected_reg = hash_find (reg_hash, bx[addr_mode]);
fc0763e6 10837
be05d201
L
10838 if (i.base_reg != expected_reg
10839 || i.index_reg
fc0763e6 10840 || operand_type_check (i.types[this_operand], disp))
fc0763e6 10841 {
be05d201
L
10842 /* The second memory operand must have the same size as
10843 the first one. */
10844 if (i.mem_operands
10845 && i.base_reg
10846 && !((addr_mode == CODE_64BIT
dc821c5f 10847 && i.base_reg->reg_type.bitfield.qword)
be05d201 10848 || (addr_mode == CODE_32BIT
dc821c5f
JB
10849 ? i.base_reg->reg_type.bitfield.dword
10850 : i.base_reg->reg_type.bitfield.word)))
be05d201
L
10851 goto bad_address;
10852
fc0763e6
JB
10853 as_warn (_("`%s' is not valid here (expected `%c%s%s%c')"),
10854 operand_string,
10855 intel_syntax ? '[' : '(',
10856 register_prefix,
be05d201 10857 expected_reg->reg_name,
fc0763e6 10858 intel_syntax ? ']' : ')');
be05d201 10859 return 1;
fc0763e6 10860 }
be05d201
L
10861 else
10862 return 1;
10863
dc1e8a47 10864 bad_address:
be05d201
L
10865 as_bad (_("`%s' is not a valid %s expression"),
10866 operand_string, kind);
10867 return 0;
3e73aa7c
JH
10868 }
10869 else
10870 {
be05d201
L
10871 if (addr_mode != CODE_16BIT)
10872 {
10873 /* 32-bit/64-bit checks. */
10874 if ((i.base_reg
e968fc9b
JB
10875 && ((addr_mode == CODE_64BIT
10876 ? !i.base_reg->reg_type.bitfield.qword
10877 : !i.base_reg->reg_type.bitfield.dword)
10878 || (i.index_reg && i.base_reg->reg_num == RegIP)
10879 || i.base_reg->reg_num == RegIZ))
be05d201 10880 || (i.index_reg
1b54b8d7
JB
10881 && !i.index_reg->reg_type.bitfield.xmmword
10882 && !i.index_reg->reg_type.bitfield.ymmword
10883 && !i.index_reg->reg_type.bitfield.zmmword
be05d201 10884 && ((addr_mode == CODE_64BIT
e968fc9b
JB
10885 ? !i.index_reg->reg_type.bitfield.qword
10886 : !i.index_reg->reg_type.bitfield.dword)
be05d201
L
10887 || !i.index_reg->reg_type.bitfield.baseindex)))
10888 goto bad_address;
8178be5b
JB
10889
10890 /* bndmk, bndldx, and bndstx have special restrictions. */
10891 if (current_templates->start->base_opcode == 0xf30f1b
10892 || (current_templates->start->base_opcode & ~1) == 0x0f1a)
10893 {
10894 /* They cannot use RIP-relative addressing. */
e968fc9b 10895 if (i.base_reg && i.base_reg->reg_num == RegIP)
8178be5b
JB
10896 {
10897 as_bad (_("`%s' cannot be used here"), operand_string);
10898 return 0;
10899 }
10900
10901 /* bndldx and bndstx ignore their scale factor. */
10902 if (current_templates->start->base_opcode != 0xf30f1b
10903 && i.log2_scale_factor)
10904 as_warn (_("register scaling is being ignored here"));
10905 }
be05d201
L
10906 }
10907 else
3e73aa7c 10908 {
be05d201 10909 /* 16-bit checks. */
3e73aa7c 10910 if ((i.base_reg
dc821c5f 10911 && (!i.base_reg->reg_type.bitfield.word
40fb9820 10912 || !i.base_reg->reg_type.bitfield.baseindex))
3e73aa7c 10913 || (i.index_reg
dc821c5f 10914 && (!i.index_reg->reg_type.bitfield.word
40fb9820 10915 || !i.index_reg->reg_type.bitfield.baseindex
29b0f896
AM
10916 || !(i.base_reg
10917 && i.base_reg->reg_num < 6
10918 && i.index_reg->reg_num >= 6
10919 && i.log2_scale_factor == 0))))
be05d201 10920 goto bad_address;
3e73aa7c
JH
10921 }
10922 }
be05d201 10923 return 1;
24eab124 10924}
252b5132 10925
43234a1e
L
10926/* Handle vector immediates. */
10927
10928static int
10929RC_SAE_immediate (const char *imm_start)
10930{
10931 unsigned int match_found, j;
10932 const char *pstr = imm_start;
10933 expressionS *exp;
10934
10935 if (*pstr != '{')
10936 return 0;
10937
10938 pstr++;
10939 match_found = 0;
10940 for (j = 0; j < ARRAY_SIZE (RC_NamesTable); j++)
10941 {
10942 if (!strncmp (pstr, RC_NamesTable[j].name, RC_NamesTable[j].len))
10943 {
10944 if (!i.rounding)
10945 {
10946 rc_op.type = RC_NamesTable[j].type;
10947 rc_op.operand = this_operand;
10948 i.rounding = &rc_op;
10949 }
10950 else
10951 {
10952 as_bad (_("duplicated `%s'"), imm_start);
10953 return 0;
10954 }
10955 pstr += RC_NamesTable[j].len;
10956 match_found = 1;
10957 break;
10958 }
10959 }
10960 if (!match_found)
10961 return 0;
10962
10963 if (*pstr++ != '}')
10964 {
10965 as_bad (_("Missing '}': '%s'"), imm_start);
10966 return 0;
10967 }
10968 /* RC/SAE immediate string should contain nothing more. */;
10969 if (*pstr != 0)
10970 {
10971 as_bad (_("Junk after '}': '%s'"), imm_start);
10972 return 0;
10973 }
10974
10975 exp = &im_expressions[i.imm_operands++];
10976 i.op[this_operand].imms = exp;
10977
10978 exp->X_op = O_constant;
10979 exp->X_add_number = 0;
10980 exp->X_add_symbol = (symbolS *) 0;
10981 exp->X_op_symbol = (symbolS *) 0;
10982
10983 i.types[this_operand].bitfield.imm8 = 1;
10984 return 1;
10985}
10986
8325cc63
JB
10987/* Only string instructions can have a second memory operand, so
10988 reduce current_templates to just those if it contains any. */
10989static int
10990maybe_adjust_templates (void)
10991{
10992 const insn_template *t;
10993
10994 gas_assert (i.mem_operands == 1);
10995
10996 for (t = current_templates->start; t < current_templates->end; ++t)
10997 if (t->opcode_modifier.isstring)
10998 break;
10999
11000 if (t < current_templates->end)
11001 {
11002 static templates aux_templates;
11003 bfd_boolean recheck;
11004
11005 aux_templates.start = t;
11006 for (; t < current_templates->end; ++t)
11007 if (!t->opcode_modifier.isstring)
11008 break;
11009 aux_templates.end = t;
11010
11011 /* Determine whether to re-check the first memory operand. */
11012 recheck = (aux_templates.start != current_templates->start
11013 || t != current_templates->end);
11014
11015 current_templates = &aux_templates;
11016
11017 if (recheck)
11018 {
11019 i.mem_operands = 0;
11020 if (i.memop1_string != NULL
11021 && i386_index_check (i.memop1_string) == 0)
11022 return 0;
11023 i.mem_operands = 1;
11024 }
11025 }
11026
11027 return 1;
11028}
11029
fc0763e6 11030/* Parse OPERAND_STRING into the i386_insn structure I. Returns zero
47926f60 11031 on error. */
252b5132 11032
252b5132 11033static int
a7619375 11034i386_att_operand (char *operand_string)
252b5132 11035{
af6bdddf
AM
11036 const reg_entry *r;
11037 char *end_op;
24eab124 11038 char *op_string = operand_string;
252b5132 11039
24eab124 11040 if (is_space_char (*op_string))
252b5132
RH
11041 ++op_string;
11042
24eab124 11043 /* We check for an absolute prefix (differentiating,
47926f60 11044 for example, 'jmp pc_relative_label' from 'jmp *absolute_label'. */
24eab124
AM
11045 if (*op_string == ABSOLUTE_PREFIX)
11046 {
11047 ++op_string;
11048 if (is_space_char (*op_string))
11049 ++op_string;
6f2f06be 11050 i.jumpabsolute = TRUE;
24eab124 11051 }
252b5132 11052
47926f60 11053 /* Check if operand is a register. */
4d1bb795 11054 if ((r = parse_register (op_string, &end_op)) != NULL)
24eab124 11055 {
40fb9820
L
11056 i386_operand_type temp;
11057
8a6fb3f9
JB
11058 if (r == &bad_reg)
11059 return 0;
11060
24eab124
AM
11061 /* Check for a segment override by searching for ':' after a
11062 segment register. */
11063 op_string = end_op;
11064 if (is_space_char (*op_string))
11065 ++op_string;
00cee14f 11066 if (*op_string == ':' && r->reg_type.bitfield.class == SReg)
24eab124
AM
11067 {
11068 switch (r->reg_num)
11069 {
11070 case 0:
11071 i.seg[i.mem_operands] = &es;
11072 break;
11073 case 1:
11074 i.seg[i.mem_operands] = &cs;
11075 break;
11076 case 2:
11077 i.seg[i.mem_operands] = &ss;
11078 break;
11079 case 3:
11080 i.seg[i.mem_operands] = &ds;
11081 break;
11082 case 4:
11083 i.seg[i.mem_operands] = &fs;
11084 break;
11085 case 5:
11086 i.seg[i.mem_operands] = &gs;
11087 break;
11088 }
252b5132 11089
24eab124 11090 /* Skip the ':' and whitespace. */
252b5132
RH
11091 ++op_string;
11092 if (is_space_char (*op_string))
24eab124 11093 ++op_string;
252b5132 11094
24eab124
AM
11095 if (!is_digit_char (*op_string)
11096 && !is_identifier_char (*op_string)
11097 && *op_string != '('
11098 && *op_string != ABSOLUTE_PREFIX)
11099 {
11100 as_bad (_("bad memory operand `%s'"), op_string);
11101 return 0;
11102 }
47926f60 11103 /* Handle case of %es:*foo. */
24eab124
AM
11104 if (*op_string == ABSOLUTE_PREFIX)
11105 {
11106 ++op_string;
11107 if (is_space_char (*op_string))
11108 ++op_string;
6f2f06be 11109 i.jumpabsolute = TRUE;
24eab124
AM
11110 }
11111 goto do_memory_reference;
11112 }
43234a1e
L
11113
11114 /* Handle vector operations. */
11115 if (*op_string == '{')
11116 {
11117 op_string = check_VecOperations (op_string, NULL);
11118 if (op_string == NULL)
11119 return 0;
11120 }
11121
24eab124
AM
11122 if (*op_string)
11123 {
d0b47220 11124 as_bad (_("junk `%s' after register"), op_string);
24eab124
AM
11125 return 0;
11126 }
40fb9820
L
11127 temp = r->reg_type;
11128 temp.bitfield.baseindex = 0;
c6fb90c8
L
11129 i.types[this_operand] = operand_type_or (i.types[this_operand],
11130 temp);
7d5e4556 11131 i.types[this_operand].bitfield.unspecified = 0;
520dc8e8 11132 i.op[this_operand].regs = r;
24eab124
AM
11133 i.reg_operands++;
11134 }
af6bdddf
AM
11135 else if (*op_string == REGISTER_PREFIX)
11136 {
11137 as_bad (_("bad register name `%s'"), op_string);
11138 return 0;
11139 }
24eab124 11140 else if (*op_string == IMMEDIATE_PREFIX)
ce8a8b2f 11141 {
24eab124 11142 ++op_string;
6f2f06be 11143 if (i.jumpabsolute)
24eab124 11144 {
d0b47220 11145 as_bad (_("immediate operand illegal with absolute jump"));
24eab124
AM
11146 return 0;
11147 }
11148 if (!i386_immediate (op_string))
11149 return 0;
11150 }
43234a1e
L
11151 else if (RC_SAE_immediate (operand_string))
11152 {
11153 /* If it is a RC or SAE immediate, do nothing. */
11154 ;
11155 }
24eab124
AM
11156 else if (is_digit_char (*op_string)
11157 || is_identifier_char (*op_string)
d02603dc 11158 || *op_string == '"'
e5cb08ac 11159 || *op_string == '(')
24eab124 11160 {
47926f60 11161 /* This is a memory reference of some sort. */
af6bdddf 11162 char *base_string;
252b5132 11163
47926f60 11164 /* Start and end of displacement string expression (if found). */
eecb386c
AM
11165 char *displacement_string_start;
11166 char *displacement_string_end;
43234a1e 11167 char *vop_start;
252b5132 11168
24eab124 11169 do_memory_reference:
8325cc63
JB
11170 if (i.mem_operands == 1 && !maybe_adjust_templates ())
11171 return 0;
24eab124 11172 if ((i.mem_operands == 1
40fb9820 11173 && !current_templates->start->opcode_modifier.isstring)
24eab124
AM
11174 || i.mem_operands == 2)
11175 {
11176 as_bad (_("too many memory references for `%s'"),
11177 current_templates->start->name);
11178 return 0;
11179 }
252b5132 11180
24eab124
AM
11181 /* Check for base index form. We detect the base index form by
11182 looking for an ')' at the end of the operand, searching
11183 for the '(' matching it, and finding a REGISTER_PREFIX or ','
11184 after the '('. */
af6bdddf 11185 base_string = op_string + strlen (op_string);
c3332e24 11186
43234a1e
L
11187 /* Handle vector operations. */
11188 vop_start = strchr (op_string, '{');
11189 if (vop_start && vop_start < base_string)
11190 {
11191 if (check_VecOperations (vop_start, base_string) == NULL)
11192 return 0;
11193 base_string = vop_start;
11194 }
11195
af6bdddf
AM
11196 --base_string;
11197 if (is_space_char (*base_string))
11198 --base_string;
252b5132 11199
47926f60 11200 /* If we only have a displacement, set-up for it to be parsed later. */
af6bdddf
AM
11201 displacement_string_start = op_string;
11202 displacement_string_end = base_string + 1;
252b5132 11203
24eab124
AM
11204 if (*base_string == ')')
11205 {
af6bdddf 11206 char *temp_string;
24eab124
AM
11207 unsigned int parens_balanced = 1;
11208 /* We've already checked that the number of left & right ()'s are
47926f60 11209 equal, so this loop will not be infinite. */
24eab124
AM
11210 do
11211 {
11212 base_string--;
11213 if (*base_string == ')')
11214 parens_balanced++;
11215 if (*base_string == '(')
11216 parens_balanced--;
11217 }
11218 while (parens_balanced);
c3332e24 11219
af6bdddf 11220 temp_string = base_string;
c3332e24 11221
24eab124 11222 /* Skip past '(' and whitespace. */
252b5132
RH
11223 ++base_string;
11224 if (is_space_char (*base_string))
24eab124 11225 ++base_string;
252b5132 11226
af6bdddf 11227 if (*base_string == ','
4eed87de
AM
11228 || ((i.base_reg = parse_register (base_string, &end_op))
11229 != NULL))
252b5132 11230 {
af6bdddf 11231 displacement_string_end = temp_string;
252b5132 11232
40fb9820 11233 i.types[this_operand].bitfield.baseindex = 1;
252b5132 11234
af6bdddf 11235 if (i.base_reg)
24eab124 11236 {
8a6fb3f9
JB
11237 if (i.base_reg == &bad_reg)
11238 return 0;
24eab124
AM
11239 base_string = end_op;
11240 if (is_space_char (*base_string))
11241 ++base_string;
af6bdddf
AM
11242 }
11243
11244 /* There may be an index reg or scale factor here. */
11245 if (*base_string == ',')
11246 {
11247 ++base_string;
11248 if (is_space_char (*base_string))
11249 ++base_string;
11250
4eed87de
AM
11251 if ((i.index_reg = parse_register (base_string, &end_op))
11252 != NULL)
24eab124 11253 {
8a6fb3f9
JB
11254 if (i.index_reg == &bad_reg)
11255 return 0;
af6bdddf 11256 base_string = end_op;
24eab124
AM
11257 if (is_space_char (*base_string))
11258 ++base_string;
af6bdddf
AM
11259 if (*base_string == ',')
11260 {
11261 ++base_string;
11262 if (is_space_char (*base_string))
11263 ++base_string;
11264 }
e5cb08ac 11265 else if (*base_string != ')')
af6bdddf 11266 {
4eed87de
AM
11267 as_bad (_("expecting `,' or `)' "
11268 "after index register in `%s'"),
af6bdddf
AM
11269 operand_string);
11270 return 0;
11271 }
24eab124 11272 }
af6bdddf 11273 else if (*base_string == REGISTER_PREFIX)
24eab124 11274 {
f76bf5e0
L
11275 end_op = strchr (base_string, ',');
11276 if (end_op)
11277 *end_op = '\0';
af6bdddf 11278 as_bad (_("bad register name `%s'"), base_string);
24eab124
AM
11279 return 0;
11280 }
252b5132 11281
47926f60 11282 /* Check for scale factor. */
551c1ca1 11283 if (*base_string != ')')
af6bdddf 11284 {
551c1ca1
AM
11285 char *end_scale = i386_scale (base_string);
11286
11287 if (!end_scale)
af6bdddf 11288 return 0;
24eab124 11289
551c1ca1 11290 base_string = end_scale;
af6bdddf
AM
11291 if (is_space_char (*base_string))
11292 ++base_string;
11293 if (*base_string != ')')
11294 {
4eed87de
AM
11295 as_bad (_("expecting `)' "
11296 "after scale factor in `%s'"),
af6bdddf
AM
11297 operand_string);
11298 return 0;
11299 }
11300 }
11301 else if (!i.index_reg)
24eab124 11302 {
4eed87de
AM
11303 as_bad (_("expecting index register or scale factor "
11304 "after `,'; got '%c'"),
af6bdddf 11305 *base_string);
24eab124
AM
11306 return 0;
11307 }
11308 }
af6bdddf 11309 else if (*base_string != ')')
24eab124 11310 {
4eed87de
AM
11311 as_bad (_("expecting `,' or `)' "
11312 "after base register in `%s'"),
af6bdddf 11313 operand_string);
24eab124
AM
11314 return 0;
11315 }
c3332e24 11316 }
af6bdddf 11317 else if (*base_string == REGISTER_PREFIX)
c3332e24 11318 {
f76bf5e0
L
11319 end_op = strchr (base_string, ',');
11320 if (end_op)
11321 *end_op = '\0';
af6bdddf 11322 as_bad (_("bad register name `%s'"), base_string);
24eab124 11323 return 0;
c3332e24 11324 }
24eab124
AM
11325 }
11326
11327 /* If there's an expression beginning the operand, parse it,
11328 assuming displacement_string_start and
11329 displacement_string_end are meaningful. */
11330 if (displacement_string_start != displacement_string_end)
11331 {
11332 if (!i386_displacement (displacement_string_start,
11333 displacement_string_end))
11334 return 0;
11335 }
11336
11337 /* Special case for (%dx) while doing input/output op. */
11338 if (i.base_reg
75e5731b
JB
11339 && i.base_reg->reg_type.bitfield.instance == RegD
11340 && i.base_reg->reg_type.bitfield.word
24eab124
AM
11341 && i.index_reg == 0
11342 && i.log2_scale_factor == 0
11343 && i.seg[i.mem_operands] == 0
40fb9820 11344 && !operand_type_check (i.types[this_operand], disp))
24eab124 11345 {
2fb5be8d 11346 i.types[this_operand] = i.base_reg->reg_type;
24eab124
AM
11347 return 1;
11348 }
11349
eecb386c
AM
11350 if (i386_index_check (operand_string) == 0)
11351 return 0;
c48dadc9 11352 i.flags[this_operand] |= Operand_Mem;
8325cc63
JB
11353 if (i.mem_operands == 0)
11354 i.memop1_string = xstrdup (operand_string);
24eab124
AM
11355 i.mem_operands++;
11356 }
11357 else
ce8a8b2f
AM
11358 {
11359 /* It's not a memory operand; argh! */
24eab124
AM
11360 as_bad (_("invalid char %s beginning operand %d `%s'"),
11361 output_invalid (*op_string),
11362 this_operand + 1,
11363 op_string);
11364 return 0;
11365 }
47926f60 11366 return 1; /* Normal return. */
252b5132
RH
11367}
11368\f
fa94de6b
RM
11369/* Calculate the maximum variable size (i.e., excluding fr_fix)
11370 that an rs_machine_dependent frag may reach. */
11371
11372unsigned int
11373i386_frag_max_var (fragS *frag)
11374{
11375 /* The only relaxable frags are for jumps.
11376 Unconditional jumps can grow by 4 bytes and others by 5 bytes. */
11377 gas_assert (frag->fr_type == rs_machine_dependent);
11378 return TYPE_FROM_RELAX_STATE (frag->fr_subtype) == UNCOND_JUMP ? 4 : 5;
11379}
11380
b084df0b
L
11381#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11382static int
8dcea932 11383elf_symbol_resolved_in_segment_p (symbolS *fr_symbol, offsetT fr_var)
b084df0b
L
11384{
11385 /* STT_GNU_IFUNC symbol must go through PLT. */
11386 if ((symbol_get_bfdsym (fr_symbol)->flags
11387 & BSF_GNU_INDIRECT_FUNCTION) != 0)
11388 return 0;
11389
11390 if (!S_IS_EXTERNAL (fr_symbol))
11391 /* Symbol may be weak or local. */
11392 return !S_IS_WEAK (fr_symbol);
11393
8dcea932
L
11394 /* Global symbols with non-default visibility can't be preempted. */
11395 if (ELF_ST_VISIBILITY (S_GET_OTHER (fr_symbol)) != STV_DEFAULT)
11396 return 1;
11397
11398 if (fr_var != NO_RELOC)
11399 switch ((enum bfd_reloc_code_real) fr_var)
11400 {
11401 case BFD_RELOC_386_PLT32:
11402 case BFD_RELOC_X86_64_PLT32:
33eaf5de 11403 /* Symbol with PLT relocation may be preempted. */
8dcea932
L
11404 return 0;
11405 default:
11406 abort ();
11407 }
11408
b084df0b
L
11409 /* Global symbols with default visibility in a shared library may be
11410 preempted by another definition. */
8dcea932 11411 return !shared;
b084df0b
L
11412}
11413#endif
11414
79d72f45
HL
11415/* Table 3-2. Macro-Fusible Instructions in Haswell Microarchitecture
11416 Note also work for Skylake and Cascadelake.
11417---------------------------------------------------------------------
11418| JCC | ADD/SUB/CMP | INC/DEC | TEST/AND |
11419| ------ | ----------- | ------- | -------- |
11420| Jo | N | N | Y |
11421| Jno | N | N | Y |
11422| Jc/Jb | Y | N | Y |
11423| Jae/Jnb | Y | N | Y |
11424| Je/Jz | Y | Y | Y |
11425| Jne/Jnz | Y | Y | Y |
11426| Jna/Jbe | Y | N | Y |
11427| Ja/Jnbe | Y | N | Y |
11428| Js | N | N | Y |
11429| Jns | N | N | Y |
11430| Jp/Jpe | N | N | Y |
11431| Jnp/Jpo | N | N | Y |
11432| Jl/Jnge | Y | Y | Y |
11433| Jge/Jnl | Y | Y | Y |
11434| Jle/Jng | Y | Y | Y |
11435| Jg/Jnle | Y | Y | Y |
11436--------------------------------------------------------------------- */
11437static int
11438i386_macro_fusible_p (enum mf_cmp_kind mf_cmp, enum mf_jcc_kind mf_jcc)
11439{
11440 if (mf_cmp == mf_cmp_alu_cmp)
11441 return ((mf_jcc >= mf_jcc_jc && mf_jcc <= mf_jcc_jna)
11442 || mf_jcc == mf_jcc_jl || mf_jcc == mf_jcc_jle);
11443 if (mf_cmp == mf_cmp_incdec)
11444 return (mf_jcc == mf_jcc_je || mf_jcc == mf_jcc_jl
11445 || mf_jcc == mf_jcc_jle);
11446 if (mf_cmp == mf_cmp_test_and)
11447 return 1;
11448 return 0;
11449}
11450
e379e5f3
L
11451/* Return the next non-empty frag. */
11452
11453static fragS *
11454i386_next_non_empty_frag (fragS *fragP)
11455{
11456 /* There may be a frag with a ".fill 0" when there is no room in
11457 the current frag for frag_grow in output_insn. */
11458 for (fragP = fragP->fr_next;
11459 (fragP != NULL
11460 && fragP->fr_type == rs_fill
11461 && fragP->fr_fix == 0);
11462 fragP = fragP->fr_next)
11463 ;
11464 return fragP;
11465}
11466
11467/* Return the next jcc frag after BRANCH_PADDING. */
11468
11469static fragS *
79d72f45 11470i386_next_fusible_jcc_frag (fragS *maybe_cmp_fragP, fragS *pad_fragP)
e379e5f3 11471{
79d72f45
HL
11472 fragS *branch_fragP;
11473 if (!pad_fragP)
e379e5f3
L
11474 return NULL;
11475
79d72f45
HL
11476 if (pad_fragP->fr_type == rs_machine_dependent
11477 && (TYPE_FROM_RELAX_STATE (pad_fragP->fr_subtype)
e379e5f3
L
11478 == BRANCH_PADDING))
11479 {
79d72f45
HL
11480 branch_fragP = i386_next_non_empty_frag (pad_fragP);
11481 if (branch_fragP->fr_type != rs_machine_dependent)
e379e5f3 11482 return NULL;
79d72f45
HL
11483 if (TYPE_FROM_RELAX_STATE (branch_fragP->fr_subtype) == COND_JUMP
11484 && i386_macro_fusible_p (maybe_cmp_fragP->tc_frag_data.mf_type,
11485 pad_fragP->tc_frag_data.mf_type))
11486 return branch_fragP;
e379e5f3
L
11487 }
11488
11489 return NULL;
11490}
11491
11492/* Classify BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags. */
11493
11494static void
11495i386_classify_machine_dependent_frag (fragS *fragP)
11496{
11497 fragS *cmp_fragP;
11498 fragS *pad_fragP;
11499 fragS *branch_fragP;
11500 fragS *next_fragP;
11501 unsigned int max_prefix_length;
11502
11503 if (fragP->tc_frag_data.classified)
11504 return;
11505
11506 /* First scan for BRANCH_PADDING and FUSED_JCC_PADDING. Convert
11507 FUSED_JCC_PADDING and merge BRANCH_PADDING. */
11508 for (next_fragP = fragP;
11509 next_fragP != NULL;
11510 next_fragP = next_fragP->fr_next)
11511 {
11512 next_fragP->tc_frag_data.classified = 1;
11513 if (next_fragP->fr_type == rs_machine_dependent)
11514 switch (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype))
11515 {
11516 case BRANCH_PADDING:
11517 /* The BRANCH_PADDING frag must be followed by a branch
11518 frag. */
11519 branch_fragP = i386_next_non_empty_frag (next_fragP);
11520 next_fragP->tc_frag_data.u.branch_fragP = branch_fragP;
11521 break;
11522 case FUSED_JCC_PADDING:
11523 /* Check if this is a fused jcc:
11524 FUSED_JCC_PADDING
11525 CMP like instruction
11526 BRANCH_PADDING
11527 COND_JUMP
11528 */
11529 cmp_fragP = i386_next_non_empty_frag (next_fragP);
11530 pad_fragP = i386_next_non_empty_frag (cmp_fragP);
79d72f45 11531 branch_fragP = i386_next_fusible_jcc_frag (next_fragP, pad_fragP);
e379e5f3
L
11532 if (branch_fragP)
11533 {
11534 /* The BRANCH_PADDING frag is merged with the
11535 FUSED_JCC_PADDING frag. */
11536 next_fragP->tc_frag_data.u.branch_fragP = branch_fragP;
11537 /* CMP like instruction size. */
11538 next_fragP->tc_frag_data.cmp_size = cmp_fragP->fr_fix;
11539 frag_wane (pad_fragP);
11540 /* Skip to branch_fragP. */
11541 next_fragP = branch_fragP;
11542 }
11543 else if (next_fragP->tc_frag_data.max_prefix_length)
11544 {
11545 /* Turn FUSED_JCC_PADDING into BRANCH_PREFIX if it isn't
11546 a fused jcc. */
11547 next_fragP->fr_subtype
11548 = ENCODE_RELAX_STATE (BRANCH_PREFIX, 0);
11549 next_fragP->tc_frag_data.max_bytes
11550 = next_fragP->tc_frag_data.max_prefix_length;
11551 /* This will be updated in the BRANCH_PREFIX scan. */
11552 next_fragP->tc_frag_data.max_prefix_length = 0;
11553 }
11554 else
11555 frag_wane (next_fragP);
11556 break;
11557 }
11558 }
11559
11560 /* Stop if there is no BRANCH_PREFIX. */
11561 if (!align_branch_prefix_size)
11562 return;
11563
11564 /* Scan for BRANCH_PREFIX. */
11565 for (; fragP != NULL; fragP = fragP->fr_next)
11566 {
11567 if (fragP->fr_type != rs_machine_dependent
11568 || (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
11569 != BRANCH_PREFIX))
11570 continue;
11571
11572 /* Count all BRANCH_PREFIX frags before BRANCH_PADDING and
11573 COND_JUMP_PREFIX. */
11574 max_prefix_length = 0;
11575 for (next_fragP = fragP;
11576 next_fragP != NULL;
11577 next_fragP = next_fragP->fr_next)
11578 {
11579 if (next_fragP->fr_type == rs_fill)
11580 /* Skip rs_fill frags. */
11581 continue;
11582 else if (next_fragP->fr_type != rs_machine_dependent)
11583 /* Stop for all other frags. */
11584 break;
11585
11586 /* rs_machine_dependent frags. */
11587 if (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11588 == BRANCH_PREFIX)
11589 {
11590 /* Count BRANCH_PREFIX frags. */
11591 if (max_prefix_length >= MAX_FUSED_JCC_PADDING_SIZE)
11592 {
11593 max_prefix_length = MAX_FUSED_JCC_PADDING_SIZE;
11594 frag_wane (next_fragP);
11595 }
11596 else
11597 max_prefix_length
11598 += next_fragP->tc_frag_data.max_bytes;
11599 }
11600 else if ((TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11601 == BRANCH_PADDING)
11602 || (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11603 == FUSED_JCC_PADDING))
11604 {
11605 /* Stop at BRANCH_PADDING and FUSED_JCC_PADDING. */
11606 fragP->tc_frag_data.u.padding_fragP = next_fragP;
11607 break;
11608 }
11609 else
11610 /* Stop for other rs_machine_dependent frags. */
11611 break;
11612 }
11613
11614 fragP->tc_frag_data.max_prefix_length = max_prefix_length;
11615
11616 /* Skip to the next frag. */
11617 fragP = next_fragP;
11618 }
11619}
11620
11621/* Compute padding size for
11622
11623 FUSED_JCC_PADDING
11624 CMP like instruction
11625 BRANCH_PADDING
11626 COND_JUMP/UNCOND_JUMP
11627
11628 or
11629
11630 BRANCH_PADDING
11631 COND_JUMP/UNCOND_JUMP
11632 */
11633
11634static int
11635i386_branch_padding_size (fragS *fragP, offsetT address)
11636{
11637 unsigned int offset, size, padding_size;
11638 fragS *branch_fragP = fragP->tc_frag_data.u.branch_fragP;
11639
11640 /* The start address of the BRANCH_PADDING or FUSED_JCC_PADDING frag. */
11641 if (!address)
11642 address = fragP->fr_address;
11643 address += fragP->fr_fix;
11644
11645 /* CMP like instrunction size. */
11646 size = fragP->tc_frag_data.cmp_size;
11647
11648 /* The base size of the branch frag. */
11649 size += branch_fragP->fr_fix;
11650
11651 /* Add opcode and displacement bytes for the rs_machine_dependent
11652 branch frag. */
11653 if (branch_fragP->fr_type == rs_machine_dependent)
11654 size += md_relax_table[branch_fragP->fr_subtype].rlx_length;
11655
11656 /* Check if branch is within boundary and doesn't end at the last
11657 byte. */
11658 offset = address & ((1U << align_branch_power) - 1);
11659 if ((offset + size) >= (1U << align_branch_power))
11660 /* Padding needed to avoid crossing boundary. */
11661 padding_size = (1U << align_branch_power) - offset;
11662 else
11663 /* No padding needed. */
11664 padding_size = 0;
11665
11666 /* The return value may be saved in tc_frag_data.length which is
11667 unsigned byte. */
11668 if (!fits_in_unsigned_byte (padding_size))
11669 abort ();
11670
11671 return padding_size;
11672}
11673
11674/* i386_generic_table_relax_frag()
11675
11676 Handle BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags to
11677 grow/shrink padding to align branch frags. Hand others to
11678 relax_frag(). */
11679
11680long
11681i386_generic_table_relax_frag (segT segment, fragS *fragP, long stretch)
11682{
11683 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11684 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
11685 {
11686 long padding_size = i386_branch_padding_size (fragP, 0);
11687 long grow = padding_size - fragP->tc_frag_data.length;
11688
11689 /* When the BRANCH_PREFIX frag is used, the computed address
11690 must match the actual address and there should be no padding. */
11691 if (fragP->tc_frag_data.padding_address
11692 && (fragP->tc_frag_data.padding_address != fragP->fr_address
11693 || padding_size))
11694 abort ();
11695
11696 /* Update the padding size. */
11697 if (grow)
11698 fragP->tc_frag_data.length = padding_size;
11699
11700 return grow;
11701 }
11702 else if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11703 {
11704 fragS *padding_fragP, *next_fragP;
11705 long padding_size, left_size, last_size;
11706
11707 padding_fragP = fragP->tc_frag_data.u.padding_fragP;
11708 if (!padding_fragP)
11709 /* Use the padding set by the leading BRANCH_PREFIX frag. */
11710 return (fragP->tc_frag_data.length
11711 - fragP->tc_frag_data.last_length);
11712
11713 /* Compute the relative address of the padding frag in the very
11714 first time where the BRANCH_PREFIX frag sizes are zero. */
11715 if (!fragP->tc_frag_data.padding_address)
11716 fragP->tc_frag_data.padding_address
11717 = padding_fragP->fr_address - (fragP->fr_address - stretch);
11718
11719 /* First update the last length from the previous interation. */
11720 left_size = fragP->tc_frag_data.prefix_length;
11721 for (next_fragP = fragP;
11722 next_fragP != padding_fragP;
11723 next_fragP = next_fragP->fr_next)
11724 if (next_fragP->fr_type == rs_machine_dependent
11725 && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11726 == BRANCH_PREFIX))
11727 {
11728 if (left_size)
11729 {
11730 int max = next_fragP->tc_frag_data.max_bytes;
11731 if (max)
11732 {
11733 int size;
11734 if (max > left_size)
11735 size = left_size;
11736 else
11737 size = max;
11738 left_size -= size;
11739 next_fragP->tc_frag_data.last_length = size;
11740 }
11741 }
11742 else
11743 next_fragP->tc_frag_data.last_length = 0;
11744 }
11745
11746 /* Check the padding size for the padding frag. */
11747 padding_size = i386_branch_padding_size
11748 (padding_fragP, (fragP->fr_address
11749 + fragP->tc_frag_data.padding_address));
11750
11751 last_size = fragP->tc_frag_data.prefix_length;
11752 /* Check if there is change from the last interation. */
11753 if (padding_size == last_size)
11754 {
11755 /* Update the expected address of the padding frag. */
11756 padding_fragP->tc_frag_data.padding_address
11757 = (fragP->fr_address + padding_size
11758 + fragP->tc_frag_data.padding_address);
11759 return 0;
11760 }
11761
11762 if (padding_size > fragP->tc_frag_data.max_prefix_length)
11763 {
11764 /* No padding if there is no sufficient room. Clear the
11765 expected address of the padding frag. */
11766 padding_fragP->tc_frag_data.padding_address = 0;
11767 padding_size = 0;
11768 }
11769 else
11770 /* Store the expected address of the padding frag. */
11771 padding_fragP->tc_frag_data.padding_address
11772 = (fragP->fr_address + padding_size
11773 + fragP->tc_frag_data.padding_address);
11774
11775 fragP->tc_frag_data.prefix_length = padding_size;
11776
11777 /* Update the length for the current interation. */
11778 left_size = padding_size;
11779 for (next_fragP = fragP;
11780 next_fragP != padding_fragP;
11781 next_fragP = next_fragP->fr_next)
11782 if (next_fragP->fr_type == rs_machine_dependent
11783 && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11784 == BRANCH_PREFIX))
11785 {
11786 if (left_size)
11787 {
11788 int max = next_fragP->tc_frag_data.max_bytes;
11789 if (max)
11790 {
11791 int size;
11792 if (max > left_size)
11793 size = left_size;
11794 else
11795 size = max;
11796 left_size -= size;
11797 next_fragP->tc_frag_data.length = size;
11798 }
11799 }
11800 else
11801 next_fragP->tc_frag_data.length = 0;
11802 }
11803
11804 return (fragP->tc_frag_data.length
11805 - fragP->tc_frag_data.last_length);
11806 }
11807 return relax_frag (segment, fragP, stretch);
11808}
11809
ee7fcc42
AM
11810/* md_estimate_size_before_relax()
11811
11812 Called just before relax() for rs_machine_dependent frags. The x86
11813 assembler uses these frags to handle variable size jump
11814 instructions.
11815
11816 Any symbol that is now undefined will not become defined.
11817 Return the correct fr_subtype in the frag.
11818 Return the initial "guess for variable size of frag" to caller.
11819 The guess is actually the growth beyond the fixed part. Whatever
11820 we do to grow the fixed or variable part contributes to our
11821 returned value. */
11822
252b5132 11823int
7016a5d5 11824md_estimate_size_before_relax (fragS *fragP, segT segment)
252b5132 11825{
e379e5f3
L
11826 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11827 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX
11828 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
11829 {
11830 i386_classify_machine_dependent_frag (fragP);
11831 return fragP->tc_frag_data.length;
11832 }
11833
252b5132 11834 /* We've already got fragP->fr_subtype right; all we have to do is
b98ef147
AM
11835 check for un-relaxable symbols. On an ELF system, we can't relax
11836 an externally visible symbol, because it may be overridden by a
11837 shared library. */
11838 if (S_GET_SEGMENT (fragP->fr_symbol) != segment
6d249963 11839#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 11840 || (IS_ELF
8dcea932
L
11841 && !elf_symbol_resolved_in_segment_p (fragP->fr_symbol,
11842 fragP->fr_var))
fbeb56a4
DK
11843#endif
11844#if defined (OBJ_COFF) && defined (TE_PE)
7ab9ffdd 11845 || (OUTPUT_FLAVOR == bfd_target_coff_flavour
fbeb56a4 11846 && S_IS_WEAK (fragP->fr_symbol))
b98ef147
AM
11847#endif
11848 )
252b5132 11849 {
b98ef147
AM
11850 /* Symbol is undefined in this segment, or we need to keep a
11851 reloc so that weak symbols can be overridden. */
11852 int size = (fragP->fr_subtype & CODE16) ? 2 : 4;
f86103b7 11853 enum bfd_reloc_code_real reloc_type;
ee7fcc42
AM
11854 unsigned char *opcode;
11855 int old_fr_fix;
f6af82bd 11856
ee7fcc42 11857 if (fragP->fr_var != NO_RELOC)
1e9cc1c2 11858 reloc_type = (enum bfd_reloc_code_real) fragP->fr_var;
b98ef147 11859 else if (size == 2)
f6af82bd 11860 reloc_type = BFD_RELOC_16_PCREL;
bd7ab16b
L
11861#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11862 else if (need_plt32_p (fragP->fr_symbol))
11863 reloc_type = BFD_RELOC_X86_64_PLT32;
11864#endif
f6af82bd
AM
11865 else
11866 reloc_type = BFD_RELOC_32_PCREL;
252b5132 11867
ee7fcc42
AM
11868 old_fr_fix = fragP->fr_fix;
11869 opcode = (unsigned char *) fragP->fr_opcode;
11870
fddf5b5b 11871 switch (TYPE_FROM_RELAX_STATE (fragP->fr_subtype))
252b5132 11872 {
fddf5b5b
AM
11873 case UNCOND_JUMP:
11874 /* Make jmp (0xeb) a (d)word displacement jump. */
47926f60 11875 opcode[0] = 0xe9;
252b5132 11876 fragP->fr_fix += size;
062cd5e7
AS
11877 fix_new (fragP, old_fr_fix, size,
11878 fragP->fr_symbol,
11879 fragP->fr_offset, 1,
11880 reloc_type);
252b5132
RH
11881 break;
11882
fddf5b5b 11883 case COND_JUMP86:
412167cb
AM
11884 if (size == 2
11885 && (!no_cond_jump_promotion || fragP->fr_var != NO_RELOC))
fddf5b5b
AM
11886 {
11887 /* Negate the condition, and branch past an
11888 unconditional jump. */
11889 opcode[0] ^= 1;
11890 opcode[1] = 3;
11891 /* Insert an unconditional jump. */
11892 opcode[2] = 0xe9;
11893 /* We added two extra opcode bytes, and have a two byte
11894 offset. */
11895 fragP->fr_fix += 2 + 2;
062cd5e7
AS
11896 fix_new (fragP, old_fr_fix + 2, 2,
11897 fragP->fr_symbol,
11898 fragP->fr_offset, 1,
11899 reloc_type);
fddf5b5b
AM
11900 break;
11901 }
11902 /* Fall through. */
11903
11904 case COND_JUMP:
412167cb
AM
11905 if (no_cond_jump_promotion && fragP->fr_var == NO_RELOC)
11906 {
3e02c1cc
AM
11907 fixS *fixP;
11908
412167cb 11909 fragP->fr_fix += 1;
3e02c1cc
AM
11910 fixP = fix_new (fragP, old_fr_fix, 1,
11911 fragP->fr_symbol,
11912 fragP->fr_offset, 1,
11913 BFD_RELOC_8_PCREL);
11914 fixP->fx_signed = 1;
412167cb
AM
11915 break;
11916 }
93c2a809 11917
24eab124 11918 /* This changes the byte-displacement jump 0x7N
fddf5b5b 11919 to the (d)word-displacement jump 0x0f,0x8N. */
252b5132 11920 opcode[1] = opcode[0] + 0x10;
f6af82bd 11921 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
47926f60
KH
11922 /* We've added an opcode byte. */
11923 fragP->fr_fix += 1 + size;
062cd5e7
AS
11924 fix_new (fragP, old_fr_fix + 1, size,
11925 fragP->fr_symbol,
11926 fragP->fr_offset, 1,
11927 reloc_type);
252b5132 11928 break;
fddf5b5b
AM
11929
11930 default:
11931 BAD_CASE (fragP->fr_subtype);
11932 break;
252b5132
RH
11933 }
11934 frag_wane (fragP);
ee7fcc42 11935 return fragP->fr_fix - old_fr_fix;
252b5132 11936 }
93c2a809 11937
93c2a809
AM
11938 /* Guess size depending on current relax state. Initially the relax
11939 state will correspond to a short jump and we return 1, because
11940 the variable part of the frag (the branch offset) is one byte
11941 long. However, we can relax a section more than once and in that
11942 case we must either set fr_subtype back to the unrelaxed state,
11943 or return the value for the appropriate branch. */
11944 return md_relax_table[fragP->fr_subtype].rlx_length;
ee7fcc42
AM
11945}
11946
47926f60
KH
11947/* Called after relax() is finished.
11948
11949 In: Address of frag.
11950 fr_type == rs_machine_dependent.
11951 fr_subtype is what the address relaxed to.
11952
11953 Out: Any fixSs and constants are set up.
11954 Caller will turn frag into a ".space 0". */
11955
252b5132 11956void
7016a5d5
TG
11957md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec ATTRIBUTE_UNUSED,
11958 fragS *fragP)
252b5132 11959{
29b0f896 11960 unsigned char *opcode;
252b5132 11961 unsigned char *where_to_put_displacement = NULL;
847f7ad4
AM
11962 offsetT target_address;
11963 offsetT opcode_address;
252b5132 11964 unsigned int extension = 0;
847f7ad4 11965 offsetT displacement_from_opcode_start;
252b5132 11966
e379e5f3
L
11967 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11968 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING
11969 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11970 {
11971 /* Generate nop padding. */
11972 unsigned int size = fragP->tc_frag_data.length;
11973 if (size)
11974 {
11975 if (size > fragP->tc_frag_data.max_bytes)
11976 abort ();
11977
11978 if (flag_debug)
11979 {
11980 const char *msg;
11981 const char *branch = "branch";
11982 const char *prefix = "";
11983 fragS *padding_fragP;
11984 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
11985 == BRANCH_PREFIX)
11986 {
11987 padding_fragP = fragP->tc_frag_data.u.padding_fragP;
11988 switch (fragP->tc_frag_data.default_prefix)
11989 {
11990 default:
11991 abort ();
11992 break;
11993 case CS_PREFIX_OPCODE:
11994 prefix = " cs";
11995 break;
11996 case DS_PREFIX_OPCODE:
11997 prefix = " ds";
11998 break;
11999 case ES_PREFIX_OPCODE:
12000 prefix = " es";
12001 break;
12002 case FS_PREFIX_OPCODE:
12003 prefix = " fs";
12004 break;
12005 case GS_PREFIX_OPCODE:
12006 prefix = " gs";
12007 break;
12008 case SS_PREFIX_OPCODE:
12009 prefix = " ss";
12010 break;
12011 }
12012 if (padding_fragP)
12013 msg = _("%s:%u: add %d%s at 0x%llx to align "
12014 "%s within %d-byte boundary\n");
12015 else
12016 msg = _("%s:%u: add additional %d%s at 0x%llx to "
12017 "align %s within %d-byte boundary\n");
12018 }
12019 else
12020 {
12021 padding_fragP = fragP;
12022 msg = _("%s:%u: add %d%s-byte nop at 0x%llx to align "
12023 "%s within %d-byte boundary\n");
12024 }
12025
12026 if (padding_fragP)
12027 switch (padding_fragP->tc_frag_data.branch_type)
12028 {
12029 case align_branch_jcc:
12030 branch = "jcc";
12031 break;
12032 case align_branch_fused:
12033 branch = "fused jcc";
12034 break;
12035 case align_branch_jmp:
12036 branch = "jmp";
12037 break;
12038 case align_branch_call:
12039 branch = "call";
12040 break;
12041 case align_branch_indirect:
12042 branch = "indiret branch";
12043 break;
12044 case align_branch_ret:
12045 branch = "ret";
12046 break;
12047 default:
12048 break;
12049 }
12050
12051 fprintf (stdout, msg,
12052 fragP->fr_file, fragP->fr_line, size, prefix,
12053 (long long) fragP->fr_address, branch,
12054 1 << align_branch_power);
12055 }
12056 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
12057 memset (fragP->fr_opcode,
12058 fragP->tc_frag_data.default_prefix, size);
12059 else
12060 i386_generate_nops (fragP, (char *) fragP->fr_opcode,
12061 size, 0);
12062 fragP->fr_fix += size;
12063 }
12064 return;
12065 }
12066
252b5132
RH
12067 opcode = (unsigned char *) fragP->fr_opcode;
12068
47926f60 12069 /* Address we want to reach in file space. */
252b5132 12070 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
252b5132 12071
47926f60 12072 /* Address opcode resides at in file space. */
252b5132
RH
12073 opcode_address = fragP->fr_address + fragP->fr_fix;
12074
47926f60 12075 /* Displacement from opcode start to fill into instruction. */
252b5132
RH
12076 displacement_from_opcode_start = target_address - opcode_address;
12077
fddf5b5b 12078 if ((fragP->fr_subtype & BIG) == 0)
252b5132 12079 {
47926f60
KH
12080 /* Don't have to change opcode. */
12081 extension = 1; /* 1 opcode + 1 displacement */
252b5132 12082 where_to_put_displacement = &opcode[1];
fddf5b5b
AM
12083 }
12084 else
12085 {
12086 if (no_cond_jump_promotion
12087 && TYPE_FROM_RELAX_STATE (fragP->fr_subtype) != UNCOND_JUMP)
4eed87de
AM
12088 as_warn_where (fragP->fr_file, fragP->fr_line,
12089 _("long jump required"));
252b5132 12090
fddf5b5b
AM
12091 switch (fragP->fr_subtype)
12092 {
12093 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG):
12094 extension = 4; /* 1 opcode + 4 displacement */
12095 opcode[0] = 0xe9;
12096 where_to_put_displacement = &opcode[1];
12097 break;
252b5132 12098
fddf5b5b
AM
12099 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16):
12100 extension = 2; /* 1 opcode + 2 displacement */
12101 opcode[0] = 0xe9;
12102 where_to_put_displacement = &opcode[1];
12103 break;
252b5132 12104
fddf5b5b
AM
12105 case ENCODE_RELAX_STATE (COND_JUMP, BIG):
12106 case ENCODE_RELAX_STATE (COND_JUMP86, BIG):
12107 extension = 5; /* 2 opcode + 4 displacement */
12108 opcode[1] = opcode[0] + 0x10;
12109 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
12110 where_to_put_displacement = &opcode[2];
12111 break;
252b5132 12112
fddf5b5b
AM
12113 case ENCODE_RELAX_STATE (COND_JUMP, BIG16):
12114 extension = 3; /* 2 opcode + 2 displacement */
12115 opcode[1] = opcode[0] + 0x10;
12116 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
12117 where_to_put_displacement = &opcode[2];
12118 break;
252b5132 12119
fddf5b5b
AM
12120 case ENCODE_RELAX_STATE (COND_JUMP86, BIG16):
12121 extension = 4;
12122 opcode[0] ^= 1;
12123 opcode[1] = 3;
12124 opcode[2] = 0xe9;
12125 where_to_put_displacement = &opcode[3];
12126 break;
12127
12128 default:
12129 BAD_CASE (fragP->fr_subtype);
12130 break;
12131 }
252b5132 12132 }
fddf5b5b 12133
7b81dfbb
AJ
12134 /* If size if less then four we are sure that the operand fits,
12135 but if it's 4, then it could be that the displacement is larger
12136 then -/+ 2GB. */
12137 if (DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype) == 4
12138 && object_64bit
12139 && ((addressT) (displacement_from_opcode_start - extension
4eed87de
AM
12140 + ((addressT) 1 << 31))
12141 > (((addressT) 2 << 31) - 1)))
7b81dfbb
AJ
12142 {
12143 as_bad_where (fragP->fr_file, fragP->fr_line,
12144 _("jump target out of range"));
12145 /* Make us emit 0. */
12146 displacement_from_opcode_start = extension;
12147 }
47926f60 12148 /* Now put displacement after opcode. */
252b5132
RH
12149 md_number_to_chars ((char *) where_to_put_displacement,
12150 (valueT) (displacement_from_opcode_start - extension),
fddf5b5b 12151 DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
252b5132
RH
12152 fragP->fr_fix += extension;
12153}
12154\f
7016a5d5 12155/* Apply a fixup (fixP) to segment data, once it has been determined
252b5132
RH
12156 by our caller that we have all the info we need to fix it up.
12157
7016a5d5
TG
12158 Parameter valP is the pointer to the value of the bits.
12159
252b5132
RH
12160 On the 386, immediates, displacements, and data pointers are all in
12161 the same (little-endian) format, so we don't need to care about which
12162 we are handling. */
12163
94f592af 12164void
7016a5d5 12165md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 12166{
94f592af 12167 char *p = fixP->fx_where + fixP->fx_frag->fr_literal;
c6682705 12168 valueT value = *valP;
252b5132 12169
f86103b7 12170#if !defined (TE_Mach)
93382f6d
AM
12171 if (fixP->fx_pcrel)
12172 {
12173 switch (fixP->fx_r_type)
12174 {
5865bb77
ILT
12175 default:
12176 break;
12177
d6ab8113
JB
12178 case BFD_RELOC_64:
12179 fixP->fx_r_type = BFD_RELOC_64_PCREL;
12180 break;
93382f6d 12181 case BFD_RELOC_32:
ae8887b5 12182 case BFD_RELOC_X86_64_32S:
93382f6d
AM
12183 fixP->fx_r_type = BFD_RELOC_32_PCREL;
12184 break;
12185 case BFD_RELOC_16:
12186 fixP->fx_r_type = BFD_RELOC_16_PCREL;
12187 break;
12188 case BFD_RELOC_8:
12189 fixP->fx_r_type = BFD_RELOC_8_PCREL;
12190 break;
12191 }
12192 }
252b5132 12193
a161fe53 12194 if (fixP->fx_addsy != NULL
31312f95 12195 && (fixP->fx_r_type == BFD_RELOC_32_PCREL
d6ab8113 12196 || fixP->fx_r_type == BFD_RELOC_64_PCREL
31312f95 12197 || fixP->fx_r_type == BFD_RELOC_16_PCREL
d258b828 12198 || fixP->fx_r_type == BFD_RELOC_8_PCREL)
31312f95 12199 && !use_rela_relocations)
252b5132 12200 {
31312f95
AM
12201 /* This is a hack. There should be a better way to handle this.
12202 This covers for the fact that bfd_install_relocation will
12203 subtract the current location (for partial_inplace, PC relative
12204 relocations); see more below. */
252b5132 12205#ifndef OBJ_AOUT
718ddfc0 12206 if (IS_ELF
252b5132
RH
12207#ifdef TE_PE
12208 || OUTPUT_FLAVOR == bfd_target_coff_flavour
12209#endif
12210 )
12211 value += fixP->fx_where + fixP->fx_frag->fr_address;
12212#endif
12213#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 12214 if (IS_ELF)
252b5132 12215 {
6539b54b 12216 segT sym_seg = S_GET_SEGMENT (fixP->fx_addsy);
2f66722d 12217
6539b54b 12218 if ((sym_seg == seg
2f66722d 12219 || (symbol_section_p (fixP->fx_addsy)
6539b54b 12220 && sym_seg != absolute_section))
af65af87 12221 && !generic_force_reloc (fixP))
2f66722d
AM
12222 {
12223 /* Yes, we add the values in twice. This is because
6539b54b
AM
12224 bfd_install_relocation subtracts them out again. I think
12225 bfd_install_relocation is broken, but I don't dare change
2f66722d
AM
12226 it. FIXME. */
12227 value += fixP->fx_where + fixP->fx_frag->fr_address;
12228 }
252b5132
RH
12229 }
12230#endif
12231#if defined (OBJ_COFF) && defined (TE_PE)
977cdf5a
NC
12232 /* For some reason, the PE format does not store a
12233 section address offset for a PC relative symbol. */
12234 if (S_GET_SEGMENT (fixP->fx_addsy) != seg
7be1c489 12235 || S_IS_WEAK (fixP->fx_addsy))
252b5132
RH
12236 value += md_pcrel_from (fixP);
12237#endif
12238 }
fbeb56a4 12239#if defined (OBJ_COFF) && defined (TE_PE)
f01c1a09
NC
12240 if (fixP->fx_addsy != NULL
12241 && S_IS_WEAK (fixP->fx_addsy)
12242 /* PR 16858: Do not modify weak function references. */
12243 && ! fixP->fx_pcrel)
fbeb56a4 12244 {
296a8689
NC
12245#if !defined (TE_PEP)
12246 /* For x86 PE weak function symbols are neither PC-relative
12247 nor do they set S_IS_FUNCTION. So the only reliable way
12248 to detect them is to check the flags of their containing
12249 section. */
12250 if (S_GET_SEGMENT (fixP->fx_addsy) != NULL
12251 && S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_CODE)
12252 ;
12253 else
12254#endif
fbeb56a4
DK
12255 value -= S_GET_VALUE (fixP->fx_addsy);
12256 }
12257#endif
252b5132
RH
12258
12259 /* Fix a few things - the dynamic linker expects certain values here,
0234cb7c 12260 and we must not disappoint it. */
252b5132 12261#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 12262 if (IS_ELF && fixP->fx_addsy)
47926f60
KH
12263 switch (fixP->fx_r_type)
12264 {
12265 case BFD_RELOC_386_PLT32:
3e73aa7c 12266 case BFD_RELOC_X86_64_PLT32:
b9519cfe
L
12267 /* Make the jump instruction point to the address of the operand.
12268 At runtime we merely add the offset to the actual PLT entry.
12269 NB: Subtract the offset size only for jump instructions. */
12270 if (fixP->fx_pcrel)
12271 value = -4;
47926f60 12272 break;
31312f95 12273
13ae64f3
JJ
12274 case BFD_RELOC_386_TLS_GD:
12275 case BFD_RELOC_386_TLS_LDM:
13ae64f3 12276 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
12277 case BFD_RELOC_386_TLS_IE:
12278 case BFD_RELOC_386_TLS_GOTIE:
67a4f2b7 12279 case BFD_RELOC_386_TLS_GOTDESC:
bffbf940
JJ
12280 case BFD_RELOC_X86_64_TLSGD:
12281 case BFD_RELOC_X86_64_TLSLD:
12282 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7 12283 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
00f7efb6
JJ
12284 value = 0; /* Fully resolved at runtime. No addend. */
12285 /* Fallthrough */
12286 case BFD_RELOC_386_TLS_LE:
12287 case BFD_RELOC_386_TLS_LDO_32:
12288 case BFD_RELOC_386_TLS_LE_32:
12289 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 12290 case BFD_RELOC_X86_64_DTPOFF64:
00f7efb6 12291 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113 12292 case BFD_RELOC_X86_64_TPOFF64:
00f7efb6
JJ
12293 S_SET_THREAD_LOCAL (fixP->fx_addsy);
12294 break;
12295
67a4f2b7
AO
12296 case BFD_RELOC_386_TLS_DESC_CALL:
12297 case BFD_RELOC_X86_64_TLSDESC_CALL:
12298 value = 0; /* Fully resolved at runtime. No addend. */
12299 S_SET_THREAD_LOCAL (fixP->fx_addsy);
12300 fixP->fx_done = 0;
12301 return;
12302
47926f60
KH
12303 case BFD_RELOC_VTABLE_INHERIT:
12304 case BFD_RELOC_VTABLE_ENTRY:
12305 fixP->fx_done = 0;
94f592af 12306 return;
47926f60
KH
12307
12308 default:
12309 break;
12310 }
12311#endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) */
c6682705 12312 *valP = value;
f86103b7 12313#endif /* !defined (TE_Mach) */
3e73aa7c 12314
3e73aa7c 12315 /* Are we finished with this relocation now? */
c6682705 12316 if (fixP->fx_addsy == NULL)
3e73aa7c 12317 fixP->fx_done = 1;
fbeb56a4
DK
12318#if defined (OBJ_COFF) && defined (TE_PE)
12319 else if (fixP->fx_addsy != NULL && S_IS_WEAK (fixP->fx_addsy))
12320 {
12321 fixP->fx_done = 0;
12322 /* Remember value for tc_gen_reloc. */
12323 fixP->fx_addnumber = value;
12324 /* Clear out the frag for now. */
12325 value = 0;
12326 }
12327#endif
3e73aa7c
JH
12328 else if (use_rela_relocations)
12329 {
12330 fixP->fx_no_overflow = 1;
062cd5e7
AS
12331 /* Remember value for tc_gen_reloc. */
12332 fixP->fx_addnumber = value;
3e73aa7c
JH
12333 value = 0;
12334 }
f86103b7 12335
94f592af 12336 md_number_to_chars (p, value, fixP->fx_size);
252b5132 12337}
252b5132 12338\f
6d4af3c2 12339const char *
499ac353 12340md_atof (int type, char *litP, int *sizeP)
252b5132 12341{
499ac353
NC
12342 /* This outputs the LITTLENUMs in REVERSE order;
12343 in accord with the bigendian 386. */
12344 return ieee_md_atof (type, litP, sizeP, FALSE);
252b5132
RH
12345}
12346\f
2d545b82 12347static char output_invalid_buf[sizeof (unsigned char) * 2 + 6];
252b5132 12348
252b5132 12349static char *
e3bb37b5 12350output_invalid (int c)
252b5132 12351{
3882b010 12352 if (ISPRINT (c))
f9f21a03
L
12353 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
12354 "'%c'", c);
252b5132 12355 else
f9f21a03 12356 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
2d545b82 12357 "(0x%x)", (unsigned char) c);
252b5132
RH
12358 return output_invalid_buf;
12359}
12360
8a6fb3f9
JB
12361/* Verify that @r can be used in the current context. */
12362
12363static bfd_boolean check_register (const reg_entry *r)
12364{
12365 if (allow_pseudo_reg)
12366 return TRUE;
12367
12368 if (operand_type_all_zero (&r->reg_type))
12369 return FALSE;
12370
12371 if ((r->reg_type.bitfield.dword
12372 || (r->reg_type.bitfield.class == SReg && r->reg_num > 3)
12373 || r->reg_type.bitfield.class == RegCR
22e00a3f 12374 || r->reg_type.bitfield.class == RegDR)
8a6fb3f9
JB
12375 && !cpu_arch_flags.bitfield.cpui386)
12376 return FALSE;
12377
22e00a3f
JB
12378 if (r->reg_type.bitfield.class == RegTR
12379 && (flag_code == CODE_64BIT
12380 || !cpu_arch_flags.bitfield.cpui386
12381 || cpu_arch_isa_flags.bitfield.cpui586
12382 || cpu_arch_isa_flags.bitfield.cpui686))
12383 return FALSE;
12384
8a6fb3f9
JB
12385 if (r->reg_type.bitfield.class == RegMMX && !cpu_arch_flags.bitfield.cpummx)
12386 return FALSE;
12387
12388 if (!cpu_arch_flags.bitfield.cpuavx512f)
12389 {
12390 if (r->reg_type.bitfield.zmmword
12391 || r->reg_type.bitfield.class == RegMask)
12392 return FALSE;
12393
12394 if (!cpu_arch_flags.bitfield.cpuavx)
12395 {
12396 if (r->reg_type.bitfield.ymmword)
12397 return FALSE;
12398
12399 if (!cpu_arch_flags.bitfield.cpusse && r->reg_type.bitfield.xmmword)
12400 return FALSE;
12401 }
12402 }
12403
12404 if (r->reg_type.bitfield.class == RegBND && !cpu_arch_flags.bitfield.cpumpx)
12405 return FALSE;
12406
12407 /* Don't allow fake index register unless allow_index_reg isn't 0. */
12408 if (!allow_index_reg && r->reg_num == RegIZ)
12409 return FALSE;
12410
12411 /* Upper 16 vector registers are only available with VREX in 64bit
12412 mode, and require EVEX encoding. */
12413 if (r->reg_flags & RegVRex)
12414 {
12415 if (!cpu_arch_flags.bitfield.cpuavx512f
12416 || flag_code != CODE_64BIT)
12417 return FALSE;
12418
da4977e0
JB
12419 if (i.vec_encoding == vex_encoding_default)
12420 i.vec_encoding = vex_encoding_evex;
12421 else if (i.vec_encoding != vex_encoding_evex)
12422 i.vec_encoding = vex_encoding_error;
8a6fb3f9
JB
12423 }
12424
12425 if (((r->reg_flags & (RegRex64 | RegRex)) || r->reg_type.bitfield.qword)
12426 && (!cpu_arch_flags.bitfield.cpulm || r->reg_type.bitfield.class != RegCR)
12427 && flag_code != CODE_64BIT)
12428 return FALSE;
12429
12430 if (r->reg_type.bitfield.class == SReg && r->reg_num == RegFlat
12431 && !intel_syntax)
12432 return FALSE;
12433
12434 return TRUE;
12435}
12436
af6bdddf 12437/* REG_STRING starts *before* REGISTER_PREFIX. */
252b5132
RH
12438
12439static const reg_entry *
4d1bb795 12440parse_real_register (char *reg_string, char **end_op)
252b5132 12441{
af6bdddf
AM
12442 char *s = reg_string;
12443 char *p;
252b5132
RH
12444 char reg_name_given[MAX_REG_NAME_SIZE + 1];
12445 const reg_entry *r;
12446
12447 /* Skip possible REGISTER_PREFIX and possible whitespace. */
12448 if (*s == REGISTER_PREFIX)
12449 ++s;
12450
12451 if (is_space_char (*s))
12452 ++s;
12453
12454 p = reg_name_given;
af6bdddf 12455 while ((*p++ = register_chars[(unsigned char) *s]) != '\0')
252b5132
RH
12456 {
12457 if (p >= reg_name_given + MAX_REG_NAME_SIZE)
af6bdddf
AM
12458 return (const reg_entry *) NULL;
12459 s++;
252b5132
RH
12460 }
12461
6588847e
DN
12462 /* For naked regs, make sure that we are not dealing with an identifier.
12463 This prevents confusing an identifier like `eax_var' with register
12464 `eax'. */
12465 if (allow_naked_reg && identifier_chars[(unsigned char) *s])
12466 return (const reg_entry *) NULL;
12467
af6bdddf 12468 *end_op = s;
252b5132
RH
12469
12470 r = (const reg_entry *) hash_find (reg_hash, reg_name_given);
12471
5f47d35b 12472 /* Handle floating point regs, allowing spaces in the (i) part. */
47926f60 12473 if (r == i386_regtab /* %st is first entry of table */)
5f47d35b 12474 {
0e0eea78
JB
12475 if (!cpu_arch_flags.bitfield.cpu8087
12476 && !cpu_arch_flags.bitfield.cpu287
af32b722
JB
12477 && !cpu_arch_flags.bitfield.cpu387
12478 && !allow_pseudo_reg)
0e0eea78
JB
12479 return (const reg_entry *) NULL;
12480
5f47d35b
AM
12481 if (is_space_char (*s))
12482 ++s;
12483 if (*s == '(')
12484 {
af6bdddf 12485 ++s;
5f47d35b
AM
12486 if (is_space_char (*s))
12487 ++s;
12488 if (*s >= '0' && *s <= '7')
12489 {
db557034 12490 int fpr = *s - '0';
af6bdddf 12491 ++s;
5f47d35b
AM
12492 if (is_space_char (*s))
12493 ++s;
12494 if (*s == ')')
12495 {
12496 *end_op = s + 1;
1e9cc1c2 12497 r = (const reg_entry *) hash_find (reg_hash, "st(0)");
db557034
AM
12498 know (r);
12499 return r + fpr;
5f47d35b 12500 }
5f47d35b 12501 }
47926f60 12502 /* We have "%st(" then garbage. */
5f47d35b
AM
12503 return (const reg_entry *) NULL;
12504 }
12505 }
12506
8a6fb3f9 12507 return r && check_register (r) ? r : NULL;
252b5132 12508}
4d1bb795
JB
12509
12510/* REG_STRING starts *before* REGISTER_PREFIX. */
12511
12512static const reg_entry *
12513parse_register (char *reg_string, char **end_op)
12514{
12515 const reg_entry *r;
12516
12517 if (*reg_string == REGISTER_PREFIX || allow_naked_reg)
12518 r = parse_real_register (reg_string, end_op);
12519 else
12520 r = NULL;
12521 if (!r)
12522 {
12523 char *save = input_line_pointer;
12524 char c;
12525 symbolS *symbolP;
12526
12527 input_line_pointer = reg_string;
d02603dc 12528 c = get_symbol_name (&reg_string);
4d1bb795
JB
12529 symbolP = symbol_find (reg_string);
12530 if (symbolP && S_GET_SEGMENT (symbolP) == reg_section)
12531 {
12532 const expressionS *e = symbol_get_value_expression (symbolP);
12533
0398aac5 12534 know (e->X_op == O_register);
4eed87de 12535 know (e->X_add_number >= 0
c3fe08fa 12536 && (valueT) e->X_add_number < i386_regtab_size);
4d1bb795 12537 r = i386_regtab + e->X_add_number;
8a6fb3f9
JB
12538 if (!check_register (r))
12539 {
12540 as_bad (_("register '%s%s' cannot be used here"),
12541 register_prefix, r->reg_name);
12542 r = &bad_reg;
12543 }
4d1bb795
JB
12544 *end_op = input_line_pointer;
12545 }
12546 *input_line_pointer = c;
12547 input_line_pointer = save;
12548 }
12549 return r;
12550}
12551
12552int
12553i386_parse_name (char *name, expressionS *e, char *nextcharP)
12554{
12555 const reg_entry *r;
12556 char *end = input_line_pointer;
12557
12558 *end = *nextcharP;
12559 r = parse_register (name, &input_line_pointer);
12560 if (r && end <= input_line_pointer)
12561 {
12562 *nextcharP = *input_line_pointer;
12563 *input_line_pointer = 0;
8a6fb3f9
JB
12564 if (r != &bad_reg)
12565 {
12566 e->X_op = O_register;
12567 e->X_add_number = r - i386_regtab;
12568 }
12569 else
12570 e->X_op = O_illegal;
4d1bb795
JB
12571 return 1;
12572 }
12573 input_line_pointer = end;
12574 *end = 0;
ee86248c 12575 return intel_syntax ? i386_intel_parse_name (name, e) : 0;
4d1bb795
JB
12576}
12577
12578void
12579md_operand (expressionS *e)
12580{
ee86248c
JB
12581 char *end;
12582 const reg_entry *r;
4d1bb795 12583
ee86248c
JB
12584 switch (*input_line_pointer)
12585 {
12586 case REGISTER_PREFIX:
12587 r = parse_real_register (input_line_pointer, &end);
4d1bb795
JB
12588 if (r)
12589 {
12590 e->X_op = O_register;
12591 e->X_add_number = r - i386_regtab;
12592 input_line_pointer = end;
12593 }
ee86248c
JB
12594 break;
12595
12596 case '[':
9c2799c2 12597 gas_assert (intel_syntax);
ee86248c
JB
12598 end = input_line_pointer++;
12599 expression (e);
12600 if (*input_line_pointer == ']')
12601 {
12602 ++input_line_pointer;
12603 e->X_op_symbol = make_expr_symbol (e);
12604 e->X_add_symbol = NULL;
12605 e->X_add_number = 0;
12606 e->X_op = O_index;
12607 }
12608 else
12609 {
12610 e->X_op = O_absent;
12611 input_line_pointer = end;
12612 }
12613 break;
4d1bb795
JB
12614 }
12615}
12616
252b5132 12617\f
4cc782b5 12618#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
b6f8c7c4 12619const char *md_shortopts = "kVQ:sqnO::";
252b5132 12620#else
b6f8c7c4 12621const char *md_shortopts = "qnO::";
252b5132 12622#endif
6e0b89ee 12623
3e73aa7c 12624#define OPTION_32 (OPTION_MD_BASE + 0)
b3b91714
AM
12625#define OPTION_64 (OPTION_MD_BASE + 1)
12626#define OPTION_DIVIDE (OPTION_MD_BASE + 2)
9103f4f4
L
12627#define OPTION_MARCH (OPTION_MD_BASE + 3)
12628#define OPTION_MTUNE (OPTION_MD_BASE + 4)
1efbbeb4
L
12629#define OPTION_MMNEMONIC (OPTION_MD_BASE + 5)
12630#define OPTION_MSYNTAX (OPTION_MD_BASE + 6)
12631#define OPTION_MINDEX_REG (OPTION_MD_BASE + 7)
12632#define OPTION_MNAKED_REG (OPTION_MD_BASE + 8)
bd5dea88 12633#define OPTION_MRELAX_RELOCATIONS (OPTION_MD_BASE + 9)
c0f3af97 12634#define OPTION_MSSE2AVX (OPTION_MD_BASE + 10)
daf50ae7 12635#define OPTION_MSSE_CHECK (OPTION_MD_BASE + 11)
7bab8ab5
JB
12636#define OPTION_MOPERAND_CHECK (OPTION_MD_BASE + 12)
12637#define OPTION_MAVXSCALAR (OPTION_MD_BASE + 13)
12638#define OPTION_X32 (OPTION_MD_BASE + 14)
7e8b059b 12639#define OPTION_MADD_BND_PREFIX (OPTION_MD_BASE + 15)
43234a1e
L
12640#define OPTION_MEVEXLIG (OPTION_MD_BASE + 16)
12641#define OPTION_MEVEXWIG (OPTION_MD_BASE + 17)
167ad85b 12642#define OPTION_MBIG_OBJ (OPTION_MD_BASE + 18)
d1982f93 12643#define OPTION_MOMIT_LOCK_PREFIX (OPTION_MD_BASE + 19)
d3d3c6db 12644#define OPTION_MEVEXRCIG (OPTION_MD_BASE + 20)
8dcea932 12645#define OPTION_MSHARED (OPTION_MD_BASE + 21)
5db04b09
L
12646#define OPTION_MAMD64 (OPTION_MD_BASE + 22)
12647#define OPTION_MINTEL64 (OPTION_MD_BASE + 23)
e4e00185 12648#define OPTION_MFENCE_AS_LOCK_ADD (OPTION_MD_BASE + 24)
b4a3a7b4 12649#define OPTION_X86_USED_NOTE (OPTION_MD_BASE + 25)
03751133 12650#define OPTION_MVEXWIG (OPTION_MD_BASE + 26)
e379e5f3
L
12651#define OPTION_MALIGN_BRANCH_BOUNDARY (OPTION_MD_BASE + 27)
12652#define OPTION_MALIGN_BRANCH_PREFIX_SIZE (OPTION_MD_BASE + 28)
12653#define OPTION_MALIGN_BRANCH (OPTION_MD_BASE + 29)
76cf450b 12654#define OPTION_MBRANCHES_WITH_32B_BOUNDARIES (OPTION_MD_BASE + 30)
ae531041
L
12655#define OPTION_MLFENCE_AFTER_LOAD (OPTION_MD_BASE + 31)
12656#define OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH (OPTION_MD_BASE + 32)
12657#define OPTION_MLFENCE_BEFORE_RET (OPTION_MD_BASE + 33)
b3b91714 12658
99ad8390
NC
12659struct option md_longopts[] =
12660{
3e73aa7c 12661 {"32", no_argument, NULL, OPTION_32},
321098a5 12662#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 12663 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c 12664 {"64", no_argument, NULL, OPTION_64},
351f65ca
L
12665#endif
12666#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 12667 {"x32", no_argument, NULL, OPTION_X32},
8dcea932 12668 {"mshared", no_argument, NULL, OPTION_MSHARED},
b4a3a7b4 12669 {"mx86-used-note", required_argument, NULL, OPTION_X86_USED_NOTE},
6e0b89ee 12670#endif
b3b91714 12671 {"divide", no_argument, NULL, OPTION_DIVIDE},
9103f4f4
L
12672 {"march", required_argument, NULL, OPTION_MARCH},
12673 {"mtune", required_argument, NULL, OPTION_MTUNE},
1efbbeb4
L
12674 {"mmnemonic", required_argument, NULL, OPTION_MMNEMONIC},
12675 {"msyntax", required_argument, NULL, OPTION_MSYNTAX},
12676 {"mindex-reg", no_argument, NULL, OPTION_MINDEX_REG},
12677 {"mnaked-reg", no_argument, NULL, OPTION_MNAKED_REG},
c0f3af97 12678 {"msse2avx", no_argument, NULL, OPTION_MSSE2AVX},
daf50ae7 12679 {"msse-check", required_argument, NULL, OPTION_MSSE_CHECK},
7bab8ab5 12680 {"moperand-check", required_argument, NULL, OPTION_MOPERAND_CHECK},
539f890d 12681 {"mavxscalar", required_argument, NULL, OPTION_MAVXSCALAR},
03751133 12682 {"mvexwig", required_argument, NULL, OPTION_MVEXWIG},
7e8b059b 12683 {"madd-bnd-prefix", no_argument, NULL, OPTION_MADD_BND_PREFIX},
43234a1e
L
12684 {"mevexlig", required_argument, NULL, OPTION_MEVEXLIG},
12685 {"mevexwig", required_argument, NULL, OPTION_MEVEXWIG},
167ad85b
TG
12686# if defined (TE_PE) || defined (TE_PEP)
12687 {"mbig-obj", no_argument, NULL, OPTION_MBIG_OBJ},
12688#endif
d1982f93 12689 {"momit-lock-prefix", required_argument, NULL, OPTION_MOMIT_LOCK_PREFIX},
e4e00185 12690 {"mfence-as-lock-add", required_argument, NULL, OPTION_MFENCE_AS_LOCK_ADD},
0cb4071e 12691 {"mrelax-relocations", required_argument, NULL, OPTION_MRELAX_RELOCATIONS},
d3d3c6db 12692 {"mevexrcig", required_argument, NULL, OPTION_MEVEXRCIG},
e379e5f3
L
12693 {"malign-branch-boundary", required_argument, NULL, OPTION_MALIGN_BRANCH_BOUNDARY},
12694 {"malign-branch-prefix-size", required_argument, NULL, OPTION_MALIGN_BRANCH_PREFIX_SIZE},
12695 {"malign-branch", required_argument, NULL, OPTION_MALIGN_BRANCH},
76cf450b 12696 {"mbranches-within-32B-boundaries", no_argument, NULL, OPTION_MBRANCHES_WITH_32B_BOUNDARIES},
ae531041
L
12697 {"mlfence-after-load", required_argument, NULL, OPTION_MLFENCE_AFTER_LOAD},
12698 {"mlfence-before-indirect-branch", required_argument, NULL,
12699 OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH},
12700 {"mlfence-before-ret", required_argument, NULL, OPTION_MLFENCE_BEFORE_RET},
5db04b09
L
12701 {"mamd64", no_argument, NULL, OPTION_MAMD64},
12702 {"mintel64", no_argument, NULL, OPTION_MINTEL64},
252b5132
RH
12703 {NULL, no_argument, NULL, 0}
12704};
12705size_t md_longopts_size = sizeof (md_longopts);
12706
12707int
17b9d67d 12708md_parse_option (int c, const char *arg)
252b5132 12709{
91d6fa6a 12710 unsigned int j;
e379e5f3 12711 char *arch, *next, *saved, *type;
9103f4f4 12712
252b5132
RH
12713 switch (c)
12714 {
12b55ccc
L
12715 case 'n':
12716 optimize_align_code = 0;
12717 break;
12718
a38cf1db
AM
12719 case 'q':
12720 quiet_warnings = 1;
252b5132
RH
12721 break;
12722
12723#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
a38cf1db
AM
12724 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
12725 should be emitted or not. FIXME: Not implemented. */
12726 case 'Q':
d4693039
JB
12727 if ((arg[0] != 'y' && arg[0] != 'n') || arg[1])
12728 return 0;
252b5132
RH
12729 break;
12730
12731 /* -V: SVR4 argument to print version ID. */
12732 case 'V':
12733 print_version_id ();
12734 break;
12735
a38cf1db
AM
12736 /* -k: Ignore for FreeBSD compatibility. */
12737 case 'k':
252b5132 12738 break;
4cc782b5
ILT
12739
12740 case 's':
12741 /* -s: On i386 Solaris, this tells the native assembler to use
29b0f896 12742 .stab instead of .stab.excl. We always use .stab anyhow. */
4cc782b5 12743 break;
8dcea932
L
12744
12745 case OPTION_MSHARED:
12746 shared = 1;
12747 break;
b4a3a7b4
L
12748
12749 case OPTION_X86_USED_NOTE:
12750 if (strcasecmp (arg, "yes") == 0)
12751 x86_used_note = 1;
12752 else if (strcasecmp (arg, "no") == 0)
12753 x86_used_note = 0;
12754 else
12755 as_fatal (_("invalid -mx86-used-note= option: `%s'"), arg);
12756 break;
12757
12758
99ad8390 12759#endif
321098a5 12760#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 12761 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c
JH
12762 case OPTION_64:
12763 {
12764 const char **list, **l;
12765
3e73aa7c
JH
12766 list = bfd_target_list ();
12767 for (l = list; *l != NULL; l++)
8620418b 12768 if (CONST_STRNEQ (*l, "elf64-x86-64")
99ad8390
NC
12769 || strcmp (*l, "coff-x86-64") == 0
12770 || strcmp (*l, "pe-x86-64") == 0
d382c579
TG
12771 || strcmp (*l, "pei-x86-64") == 0
12772 || strcmp (*l, "mach-o-x86-64") == 0)
6e0b89ee
AM
12773 {
12774 default_arch = "x86_64";
12775 break;
12776 }
3e73aa7c 12777 if (*l == NULL)
2b5d6a91 12778 as_fatal (_("no compiled in support for x86_64"));
3e73aa7c
JH
12779 free (list);
12780 }
12781 break;
12782#endif
252b5132 12783
351f65ca 12784#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 12785 case OPTION_X32:
351f65ca
L
12786 if (IS_ELF)
12787 {
12788 const char **list, **l;
12789
12790 list = bfd_target_list ();
12791 for (l = list; *l != NULL; l++)
12792 if (CONST_STRNEQ (*l, "elf32-x86-64"))
12793 {
12794 default_arch = "x86_64:32";
12795 break;
12796 }
12797 if (*l == NULL)
2b5d6a91 12798 as_fatal (_("no compiled in support for 32bit x86_64"));
351f65ca
L
12799 free (list);
12800 }
12801 else
12802 as_fatal (_("32bit x86_64 is only supported for ELF"));
12803 break;
12804#endif
12805
6e0b89ee
AM
12806 case OPTION_32:
12807 default_arch = "i386";
12808 break;
12809
b3b91714
AM
12810 case OPTION_DIVIDE:
12811#ifdef SVR4_COMMENT_CHARS
12812 {
12813 char *n, *t;
12814 const char *s;
12815
add39d23 12816 n = XNEWVEC (char, strlen (i386_comment_chars) + 1);
b3b91714
AM
12817 t = n;
12818 for (s = i386_comment_chars; *s != '\0'; s++)
12819 if (*s != '/')
12820 *t++ = *s;
12821 *t = '\0';
12822 i386_comment_chars = n;
12823 }
12824#endif
12825 break;
12826
9103f4f4 12827 case OPTION_MARCH:
293f5f65
L
12828 saved = xstrdup (arg);
12829 arch = saved;
12830 /* Allow -march=+nosse. */
12831 if (*arch == '+')
12832 arch++;
6305a203 12833 do
9103f4f4 12834 {
6305a203 12835 if (*arch == '.')
2b5d6a91 12836 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
12837 next = strchr (arch, '+');
12838 if (next)
12839 *next++ = '\0';
91d6fa6a 12840 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 12841 {
91d6fa6a 12842 if (strcmp (arch, cpu_arch [j].name) == 0)
ccc9c027 12843 {
6305a203 12844 /* Processor. */
1ded5609
JB
12845 if (! cpu_arch[j].flags.bitfield.cpui386)
12846 continue;
12847
91d6fa6a 12848 cpu_arch_name = cpu_arch[j].name;
6305a203 12849 cpu_sub_arch_name = NULL;
91d6fa6a
NC
12850 cpu_arch_flags = cpu_arch[j].flags;
12851 cpu_arch_isa = cpu_arch[j].type;
12852 cpu_arch_isa_flags = cpu_arch[j].flags;
6305a203
L
12853 if (!cpu_arch_tune_set)
12854 {
12855 cpu_arch_tune = cpu_arch_isa;
12856 cpu_arch_tune_flags = cpu_arch_isa_flags;
12857 }
12858 break;
12859 }
91d6fa6a
NC
12860 else if (*cpu_arch [j].name == '.'
12861 && strcmp (arch, cpu_arch [j].name + 1) == 0)
6305a203 12862 {
33eaf5de 12863 /* ISA extension. */
6305a203 12864 i386_cpu_flags flags;
309d3373 12865
293f5f65
L
12866 flags = cpu_flags_or (cpu_arch_flags,
12867 cpu_arch[j].flags);
81486035 12868
5b64d091 12869 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
6305a203
L
12870 {
12871 if (cpu_sub_arch_name)
12872 {
12873 char *name = cpu_sub_arch_name;
12874 cpu_sub_arch_name = concat (name,
91d6fa6a 12875 cpu_arch[j].name,
1bf57e9f 12876 (const char *) NULL);
6305a203
L
12877 free (name);
12878 }
12879 else
91d6fa6a 12880 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
6305a203 12881 cpu_arch_flags = flags;
a586129e 12882 cpu_arch_isa_flags = flags;
6305a203 12883 }
0089dace
L
12884 else
12885 cpu_arch_isa_flags
12886 = cpu_flags_or (cpu_arch_isa_flags,
12887 cpu_arch[j].flags);
6305a203 12888 break;
ccc9c027 12889 }
9103f4f4 12890 }
6305a203 12891
293f5f65
L
12892 if (j >= ARRAY_SIZE (cpu_arch))
12893 {
33eaf5de 12894 /* Disable an ISA extension. */
293f5f65
L
12895 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
12896 if (strcmp (arch, cpu_noarch [j].name) == 0)
12897 {
12898 i386_cpu_flags flags;
12899
12900 flags = cpu_flags_and_not (cpu_arch_flags,
12901 cpu_noarch[j].flags);
12902 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
12903 {
12904 if (cpu_sub_arch_name)
12905 {
12906 char *name = cpu_sub_arch_name;
12907 cpu_sub_arch_name = concat (arch,
12908 (const char *) NULL);
12909 free (name);
12910 }
12911 else
12912 cpu_sub_arch_name = xstrdup (arch);
12913 cpu_arch_flags = flags;
12914 cpu_arch_isa_flags = flags;
12915 }
12916 break;
12917 }
12918
12919 if (j >= ARRAY_SIZE (cpu_noarch))
12920 j = ARRAY_SIZE (cpu_arch);
12921 }
12922
91d6fa6a 12923 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 12924 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
12925
12926 arch = next;
9103f4f4 12927 }
293f5f65
L
12928 while (next != NULL);
12929 free (saved);
9103f4f4
L
12930 break;
12931
12932 case OPTION_MTUNE:
12933 if (*arg == '.')
2b5d6a91 12934 as_fatal (_("invalid -mtune= option: `%s'"), arg);
91d6fa6a 12935 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 12936 {
91d6fa6a 12937 if (strcmp (arg, cpu_arch [j].name) == 0)
9103f4f4 12938 {
ccc9c027 12939 cpu_arch_tune_set = 1;
91d6fa6a
NC
12940 cpu_arch_tune = cpu_arch [j].type;
12941 cpu_arch_tune_flags = cpu_arch[j].flags;
9103f4f4
L
12942 break;
12943 }
12944 }
91d6fa6a 12945 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 12946 as_fatal (_("invalid -mtune= option: `%s'"), arg);
9103f4f4
L
12947 break;
12948
1efbbeb4
L
12949 case OPTION_MMNEMONIC:
12950 if (strcasecmp (arg, "att") == 0)
12951 intel_mnemonic = 0;
12952 else if (strcasecmp (arg, "intel") == 0)
12953 intel_mnemonic = 1;
12954 else
2b5d6a91 12955 as_fatal (_("invalid -mmnemonic= option: `%s'"), arg);
1efbbeb4
L
12956 break;
12957
12958 case OPTION_MSYNTAX:
12959 if (strcasecmp (arg, "att") == 0)
12960 intel_syntax = 0;
12961 else if (strcasecmp (arg, "intel") == 0)
12962 intel_syntax = 1;
12963 else
2b5d6a91 12964 as_fatal (_("invalid -msyntax= option: `%s'"), arg);
1efbbeb4
L
12965 break;
12966
12967 case OPTION_MINDEX_REG:
12968 allow_index_reg = 1;
12969 break;
12970
12971 case OPTION_MNAKED_REG:
12972 allow_naked_reg = 1;
12973 break;
12974
c0f3af97
L
12975 case OPTION_MSSE2AVX:
12976 sse2avx = 1;
12977 break;
12978
daf50ae7
L
12979 case OPTION_MSSE_CHECK:
12980 if (strcasecmp (arg, "error") == 0)
7bab8ab5 12981 sse_check = check_error;
daf50ae7 12982 else if (strcasecmp (arg, "warning") == 0)
7bab8ab5 12983 sse_check = check_warning;
daf50ae7 12984 else if (strcasecmp (arg, "none") == 0)
7bab8ab5 12985 sse_check = check_none;
daf50ae7 12986 else
2b5d6a91 12987 as_fatal (_("invalid -msse-check= option: `%s'"), arg);
daf50ae7
L
12988 break;
12989
7bab8ab5
JB
12990 case OPTION_MOPERAND_CHECK:
12991 if (strcasecmp (arg, "error") == 0)
12992 operand_check = check_error;
12993 else if (strcasecmp (arg, "warning") == 0)
12994 operand_check = check_warning;
12995 else if (strcasecmp (arg, "none") == 0)
12996 operand_check = check_none;
12997 else
12998 as_fatal (_("invalid -moperand-check= option: `%s'"), arg);
12999 break;
13000
539f890d
L
13001 case OPTION_MAVXSCALAR:
13002 if (strcasecmp (arg, "128") == 0)
13003 avxscalar = vex128;
13004 else if (strcasecmp (arg, "256") == 0)
13005 avxscalar = vex256;
13006 else
2b5d6a91 13007 as_fatal (_("invalid -mavxscalar= option: `%s'"), arg);
539f890d
L
13008 break;
13009
03751133
L
13010 case OPTION_MVEXWIG:
13011 if (strcmp (arg, "0") == 0)
40c9c8de 13012 vexwig = vexw0;
03751133 13013 else if (strcmp (arg, "1") == 0)
40c9c8de 13014 vexwig = vexw1;
03751133
L
13015 else
13016 as_fatal (_("invalid -mvexwig= option: `%s'"), arg);
13017 break;
13018
7e8b059b
L
13019 case OPTION_MADD_BND_PREFIX:
13020 add_bnd_prefix = 1;
13021 break;
13022
43234a1e
L
13023 case OPTION_MEVEXLIG:
13024 if (strcmp (arg, "128") == 0)
13025 evexlig = evexl128;
13026 else if (strcmp (arg, "256") == 0)
13027 evexlig = evexl256;
13028 else if (strcmp (arg, "512") == 0)
13029 evexlig = evexl512;
13030 else
13031 as_fatal (_("invalid -mevexlig= option: `%s'"), arg);
13032 break;
13033
d3d3c6db
IT
13034 case OPTION_MEVEXRCIG:
13035 if (strcmp (arg, "rne") == 0)
13036 evexrcig = rne;
13037 else if (strcmp (arg, "rd") == 0)
13038 evexrcig = rd;
13039 else if (strcmp (arg, "ru") == 0)
13040 evexrcig = ru;
13041 else if (strcmp (arg, "rz") == 0)
13042 evexrcig = rz;
13043 else
13044 as_fatal (_("invalid -mevexrcig= option: `%s'"), arg);
13045 break;
13046
43234a1e
L
13047 case OPTION_MEVEXWIG:
13048 if (strcmp (arg, "0") == 0)
13049 evexwig = evexw0;
13050 else if (strcmp (arg, "1") == 0)
13051 evexwig = evexw1;
13052 else
13053 as_fatal (_("invalid -mevexwig= option: `%s'"), arg);
13054 break;
13055
167ad85b
TG
13056# if defined (TE_PE) || defined (TE_PEP)
13057 case OPTION_MBIG_OBJ:
13058 use_big_obj = 1;
13059 break;
13060#endif
13061
d1982f93 13062 case OPTION_MOMIT_LOCK_PREFIX:
d022bddd
IT
13063 if (strcasecmp (arg, "yes") == 0)
13064 omit_lock_prefix = 1;
13065 else if (strcasecmp (arg, "no") == 0)
13066 omit_lock_prefix = 0;
13067 else
13068 as_fatal (_("invalid -momit-lock-prefix= option: `%s'"), arg);
13069 break;
13070
e4e00185
AS
13071 case OPTION_MFENCE_AS_LOCK_ADD:
13072 if (strcasecmp (arg, "yes") == 0)
13073 avoid_fence = 1;
13074 else if (strcasecmp (arg, "no") == 0)
13075 avoid_fence = 0;
13076 else
13077 as_fatal (_("invalid -mfence-as-lock-add= option: `%s'"), arg);
13078 break;
13079
ae531041
L
13080 case OPTION_MLFENCE_AFTER_LOAD:
13081 if (strcasecmp (arg, "yes") == 0)
13082 lfence_after_load = 1;
13083 else if (strcasecmp (arg, "no") == 0)
13084 lfence_after_load = 0;
13085 else
13086 as_fatal (_("invalid -mlfence-after-load= option: `%s'"), arg);
13087 break;
13088
13089 case OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH:
13090 if (strcasecmp (arg, "all") == 0)
a09f656b 13091 {
13092 lfence_before_indirect_branch = lfence_branch_all;
13093 if (lfence_before_ret == lfence_before_ret_none)
13094 lfence_before_ret = lfence_before_ret_shl;
13095 }
ae531041
L
13096 else if (strcasecmp (arg, "memory") == 0)
13097 lfence_before_indirect_branch = lfence_branch_memory;
13098 else if (strcasecmp (arg, "register") == 0)
13099 lfence_before_indirect_branch = lfence_branch_register;
13100 else if (strcasecmp (arg, "none") == 0)
13101 lfence_before_indirect_branch = lfence_branch_none;
13102 else
13103 as_fatal (_("invalid -mlfence-before-indirect-branch= option: `%s'"),
13104 arg);
13105 break;
13106
13107 case OPTION_MLFENCE_BEFORE_RET:
13108 if (strcasecmp (arg, "or") == 0)
13109 lfence_before_ret = lfence_before_ret_or;
13110 else if (strcasecmp (arg, "not") == 0)
13111 lfence_before_ret = lfence_before_ret_not;
a09f656b 13112 else if (strcasecmp (arg, "shl") == 0 || strcasecmp (arg, "yes") == 0)
13113 lfence_before_ret = lfence_before_ret_shl;
ae531041
L
13114 else if (strcasecmp (arg, "none") == 0)
13115 lfence_before_ret = lfence_before_ret_none;
13116 else
13117 as_fatal (_("invalid -mlfence-before-ret= option: `%s'"),
13118 arg);
13119 break;
13120
0cb4071e
L
13121 case OPTION_MRELAX_RELOCATIONS:
13122 if (strcasecmp (arg, "yes") == 0)
13123 generate_relax_relocations = 1;
13124 else if (strcasecmp (arg, "no") == 0)
13125 generate_relax_relocations = 0;
13126 else
13127 as_fatal (_("invalid -mrelax-relocations= option: `%s'"), arg);
13128 break;
13129
e379e5f3
L
13130 case OPTION_MALIGN_BRANCH_BOUNDARY:
13131 {
13132 char *end;
13133 long int align = strtoul (arg, &end, 0);
13134 if (*end == '\0')
13135 {
13136 if (align == 0)
13137 {
13138 align_branch_power = 0;
13139 break;
13140 }
13141 else if (align >= 16)
13142 {
13143 int align_power;
13144 for (align_power = 0;
13145 (align & 1) == 0;
13146 align >>= 1, align_power++)
13147 continue;
13148 /* Limit alignment power to 31. */
13149 if (align == 1 && align_power < 32)
13150 {
13151 align_branch_power = align_power;
13152 break;
13153 }
13154 }
13155 }
13156 as_fatal (_("invalid -malign-branch-boundary= value: %s"), arg);
13157 }
13158 break;
13159
13160 case OPTION_MALIGN_BRANCH_PREFIX_SIZE:
13161 {
13162 char *end;
13163 int align = strtoul (arg, &end, 0);
13164 /* Some processors only support 5 prefixes. */
13165 if (*end == '\0' && align >= 0 && align < 6)
13166 {
13167 align_branch_prefix_size = align;
13168 break;
13169 }
13170 as_fatal (_("invalid -malign-branch-prefix-size= value: %s"),
13171 arg);
13172 }
13173 break;
13174
13175 case OPTION_MALIGN_BRANCH:
13176 align_branch = 0;
13177 saved = xstrdup (arg);
13178 type = saved;
13179 do
13180 {
13181 next = strchr (type, '+');
13182 if (next)
13183 *next++ = '\0';
13184 if (strcasecmp (type, "jcc") == 0)
13185 align_branch |= align_branch_jcc_bit;
13186 else if (strcasecmp (type, "fused") == 0)
13187 align_branch |= align_branch_fused_bit;
13188 else if (strcasecmp (type, "jmp") == 0)
13189 align_branch |= align_branch_jmp_bit;
13190 else if (strcasecmp (type, "call") == 0)
13191 align_branch |= align_branch_call_bit;
13192 else if (strcasecmp (type, "ret") == 0)
13193 align_branch |= align_branch_ret_bit;
13194 else if (strcasecmp (type, "indirect") == 0)
13195 align_branch |= align_branch_indirect_bit;
13196 else
13197 as_fatal (_("invalid -malign-branch= option: `%s'"), arg);
13198 type = next;
13199 }
13200 while (next != NULL);
13201 free (saved);
13202 break;
13203
76cf450b
L
13204 case OPTION_MBRANCHES_WITH_32B_BOUNDARIES:
13205 align_branch_power = 5;
13206 align_branch_prefix_size = 5;
13207 align_branch = (align_branch_jcc_bit
13208 | align_branch_fused_bit
13209 | align_branch_jmp_bit);
13210 break;
13211
5db04b09 13212 case OPTION_MAMD64:
4b5aaf5f 13213 isa64 = amd64;
5db04b09
L
13214 break;
13215
13216 case OPTION_MINTEL64:
4b5aaf5f 13217 isa64 = intel64;
5db04b09
L
13218 break;
13219
b6f8c7c4
L
13220 case 'O':
13221 if (arg == NULL)
13222 {
13223 optimize = 1;
13224 /* Turn off -Os. */
13225 optimize_for_space = 0;
13226 }
13227 else if (*arg == 's')
13228 {
13229 optimize_for_space = 1;
13230 /* Turn on all encoding optimizations. */
41fd2579 13231 optimize = INT_MAX;
b6f8c7c4
L
13232 }
13233 else
13234 {
13235 optimize = atoi (arg);
13236 /* Turn off -Os. */
13237 optimize_for_space = 0;
13238 }
13239 break;
13240
252b5132
RH
13241 default:
13242 return 0;
13243 }
13244 return 1;
13245}
13246
8a2c8fef
L
13247#define MESSAGE_TEMPLATE \
13248" "
13249
293f5f65
L
13250static char *
13251output_message (FILE *stream, char *p, char *message, char *start,
13252 int *left_p, const char *name, int len)
13253{
13254 int size = sizeof (MESSAGE_TEMPLATE);
13255 int left = *left_p;
13256
13257 /* Reserve 2 spaces for ", " or ",\0" */
13258 left -= len + 2;
13259
13260 /* Check if there is any room. */
13261 if (left >= 0)
13262 {
13263 if (p != start)
13264 {
13265 *p++ = ',';
13266 *p++ = ' ';
13267 }
13268 p = mempcpy (p, name, len);
13269 }
13270 else
13271 {
13272 /* Output the current message now and start a new one. */
13273 *p++ = ',';
13274 *p = '\0';
13275 fprintf (stream, "%s\n", message);
13276 p = start;
13277 left = size - (start - message) - len - 2;
13278
13279 gas_assert (left >= 0);
13280
13281 p = mempcpy (p, name, len);
13282 }
13283
13284 *left_p = left;
13285 return p;
13286}
13287
8a2c8fef 13288static void
1ded5609 13289show_arch (FILE *stream, int ext, int check)
8a2c8fef
L
13290{
13291 static char message[] = MESSAGE_TEMPLATE;
13292 char *start = message + 27;
13293 char *p;
13294 int size = sizeof (MESSAGE_TEMPLATE);
13295 int left;
13296 const char *name;
13297 int len;
13298 unsigned int j;
13299
13300 p = start;
13301 left = size - (start - message);
13302 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
13303 {
13304 /* Should it be skipped? */
13305 if (cpu_arch [j].skip)
13306 continue;
13307
13308 name = cpu_arch [j].name;
13309 len = cpu_arch [j].len;
13310 if (*name == '.')
13311 {
13312 /* It is an extension. Skip if we aren't asked to show it. */
13313 if (ext)
13314 {
13315 name++;
13316 len--;
13317 }
13318 else
13319 continue;
13320 }
13321 else if (ext)
13322 {
13323 /* It is an processor. Skip if we show only extension. */
13324 continue;
13325 }
1ded5609
JB
13326 else if (check && ! cpu_arch[j].flags.bitfield.cpui386)
13327 {
13328 /* It is an impossible processor - skip. */
13329 continue;
13330 }
8a2c8fef 13331
293f5f65 13332 p = output_message (stream, p, message, start, &left, name, len);
8a2c8fef
L
13333 }
13334
293f5f65
L
13335 /* Display disabled extensions. */
13336 if (ext)
13337 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
13338 {
13339 name = cpu_noarch [j].name;
13340 len = cpu_noarch [j].len;
13341 p = output_message (stream, p, message, start, &left, name,
13342 len);
13343 }
13344
8a2c8fef
L
13345 *p = '\0';
13346 fprintf (stream, "%s\n", message);
13347}
13348
252b5132 13349void
8a2c8fef 13350md_show_usage (FILE *stream)
252b5132 13351{
4cc782b5
ILT
13352#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13353 fprintf (stream, _("\
d4693039 13354 -Qy, -Qn ignored\n\
a38cf1db 13355 -V print assembler version number\n\
b3b91714
AM
13356 -k ignored\n"));
13357#endif
13358 fprintf (stream, _("\
12b55ccc 13359 -n Do not optimize code alignment\n\
b3b91714
AM
13360 -q quieten some warnings\n"));
13361#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13362 fprintf (stream, _("\
a38cf1db 13363 -s ignored\n"));
b3b91714 13364#endif
d7f449c0
L
13365#if defined BFD64 && (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
13366 || defined (TE_PE) || defined (TE_PEP))
751d281c 13367 fprintf (stream, _("\
570561f7 13368 --32/--64/--x32 generate 32bit/64bit/x32 code\n"));
751d281c 13369#endif
b3b91714
AM
13370#ifdef SVR4_COMMENT_CHARS
13371 fprintf (stream, _("\
13372 --divide do not treat `/' as a comment character\n"));
a38cf1db
AM
13373#else
13374 fprintf (stream, _("\
b3b91714 13375 --divide ignored\n"));
4cc782b5 13376#endif
9103f4f4 13377 fprintf (stream, _("\
6305a203 13378 -march=CPU[,+EXTENSION...]\n\
8a2c8fef 13379 generate code for CPU and EXTENSION, CPU is one of:\n"));
1ded5609 13380 show_arch (stream, 0, 1);
8a2c8fef
L
13381 fprintf (stream, _("\
13382 EXTENSION is combination of:\n"));
1ded5609 13383 show_arch (stream, 1, 0);
6305a203 13384 fprintf (stream, _("\
8a2c8fef 13385 -mtune=CPU optimize for CPU, CPU is one of:\n"));
1ded5609 13386 show_arch (stream, 0, 0);
ba104c83 13387 fprintf (stream, _("\
c0f3af97
L
13388 -msse2avx encode SSE instructions with VEX prefix\n"));
13389 fprintf (stream, _("\
7c5c05ef 13390 -msse-check=[none|error|warning] (default: warning)\n\
daf50ae7
L
13391 check SSE instructions\n"));
13392 fprintf (stream, _("\
7c5c05ef 13393 -moperand-check=[none|error|warning] (default: warning)\n\
7bab8ab5
JB
13394 check operand combinations for validity\n"));
13395 fprintf (stream, _("\
7c5c05ef
L
13396 -mavxscalar=[128|256] (default: 128)\n\
13397 encode scalar AVX instructions with specific vector\n\
539f890d
L
13398 length\n"));
13399 fprintf (stream, _("\
03751133
L
13400 -mvexwig=[0|1] (default: 0)\n\
13401 encode VEX instructions with specific VEX.W value\n\
13402 for VEX.W bit ignored instructions\n"));
13403 fprintf (stream, _("\
7c5c05ef
L
13404 -mevexlig=[128|256|512] (default: 128)\n\
13405 encode scalar EVEX instructions with specific vector\n\
43234a1e
L
13406 length\n"));
13407 fprintf (stream, _("\
7c5c05ef
L
13408 -mevexwig=[0|1] (default: 0)\n\
13409 encode EVEX instructions with specific EVEX.W value\n\
43234a1e
L
13410 for EVEX.W bit ignored instructions\n"));
13411 fprintf (stream, _("\
7c5c05ef 13412 -mevexrcig=[rne|rd|ru|rz] (default: rne)\n\
d3d3c6db
IT
13413 encode EVEX instructions with specific EVEX.RC value\n\
13414 for SAE-only ignored instructions\n"));
13415 fprintf (stream, _("\
7c5c05ef
L
13416 -mmnemonic=[att|intel] "));
13417 if (SYSV386_COMPAT)
13418 fprintf (stream, _("(default: att)\n"));
13419 else
13420 fprintf (stream, _("(default: intel)\n"));
13421 fprintf (stream, _("\
13422 use AT&T/Intel mnemonic\n"));
ba104c83 13423 fprintf (stream, _("\
7c5c05ef
L
13424 -msyntax=[att|intel] (default: att)\n\
13425 use AT&T/Intel syntax\n"));
ba104c83
L
13426 fprintf (stream, _("\
13427 -mindex-reg support pseudo index registers\n"));
13428 fprintf (stream, _("\
13429 -mnaked-reg don't require `%%' prefix for registers\n"));
13430 fprintf (stream, _("\
7e8b059b 13431 -madd-bnd-prefix add BND prefix for all valid branches\n"));
b4a3a7b4 13432#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8dcea932
L
13433 fprintf (stream, _("\
13434 -mshared disable branch optimization for shared code\n"));
b4a3a7b4
L
13435 fprintf (stream, _("\
13436 -mx86-used-note=[no|yes] "));
13437 if (DEFAULT_X86_USED_NOTE)
13438 fprintf (stream, _("(default: yes)\n"));
13439 else
13440 fprintf (stream, _("(default: no)\n"));
13441 fprintf (stream, _("\
13442 generate x86 used ISA and feature properties\n"));
13443#endif
13444#if defined (TE_PE) || defined (TE_PEP)
167ad85b
TG
13445 fprintf (stream, _("\
13446 -mbig-obj generate big object files\n"));
13447#endif
d022bddd 13448 fprintf (stream, _("\
7c5c05ef 13449 -momit-lock-prefix=[no|yes] (default: no)\n\
d022bddd 13450 strip all lock prefixes\n"));
5db04b09 13451 fprintf (stream, _("\
7c5c05ef 13452 -mfence-as-lock-add=[no|yes] (default: no)\n\
e4e00185
AS
13453 encode lfence, mfence and sfence as\n\
13454 lock addl $0x0, (%%{re}sp)\n"));
13455 fprintf (stream, _("\
7c5c05ef
L
13456 -mrelax-relocations=[no|yes] "));
13457 if (DEFAULT_GENERATE_X86_RELAX_RELOCATIONS)
13458 fprintf (stream, _("(default: yes)\n"));
13459 else
13460 fprintf (stream, _("(default: no)\n"));
13461 fprintf (stream, _("\
0cb4071e
L
13462 generate relax relocations\n"));
13463 fprintf (stream, _("\
e379e5f3
L
13464 -malign-branch-boundary=NUM (default: 0)\n\
13465 align branches within NUM byte boundary\n"));
13466 fprintf (stream, _("\
13467 -malign-branch=TYPE[+TYPE...] (default: jcc+fused+jmp)\n\
13468 TYPE is combination of jcc, fused, jmp, call, ret,\n\
13469 indirect\n\
13470 specify types of branches to align\n"));
13471 fprintf (stream, _("\
13472 -malign-branch-prefix-size=NUM (default: 5)\n\
13473 align branches with NUM prefixes per instruction\n"));
13474 fprintf (stream, _("\
76cf450b
L
13475 -mbranches-within-32B-boundaries\n\
13476 align branches within 32 byte boundary\n"));
13477 fprintf (stream, _("\
ae531041
L
13478 -mlfence-after-load=[no|yes] (default: no)\n\
13479 generate lfence after load\n"));
13480 fprintf (stream, _("\
13481 -mlfence-before-indirect-branch=[none|all|register|memory] (default: none)\n\
13482 generate lfence before indirect near branch\n"));
13483 fprintf (stream, _("\
a09f656b 13484 -mlfence-before-ret=[none|or|not|shl|yes] (default: none)\n\
ae531041
L
13485 generate lfence before ret\n"));
13486 fprintf (stream, _("\
7c5c05ef 13487 -mamd64 accept only AMD64 ISA [default]\n"));
5db04b09
L
13488 fprintf (stream, _("\
13489 -mintel64 accept only Intel64 ISA\n"));
252b5132
RH
13490}
13491
3e73aa7c 13492#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
321098a5 13493 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
e57f8c65 13494 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
252b5132
RH
13495
13496/* Pick the target format to use. */
13497
47926f60 13498const char *
e3bb37b5 13499i386_target_format (void)
252b5132 13500{
351f65ca
L
13501 if (!strncmp (default_arch, "x86_64", 6))
13502 {
13503 update_code_flag (CODE_64BIT, 1);
13504 if (default_arch[6] == '\0')
7f56bc95 13505 x86_elf_abi = X86_64_ABI;
351f65ca 13506 else
7f56bc95 13507 x86_elf_abi = X86_64_X32_ABI;
351f65ca 13508 }
3e73aa7c 13509 else if (!strcmp (default_arch, "i386"))
78f12dd3 13510 update_code_flag (CODE_32BIT, 1);
5197d474
L
13511 else if (!strcmp (default_arch, "iamcu"))
13512 {
13513 update_code_flag (CODE_32BIT, 1);
13514 if (cpu_arch_isa == PROCESSOR_UNKNOWN)
13515 {
13516 static const i386_cpu_flags iamcu_flags = CPU_IAMCU_FLAGS;
13517 cpu_arch_name = "iamcu";
13518 cpu_sub_arch_name = NULL;
13519 cpu_arch_flags = iamcu_flags;
13520 cpu_arch_isa = PROCESSOR_IAMCU;
13521 cpu_arch_isa_flags = iamcu_flags;
13522 if (!cpu_arch_tune_set)
13523 {
13524 cpu_arch_tune = cpu_arch_isa;
13525 cpu_arch_tune_flags = cpu_arch_isa_flags;
13526 }
13527 }
8d471ec1 13528 else if (cpu_arch_isa != PROCESSOR_IAMCU)
5197d474
L
13529 as_fatal (_("Intel MCU doesn't support `%s' architecture"),
13530 cpu_arch_name);
13531 }
3e73aa7c 13532 else
2b5d6a91 13533 as_fatal (_("unknown architecture"));
89507696
JB
13534
13535 if (cpu_flags_all_zero (&cpu_arch_isa_flags))
13536 cpu_arch_isa_flags = cpu_arch[flag_code == CODE_64BIT].flags;
13537 if (cpu_flags_all_zero (&cpu_arch_tune_flags))
13538 cpu_arch_tune_flags = cpu_arch[flag_code == CODE_64BIT].flags;
13539
252b5132
RH
13540 switch (OUTPUT_FLAVOR)
13541 {
9384f2ff 13542#if defined (OBJ_MAYBE_AOUT) || defined (OBJ_AOUT)
4c63da97 13543 case bfd_target_aout_flavour:
47926f60 13544 return AOUT_TARGET_FORMAT;
4c63da97 13545#endif
9384f2ff
AM
13546#if defined (OBJ_MAYBE_COFF) || defined (OBJ_COFF)
13547# if defined (TE_PE) || defined (TE_PEP)
13548 case bfd_target_coff_flavour:
167ad85b
TG
13549 if (flag_code == CODE_64BIT)
13550 return use_big_obj ? "pe-bigobj-x86-64" : "pe-x86-64";
13551 else
251dae91 13552 return use_big_obj ? "pe-bigobj-i386" : "pe-i386";
9384f2ff 13553# elif defined (TE_GO32)
0561d57c
JK
13554 case bfd_target_coff_flavour:
13555 return "coff-go32";
9384f2ff 13556# else
252b5132
RH
13557 case bfd_target_coff_flavour:
13558 return "coff-i386";
9384f2ff 13559# endif
4c63da97 13560#endif
3e73aa7c 13561#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
252b5132 13562 case bfd_target_elf_flavour:
3e73aa7c 13563 {
351f65ca
L
13564 const char *format;
13565
13566 switch (x86_elf_abi)
4fa24527 13567 {
351f65ca
L
13568 default:
13569 format = ELF_TARGET_FORMAT;
e379e5f3
L
13570#ifndef TE_SOLARIS
13571 tls_get_addr = "___tls_get_addr";
13572#endif
351f65ca 13573 break;
7f56bc95 13574 case X86_64_ABI:
351f65ca 13575 use_rela_relocations = 1;
4fa24527 13576 object_64bit = 1;
e379e5f3
L
13577#ifndef TE_SOLARIS
13578 tls_get_addr = "__tls_get_addr";
13579#endif
351f65ca
L
13580 format = ELF_TARGET_FORMAT64;
13581 break;
7f56bc95 13582 case X86_64_X32_ABI:
4fa24527 13583 use_rela_relocations = 1;
351f65ca 13584 object_64bit = 1;
e379e5f3
L
13585#ifndef TE_SOLARIS
13586 tls_get_addr = "__tls_get_addr";
13587#endif
862be3fb 13588 disallow_64bit_reloc = 1;
351f65ca
L
13589 format = ELF_TARGET_FORMAT32;
13590 break;
4fa24527 13591 }
3632d14b 13592 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 13593 {
7f56bc95 13594 if (x86_elf_abi != X86_64_ABI)
8a9036a4
L
13595 as_fatal (_("Intel L1OM is 64bit only"));
13596 return ELF_TARGET_L1OM_FORMAT;
13597 }
b49f93f6 13598 else if (cpu_arch_isa == PROCESSOR_K1OM)
7a9068fe
L
13599 {
13600 if (x86_elf_abi != X86_64_ABI)
13601 as_fatal (_("Intel K1OM is 64bit only"));
13602 return ELF_TARGET_K1OM_FORMAT;
13603 }
81486035
L
13604 else if (cpu_arch_isa == PROCESSOR_IAMCU)
13605 {
13606 if (x86_elf_abi != I386_ABI)
13607 as_fatal (_("Intel MCU is 32bit only"));
13608 return ELF_TARGET_IAMCU_FORMAT;
13609 }
8a9036a4 13610 else
351f65ca 13611 return format;
3e73aa7c 13612 }
e57f8c65
TG
13613#endif
13614#if defined (OBJ_MACH_O)
13615 case bfd_target_mach_o_flavour:
d382c579
TG
13616 if (flag_code == CODE_64BIT)
13617 {
13618 use_rela_relocations = 1;
13619 object_64bit = 1;
13620 return "mach-o-x86-64";
13621 }
13622 else
13623 return "mach-o-i386";
4c63da97 13624#endif
252b5132
RH
13625 default:
13626 abort ();
13627 return NULL;
13628 }
13629}
13630
47926f60 13631#endif /* OBJ_MAYBE_ more than one */
252b5132 13632\f
252b5132 13633symbolS *
7016a5d5 13634md_undefined_symbol (char *name)
252b5132 13635{
18dc2407
ILT
13636 if (name[0] == GLOBAL_OFFSET_TABLE_NAME[0]
13637 && name[1] == GLOBAL_OFFSET_TABLE_NAME[1]
13638 && name[2] == GLOBAL_OFFSET_TABLE_NAME[2]
13639 && strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0)
24eab124
AM
13640 {
13641 if (!GOT_symbol)
13642 {
13643 if (symbol_find (name))
13644 as_bad (_("GOT already in symbol table"));
13645 GOT_symbol = symbol_new (name, undefined_section,
13646 (valueT) 0, &zero_address_frag);
13647 };
13648 return GOT_symbol;
13649 }
252b5132
RH
13650 return 0;
13651}
13652
13653/* Round up a section size to the appropriate boundary. */
47926f60 13654
252b5132 13655valueT
7016a5d5 13656md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size)
252b5132 13657{
4c63da97
AM
13658#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
13659 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
13660 {
13661 /* For a.out, force the section size to be aligned. If we don't do
13662 this, BFD will align it for us, but it will not write out the
13663 final bytes of the section. This may be a bug in BFD, but it is
13664 easier to fix it here since that is how the other a.out targets
13665 work. */
13666 int align;
13667
fd361982 13668 align = bfd_section_alignment (segment);
8d3842cd 13669 size = ((size + (1 << align) - 1) & (-((valueT) 1 << align)));
4c63da97 13670 }
252b5132
RH
13671#endif
13672
13673 return size;
13674}
13675
13676/* On the i386, PC-relative offsets are relative to the start of the
13677 next instruction. That is, the address of the offset, plus its
13678 size, since the offset is always the last part of the insn. */
13679
13680long
e3bb37b5 13681md_pcrel_from (fixS *fixP)
252b5132
RH
13682{
13683 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
13684}
13685
13686#ifndef I386COFF
13687
13688static void
e3bb37b5 13689s_bss (int ignore ATTRIBUTE_UNUSED)
252b5132 13690{
29b0f896 13691 int temp;
252b5132 13692
8a75718c
JB
13693#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13694 if (IS_ELF)
13695 obj_elf_section_change_hook ();
13696#endif
252b5132
RH
13697 temp = get_absolute_expression ();
13698 subseg_set (bss_section, (subsegT) temp);
13699 demand_empty_rest_of_line ();
13700}
13701
13702#endif
13703
e379e5f3
L
13704/* Remember constant directive. */
13705
13706void
13707i386_cons_align (int ignore ATTRIBUTE_UNUSED)
13708{
13709 if (last_insn.kind != last_insn_directive
13710 && (bfd_section_flags (now_seg) & SEC_CODE))
13711 {
13712 last_insn.seg = now_seg;
13713 last_insn.kind = last_insn_directive;
13714 last_insn.name = "constant directive";
13715 last_insn.file = as_where (&last_insn.line);
ae531041
L
13716 if (lfence_before_ret != lfence_before_ret_none)
13717 {
13718 if (lfence_before_indirect_branch != lfence_branch_none)
13719 as_warn (_("constant directive skips -mlfence-before-ret "
13720 "and -mlfence-before-indirect-branch"));
13721 else
13722 as_warn (_("constant directive skips -mlfence-before-ret"));
13723 }
13724 else if (lfence_before_indirect_branch != lfence_branch_none)
13725 as_warn (_("constant directive skips -mlfence-before-indirect-branch"));
e379e5f3
L
13726 }
13727}
13728
252b5132 13729void
e3bb37b5 13730i386_validate_fix (fixS *fixp)
252b5132 13731{
02a86693 13732 if (fixp->fx_subsy)
252b5132 13733 {
02a86693 13734 if (fixp->fx_subsy == GOT_symbol)
23df1078 13735 {
02a86693
L
13736 if (fixp->fx_r_type == BFD_RELOC_32_PCREL)
13737 {
13738 if (!object_64bit)
13739 abort ();
13740#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13741 if (fixp->fx_tcbit2)
56ceb5b5
L
13742 fixp->fx_r_type = (fixp->fx_tcbit
13743 ? BFD_RELOC_X86_64_REX_GOTPCRELX
13744 : BFD_RELOC_X86_64_GOTPCRELX);
02a86693
L
13745 else
13746#endif
13747 fixp->fx_r_type = BFD_RELOC_X86_64_GOTPCREL;
13748 }
d6ab8113 13749 else
02a86693
L
13750 {
13751 if (!object_64bit)
13752 fixp->fx_r_type = BFD_RELOC_386_GOTOFF;
13753 else
13754 fixp->fx_r_type = BFD_RELOC_X86_64_GOTOFF64;
13755 }
13756 fixp->fx_subsy = 0;
23df1078 13757 }
252b5132 13758 }
02a86693
L
13759#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13760 else if (!object_64bit)
13761 {
13762 if (fixp->fx_r_type == BFD_RELOC_386_GOT32
13763 && fixp->fx_tcbit2)
13764 fixp->fx_r_type = BFD_RELOC_386_GOT32X;
13765 }
13766#endif
252b5132
RH
13767}
13768
252b5132 13769arelent *
7016a5d5 13770tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
13771{
13772 arelent *rel;
13773 bfd_reloc_code_real_type code;
13774
13775 switch (fixp->fx_r_type)
13776 {
8ce3d284 13777#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
13778 case BFD_RELOC_SIZE32:
13779 case BFD_RELOC_SIZE64:
13780 if (S_IS_DEFINED (fixp->fx_addsy)
13781 && !S_IS_EXTERNAL (fixp->fx_addsy))
13782 {
13783 /* Resolve size relocation against local symbol to size of
13784 the symbol plus addend. */
13785 valueT value = S_GET_SIZE (fixp->fx_addsy) + fixp->fx_offset;
13786 if (fixp->fx_r_type == BFD_RELOC_SIZE32
13787 && !fits_in_unsigned_long (value))
13788 as_bad_where (fixp->fx_file, fixp->fx_line,
13789 _("symbol size computation overflow"));
13790 fixp->fx_addsy = NULL;
13791 fixp->fx_subsy = NULL;
13792 md_apply_fix (fixp, (valueT *) &value, NULL);
13793 return NULL;
13794 }
8ce3d284 13795#endif
1a0670f3 13796 /* Fall through. */
8fd4256d 13797
3e73aa7c
JH
13798 case BFD_RELOC_X86_64_PLT32:
13799 case BFD_RELOC_X86_64_GOT32:
13800 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
13801 case BFD_RELOC_X86_64_GOTPCRELX:
13802 case BFD_RELOC_X86_64_REX_GOTPCRELX:
252b5132
RH
13803 case BFD_RELOC_386_PLT32:
13804 case BFD_RELOC_386_GOT32:
02a86693 13805 case BFD_RELOC_386_GOT32X:
252b5132
RH
13806 case BFD_RELOC_386_GOTOFF:
13807 case BFD_RELOC_386_GOTPC:
13ae64f3
JJ
13808 case BFD_RELOC_386_TLS_GD:
13809 case BFD_RELOC_386_TLS_LDM:
13810 case BFD_RELOC_386_TLS_LDO_32:
13811 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
13812 case BFD_RELOC_386_TLS_IE:
13813 case BFD_RELOC_386_TLS_GOTIE:
13ae64f3
JJ
13814 case BFD_RELOC_386_TLS_LE_32:
13815 case BFD_RELOC_386_TLS_LE:
67a4f2b7
AO
13816 case BFD_RELOC_386_TLS_GOTDESC:
13817 case BFD_RELOC_386_TLS_DESC_CALL:
bffbf940
JJ
13818 case BFD_RELOC_X86_64_TLSGD:
13819 case BFD_RELOC_X86_64_TLSLD:
13820 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 13821 case BFD_RELOC_X86_64_DTPOFF64:
bffbf940
JJ
13822 case BFD_RELOC_X86_64_GOTTPOFF:
13823 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113
JB
13824 case BFD_RELOC_X86_64_TPOFF64:
13825 case BFD_RELOC_X86_64_GOTOFF64:
13826 case BFD_RELOC_X86_64_GOTPC32:
7b81dfbb
AJ
13827 case BFD_RELOC_X86_64_GOT64:
13828 case BFD_RELOC_X86_64_GOTPCREL64:
13829 case BFD_RELOC_X86_64_GOTPC64:
13830 case BFD_RELOC_X86_64_GOTPLT64:
13831 case BFD_RELOC_X86_64_PLTOFF64:
67a4f2b7
AO
13832 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
13833 case BFD_RELOC_X86_64_TLSDESC_CALL:
252b5132
RH
13834 case BFD_RELOC_RVA:
13835 case BFD_RELOC_VTABLE_ENTRY:
13836 case BFD_RELOC_VTABLE_INHERIT:
6482c264
NC
13837#ifdef TE_PE
13838 case BFD_RELOC_32_SECREL:
13839#endif
252b5132
RH
13840 code = fixp->fx_r_type;
13841 break;
dbbaec26
L
13842 case BFD_RELOC_X86_64_32S:
13843 if (!fixp->fx_pcrel)
13844 {
13845 /* Don't turn BFD_RELOC_X86_64_32S into BFD_RELOC_32. */
13846 code = fixp->fx_r_type;
13847 break;
13848 }
1a0670f3 13849 /* Fall through. */
252b5132 13850 default:
93382f6d 13851 if (fixp->fx_pcrel)
252b5132 13852 {
93382f6d
AM
13853 switch (fixp->fx_size)
13854 {
13855 default:
b091f402
AM
13856 as_bad_where (fixp->fx_file, fixp->fx_line,
13857 _("can not do %d byte pc-relative relocation"),
13858 fixp->fx_size);
93382f6d
AM
13859 code = BFD_RELOC_32_PCREL;
13860 break;
13861 case 1: code = BFD_RELOC_8_PCREL; break;
13862 case 2: code = BFD_RELOC_16_PCREL; break;
d258b828 13863 case 4: code = BFD_RELOC_32_PCREL; break;
d6ab8113
JB
13864#ifdef BFD64
13865 case 8: code = BFD_RELOC_64_PCREL; break;
13866#endif
93382f6d
AM
13867 }
13868 }
13869 else
13870 {
13871 switch (fixp->fx_size)
13872 {
13873 default:
b091f402
AM
13874 as_bad_where (fixp->fx_file, fixp->fx_line,
13875 _("can not do %d byte relocation"),
13876 fixp->fx_size);
93382f6d
AM
13877 code = BFD_RELOC_32;
13878 break;
13879 case 1: code = BFD_RELOC_8; break;
13880 case 2: code = BFD_RELOC_16; break;
13881 case 4: code = BFD_RELOC_32; break;
937149dd 13882#ifdef BFD64
3e73aa7c 13883 case 8: code = BFD_RELOC_64; break;
937149dd 13884#endif
93382f6d 13885 }
252b5132
RH
13886 }
13887 break;
13888 }
252b5132 13889
d182319b
JB
13890 if ((code == BFD_RELOC_32
13891 || code == BFD_RELOC_32_PCREL
13892 || code == BFD_RELOC_X86_64_32S)
252b5132
RH
13893 && GOT_symbol
13894 && fixp->fx_addsy == GOT_symbol)
3e73aa7c 13895 {
4fa24527 13896 if (!object_64bit)
d6ab8113
JB
13897 code = BFD_RELOC_386_GOTPC;
13898 else
13899 code = BFD_RELOC_X86_64_GOTPC32;
3e73aa7c 13900 }
7b81dfbb
AJ
13901 if ((code == BFD_RELOC_64 || code == BFD_RELOC_64_PCREL)
13902 && GOT_symbol
13903 && fixp->fx_addsy == GOT_symbol)
13904 {
13905 code = BFD_RELOC_X86_64_GOTPC64;
13906 }
252b5132 13907
add39d23
TS
13908 rel = XNEW (arelent);
13909 rel->sym_ptr_ptr = XNEW (asymbol *);
49309057 13910 *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
13911
13912 rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
c87db184 13913
3e73aa7c
JH
13914 if (!use_rela_relocations)
13915 {
13916 /* HACK: Since i386 ELF uses Rel instead of Rela, encode the
13917 vtable entry to be used in the relocation's section offset. */
13918 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
13919 rel->address = fixp->fx_offset;
fbeb56a4
DK
13920#if defined (OBJ_COFF) && defined (TE_PE)
13921 else if (fixp->fx_addsy && S_IS_WEAK (fixp->fx_addsy))
13922 rel->addend = fixp->fx_addnumber - (S_GET_VALUE (fixp->fx_addsy) * 2);
13923 else
13924#endif
c6682705 13925 rel->addend = 0;
3e73aa7c
JH
13926 }
13927 /* Use the rela in 64bit mode. */
252b5132 13928 else
3e73aa7c 13929 {
862be3fb
L
13930 if (disallow_64bit_reloc)
13931 switch (code)
13932 {
862be3fb
L
13933 case BFD_RELOC_X86_64_DTPOFF64:
13934 case BFD_RELOC_X86_64_TPOFF64:
13935 case BFD_RELOC_64_PCREL:
13936 case BFD_RELOC_X86_64_GOTOFF64:
13937 case BFD_RELOC_X86_64_GOT64:
13938 case BFD_RELOC_X86_64_GOTPCREL64:
13939 case BFD_RELOC_X86_64_GOTPC64:
13940 case BFD_RELOC_X86_64_GOTPLT64:
13941 case BFD_RELOC_X86_64_PLTOFF64:
13942 as_bad_where (fixp->fx_file, fixp->fx_line,
13943 _("cannot represent relocation type %s in x32 mode"),
13944 bfd_get_reloc_code_name (code));
13945 break;
13946 default:
13947 break;
13948 }
13949
062cd5e7
AS
13950 if (!fixp->fx_pcrel)
13951 rel->addend = fixp->fx_offset;
13952 else
13953 switch (code)
13954 {
13955 case BFD_RELOC_X86_64_PLT32:
13956 case BFD_RELOC_X86_64_GOT32:
13957 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
13958 case BFD_RELOC_X86_64_GOTPCRELX:
13959 case BFD_RELOC_X86_64_REX_GOTPCRELX:
bffbf940
JJ
13960 case BFD_RELOC_X86_64_TLSGD:
13961 case BFD_RELOC_X86_64_TLSLD:
13962 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7
AO
13963 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
13964 case BFD_RELOC_X86_64_TLSDESC_CALL:
062cd5e7
AS
13965 rel->addend = fixp->fx_offset - fixp->fx_size;
13966 break;
13967 default:
13968 rel->addend = (section->vma
13969 - fixp->fx_size
13970 + fixp->fx_addnumber
13971 + md_pcrel_from (fixp));
13972 break;
13973 }
3e73aa7c
JH
13974 }
13975
252b5132
RH
13976 rel->howto = bfd_reloc_type_lookup (stdoutput, code);
13977 if (rel->howto == NULL)
13978 {
13979 as_bad_where (fixp->fx_file, fixp->fx_line,
d0b47220 13980 _("cannot represent relocation type %s"),
252b5132
RH
13981 bfd_get_reloc_code_name (code));
13982 /* Set howto to a garbage value so that we can keep going. */
13983 rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
9c2799c2 13984 gas_assert (rel->howto != NULL);
252b5132
RH
13985 }
13986
13987 return rel;
13988}
13989
ee86248c 13990#include "tc-i386-intel.c"
54cfded0 13991
a60de03c
JB
13992void
13993tc_x86_parse_to_dw2regnum (expressionS *exp)
54cfded0 13994{
a60de03c
JB
13995 int saved_naked_reg;
13996 char saved_register_dot;
54cfded0 13997
a60de03c
JB
13998 saved_naked_reg = allow_naked_reg;
13999 allow_naked_reg = 1;
14000 saved_register_dot = register_chars['.'];
14001 register_chars['.'] = '.';
14002 allow_pseudo_reg = 1;
14003 expression_and_evaluate (exp);
14004 allow_pseudo_reg = 0;
14005 register_chars['.'] = saved_register_dot;
14006 allow_naked_reg = saved_naked_reg;
14007
e96d56a1 14008 if (exp->X_op == O_register && exp->X_add_number >= 0)
54cfded0 14009 {
a60de03c
JB
14010 if ((addressT) exp->X_add_number < i386_regtab_size)
14011 {
14012 exp->X_op = O_constant;
14013 exp->X_add_number = i386_regtab[exp->X_add_number]
14014 .dw2_regnum[flag_code >> 1];
14015 }
14016 else
14017 exp->X_op = O_illegal;
54cfded0 14018 }
54cfded0
AM
14019}
14020
14021void
14022tc_x86_frame_initial_instructions (void)
14023{
a60de03c
JB
14024 static unsigned int sp_regno[2];
14025
14026 if (!sp_regno[flag_code >> 1])
14027 {
14028 char *saved_input = input_line_pointer;
14029 char sp[][4] = {"esp", "rsp"};
14030 expressionS exp;
a4447b93 14031
a60de03c
JB
14032 input_line_pointer = sp[flag_code >> 1];
14033 tc_x86_parse_to_dw2regnum (&exp);
9c2799c2 14034 gas_assert (exp.X_op == O_constant);
a60de03c
JB
14035 sp_regno[flag_code >> 1] = exp.X_add_number;
14036 input_line_pointer = saved_input;
14037 }
a4447b93 14038
61ff971f
L
14039 cfi_add_CFA_def_cfa (sp_regno[flag_code >> 1], -x86_cie_data_alignment);
14040 cfi_add_CFA_offset (x86_dwarf2_return_column, x86_cie_data_alignment);
54cfded0 14041}
d2b2c203 14042
d7921315
L
14043int
14044x86_dwarf2_addr_size (void)
14045{
14046#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
14047 if (x86_elf_abi == X86_64_X32_ABI)
14048 return 4;
14049#endif
14050 return bfd_arch_bits_per_address (stdoutput) / 8;
14051}
14052
d2b2c203
DJ
14053int
14054i386_elf_section_type (const char *str, size_t len)
14055{
14056 if (flag_code == CODE_64BIT
14057 && len == sizeof ("unwind") - 1
14058 && strncmp (str, "unwind", 6) == 0)
14059 return SHT_X86_64_UNWIND;
14060
14061 return -1;
14062}
bb41ade5 14063
ad5fec3b
EB
14064#ifdef TE_SOLARIS
14065void
14066i386_solaris_fix_up_eh_frame (segT sec)
14067{
14068 if (flag_code == CODE_64BIT)
14069 elf_section_type (sec) = SHT_X86_64_UNWIND;
14070}
14071#endif
14072
bb41ade5
AM
14073#ifdef TE_PE
14074void
14075tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
14076{
91d6fa6a 14077 expressionS exp;
bb41ade5 14078
91d6fa6a
NC
14079 exp.X_op = O_secrel;
14080 exp.X_add_symbol = symbol;
14081 exp.X_add_number = 0;
14082 emit_expr (&exp, size);
bb41ade5
AM
14083}
14084#endif
3b22753a
L
14085
14086#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
14087/* For ELF on x86-64, add support for SHF_X86_64_LARGE. */
14088
01e1a5bc 14089bfd_vma
6d4af3c2 14090x86_64_section_letter (int letter, const char **ptr_msg)
3b22753a
L
14091{
14092 if (flag_code == CODE_64BIT)
14093 {
14094 if (letter == 'l')
14095 return SHF_X86_64_LARGE;
14096
8f3bae45 14097 *ptr_msg = _("bad .section directive: want a,l,w,x,M,S,G,T in string");
64e74474 14098 }
3b22753a 14099 else
8f3bae45 14100 *ptr_msg = _("bad .section directive: want a,w,x,M,S,G,T in string");
3b22753a
L
14101 return -1;
14102}
14103
01e1a5bc 14104bfd_vma
3b22753a
L
14105x86_64_section_word (char *str, size_t len)
14106{
8620418b 14107 if (len == 5 && flag_code == CODE_64BIT && CONST_STRNEQ (str, "large"))
3b22753a
L
14108 return SHF_X86_64_LARGE;
14109
14110 return -1;
14111}
14112
14113static void
14114handle_large_common (int small ATTRIBUTE_UNUSED)
14115{
14116 if (flag_code != CODE_64BIT)
14117 {
14118 s_comm_internal (0, elf_common_parse);
14119 as_warn (_(".largecomm supported only in 64bit mode, producing .comm"));
14120 }
14121 else
14122 {
14123 static segT lbss_section;
14124 asection *saved_com_section_ptr = elf_com_section_ptr;
14125 asection *saved_bss_section = bss_section;
14126
14127 if (lbss_section == NULL)
14128 {
14129 flagword applicable;
14130 segT seg = now_seg;
14131 subsegT subseg = now_subseg;
14132
14133 /* The .lbss section is for local .largecomm symbols. */
14134 lbss_section = subseg_new (".lbss", 0);
14135 applicable = bfd_applicable_section_flags (stdoutput);
fd361982 14136 bfd_set_section_flags (lbss_section, applicable & SEC_ALLOC);
3b22753a
L
14137 seg_info (lbss_section)->bss = 1;
14138
14139 subseg_set (seg, subseg);
14140 }
14141
14142 elf_com_section_ptr = &_bfd_elf_large_com_section;
14143 bss_section = lbss_section;
14144
14145 s_comm_internal (0, elf_common_parse);
14146
14147 elf_com_section_ptr = saved_com_section_ptr;
14148 bss_section = saved_bss_section;
14149 }
14150}
14151#endif /* OBJ_ELF || OBJ_MAYBE_ELF */