Add support for intel SERIALIZE instruction
[deliverable/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
43234a1e
L
213/* This struct describes rounding control and SAE in the instruction. */
214struct RC_Operation
215{
216 enum rc_type
217 {
218 rne = 0,
219 rd,
220 ru,
221 rz,
222 saeonly
223 } type;
224 int operand;
225};
226
227static struct RC_Operation rc_op;
228
229/* The struct describes masking, applied to OPERAND in the instruction.
230 MASK is a pointer to the corresponding mask register. ZEROING tells
231 whether merging or zeroing mask is used. */
232struct Mask_Operation
233{
234 const reg_entry *mask;
235 unsigned int zeroing;
236 /* The operand where this operation is associated. */
237 int operand;
238};
239
240static struct Mask_Operation mask_op;
241
242/* The struct describes broadcasting, applied to OPERAND. FACTOR is
243 broadcast factor. */
244struct Broadcast_Operation
245{
8e6e0792 246 /* Type of broadcast: {1to2}, {1to4}, {1to8}, or {1to16}. */
43234a1e
L
247 int type;
248
249 /* Index of broadcasted operand. */
250 int operand;
4a1b91ea
L
251
252 /* Number of bytes to broadcast. */
253 int bytes;
43234a1e
L
254};
255
256static struct Broadcast_Operation broadcast_op;
257
c0f3af97
L
258/* VEX prefix. */
259typedef struct
260{
43234a1e
L
261 /* VEX prefix is either 2 byte or 3 byte. EVEX is 4 byte. */
262 unsigned char bytes[4];
c0f3af97
L
263 unsigned int length;
264 /* Destination or source register specifier. */
265 const reg_entry *register_specifier;
266} vex_prefix;
267
252b5132 268/* 'md_assemble ()' gathers together information and puts it into a
47926f60 269 i386_insn. */
252b5132 270
520dc8e8
AM
271union i386_op
272 {
273 expressionS *disps;
274 expressionS *imms;
275 const reg_entry *regs;
276 };
277
a65babc9
L
278enum i386_error
279 {
86e026a4 280 operand_size_mismatch,
a65babc9
L
281 operand_type_mismatch,
282 register_type_mismatch,
283 number_of_operands_mismatch,
284 invalid_instruction_suffix,
285 bad_imm4,
a65babc9
L
286 unsupported_with_intel_mnemonic,
287 unsupported_syntax,
6c30d220
L
288 unsupported,
289 invalid_vsib_address,
7bab8ab5 290 invalid_vector_register_set,
43234a1e
L
291 unsupported_vector_index_register,
292 unsupported_broadcast,
43234a1e
L
293 broadcast_needed,
294 unsupported_masking,
295 mask_not_on_destination,
296 no_default_mask,
297 unsupported_rc_sae,
298 rc_sae_operand_not_last_imm,
299 invalid_register_operand,
a65babc9
L
300 };
301
252b5132
RH
302struct _i386_insn
303 {
47926f60 304 /* TM holds the template for the insn were currently assembling. */
d3ce72d0 305 insn_template tm;
252b5132 306
7d5e4556
L
307 /* SUFFIX holds the instruction size suffix for byte, word, dword
308 or qword, if given. */
252b5132
RH
309 char suffix;
310
47926f60 311 /* OPERANDS gives the number of given operands. */
252b5132
RH
312 unsigned int operands;
313
314 /* REG_OPERANDS, DISP_OPERANDS, MEM_OPERANDS, IMM_OPERANDS give the number
315 of given register, displacement, memory operands and immediate
47926f60 316 operands. */
252b5132
RH
317 unsigned int reg_operands, disp_operands, mem_operands, imm_operands;
318
319 /* TYPES [i] is the type (see above #defines) which tells us how to
520dc8e8 320 use OP[i] for the corresponding operand. */
40fb9820 321 i386_operand_type types[MAX_OPERANDS];
252b5132 322
520dc8e8
AM
323 /* Displacement expression, immediate expression, or register for each
324 operand. */
325 union i386_op op[MAX_OPERANDS];
252b5132 326
3e73aa7c
JH
327 /* Flags for operands. */
328 unsigned int flags[MAX_OPERANDS];
329#define Operand_PCrel 1
c48dadc9 330#define Operand_Mem 2
3e73aa7c 331
252b5132 332 /* Relocation type for operand */
f86103b7 333 enum bfd_reloc_code_real reloc[MAX_OPERANDS];
252b5132 334
252b5132
RH
335 /* BASE_REG, INDEX_REG, and LOG2_SCALE_FACTOR are used to encode
336 the base index byte below. */
337 const reg_entry *base_reg;
338 const reg_entry *index_reg;
339 unsigned int log2_scale_factor;
340
341 /* SEG gives the seg_entries of this insn. They are zero unless
47926f60 342 explicit segment overrides are given. */
ce8a8b2f 343 const seg_entry *seg[2];
252b5132 344
8325cc63
JB
345 /* Copied first memory operand string, for re-checking. */
346 char *memop1_string;
347
252b5132
RH
348 /* PREFIX holds all the given prefix opcodes (usually null).
349 PREFIXES is the number of prefix opcodes. */
350 unsigned int prefixes;
351 unsigned char prefix[MAX_PREFIXES];
352
50128d0c
JB
353 /* Register is in low 3 bits of opcode. */
354 bfd_boolean short_form;
355
6f2f06be
JB
356 /* The operand to a branch insn indicates an absolute branch. */
357 bfd_boolean jumpabsolute;
358
b4a3a7b4
L
359 /* Has MMX register operands. */
360 bfd_boolean has_regmmx;
361
362 /* Has XMM register operands. */
363 bfd_boolean has_regxmm;
364
365 /* Has YMM register operands. */
366 bfd_boolean has_regymm;
367
368 /* Has ZMM register operands. */
369 bfd_boolean has_regzmm;
370
e379e5f3
L
371 /* Has GOTPC or TLS relocation. */
372 bfd_boolean has_gotpc_tls_reloc;
373
252b5132 374 /* RM and SIB are the modrm byte and the sib byte where the
c1e679ec 375 addressing modes of this insn are encoded. */
252b5132 376 modrm_byte rm;
3e73aa7c 377 rex_byte rex;
43234a1e 378 rex_byte vrex;
252b5132 379 sib_byte sib;
c0f3af97 380 vex_prefix vex;
b6169b20 381
43234a1e
L
382 /* Masking attributes. */
383 struct Mask_Operation *mask;
384
385 /* Rounding control and SAE attributes. */
386 struct RC_Operation *rounding;
387
388 /* Broadcasting attributes. */
389 struct Broadcast_Operation *broadcast;
390
391 /* Compressed disp8*N attribute. */
392 unsigned int memshift;
393
86fa6981
L
394 /* Prefer load or store in encoding. */
395 enum
396 {
397 dir_encoding_default = 0,
398 dir_encoding_load,
64c49ab3
JB
399 dir_encoding_store,
400 dir_encoding_swap
86fa6981 401 } dir_encoding;
891edac4 402
a501d77e
L
403 /* Prefer 8bit or 32bit displacement in encoding. */
404 enum
405 {
406 disp_encoding_default = 0,
407 disp_encoding_8bit,
408 disp_encoding_32bit
409 } disp_encoding;
f8a5c266 410
6b6b6807
L
411 /* Prefer the REX byte in encoding. */
412 bfd_boolean rex_encoding;
413
b6f8c7c4
L
414 /* Disable instruction size optimization. */
415 bfd_boolean no_optimize;
416
86fa6981
L
417 /* How to encode vector instructions. */
418 enum
419 {
420 vex_encoding_default = 0,
42e04b36 421 vex_encoding_vex,
86fa6981
L
422 vex_encoding_vex3,
423 vex_encoding_evex
424 } vec_encoding;
425
d5de92cf
L
426 /* REP prefix. */
427 const char *rep_prefix;
428
165de32a
L
429 /* HLE prefix. */
430 const char *hle_prefix;
42164a71 431
7e8b059b
L
432 /* Have BND prefix. */
433 const char *bnd_prefix;
434
04ef582a
L
435 /* Have NOTRACK prefix. */
436 const char *notrack_prefix;
437
891edac4 438 /* Error message. */
a65babc9 439 enum i386_error error;
252b5132
RH
440 };
441
442typedef struct _i386_insn i386_insn;
443
43234a1e
L
444/* Link RC type with corresponding string, that'll be looked for in
445 asm. */
446struct RC_name
447{
448 enum rc_type type;
449 const char *name;
450 unsigned int len;
451};
452
453static const struct RC_name RC_NamesTable[] =
454{
455 { rne, STRING_COMMA_LEN ("rn-sae") },
456 { rd, STRING_COMMA_LEN ("rd-sae") },
457 { ru, STRING_COMMA_LEN ("ru-sae") },
458 { rz, STRING_COMMA_LEN ("rz-sae") },
459 { saeonly, STRING_COMMA_LEN ("sae") },
460};
461
252b5132
RH
462/* List of chars besides those in app.c:symbol_chars that can start an
463 operand. Used to prevent the scrubber eating vital white-space. */
86fa6981 464const char extra_symbol_chars[] = "*%-([{}"
252b5132 465#ifdef LEX_AT
32137342
NC
466 "@"
467#endif
468#ifdef LEX_QM
469 "?"
252b5132 470#endif
32137342 471 ;
252b5132 472
29b0f896
AM
473#if (defined (TE_I386AIX) \
474 || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) \
3896cfd5 475 && !defined (TE_GNU) \
29b0f896 476 && !defined (TE_LINUX) \
8d63c93e 477 && !defined (TE_NACL) \
29b0f896 478 && !defined (TE_FreeBSD) \
5b806d27 479 && !defined (TE_DragonFly) \
29b0f896 480 && !defined (TE_NetBSD)))
252b5132 481/* This array holds the chars that always start a comment. If the
b3b91714
AM
482 pre-processor is disabled, these aren't very useful. The option
483 --divide will remove '/' from this list. */
484const char *i386_comment_chars = "#/";
485#define SVR4_COMMENT_CHARS 1
252b5132 486#define PREFIX_SEPARATOR '\\'
252b5132 487
b3b91714
AM
488#else
489const char *i386_comment_chars = "#";
490#define PREFIX_SEPARATOR '/'
491#endif
492
252b5132
RH
493/* This array holds the chars that only start a comment at the beginning of
494 a line. If the line seems to have the form '# 123 filename'
ce8a8b2f
AM
495 .line and .file directives will appear in the pre-processed output.
496 Note that input_file.c hand checks for '#' at the beginning of the
252b5132 497 first line of the input file. This is because the compiler outputs
ce8a8b2f
AM
498 #NO_APP at the beginning of its output.
499 Also note that comments started like this one will always work if
252b5132 500 '/' isn't otherwise defined. */
b3b91714 501const char line_comment_chars[] = "#/";
252b5132 502
63a0b638 503const char line_separator_chars[] = ";";
252b5132 504
ce8a8b2f
AM
505/* Chars that can be used to separate mant from exp in floating point
506 nums. */
252b5132
RH
507const char EXP_CHARS[] = "eE";
508
ce8a8b2f
AM
509/* Chars that mean this number is a floating point constant
510 As in 0f12.456
511 or 0d1.2345e12. */
252b5132
RH
512const char FLT_CHARS[] = "fFdDxX";
513
ce8a8b2f 514/* Tables for lexical analysis. */
252b5132
RH
515static char mnemonic_chars[256];
516static char register_chars[256];
517static char operand_chars[256];
518static char identifier_chars[256];
519static char digit_chars[256];
520
ce8a8b2f 521/* Lexical macros. */
252b5132
RH
522#define is_mnemonic_char(x) (mnemonic_chars[(unsigned char) x])
523#define is_operand_char(x) (operand_chars[(unsigned char) x])
524#define is_register_char(x) (register_chars[(unsigned char) x])
525#define is_space_char(x) ((x) == ' ')
526#define is_identifier_char(x) (identifier_chars[(unsigned char) x])
527#define is_digit_char(x) (digit_chars[(unsigned char) x])
528
0234cb7c 529/* All non-digit non-letter characters that may occur in an operand. */
252b5132
RH
530static char operand_special_chars[] = "%$-+(,)*._~/<>|&^!:[@]";
531
532/* md_assemble() always leaves the strings it's passed unaltered. To
533 effect this we maintain a stack of saved characters that we've smashed
534 with '\0's (indicating end of strings for various sub-fields of the
47926f60 535 assembler instruction). */
252b5132 536static char save_stack[32];
ce8a8b2f 537static char *save_stack_p;
252b5132
RH
538#define END_STRING_AND_SAVE(s) \
539 do { *save_stack_p++ = *(s); *(s) = '\0'; } while (0)
540#define RESTORE_END_STRING(s) \
541 do { *(s) = *--save_stack_p; } while (0)
542
47926f60 543/* The instruction we're assembling. */
252b5132
RH
544static i386_insn i;
545
546/* Possible templates for current insn. */
547static const templates *current_templates;
548
31b2323c
L
549/* Per instruction expressionS buffers: max displacements & immediates. */
550static expressionS disp_expressions[MAX_MEMORY_OPERANDS];
551static expressionS im_expressions[MAX_IMMEDIATE_OPERANDS];
252b5132 552
47926f60 553/* Current operand we are working on. */
ee86248c 554static int this_operand = -1;
252b5132 555
3e73aa7c
JH
556/* We support four different modes. FLAG_CODE variable is used to distinguish
557 these. */
558
559enum flag_code {
560 CODE_32BIT,
561 CODE_16BIT,
562 CODE_64BIT };
563
564static enum flag_code flag_code;
4fa24527 565static unsigned int object_64bit;
862be3fb 566static unsigned int disallow_64bit_reloc;
3e73aa7c 567static int use_rela_relocations = 0;
e379e5f3
L
568/* __tls_get_addr/___tls_get_addr symbol for TLS. */
569static const char *tls_get_addr;
3e73aa7c 570
7af8ed2d
NC
571#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
572 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
573 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
574
351f65ca
L
575/* The ELF ABI to use. */
576enum x86_elf_abi
577{
578 I386_ABI,
7f56bc95
L
579 X86_64_ABI,
580 X86_64_X32_ABI
351f65ca
L
581};
582
583static enum x86_elf_abi x86_elf_abi = I386_ABI;
7af8ed2d 584#endif
351f65ca 585
167ad85b
TG
586#if defined (TE_PE) || defined (TE_PEP)
587/* Use big object file format. */
588static int use_big_obj = 0;
589#endif
590
8dcea932
L
591#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
592/* 1 if generating code for a shared library. */
593static int shared = 0;
594#endif
595
47926f60
KH
596/* 1 for intel syntax,
597 0 if att syntax. */
598static int intel_syntax = 0;
252b5132 599
4b5aaf5f
L
600static enum x86_64_isa
601{
602 amd64 = 1, /* AMD64 ISA. */
603 intel64 /* Intel64 ISA. */
604} isa64;
e89c5eaa 605
1efbbeb4
L
606/* 1 for intel mnemonic,
607 0 if att mnemonic. */
608static int intel_mnemonic = !SYSV386_COMPAT;
609
a60de03c
JB
610/* 1 if pseudo registers are permitted. */
611static int allow_pseudo_reg = 0;
612
47926f60
KH
613/* 1 if register prefix % not required. */
614static int allow_naked_reg = 0;
252b5132 615
33eaf5de 616/* 1 if the assembler should add BND prefix for all control-transferring
7e8b059b
L
617 instructions supporting it, even if this prefix wasn't specified
618 explicitly. */
619static int add_bnd_prefix = 0;
620
ba104c83 621/* 1 if pseudo index register, eiz/riz, is allowed . */
db51cc60
L
622static int allow_index_reg = 0;
623
d022bddd
IT
624/* 1 if the assembler should ignore LOCK prefix, even if it was
625 specified explicitly. */
626static int omit_lock_prefix = 0;
627
e4e00185
AS
628/* 1 if the assembler should encode lfence, mfence, and sfence as
629 "lock addl $0, (%{re}sp)". */
630static int avoid_fence = 0;
631
ae531041
L
632/* 1 if lfence should be inserted after every load. */
633static int lfence_after_load = 0;
634
635/* Non-zero if lfence should be inserted before indirect branch. */
636static enum lfence_before_indirect_branch_kind
637 {
638 lfence_branch_none = 0,
639 lfence_branch_register,
640 lfence_branch_memory,
641 lfence_branch_all
642 }
643lfence_before_indirect_branch;
644
645/* Non-zero if lfence should be inserted before ret. */
646static enum lfence_before_ret_kind
647 {
648 lfence_before_ret_none = 0,
649 lfence_before_ret_not,
650 lfence_before_ret_or
651 }
652lfence_before_ret;
653
654/* Types of previous instruction is .byte or prefix. */
e379e5f3
L
655static struct
656 {
657 segT seg;
658 const char *file;
659 const char *name;
660 unsigned int line;
661 enum last_insn_kind
662 {
663 last_insn_other = 0,
664 last_insn_directive,
665 last_insn_prefix
666 } kind;
667 } last_insn;
668
0cb4071e
L
669/* 1 if the assembler should generate relax relocations. */
670
671static int generate_relax_relocations
672 = DEFAULT_GENERATE_X86_RELAX_RELOCATIONS;
673
7bab8ab5 674static enum check_kind
daf50ae7 675 {
7bab8ab5
JB
676 check_none = 0,
677 check_warning,
678 check_error
daf50ae7 679 }
7bab8ab5 680sse_check, operand_check = check_warning;
daf50ae7 681
e379e5f3
L
682/* Non-zero if branches should be aligned within power of 2 boundary. */
683static int align_branch_power = 0;
684
685/* Types of branches to align. */
686enum align_branch_kind
687 {
688 align_branch_none = 0,
689 align_branch_jcc = 1,
690 align_branch_fused = 2,
691 align_branch_jmp = 3,
692 align_branch_call = 4,
693 align_branch_indirect = 5,
694 align_branch_ret = 6
695 };
696
697/* Type bits of branches to align. */
698enum align_branch_bit
699 {
700 align_branch_jcc_bit = 1 << align_branch_jcc,
701 align_branch_fused_bit = 1 << align_branch_fused,
702 align_branch_jmp_bit = 1 << align_branch_jmp,
703 align_branch_call_bit = 1 << align_branch_call,
704 align_branch_indirect_bit = 1 << align_branch_indirect,
705 align_branch_ret_bit = 1 << align_branch_ret
706 };
707
708static unsigned int align_branch = (align_branch_jcc_bit
709 | align_branch_fused_bit
710 | align_branch_jmp_bit);
711
79d72f45
HL
712/* Types of condition jump used by macro-fusion. */
713enum mf_jcc_kind
714 {
715 mf_jcc_jo = 0, /* base opcode 0x70 */
716 mf_jcc_jc, /* base opcode 0x72 */
717 mf_jcc_je, /* base opcode 0x74 */
718 mf_jcc_jna, /* base opcode 0x76 */
719 mf_jcc_js, /* base opcode 0x78 */
720 mf_jcc_jp, /* base opcode 0x7a */
721 mf_jcc_jl, /* base opcode 0x7c */
722 mf_jcc_jle, /* base opcode 0x7e */
723 };
724
725/* Types of compare flag-modifying insntructions used by macro-fusion. */
726enum mf_cmp_kind
727 {
728 mf_cmp_test_and, /* test/cmp */
729 mf_cmp_alu_cmp, /* add/sub/cmp */
730 mf_cmp_incdec /* inc/dec */
731 };
732
e379e5f3
L
733/* The maximum padding size for fused jcc. CMP like instruction can
734 be 9 bytes and jcc can be 6 bytes. Leave room just in case for
735 prefixes. */
736#define MAX_FUSED_JCC_PADDING_SIZE 20
737
738/* The maximum number of prefixes added for an instruction. */
739static unsigned int align_branch_prefix_size = 5;
740
b6f8c7c4
L
741/* Optimization:
742 1. Clear the REX_W bit with register operand if possible.
743 2. Above plus use 128bit vector instruction to clear the full vector
744 register.
745 */
746static int optimize = 0;
747
748/* Optimization:
749 1. Clear the REX_W bit with register operand if possible.
750 2. Above plus use 128bit vector instruction to clear the full vector
751 register.
752 3. Above plus optimize "test{q,l,w} $imm8,%r{64,32,16}" to
753 "testb $imm7,%r8".
754 */
755static int optimize_for_space = 0;
756
2ca3ace5
L
757/* Register prefix used for error message. */
758static const char *register_prefix = "%";
759
47926f60
KH
760/* Used in 16 bit gcc mode to add an l suffix to call, ret, enter,
761 leave, push, and pop instructions so that gcc has the same stack
762 frame as in 32 bit mode. */
763static char stackop_size = '\0';
eecb386c 764
12b55ccc
L
765/* Non-zero to optimize code alignment. */
766int optimize_align_code = 1;
767
47926f60
KH
768/* Non-zero to quieten some warnings. */
769static int quiet_warnings = 0;
a38cf1db 770
47926f60
KH
771/* CPU name. */
772static const char *cpu_arch_name = NULL;
6305a203 773static char *cpu_sub_arch_name = NULL;
a38cf1db 774
47926f60 775/* CPU feature flags. */
40fb9820
L
776static i386_cpu_flags cpu_arch_flags = CPU_UNKNOWN_FLAGS;
777
ccc9c027
L
778/* If we have selected a cpu we are generating instructions for. */
779static int cpu_arch_tune_set = 0;
780
9103f4f4 781/* Cpu we are generating instructions for. */
fbf3f584 782enum processor_type cpu_arch_tune = PROCESSOR_UNKNOWN;
9103f4f4
L
783
784/* CPU feature flags of cpu we are generating instructions for. */
40fb9820 785static i386_cpu_flags cpu_arch_tune_flags;
9103f4f4 786
ccc9c027 787/* CPU instruction set architecture used. */
fbf3f584 788enum processor_type cpu_arch_isa = PROCESSOR_UNKNOWN;
ccc9c027 789
9103f4f4 790/* CPU feature flags of instruction set architecture used. */
fbf3f584 791i386_cpu_flags cpu_arch_isa_flags;
9103f4f4 792
fddf5b5b
AM
793/* If set, conditional jumps are not automatically promoted to handle
794 larger than a byte offset. */
795static unsigned int no_cond_jump_promotion = 0;
796
c0f3af97
L
797/* Encode SSE instructions with VEX prefix. */
798static unsigned int sse2avx;
799
539f890d
L
800/* Encode scalar AVX instructions with specific vector length. */
801static enum
802 {
803 vex128 = 0,
804 vex256
805 } avxscalar;
806
03751133
L
807/* Encode VEX WIG instructions with specific vex.w. */
808static enum
809 {
810 vexw0 = 0,
811 vexw1
812 } vexwig;
813
43234a1e
L
814/* Encode scalar EVEX LIG instructions with specific vector length. */
815static enum
816 {
817 evexl128 = 0,
818 evexl256,
819 evexl512
820 } evexlig;
821
822/* Encode EVEX WIG instructions with specific evex.w. */
823static enum
824 {
825 evexw0 = 0,
826 evexw1
827 } evexwig;
828
d3d3c6db
IT
829/* Value to encode in EVEX RC bits, for SAE-only instructions. */
830static enum rc_type evexrcig = rne;
831
29b0f896 832/* Pre-defined "_GLOBAL_OFFSET_TABLE_". */
87c245cc 833static symbolS *GOT_symbol;
29b0f896 834
a4447b93
RH
835/* The dwarf2 return column, adjusted for 32 or 64 bit. */
836unsigned int x86_dwarf2_return_column;
837
838/* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
839int x86_cie_data_alignment;
840
252b5132 841/* Interface to relax_segment.
fddf5b5b
AM
842 There are 3 major relax states for 386 jump insns because the
843 different types of jumps add different sizes to frags when we're
e379e5f3
L
844 figuring out what sort of jump to choose to reach a given label.
845
846 BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING are used to align
847 branches which are handled by md_estimate_size_before_relax() and
848 i386_generic_table_relax_frag(). */
252b5132 849
47926f60 850/* Types. */
93c2a809
AM
851#define UNCOND_JUMP 0
852#define COND_JUMP 1
853#define COND_JUMP86 2
e379e5f3
L
854#define BRANCH_PADDING 3
855#define BRANCH_PREFIX 4
856#define FUSED_JCC_PADDING 5
fddf5b5b 857
47926f60 858/* Sizes. */
252b5132
RH
859#define CODE16 1
860#define SMALL 0
29b0f896 861#define SMALL16 (SMALL | CODE16)
252b5132 862#define BIG 2
29b0f896 863#define BIG16 (BIG | CODE16)
252b5132
RH
864
865#ifndef INLINE
866#ifdef __GNUC__
867#define INLINE __inline__
868#else
869#define INLINE
870#endif
871#endif
872
fddf5b5b
AM
873#define ENCODE_RELAX_STATE(type, size) \
874 ((relax_substateT) (((type) << 2) | (size)))
875#define TYPE_FROM_RELAX_STATE(s) \
876 ((s) >> 2)
877#define DISP_SIZE_FROM_RELAX_STATE(s) \
878 ((((s) & 3) == BIG ? 4 : (((s) & 3) == BIG16 ? 2 : 1)))
252b5132
RH
879
880/* This table is used by relax_frag to promote short jumps to long
881 ones where necessary. SMALL (short) jumps may be promoted to BIG
882 (32 bit long) ones, and SMALL16 jumps to BIG16 (16 bit long). We
883 don't allow a short jump in a 32 bit code segment to be promoted to
884 a 16 bit offset jump because it's slower (requires data size
885 prefix), and doesn't work, unless the destination is in the bottom
886 64k of the code segment (The top 16 bits of eip are zeroed). */
887
888const relax_typeS md_relax_table[] =
889{
24eab124
AM
890 /* The fields are:
891 1) most positive reach of this state,
892 2) most negative reach of this state,
93c2a809 893 3) how many bytes this mode will have in the variable part of the frag
ce8a8b2f 894 4) which index into the table to try if we can't fit into this one. */
252b5132 895
fddf5b5b 896 /* UNCOND_JUMP states. */
93c2a809
AM
897 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG)},
898 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16)},
899 /* dword jmp adds 4 bytes to frag:
900 0 extra opcode bytes, 4 displacement bytes. */
252b5132 901 {0, 0, 4, 0},
93c2a809
AM
902 /* word jmp adds 2 byte2 to frag:
903 0 extra opcode bytes, 2 displacement bytes. */
252b5132
RH
904 {0, 0, 2, 0},
905
93c2a809
AM
906 /* COND_JUMP states. */
907 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG)},
908 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG16)},
909 /* dword conditionals adds 5 bytes to frag:
910 1 extra opcode byte, 4 displacement bytes. */
911 {0, 0, 5, 0},
fddf5b5b 912 /* word conditionals add 3 bytes to frag:
93c2a809
AM
913 1 extra opcode byte, 2 displacement bytes. */
914 {0, 0, 3, 0},
915
916 /* COND_JUMP86 states. */
917 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG)},
918 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG16)},
919 /* dword conditionals adds 5 bytes to frag:
920 1 extra opcode byte, 4 displacement bytes. */
921 {0, 0, 5, 0},
922 /* word conditionals add 4 bytes to frag:
923 1 displacement byte and a 3 byte long branch insn. */
924 {0, 0, 4, 0}
252b5132
RH
925};
926
9103f4f4
L
927static const arch_entry cpu_arch[] =
928{
89507696
JB
929 /* Do not replace the first two entries - i386_target_format()
930 relies on them being there in this order. */
8a2c8fef 931 { STRING_COMMA_LEN ("generic32"), PROCESSOR_GENERIC32,
293f5f65 932 CPU_GENERIC32_FLAGS, 0 },
8a2c8fef 933 { STRING_COMMA_LEN ("generic64"), PROCESSOR_GENERIC64,
293f5f65 934 CPU_GENERIC64_FLAGS, 0 },
8a2c8fef 935 { STRING_COMMA_LEN ("i8086"), PROCESSOR_UNKNOWN,
293f5f65 936 CPU_NONE_FLAGS, 0 },
8a2c8fef 937 { STRING_COMMA_LEN ("i186"), PROCESSOR_UNKNOWN,
293f5f65 938 CPU_I186_FLAGS, 0 },
8a2c8fef 939 { STRING_COMMA_LEN ("i286"), PROCESSOR_UNKNOWN,
293f5f65 940 CPU_I286_FLAGS, 0 },
8a2c8fef 941 { STRING_COMMA_LEN ("i386"), PROCESSOR_I386,
293f5f65 942 CPU_I386_FLAGS, 0 },
8a2c8fef 943 { STRING_COMMA_LEN ("i486"), PROCESSOR_I486,
293f5f65 944 CPU_I486_FLAGS, 0 },
8a2c8fef 945 { STRING_COMMA_LEN ("i586"), PROCESSOR_PENTIUM,
293f5f65 946 CPU_I586_FLAGS, 0 },
8a2c8fef 947 { STRING_COMMA_LEN ("i686"), PROCESSOR_PENTIUMPRO,
293f5f65 948 CPU_I686_FLAGS, 0 },
8a2c8fef 949 { STRING_COMMA_LEN ("pentium"), PROCESSOR_PENTIUM,
293f5f65 950 CPU_I586_FLAGS, 0 },
8a2c8fef 951 { STRING_COMMA_LEN ("pentiumpro"), PROCESSOR_PENTIUMPRO,
293f5f65 952 CPU_PENTIUMPRO_FLAGS, 0 },
8a2c8fef 953 { STRING_COMMA_LEN ("pentiumii"), PROCESSOR_PENTIUMPRO,
293f5f65 954 CPU_P2_FLAGS, 0 },
8a2c8fef 955 { STRING_COMMA_LEN ("pentiumiii"),PROCESSOR_PENTIUMPRO,
293f5f65 956 CPU_P3_FLAGS, 0 },
8a2c8fef 957 { STRING_COMMA_LEN ("pentium4"), PROCESSOR_PENTIUM4,
293f5f65 958 CPU_P4_FLAGS, 0 },
8a2c8fef 959 { STRING_COMMA_LEN ("prescott"), PROCESSOR_NOCONA,
293f5f65 960 CPU_CORE_FLAGS, 0 },
8a2c8fef 961 { STRING_COMMA_LEN ("nocona"), PROCESSOR_NOCONA,
293f5f65 962 CPU_NOCONA_FLAGS, 0 },
8a2c8fef 963 { STRING_COMMA_LEN ("yonah"), PROCESSOR_CORE,
293f5f65 964 CPU_CORE_FLAGS, 1 },
8a2c8fef 965 { STRING_COMMA_LEN ("core"), PROCESSOR_CORE,
293f5f65 966 CPU_CORE_FLAGS, 0 },
8a2c8fef 967 { STRING_COMMA_LEN ("merom"), PROCESSOR_CORE2,
293f5f65 968 CPU_CORE2_FLAGS, 1 },
8a2c8fef 969 { STRING_COMMA_LEN ("core2"), PROCESSOR_CORE2,
293f5f65 970 CPU_CORE2_FLAGS, 0 },
8a2c8fef 971 { STRING_COMMA_LEN ("corei7"), PROCESSOR_COREI7,
293f5f65 972 CPU_COREI7_FLAGS, 0 },
8a2c8fef 973 { STRING_COMMA_LEN ("l1om"), PROCESSOR_L1OM,
293f5f65 974 CPU_L1OM_FLAGS, 0 },
7a9068fe 975 { STRING_COMMA_LEN ("k1om"), PROCESSOR_K1OM,
293f5f65 976 CPU_K1OM_FLAGS, 0 },
81486035 977 { STRING_COMMA_LEN ("iamcu"), PROCESSOR_IAMCU,
293f5f65 978 CPU_IAMCU_FLAGS, 0 },
8a2c8fef 979 { STRING_COMMA_LEN ("k6"), PROCESSOR_K6,
293f5f65 980 CPU_K6_FLAGS, 0 },
8a2c8fef 981 { STRING_COMMA_LEN ("k6_2"), PROCESSOR_K6,
293f5f65 982 CPU_K6_2_FLAGS, 0 },
8a2c8fef 983 { STRING_COMMA_LEN ("athlon"), PROCESSOR_ATHLON,
293f5f65 984 CPU_ATHLON_FLAGS, 0 },
8a2c8fef 985 { STRING_COMMA_LEN ("sledgehammer"), PROCESSOR_K8,
293f5f65 986 CPU_K8_FLAGS, 1 },
8a2c8fef 987 { STRING_COMMA_LEN ("opteron"), PROCESSOR_K8,
293f5f65 988 CPU_K8_FLAGS, 0 },
8a2c8fef 989 { STRING_COMMA_LEN ("k8"), PROCESSOR_K8,
293f5f65 990 CPU_K8_FLAGS, 0 },
8a2c8fef 991 { STRING_COMMA_LEN ("amdfam10"), PROCESSOR_AMDFAM10,
293f5f65 992 CPU_AMDFAM10_FLAGS, 0 },
8aedb9fe 993 { STRING_COMMA_LEN ("bdver1"), PROCESSOR_BD,
293f5f65 994 CPU_BDVER1_FLAGS, 0 },
8aedb9fe 995 { STRING_COMMA_LEN ("bdver2"), PROCESSOR_BD,
293f5f65 996 CPU_BDVER2_FLAGS, 0 },
5e5c50d3 997 { STRING_COMMA_LEN ("bdver3"), PROCESSOR_BD,
293f5f65 998 CPU_BDVER3_FLAGS, 0 },
c7b0bd56 999 { STRING_COMMA_LEN ("bdver4"), PROCESSOR_BD,
293f5f65 1000 CPU_BDVER4_FLAGS, 0 },
029f3522 1001 { STRING_COMMA_LEN ("znver1"), PROCESSOR_ZNVER,
293f5f65 1002 CPU_ZNVER1_FLAGS, 0 },
a9660a6f
AP
1003 { STRING_COMMA_LEN ("znver2"), PROCESSOR_ZNVER,
1004 CPU_ZNVER2_FLAGS, 0 },
7b458c12 1005 { STRING_COMMA_LEN ("btver1"), PROCESSOR_BT,
293f5f65 1006 CPU_BTVER1_FLAGS, 0 },
7b458c12 1007 { STRING_COMMA_LEN ("btver2"), PROCESSOR_BT,
293f5f65 1008 CPU_BTVER2_FLAGS, 0 },
8a2c8fef 1009 { STRING_COMMA_LEN (".8087"), PROCESSOR_UNKNOWN,
293f5f65 1010 CPU_8087_FLAGS, 0 },
8a2c8fef 1011 { STRING_COMMA_LEN (".287"), PROCESSOR_UNKNOWN,
293f5f65 1012 CPU_287_FLAGS, 0 },
8a2c8fef 1013 { STRING_COMMA_LEN (".387"), PROCESSOR_UNKNOWN,
293f5f65 1014 CPU_387_FLAGS, 0 },
1848e567
L
1015 { STRING_COMMA_LEN (".687"), PROCESSOR_UNKNOWN,
1016 CPU_687_FLAGS, 0 },
d871f3f4
L
1017 { STRING_COMMA_LEN (".cmov"), PROCESSOR_UNKNOWN,
1018 CPU_CMOV_FLAGS, 0 },
1019 { STRING_COMMA_LEN (".fxsr"), PROCESSOR_UNKNOWN,
1020 CPU_FXSR_FLAGS, 0 },
8a2c8fef 1021 { STRING_COMMA_LEN (".mmx"), PROCESSOR_UNKNOWN,
293f5f65 1022 CPU_MMX_FLAGS, 0 },
8a2c8fef 1023 { STRING_COMMA_LEN (".sse"), PROCESSOR_UNKNOWN,
293f5f65 1024 CPU_SSE_FLAGS, 0 },
8a2c8fef 1025 { STRING_COMMA_LEN (".sse2"), PROCESSOR_UNKNOWN,
293f5f65 1026 CPU_SSE2_FLAGS, 0 },
8a2c8fef 1027 { STRING_COMMA_LEN (".sse3"), PROCESSOR_UNKNOWN,
293f5f65 1028 CPU_SSE3_FLAGS, 0 },
af5c13b0
L
1029 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
1030 CPU_SSE4A_FLAGS, 0 },
8a2c8fef 1031 { STRING_COMMA_LEN (".ssse3"), PROCESSOR_UNKNOWN,
293f5f65 1032 CPU_SSSE3_FLAGS, 0 },
8a2c8fef 1033 { STRING_COMMA_LEN (".sse4.1"), PROCESSOR_UNKNOWN,
293f5f65 1034 CPU_SSE4_1_FLAGS, 0 },
8a2c8fef 1035 { STRING_COMMA_LEN (".sse4.2"), PROCESSOR_UNKNOWN,
293f5f65 1036 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 1037 { STRING_COMMA_LEN (".sse4"), PROCESSOR_UNKNOWN,
293f5f65 1038 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 1039 { STRING_COMMA_LEN (".avx"), PROCESSOR_UNKNOWN,
293f5f65 1040 CPU_AVX_FLAGS, 0 },
6c30d220 1041 { STRING_COMMA_LEN (".avx2"), PROCESSOR_UNKNOWN,
293f5f65 1042 CPU_AVX2_FLAGS, 0 },
43234a1e 1043 { STRING_COMMA_LEN (".avx512f"), PROCESSOR_UNKNOWN,
293f5f65 1044 CPU_AVX512F_FLAGS, 0 },
43234a1e 1045 { STRING_COMMA_LEN (".avx512cd"), PROCESSOR_UNKNOWN,
293f5f65 1046 CPU_AVX512CD_FLAGS, 0 },
43234a1e 1047 { STRING_COMMA_LEN (".avx512er"), PROCESSOR_UNKNOWN,
293f5f65 1048 CPU_AVX512ER_FLAGS, 0 },
43234a1e 1049 { STRING_COMMA_LEN (".avx512pf"), PROCESSOR_UNKNOWN,
293f5f65 1050 CPU_AVX512PF_FLAGS, 0 },
1dfc6506 1051 { STRING_COMMA_LEN (".avx512dq"), PROCESSOR_UNKNOWN,
293f5f65 1052 CPU_AVX512DQ_FLAGS, 0 },
1dfc6506 1053 { STRING_COMMA_LEN (".avx512bw"), PROCESSOR_UNKNOWN,
293f5f65 1054 CPU_AVX512BW_FLAGS, 0 },
1dfc6506 1055 { STRING_COMMA_LEN (".avx512vl"), PROCESSOR_UNKNOWN,
293f5f65 1056 CPU_AVX512VL_FLAGS, 0 },
8a2c8fef 1057 { STRING_COMMA_LEN (".vmx"), PROCESSOR_UNKNOWN,
293f5f65 1058 CPU_VMX_FLAGS, 0 },
8729a6f6 1059 { STRING_COMMA_LEN (".vmfunc"), PROCESSOR_UNKNOWN,
293f5f65 1060 CPU_VMFUNC_FLAGS, 0 },
8a2c8fef 1061 { STRING_COMMA_LEN (".smx"), PROCESSOR_UNKNOWN,
293f5f65 1062 CPU_SMX_FLAGS, 0 },
8a2c8fef 1063 { STRING_COMMA_LEN (".xsave"), PROCESSOR_UNKNOWN,
293f5f65 1064 CPU_XSAVE_FLAGS, 0 },
c7b8aa3a 1065 { STRING_COMMA_LEN (".xsaveopt"), PROCESSOR_UNKNOWN,
293f5f65 1066 CPU_XSAVEOPT_FLAGS, 0 },
1dfc6506 1067 { STRING_COMMA_LEN (".xsavec"), PROCESSOR_UNKNOWN,
293f5f65 1068 CPU_XSAVEC_FLAGS, 0 },
1dfc6506 1069 { STRING_COMMA_LEN (".xsaves"), PROCESSOR_UNKNOWN,
293f5f65 1070 CPU_XSAVES_FLAGS, 0 },
8a2c8fef 1071 { STRING_COMMA_LEN (".aes"), PROCESSOR_UNKNOWN,
293f5f65 1072 CPU_AES_FLAGS, 0 },
8a2c8fef 1073 { STRING_COMMA_LEN (".pclmul"), PROCESSOR_UNKNOWN,
293f5f65 1074 CPU_PCLMUL_FLAGS, 0 },
8a2c8fef 1075 { STRING_COMMA_LEN (".clmul"), PROCESSOR_UNKNOWN,
293f5f65 1076 CPU_PCLMUL_FLAGS, 1 },
c7b8aa3a 1077 { STRING_COMMA_LEN (".fsgsbase"), PROCESSOR_UNKNOWN,
293f5f65 1078 CPU_FSGSBASE_FLAGS, 0 },
c7b8aa3a 1079 { STRING_COMMA_LEN (".rdrnd"), PROCESSOR_UNKNOWN,
293f5f65 1080 CPU_RDRND_FLAGS, 0 },
c7b8aa3a 1081 { STRING_COMMA_LEN (".f16c"), PROCESSOR_UNKNOWN,
293f5f65 1082 CPU_F16C_FLAGS, 0 },
6c30d220 1083 { STRING_COMMA_LEN (".bmi2"), PROCESSOR_UNKNOWN,
293f5f65 1084 CPU_BMI2_FLAGS, 0 },
8a2c8fef 1085 { STRING_COMMA_LEN (".fma"), PROCESSOR_UNKNOWN,
293f5f65 1086 CPU_FMA_FLAGS, 0 },
8a2c8fef 1087 { STRING_COMMA_LEN (".fma4"), PROCESSOR_UNKNOWN,
293f5f65 1088 CPU_FMA4_FLAGS, 0 },
8a2c8fef 1089 { STRING_COMMA_LEN (".xop"), PROCESSOR_UNKNOWN,
293f5f65 1090 CPU_XOP_FLAGS, 0 },
8a2c8fef 1091 { STRING_COMMA_LEN (".lwp"), PROCESSOR_UNKNOWN,
293f5f65 1092 CPU_LWP_FLAGS, 0 },
8a2c8fef 1093 { STRING_COMMA_LEN (".movbe"), PROCESSOR_UNKNOWN,
293f5f65 1094 CPU_MOVBE_FLAGS, 0 },
60aa667e 1095 { STRING_COMMA_LEN (".cx16"), PROCESSOR_UNKNOWN,
293f5f65 1096 CPU_CX16_FLAGS, 0 },
8a2c8fef 1097 { STRING_COMMA_LEN (".ept"), PROCESSOR_UNKNOWN,
293f5f65 1098 CPU_EPT_FLAGS, 0 },
6c30d220 1099 { STRING_COMMA_LEN (".lzcnt"), PROCESSOR_UNKNOWN,
293f5f65 1100 CPU_LZCNT_FLAGS, 0 },
272a84b1
L
1101 { STRING_COMMA_LEN (".popcnt"), PROCESSOR_UNKNOWN,
1102 CPU_POPCNT_FLAGS, 0 },
42164a71 1103 { STRING_COMMA_LEN (".hle"), PROCESSOR_UNKNOWN,
293f5f65 1104 CPU_HLE_FLAGS, 0 },
42164a71 1105 { STRING_COMMA_LEN (".rtm"), PROCESSOR_UNKNOWN,
293f5f65 1106 CPU_RTM_FLAGS, 0 },
6c30d220 1107 { STRING_COMMA_LEN (".invpcid"), PROCESSOR_UNKNOWN,
293f5f65 1108 CPU_INVPCID_FLAGS, 0 },
8a2c8fef 1109 { STRING_COMMA_LEN (".clflush"), PROCESSOR_UNKNOWN,
293f5f65 1110 CPU_CLFLUSH_FLAGS, 0 },
22109423 1111 { STRING_COMMA_LEN (".nop"), PROCESSOR_UNKNOWN,
293f5f65 1112 CPU_NOP_FLAGS, 0 },
8a2c8fef 1113 { STRING_COMMA_LEN (".syscall"), PROCESSOR_UNKNOWN,
293f5f65 1114 CPU_SYSCALL_FLAGS, 0 },
8a2c8fef 1115 { STRING_COMMA_LEN (".rdtscp"), PROCESSOR_UNKNOWN,
293f5f65 1116 CPU_RDTSCP_FLAGS, 0 },
8a2c8fef 1117 { STRING_COMMA_LEN (".3dnow"), PROCESSOR_UNKNOWN,
293f5f65 1118 CPU_3DNOW_FLAGS, 0 },
8a2c8fef 1119 { STRING_COMMA_LEN (".3dnowa"), PROCESSOR_UNKNOWN,
293f5f65 1120 CPU_3DNOWA_FLAGS, 0 },
8a2c8fef 1121 { STRING_COMMA_LEN (".padlock"), PROCESSOR_UNKNOWN,
293f5f65 1122 CPU_PADLOCK_FLAGS, 0 },
8a2c8fef 1123 { STRING_COMMA_LEN (".pacifica"), PROCESSOR_UNKNOWN,
293f5f65 1124 CPU_SVME_FLAGS, 1 },
8a2c8fef 1125 { STRING_COMMA_LEN (".svme"), PROCESSOR_UNKNOWN,
293f5f65 1126 CPU_SVME_FLAGS, 0 },
8a2c8fef 1127 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
293f5f65 1128 CPU_SSE4A_FLAGS, 0 },
8a2c8fef 1129 { STRING_COMMA_LEN (".abm"), PROCESSOR_UNKNOWN,
293f5f65 1130 CPU_ABM_FLAGS, 0 },
87973e9f 1131 { STRING_COMMA_LEN (".bmi"), PROCESSOR_UNKNOWN,
293f5f65 1132 CPU_BMI_FLAGS, 0 },
2a2a0f38 1133 { STRING_COMMA_LEN (".tbm"), PROCESSOR_UNKNOWN,
293f5f65 1134 CPU_TBM_FLAGS, 0 },
e2e1fcde 1135 { STRING_COMMA_LEN (".adx"), PROCESSOR_UNKNOWN,
293f5f65 1136 CPU_ADX_FLAGS, 0 },
e2e1fcde 1137 { STRING_COMMA_LEN (".rdseed"), PROCESSOR_UNKNOWN,
293f5f65 1138 CPU_RDSEED_FLAGS, 0 },
e2e1fcde 1139 { STRING_COMMA_LEN (".prfchw"), PROCESSOR_UNKNOWN,
293f5f65 1140 CPU_PRFCHW_FLAGS, 0 },
5c111e37 1141 { STRING_COMMA_LEN (".smap"), PROCESSOR_UNKNOWN,
293f5f65 1142 CPU_SMAP_FLAGS, 0 },
7e8b059b 1143 { STRING_COMMA_LEN (".mpx"), PROCESSOR_UNKNOWN,
293f5f65 1144 CPU_MPX_FLAGS, 0 },
a0046408 1145 { STRING_COMMA_LEN (".sha"), PROCESSOR_UNKNOWN,
293f5f65 1146 CPU_SHA_FLAGS, 0 },
963f3586 1147 { STRING_COMMA_LEN (".clflushopt"), PROCESSOR_UNKNOWN,
293f5f65 1148 CPU_CLFLUSHOPT_FLAGS, 0 },
dcf893b5 1149 { STRING_COMMA_LEN (".prefetchwt1"), PROCESSOR_UNKNOWN,
293f5f65 1150 CPU_PREFETCHWT1_FLAGS, 0 },
2cf200a4 1151 { STRING_COMMA_LEN (".se1"), PROCESSOR_UNKNOWN,
293f5f65 1152 CPU_SE1_FLAGS, 0 },
c5e7287a 1153 { STRING_COMMA_LEN (".clwb"), PROCESSOR_UNKNOWN,
293f5f65 1154 CPU_CLWB_FLAGS, 0 },
2cc1b5aa 1155 { STRING_COMMA_LEN (".avx512ifma"), PROCESSOR_UNKNOWN,
293f5f65 1156 CPU_AVX512IFMA_FLAGS, 0 },
14f195c9 1157 { STRING_COMMA_LEN (".avx512vbmi"), PROCESSOR_UNKNOWN,
293f5f65 1158 CPU_AVX512VBMI_FLAGS, 0 },
920d2ddc
IT
1159 { STRING_COMMA_LEN (".avx512_4fmaps"), PROCESSOR_UNKNOWN,
1160 CPU_AVX512_4FMAPS_FLAGS, 0 },
47acf0bd
IT
1161 { STRING_COMMA_LEN (".avx512_4vnniw"), PROCESSOR_UNKNOWN,
1162 CPU_AVX512_4VNNIW_FLAGS, 0 },
620214f7
IT
1163 { STRING_COMMA_LEN (".avx512_vpopcntdq"), PROCESSOR_UNKNOWN,
1164 CPU_AVX512_VPOPCNTDQ_FLAGS, 0 },
53467f57
IT
1165 { STRING_COMMA_LEN (".avx512_vbmi2"), PROCESSOR_UNKNOWN,
1166 CPU_AVX512_VBMI2_FLAGS, 0 },
8cfcb765
IT
1167 { STRING_COMMA_LEN (".avx512_vnni"), PROCESSOR_UNKNOWN,
1168 CPU_AVX512_VNNI_FLAGS, 0 },
ee6872be
IT
1169 { STRING_COMMA_LEN (".avx512_bitalg"), PROCESSOR_UNKNOWN,
1170 CPU_AVX512_BITALG_FLAGS, 0 },
029f3522 1171 { STRING_COMMA_LEN (".clzero"), PROCESSOR_UNKNOWN,
293f5f65 1172 CPU_CLZERO_FLAGS, 0 },
9916071f 1173 { STRING_COMMA_LEN (".mwaitx"), PROCESSOR_UNKNOWN,
293f5f65 1174 CPU_MWAITX_FLAGS, 0 },
8eab4136 1175 { STRING_COMMA_LEN (".ospke"), PROCESSOR_UNKNOWN,
293f5f65 1176 CPU_OSPKE_FLAGS, 0 },
8bc52696 1177 { STRING_COMMA_LEN (".rdpid"), PROCESSOR_UNKNOWN,
293f5f65 1178 CPU_RDPID_FLAGS, 0 },
6b40c462
L
1179 { STRING_COMMA_LEN (".ptwrite"), PROCESSOR_UNKNOWN,
1180 CPU_PTWRITE_FLAGS, 0 },
d777820b
IT
1181 { STRING_COMMA_LEN (".ibt"), PROCESSOR_UNKNOWN,
1182 CPU_IBT_FLAGS, 0 },
1183 { STRING_COMMA_LEN (".shstk"), PROCESSOR_UNKNOWN,
1184 CPU_SHSTK_FLAGS, 0 },
48521003
IT
1185 { STRING_COMMA_LEN (".gfni"), PROCESSOR_UNKNOWN,
1186 CPU_GFNI_FLAGS, 0 },
8dcf1fad
IT
1187 { STRING_COMMA_LEN (".vaes"), PROCESSOR_UNKNOWN,
1188 CPU_VAES_FLAGS, 0 },
ff1982d5
IT
1189 { STRING_COMMA_LEN (".vpclmulqdq"), PROCESSOR_UNKNOWN,
1190 CPU_VPCLMULQDQ_FLAGS, 0 },
3233d7d0
IT
1191 { STRING_COMMA_LEN (".wbnoinvd"), PROCESSOR_UNKNOWN,
1192 CPU_WBNOINVD_FLAGS, 0 },
be3a8dca
IT
1193 { STRING_COMMA_LEN (".pconfig"), PROCESSOR_UNKNOWN,
1194 CPU_PCONFIG_FLAGS, 0 },
de89d0a3
IT
1195 { STRING_COMMA_LEN (".waitpkg"), PROCESSOR_UNKNOWN,
1196 CPU_WAITPKG_FLAGS, 0 },
c48935d7
IT
1197 { STRING_COMMA_LEN (".cldemote"), PROCESSOR_UNKNOWN,
1198 CPU_CLDEMOTE_FLAGS, 0 },
c0a30a9f
L
1199 { STRING_COMMA_LEN (".movdiri"), PROCESSOR_UNKNOWN,
1200 CPU_MOVDIRI_FLAGS, 0 },
1201 { STRING_COMMA_LEN (".movdir64b"), PROCESSOR_UNKNOWN,
1202 CPU_MOVDIR64B_FLAGS, 0 },
d6aab7a1
XG
1203 { STRING_COMMA_LEN (".avx512_bf16"), PROCESSOR_UNKNOWN,
1204 CPU_AVX512_BF16_FLAGS, 0 },
9186c494
L
1205 { STRING_COMMA_LEN (".avx512_vp2intersect"), PROCESSOR_UNKNOWN,
1206 CPU_AVX512_VP2INTERSECT_FLAGS, 0 },
dd455cf5
L
1207 { STRING_COMMA_LEN (".enqcmd"), PROCESSOR_UNKNOWN,
1208 CPU_ENQCMD_FLAGS, 0 },
4b27d27c
L
1209 { STRING_COMMA_LEN (".serialize"), PROCESSOR_UNKNOWN,
1210 CPU_SERIALIZE_FLAGS, 0 },
142861df
JB
1211 { STRING_COMMA_LEN (".rdpru"), PROCESSOR_UNKNOWN,
1212 CPU_RDPRU_FLAGS, 0 },
1213 { STRING_COMMA_LEN (".mcommit"), PROCESSOR_UNKNOWN,
1214 CPU_MCOMMIT_FLAGS, 0 },
a847e322
JB
1215 { STRING_COMMA_LEN (".sev_es"), PROCESSOR_UNKNOWN,
1216 CPU_SEV_ES_FLAGS, 0 },
293f5f65
L
1217};
1218
1219static const noarch_entry cpu_noarch[] =
1220{
1221 { STRING_COMMA_LEN ("no87"), CPU_ANY_X87_FLAGS },
1848e567
L
1222 { STRING_COMMA_LEN ("no287"), CPU_ANY_287_FLAGS },
1223 { STRING_COMMA_LEN ("no387"), CPU_ANY_387_FLAGS },
1224 { STRING_COMMA_LEN ("no687"), CPU_ANY_687_FLAGS },
d871f3f4
L
1225 { STRING_COMMA_LEN ("nocmov"), CPU_ANY_CMOV_FLAGS },
1226 { STRING_COMMA_LEN ("nofxsr"), CPU_ANY_FXSR_FLAGS },
293f5f65
L
1227 { STRING_COMMA_LEN ("nommx"), CPU_ANY_MMX_FLAGS },
1228 { STRING_COMMA_LEN ("nosse"), CPU_ANY_SSE_FLAGS },
1848e567
L
1229 { STRING_COMMA_LEN ("nosse2"), CPU_ANY_SSE2_FLAGS },
1230 { STRING_COMMA_LEN ("nosse3"), CPU_ANY_SSE3_FLAGS },
af5c13b0 1231 { STRING_COMMA_LEN ("nosse4a"), CPU_ANY_SSE4A_FLAGS },
1848e567
L
1232 { STRING_COMMA_LEN ("nossse3"), CPU_ANY_SSSE3_FLAGS },
1233 { STRING_COMMA_LEN ("nosse4.1"), CPU_ANY_SSE4_1_FLAGS },
1234 { STRING_COMMA_LEN ("nosse4.2"), CPU_ANY_SSE4_2_FLAGS },
af5c13b0 1235 { STRING_COMMA_LEN ("nosse4"), CPU_ANY_SSE4_1_FLAGS },
293f5f65 1236 { STRING_COMMA_LEN ("noavx"), CPU_ANY_AVX_FLAGS },
1848e567 1237 { STRING_COMMA_LEN ("noavx2"), CPU_ANY_AVX2_FLAGS },
144b71e2
L
1238 { STRING_COMMA_LEN ("noavx512f"), CPU_ANY_AVX512F_FLAGS },
1239 { STRING_COMMA_LEN ("noavx512cd"), CPU_ANY_AVX512CD_FLAGS },
1240 { STRING_COMMA_LEN ("noavx512er"), CPU_ANY_AVX512ER_FLAGS },
1241 { STRING_COMMA_LEN ("noavx512pf"), CPU_ANY_AVX512PF_FLAGS },
1242 { STRING_COMMA_LEN ("noavx512dq"), CPU_ANY_AVX512DQ_FLAGS },
1243 { STRING_COMMA_LEN ("noavx512bw"), CPU_ANY_AVX512BW_FLAGS },
1244 { STRING_COMMA_LEN ("noavx512vl"), CPU_ANY_AVX512VL_FLAGS },
1245 { STRING_COMMA_LEN ("noavx512ifma"), CPU_ANY_AVX512IFMA_FLAGS },
1246 { STRING_COMMA_LEN ("noavx512vbmi"), CPU_ANY_AVX512VBMI_FLAGS },
920d2ddc 1247 { STRING_COMMA_LEN ("noavx512_4fmaps"), CPU_ANY_AVX512_4FMAPS_FLAGS },
47acf0bd 1248 { STRING_COMMA_LEN ("noavx512_4vnniw"), CPU_ANY_AVX512_4VNNIW_FLAGS },
620214f7 1249 { STRING_COMMA_LEN ("noavx512_vpopcntdq"), CPU_ANY_AVX512_VPOPCNTDQ_FLAGS },
53467f57 1250 { STRING_COMMA_LEN ("noavx512_vbmi2"), CPU_ANY_AVX512_VBMI2_FLAGS },
8cfcb765 1251 { STRING_COMMA_LEN ("noavx512_vnni"), CPU_ANY_AVX512_VNNI_FLAGS },
ee6872be 1252 { STRING_COMMA_LEN ("noavx512_bitalg"), CPU_ANY_AVX512_BITALG_FLAGS },
d777820b
IT
1253 { STRING_COMMA_LEN ("noibt"), CPU_ANY_IBT_FLAGS },
1254 { STRING_COMMA_LEN ("noshstk"), CPU_ANY_SHSTK_FLAGS },
c0a30a9f
L
1255 { STRING_COMMA_LEN ("nomovdiri"), CPU_ANY_MOVDIRI_FLAGS },
1256 { STRING_COMMA_LEN ("nomovdir64b"), CPU_ANY_MOVDIR64B_FLAGS },
d6aab7a1 1257 { STRING_COMMA_LEN ("noavx512_bf16"), CPU_ANY_AVX512_BF16_FLAGS },
9186c494 1258 { STRING_COMMA_LEN ("noavx512_vp2intersect"), CPU_ANY_SHSTK_FLAGS },
dd455cf5 1259 { STRING_COMMA_LEN ("noenqcmd"), CPU_ANY_ENQCMD_FLAGS },
4b27d27c 1260 { STRING_COMMA_LEN ("noserialize"), CPU_ANY_SERIALIZE_FLAGS },
e413e4e9
AM
1261};
1262
704209c0 1263#ifdef I386COFF
a6c24e68
NC
1264/* Like s_lcomm_internal in gas/read.c but the alignment string
1265 is allowed to be optional. */
1266
1267static symbolS *
1268pe_lcomm_internal (int needs_align, symbolS *symbolP, addressT size)
1269{
1270 addressT align = 0;
1271
1272 SKIP_WHITESPACE ();
1273
7ab9ffdd 1274 if (needs_align
a6c24e68
NC
1275 && *input_line_pointer == ',')
1276 {
1277 align = parse_align (needs_align - 1);
7ab9ffdd 1278
a6c24e68
NC
1279 if (align == (addressT) -1)
1280 return NULL;
1281 }
1282 else
1283 {
1284 if (size >= 8)
1285 align = 3;
1286 else if (size >= 4)
1287 align = 2;
1288 else if (size >= 2)
1289 align = 1;
1290 else
1291 align = 0;
1292 }
1293
1294 bss_alloc (symbolP, size, align);
1295 return symbolP;
1296}
1297
704209c0 1298static void
a6c24e68
NC
1299pe_lcomm (int needs_align)
1300{
1301 s_comm_internal (needs_align * 2, pe_lcomm_internal);
1302}
704209c0 1303#endif
a6c24e68 1304
29b0f896
AM
1305const pseudo_typeS md_pseudo_table[] =
1306{
1307#if !defined(OBJ_AOUT) && !defined(USE_ALIGN_PTWO)
1308 {"align", s_align_bytes, 0},
1309#else
1310 {"align", s_align_ptwo, 0},
1311#endif
1312 {"arch", set_cpu_arch, 0},
1313#ifndef I386COFF
1314 {"bss", s_bss, 0},
a6c24e68
NC
1315#else
1316 {"lcomm", pe_lcomm, 1},
29b0f896
AM
1317#endif
1318 {"ffloat", float_cons, 'f'},
1319 {"dfloat", float_cons, 'd'},
1320 {"tfloat", float_cons, 'x'},
1321 {"value", cons, 2},
d182319b 1322 {"slong", signed_cons, 4},
29b0f896
AM
1323 {"noopt", s_ignore, 0},
1324 {"optim", s_ignore, 0},
1325 {"code16gcc", set_16bit_gcc_code_flag, CODE_16BIT},
1326 {"code16", set_code_flag, CODE_16BIT},
1327 {"code32", set_code_flag, CODE_32BIT},
da5f19a2 1328#ifdef BFD64
29b0f896 1329 {"code64", set_code_flag, CODE_64BIT},
da5f19a2 1330#endif
29b0f896
AM
1331 {"intel_syntax", set_intel_syntax, 1},
1332 {"att_syntax", set_intel_syntax, 0},
1efbbeb4
L
1333 {"intel_mnemonic", set_intel_mnemonic, 1},
1334 {"att_mnemonic", set_intel_mnemonic, 0},
db51cc60
L
1335 {"allow_index_reg", set_allow_index_reg, 1},
1336 {"disallow_index_reg", set_allow_index_reg, 0},
7bab8ab5
JB
1337 {"sse_check", set_check, 0},
1338 {"operand_check", set_check, 1},
3b22753a
L
1339#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
1340 {"largecomm", handle_large_common, 0},
07a53e5c 1341#else
68d20676 1342 {"file", dwarf2_directive_file, 0},
07a53e5c
RH
1343 {"loc", dwarf2_directive_loc, 0},
1344 {"loc_mark_labels", dwarf2_directive_loc_mark_labels, 0},
3b22753a 1345#endif
6482c264
NC
1346#ifdef TE_PE
1347 {"secrel32", pe_directive_secrel, 0},
1348#endif
29b0f896
AM
1349 {0, 0, 0}
1350};
1351
1352/* For interface with expression (). */
1353extern char *input_line_pointer;
1354
1355/* Hash table for instruction mnemonic lookup. */
1356static struct hash_control *op_hash;
1357
1358/* Hash table for register lookup. */
1359static struct hash_control *reg_hash;
1360\f
ce8a8b2f
AM
1361 /* Various efficient no-op patterns for aligning code labels.
1362 Note: Don't try to assemble the instructions in the comments.
1363 0L and 0w are not legal. */
62a02d25
L
1364static const unsigned char f32_1[] =
1365 {0x90}; /* nop */
1366static const unsigned char f32_2[] =
1367 {0x66,0x90}; /* xchg %ax,%ax */
1368static const unsigned char f32_3[] =
1369 {0x8d,0x76,0x00}; /* leal 0(%esi),%esi */
1370static const unsigned char f32_4[] =
1371 {0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
62a02d25
L
1372static const unsigned char f32_6[] =
1373 {0x8d,0xb6,0x00,0x00,0x00,0x00}; /* leal 0L(%esi),%esi */
1374static const unsigned char f32_7[] =
1375 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
62a02d25 1376static const unsigned char f16_3[] =
3ae729d5 1377 {0x8d,0x74,0x00}; /* lea 0(%si),%si */
62a02d25 1378static const unsigned char f16_4[] =
3ae729d5
L
1379 {0x8d,0xb4,0x00,0x00}; /* lea 0W(%si),%si */
1380static const unsigned char jump_disp8[] =
1381 {0xeb}; /* jmp disp8 */
1382static const unsigned char jump32_disp32[] =
1383 {0xe9}; /* jmp disp32 */
1384static const unsigned char jump16_disp32[] =
1385 {0x66,0xe9}; /* jmp disp32 */
62a02d25
L
1386/* 32-bit NOPs patterns. */
1387static const unsigned char *const f32_patt[] = {
3ae729d5 1388 f32_1, f32_2, f32_3, f32_4, NULL, f32_6, f32_7
62a02d25
L
1389};
1390/* 16-bit NOPs patterns. */
1391static const unsigned char *const f16_patt[] = {
3ae729d5 1392 f32_1, f32_2, f16_3, f16_4
62a02d25
L
1393};
1394/* nopl (%[re]ax) */
1395static const unsigned char alt_3[] =
1396 {0x0f,0x1f,0x00};
1397/* nopl 0(%[re]ax) */
1398static const unsigned char alt_4[] =
1399 {0x0f,0x1f,0x40,0x00};
1400/* nopl 0(%[re]ax,%[re]ax,1) */
1401static const unsigned char alt_5[] =
1402 {0x0f,0x1f,0x44,0x00,0x00};
1403/* nopw 0(%[re]ax,%[re]ax,1) */
1404static const unsigned char alt_6[] =
1405 {0x66,0x0f,0x1f,0x44,0x00,0x00};
1406/* nopl 0L(%[re]ax) */
1407static const unsigned char alt_7[] =
1408 {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
1409/* nopl 0L(%[re]ax,%[re]ax,1) */
1410static const unsigned char alt_8[] =
1411 {0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1412/* nopw 0L(%[re]ax,%[re]ax,1) */
1413static const unsigned char alt_9[] =
1414 {0x66,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1415/* nopw %cs:0L(%[re]ax,%[re]ax,1) */
1416static const unsigned char alt_10[] =
1417 {0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
3ae729d5
L
1418/* data16 nopw %cs:0L(%eax,%eax,1) */
1419static const unsigned char alt_11[] =
1420 {0x66,0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
62a02d25
L
1421/* 32-bit and 64-bit NOPs patterns. */
1422static const unsigned char *const alt_patt[] = {
1423 f32_1, f32_2, alt_3, alt_4, alt_5, alt_6, alt_7, alt_8,
3ae729d5 1424 alt_9, alt_10, alt_11
62a02d25
L
1425};
1426
1427/* Genenerate COUNT bytes of NOPs to WHERE from PATT with the maximum
1428 size of a single NOP instruction MAX_SINGLE_NOP_SIZE. */
1429
1430static void
1431i386_output_nops (char *where, const unsigned char *const *patt,
1432 int count, int max_single_nop_size)
1433
1434{
3ae729d5
L
1435 /* Place the longer NOP first. */
1436 int last;
1437 int offset;
3076e594
NC
1438 const unsigned char *nops;
1439
1440 if (max_single_nop_size < 1)
1441 {
1442 as_fatal (_("i386_output_nops called to generate nops of at most %d bytes!"),
1443 max_single_nop_size);
1444 return;
1445 }
1446
1447 nops = patt[max_single_nop_size - 1];
3ae729d5
L
1448
1449 /* Use the smaller one if the requsted one isn't available. */
1450 if (nops == NULL)
62a02d25 1451 {
3ae729d5
L
1452 max_single_nop_size--;
1453 nops = patt[max_single_nop_size - 1];
62a02d25
L
1454 }
1455
3ae729d5
L
1456 last = count % max_single_nop_size;
1457
1458 count -= last;
1459 for (offset = 0; offset < count; offset += max_single_nop_size)
1460 memcpy (where + offset, nops, max_single_nop_size);
1461
1462 if (last)
1463 {
1464 nops = patt[last - 1];
1465 if (nops == NULL)
1466 {
1467 /* Use the smaller one plus one-byte NOP if the needed one
1468 isn't available. */
1469 last--;
1470 nops = patt[last - 1];
1471 memcpy (where + offset, nops, last);
1472 where[offset + last] = *patt[0];
1473 }
1474 else
1475 memcpy (where + offset, nops, last);
1476 }
62a02d25
L
1477}
1478
3ae729d5
L
1479static INLINE int
1480fits_in_imm7 (offsetT num)
1481{
1482 return (num & 0x7f) == num;
1483}
1484
1485static INLINE int
1486fits_in_imm31 (offsetT num)
1487{
1488 return (num & 0x7fffffff) == num;
1489}
62a02d25
L
1490
1491/* Genenerate COUNT bytes of NOPs to WHERE with the maximum size of a
1492 single NOP instruction LIMIT. */
1493
1494void
3ae729d5 1495i386_generate_nops (fragS *fragP, char *where, offsetT count, int limit)
62a02d25 1496{
3ae729d5 1497 const unsigned char *const *patt = NULL;
62a02d25 1498 int max_single_nop_size;
3ae729d5
L
1499 /* Maximum number of NOPs before switching to jump over NOPs. */
1500 int max_number_of_nops;
62a02d25 1501
3ae729d5 1502 switch (fragP->fr_type)
62a02d25 1503 {
3ae729d5
L
1504 case rs_fill_nop:
1505 case rs_align_code:
1506 break;
e379e5f3
L
1507 case rs_machine_dependent:
1508 /* Allow NOP padding for jumps and calls. */
1509 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
1510 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
1511 break;
1512 /* Fall through. */
3ae729d5 1513 default:
62a02d25
L
1514 return;
1515 }
1516
ccc9c027
L
1517 /* We need to decide which NOP sequence to use for 32bit and
1518 64bit. When -mtune= is used:
4eed87de 1519
76bc74dc
L
1520 1. For PROCESSOR_I386, PROCESSOR_I486, PROCESSOR_PENTIUM and
1521 PROCESSOR_GENERIC32, f32_patt will be used.
80b8656c
L
1522 2. For the rest, alt_patt will be used.
1523
1524 When -mtune= isn't used, alt_patt will be used if
22109423 1525 cpu_arch_isa_flags has CpuNop. Otherwise, f32_patt will
76bc74dc 1526 be used.
ccc9c027
L
1527
1528 When -march= or .arch is used, we can't use anything beyond
1529 cpu_arch_isa_flags. */
1530
1531 if (flag_code == CODE_16BIT)
1532 {
3ae729d5
L
1533 patt = f16_patt;
1534 max_single_nop_size = sizeof (f16_patt) / sizeof (f16_patt[0]);
1535 /* Limit number of NOPs to 2 in 16-bit mode. */
1536 max_number_of_nops = 2;
252b5132 1537 }
33fef721 1538 else
ccc9c027 1539 {
fbf3f584 1540 if (fragP->tc_frag_data.isa == PROCESSOR_UNKNOWN)
ccc9c027
L
1541 {
1542 /* PROCESSOR_UNKNOWN means that all ISAs may be used. */
1543 switch (cpu_arch_tune)
1544 {
1545 case PROCESSOR_UNKNOWN:
1546 /* We use cpu_arch_isa_flags to check if we SHOULD
22109423
L
1547 optimize with nops. */
1548 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1549 patt = alt_patt;
ccc9c027
L
1550 else
1551 patt = f32_patt;
1552 break;
ccc9c027
L
1553 case PROCESSOR_PENTIUM4:
1554 case PROCESSOR_NOCONA:
ef05d495 1555 case PROCESSOR_CORE:
76bc74dc 1556 case PROCESSOR_CORE2:
bd5295b2 1557 case PROCESSOR_COREI7:
3632d14b 1558 case PROCESSOR_L1OM:
7a9068fe 1559 case PROCESSOR_K1OM:
76bc74dc 1560 case PROCESSOR_GENERIC64:
ccc9c027
L
1561 case PROCESSOR_K6:
1562 case PROCESSOR_ATHLON:
1563 case PROCESSOR_K8:
4eed87de 1564 case PROCESSOR_AMDFAM10:
8aedb9fe 1565 case PROCESSOR_BD:
029f3522 1566 case PROCESSOR_ZNVER:
7b458c12 1567 case PROCESSOR_BT:
80b8656c 1568 patt = alt_patt;
ccc9c027 1569 break;
76bc74dc 1570 case PROCESSOR_I386:
ccc9c027
L
1571 case PROCESSOR_I486:
1572 case PROCESSOR_PENTIUM:
2dde1948 1573 case PROCESSOR_PENTIUMPRO:
81486035 1574 case PROCESSOR_IAMCU:
ccc9c027
L
1575 case PROCESSOR_GENERIC32:
1576 patt = f32_patt;
1577 break;
4eed87de 1578 }
ccc9c027
L
1579 }
1580 else
1581 {
fbf3f584 1582 switch (fragP->tc_frag_data.tune)
ccc9c027
L
1583 {
1584 case PROCESSOR_UNKNOWN:
e6a14101 1585 /* When cpu_arch_isa is set, cpu_arch_tune shouldn't be
ccc9c027
L
1586 PROCESSOR_UNKNOWN. */
1587 abort ();
1588 break;
1589
76bc74dc 1590 case PROCESSOR_I386:
ccc9c027
L
1591 case PROCESSOR_I486:
1592 case PROCESSOR_PENTIUM:
81486035 1593 case PROCESSOR_IAMCU:
ccc9c027
L
1594 case PROCESSOR_K6:
1595 case PROCESSOR_ATHLON:
1596 case PROCESSOR_K8:
4eed87de 1597 case PROCESSOR_AMDFAM10:
8aedb9fe 1598 case PROCESSOR_BD:
029f3522 1599 case PROCESSOR_ZNVER:
7b458c12 1600 case PROCESSOR_BT:
ccc9c027
L
1601 case PROCESSOR_GENERIC32:
1602 /* We use cpu_arch_isa_flags to check if we CAN optimize
22109423
L
1603 with nops. */
1604 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1605 patt = alt_patt;
ccc9c027
L
1606 else
1607 patt = f32_patt;
1608 break;
76bc74dc
L
1609 case PROCESSOR_PENTIUMPRO:
1610 case PROCESSOR_PENTIUM4:
1611 case PROCESSOR_NOCONA:
1612 case PROCESSOR_CORE:
ef05d495 1613 case PROCESSOR_CORE2:
bd5295b2 1614 case PROCESSOR_COREI7:
3632d14b 1615 case PROCESSOR_L1OM:
7a9068fe 1616 case PROCESSOR_K1OM:
22109423 1617 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1618 patt = alt_patt;
ccc9c027
L
1619 else
1620 patt = f32_patt;
1621 break;
1622 case PROCESSOR_GENERIC64:
80b8656c 1623 patt = alt_patt;
ccc9c027 1624 break;
4eed87de 1625 }
ccc9c027
L
1626 }
1627
76bc74dc
L
1628 if (patt == f32_patt)
1629 {
3ae729d5
L
1630 max_single_nop_size = sizeof (f32_patt) / sizeof (f32_patt[0]);
1631 /* Limit number of NOPs to 2 for older processors. */
1632 max_number_of_nops = 2;
76bc74dc
L
1633 }
1634 else
1635 {
3ae729d5
L
1636 max_single_nop_size = sizeof (alt_patt) / sizeof (alt_patt[0]);
1637 /* Limit number of NOPs to 7 for newer processors. */
1638 max_number_of_nops = 7;
1639 }
1640 }
1641
1642 if (limit == 0)
1643 limit = max_single_nop_size;
1644
1645 if (fragP->fr_type == rs_fill_nop)
1646 {
1647 /* Output NOPs for .nop directive. */
1648 if (limit > max_single_nop_size)
1649 {
1650 as_bad_where (fragP->fr_file, fragP->fr_line,
1651 _("invalid single nop size: %d "
1652 "(expect within [0, %d])"),
1653 limit, max_single_nop_size);
1654 return;
1655 }
1656 }
e379e5f3 1657 else if (fragP->fr_type != rs_machine_dependent)
3ae729d5
L
1658 fragP->fr_var = count;
1659
1660 if ((count / max_single_nop_size) > max_number_of_nops)
1661 {
1662 /* Generate jump over NOPs. */
1663 offsetT disp = count - 2;
1664 if (fits_in_imm7 (disp))
1665 {
1666 /* Use "jmp disp8" if possible. */
1667 count = disp;
1668 where[0] = jump_disp8[0];
1669 where[1] = count;
1670 where += 2;
1671 }
1672 else
1673 {
1674 unsigned int size_of_jump;
1675
1676 if (flag_code == CODE_16BIT)
1677 {
1678 where[0] = jump16_disp32[0];
1679 where[1] = jump16_disp32[1];
1680 size_of_jump = 2;
1681 }
1682 else
1683 {
1684 where[0] = jump32_disp32[0];
1685 size_of_jump = 1;
1686 }
1687
1688 count -= size_of_jump + 4;
1689 if (!fits_in_imm31 (count))
1690 {
1691 as_bad_where (fragP->fr_file, fragP->fr_line,
1692 _("jump over nop padding out of range"));
1693 return;
1694 }
1695
1696 md_number_to_chars (where + size_of_jump, count, 4);
1697 where += size_of_jump + 4;
76bc74dc 1698 }
ccc9c027 1699 }
3ae729d5
L
1700
1701 /* Generate multiple NOPs. */
1702 i386_output_nops (where, patt, count, limit);
252b5132
RH
1703}
1704
c6fb90c8 1705static INLINE int
0dfbf9d7 1706operand_type_all_zero (const union i386_operand_type *x)
40fb9820 1707{
0dfbf9d7 1708 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1709 {
1710 case 3:
0dfbf9d7 1711 if (x->array[2])
c6fb90c8 1712 return 0;
1a0670f3 1713 /* Fall through. */
c6fb90c8 1714 case 2:
0dfbf9d7 1715 if (x->array[1])
c6fb90c8 1716 return 0;
1a0670f3 1717 /* Fall through. */
c6fb90c8 1718 case 1:
0dfbf9d7 1719 return !x->array[0];
c6fb90c8
L
1720 default:
1721 abort ();
1722 }
40fb9820
L
1723}
1724
c6fb90c8 1725static INLINE void
0dfbf9d7 1726operand_type_set (union i386_operand_type *x, unsigned int v)
40fb9820 1727{
0dfbf9d7 1728 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1729 {
1730 case 3:
0dfbf9d7 1731 x->array[2] = v;
1a0670f3 1732 /* Fall through. */
c6fb90c8 1733 case 2:
0dfbf9d7 1734 x->array[1] = v;
1a0670f3 1735 /* Fall through. */
c6fb90c8 1736 case 1:
0dfbf9d7 1737 x->array[0] = v;
1a0670f3 1738 /* Fall through. */
c6fb90c8
L
1739 break;
1740 default:
1741 abort ();
1742 }
bab6aec1
JB
1743
1744 x->bitfield.class = ClassNone;
75e5731b 1745 x->bitfield.instance = InstanceNone;
c6fb90c8 1746}
40fb9820 1747
c6fb90c8 1748static INLINE int
0dfbf9d7
L
1749operand_type_equal (const union i386_operand_type *x,
1750 const union i386_operand_type *y)
c6fb90c8 1751{
0dfbf9d7 1752 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1753 {
1754 case 3:
0dfbf9d7 1755 if (x->array[2] != y->array[2])
c6fb90c8 1756 return 0;
1a0670f3 1757 /* Fall through. */
c6fb90c8 1758 case 2:
0dfbf9d7 1759 if (x->array[1] != y->array[1])
c6fb90c8 1760 return 0;
1a0670f3 1761 /* Fall through. */
c6fb90c8 1762 case 1:
0dfbf9d7 1763 return x->array[0] == y->array[0];
c6fb90c8
L
1764 break;
1765 default:
1766 abort ();
1767 }
1768}
40fb9820 1769
0dfbf9d7
L
1770static INLINE int
1771cpu_flags_all_zero (const union i386_cpu_flags *x)
1772{
1773 switch (ARRAY_SIZE(x->array))
1774 {
53467f57
IT
1775 case 4:
1776 if (x->array[3])
1777 return 0;
1778 /* Fall through. */
0dfbf9d7
L
1779 case 3:
1780 if (x->array[2])
1781 return 0;
1a0670f3 1782 /* Fall through. */
0dfbf9d7
L
1783 case 2:
1784 if (x->array[1])
1785 return 0;
1a0670f3 1786 /* Fall through. */
0dfbf9d7
L
1787 case 1:
1788 return !x->array[0];
1789 default:
1790 abort ();
1791 }
1792}
1793
0dfbf9d7
L
1794static INLINE int
1795cpu_flags_equal (const union i386_cpu_flags *x,
1796 const union i386_cpu_flags *y)
1797{
1798 switch (ARRAY_SIZE(x->array))
1799 {
53467f57
IT
1800 case 4:
1801 if (x->array[3] != y->array[3])
1802 return 0;
1803 /* Fall through. */
0dfbf9d7
L
1804 case 3:
1805 if (x->array[2] != y->array[2])
1806 return 0;
1a0670f3 1807 /* Fall through. */
0dfbf9d7
L
1808 case 2:
1809 if (x->array[1] != y->array[1])
1810 return 0;
1a0670f3 1811 /* Fall through. */
0dfbf9d7
L
1812 case 1:
1813 return x->array[0] == y->array[0];
1814 break;
1815 default:
1816 abort ();
1817 }
1818}
c6fb90c8
L
1819
1820static INLINE int
1821cpu_flags_check_cpu64 (i386_cpu_flags f)
1822{
1823 return !((flag_code == CODE_64BIT && f.bitfield.cpuno64)
1824 || (flag_code != CODE_64BIT && f.bitfield.cpu64));
40fb9820
L
1825}
1826
c6fb90c8
L
1827static INLINE i386_cpu_flags
1828cpu_flags_and (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1829{
c6fb90c8
L
1830 switch (ARRAY_SIZE (x.array))
1831 {
53467f57
IT
1832 case 4:
1833 x.array [3] &= y.array [3];
1834 /* Fall through. */
c6fb90c8
L
1835 case 3:
1836 x.array [2] &= y.array [2];
1a0670f3 1837 /* Fall through. */
c6fb90c8
L
1838 case 2:
1839 x.array [1] &= y.array [1];
1a0670f3 1840 /* Fall through. */
c6fb90c8
L
1841 case 1:
1842 x.array [0] &= y.array [0];
1843 break;
1844 default:
1845 abort ();
1846 }
1847 return x;
1848}
40fb9820 1849
c6fb90c8
L
1850static INLINE i386_cpu_flags
1851cpu_flags_or (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1852{
c6fb90c8 1853 switch (ARRAY_SIZE (x.array))
40fb9820 1854 {
53467f57
IT
1855 case 4:
1856 x.array [3] |= y.array [3];
1857 /* Fall through. */
c6fb90c8
L
1858 case 3:
1859 x.array [2] |= y.array [2];
1a0670f3 1860 /* Fall through. */
c6fb90c8
L
1861 case 2:
1862 x.array [1] |= y.array [1];
1a0670f3 1863 /* Fall through. */
c6fb90c8
L
1864 case 1:
1865 x.array [0] |= y.array [0];
40fb9820
L
1866 break;
1867 default:
1868 abort ();
1869 }
40fb9820
L
1870 return x;
1871}
1872
309d3373
JB
1873static INLINE i386_cpu_flags
1874cpu_flags_and_not (i386_cpu_flags x, i386_cpu_flags y)
1875{
1876 switch (ARRAY_SIZE (x.array))
1877 {
53467f57
IT
1878 case 4:
1879 x.array [3] &= ~y.array [3];
1880 /* Fall through. */
309d3373
JB
1881 case 3:
1882 x.array [2] &= ~y.array [2];
1a0670f3 1883 /* Fall through. */
309d3373
JB
1884 case 2:
1885 x.array [1] &= ~y.array [1];
1a0670f3 1886 /* Fall through. */
309d3373
JB
1887 case 1:
1888 x.array [0] &= ~y.array [0];
1889 break;
1890 default:
1891 abort ();
1892 }
1893 return x;
1894}
1895
6c0946d0
JB
1896static const i386_cpu_flags avx512 = CPU_ANY_AVX512F_FLAGS;
1897
c0f3af97
L
1898#define CPU_FLAGS_ARCH_MATCH 0x1
1899#define CPU_FLAGS_64BIT_MATCH 0x2
1900
c0f3af97 1901#define CPU_FLAGS_PERFECT_MATCH \
db12e14e 1902 (CPU_FLAGS_ARCH_MATCH | CPU_FLAGS_64BIT_MATCH)
c0f3af97
L
1903
1904/* Return CPU flags match bits. */
3629bb00 1905
40fb9820 1906static int
d3ce72d0 1907cpu_flags_match (const insn_template *t)
40fb9820 1908{
c0f3af97
L
1909 i386_cpu_flags x = t->cpu_flags;
1910 int match = cpu_flags_check_cpu64 (x) ? CPU_FLAGS_64BIT_MATCH : 0;
40fb9820
L
1911
1912 x.bitfield.cpu64 = 0;
1913 x.bitfield.cpuno64 = 0;
1914
0dfbf9d7 1915 if (cpu_flags_all_zero (&x))
c0f3af97
L
1916 {
1917 /* This instruction is available on all archs. */
db12e14e 1918 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 1919 }
3629bb00
L
1920 else
1921 {
c0f3af97 1922 /* This instruction is available only on some archs. */
3629bb00
L
1923 i386_cpu_flags cpu = cpu_arch_flags;
1924
ab592e75
JB
1925 /* AVX512VL is no standalone feature - match it and then strip it. */
1926 if (x.bitfield.cpuavx512vl && !cpu.bitfield.cpuavx512vl)
1927 return match;
1928 x.bitfield.cpuavx512vl = 0;
1929
3629bb00 1930 cpu = cpu_flags_and (x, cpu);
c0f3af97
L
1931 if (!cpu_flags_all_zero (&cpu))
1932 {
a5ff0eb2
L
1933 if (x.bitfield.cpuavx)
1934 {
929f69fa 1935 /* We need to check a few extra flags with AVX. */
b9d49817
JB
1936 if (cpu.bitfield.cpuavx
1937 && (!t->opcode_modifier.sse2avx || sse2avx)
1938 && (!x.bitfield.cpuaes || cpu.bitfield.cpuaes)
929f69fa 1939 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
b9d49817
JB
1940 && (!x.bitfield.cpupclmul || cpu.bitfield.cpupclmul))
1941 match |= CPU_FLAGS_ARCH_MATCH;
a5ff0eb2 1942 }
929f69fa
JB
1943 else if (x.bitfield.cpuavx512f)
1944 {
1945 /* We need to check a few extra flags with AVX512F. */
1946 if (cpu.bitfield.cpuavx512f
1947 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
1948 && (!x.bitfield.cpuvaes || cpu.bitfield.cpuvaes)
1949 && (!x.bitfield.cpuvpclmulqdq || cpu.bitfield.cpuvpclmulqdq))
1950 match |= CPU_FLAGS_ARCH_MATCH;
1951 }
a5ff0eb2 1952 else
db12e14e 1953 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 1954 }
3629bb00 1955 }
c0f3af97 1956 return match;
40fb9820
L
1957}
1958
c6fb90c8
L
1959static INLINE i386_operand_type
1960operand_type_and (i386_operand_type x, i386_operand_type y)
40fb9820 1961{
bab6aec1
JB
1962 if (x.bitfield.class != y.bitfield.class)
1963 x.bitfield.class = ClassNone;
75e5731b
JB
1964 if (x.bitfield.instance != y.bitfield.instance)
1965 x.bitfield.instance = InstanceNone;
bab6aec1 1966
c6fb90c8
L
1967 switch (ARRAY_SIZE (x.array))
1968 {
1969 case 3:
1970 x.array [2] &= y.array [2];
1a0670f3 1971 /* Fall through. */
c6fb90c8
L
1972 case 2:
1973 x.array [1] &= y.array [1];
1a0670f3 1974 /* Fall through. */
c6fb90c8
L
1975 case 1:
1976 x.array [0] &= y.array [0];
1977 break;
1978 default:
1979 abort ();
1980 }
1981 return x;
40fb9820
L
1982}
1983
73053c1f
JB
1984static INLINE i386_operand_type
1985operand_type_and_not (i386_operand_type x, i386_operand_type y)
1986{
bab6aec1 1987 gas_assert (y.bitfield.class == ClassNone);
75e5731b 1988 gas_assert (y.bitfield.instance == InstanceNone);
bab6aec1 1989
73053c1f
JB
1990 switch (ARRAY_SIZE (x.array))
1991 {
1992 case 3:
1993 x.array [2] &= ~y.array [2];
1994 /* Fall through. */
1995 case 2:
1996 x.array [1] &= ~y.array [1];
1997 /* Fall through. */
1998 case 1:
1999 x.array [0] &= ~y.array [0];
2000 break;
2001 default:
2002 abort ();
2003 }
2004 return x;
2005}
2006
c6fb90c8
L
2007static INLINE i386_operand_type
2008operand_type_or (i386_operand_type x, i386_operand_type y)
40fb9820 2009{
bab6aec1
JB
2010 gas_assert (x.bitfield.class == ClassNone ||
2011 y.bitfield.class == ClassNone ||
2012 x.bitfield.class == y.bitfield.class);
75e5731b
JB
2013 gas_assert (x.bitfield.instance == InstanceNone ||
2014 y.bitfield.instance == InstanceNone ||
2015 x.bitfield.instance == y.bitfield.instance);
bab6aec1 2016
c6fb90c8 2017 switch (ARRAY_SIZE (x.array))
40fb9820 2018 {
c6fb90c8
L
2019 case 3:
2020 x.array [2] |= y.array [2];
1a0670f3 2021 /* Fall through. */
c6fb90c8
L
2022 case 2:
2023 x.array [1] |= y.array [1];
1a0670f3 2024 /* Fall through. */
c6fb90c8
L
2025 case 1:
2026 x.array [0] |= y.array [0];
40fb9820
L
2027 break;
2028 default:
2029 abort ();
2030 }
c6fb90c8
L
2031 return x;
2032}
40fb9820 2033
c6fb90c8
L
2034static INLINE i386_operand_type
2035operand_type_xor (i386_operand_type x, i386_operand_type y)
2036{
bab6aec1 2037 gas_assert (y.bitfield.class == ClassNone);
75e5731b 2038 gas_assert (y.bitfield.instance == InstanceNone);
bab6aec1 2039
c6fb90c8
L
2040 switch (ARRAY_SIZE (x.array))
2041 {
2042 case 3:
2043 x.array [2] ^= y.array [2];
1a0670f3 2044 /* Fall through. */
c6fb90c8
L
2045 case 2:
2046 x.array [1] ^= y.array [1];
1a0670f3 2047 /* Fall through. */
c6fb90c8
L
2048 case 1:
2049 x.array [0] ^= y.array [0];
2050 break;
2051 default:
2052 abort ();
2053 }
40fb9820
L
2054 return x;
2055}
2056
40fb9820
L
2057static const i386_operand_type disp16 = OPERAND_TYPE_DISP16;
2058static const i386_operand_type disp32 = OPERAND_TYPE_DISP32;
2059static const i386_operand_type disp32s = OPERAND_TYPE_DISP32S;
2060static const i386_operand_type disp16_32 = OPERAND_TYPE_DISP16_32;
bab6aec1
JB
2061static const i386_operand_type anydisp = OPERAND_TYPE_ANYDISP;
2062static const i386_operand_type anyimm = OPERAND_TYPE_ANYIMM;
40fb9820 2063static const i386_operand_type regxmm = OPERAND_TYPE_REGXMM;
43234a1e 2064static const i386_operand_type regmask = OPERAND_TYPE_REGMASK;
40fb9820
L
2065static const i386_operand_type imm8 = OPERAND_TYPE_IMM8;
2066static const i386_operand_type imm8s = OPERAND_TYPE_IMM8S;
2067static const i386_operand_type imm16 = OPERAND_TYPE_IMM16;
2068static const i386_operand_type imm32 = OPERAND_TYPE_IMM32;
2069static const i386_operand_type imm32s = OPERAND_TYPE_IMM32S;
2070static const i386_operand_type imm64 = OPERAND_TYPE_IMM64;
2071static const i386_operand_type imm16_32 = OPERAND_TYPE_IMM16_32;
2072static const i386_operand_type imm16_32s = OPERAND_TYPE_IMM16_32S;
2073static const i386_operand_type imm16_32_32s = OPERAND_TYPE_IMM16_32_32S;
2074
2075enum operand_type
2076{
2077 reg,
40fb9820
L
2078 imm,
2079 disp,
2080 anymem
2081};
2082
c6fb90c8 2083static INLINE int
40fb9820
L
2084operand_type_check (i386_operand_type t, enum operand_type c)
2085{
2086 switch (c)
2087 {
2088 case reg:
bab6aec1 2089 return t.bitfield.class == Reg;
40fb9820 2090
40fb9820
L
2091 case imm:
2092 return (t.bitfield.imm8
2093 || t.bitfield.imm8s
2094 || t.bitfield.imm16
2095 || t.bitfield.imm32
2096 || t.bitfield.imm32s
2097 || t.bitfield.imm64);
2098
2099 case disp:
2100 return (t.bitfield.disp8
2101 || t.bitfield.disp16
2102 || t.bitfield.disp32
2103 || t.bitfield.disp32s
2104 || t.bitfield.disp64);
2105
2106 case anymem:
2107 return (t.bitfield.disp8
2108 || t.bitfield.disp16
2109 || t.bitfield.disp32
2110 || t.bitfield.disp32s
2111 || t.bitfield.disp64
2112 || t.bitfield.baseindex);
2113
2114 default:
2115 abort ();
2116 }
2cfe26b6
AM
2117
2118 return 0;
40fb9820
L
2119}
2120
7a54636a
L
2121/* Return 1 if there is no conflict in 8bit/16bit/32bit/64bit/80bit size
2122 between operand GIVEN and opeand WANTED for instruction template T. */
5c07affc
L
2123
2124static INLINE int
7a54636a
L
2125match_operand_size (const insn_template *t, unsigned int wanted,
2126 unsigned int given)
5c07affc 2127{
3ac21baa
JB
2128 return !((i.types[given].bitfield.byte
2129 && !t->operand_types[wanted].bitfield.byte)
2130 || (i.types[given].bitfield.word
2131 && !t->operand_types[wanted].bitfield.word)
2132 || (i.types[given].bitfield.dword
2133 && !t->operand_types[wanted].bitfield.dword)
2134 || (i.types[given].bitfield.qword
2135 && !t->operand_types[wanted].bitfield.qword)
2136 || (i.types[given].bitfield.tbyte
2137 && !t->operand_types[wanted].bitfield.tbyte));
5c07affc
L
2138}
2139
dd40ce22
L
2140/* Return 1 if there is no conflict in SIMD register between operand
2141 GIVEN and opeand WANTED for instruction template T. */
1b54b8d7
JB
2142
2143static INLINE int
dd40ce22
L
2144match_simd_size (const insn_template *t, unsigned int wanted,
2145 unsigned int given)
1b54b8d7 2146{
3ac21baa
JB
2147 return !((i.types[given].bitfield.xmmword
2148 && !t->operand_types[wanted].bitfield.xmmword)
2149 || (i.types[given].bitfield.ymmword
2150 && !t->operand_types[wanted].bitfield.ymmword)
2151 || (i.types[given].bitfield.zmmword
2152 && !t->operand_types[wanted].bitfield.zmmword));
1b54b8d7
JB
2153}
2154
7a54636a
L
2155/* Return 1 if there is no conflict in any size between operand GIVEN
2156 and opeand WANTED for instruction template T. */
5c07affc
L
2157
2158static INLINE int
dd40ce22
L
2159match_mem_size (const insn_template *t, unsigned int wanted,
2160 unsigned int given)
5c07affc 2161{
7a54636a 2162 return (match_operand_size (t, wanted, given)
3ac21baa 2163 && !((i.types[given].bitfield.unspecified
af508cb9 2164 && !i.broadcast
3ac21baa
JB
2165 && !t->operand_types[wanted].bitfield.unspecified)
2166 || (i.types[given].bitfield.fword
2167 && !t->operand_types[wanted].bitfield.fword)
1b54b8d7
JB
2168 /* For scalar opcode templates to allow register and memory
2169 operands at the same time, some special casing is needed
d6793fa1
JB
2170 here. Also for v{,p}broadcast*, {,v}pmov{s,z}*, and
2171 down-conversion vpmov*. */
3528c362 2172 || ((t->operand_types[wanted].bitfield.class == RegSIMD
bc49bfd8
JB
2173 && t->operand_types[wanted].bitfield.byte
2174 + t->operand_types[wanted].bitfield.word
2175 + t->operand_types[wanted].bitfield.dword
2176 + t->operand_types[wanted].bitfield.qword
2177 > !!t->opcode_modifier.broadcast)
3ac21baa
JB
2178 ? (i.types[given].bitfield.xmmword
2179 || i.types[given].bitfield.ymmword
2180 || i.types[given].bitfield.zmmword)
2181 : !match_simd_size(t, wanted, given))));
5c07affc
L
2182}
2183
3ac21baa
JB
2184/* Return value has MATCH_STRAIGHT set if there is no size conflict on any
2185 operands for instruction template T, and it has MATCH_REVERSE set if there
2186 is no size conflict on any operands for the template with operands reversed
2187 (and the template allows for reversing in the first place). */
5c07affc 2188
3ac21baa
JB
2189#define MATCH_STRAIGHT 1
2190#define MATCH_REVERSE 2
2191
2192static INLINE unsigned int
d3ce72d0 2193operand_size_match (const insn_template *t)
5c07affc 2194{
3ac21baa 2195 unsigned int j, match = MATCH_STRAIGHT;
5c07affc 2196
0cfa3eb3 2197 /* Don't check non-absolute jump instructions. */
5c07affc 2198 if (t->opcode_modifier.jump
0cfa3eb3 2199 && t->opcode_modifier.jump != JUMP_ABSOLUTE)
5c07affc
L
2200 return match;
2201
2202 /* Check memory and accumulator operand size. */
2203 for (j = 0; j < i.operands; j++)
2204 {
3528c362
JB
2205 if (i.types[j].bitfield.class != Reg
2206 && i.types[j].bitfield.class != RegSIMD
601e8564 2207 && t->opcode_modifier.anysize)
5c07affc
L
2208 continue;
2209
bab6aec1 2210 if (t->operand_types[j].bitfield.class == Reg
7a54636a 2211 && !match_operand_size (t, j, j))
5c07affc
L
2212 {
2213 match = 0;
2214 break;
2215 }
2216
3528c362 2217 if (t->operand_types[j].bitfield.class == RegSIMD
3ac21baa 2218 && !match_simd_size (t, j, j))
1b54b8d7
JB
2219 {
2220 match = 0;
2221 break;
2222 }
2223
75e5731b 2224 if (t->operand_types[j].bitfield.instance == Accum
7a54636a 2225 && (!match_operand_size (t, j, j) || !match_simd_size (t, j, j)))
1b54b8d7
JB
2226 {
2227 match = 0;
2228 break;
2229 }
2230
c48dadc9 2231 if ((i.flags[j] & Operand_Mem) && !match_mem_size (t, j, j))
5c07affc
L
2232 {
2233 match = 0;
2234 break;
2235 }
2236 }
2237
3ac21baa 2238 if (!t->opcode_modifier.d)
891edac4 2239 {
dc1e8a47 2240 mismatch:
3ac21baa
JB
2241 if (!match)
2242 i.error = operand_size_mismatch;
2243 return match;
891edac4 2244 }
5c07affc
L
2245
2246 /* Check reverse. */
f5eb1d70 2247 gas_assert (i.operands >= 2 && i.operands <= 3);
5c07affc 2248
f5eb1d70 2249 for (j = 0; j < i.operands; j++)
5c07affc 2250 {
f5eb1d70
JB
2251 unsigned int given = i.operands - j - 1;
2252
bab6aec1 2253 if (t->operand_types[j].bitfield.class == Reg
f5eb1d70 2254 && !match_operand_size (t, j, given))
891edac4 2255 goto mismatch;
5c07affc 2256
3528c362 2257 if (t->operand_types[j].bitfield.class == RegSIMD
f5eb1d70 2258 && !match_simd_size (t, j, given))
dbbc8b7e
JB
2259 goto mismatch;
2260
75e5731b 2261 if (t->operand_types[j].bitfield.instance == Accum
f5eb1d70
JB
2262 && (!match_operand_size (t, j, given)
2263 || !match_simd_size (t, j, given)))
dbbc8b7e
JB
2264 goto mismatch;
2265
f5eb1d70 2266 if ((i.flags[given] & Operand_Mem) && !match_mem_size (t, j, given))
891edac4 2267 goto mismatch;
5c07affc
L
2268 }
2269
3ac21baa 2270 return match | MATCH_REVERSE;
5c07affc
L
2271}
2272
c6fb90c8 2273static INLINE int
40fb9820
L
2274operand_type_match (i386_operand_type overlap,
2275 i386_operand_type given)
2276{
2277 i386_operand_type temp = overlap;
2278
7d5e4556 2279 temp.bitfield.unspecified = 0;
5c07affc
L
2280 temp.bitfield.byte = 0;
2281 temp.bitfield.word = 0;
2282 temp.bitfield.dword = 0;
2283 temp.bitfield.fword = 0;
2284 temp.bitfield.qword = 0;
2285 temp.bitfield.tbyte = 0;
2286 temp.bitfield.xmmword = 0;
c0f3af97 2287 temp.bitfield.ymmword = 0;
43234a1e 2288 temp.bitfield.zmmword = 0;
0dfbf9d7 2289 if (operand_type_all_zero (&temp))
891edac4 2290 goto mismatch;
40fb9820 2291
6f2f06be 2292 if (given.bitfield.baseindex == overlap.bitfield.baseindex)
891edac4
L
2293 return 1;
2294
dc1e8a47 2295 mismatch:
a65babc9 2296 i.error = operand_type_mismatch;
891edac4 2297 return 0;
40fb9820
L
2298}
2299
7d5e4556 2300/* If given types g0 and g1 are registers they must be of the same type
10c17abd 2301 unless the expected operand type register overlap is null.
5de4d9ef 2302 Some Intel syntax memory operand size checking also happens here. */
40fb9820 2303
c6fb90c8 2304static INLINE int
dc821c5f 2305operand_type_register_match (i386_operand_type g0,
40fb9820 2306 i386_operand_type t0,
40fb9820
L
2307 i386_operand_type g1,
2308 i386_operand_type t1)
2309{
bab6aec1 2310 if (g0.bitfield.class != Reg
3528c362 2311 && g0.bitfield.class != RegSIMD
10c17abd
JB
2312 && (!operand_type_check (g0, anymem)
2313 || g0.bitfield.unspecified
5de4d9ef
JB
2314 || (t0.bitfield.class != Reg
2315 && t0.bitfield.class != RegSIMD)))
40fb9820
L
2316 return 1;
2317
bab6aec1 2318 if (g1.bitfield.class != Reg
3528c362 2319 && g1.bitfield.class != RegSIMD
10c17abd
JB
2320 && (!operand_type_check (g1, anymem)
2321 || g1.bitfield.unspecified
5de4d9ef
JB
2322 || (t1.bitfield.class != Reg
2323 && t1.bitfield.class != RegSIMD)))
40fb9820
L
2324 return 1;
2325
dc821c5f
JB
2326 if (g0.bitfield.byte == g1.bitfield.byte
2327 && g0.bitfield.word == g1.bitfield.word
2328 && g0.bitfield.dword == g1.bitfield.dword
10c17abd
JB
2329 && g0.bitfield.qword == g1.bitfield.qword
2330 && g0.bitfield.xmmword == g1.bitfield.xmmword
2331 && g0.bitfield.ymmword == g1.bitfield.ymmword
2332 && g0.bitfield.zmmword == g1.bitfield.zmmword)
40fb9820
L
2333 return 1;
2334
dc821c5f
JB
2335 if (!(t0.bitfield.byte & t1.bitfield.byte)
2336 && !(t0.bitfield.word & t1.bitfield.word)
2337 && !(t0.bitfield.dword & t1.bitfield.dword)
10c17abd
JB
2338 && !(t0.bitfield.qword & t1.bitfield.qword)
2339 && !(t0.bitfield.xmmword & t1.bitfield.xmmword)
2340 && !(t0.bitfield.ymmword & t1.bitfield.ymmword)
2341 && !(t0.bitfield.zmmword & t1.bitfield.zmmword))
891edac4
L
2342 return 1;
2343
a65babc9 2344 i.error = register_type_mismatch;
891edac4
L
2345
2346 return 0;
40fb9820
L
2347}
2348
4c692bc7
JB
2349static INLINE unsigned int
2350register_number (const reg_entry *r)
2351{
2352 unsigned int nr = r->reg_num;
2353
2354 if (r->reg_flags & RegRex)
2355 nr += 8;
2356
200cbe0f
L
2357 if (r->reg_flags & RegVRex)
2358 nr += 16;
2359
4c692bc7
JB
2360 return nr;
2361}
2362
252b5132 2363static INLINE unsigned int
40fb9820 2364mode_from_disp_size (i386_operand_type t)
252b5132 2365{
b5014f7a 2366 if (t.bitfield.disp8)
40fb9820
L
2367 return 1;
2368 else if (t.bitfield.disp16
2369 || t.bitfield.disp32
2370 || t.bitfield.disp32s)
2371 return 2;
2372 else
2373 return 0;
252b5132
RH
2374}
2375
2376static INLINE int
65879393 2377fits_in_signed_byte (addressT num)
252b5132 2378{
65879393 2379 return num + 0x80 <= 0xff;
47926f60 2380}
252b5132
RH
2381
2382static INLINE int
65879393 2383fits_in_unsigned_byte (addressT num)
252b5132 2384{
65879393 2385 return num <= 0xff;
47926f60 2386}
252b5132
RH
2387
2388static INLINE int
65879393 2389fits_in_unsigned_word (addressT num)
252b5132 2390{
65879393 2391 return num <= 0xffff;
47926f60 2392}
252b5132
RH
2393
2394static INLINE int
65879393 2395fits_in_signed_word (addressT num)
252b5132 2396{
65879393 2397 return num + 0x8000 <= 0xffff;
47926f60 2398}
2a962e6d 2399
3e73aa7c 2400static INLINE int
65879393 2401fits_in_signed_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2402{
2403#ifndef BFD64
2404 return 1;
2405#else
65879393 2406 return num + 0x80000000 <= 0xffffffff;
3e73aa7c
JH
2407#endif
2408} /* fits_in_signed_long() */
2a962e6d 2409
3e73aa7c 2410static INLINE int
65879393 2411fits_in_unsigned_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2412{
2413#ifndef BFD64
2414 return 1;
2415#else
65879393 2416 return num <= 0xffffffff;
3e73aa7c
JH
2417#endif
2418} /* fits_in_unsigned_long() */
252b5132 2419
43234a1e 2420static INLINE int
b5014f7a 2421fits_in_disp8 (offsetT num)
43234a1e
L
2422{
2423 int shift = i.memshift;
2424 unsigned int mask;
2425
2426 if (shift == -1)
2427 abort ();
2428
2429 mask = (1 << shift) - 1;
2430
2431 /* Return 0 if NUM isn't properly aligned. */
2432 if ((num & mask))
2433 return 0;
2434
2435 /* Check if NUM will fit in 8bit after shift. */
2436 return fits_in_signed_byte (num >> shift);
2437}
2438
a683cc34
SP
2439static INLINE int
2440fits_in_imm4 (offsetT num)
2441{
2442 return (num & 0xf) == num;
2443}
2444
40fb9820 2445static i386_operand_type
e3bb37b5 2446smallest_imm_type (offsetT num)
252b5132 2447{
40fb9820 2448 i386_operand_type t;
7ab9ffdd 2449
0dfbf9d7 2450 operand_type_set (&t, 0);
40fb9820
L
2451 t.bitfield.imm64 = 1;
2452
2453 if (cpu_arch_tune != PROCESSOR_I486 && num == 1)
e413e4e9
AM
2454 {
2455 /* This code is disabled on the 486 because all the Imm1 forms
2456 in the opcode table are slower on the i486. They're the
2457 versions with the implicitly specified single-position
2458 displacement, which has another syntax if you really want to
2459 use that form. */
40fb9820
L
2460 t.bitfield.imm1 = 1;
2461 t.bitfield.imm8 = 1;
2462 t.bitfield.imm8s = 1;
2463 t.bitfield.imm16 = 1;
2464 t.bitfield.imm32 = 1;
2465 t.bitfield.imm32s = 1;
2466 }
2467 else if (fits_in_signed_byte (num))
2468 {
2469 t.bitfield.imm8 = 1;
2470 t.bitfield.imm8s = 1;
2471 t.bitfield.imm16 = 1;
2472 t.bitfield.imm32 = 1;
2473 t.bitfield.imm32s = 1;
2474 }
2475 else if (fits_in_unsigned_byte (num))
2476 {
2477 t.bitfield.imm8 = 1;
2478 t.bitfield.imm16 = 1;
2479 t.bitfield.imm32 = 1;
2480 t.bitfield.imm32s = 1;
2481 }
2482 else if (fits_in_signed_word (num) || fits_in_unsigned_word (num))
2483 {
2484 t.bitfield.imm16 = 1;
2485 t.bitfield.imm32 = 1;
2486 t.bitfield.imm32s = 1;
2487 }
2488 else if (fits_in_signed_long (num))
2489 {
2490 t.bitfield.imm32 = 1;
2491 t.bitfield.imm32s = 1;
2492 }
2493 else if (fits_in_unsigned_long (num))
2494 t.bitfield.imm32 = 1;
2495
2496 return t;
47926f60 2497}
252b5132 2498
847f7ad4 2499static offsetT
e3bb37b5 2500offset_in_range (offsetT val, int size)
847f7ad4 2501{
508866be 2502 addressT mask;
ba2adb93 2503
847f7ad4
AM
2504 switch (size)
2505 {
508866be
L
2506 case 1: mask = ((addressT) 1 << 8) - 1; break;
2507 case 2: mask = ((addressT) 1 << 16) - 1; break;
3b0ec529 2508 case 4: mask = ((addressT) 2 << 31) - 1; break;
3e73aa7c
JH
2509#ifdef BFD64
2510 case 8: mask = ((addressT) 2 << 63) - 1; break;
2511#endif
47926f60 2512 default: abort ();
847f7ad4
AM
2513 }
2514
9de868bf
L
2515#ifdef BFD64
2516 /* If BFD64, sign extend val for 32bit address mode. */
2517 if (flag_code != CODE_64BIT
2518 || i.prefix[ADDR_PREFIX])
3e73aa7c
JH
2519 if ((val & ~(((addressT) 2 << 31) - 1)) == 0)
2520 val = (val ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
fa289fb8 2521#endif
ba2adb93 2522
47926f60 2523 if ((val & ~mask) != 0 && (val & ~mask) != ~mask)
847f7ad4
AM
2524 {
2525 char buf1[40], buf2[40];
2526
2527 sprint_value (buf1, val);
2528 sprint_value (buf2, val & mask);
2529 as_warn (_("%s shortened to %s"), buf1, buf2);
2530 }
2531 return val & mask;
2532}
2533
c32fa91d
L
2534enum PREFIX_GROUP
2535{
2536 PREFIX_EXIST = 0,
2537 PREFIX_LOCK,
2538 PREFIX_REP,
04ef582a 2539 PREFIX_DS,
c32fa91d
L
2540 PREFIX_OTHER
2541};
2542
2543/* Returns
2544 a. PREFIX_EXIST if attempting to add a prefix where one from the
2545 same class already exists.
2546 b. PREFIX_LOCK if lock prefix is added.
2547 c. PREFIX_REP if rep/repne prefix is added.
04ef582a
L
2548 d. PREFIX_DS if ds prefix is added.
2549 e. PREFIX_OTHER if other prefix is added.
c32fa91d
L
2550 */
2551
2552static enum PREFIX_GROUP
e3bb37b5 2553add_prefix (unsigned int prefix)
252b5132 2554{
c32fa91d 2555 enum PREFIX_GROUP ret = PREFIX_OTHER;
b1905489 2556 unsigned int q;
252b5132 2557
29b0f896
AM
2558 if (prefix >= REX_OPCODE && prefix < REX_OPCODE + 16
2559 && flag_code == CODE_64BIT)
b1905489 2560 {
161a04f6 2561 if ((i.prefix[REX_PREFIX] & prefix & REX_W)
44846f29
JB
2562 || (i.prefix[REX_PREFIX] & prefix & REX_R)
2563 || (i.prefix[REX_PREFIX] & prefix & REX_X)
2564 || (i.prefix[REX_PREFIX] & prefix & REX_B))
c32fa91d 2565 ret = PREFIX_EXIST;
b1905489
JB
2566 q = REX_PREFIX;
2567 }
3e73aa7c 2568 else
b1905489
JB
2569 {
2570 switch (prefix)
2571 {
2572 default:
2573 abort ();
2574
b1905489 2575 case DS_PREFIX_OPCODE:
04ef582a
L
2576 ret = PREFIX_DS;
2577 /* Fall through. */
2578 case CS_PREFIX_OPCODE:
b1905489
JB
2579 case ES_PREFIX_OPCODE:
2580 case FS_PREFIX_OPCODE:
2581 case GS_PREFIX_OPCODE:
2582 case SS_PREFIX_OPCODE:
2583 q = SEG_PREFIX;
2584 break;
2585
2586 case REPNE_PREFIX_OPCODE:
2587 case REPE_PREFIX_OPCODE:
c32fa91d
L
2588 q = REP_PREFIX;
2589 ret = PREFIX_REP;
2590 break;
2591
b1905489 2592 case LOCK_PREFIX_OPCODE:
c32fa91d
L
2593 q = LOCK_PREFIX;
2594 ret = PREFIX_LOCK;
b1905489
JB
2595 break;
2596
2597 case FWAIT_OPCODE:
2598 q = WAIT_PREFIX;
2599 break;
2600
2601 case ADDR_PREFIX_OPCODE:
2602 q = ADDR_PREFIX;
2603 break;
2604
2605 case DATA_PREFIX_OPCODE:
2606 q = DATA_PREFIX;
2607 break;
2608 }
2609 if (i.prefix[q] != 0)
c32fa91d 2610 ret = PREFIX_EXIST;
b1905489 2611 }
252b5132 2612
b1905489 2613 if (ret)
252b5132 2614 {
b1905489
JB
2615 if (!i.prefix[q])
2616 ++i.prefixes;
2617 i.prefix[q] |= prefix;
252b5132 2618 }
b1905489
JB
2619 else
2620 as_bad (_("same type of prefix used twice"));
252b5132 2621
252b5132
RH
2622 return ret;
2623}
2624
2625static void
78f12dd3 2626update_code_flag (int value, int check)
eecb386c 2627{
78f12dd3
L
2628 PRINTF_LIKE ((*as_error));
2629
1e9cc1c2 2630 flag_code = (enum flag_code) value;
40fb9820
L
2631 if (flag_code == CODE_64BIT)
2632 {
2633 cpu_arch_flags.bitfield.cpu64 = 1;
2634 cpu_arch_flags.bitfield.cpuno64 = 0;
40fb9820
L
2635 }
2636 else
2637 {
2638 cpu_arch_flags.bitfield.cpu64 = 0;
2639 cpu_arch_flags.bitfield.cpuno64 = 1;
40fb9820
L
2640 }
2641 if (value == CODE_64BIT && !cpu_arch_flags.bitfield.cpulm )
3e73aa7c 2642 {
78f12dd3
L
2643 if (check)
2644 as_error = as_fatal;
2645 else
2646 as_error = as_bad;
2647 (*as_error) (_("64bit mode not supported on `%s'."),
2648 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2649 }
40fb9820 2650 if (value == CODE_32BIT && !cpu_arch_flags.bitfield.cpui386)
3e73aa7c 2651 {
78f12dd3
L
2652 if (check)
2653 as_error = as_fatal;
2654 else
2655 as_error = as_bad;
2656 (*as_error) (_("32bit mode not supported on `%s'."),
2657 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2658 }
eecb386c
AM
2659 stackop_size = '\0';
2660}
2661
78f12dd3
L
2662static void
2663set_code_flag (int value)
2664{
2665 update_code_flag (value, 0);
2666}
2667
eecb386c 2668static void
e3bb37b5 2669set_16bit_gcc_code_flag (int new_code_flag)
252b5132 2670{
1e9cc1c2 2671 flag_code = (enum flag_code) new_code_flag;
40fb9820
L
2672 if (flag_code != CODE_16BIT)
2673 abort ();
2674 cpu_arch_flags.bitfield.cpu64 = 0;
2675 cpu_arch_flags.bitfield.cpuno64 = 1;
9306ca4a 2676 stackop_size = LONG_MNEM_SUFFIX;
252b5132
RH
2677}
2678
2679static void
e3bb37b5 2680set_intel_syntax (int syntax_flag)
252b5132
RH
2681{
2682 /* Find out if register prefixing is specified. */
2683 int ask_naked_reg = 0;
2684
2685 SKIP_WHITESPACE ();
29b0f896 2686 if (!is_end_of_line[(unsigned char) *input_line_pointer])
252b5132 2687 {
d02603dc
NC
2688 char *string;
2689 int e = get_symbol_name (&string);
252b5132 2690
47926f60 2691 if (strcmp (string, "prefix") == 0)
252b5132 2692 ask_naked_reg = 1;
47926f60 2693 else if (strcmp (string, "noprefix") == 0)
252b5132
RH
2694 ask_naked_reg = -1;
2695 else
d0b47220 2696 as_bad (_("bad argument to syntax directive."));
d02603dc 2697 (void) restore_line_pointer (e);
252b5132
RH
2698 }
2699 demand_empty_rest_of_line ();
c3332e24 2700
252b5132
RH
2701 intel_syntax = syntax_flag;
2702
2703 if (ask_naked_reg == 0)
f86103b7
AM
2704 allow_naked_reg = (intel_syntax
2705 && (bfd_get_symbol_leading_char (stdoutput) != '\0'));
252b5132
RH
2706 else
2707 allow_naked_reg = (ask_naked_reg < 0);
9306ca4a 2708
ee86248c 2709 expr_set_rank (O_full_ptr, syntax_flag ? 10 : 0);
7ab9ffdd 2710
e4a3b5a4 2711 identifier_chars['%'] = intel_syntax && allow_naked_reg ? '%' : 0;
9306ca4a 2712 identifier_chars['$'] = intel_syntax ? '$' : 0;
e4a3b5a4 2713 register_prefix = allow_naked_reg ? "" : "%";
252b5132
RH
2714}
2715
1efbbeb4
L
2716static void
2717set_intel_mnemonic (int mnemonic_flag)
2718{
e1d4d893 2719 intel_mnemonic = mnemonic_flag;
1efbbeb4
L
2720}
2721
db51cc60
L
2722static void
2723set_allow_index_reg (int flag)
2724{
2725 allow_index_reg = flag;
2726}
2727
cb19c032 2728static void
7bab8ab5 2729set_check (int what)
cb19c032 2730{
7bab8ab5
JB
2731 enum check_kind *kind;
2732 const char *str;
2733
2734 if (what)
2735 {
2736 kind = &operand_check;
2737 str = "operand";
2738 }
2739 else
2740 {
2741 kind = &sse_check;
2742 str = "sse";
2743 }
2744
cb19c032
L
2745 SKIP_WHITESPACE ();
2746
2747 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2748 {
d02603dc
NC
2749 char *string;
2750 int e = get_symbol_name (&string);
cb19c032
L
2751
2752 if (strcmp (string, "none") == 0)
7bab8ab5 2753 *kind = check_none;
cb19c032 2754 else if (strcmp (string, "warning") == 0)
7bab8ab5 2755 *kind = check_warning;
cb19c032 2756 else if (strcmp (string, "error") == 0)
7bab8ab5 2757 *kind = check_error;
cb19c032 2758 else
7bab8ab5 2759 as_bad (_("bad argument to %s_check directive."), str);
d02603dc 2760 (void) restore_line_pointer (e);
cb19c032
L
2761 }
2762 else
7bab8ab5 2763 as_bad (_("missing argument for %s_check directive"), str);
cb19c032
L
2764
2765 demand_empty_rest_of_line ();
2766}
2767
8a9036a4
L
2768static void
2769check_cpu_arch_compatible (const char *name ATTRIBUTE_UNUSED,
1e9cc1c2 2770 i386_cpu_flags new_flag ATTRIBUTE_UNUSED)
8a9036a4
L
2771{
2772#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2773 static const char *arch;
2774
2775 /* Intel LIOM is only supported on ELF. */
2776 if (!IS_ELF)
2777 return;
2778
2779 if (!arch)
2780 {
2781 /* Use cpu_arch_name if it is set in md_parse_option. Otherwise
2782 use default_arch. */
2783 arch = cpu_arch_name;
2784 if (!arch)
2785 arch = default_arch;
2786 }
2787
81486035
L
2788 /* If we are targeting Intel MCU, we must enable it. */
2789 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_IAMCU
2790 || new_flag.bitfield.cpuiamcu)
2791 return;
2792
3632d14b 2793 /* If we are targeting Intel L1OM, we must enable it. */
8a9036a4 2794 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_L1OM
1e9cc1c2 2795 || new_flag.bitfield.cpul1om)
8a9036a4 2796 return;
76ba9986 2797
7a9068fe
L
2798 /* If we are targeting Intel K1OM, we must enable it. */
2799 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_K1OM
2800 || new_flag.bitfield.cpuk1om)
2801 return;
2802
8a9036a4
L
2803 as_bad (_("`%s' is not supported on `%s'"), name, arch);
2804#endif
2805}
2806
e413e4e9 2807static void
e3bb37b5 2808set_cpu_arch (int dummy ATTRIBUTE_UNUSED)
e413e4e9 2809{
47926f60 2810 SKIP_WHITESPACE ();
e413e4e9 2811
29b0f896 2812 if (!is_end_of_line[(unsigned char) *input_line_pointer])
e413e4e9 2813 {
d02603dc
NC
2814 char *string;
2815 int e = get_symbol_name (&string);
91d6fa6a 2816 unsigned int j;
40fb9820 2817 i386_cpu_flags flags;
e413e4e9 2818
91d6fa6a 2819 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
e413e4e9 2820 {
91d6fa6a 2821 if (strcmp (string, cpu_arch[j].name) == 0)
e413e4e9 2822 {
91d6fa6a 2823 check_cpu_arch_compatible (string, cpu_arch[j].flags);
8a9036a4 2824
5c6af06e
JB
2825 if (*string != '.')
2826 {
91d6fa6a 2827 cpu_arch_name = cpu_arch[j].name;
5c6af06e 2828 cpu_sub_arch_name = NULL;
91d6fa6a 2829 cpu_arch_flags = cpu_arch[j].flags;
40fb9820
L
2830 if (flag_code == CODE_64BIT)
2831 {
2832 cpu_arch_flags.bitfield.cpu64 = 1;
2833 cpu_arch_flags.bitfield.cpuno64 = 0;
2834 }
2835 else
2836 {
2837 cpu_arch_flags.bitfield.cpu64 = 0;
2838 cpu_arch_flags.bitfield.cpuno64 = 1;
2839 }
91d6fa6a
NC
2840 cpu_arch_isa = cpu_arch[j].type;
2841 cpu_arch_isa_flags = cpu_arch[j].flags;
ccc9c027
L
2842 if (!cpu_arch_tune_set)
2843 {
2844 cpu_arch_tune = cpu_arch_isa;
2845 cpu_arch_tune_flags = cpu_arch_isa_flags;
2846 }
5c6af06e
JB
2847 break;
2848 }
40fb9820 2849
293f5f65
L
2850 flags = cpu_flags_or (cpu_arch_flags,
2851 cpu_arch[j].flags);
81486035 2852
5b64d091 2853 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
5c6af06e 2854 {
6305a203
L
2855 if (cpu_sub_arch_name)
2856 {
2857 char *name = cpu_sub_arch_name;
2858 cpu_sub_arch_name = concat (name,
91d6fa6a 2859 cpu_arch[j].name,
1bf57e9f 2860 (const char *) NULL);
6305a203
L
2861 free (name);
2862 }
2863 else
91d6fa6a 2864 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
40fb9820 2865 cpu_arch_flags = flags;
a586129e 2866 cpu_arch_isa_flags = flags;
5c6af06e 2867 }
0089dace
L
2868 else
2869 cpu_arch_isa_flags
2870 = cpu_flags_or (cpu_arch_isa_flags,
2871 cpu_arch[j].flags);
d02603dc 2872 (void) restore_line_pointer (e);
5c6af06e
JB
2873 demand_empty_rest_of_line ();
2874 return;
e413e4e9
AM
2875 }
2876 }
293f5f65
L
2877
2878 if (*string == '.' && j >= ARRAY_SIZE (cpu_arch))
2879 {
33eaf5de 2880 /* Disable an ISA extension. */
293f5f65
L
2881 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
2882 if (strcmp (string + 1, cpu_noarch [j].name) == 0)
2883 {
2884 flags = cpu_flags_and_not (cpu_arch_flags,
2885 cpu_noarch[j].flags);
2886 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
2887 {
2888 if (cpu_sub_arch_name)
2889 {
2890 char *name = cpu_sub_arch_name;
2891 cpu_sub_arch_name = concat (name, string,
2892 (const char *) NULL);
2893 free (name);
2894 }
2895 else
2896 cpu_sub_arch_name = xstrdup (string);
2897 cpu_arch_flags = flags;
2898 cpu_arch_isa_flags = flags;
2899 }
2900 (void) restore_line_pointer (e);
2901 demand_empty_rest_of_line ();
2902 return;
2903 }
2904
2905 j = ARRAY_SIZE (cpu_arch);
2906 }
2907
91d6fa6a 2908 if (j >= ARRAY_SIZE (cpu_arch))
e413e4e9
AM
2909 as_bad (_("no such architecture: `%s'"), string);
2910
2911 *input_line_pointer = e;
2912 }
2913 else
2914 as_bad (_("missing cpu architecture"));
2915
fddf5b5b
AM
2916 no_cond_jump_promotion = 0;
2917 if (*input_line_pointer == ','
29b0f896 2918 && !is_end_of_line[(unsigned char) input_line_pointer[1]])
fddf5b5b 2919 {
d02603dc
NC
2920 char *string;
2921 char e;
2922
2923 ++input_line_pointer;
2924 e = get_symbol_name (&string);
fddf5b5b
AM
2925
2926 if (strcmp (string, "nojumps") == 0)
2927 no_cond_jump_promotion = 1;
2928 else if (strcmp (string, "jumps") == 0)
2929 ;
2930 else
2931 as_bad (_("no such architecture modifier: `%s'"), string);
2932
d02603dc 2933 (void) restore_line_pointer (e);
fddf5b5b
AM
2934 }
2935
e413e4e9
AM
2936 demand_empty_rest_of_line ();
2937}
2938
8a9036a4
L
2939enum bfd_architecture
2940i386_arch (void)
2941{
3632d14b 2942 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4
L
2943 {
2944 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2945 || flag_code != CODE_64BIT)
2946 as_fatal (_("Intel L1OM is 64bit ELF only"));
2947 return bfd_arch_l1om;
2948 }
7a9068fe
L
2949 else if (cpu_arch_isa == PROCESSOR_K1OM)
2950 {
2951 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2952 || flag_code != CODE_64BIT)
2953 as_fatal (_("Intel K1OM is 64bit ELF only"));
2954 return bfd_arch_k1om;
2955 }
81486035
L
2956 else if (cpu_arch_isa == PROCESSOR_IAMCU)
2957 {
2958 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2959 || flag_code == CODE_64BIT)
2960 as_fatal (_("Intel MCU is 32bit ELF only"));
2961 return bfd_arch_iamcu;
2962 }
8a9036a4
L
2963 else
2964 return bfd_arch_i386;
2965}
2966
b9d79e03 2967unsigned long
7016a5d5 2968i386_mach (void)
b9d79e03 2969{
351f65ca 2970 if (!strncmp (default_arch, "x86_64", 6))
8a9036a4 2971 {
3632d14b 2972 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 2973 {
351f65ca
L
2974 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2975 || default_arch[6] != '\0')
8a9036a4
L
2976 as_fatal (_("Intel L1OM is 64bit ELF only"));
2977 return bfd_mach_l1om;
2978 }
7a9068fe
L
2979 else if (cpu_arch_isa == PROCESSOR_K1OM)
2980 {
2981 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2982 || default_arch[6] != '\0')
2983 as_fatal (_("Intel K1OM is 64bit ELF only"));
2984 return bfd_mach_k1om;
2985 }
351f65ca 2986 else if (default_arch[6] == '\0')
8a9036a4 2987 return bfd_mach_x86_64;
351f65ca
L
2988 else
2989 return bfd_mach_x64_32;
8a9036a4 2990 }
5197d474
L
2991 else if (!strcmp (default_arch, "i386")
2992 || !strcmp (default_arch, "iamcu"))
81486035
L
2993 {
2994 if (cpu_arch_isa == PROCESSOR_IAMCU)
2995 {
2996 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
2997 as_fatal (_("Intel MCU is 32bit ELF only"));
2998 return bfd_mach_i386_iamcu;
2999 }
3000 else
3001 return bfd_mach_i386_i386;
3002 }
b9d79e03 3003 else
2b5d6a91 3004 as_fatal (_("unknown architecture"));
b9d79e03 3005}
b9d79e03 3006\f
252b5132 3007void
7016a5d5 3008md_begin (void)
252b5132
RH
3009{
3010 const char *hash_err;
3011
86fa6981
L
3012 /* Support pseudo prefixes like {disp32}. */
3013 lex_type ['{'] = LEX_BEGIN_NAME;
3014
47926f60 3015 /* Initialize op_hash hash table. */
252b5132
RH
3016 op_hash = hash_new ();
3017
3018 {
d3ce72d0 3019 const insn_template *optab;
29b0f896 3020 templates *core_optab;
252b5132 3021
47926f60
KH
3022 /* Setup for loop. */
3023 optab = i386_optab;
add39d23 3024 core_optab = XNEW (templates);
252b5132
RH
3025 core_optab->start = optab;
3026
3027 while (1)
3028 {
3029 ++optab;
3030 if (optab->name == NULL
3031 || strcmp (optab->name, (optab - 1)->name) != 0)
3032 {
3033 /* different name --> ship out current template list;
47926f60 3034 add to hash table; & begin anew. */
252b5132
RH
3035 core_optab->end = optab;
3036 hash_err = hash_insert (op_hash,
3037 (optab - 1)->name,
5a49b8ac 3038 (void *) core_optab);
252b5132
RH
3039 if (hash_err)
3040 {
b37df7c4 3041 as_fatal (_("can't hash %s: %s"),
252b5132
RH
3042 (optab - 1)->name,
3043 hash_err);
3044 }
3045 if (optab->name == NULL)
3046 break;
add39d23 3047 core_optab = XNEW (templates);
252b5132
RH
3048 core_optab->start = optab;
3049 }
3050 }
3051 }
3052
47926f60 3053 /* Initialize reg_hash hash table. */
252b5132
RH
3054 reg_hash = hash_new ();
3055 {
29b0f896 3056 const reg_entry *regtab;
c3fe08fa 3057 unsigned int regtab_size = i386_regtab_size;
252b5132 3058
c3fe08fa 3059 for (regtab = i386_regtab; regtab_size--; regtab++)
252b5132 3060 {
5a49b8ac 3061 hash_err = hash_insert (reg_hash, regtab->reg_name, (void *) regtab);
252b5132 3062 if (hash_err)
b37df7c4 3063 as_fatal (_("can't hash %s: %s"),
3e73aa7c
JH
3064 regtab->reg_name,
3065 hash_err);
252b5132
RH
3066 }
3067 }
3068
47926f60 3069 /* Fill in lexical tables: mnemonic_chars, operand_chars. */
252b5132 3070 {
29b0f896
AM
3071 int c;
3072 char *p;
252b5132
RH
3073
3074 for (c = 0; c < 256; c++)
3075 {
3882b010 3076 if (ISDIGIT (c))
252b5132
RH
3077 {
3078 digit_chars[c] = c;
3079 mnemonic_chars[c] = c;
3080 register_chars[c] = c;
3081 operand_chars[c] = c;
3082 }
3882b010 3083 else if (ISLOWER (c))
252b5132
RH
3084 {
3085 mnemonic_chars[c] = c;
3086 register_chars[c] = c;
3087 operand_chars[c] = c;
3088 }
3882b010 3089 else if (ISUPPER (c))
252b5132 3090 {
3882b010 3091 mnemonic_chars[c] = TOLOWER (c);
252b5132
RH
3092 register_chars[c] = mnemonic_chars[c];
3093 operand_chars[c] = c;
3094 }
43234a1e 3095 else if (c == '{' || c == '}')
86fa6981
L
3096 {
3097 mnemonic_chars[c] = c;
3098 operand_chars[c] = c;
3099 }
252b5132 3100
3882b010 3101 if (ISALPHA (c) || ISDIGIT (c))
252b5132
RH
3102 identifier_chars[c] = c;
3103 else if (c >= 128)
3104 {
3105 identifier_chars[c] = c;
3106 operand_chars[c] = c;
3107 }
3108 }
3109
3110#ifdef LEX_AT
3111 identifier_chars['@'] = '@';
32137342
NC
3112#endif
3113#ifdef LEX_QM
3114 identifier_chars['?'] = '?';
3115 operand_chars['?'] = '?';
252b5132 3116#endif
252b5132 3117 digit_chars['-'] = '-';
c0f3af97 3118 mnemonic_chars['_'] = '_';
791fe849 3119 mnemonic_chars['-'] = '-';
0003779b 3120 mnemonic_chars['.'] = '.';
252b5132
RH
3121 identifier_chars['_'] = '_';
3122 identifier_chars['.'] = '.';
3123
3124 for (p = operand_special_chars; *p != '\0'; p++)
3125 operand_chars[(unsigned char) *p] = *p;
3126 }
3127
a4447b93
RH
3128 if (flag_code == CODE_64BIT)
3129 {
ca19b261
KT
3130#if defined (OBJ_COFF) && defined (TE_PE)
3131 x86_dwarf2_return_column = (OUTPUT_FLAVOR == bfd_target_coff_flavour
3132 ? 32 : 16);
3133#else
a4447b93 3134 x86_dwarf2_return_column = 16;
ca19b261 3135#endif
61ff971f 3136 x86_cie_data_alignment = -8;
a4447b93
RH
3137 }
3138 else
3139 {
3140 x86_dwarf2_return_column = 8;
3141 x86_cie_data_alignment = -4;
3142 }
e379e5f3
L
3143
3144 /* NB: FUSED_JCC_PADDING frag must have sufficient room so that it
3145 can be turned into BRANCH_PREFIX frag. */
3146 if (align_branch_prefix_size > MAX_FUSED_JCC_PADDING_SIZE)
3147 abort ();
252b5132
RH
3148}
3149
3150void
e3bb37b5 3151i386_print_statistics (FILE *file)
252b5132
RH
3152{
3153 hash_print_statistics (file, "i386 opcode", op_hash);
3154 hash_print_statistics (file, "i386 register", reg_hash);
3155}
3156\f
252b5132
RH
3157#ifdef DEBUG386
3158
ce8a8b2f 3159/* Debugging routines for md_assemble. */
d3ce72d0 3160static void pte (insn_template *);
40fb9820 3161static void pt (i386_operand_type);
e3bb37b5
L
3162static void pe (expressionS *);
3163static void ps (symbolS *);
252b5132
RH
3164
3165static void
2c703856 3166pi (const char *line, i386_insn *x)
252b5132 3167{
09137c09 3168 unsigned int j;
252b5132
RH
3169
3170 fprintf (stdout, "%s: template ", line);
3171 pte (&x->tm);
09f131f2
JH
3172 fprintf (stdout, " address: base %s index %s scale %x\n",
3173 x->base_reg ? x->base_reg->reg_name : "none",
3174 x->index_reg ? x->index_reg->reg_name : "none",
3175 x->log2_scale_factor);
3176 fprintf (stdout, " modrm: mode %x reg %x reg/mem %x\n",
252b5132 3177 x->rm.mode, x->rm.reg, x->rm.regmem);
09f131f2
JH
3178 fprintf (stdout, " sib: base %x index %x scale %x\n",
3179 x->sib.base, x->sib.index, x->sib.scale);
3180 fprintf (stdout, " rex: 64bit %x extX %x extY %x extZ %x\n",
161a04f6
L
3181 (x->rex & REX_W) != 0,
3182 (x->rex & REX_R) != 0,
3183 (x->rex & REX_X) != 0,
3184 (x->rex & REX_B) != 0);
09137c09 3185 for (j = 0; j < x->operands; j++)
252b5132 3186 {
09137c09
SP
3187 fprintf (stdout, " #%d: ", j + 1);
3188 pt (x->types[j]);
252b5132 3189 fprintf (stdout, "\n");
bab6aec1 3190 if (x->types[j].bitfield.class == Reg
3528c362
JB
3191 || x->types[j].bitfield.class == RegMMX
3192 || x->types[j].bitfield.class == RegSIMD
00cee14f 3193 || x->types[j].bitfield.class == SReg
4a5c67ed
JB
3194 || x->types[j].bitfield.class == RegCR
3195 || x->types[j].bitfield.class == RegDR
3196 || x->types[j].bitfield.class == RegTR)
09137c09
SP
3197 fprintf (stdout, "%s\n", x->op[j].regs->reg_name);
3198 if (operand_type_check (x->types[j], imm))
3199 pe (x->op[j].imms);
3200 if (operand_type_check (x->types[j], disp))
3201 pe (x->op[j].disps);
252b5132
RH
3202 }
3203}
3204
3205static void
d3ce72d0 3206pte (insn_template *t)
252b5132 3207{
09137c09 3208 unsigned int j;
252b5132 3209 fprintf (stdout, " %d operands ", t->operands);
47926f60 3210 fprintf (stdout, "opcode %x ", t->base_opcode);
252b5132
RH
3211 if (t->extension_opcode != None)
3212 fprintf (stdout, "ext %x ", t->extension_opcode);
40fb9820 3213 if (t->opcode_modifier.d)
252b5132 3214 fprintf (stdout, "D");
40fb9820 3215 if (t->opcode_modifier.w)
252b5132
RH
3216 fprintf (stdout, "W");
3217 fprintf (stdout, "\n");
09137c09 3218 for (j = 0; j < t->operands; j++)
252b5132 3219 {
09137c09
SP
3220 fprintf (stdout, " #%d type ", j + 1);
3221 pt (t->operand_types[j]);
252b5132
RH
3222 fprintf (stdout, "\n");
3223 }
3224}
3225
3226static void
e3bb37b5 3227pe (expressionS *e)
252b5132 3228{
24eab124 3229 fprintf (stdout, " operation %d\n", e->X_op);
b77ad1d4
AM
3230 fprintf (stdout, " add_number %ld (%lx)\n",
3231 (long) e->X_add_number, (long) e->X_add_number);
252b5132
RH
3232 if (e->X_add_symbol)
3233 {
3234 fprintf (stdout, " add_symbol ");
3235 ps (e->X_add_symbol);
3236 fprintf (stdout, "\n");
3237 }
3238 if (e->X_op_symbol)
3239 {
3240 fprintf (stdout, " op_symbol ");
3241 ps (e->X_op_symbol);
3242 fprintf (stdout, "\n");
3243 }
3244}
3245
3246static void
e3bb37b5 3247ps (symbolS *s)
252b5132
RH
3248{
3249 fprintf (stdout, "%s type %s%s",
3250 S_GET_NAME (s),
3251 S_IS_EXTERNAL (s) ? "EXTERNAL " : "",
3252 segment_name (S_GET_SEGMENT (s)));
3253}
3254
7b81dfbb 3255static struct type_name
252b5132 3256 {
40fb9820
L
3257 i386_operand_type mask;
3258 const char *name;
252b5132 3259 }
7b81dfbb 3260const type_names[] =
252b5132 3261{
40fb9820
L
3262 { OPERAND_TYPE_REG8, "r8" },
3263 { OPERAND_TYPE_REG16, "r16" },
3264 { OPERAND_TYPE_REG32, "r32" },
3265 { OPERAND_TYPE_REG64, "r64" },
2c703856
JB
3266 { OPERAND_TYPE_ACC8, "acc8" },
3267 { OPERAND_TYPE_ACC16, "acc16" },
3268 { OPERAND_TYPE_ACC32, "acc32" },
3269 { OPERAND_TYPE_ACC64, "acc64" },
40fb9820
L
3270 { OPERAND_TYPE_IMM8, "i8" },
3271 { OPERAND_TYPE_IMM8, "i8s" },
3272 { OPERAND_TYPE_IMM16, "i16" },
3273 { OPERAND_TYPE_IMM32, "i32" },
3274 { OPERAND_TYPE_IMM32S, "i32s" },
3275 { OPERAND_TYPE_IMM64, "i64" },
3276 { OPERAND_TYPE_IMM1, "i1" },
3277 { OPERAND_TYPE_BASEINDEX, "BaseIndex" },
3278 { OPERAND_TYPE_DISP8, "d8" },
3279 { OPERAND_TYPE_DISP16, "d16" },
3280 { OPERAND_TYPE_DISP32, "d32" },
3281 { OPERAND_TYPE_DISP32S, "d32s" },
3282 { OPERAND_TYPE_DISP64, "d64" },
3283 { OPERAND_TYPE_INOUTPORTREG, "InOutPortReg" },
3284 { OPERAND_TYPE_SHIFTCOUNT, "ShiftCount" },
3285 { OPERAND_TYPE_CONTROL, "control reg" },
3286 { OPERAND_TYPE_TEST, "test reg" },
3287 { OPERAND_TYPE_DEBUG, "debug reg" },
3288 { OPERAND_TYPE_FLOATREG, "FReg" },
3289 { OPERAND_TYPE_FLOATACC, "FAcc" },
21df382b 3290 { OPERAND_TYPE_SREG, "SReg" },
40fb9820
L
3291 { OPERAND_TYPE_REGMMX, "rMMX" },
3292 { OPERAND_TYPE_REGXMM, "rXMM" },
0349dc08 3293 { OPERAND_TYPE_REGYMM, "rYMM" },
43234a1e
L
3294 { OPERAND_TYPE_REGZMM, "rZMM" },
3295 { OPERAND_TYPE_REGMASK, "Mask reg" },
252b5132
RH
3296};
3297
3298static void
40fb9820 3299pt (i386_operand_type t)
252b5132 3300{
40fb9820 3301 unsigned int j;
c6fb90c8 3302 i386_operand_type a;
252b5132 3303
40fb9820 3304 for (j = 0; j < ARRAY_SIZE (type_names); j++)
c6fb90c8
L
3305 {
3306 a = operand_type_and (t, type_names[j].mask);
2c703856 3307 if (operand_type_equal (&a, &type_names[j].mask))
c6fb90c8
L
3308 fprintf (stdout, "%s, ", type_names[j].name);
3309 }
252b5132
RH
3310 fflush (stdout);
3311}
3312
3313#endif /* DEBUG386 */
3314\f
252b5132 3315static bfd_reloc_code_real_type
3956db08 3316reloc (unsigned int size,
64e74474
AM
3317 int pcrel,
3318 int sign,
3319 bfd_reloc_code_real_type other)
252b5132 3320{
47926f60 3321 if (other != NO_RELOC)
3956db08 3322 {
91d6fa6a 3323 reloc_howto_type *rel;
3956db08
JB
3324
3325 if (size == 8)
3326 switch (other)
3327 {
64e74474
AM
3328 case BFD_RELOC_X86_64_GOT32:
3329 return BFD_RELOC_X86_64_GOT64;
3330 break;
553d1284
L
3331 case BFD_RELOC_X86_64_GOTPLT64:
3332 return BFD_RELOC_X86_64_GOTPLT64;
3333 break;
64e74474
AM
3334 case BFD_RELOC_X86_64_PLTOFF64:
3335 return BFD_RELOC_X86_64_PLTOFF64;
3336 break;
3337 case BFD_RELOC_X86_64_GOTPC32:
3338 other = BFD_RELOC_X86_64_GOTPC64;
3339 break;
3340 case BFD_RELOC_X86_64_GOTPCREL:
3341 other = BFD_RELOC_X86_64_GOTPCREL64;
3342 break;
3343 case BFD_RELOC_X86_64_TPOFF32:
3344 other = BFD_RELOC_X86_64_TPOFF64;
3345 break;
3346 case BFD_RELOC_X86_64_DTPOFF32:
3347 other = BFD_RELOC_X86_64_DTPOFF64;
3348 break;
3349 default:
3350 break;
3956db08 3351 }
e05278af 3352
8ce3d284 3353#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
3354 if (other == BFD_RELOC_SIZE32)
3355 {
3356 if (size == 8)
1ab668bf 3357 other = BFD_RELOC_SIZE64;
8fd4256d 3358 if (pcrel)
1ab668bf
AM
3359 {
3360 as_bad (_("there are no pc-relative size relocations"));
3361 return NO_RELOC;
3362 }
8fd4256d 3363 }
8ce3d284 3364#endif
8fd4256d 3365
e05278af 3366 /* Sign-checking 4-byte relocations in 16-/32-bit code is pointless. */
f2d8a97c 3367 if (size == 4 && (flag_code != CODE_64BIT || disallow_64bit_reloc))
e05278af
JB
3368 sign = -1;
3369
91d6fa6a
NC
3370 rel = bfd_reloc_type_lookup (stdoutput, other);
3371 if (!rel)
3956db08 3372 as_bad (_("unknown relocation (%u)"), other);
91d6fa6a 3373 else if (size != bfd_get_reloc_size (rel))
3956db08 3374 as_bad (_("%u-byte relocation cannot be applied to %u-byte field"),
91d6fa6a 3375 bfd_get_reloc_size (rel),
3956db08 3376 size);
91d6fa6a 3377 else if (pcrel && !rel->pc_relative)
3956db08 3378 as_bad (_("non-pc-relative relocation for pc-relative field"));
91d6fa6a 3379 else if ((rel->complain_on_overflow == complain_overflow_signed
3956db08 3380 && !sign)
91d6fa6a 3381 || (rel->complain_on_overflow == complain_overflow_unsigned
64e74474 3382 && sign > 0))
3956db08
JB
3383 as_bad (_("relocated field and relocation type differ in signedness"));
3384 else
3385 return other;
3386 return NO_RELOC;
3387 }
252b5132
RH
3388
3389 if (pcrel)
3390 {
3e73aa7c 3391 if (!sign)
3956db08 3392 as_bad (_("there are no unsigned pc-relative relocations"));
252b5132
RH
3393 switch (size)
3394 {
3395 case 1: return BFD_RELOC_8_PCREL;
3396 case 2: return BFD_RELOC_16_PCREL;
d258b828 3397 case 4: return BFD_RELOC_32_PCREL;
d6ab8113 3398 case 8: return BFD_RELOC_64_PCREL;
252b5132 3399 }
3956db08 3400 as_bad (_("cannot do %u byte pc-relative relocation"), size);
252b5132
RH
3401 }
3402 else
3403 {
3956db08 3404 if (sign > 0)
e5cb08ac 3405 switch (size)
3e73aa7c
JH
3406 {
3407 case 4: return BFD_RELOC_X86_64_32S;
3408 }
3409 else
3410 switch (size)
3411 {
3412 case 1: return BFD_RELOC_8;
3413 case 2: return BFD_RELOC_16;
3414 case 4: return BFD_RELOC_32;
3415 case 8: return BFD_RELOC_64;
3416 }
3956db08
JB
3417 as_bad (_("cannot do %s %u byte relocation"),
3418 sign > 0 ? "signed" : "unsigned", size);
252b5132
RH
3419 }
3420
0cc9e1d3 3421 return NO_RELOC;
252b5132
RH
3422}
3423
47926f60
KH
3424/* Here we decide which fixups can be adjusted to make them relative to
3425 the beginning of the section instead of the symbol. Basically we need
3426 to make sure that the dynamic relocations are done correctly, so in
3427 some cases we force the original symbol to be used. */
3428
252b5132 3429int
e3bb37b5 3430tc_i386_fix_adjustable (fixS *fixP ATTRIBUTE_UNUSED)
252b5132 3431{
6d249963 3432#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 3433 if (!IS_ELF)
31312f95
AM
3434 return 1;
3435
a161fe53
AM
3436 /* Don't adjust pc-relative references to merge sections in 64-bit
3437 mode. */
3438 if (use_rela_relocations
3439 && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0
3440 && fixP->fx_pcrel)
252b5132 3441 return 0;
31312f95 3442
8d01d9a9
AJ
3443 /* The x86_64 GOTPCREL are represented as 32bit PCrel relocations
3444 and changed later by validate_fix. */
3445 if (GOT_symbol && fixP->fx_subsy == GOT_symbol
3446 && fixP->fx_r_type == BFD_RELOC_32_PCREL)
3447 return 0;
3448
8fd4256d
L
3449 /* Adjust_reloc_syms doesn't know about the GOT. Need to keep symbol
3450 for size relocations. */
3451 if (fixP->fx_r_type == BFD_RELOC_SIZE32
3452 || fixP->fx_r_type == BFD_RELOC_SIZE64
3453 || fixP->fx_r_type == BFD_RELOC_386_GOTOFF
252b5132 3454 || fixP->fx_r_type == BFD_RELOC_386_GOT32
02a86693 3455 || fixP->fx_r_type == BFD_RELOC_386_GOT32X
13ae64f3
JJ
3456 || fixP->fx_r_type == BFD_RELOC_386_TLS_GD
3457 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDM
3458 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDO_32
3459 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE_32
37e55690
JJ
3460 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE
3461 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTIE
13ae64f3
JJ
3462 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE_32
3463 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE
67a4f2b7
AO
3464 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTDESC
3465 || fixP->fx_r_type == BFD_RELOC_386_TLS_DESC_CALL
3e73aa7c 3466 || fixP->fx_r_type == BFD_RELOC_X86_64_GOT32
80b3ee89 3467 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCREL
56ceb5b5
L
3468 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCRELX
3469 || fixP->fx_r_type == BFD_RELOC_X86_64_REX_GOTPCRELX
bffbf940
JJ
3470 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSGD
3471 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSLD
3472 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF32
d6ab8113 3473 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF64
bffbf940
JJ
3474 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTTPOFF
3475 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF32
d6ab8113
JB
3476 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF64
3477 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTOFF64
67a4f2b7
AO
3478 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPC32_TLSDESC
3479 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSDESC_CALL
252b5132
RH
3480 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
3481 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
3482 return 0;
31312f95 3483#endif
252b5132
RH
3484 return 1;
3485}
252b5132 3486
b4cac588 3487static int
e3bb37b5 3488intel_float_operand (const char *mnemonic)
252b5132 3489{
9306ca4a
JB
3490 /* Note that the value returned is meaningful only for opcodes with (memory)
3491 operands, hence the code here is free to improperly handle opcodes that
3492 have no operands (for better performance and smaller code). */
3493
3494 if (mnemonic[0] != 'f')
3495 return 0; /* non-math */
3496
3497 switch (mnemonic[1])
3498 {
3499 /* fclex, fdecstp, fdisi, femms, feni, fincstp, finit, fsetpm, and
3500 the fs segment override prefix not currently handled because no
3501 call path can make opcodes without operands get here */
3502 case 'i':
3503 return 2 /* integer op */;
3504 case 'l':
3505 if (mnemonic[2] == 'd' && (mnemonic[3] == 'c' || mnemonic[3] == 'e'))
3506 return 3; /* fldcw/fldenv */
3507 break;
3508 case 'n':
3509 if (mnemonic[2] != 'o' /* fnop */)
3510 return 3; /* non-waiting control op */
3511 break;
3512 case 'r':
3513 if (mnemonic[2] == 's')
3514 return 3; /* frstor/frstpm */
3515 break;
3516 case 's':
3517 if (mnemonic[2] == 'a')
3518 return 3; /* fsave */
3519 if (mnemonic[2] == 't')
3520 {
3521 switch (mnemonic[3])
3522 {
3523 case 'c': /* fstcw */
3524 case 'd': /* fstdw */
3525 case 'e': /* fstenv */
3526 case 's': /* fsts[gw] */
3527 return 3;
3528 }
3529 }
3530 break;
3531 case 'x':
3532 if (mnemonic[2] == 'r' || mnemonic[2] == 's')
3533 return 0; /* fxsave/fxrstor are not really math ops */
3534 break;
3535 }
252b5132 3536
9306ca4a 3537 return 1;
252b5132
RH
3538}
3539
c0f3af97
L
3540/* Build the VEX prefix. */
3541
3542static void
d3ce72d0 3543build_vex_prefix (const insn_template *t)
c0f3af97
L
3544{
3545 unsigned int register_specifier;
3546 unsigned int implied_prefix;
3547 unsigned int vector_length;
03751133 3548 unsigned int w;
c0f3af97
L
3549
3550 /* Check register specifier. */
3551 if (i.vex.register_specifier)
43234a1e
L
3552 {
3553 register_specifier =
3554 ~register_number (i.vex.register_specifier) & 0xf;
3555 gas_assert ((i.vex.register_specifier->reg_flags & RegVRex) == 0);
3556 }
c0f3af97
L
3557 else
3558 register_specifier = 0xf;
3559
79f0fa25
L
3560 /* Use 2-byte VEX prefix by swapping destination and source operand
3561 if there are more than 1 register operand. */
3562 if (i.reg_operands > 1
3563 && i.vec_encoding != vex_encoding_vex3
86fa6981 3564 && i.dir_encoding == dir_encoding_default
fa99fab2 3565 && i.operands == i.reg_operands
dbbc8b7e 3566 && operand_type_equal (&i.types[0], &i.types[i.operands - 1])
7f399153 3567 && i.tm.opcode_modifier.vexopcode == VEX0F
dbbc8b7e 3568 && (i.tm.opcode_modifier.load || i.tm.opcode_modifier.d)
fa99fab2
L
3569 && i.rex == REX_B)
3570 {
3571 unsigned int xchg = i.operands - 1;
3572 union i386_op temp_op;
3573 i386_operand_type temp_type;
3574
3575 temp_type = i.types[xchg];
3576 i.types[xchg] = i.types[0];
3577 i.types[0] = temp_type;
3578 temp_op = i.op[xchg];
3579 i.op[xchg] = i.op[0];
3580 i.op[0] = temp_op;
3581
9c2799c2 3582 gas_assert (i.rm.mode == 3);
fa99fab2
L
3583
3584 i.rex = REX_R;
3585 xchg = i.rm.regmem;
3586 i.rm.regmem = i.rm.reg;
3587 i.rm.reg = xchg;
3588
dbbc8b7e
JB
3589 if (i.tm.opcode_modifier.d)
3590 i.tm.base_opcode ^= (i.tm.base_opcode & 0xee) != 0x6e
3591 ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD;
3592 else /* Use the next insn. */
3593 i.tm = t[1];
fa99fab2
L
3594 }
3595
79dec6b7
JB
3596 /* Use 2-byte VEX prefix by swapping commutative source operands if there
3597 are no memory operands and at least 3 register ones. */
3598 if (i.reg_operands >= 3
3599 && i.vec_encoding != vex_encoding_vex3
3600 && i.reg_operands == i.operands - i.imm_operands
3601 && i.tm.opcode_modifier.vex
3602 && i.tm.opcode_modifier.commutative
3603 && (i.tm.opcode_modifier.sse2avx || optimize > 1)
3604 && i.rex == REX_B
3605 && i.vex.register_specifier
3606 && !(i.vex.register_specifier->reg_flags & RegRex))
3607 {
3608 unsigned int xchg = i.operands - i.reg_operands;
3609 union i386_op temp_op;
3610 i386_operand_type temp_type;
3611
3612 gas_assert (i.tm.opcode_modifier.vexopcode == VEX0F);
3613 gas_assert (!i.tm.opcode_modifier.sae);
3614 gas_assert (operand_type_equal (&i.types[i.operands - 2],
3615 &i.types[i.operands - 3]));
3616 gas_assert (i.rm.mode == 3);
3617
3618 temp_type = i.types[xchg];
3619 i.types[xchg] = i.types[xchg + 1];
3620 i.types[xchg + 1] = temp_type;
3621 temp_op = i.op[xchg];
3622 i.op[xchg] = i.op[xchg + 1];
3623 i.op[xchg + 1] = temp_op;
3624
3625 i.rex = 0;
3626 xchg = i.rm.regmem | 8;
3627 i.rm.regmem = ~register_specifier & 0xf;
3628 gas_assert (!(i.rm.regmem & 8));
3629 i.vex.register_specifier += xchg - i.rm.regmem;
3630 register_specifier = ~xchg & 0xf;
3631 }
3632
539f890d
L
3633 if (i.tm.opcode_modifier.vex == VEXScalar)
3634 vector_length = avxscalar;
10c17abd
JB
3635 else if (i.tm.opcode_modifier.vex == VEX256)
3636 vector_length = 1;
539f890d 3637 else
10c17abd 3638 {
56522fc5 3639 unsigned int op;
10c17abd 3640
c7213af9
L
3641 /* Determine vector length from the last multi-length vector
3642 operand. */
10c17abd 3643 vector_length = 0;
56522fc5 3644 for (op = t->operands; op--;)
10c17abd
JB
3645 if (t->operand_types[op].bitfield.xmmword
3646 && t->operand_types[op].bitfield.ymmword
3647 && i.types[op].bitfield.ymmword)
3648 {
3649 vector_length = 1;
3650 break;
3651 }
3652 }
c0f3af97
L
3653
3654 switch ((i.tm.base_opcode >> 8) & 0xff)
3655 {
3656 case 0:
3657 implied_prefix = 0;
3658 break;
3659 case DATA_PREFIX_OPCODE:
3660 implied_prefix = 1;
3661 break;
3662 case REPE_PREFIX_OPCODE:
3663 implied_prefix = 2;
3664 break;
3665 case REPNE_PREFIX_OPCODE:
3666 implied_prefix = 3;
3667 break;
3668 default:
3669 abort ();
3670 }
3671
03751133
L
3672 /* Check the REX.W bit and VEXW. */
3673 if (i.tm.opcode_modifier.vexw == VEXWIG)
3674 w = (vexwig == vexw1 || (i.rex & REX_W)) ? 1 : 0;
3675 else if (i.tm.opcode_modifier.vexw)
3676 w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0;
3677 else
931d03b7 3678 w = (flag_code == CODE_64BIT ? i.rex & REX_W : vexwig == vexw1) ? 1 : 0;
03751133 3679
c0f3af97 3680 /* Use 2-byte VEX prefix if possible. */
03751133
L
3681 if (w == 0
3682 && i.vec_encoding != vex_encoding_vex3
86fa6981 3683 && i.tm.opcode_modifier.vexopcode == VEX0F
c0f3af97
L
3684 && (i.rex & (REX_W | REX_X | REX_B)) == 0)
3685 {
3686 /* 2-byte VEX prefix. */
3687 unsigned int r;
3688
3689 i.vex.length = 2;
3690 i.vex.bytes[0] = 0xc5;
3691
3692 /* Check the REX.R bit. */
3693 r = (i.rex & REX_R) ? 0 : 1;
3694 i.vex.bytes[1] = (r << 7
3695 | register_specifier << 3
3696 | vector_length << 2
3697 | implied_prefix);
3698 }
3699 else
3700 {
3701 /* 3-byte VEX prefix. */
03751133 3702 unsigned int m;
c0f3af97 3703
f88c9eb0 3704 i.vex.length = 3;
f88c9eb0 3705
7f399153 3706 switch (i.tm.opcode_modifier.vexopcode)
5dd85c99 3707 {
7f399153
L
3708 case VEX0F:
3709 m = 0x1;
80de6e00 3710 i.vex.bytes[0] = 0xc4;
7f399153
L
3711 break;
3712 case VEX0F38:
3713 m = 0x2;
80de6e00 3714 i.vex.bytes[0] = 0xc4;
7f399153
L
3715 break;
3716 case VEX0F3A:
3717 m = 0x3;
80de6e00 3718 i.vex.bytes[0] = 0xc4;
7f399153
L
3719 break;
3720 case XOP08:
5dd85c99
SP
3721 m = 0x8;
3722 i.vex.bytes[0] = 0x8f;
7f399153
L
3723 break;
3724 case XOP09:
f88c9eb0
SP
3725 m = 0x9;
3726 i.vex.bytes[0] = 0x8f;
7f399153
L
3727 break;
3728 case XOP0A:
f88c9eb0
SP
3729 m = 0xa;
3730 i.vex.bytes[0] = 0x8f;
7f399153
L
3731 break;
3732 default:
3733 abort ();
f88c9eb0 3734 }
c0f3af97 3735
c0f3af97
L
3736 /* The high 3 bits of the second VEX byte are 1's compliment
3737 of RXB bits from REX. */
3738 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m;
3739
c0f3af97
L
3740 i.vex.bytes[2] = (w << 7
3741 | register_specifier << 3
3742 | vector_length << 2
3743 | implied_prefix);
3744 }
3745}
3746
e771e7c9
JB
3747static INLINE bfd_boolean
3748is_evex_encoding (const insn_template *t)
3749{
7091c612 3750 return t->opcode_modifier.evex || t->opcode_modifier.disp8memshift
e771e7c9 3751 || t->opcode_modifier.broadcast || t->opcode_modifier.masking
a80195f1 3752 || t->opcode_modifier.sae;
e771e7c9
JB
3753}
3754
7a8655d2
JB
3755static INLINE bfd_boolean
3756is_any_vex_encoding (const insn_template *t)
3757{
3758 return t->opcode_modifier.vex || t->opcode_modifier.vexopcode
3759 || is_evex_encoding (t);
3760}
3761
43234a1e
L
3762/* Build the EVEX prefix. */
3763
3764static void
3765build_evex_prefix (void)
3766{
3767 unsigned int register_specifier;
3768 unsigned int implied_prefix;
3769 unsigned int m, w;
3770 rex_byte vrex_used = 0;
3771
3772 /* Check register specifier. */
3773 if (i.vex.register_specifier)
3774 {
3775 gas_assert ((i.vrex & REX_X) == 0);
3776
3777 register_specifier = i.vex.register_specifier->reg_num;
3778 if ((i.vex.register_specifier->reg_flags & RegRex))
3779 register_specifier += 8;
3780 /* The upper 16 registers are encoded in the fourth byte of the
3781 EVEX prefix. */
3782 if (!(i.vex.register_specifier->reg_flags & RegVRex))
3783 i.vex.bytes[3] = 0x8;
3784 register_specifier = ~register_specifier & 0xf;
3785 }
3786 else
3787 {
3788 register_specifier = 0xf;
3789
3790 /* Encode upper 16 vector index register in the fourth byte of
3791 the EVEX prefix. */
3792 if (!(i.vrex & REX_X))
3793 i.vex.bytes[3] = 0x8;
3794 else
3795 vrex_used |= REX_X;
3796 }
3797
3798 switch ((i.tm.base_opcode >> 8) & 0xff)
3799 {
3800 case 0:
3801 implied_prefix = 0;
3802 break;
3803 case DATA_PREFIX_OPCODE:
3804 implied_prefix = 1;
3805 break;
3806 case REPE_PREFIX_OPCODE:
3807 implied_prefix = 2;
3808 break;
3809 case REPNE_PREFIX_OPCODE:
3810 implied_prefix = 3;
3811 break;
3812 default:
3813 abort ();
3814 }
3815
3816 /* 4 byte EVEX prefix. */
3817 i.vex.length = 4;
3818 i.vex.bytes[0] = 0x62;
3819
3820 /* mmmm bits. */
3821 switch (i.tm.opcode_modifier.vexopcode)
3822 {
3823 case VEX0F:
3824 m = 1;
3825 break;
3826 case VEX0F38:
3827 m = 2;
3828 break;
3829 case VEX0F3A:
3830 m = 3;
3831 break;
3832 default:
3833 abort ();
3834 break;
3835 }
3836
3837 /* The high 3 bits of the second EVEX byte are 1's compliment of RXB
3838 bits from REX. */
3839 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m;
3840
3841 /* The fifth bit of the second EVEX byte is 1's compliment of the
3842 REX_R bit in VREX. */
3843 if (!(i.vrex & REX_R))
3844 i.vex.bytes[1] |= 0x10;
3845 else
3846 vrex_used |= REX_R;
3847
3848 if ((i.reg_operands + i.imm_operands) == i.operands)
3849 {
3850 /* When all operands are registers, the REX_X bit in REX is not
3851 used. We reuse it to encode the upper 16 registers, which is
3852 indicated by the REX_B bit in VREX. The REX_X bit is encoded
3853 as 1's compliment. */
3854 if ((i.vrex & REX_B))
3855 {
3856 vrex_used |= REX_B;
3857 i.vex.bytes[1] &= ~0x40;
3858 }
3859 }
3860
3861 /* EVEX instructions shouldn't need the REX prefix. */
3862 i.vrex &= ~vrex_used;
3863 gas_assert (i.vrex == 0);
3864
6865c043
L
3865 /* Check the REX.W bit and VEXW. */
3866 if (i.tm.opcode_modifier.vexw == VEXWIG)
3867 w = (evexwig == evexw1 || (i.rex & REX_W)) ? 1 : 0;
3868 else if (i.tm.opcode_modifier.vexw)
3869 w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0;
3870 else
931d03b7 3871 w = (flag_code == CODE_64BIT ? i.rex & REX_W : evexwig == evexw1) ? 1 : 0;
43234a1e
L
3872
3873 /* Encode the U bit. */
3874 implied_prefix |= 0x4;
3875
3876 /* The third byte of the EVEX prefix. */
3877 i.vex.bytes[2] = (w << 7 | register_specifier << 3 | implied_prefix);
3878
3879 /* The fourth byte of the EVEX prefix. */
3880 /* The zeroing-masking bit. */
3881 if (i.mask && i.mask->zeroing)
3882 i.vex.bytes[3] |= 0x80;
3883
3884 /* Don't always set the broadcast bit if there is no RC. */
3885 if (!i.rounding)
3886 {
3887 /* Encode the vector length. */
3888 unsigned int vec_length;
3889
e771e7c9
JB
3890 if (!i.tm.opcode_modifier.evex
3891 || i.tm.opcode_modifier.evex == EVEXDYN)
3892 {
56522fc5 3893 unsigned int op;
e771e7c9 3894
c7213af9
L
3895 /* Determine vector length from the last multi-length vector
3896 operand. */
e771e7c9 3897 vec_length = 0;
56522fc5 3898 for (op = i.operands; op--;)
e771e7c9
JB
3899 if (i.tm.operand_types[op].bitfield.xmmword
3900 + i.tm.operand_types[op].bitfield.ymmword
3901 + i.tm.operand_types[op].bitfield.zmmword > 1)
3902 {
3903 if (i.types[op].bitfield.zmmword)
c7213af9
L
3904 {
3905 i.tm.opcode_modifier.evex = EVEX512;
3906 break;
3907 }
e771e7c9 3908 else if (i.types[op].bitfield.ymmword)
c7213af9
L
3909 {
3910 i.tm.opcode_modifier.evex = EVEX256;
3911 break;
3912 }
e771e7c9 3913 else if (i.types[op].bitfield.xmmword)
c7213af9
L
3914 {
3915 i.tm.opcode_modifier.evex = EVEX128;
3916 break;
3917 }
625cbd7a
JB
3918 else if (i.broadcast && (int) op == i.broadcast->operand)
3919 {
4a1b91ea 3920 switch (i.broadcast->bytes)
625cbd7a
JB
3921 {
3922 case 64:
3923 i.tm.opcode_modifier.evex = EVEX512;
3924 break;
3925 case 32:
3926 i.tm.opcode_modifier.evex = EVEX256;
3927 break;
3928 case 16:
3929 i.tm.opcode_modifier.evex = EVEX128;
3930 break;
3931 default:
c7213af9 3932 abort ();
625cbd7a 3933 }
c7213af9 3934 break;
625cbd7a 3935 }
e771e7c9 3936 }
c7213af9 3937
56522fc5 3938 if (op >= MAX_OPERANDS)
c7213af9 3939 abort ();
e771e7c9
JB
3940 }
3941
43234a1e
L
3942 switch (i.tm.opcode_modifier.evex)
3943 {
3944 case EVEXLIG: /* LL' is ignored */
3945 vec_length = evexlig << 5;
3946 break;
3947 case EVEX128:
3948 vec_length = 0 << 5;
3949 break;
3950 case EVEX256:
3951 vec_length = 1 << 5;
3952 break;
3953 case EVEX512:
3954 vec_length = 2 << 5;
3955 break;
3956 default:
3957 abort ();
3958 break;
3959 }
3960 i.vex.bytes[3] |= vec_length;
3961 /* Encode the broadcast bit. */
3962 if (i.broadcast)
3963 i.vex.bytes[3] |= 0x10;
3964 }
3965 else
3966 {
3967 if (i.rounding->type != saeonly)
3968 i.vex.bytes[3] |= 0x10 | (i.rounding->type << 5);
3969 else
d3d3c6db 3970 i.vex.bytes[3] |= 0x10 | (evexrcig << 5);
43234a1e
L
3971 }
3972
3973 if (i.mask && i.mask->mask)
3974 i.vex.bytes[3] |= i.mask->mask->reg_num;
3975}
3976
65da13b5
L
3977static void
3978process_immext (void)
3979{
3980 expressionS *exp;
3981
c0f3af97 3982 /* These AMD 3DNow! and SSE2 instructions have an opcode suffix
65da13b5
L
3983 which is coded in the same place as an 8-bit immediate field
3984 would be. Here we fake an 8-bit immediate operand from the
3985 opcode suffix stored in tm.extension_opcode.
3986
c1e679ec 3987 AVX instructions also use this encoding, for some of
c0f3af97 3988 3 argument instructions. */
65da13b5 3989
43234a1e 3990 gas_assert (i.imm_operands <= 1
7ab9ffdd 3991 && (i.operands <= 2
7a8655d2 3992 || (is_any_vex_encoding (&i.tm)
7ab9ffdd 3993 && i.operands <= 4)));
65da13b5
L
3994
3995 exp = &im_expressions[i.imm_operands++];
3996 i.op[i.operands].imms = exp;
3997 i.types[i.operands] = imm8;
3998 i.operands++;
3999 exp->X_op = O_constant;
4000 exp->X_add_number = i.tm.extension_opcode;
4001 i.tm.extension_opcode = None;
4002}
4003
42164a71
L
4004
4005static int
4006check_hle (void)
4007{
4008 switch (i.tm.opcode_modifier.hleprefixok)
4009 {
4010 default:
4011 abort ();
82c2def5 4012 case HLEPrefixNone:
165de32a
L
4013 as_bad (_("invalid instruction `%s' after `%s'"),
4014 i.tm.name, i.hle_prefix);
42164a71 4015 return 0;
82c2def5 4016 case HLEPrefixLock:
42164a71
L
4017 if (i.prefix[LOCK_PREFIX])
4018 return 1;
165de32a 4019 as_bad (_("missing `lock' with `%s'"), i.hle_prefix);
42164a71 4020 return 0;
82c2def5 4021 case HLEPrefixAny:
42164a71 4022 return 1;
82c2def5 4023 case HLEPrefixRelease:
42164a71
L
4024 if (i.prefix[HLE_PREFIX] != XRELEASE_PREFIX_OPCODE)
4025 {
4026 as_bad (_("instruction `%s' after `xacquire' not allowed"),
4027 i.tm.name);
4028 return 0;
4029 }
8dc0818e 4030 if (i.mem_operands == 0 || !(i.flags[i.operands - 1] & Operand_Mem))
42164a71
L
4031 {
4032 as_bad (_("memory destination needed for instruction `%s'"
4033 " after `xrelease'"), i.tm.name);
4034 return 0;
4035 }
4036 return 1;
4037 }
4038}
4039
b6f8c7c4
L
4040/* Try the shortest encoding by shortening operand size. */
4041
4042static void
4043optimize_encoding (void)
4044{
a0a1771e 4045 unsigned int j;
b6f8c7c4
L
4046
4047 if (optimize_for_space
72aea328 4048 && !is_any_vex_encoding (&i.tm)
b6f8c7c4
L
4049 && i.reg_operands == 1
4050 && i.imm_operands == 1
4051 && !i.types[1].bitfield.byte
4052 && i.op[0].imms->X_op == O_constant
4053 && fits_in_imm7 (i.op[0].imms->X_add_number)
72aea328 4054 && (i.tm.base_opcode == 0xa8
b6f8c7c4
L
4055 || (i.tm.base_opcode == 0xf6
4056 && i.tm.extension_opcode == 0x0)))
4057 {
4058 /* Optimize: -Os:
4059 test $imm7, %r64/%r32/%r16 -> test $imm7, %r8
4060 */
4061 unsigned int base_regnum = i.op[1].regs->reg_num;
4062 if (flag_code == CODE_64BIT || base_regnum < 4)
4063 {
4064 i.types[1].bitfield.byte = 1;
4065 /* Ignore the suffix. */
4066 i.suffix = 0;
7697afb6
JB
4067 /* Convert to byte registers. */
4068 if (i.types[1].bitfield.word)
4069 j = 16;
4070 else if (i.types[1].bitfield.dword)
4071 j = 32;
4072 else
4073 j = 48;
4074 if (!(i.op[1].regs->reg_flags & RegRex) && base_regnum < 4)
4075 j += 8;
4076 i.op[1].regs -= j;
b6f8c7c4
L
4077 }
4078 }
4079 else if (flag_code == CODE_64BIT
72aea328 4080 && !is_any_vex_encoding (&i.tm)
d3d50934
L
4081 && ((i.types[1].bitfield.qword
4082 && i.reg_operands == 1
b6f8c7c4
L
4083 && i.imm_operands == 1
4084 && i.op[0].imms->X_op == O_constant
507916b8 4085 && ((i.tm.base_opcode == 0xb8
b6f8c7c4
L
4086 && i.tm.extension_opcode == None
4087 && fits_in_unsigned_long (i.op[0].imms->X_add_number))
4088 || (fits_in_imm31 (i.op[0].imms->X_add_number)
72aea328
JB
4089 && ((i.tm.base_opcode == 0x24
4090 || i.tm.base_opcode == 0xa8)
b6f8c7c4
L
4091 || (i.tm.base_opcode == 0x80
4092 && i.tm.extension_opcode == 0x4)
4093 || ((i.tm.base_opcode == 0xf6
507916b8 4094 || (i.tm.base_opcode | 1) == 0xc7)
b8364fa7
JB
4095 && i.tm.extension_opcode == 0x0)))
4096 || (fits_in_imm7 (i.op[0].imms->X_add_number)
4097 && i.tm.base_opcode == 0x83
4098 && i.tm.extension_opcode == 0x4)))
d3d50934
L
4099 || (i.types[0].bitfield.qword
4100 && ((i.reg_operands == 2
4101 && i.op[0].regs == i.op[1].regs
72aea328
JB
4102 && (i.tm.base_opcode == 0x30
4103 || i.tm.base_opcode == 0x28))
d3d50934
L
4104 || (i.reg_operands == 1
4105 && i.operands == 1
72aea328 4106 && i.tm.base_opcode == 0x30)))))
b6f8c7c4
L
4107 {
4108 /* Optimize: -O:
4109 andq $imm31, %r64 -> andl $imm31, %r32
b8364fa7 4110 andq $imm7, %r64 -> andl $imm7, %r32
b6f8c7c4
L
4111 testq $imm31, %r64 -> testl $imm31, %r32
4112 xorq %r64, %r64 -> xorl %r32, %r32
4113 subq %r64, %r64 -> subl %r32, %r32
4114 movq $imm31, %r64 -> movl $imm31, %r32
4115 movq $imm32, %r64 -> movl $imm32, %r32
4116 */
4117 i.tm.opcode_modifier.norex64 = 1;
507916b8 4118 if (i.tm.base_opcode == 0xb8 || (i.tm.base_opcode | 1) == 0xc7)
b6f8c7c4
L
4119 {
4120 /* Handle
4121 movq $imm31, %r64 -> movl $imm31, %r32
4122 movq $imm32, %r64 -> movl $imm32, %r32
4123 */
4124 i.tm.operand_types[0].bitfield.imm32 = 1;
4125 i.tm.operand_types[0].bitfield.imm32s = 0;
4126 i.tm.operand_types[0].bitfield.imm64 = 0;
4127 i.types[0].bitfield.imm32 = 1;
4128 i.types[0].bitfield.imm32s = 0;
4129 i.types[0].bitfield.imm64 = 0;
4130 i.types[1].bitfield.dword = 1;
4131 i.types[1].bitfield.qword = 0;
507916b8 4132 if ((i.tm.base_opcode | 1) == 0xc7)
b6f8c7c4
L
4133 {
4134 /* Handle
4135 movq $imm31, %r64 -> movl $imm31, %r32
4136 */
507916b8 4137 i.tm.base_opcode = 0xb8;
b6f8c7c4 4138 i.tm.extension_opcode = None;
507916b8 4139 i.tm.opcode_modifier.w = 0;
b6f8c7c4
L
4140 i.tm.opcode_modifier.modrm = 0;
4141 }
4142 }
4143 }
5641ec01
JB
4144 else if (optimize > 1
4145 && !optimize_for_space
72aea328 4146 && !is_any_vex_encoding (&i.tm)
5641ec01
JB
4147 && i.reg_operands == 2
4148 && i.op[0].regs == i.op[1].regs
4149 && ((i.tm.base_opcode & ~(Opcode_D | 1)) == 0x8
4150 || (i.tm.base_opcode & ~(Opcode_D | 1)) == 0x20)
4151 && (flag_code != CODE_64BIT || !i.types[0].bitfield.dword))
4152 {
4153 /* Optimize: -O2:
4154 andb %rN, %rN -> testb %rN, %rN
4155 andw %rN, %rN -> testw %rN, %rN
4156 andq %rN, %rN -> testq %rN, %rN
4157 orb %rN, %rN -> testb %rN, %rN
4158 orw %rN, %rN -> testw %rN, %rN
4159 orq %rN, %rN -> testq %rN, %rN
4160
4161 and outside of 64-bit mode
4162
4163 andl %rN, %rN -> testl %rN, %rN
4164 orl %rN, %rN -> testl %rN, %rN
4165 */
4166 i.tm.base_opcode = 0x84 | (i.tm.base_opcode & 1);
4167 }
99112332 4168 else if (i.reg_operands == 3
b6f8c7c4
L
4169 && i.op[0].regs == i.op[1].regs
4170 && !i.types[2].bitfield.xmmword
4171 && (i.tm.opcode_modifier.vex
7a69eac3 4172 || ((!i.mask || i.mask->zeroing)
b6f8c7c4 4173 && !i.rounding
e771e7c9 4174 && is_evex_encoding (&i.tm)
80c34c38 4175 && (i.vec_encoding != vex_encoding_evex
dd22218c 4176 || cpu_arch_isa_flags.bitfield.cpuavx512vl
80c34c38 4177 || i.tm.cpu_flags.bitfield.cpuavx512vl
7091c612 4178 || (i.tm.operand_types[2].bitfield.zmmword
dd22218c 4179 && i.types[2].bitfield.ymmword))))
b6f8c7c4
L
4180 && ((i.tm.base_opcode == 0x55
4181 || i.tm.base_opcode == 0x6655
4182 || i.tm.base_opcode == 0x66df
4183 || i.tm.base_opcode == 0x57
4184 || i.tm.base_opcode == 0x6657
8305403a
L
4185 || i.tm.base_opcode == 0x66ef
4186 || i.tm.base_opcode == 0x66f8
4187 || i.tm.base_opcode == 0x66f9
4188 || i.tm.base_opcode == 0x66fa
1424ad86
JB
4189 || i.tm.base_opcode == 0x66fb
4190 || i.tm.base_opcode == 0x42
4191 || i.tm.base_opcode == 0x6642
4192 || i.tm.base_opcode == 0x47
4193 || i.tm.base_opcode == 0x6647)
b6f8c7c4
L
4194 && i.tm.extension_opcode == None))
4195 {
99112332 4196 /* Optimize: -O1:
8305403a
L
4197 VOP, one of vandnps, vandnpd, vxorps, vxorpd, vpsubb, vpsubd,
4198 vpsubq and vpsubw:
b6f8c7c4
L
4199 EVEX VOP %zmmM, %zmmM, %zmmN
4200 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4201 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4202 EVEX VOP %ymmM, %ymmM, %ymmN
4203 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4204 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4205 VEX VOP %ymmM, %ymmM, %ymmN
4206 -> VEX VOP %xmmM, %xmmM, %xmmN
4207 VOP, one of vpandn and vpxor:
4208 VEX VOP %ymmM, %ymmM, %ymmN
4209 -> VEX VOP %xmmM, %xmmM, %xmmN
4210 VOP, one of vpandnd and vpandnq:
4211 EVEX VOP %zmmM, %zmmM, %zmmN
4212 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4213 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4214 EVEX VOP %ymmM, %ymmM, %ymmN
4215 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4216 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4217 VOP, one of vpxord and vpxorq:
4218 EVEX VOP %zmmM, %zmmM, %zmmN
4219 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4220 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4221 EVEX VOP %ymmM, %ymmM, %ymmN
4222 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4223 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
1424ad86
JB
4224 VOP, one of kxord and kxorq:
4225 VEX VOP %kM, %kM, %kN
4226 -> VEX kxorw %kM, %kM, %kN
4227 VOP, one of kandnd and kandnq:
4228 VEX VOP %kM, %kM, %kN
4229 -> VEX kandnw %kM, %kM, %kN
b6f8c7c4 4230 */
e771e7c9 4231 if (is_evex_encoding (&i.tm))
b6f8c7c4 4232 {
7b1d7ca1 4233 if (i.vec_encoding != vex_encoding_evex)
b6f8c7c4
L
4234 {
4235 i.tm.opcode_modifier.vex = VEX128;
4236 i.tm.opcode_modifier.vexw = VEXW0;
4237 i.tm.opcode_modifier.evex = 0;
4238 }
7b1d7ca1 4239 else if (optimize > 1)
dd22218c
L
4240 i.tm.opcode_modifier.evex = EVEX128;
4241 else
4242 return;
b6f8c7c4 4243 }
f74a6307 4244 else if (i.tm.operand_types[0].bitfield.class == RegMask)
1424ad86
JB
4245 {
4246 i.tm.base_opcode &= 0xff;
4247 i.tm.opcode_modifier.vexw = VEXW0;
4248 }
b6f8c7c4
L
4249 else
4250 i.tm.opcode_modifier.vex = VEX128;
4251
4252 if (i.tm.opcode_modifier.vex)
4253 for (j = 0; j < 3; j++)
4254 {
4255 i.types[j].bitfield.xmmword = 1;
4256 i.types[j].bitfield.ymmword = 0;
4257 }
4258 }
392a5972 4259 else if (i.vec_encoding != vex_encoding_evex
97ed31ae 4260 && !i.types[0].bitfield.zmmword
392a5972 4261 && !i.types[1].bitfield.zmmword
97ed31ae 4262 && !i.mask
a0a1771e 4263 && !i.broadcast
97ed31ae 4264 && is_evex_encoding (&i.tm)
392a5972
L
4265 && ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0x666f
4266 || (i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf36f
a0a1771e
JB
4267 || (i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf26f
4268 || (i.tm.base_opcode & ~4) == 0x66db
4269 || (i.tm.base_opcode & ~4) == 0x66eb)
97ed31ae
L
4270 && i.tm.extension_opcode == None)
4271 {
4272 /* Optimize: -O1:
4273 VOP, one of vmovdqa32, vmovdqa64, vmovdqu8, vmovdqu16,
4274 vmovdqu32 and vmovdqu64:
4275 EVEX VOP %xmmM, %xmmN
4276 -> VEX vmovdqa|vmovdqu %xmmM, %xmmN (M and N < 16)
4277 EVEX VOP %ymmM, %ymmN
4278 -> VEX vmovdqa|vmovdqu %ymmM, %ymmN (M and N < 16)
4279 EVEX VOP %xmmM, mem
4280 -> VEX vmovdqa|vmovdqu %xmmM, mem (M < 16)
4281 EVEX VOP %ymmM, mem
4282 -> VEX vmovdqa|vmovdqu %ymmM, mem (M < 16)
4283 EVEX VOP mem, %xmmN
4284 -> VEX mvmovdqa|vmovdquem, %xmmN (N < 16)
4285 EVEX VOP mem, %ymmN
4286 -> VEX vmovdqa|vmovdqu mem, %ymmN (N < 16)
a0a1771e
JB
4287 VOP, one of vpand, vpandn, vpor, vpxor:
4288 EVEX VOP{d,q} %xmmL, %xmmM, %xmmN
4289 -> VEX VOP %xmmL, %xmmM, %xmmN (L, M, and N < 16)
4290 EVEX VOP{d,q} %ymmL, %ymmM, %ymmN
4291 -> VEX VOP %ymmL, %ymmM, %ymmN (L, M, and N < 16)
4292 EVEX VOP{d,q} mem, %xmmM, %xmmN
4293 -> VEX VOP mem, %xmmM, %xmmN (M and N < 16)
4294 EVEX VOP{d,q} mem, %ymmM, %ymmN
4295 -> VEX VOP mem, %ymmM, %ymmN (M and N < 16)
97ed31ae 4296 */
a0a1771e 4297 for (j = 0; j < i.operands; j++)
392a5972
L
4298 if (operand_type_check (i.types[j], disp)
4299 && i.op[j].disps->X_op == O_constant)
4300 {
4301 /* Since the VEX prefix has 2 or 3 bytes, the EVEX prefix
4302 has 4 bytes, EVEX Disp8 has 1 byte and VEX Disp32 has 4
4303 bytes, we choose EVEX Disp8 over VEX Disp32. */
4304 int evex_disp8, vex_disp8;
4305 unsigned int memshift = i.memshift;
4306 offsetT n = i.op[j].disps->X_add_number;
4307
4308 evex_disp8 = fits_in_disp8 (n);
4309 i.memshift = 0;
4310 vex_disp8 = fits_in_disp8 (n);
4311 if (evex_disp8 != vex_disp8)
4312 {
4313 i.memshift = memshift;
4314 return;
4315 }
4316
4317 i.types[j].bitfield.disp8 = vex_disp8;
4318 break;
4319 }
4320 if ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf26f)
4321 i.tm.base_opcode ^= 0xf36f ^ 0xf26f;
97ed31ae
L
4322 i.tm.opcode_modifier.vex
4323 = i.types[0].bitfield.ymmword ? VEX256 : VEX128;
4324 i.tm.opcode_modifier.vexw = VEXW0;
79dec6b7
JB
4325 /* VPAND, VPOR, and VPXOR are commutative. */
4326 if (i.reg_operands == 3 && i.tm.base_opcode != 0x66df)
4327 i.tm.opcode_modifier.commutative = 1;
97ed31ae
L
4328 i.tm.opcode_modifier.evex = 0;
4329 i.tm.opcode_modifier.masking = 0;
a0a1771e 4330 i.tm.opcode_modifier.broadcast = 0;
97ed31ae
L
4331 i.tm.opcode_modifier.disp8memshift = 0;
4332 i.memshift = 0;
a0a1771e
JB
4333 if (j < i.operands)
4334 i.types[j].bitfield.disp8
4335 = fits_in_disp8 (i.op[j].disps->X_add_number);
97ed31ae 4336 }
b6f8c7c4
L
4337}
4338
ae531041
L
4339/* Return non-zero for load instruction. */
4340
4341static int
4342load_insn_p (void)
4343{
4344 unsigned int dest;
4345 int any_vex_p = is_any_vex_encoding (&i.tm);
4346 unsigned int base_opcode = i.tm.base_opcode | 1;
4347
4348 if (!any_vex_p)
4349 {
4350 /* lea */
4351 if (i.tm.base_opcode == 0x8d)
4352 return 0;
4353
4354 /* pop */
4355 if ((i.tm.base_opcode & ~7) == 0x58
4356 || (i.tm.base_opcode == 0x8f && i.tm.extension_opcode == 0))
4357 return 1;
4358
4359 /* movs, cmps, lods, scas. */
4360 if ((i.tm.base_opcode | 0xb) == 0xaf)
4361 return 1;
4362
4363 /* outs */
4364 if (base_opcode == 0x6f)
4365 return 1;
4366 }
4367
4368 /* No memory operand. */
4369 if (!i.mem_operands)
4370 return 0;
4371
4372 if (any_vex_p)
4373 {
4374 /* vldmxcsr. */
4375 if (i.tm.base_opcode == 0xae
4376 && i.tm.opcode_modifier.vex
4377 && i.tm.opcode_modifier.vexopcode == VEX0F
4378 && i.tm.extension_opcode == 2)
4379 return 1;
4380 }
4381 else
4382 {
4383 /* test, not, neg, mul, imul, div, idiv. */
4384 if ((i.tm.base_opcode == 0xf6 || i.tm.base_opcode == 0xf7)
4385 && i.tm.extension_opcode != 1)
4386 return 1;
4387
4388 /* inc, dec. */
4389 if (base_opcode == 0xff && i.tm.extension_opcode <= 1)
4390 return 1;
4391
4392 /* add, or, adc, sbb, and, sub, xor, cmp. */
4393 if (i.tm.base_opcode >= 0x80 && i.tm.base_opcode <= 0x83)
4394 return 1;
4395
4396 /* bt, bts, btr, btc. */
4397 if (i.tm.base_opcode == 0xfba
4398 && (i.tm.extension_opcode >= 4 && i.tm.extension_opcode <= 7))
4399 return 1;
4400
4401 /* rol, ror, rcl, rcr, shl/sal, shr, sar. */
4402 if ((base_opcode == 0xc1
4403 || (i.tm.base_opcode >= 0xd0 && i.tm.base_opcode <= 0xd3))
4404 && i.tm.extension_opcode != 6)
4405 return 1;
4406
4407 /* cmpxchg8b, cmpxchg16b, xrstors. */
4408 if (i.tm.base_opcode == 0xfc7
4409 && (i.tm.extension_opcode == 1 || i.tm.extension_opcode == 3))
4410 return 1;
4411
4412 /* fxrstor, ldmxcsr, xrstor. */
4413 if (i.tm.base_opcode == 0xfae
4414 && (i.tm.extension_opcode == 1
4415 || i.tm.extension_opcode == 2
4416 || i.tm.extension_opcode == 5))
4417 return 1;
4418
4419 /* lgdt, lidt, lmsw. */
4420 if (i.tm.base_opcode == 0xf01
4421 && (i.tm.extension_opcode == 2
4422 || i.tm.extension_opcode == 3
4423 || i.tm.extension_opcode == 6))
4424 return 1;
4425
4426 /* vmptrld */
4427 if (i.tm.base_opcode == 0xfc7
4428 && i.tm.extension_opcode == 6)
4429 return 1;
4430
4431 /* Check for x87 instructions. */
4432 if (i.tm.base_opcode >= 0xd8 && i.tm.base_opcode <= 0xdf)
4433 {
4434 /* Skip fst, fstp, fstenv, fstcw. */
4435 if (i.tm.base_opcode == 0xd9
4436 && (i.tm.extension_opcode == 2
4437 || i.tm.extension_opcode == 3
4438 || i.tm.extension_opcode == 6
4439 || i.tm.extension_opcode == 7))
4440 return 0;
4441
4442 /* Skip fisttp, fist, fistp, fstp. */
4443 if (i.tm.base_opcode == 0xdb
4444 && (i.tm.extension_opcode == 1
4445 || i.tm.extension_opcode == 2
4446 || i.tm.extension_opcode == 3
4447 || i.tm.extension_opcode == 7))
4448 return 0;
4449
4450 /* Skip fisttp, fst, fstp, fsave, fstsw. */
4451 if (i.tm.base_opcode == 0xdd
4452 && (i.tm.extension_opcode == 1
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, fbstp, fistp. */
4460 if (i.tm.base_opcode == 0xdf
4461 && (i.tm.extension_opcode == 1
4462 || i.tm.extension_opcode == 2
4463 || i.tm.extension_opcode == 3
4464 || i.tm.extension_opcode == 6
4465 || i.tm.extension_opcode == 7))
4466 return 0;
4467
4468 return 1;
4469 }
4470 }
4471
4472 dest = i.operands - 1;
4473
4474 /* Check fake imm8 operand and 3 source operands. */
4475 if ((i.tm.opcode_modifier.immext
4476 || i.tm.opcode_modifier.vexsources == VEX3SOURCES)
4477 && i.types[dest].bitfield.imm8)
4478 dest--;
4479
4480 /* add, or, adc, sbb, and, sub, xor, cmp, test, xchg, xadd */
4481 if (!any_vex_p
4482 && (base_opcode == 0x1
4483 || base_opcode == 0x9
4484 || base_opcode == 0x11
4485 || base_opcode == 0x19
4486 || base_opcode == 0x21
4487 || base_opcode == 0x29
4488 || base_opcode == 0x31
4489 || base_opcode == 0x39
4490 || (i.tm.base_opcode >= 0x84 && i.tm.base_opcode <= 0x87)
4491 || base_opcode == 0xfc1))
4492 return 1;
4493
4494 /* Check for load instruction. */
4495 return (i.types[dest].bitfield.class != ClassNone
4496 || i.types[dest].bitfield.instance == Accum);
4497}
4498
4499/* Output lfence, 0xfaee8, after instruction. */
4500
4501static void
4502insert_lfence_after (void)
4503{
4504 if (lfence_after_load && load_insn_p ())
4505 {
4506 char *p = frag_more (3);
4507 *p++ = 0xf;
4508 *p++ = 0xae;
4509 *p = 0xe8;
4510 }
4511}
4512
4513/* Output lfence, 0xfaee8, before instruction. */
4514
4515static void
4516insert_lfence_before (void)
4517{
4518 char *p;
4519
4520 if (is_any_vex_encoding (&i.tm))
4521 return;
4522
4523 if (i.tm.base_opcode == 0xff
4524 && (i.tm.extension_opcode == 2 || i.tm.extension_opcode == 4))
4525 {
4526 /* Insert lfence before indirect branch if needed. */
4527
4528 if (lfence_before_indirect_branch == lfence_branch_none)
4529 return;
4530
4531 if (i.operands != 1)
4532 abort ();
4533
4534 if (i.reg_operands == 1)
4535 {
4536 /* Indirect branch via register. Don't insert lfence with
4537 -mlfence-after-load=yes. */
4538 if (lfence_after_load
4539 || lfence_before_indirect_branch == lfence_branch_memory)
4540 return;
4541 }
4542 else if (i.mem_operands == 1
4543 && lfence_before_indirect_branch != lfence_branch_register)
4544 {
4545 as_warn (_("indirect `%s` with memory operand should be avoided"),
4546 i.tm.name);
4547 return;
4548 }
4549 else
4550 return;
4551
4552 if (last_insn.kind != last_insn_other
4553 && last_insn.seg == now_seg)
4554 {
4555 as_warn_where (last_insn.file, last_insn.line,
4556 _("`%s` skips -mlfence-before-indirect-branch on `%s`"),
4557 last_insn.name, i.tm.name);
4558 return;
4559 }
4560
4561 p = frag_more (3);
4562 *p++ = 0xf;
4563 *p++ = 0xae;
4564 *p = 0xe8;
4565 return;
4566 }
4567
4568 /* Output or/not and lfence before ret. */
4569 if (lfence_before_ret != lfence_before_ret_none
4570 && (i.tm.base_opcode == 0xc2
4571 || i.tm.base_opcode == 0xc3
4572 || i.tm.base_opcode == 0xca
4573 || i.tm.base_opcode == 0xcb))
4574 {
4575 if (last_insn.kind != last_insn_other
4576 && last_insn.seg == now_seg)
4577 {
4578 as_warn_where (last_insn.file, last_insn.line,
4579 _("`%s` skips -mlfence-before-ret on `%s`"),
4580 last_insn.name, i.tm.name);
4581 return;
4582 }
4583 if (lfence_before_ret == lfence_before_ret_or)
4584 {
4585 /* orl: 0x830c2400. */
4586 p = frag_more ((flag_code == CODE_64BIT ? 1 : 0) + 4 + 3);
4587 if (flag_code == CODE_64BIT)
4588 *p++ = 0x48;
4589 *p++ = 0x83;
4590 *p++ = 0xc;
4591 *p++ = 0x24;
4592 *p++ = 0x0;
4593 }
4594 else
4595 {
4596 p = frag_more ((flag_code == CODE_64BIT ? 2 : 0) + 6 + 3);
4597 /* notl: 0xf71424. */
4598 if (flag_code == CODE_64BIT)
4599 *p++ = 0x48;
4600 *p++ = 0xf7;
4601 *p++ = 0x14;
4602 *p++ = 0x24;
4603 /* notl: 0xf71424. */
4604 if (flag_code == CODE_64BIT)
4605 *p++ = 0x48;
4606 *p++ = 0xf7;
4607 *p++ = 0x14;
4608 *p++ = 0x24;
4609 }
4610 *p++ = 0xf;
4611 *p++ = 0xae;
4612 *p = 0xe8;
4613 }
4614}
4615
252b5132
RH
4616/* This is the guts of the machine-dependent assembler. LINE points to a
4617 machine dependent instruction. This function is supposed to emit
4618 the frags/bytes it assembles to. */
4619
4620void
65da13b5 4621md_assemble (char *line)
252b5132 4622{
40fb9820 4623 unsigned int j;
83b16ac6 4624 char mnemonic[MAX_MNEM_SIZE], mnem_suffix;
d3ce72d0 4625 const insn_template *t;
252b5132 4626
47926f60 4627 /* Initialize globals. */
252b5132
RH
4628 memset (&i, '\0', sizeof (i));
4629 for (j = 0; j < MAX_OPERANDS; j++)
1ae12ab7 4630 i.reloc[j] = NO_RELOC;
252b5132
RH
4631 memset (disp_expressions, '\0', sizeof (disp_expressions));
4632 memset (im_expressions, '\0', sizeof (im_expressions));
ce8a8b2f 4633 save_stack_p = save_stack;
252b5132
RH
4634
4635 /* First parse an instruction mnemonic & call i386_operand for the operands.
4636 We assume that the scrubber has arranged it so that line[0] is the valid
47926f60 4637 start of a (possibly prefixed) mnemonic. */
252b5132 4638
29b0f896
AM
4639 line = parse_insn (line, mnemonic);
4640 if (line == NULL)
4641 return;
83b16ac6 4642 mnem_suffix = i.suffix;
252b5132 4643
29b0f896 4644 line = parse_operands (line, mnemonic);
ee86248c 4645 this_operand = -1;
8325cc63
JB
4646 xfree (i.memop1_string);
4647 i.memop1_string = NULL;
29b0f896
AM
4648 if (line == NULL)
4649 return;
252b5132 4650
29b0f896
AM
4651 /* Now we've parsed the mnemonic into a set of templates, and have the
4652 operands at hand. */
4653
b630c145
JB
4654 /* All Intel opcodes have reversed operands except for "bound", "enter",
4655 "monitor*", "mwait*", "tpause", and "umwait". We also don't reverse
4656 intersegment "jmp" and "call" instructions with 2 immediate operands so
4657 that the immediate segment precedes the offset, as it does when in AT&T
4658 mode. */
4d456e3d
L
4659 if (intel_syntax
4660 && i.operands > 1
29b0f896 4661 && (strcmp (mnemonic, "bound") != 0)
30123838 4662 && (strcmp (mnemonic, "invlpga") != 0)
eedb0f2c
JB
4663 && (strncmp (mnemonic, "monitor", 7) != 0)
4664 && (strncmp (mnemonic, "mwait", 5) != 0)
b630c145
JB
4665 && (strcmp (mnemonic, "tpause") != 0)
4666 && (strcmp (mnemonic, "umwait") != 0)
40fb9820
L
4667 && !(operand_type_check (i.types[0], imm)
4668 && operand_type_check (i.types[1], imm)))
29b0f896
AM
4669 swap_operands ();
4670
ec56d5c0
JB
4671 /* The order of the immediates should be reversed
4672 for 2 immediates extrq and insertq instructions */
4673 if (i.imm_operands == 2
4674 && (strcmp (mnemonic, "extrq") == 0
4675 || strcmp (mnemonic, "insertq") == 0))
4676 swap_2_operands (0, 1);
4677
29b0f896
AM
4678 if (i.imm_operands)
4679 optimize_imm ();
4680
b300c311
L
4681 /* Don't optimize displacement for movabs since it only takes 64bit
4682 displacement. */
4683 if (i.disp_operands
a501d77e 4684 && i.disp_encoding != disp_encoding_32bit
862be3fb
L
4685 && (flag_code != CODE_64BIT
4686 || strcmp (mnemonic, "movabs") != 0))
4687 optimize_disp ();
29b0f896
AM
4688
4689 /* Next, we find a template that matches the given insn,
4690 making sure the overlap of the given operands types is consistent
4691 with the template operand types. */
252b5132 4692
83b16ac6 4693 if (!(t = match_template (mnem_suffix)))
29b0f896 4694 return;
252b5132 4695
7bab8ab5 4696 if (sse_check != check_none
81f8a913 4697 && !i.tm.opcode_modifier.noavx
6e3e5c9e 4698 && !i.tm.cpu_flags.bitfield.cpuavx
569d50f1 4699 && !i.tm.cpu_flags.bitfield.cpuavx512f
daf50ae7
L
4700 && (i.tm.cpu_flags.bitfield.cpusse
4701 || i.tm.cpu_flags.bitfield.cpusse2
4702 || i.tm.cpu_flags.bitfield.cpusse3
4703 || i.tm.cpu_flags.bitfield.cpussse3
4704 || i.tm.cpu_flags.bitfield.cpusse4_1
6e3e5c9e 4705 || i.tm.cpu_flags.bitfield.cpusse4_2
569d50f1 4706 || i.tm.cpu_flags.bitfield.cpusse4a
6e3e5c9e
JB
4707 || i.tm.cpu_flags.bitfield.cpupclmul
4708 || i.tm.cpu_flags.bitfield.cpuaes
569d50f1 4709 || i.tm.cpu_flags.bitfield.cpusha
6e3e5c9e 4710 || i.tm.cpu_flags.bitfield.cpugfni))
daf50ae7 4711 {
7bab8ab5 4712 (sse_check == check_warning
daf50ae7
L
4713 ? as_warn
4714 : as_bad) (_("SSE instruction `%s' is used"), i.tm.name);
4715 }
4716
40fb9820 4717 if (i.tm.opcode_modifier.fwait)
29b0f896
AM
4718 if (!add_prefix (FWAIT_OPCODE))
4719 return;
252b5132 4720
d5de92cf
L
4721 /* Check if REP prefix is OK. */
4722 if (i.rep_prefix && !i.tm.opcode_modifier.repprefixok)
4723 {
4724 as_bad (_("invalid instruction `%s' after `%s'"),
4725 i.tm.name, i.rep_prefix);
4726 return;
4727 }
4728
c1ba0266
L
4729 /* Check for lock without a lockable instruction. Destination operand
4730 must be memory unless it is xchg (0x86). */
c32fa91d
L
4731 if (i.prefix[LOCK_PREFIX]
4732 && (!i.tm.opcode_modifier.islockable
c1ba0266
L
4733 || i.mem_operands == 0
4734 || (i.tm.base_opcode != 0x86
8dc0818e 4735 && !(i.flags[i.operands - 1] & Operand_Mem))))
c32fa91d
L
4736 {
4737 as_bad (_("expecting lockable instruction after `lock'"));
4738 return;
4739 }
4740
7a8655d2
JB
4741 /* Check for data size prefix on VEX/XOP/EVEX encoded insns. */
4742 if (i.prefix[DATA_PREFIX] && is_any_vex_encoding (&i.tm))
4743 {
4744 as_bad (_("data size prefix invalid with `%s'"), i.tm.name);
4745 return;
4746 }
4747
42164a71 4748 /* Check if HLE prefix is OK. */
165de32a 4749 if (i.hle_prefix && !check_hle ())
42164a71
L
4750 return;
4751
7e8b059b
L
4752 /* Check BND prefix. */
4753 if (i.bnd_prefix && !i.tm.opcode_modifier.bndprefixok)
4754 as_bad (_("expecting valid branch instruction after `bnd'"));
4755
04ef582a 4756 /* Check NOTRACK prefix. */
9fef80d6
L
4757 if (i.notrack_prefix && !i.tm.opcode_modifier.notrackprefixok)
4758 as_bad (_("expecting indirect branch instruction after `notrack'"));
04ef582a 4759
327e8c42
JB
4760 if (i.tm.cpu_flags.bitfield.cpumpx)
4761 {
4762 if (flag_code == CODE_64BIT && i.prefix[ADDR_PREFIX])
4763 as_bad (_("32-bit address isn't allowed in 64-bit MPX instructions."));
4764 else if (flag_code != CODE_16BIT
4765 ? i.prefix[ADDR_PREFIX]
4766 : i.mem_operands && !i.prefix[ADDR_PREFIX])
4767 as_bad (_("16-bit address isn't allowed in MPX instructions"));
4768 }
7e8b059b
L
4769
4770 /* Insert BND prefix. */
76d3a78a
JB
4771 if (add_bnd_prefix && i.tm.opcode_modifier.bndprefixok)
4772 {
4773 if (!i.prefix[BND_PREFIX])
4774 add_prefix (BND_PREFIX_OPCODE);
4775 else if (i.prefix[BND_PREFIX] != BND_PREFIX_OPCODE)
4776 {
4777 as_warn (_("replacing `rep'/`repe' prefix by `bnd'"));
4778 i.prefix[BND_PREFIX] = BND_PREFIX_OPCODE;
4779 }
4780 }
7e8b059b 4781
29b0f896 4782 /* Check string instruction segment overrides. */
51c8edf6 4783 if (i.tm.opcode_modifier.isstring >= IS_STRING_ES_OP0)
29b0f896 4784 {
51c8edf6 4785 gas_assert (i.mem_operands);
29b0f896 4786 if (!check_string ())
5dd0794d 4787 return;
fc0763e6 4788 i.disp_operands = 0;
29b0f896 4789 }
5dd0794d 4790
b6f8c7c4
L
4791 if (optimize && !i.no_optimize && i.tm.opcode_modifier.optimize)
4792 optimize_encoding ();
4793
29b0f896
AM
4794 if (!process_suffix ())
4795 return;
e413e4e9 4796
bc0844ae
L
4797 /* Update operand types. */
4798 for (j = 0; j < i.operands; j++)
4799 i.types[j] = operand_type_and (i.types[j], i.tm.operand_types[j]);
4800
29b0f896
AM
4801 /* Make still unresolved immediate matches conform to size of immediate
4802 given in i.suffix. */
4803 if (!finalize_imm ())
4804 return;
252b5132 4805
40fb9820 4806 if (i.types[0].bitfield.imm1)
29b0f896 4807 i.imm_operands = 0; /* kludge for shift insns. */
252b5132 4808
9afe6eb8
L
4809 /* We only need to check those implicit registers for instructions
4810 with 3 operands or less. */
4811 if (i.operands <= 3)
4812 for (j = 0; j < i.operands; j++)
75e5731b
JB
4813 if (i.types[j].bitfield.instance != InstanceNone
4814 && !i.types[j].bitfield.xmmword)
9afe6eb8 4815 i.reg_operands--;
40fb9820 4816
c0f3af97
L
4817 /* ImmExt should be processed after SSE2AVX. */
4818 if (!i.tm.opcode_modifier.sse2avx
4819 && i.tm.opcode_modifier.immext)
65da13b5 4820 process_immext ();
252b5132 4821
29b0f896
AM
4822 /* For insns with operands there are more diddles to do to the opcode. */
4823 if (i.operands)
4824 {
4825 if (!process_operands ())
4826 return;
4827 }
40fb9820 4828 else if (!quiet_warnings && i.tm.opcode_modifier.ugh)
29b0f896
AM
4829 {
4830 /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. */
4831 as_warn (_("translating to `%sp'"), i.tm.name);
4832 }
252b5132 4833
7a8655d2 4834 if (is_any_vex_encoding (&i.tm))
9e5e5283 4835 {
c1dc7af5 4836 if (!cpu_arch_flags.bitfield.cpui286)
9e5e5283 4837 {
c1dc7af5 4838 as_bad (_("instruction `%s' isn't supported outside of protected mode."),
9e5e5283
L
4839 i.tm.name);
4840 return;
4841 }
c0f3af97 4842
9e5e5283
L
4843 if (i.tm.opcode_modifier.vex)
4844 build_vex_prefix (t);
4845 else
4846 build_evex_prefix ();
4847 }
43234a1e 4848
5dd85c99
SP
4849 /* Handle conversion of 'int $3' --> special int3 insn. XOP or FMA4
4850 instructions may define INT_OPCODE as well, so avoid this corner
4851 case for those instructions that use MODRM. */
4852 if (i.tm.base_opcode == INT_OPCODE
a6461c02
SP
4853 && !i.tm.opcode_modifier.modrm
4854 && i.op[0].imms->X_add_number == 3)
29b0f896
AM
4855 {
4856 i.tm.base_opcode = INT3_OPCODE;
4857 i.imm_operands = 0;
4858 }
252b5132 4859
0cfa3eb3
JB
4860 if ((i.tm.opcode_modifier.jump == JUMP
4861 || i.tm.opcode_modifier.jump == JUMP_BYTE
4862 || i.tm.opcode_modifier.jump == JUMP_DWORD)
29b0f896
AM
4863 && i.op[0].disps->X_op == O_constant)
4864 {
4865 /* Convert "jmp constant" (and "call constant") to a jump (call) to
4866 the absolute address given by the constant. Since ix86 jumps and
4867 calls are pc relative, we need to generate a reloc. */
4868 i.op[0].disps->X_add_symbol = &abs_symbol;
4869 i.op[0].disps->X_op = O_symbol;
4870 }
252b5132 4871
29b0f896
AM
4872 /* For 8 bit registers we need an empty rex prefix. Also if the
4873 instruction already has a prefix, we need to convert old
4874 registers to new ones. */
773f551c 4875
bab6aec1 4876 if ((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte
29b0f896 4877 && (i.op[0].regs->reg_flags & RegRex64) != 0)
bab6aec1 4878 || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte
29b0f896 4879 && (i.op[1].regs->reg_flags & RegRex64) != 0)
bab6aec1
JB
4880 || (((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte)
4881 || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte))
29b0f896
AM
4882 && i.rex != 0))
4883 {
4884 int x;
726c5dcd 4885
29b0f896
AM
4886 i.rex |= REX_OPCODE;
4887 for (x = 0; x < 2; x++)
4888 {
4889 /* Look for 8 bit operand that uses old registers. */
bab6aec1 4890 if (i.types[x].bitfield.class == Reg && i.types[x].bitfield.byte
29b0f896 4891 && (i.op[x].regs->reg_flags & RegRex64) == 0)
773f551c 4892 {
3f93af61 4893 gas_assert (!(i.op[x].regs->reg_flags & RegRex));
29b0f896
AM
4894 /* In case it is "hi" register, give up. */
4895 if (i.op[x].regs->reg_num > 3)
a540244d 4896 as_bad (_("can't encode register '%s%s' in an "
4eed87de 4897 "instruction requiring REX prefix."),
a540244d 4898 register_prefix, i.op[x].regs->reg_name);
773f551c 4899
29b0f896
AM
4900 /* Otherwise it is equivalent to the extended register.
4901 Since the encoding doesn't change this is merely
4902 cosmetic cleanup for debug output. */
4903
4904 i.op[x].regs = i.op[x].regs + 8;
773f551c 4905 }
29b0f896
AM
4906 }
4907 }
773f551c 4908
6b6b6807
L
4909 if (i.rex == 0 && i.rex_encoding)
4910 {
4911 /* Check if we can add a REX_OPCODE byte. Look for 8 bit operand
3f93af61 4912 that uses legacy register. If it is "hi" register, don't add
6b6b6807
L
4913 the REX_OPCODE byte. */
4914 int x;
4915 for (x = 0; x < 2; x++)
bab6aec1 4916 if (i.types[x].bitfield.class == Reg
6b6b6807
L
4917 && i.types[x].bitfield.byte
4918 && (i.op[x].regs->reg_flags & RegRex64) == 0
4919 && i.op[x].regs->reg_num > 3)
4920 {
3f93af61 4921 gas_assert (!(i.op[x].regs->reg_flags & RegRex));
6b6b6807
L
4922 i.rex_encoding = FALSE;
4923 break;
4924 }
4925
4926 if (i.rex_encoding)
4927 i.rex = REX_OPCODE;
4928 }
4929
7ab9ffdd 4930 if (i.rex != 0)
29b0f896
AM
4931 add_prefix (REX_OPCODE | i.rex);
4932
ae531041
L
4933 insert_lfence_before ();
4934
29b0f896
AM
4935 /* We are ready to output the insn. */
4936 output_insn ();
e379e5f3 4937
ae531041
L
4938 insert_lfence_after ();
4939
e379e5f3
L
4940 last_insn.seg = now_seg;
4941
4942 if (i.tm.opcode_modifier.isprefix)
4943 {
4944 last_insn.kind = last_insn_prefix;
4945 last_insn.name = i.tm.name;
4946 last_insn.file = as_where (&last_insn.line);
4947 }
4948 else
4949 last_insn.kind = last_insn_other;
29b0f896
AM
4950}
4951
4952static char *
e3bb37b5 4953parse_insn (char *line, char *mnemonic)
29b0f896
AM
4954{
4955 char *l = line;
4956 char *token_start = l;
4957 char *mnem_p;
5c6af06e 4958 int supported;
d3ce72d0 4959 const insn_template *t;
b6169b20 4960 char *dot_p = NULL;
29b0f896 4961
29b0f896
AM
4962 while (1)
4963 {
4964 mnem_p = mnemonic;
4965 while ((*mnem_p = mnemonic_chars[(unsigned char) *l]) != 0)
4966 {
b6169b20
L
4967 if (*mnem_p == '.')
4968 dot_p = mnem_p;
29b0f896
AM
4969 mnem_p++;
4970 if (mnem_p >= mnemonic + MAX_MNEM_SIZE)
45288df1 4971 {
29b0f896
AM
4972 as_bad (_("no such instruction: `%s'"), token_start);
4973 return NULL;
4974 }
4975 l++;
4976 }
4977 if (!is_space_char (*l)
4978 && *l != END_OF_INSN
e44823cf
JB
4979 && (intel_syntax
4980 || (*l != PREFIX_SEPARATOR
4981 && *l != ',')))
29b0f896
AM
4982 {
4983 as_bad (_("invalid character %s in mnemonic"),
4984 output_invalid (*l));
4985 return NULL;
4986 }
4987 if (token_start == l)
4988 {
e44823cf 4989 if (!intel_syntax && *l == PREFIX_SEPARATOR)
29b0f896
AM
4990 as_bad (_("expecting prefix; got nothing"));
4991 else
4992 as_bad (_("expecting mnemonic; got nothing"));
4993 return NULL;
4994 }
45288df1 4995
29b0f896 4996 /* Look up instruction (or prefix) via hash table. */
d3ce72d0 4997 current_templates = (const templates *) hash_find (op_hash, mnemonic);
47926f60 4998
29b0f896
AM
4999 if (*l != END_OF_INSN
5000 && (!is_space_char (*l) || l[1] != END_OF_INSN)
5001 && current_templates
40fb9820 5002 && current_templates->start->opcode_modifier.isprefix)
29b0f896 5003 {
c6fb90c8 5004 if (!cpu_flags_check_cpu64 (current_templates->start->cpu_flags))
2dd88dca
JB
5005 {
5006 as_bad ((flag_code != CODE_64BIT
5007 ? _("`%s' is only supported in 64-bit mode")
5008 : _("`%s' is not supported in 64-bit mode")),
5009 current_templates->start->name);
5010 return NULL;
5011 }
29b0f896
AM
5012 /* If we are in 16-bit mode, do not allow addr16 or data16.
5013 Similarly, in 32-bit mode, do not allow addr32 or data32. */
673fe0f0
JB
5014 if ((current_templates->start->opcode_modifier.size == SIZE16
5015 || current_templates->start->opcode_modifier.size == SIZE32)
29b0f896 5016 && flag_code != CODE_64BIT
673fe0f0 5017 && ((current_templates->start->opcode_modifier.size == SIZE32)
29b0f896
AM
5018 ^ (flag_code == CODE_16BIT)))
5019 {
5020 as_bad (_("redundant %s prefix"),
5021 current_templates->start->name);
5022 return NULL;
45288df1 5023 }
86fa6981 5024 if (current_templates->start->opcode_length == 0)
29b0f896 5025 {
86fa6981
L
5026 /* Handle pseudo prefixes. */
5027 switch (current_templates->start->base_opcode)
5028 {
5029 case 0x0:
5030 /* {disp8} */
5031 i.disp_encoding = disp_encoding_8bit;
5032 break;
5033 case 0x1:
5034 /* {disp32} */
5035 i.disp_encoding = disp_encoding_32bit;
5036 break;
5037 case 0x2:
5038 /* {load} */
5039 i.dir_encoding = dir_encoding_load;
5040 break;
5041 case 0x3:
5042 /* {store} */
5043 i.dir_encoding = dir_encoding_store;
5044 break;
5045 case 0x4:
42e04b36
L
5046 /* {vex} */
5047 i.vec_encoding = vex_encoding_vex;
86fa6981
L
5048 break;
5049 case 0x5:
5050 /* {vex3} */
5051 i.vec_encoding = vex_encoding_vex3;
5052 break;
5053 case 0x6:
5054 /* {evex} */
5055 i.vec_encoding = vex_encoding_evex;
5056 break;
6b6b6807
L
5057 case 0x7:
5058 /* {rex} */
5059 i.rex_encoding = TRUE;
5060 break;
b6f8c7c4
L
5061 case 0x8:
5062 /* {nooptimize} */
5063 i.no_optimize = TRUE;
5064 break;
86fa6981
L
5065 default:
5066 abort ();
5067 }
5068 }
5069 else
5070 {
5071 /* Add prefix, checking for repeated prefixes. */
4e9ac44a 5072 switch (add_prefix (current_templates->start->base_opcode))
86fa6981 5073 {
4e9ac44a
L
5074 case PREFIX_EXIST:
5075 return NULL;
5076 case PREFIX_DS:
d777820b 5077 if (current_templates->start->cpu_flags.bitfield.cpuibt)
4e9ac44a
L
5078 i.notrack_prefix = current_templates->start->name;
5079 break;
5080 case PREFIX_REP:
5081 if (current_templates->start->cpu_flags.bitfield.cpuhle)
5082 i.hle_prefix = current_templates->start->name;
5083 else if (current_templates->start->cpu_flags.bitfield.cpumpx)
5084 i.bnd_prefix = current_templates->start->name;
5085 else
5086 i.rep_prefix = current_templates->start->name;
5087 break;
5088 default:
5089 break;
86fa6981 5090 }
29b0f896
AM
5091 }
5092 /* Skip past PREFIX_SEPARATOR and reset token_start. */
5093 token_start = ++l;
5094 }
5095 else
5096 break;
5097 }
45288df1 5098
30a55f88 5099 if (!current_templates)
b6169b20 5100 {
07d5e953
JB
5101 /* Deprecated functionality (new code should use pseudo-prefixes instead):
5102 Check if we should swap operand or force 32bit displacement in
f8a5c266 5103 encoding. */
30a55f88 5104 if (mnem_p - 2 == dot_p && dot_p[1] == 's')
64c49ab3 5105 i.dir_encoding = dir_encoding_swap;
8d63c93e 5106 else if (mnem_p - 3 == dot_p
a501d77e
L
5107 && dot_p[1] == 'd'
5108 && dot_p[2] == '8')
5109 i.disp_encoding = disp_encoding_8bit;
8d63c93e 5110 else if (mnem_p - 4 == dot_p
f8a5c266
L
5111 && dot_p[1] == 'd'
5112 && dot_p[2] == '3'
5113 && dot_p[3] == '2')
a501d77e 5114 i.disp_encoding = disp_encoding_32bit;
30a55f88
L
5115 else
5116 goto check_suffix;
5117 mnem_p = dot_p;
5118 *dot_p = '\0';
d3ce72d0 5119 current_templates = (const templates *) hash_find (op_hash, mnemonic);
b6169b20
L
5120 }
5121
29b0f896
AM
5122 if (!current_templates)
5123 {
dc1e8a47 5124 check_suffix:
1c529385 5125 if (mnem_p > mnemonic)
29b0f896 5126 {
1c529385
LH
5127 /* See if we can get a match by trimming off a suffix. */
5128 switch (mnem_p[-1])
29b0f896 5129 {
1c529385
LH
5130 case WORD_MNEM_SUFFIX:
5131 if (intel_syntax && (intel_float_operand (mnemonic) & 2))
29b0f896
AM
5132 i.suffix = SHORT_MNEM_SUFFIX;
5133 else
1c529385
LH
5134 /* Fall through. */
5135 case BYTE_MNEM_SUFFIX:
5136 case QWORD_MNEM_SUFFIX:
5137 i.suffix = mnem_p[-1];
29b0f896 5138 mnem_p[-1] = '\0';
d3ce72d0 5139 current_templates = (const templates *) hash_find (op_hash,
1c529385
LH
5140 mnemonic);
5141 break;
5142 case SHORT_MNEM_SUFFIX:
5143 case LONG_MNEM_SUFFIX:
5144 if (!intel_syntax)
5145 {
5146 i.suffix = mnem_p[-1];
5147 mnem_p[-1] = '\0';
5148 current_templates = (const templates *) hash_find (op_hash,
5149 mnemonic);
5150 }
5151 break;
5152
5153 /* Intel Syntax. */
5154 case 'd':
5155 if (intel_syntax)
5156 {
5157 if (intel_float_operand (mnemonic) == 1)
5158 i.suffix = SHORT_MNEM_SUFFIX;
5159 else
5160 i.suffix = LONG_MNEM_SUFFIX;
5161 mnem_p[-1] = '\0';
5162 current_templates = (const templates *) hash_find (op_hash,
5163 mnemonic);
5164 }
5165 break;
29b0f896 5166 }
29b0f896 5167 }
1c529385 5168
29b0f896
AM
5169 if (!current_templates)
5170 {
5171 as_bad (_("no such instruction: `%s'"), token_start);
5172 return NULL;
5173 }
5174 }
252b5132 5175
0cfa3eb3
JB
5176 if (current_templates->start->opcode_modifier.jump == JUMP
5177 || current_templates->start->opcode_modifier.jump == JUMP_BYTE)
29b0f896
AM
5178 {
5179 /* Check for a branch hint. We allow ",pt" and ",pn" for
5180 predict taken and predict not taken respectively.
5181 I'm not sure that branch hints actually do anything on loop
5182 and jcxz insns (JumpByte) for current Pentium4 chips. They
5183 may work in the future and it doesn't hurt to accept them
5184 now. */
5185 if (l[0] == ',' && l[1] == 'p')
5186 {
5187 if (l[2] == 't')
5188 {
5189 if (!add_prefix (DS_PREFIX_OPCODE))
5190 return NULL;
5191 l += 3;
5192 }
5193 else if (l[2] == 'n')
5194 {
5195 if (!add_prefix (CS_PREFIX_OPCODE))
5196 return NULL;
5197 l += 3;
5198 }
5199 }
5200 }
5201 /* Any other comma loses. */
5202 if (*l == ',')
5203 {
5204 as_bad (_("invalid character %s in mnemonic"),
5205 output_invalid (*l));
5206 return NULL;
5207 }
252b5132 5208
29b0f896 5209 /* Check if instruction is supported on specified architecture. */
5c6af06e
JB
5210 supported = 0;
5211 for (t = current_templates->start; t < current_templates->end; ++t)
5212 {
c0f3af97
L
5213 supported |= cpu_flags_match (t);
5214 if (supported == CPU_FLAGS_PERFECT_MATCH)
548d0ee6
JB
5215 {
5216 if (!cpu_arch_flags.bitfield.cpui386 && (flag_code != CODE_16BIT))
5217 as_warn (_("use .code16 to ensure correct addressing mode"));
3629bb00 5218
548d0ee6
JB
5219 return l;
5220 }
29b0f896 5221 }
3629bb00 5222
548d0ee6
JB
5223 if (!(supported & CPU_FLAGS_64BIT_MATCH))
5224 as_bad (flag_code == CODE_64BIT
5225 ? _("`%s' is not supported in 64-bit mode")
5226 : _("`%s' is only supported in 64-bit mode"),
5227 current_templates->start->name);
5228 else
5229 as_bad (_("`%s' is not supported on `%s%s'"),
5230 current_templates->start->name,
5231 cpu_arch_name ? cpu_arch_name : default_arch,
5232 cpu_sub_arch_name ? cpu_sub_arch_name : "");
252b5132 5233
548d0ee6 5234 return NULL;
29b0f896 5235}
252b5132 5236
29b0f896 5237static char *
e3bb37b5 5238parse_operands (char *l, const char *mnemonic)
29b0f896
AM
5239{
5240 char *token_start;
3138f287 5241
29b0f896
AM
5242 /* 1 if operand is pending after ','. */
5243 unsigned int expecting_operand = 0;
252b5132 5244
29b0f896
AM
5245 /* Non-zero if operand parens not balanced. */
5246 unsigned int paren_not_balanced;
5247
5248 while (*l != END_OF_INSN)
5249 {
5250 /* Skip optional white space before operand. */
5251 if (is_space_char (*l))
5252 ++l;
d02603dc 5253 if (!is_operand_char (*l) && *l != END_OF_INSN && *l != '"')
29b0f896
AM
5254 {
5255 as_bad (_("invalid character %s before operand %d"),
5256 output_invalid (*l),
5257 i.operands + 1);
5258 return NULL;
5259 }
d02603dc 5260 token_start = l; /* After white space. */
29b0f896
AM
5261 paren_not_balanced = 0;
5262 while (paren_not_balanced || *l != ',')
5263 {
5264 if (*l == END_OF_INSN)
5265 {
5266 if (paren_not_balanced)
5267 {
5268 if (!intel_syntax)
5269 as_bad (_("unbalanced parenthesis in operand %d."),
5270 i.operands + 1);
5271 else
5272 as_bad (_("unbalanced brackets in operand %d."),
5273 i.operands + 1);
5274 return NULL;
5275 }
5276 else
5277 break; /* we are done */
5278 }
d02603dc 5279 else if (!is_operand_char (*l) && !is_space_char (*l) && *l != '"')
29b0f896
AM
5280 {
5281 as_bad (_("invalid character %s in operand %d"),
5282 output_invalid (*l),
5283 i.operands + 1);
5284 return NULL;
5285 }
5286 if (!intel_syntax)
5287 {
5288 if (*l == '(')
5289 ++paren_not_balanced;
5290 if (*l == ')')
5291 --paren_not_balanced;
5292 }
5293 else
5294 {
5295 if (*l == '[')
5296 ++paren_not_balanced;
5297 if (*l == ']')
5298 --paren_not_balanced;
5299 }
5300 l++;
5301 }
5302 if (l != token_start)
5303 { /* Yes, we've read in another operand. */
5304 unsigned int operand_ok;
5305 this_operand = i.operands++;
5306 if (i.operands > MAX_OPERANDS)
5307 {
5308 as_bad (_("spurious operands; (%d operands/instruction max)"),
5309 MAX_OPERANDS);
5310 return NULL;
5311 }
9d46ce34 5312 i.types[this_operand].bitfield.unspecified = 1;
29b0f896
AM
5313 /* Now parse operand adding info to 'i' as we go along. */
5314 END_STRING_AND_SAVE (l);
5315
1286ab78
L
5316 if (i.mem_operands > 1)
5317 {
5318 as_bad (_("too many memory references for `%s'"),
5319 mnemonic);
5320 return 0;
5321 }
5322
29b0f896
AM
5323 if (intel_syntax)
5324 operand_ok =
5325 i386_intel_operand (token_start,
5326 intel_float_operand (mnemonic));
5327 else
a7619375 5328 operand_ok = i386_att_operand (token_start);
29b0f896
AM
5329
5330 RESTORE_END_STRING (l);
5331 if (!operand_ok)
5332 return NULL;
5333 }
5334 else
5335 {
5336 if (expecting_operand)
5337 {
5338 expecting_operand_after_comma:
5339 as_bad (_("expecting operand after ','; got nothing"));
5340 return NULL;
5341 }
5342 if (*l == ',')
5343 {
5344 as_bad (_("expecting operand before ','; got nothing"));
5345 return NULL;
5346 }
5347 }
7f3f1ea2 5348
29b0f896
AM
5349 /* Now *l must be either ',' or END_OF_INSN. */
5350 if (*l == ',')
5351 {
5352 if (*++l == END_OF_INSN)
5353 {
5354 /* Just skip it, if it's \n complain. */
5355 goto expecting_operand_after_comma;
5356 }
5357 expecting_operand = 1;
5358 }
5359 }
5360 return l;
5361}
7f3f1ea2 5362
050dfa73 5363static void
4d456e3d 5364swap_2_operands (int xchg1, int xchg2)
050dfa73
MM
5365{
5366 union i386_op temp_op;
40fb9820 5367 i386_operand_type temp_type;
c48dadc9 5368 unsigned int temp_flags;
050dfa73 5369 enum bfd_reloc_code_real temp_reloc;
4eed87de 5370
050dfa73
MM
5371 temp_type = i.types[xchg2];
5372 i.types[xchg2] = i.types[xchg1];
5373 i.types[xchg1] = temp_type;
c48dadc9
JB
5374
5375 temp_flags = i.flags[xchg2];
5376 i.flags[xchg2] = i.flags[xchg1];
5377 i.flags[xchg1] = temp_flags;
5378
050dfa73
MM
5379 temp_op = i.op[xchg2];
5380 i.op[xchg2] = i.op[xchg1];
5381 i.op[xchg1] = temp_op;
c48dadc9 5382
050dfa73
MM
5383 temp_reloc = i.reloc[xchg2];
5384 i.reloc[xchg2] = i.reloc[xchg1];
5385 i.reloc[xchg1] = temp_reloc;
43234a1e
L
5386
5387 if (i.mask)
5388 {
5389 if (i.mask->operand == xchg1)
5390 i.mask->operand = xchg2;
5391 else if (i.mask->operand == xchg2)
5392 i.mask->operand = xchg1;
5393 }
5394 if (i.broadcast)
5395 {
5396 if (i.broadcast->operand == xchg1)
5397 i.broadcast->operand = xchg2;
5398 else if (i.broadcast->operand == xchg2)
5399 i.broadcast->operand = xchg1;
5400 }
5401 if (i.rounding)
5402 {
5403 if (i.rounding->operand == xchg1)
5404 i.rounding->operand = xchg2;
5405 else if (i.rounding->operand == xchg2)
5406 i.rounding->operand = xchg1;
5407 }
050dfa73
MM
5408}
5409
29b0f896 5410static void
e3bb37b5 5411swap_operands (void)
29b0f896 5412{
b7c61d9a 5413 switch (i.operands)
050dfa73 5414 {
c0f3af97 5415 case 5:
b7c61d9a 5416 case 4:
4d456e3d 5417 swap_2_operands (1, i.operands - 2);
1a0670f3 5418 /* Fall through. */
b7c61d9a
L
5419 case 3:
5420 case 2:
4d456e3d 5421 swap_2_operands (0, i.operands - 1);
b7c61d9a
L
5422 break;
5423 default:
5424 abort ();
29b0f896 5425 }
29b0f896
AM
5426
5427 if (i.mem_operands == 2)
5428 {
5429 const seg_entry *temp_seg;
5430 temp_seg = i.seg[0];
5431 i.seg[0] = i.seg[1];
5432 i.seg[1] = temp_seg;
5433 }
5434}
252b5132 5435
29b0f896
AM
5436/* Try to ensure constant immediates are represented in the smallest
5437 opcode possible. */
5438static void
e3bb37b5 5439optimize_imm (void)
29b0f896
AM
5440{
5441 char guess_suffix = 0;
5442 int op;
252b5132 5443
29b0f896
AM
5444 if (i.suffix)
5445 guess_suffix = i.suffix;
5446 else if (i.reg_operands)
5447 {
5448 /* Figure out a suffix from the last register operand specified.
75e5731b
JB
5449 We can't do this properly yet, i.e. excluding special register
5450 instances, but the following works for instructions with
5451 immediates. In any case, we can't set i.suffix yet. */
29b0f896 5452 for (op = i.operands; --op >= 0;)
bab6aec1
JB
5453 if (i.types[op].bitfield.class != Reg)
5454 continue;
5455 else if (i.types[op].bitfield.byte)
7ab9ffdd 5456 {
40fb9820
L
5457 guess_suffix = BYTE_MNEM_SUFFIX;
5458 break;
5459 }
bab6aec1 5460 else if (i.types[op].bitfield.word)
252b5132 5461 {
40fb9820
L
5462 guess_suffix = WORD_MNEM_SUFFIX;
5463 break;
5464 }
bab6aec1 5465 else if (i.types[op].bitfield.dword)
40fb9820
L
5466 {
5467 guess_suffix = LONG_MNEM_SUFFIX;
5468 break;
5469 }
bab6aec1 5470 else if (i.types[op].bitfield.qword)
40fb9820
L
5471 {
5472 guess_suffix = QWORD_MNEM_SUFFIX;
29b0f896 5473 break;
252b5132 5474 }
29b0f896
AM
5475 }
5476 else if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
5477 guess_suffix = WORD_MNEM_SUFFIX;
5478
5479 for (op = i.operands; --op >= 0;)
40fb9820 5480 if (operand_type_check (i.types[op], imm))
29b0f896
AM
5481 {
5482 switch (i.op[op].imms->X_op)
252b5132 5483 {
29b0f896
AM
5484 case O_constant:
5485 /* If a suffix is given, this operand may be shortened. */
5486 switch (guess_suffix)
252b5132 5487 {
29b0f896 5488 case LONG_MNEM_SUFFIX:
40fb9820
L
5489 i.types[op].bitfield.imm32 = 1;
5490 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
5491 break;
5492 case WORD_MNEM_SUFFIX:
40fb9820
L
5493 i.types[op].bitfield.imm16 = 1;
5494 i.types[op].bitfield.imm32 = 1;
5495 i.types[op].bitfield.imm32s = 1;
5496 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
5497 break;
5498 case BYTE_MNEM_SUFFIX:
40fb9820
L
5499 i.types[op].bitfield.imm8 = 1;
5500 i.types[op].bitfield.imm8s = 1;
5501 i.types[op].bitfield.imm16 = 1;
5502 i.types[op].bitfield.imm32 = 1;
5503 i.types[op].bitfield.imm32s = 1;
5504 i.types[op].bitfield.imm64 = 1;
29b0f896 5505 break;
252b5132 5506 }
252b5132 5507
29b0f896
AM
5508 /* If this operand is at most 16 bits, convert it
5509 to a signed 16 bit number before trying to see
5510 whether it will fit in an even smaller size.
5511 This allows a 16-bit operand such as $0xffe0 to
5512 be recognised as within Imm8S range. */
40fb9820 5513 if ((i.types[op].bitfield.imm16)
29b0f896 5514 && (i.op[op].imms->X_add_number & ~(offsetT) 0xffff) == 0)
252b5132 5515 {
29b0f896
AM
5516 i.op[op].imms->X_add_number =
5517 (((i.op[op].imms->X_add_number & 0xffff) ^ 0x8000) - 0x8000);
5518 }
a28def75
L
5519#ifdef BFD64
5520 /* Store 32-bit immediate in 64-bit for 64-bit BFD. */
40fb9820 5521 if ((i.types[op].bitfield.imm32)
29b0f896
AM
5522 && ((i.op[op].imms->X_add_number & ~(((offsetT) 2 << 31) - 1))
5523 == 0))
5524 {
5525 i.op[op].imms->X_add_number = ((i.op[op].imms->X_add_number
5526 ^ ((offsetT) 1 << 31))
5527 - ((offsetT) 1 << 31));
5528 }
a28def75 5529#endif
40fb9820 5530 i.types[op]
c6fb90c8
L
5531 = operand_type_or (i.types[op],
5532 smallest_imm_type (i.op[op].imms->X_add_number));
252b5132 5533
29b0f896
AM
5534 /* We must avoid matching of Imm32 templates when 64bit
5535 only immediate is available. */
5536 if (guess_suffix == QWORD_MNEM_SUFFIX)
40fb9820 5537 i.types[op].bitfield.imm32 = 0;
29b0f896 5538 break;
252b5132 5539
29b0f896
AM
5540 case O_absent:
5541 case O_register:
5542 abort ();
5543
5544 /* Symbols and expressions. */
5545 default:
9cd96992
JB
5546 /* Convert symbolic operand to proper sizes for matching, but don't
5547 prevent matching a set of insns that only supports sizes other
5548 than those matching the insn suffix. */
5549 {
40fb9820 5550 i386_operand_type mask, allowed;
d3ce72d0 5551 const insn_template *t;
9cd96992 5552
0dfbf9d7
L
5553 operand_type_set (&mask, 0);
5554 operand_type_set (&allowed, 0);
40fb9820 5555
4eed87de
AM
5556 for (t = current_templates->start;
5557 t < current_templates->end;
5558 ++t)
bab6aec1
JB
5559 {
5560 allowed = operand_type_or (allowed, t->operand_types[op]);
5561 allowed = operand_type_and (allowed, anyimm);
5562 }
9cd96992
JB
5563 switch (guess_suffix)
5564 {
5565 case QWORD_MNEM_SUFFIX:
40fb9820
L
5566 mask.bitfield.imm64 = 1;
5567 mask.bitfield.imm32s = 1;
9cd96992
JB
5568 break;
5569 case LONG_MNEM_SUFFIX:
40fb9820 5570 mask.bitfield.imm32 = 1;
9cd96992
JB
5571 break;
5572 case WORD_MNEM_SUFFIX:
40fb9820 5573 mask.bitfield.imm16 = 1;
9cd96992
JB
5574 break;
5575 case BYTE_MNEM_SUFFIX:
40fb9820 5576 mask.bitfield.imm8 = 1;
9cd96992
JB
5577 break;
5578 default:
9cd96992
JB
5579 break;
5580 }
c6fb90c8 5581 allowed = operand_type_and (mask, allowed);
0dfbf9d7 5582 if (!operand_type_all_zero (&allowed))
c6fb90c8 5583 i.types[op] = operand_type_and (i.types[op], mask);
9cd96992 5584 }
29b0f896 5585 break;
252b5132 5586 }
29b0f896
AM
5587 }
5588}
47926f60 5589
29b0f896
AM
5590/* Try to use the smallest displacement type too. */
5591static void
e3bb37b5 5592optimize_disp (void)
29b0f896
AM
5593{
5594 int op;
3e73aa7c 5595
29b0f896 5596 for (op = i.operands; --op >= 0;)
40fb9820 5597 if (operand_type_check (i.types[op], disp))
252b5132 5598 {
b300c311 5599 if (i.op[op].disps->X_op == O_constant)
252b5132 5600 {
91d6fa6a 5601 offsetT op_disp = i.op[op].disps->X_add_number;
29b0f896 5602
40fb9820 5603 if (i.types[op].bitfield.disp16
91d6fa6a 5604 && (op_disp & ~(offsetT) 0xffff) == 0)
b300c311
L
5605 {
5606 /* If this operand is at most 16 bits, convert
5607 to a signed 16 bit number and don't use 64bit
5608 displacement. */
91d6fa6a 5609 op_disp = (((op_disp & 0xffff) ^ 0x8000) - 0x8000);
40fb9820 5610 i.types[op].bitfield.disp64 = 0;
b300c311 5611 }
a28def75
L
5612#ifdef BFD64
5613 /* Optimize 64-bit displacement to 32-bit for 64-bit BFD. */
40fb9820 5614 if (i.types[op].bitfield.disp32
91d6fa6a 5615 && (op_disp & ~(((offsetT) 2 << 31) - 1)) == 0)
b300c311
L
5616 {
5617 /* If this operand is at most 32 bits, convert
5618 to a signed 32 bit number and don't use 64bit
5619 displacement. */
91d6fa6a
NC
5620 op_disp &= (((offsetT) 2 << 31) - 1);
5621 op_disp = (op_disp ^ ((offsetT) 1 << 31)) - ((addressT) 1 << 31);
40fb9820 5622 i.types[op].bitfield.disp64 = 0;
b300c311 5623 }
a28def75 5624#endif
91d6fa6a 5625 if (!op_disp && i.types[op].bitfield.baseindex)
b300c311 5626 {
40fb9820
L
5627 i.types[op].bitfield.disp8 = 0;
5628 i.types[op].bitfield.disp16 = 0;
5629 i.types[op].bitfield.disp32 = 0;
5630 i.types[op].bitfield.disp32s = 0;
5631 i.types[op].bitfield.disp64 = 0;
b300c311
L
5632 i.op[op].disps = 0;
5633 i.disp_operands--;
5634 }
5635 else if (flag_code == CODE_64BIT)
5636 {
91d6fa6a 5637 if (fits_in_signed_long (op_disp))
28a9d8f5 5638 {
40fb9820
L
5639 i.types[op].bitfield.disp64 = 0;
5640 i.types[op].bitfield.disp32s = 1;
28a9d8f5 5641 }
0e1147d9 5642 if (i.prefix[ADDR_PREFIX]
91d6fa6a 5643 && fits_in_unsigned_long (op_disp))
40fb9820 5644 i.types[op].bitfield.disp32 = 1;
b300c311 5645 }
40fb9820
L
5646 if ((i.types[op].bitfield.disp32
5647 || i.types[op].bitfield.disp32s
5648 || i.types[op].bitfield.disp16)
b5014f7a 5649 && fits_in_disp8 (op_disp))
40fb9820 5650 i.types[op].bitfield.disp8 = 1;
252b5132 5651 }
67a4f2b7
AO
5652 else if (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
5653 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL)
5654 {
5655 fix_new_exp (frag_now, frag_more (0) - frag_now->fr_literal, 0,
5656 i.op[op].disps, 0, i.reloc[op]);
40fb9820
L
5657 i.types[op].bitfield.disp8 = 0;
5658 i.types[op].bitfield.disp16 = 0;
5659 i.types[op].bitfield.disp32 = 0;
5660 i.types[op].bitfield.disp32s = 0;
5661 i.types[op].bitfield.disp64 = 0;
67a4f2b7
AO
5662 }
5663 else
b300c311 5664 /* We only support 64bit displacement on constants. */
40fb9820 5665 i.types[op].bitfield.disp64 = 0;
252b5132 5666 }
29b0f896
AM
5667}
5668
4a1b91ea
L
5669/* Return 1 if there is a match in broadcast bytes between operand
5670 GIVEN and instruction template T. */
5671
5672static INLINE int
5673match_broadcast_size (const insn_template *t, unsigned int given)
5674{
5675 return ((t->opcode_modifier.broadcast == BYTE_BROADCAST
5676 && i.types[given].bitfield.byte)
5677 || (t->opcode_modifier.broadcast == WORD_BROADCAST
5678 && i.types[given].bitfield.word)
5679 || (t->opcode_modifier.broadcast == DWORD_BROADCAST
5680 && i.types[given].bitfield.dword)
5681 || (t->opcode_modifier.broadcast == QWORD_BROADCAST
5682 && i.types[given].bitfield.qword));
5683}
5684
6c30d220
L
5685/* Check if operands are valid for the instruction. */
5686
5687static int
5688check_VecOperands (const insn_template *t)
5689{
43234a1e 5690 unsigned int op;
e2195274 5691 i386_cpu_flags cpu;
e2195274
JB
5692
5693 /* Templates allowing for ZMMword as well as YMMword and/or XMMword for
5694 any one operand are implicity requiring AVX512VL support if the actual
5695 operand size is YMMword or XMMword. Since this function runs after
5696 template matching, there's no need to check for YMMword/XMMword in
5697 the template. */
5698 cpu = cpu_flags_and (t->cpu_flags, avx512);
5699 if (!cpu_flags_all_zero (&cpu)
5700 && !t->cpu_flags.bitfield.cpuavx512vl
5701 && !cpu_arch_flags.bitfield.cpuavx512vl)
5702 {
5703 for (op = 0; op < t->operands; ++op)
5704 {
5705 if (t->operand_types[op].bitfield.zmmword
5706 && (i.types[op].bitfield.ymmword
5707 || i.types[op].bitfield.xmmword))
5708 {
5709 i.error = unsupported;
5710 return 1;
5711 }
5712 }
5713 }
43234a1e 5714
6c30d220
L
5715 /* Without VSIB byte, we can't have a vector register for index. */
5716 if (!t->opcode_modifier.vecsib
5717 && i.index_reg
1b54b8d7
JB
5718 && (i.index_reg->reg_type.bitfield.xmmword
5719 || i.index_reg->reg_type.bitfield.ymmword
5720 || i.index_reg->reg_type.bitfield.zmmword))
6c30d220
L
5721 {
5722 i.error = unsupported_vector_index_register;
5723 return 1;
5724 }
5725
ad8ecc81
MZ
5726 /* Check if default mask is allowed. */
5727 if (t->opcode_modifier.nodefmask
5728 && (!i.mask || i.mask->mask->reg_num == 0))
5729 {
5730 i.error = no_default_mask;
5731 return 1;
5732 }
5733
7bab8ab5
JB
5734 /* For VSIB byte, we need a vector register for index, and all vector
5735 registers must be distinct. */
5736 if (t->opcode_modifier.vecsib)
5737 {
5738 if (!i.index_reg
6c30d220 5739 || !((t->opcode_modifier.vecsib == VecSIB128
1b54b8d7 5740 && i.index_reg->reg_type.bitfield.xmmword)
6c30d220 5741 || (t->opcode_modifier.vecsib == VecSIB256
1b54b8d7 5742 && i.index_reg->reg_type.bitfield.ymmword)
43234a1e 5743 || (t->opcode_modifier.vecsib == VecSIB512
1b54b8d7 5744 && i.index_reg->reg_type.bitfield.zmmword)))
7bab8ab5
JB
5745 {
5746 i.error = invalid_vsib_address;
5747 return 1;
5748 }
5749
43234a1e
L
5750 gas_assert (i.reg_operands == 2 || i.mask);
5751 if (i.reg_operands == 2 && !i.mask)
5752 {
3528c362 5753 gas_assert (i.types[0].bitfield.class == RegSIMD);
1b54b8d7
JB
5754 gas_assert (i.types[0].bitfield.xmmword
5755 || i.types[0].bitfield.ymmword);
3528c362 5756 gas_assert (i.types[2].bitfield.class == RegSIMD);
1b54b8d7
JB
5757 gas_assert (i.types[2].bitfield.xmmword
5758 || i.types[2].bitfield.ymmword);
43234a1e
L
5759 if (operand_check == check_none)
5760 return 0;
5761 if (register_number (i.op[0].regs)
5762 != register_number (i.index_reg)
5763 && register_number (i.op[2].regs)
5764 != register_number (i.index_reg)
5765 && register_number (i.op[0].regs)
5766 != register_number (i.op[2].regs))
5767 return 0;
5768 if (operand_check == check_error)
5769 {
5770 i.error = invalid_vector_register_set;
5771 return 1;
5772 }
5773 as_warn (_("mask, index, and destination registers should be distinct"));
5774 }
8444f82a
MZ
5775 else if (i.reg_operands == 1 && i.mask)
5776 {
3528c362 5777 if (i.types[1].bitfield.class == RegSIMD
1b54b8d7
JB
5778 && (i.types[1].bitfield.xmmword
5779 || i.types[1].bitfield.ymmword
5780 || i.types[1].bitfield.zmmword)
8444f82a
MZ
5781 && (register_number (i.op[1].regs)
5782 == register_number (i.index_reg)))
5783 {
5784 if (operand_check == check_error)
5785 {
5786 i.error = invalid_vector_register_set;
5787 return 1;
5788 }
5789 if (operand_check != check_none)
5790 as_warn (_("index and destination registers should be distinct"));
5791 }
5792 }
43234a1e 5793 }
7bab8ab5 5794
43234a1e
L
5795 /* Check if broadcast is supported by the instruction and is applied
5796 to the memory operand. */
5797 if (i.broadcast)
5798 {
8e6e0792 5799 i386_operand_type type, overlap;
43234a1e
L
5800
5801 /* Check if specified broadcast is supported in this instruction,
4a1b91ea 5802 and its broadcast bytes match the memory operand. */
32546502 5803 op = i.broadcast->operand;
8e6e0792 5804 if (!t->opcode_modifier.broadcast
c48dadc9 5805 || !(i.flags[op] & Operand_Mem)
c39e5b26 5806 || (!i.types[op].bitfield.unspecified
4a1b91ea 5807 && !match_broadcast_size (t, op)))
43234a1e
L
5808 {
5809 bad_broadcast:
5810 i.error = unsupported_broadcast;
5811 return 1;
5812 }
8e6e0792 5813
4a1b91ea
L
5814 i.broadcast->bytes = ((1 << (t->opcode_modifier.broadcast - 1))
5815 * i.broadcast->type);
8e6e0792 5816 operand_type_set (&type, 0);
4a1b91ea 5817 switch (i.broadcast->bytes)
8e6e0792 5818 {
4a1b91ea
L
5819 case 2:
5820 type.bitfield.word = 1;
5821 break;
5822 case 4:
5823 type.bitfield.dword = 1;
5824 break;
8e6e0792
JB
5825 case 8:
5826 type.bitfield.qword = 1;
5827 break;
5828 case 16:
5829 type.bitfield.xmmword = 1;
5830 break;
5831 case 32:
5832 type.bitfield.ymmword = 1;
5833 break;
5834 case 64:
5835 type.bitfield.zmmword = 1;
5836 break;
5837 default:
5838 goto bad_broadcast;
5839 }
5840
5841 overlap = operand_type_and (type, t->operand_types[op]);
bc49bfd8
JB
5842 if (t->operand_types[op].bitfield.class == RegSIMD
5843 && t->operand_types[op].bitfield.byte
5844 + t->operand_types[op].bitfield.word
5845 + t->operand_types[op].bitfield.dword
5846 + t->operand_types[op].bitfield.qword > 1)
5847 {
5848 overlap.bitfield.xmmword = 0;
5849 overlap.bitfield.ymmword = 0;
5850 overlap.bitfield.zmmword = 0;
5851 }
8e6e0792
JB
5852 if (operand_type_all_zero (&overlap))
5853 goto bad_broadcast;
5854
5855 if (t->opcode_modifier.checkregsize)
5856 {
5857 unsigned int j;
5858
e2195274 5859 type.bitfield.baseindex = 1;
8e6e0792
JB
5860 for (j = 0; j < i.operands; ++j)
5861 {
5862 if (j != op
5863 && !operand_type_register_match(i.types[j],
5864 t->operand_types[j],
5865 type,
5866 t->operand_types[op]))
5867 goto bad_broadcast;
5868 }
5869 }
43234a1e
L
5870 }
5871 /* If broadcast is supported in this instruction, we need to check if
5872 operand of one-element size isn't specified without broadcast. */
5873 else if (t->opcode_modifier.broadcast && i.mem_operands)
5874 {
5875 /* Find memory operand. */
5876 for (op = 0; op < i.operands; op++)
8dc0818e 5877 if (i.flags[op] & Operand_Mem)
43234a1e
L
5878 break;
5879 gas_assert (op < i.operands);
5880 /* Check size of the memory operand. */
4a1b91ea 5881 if (match_broadcast_size (t, op))
43234a1e
L
5882 {
5883 i.error = broadcast_needed;
5884 return 1;
5885 }
5886 }
c39e5b26
JB
5887 else
5888 op = MAX_OPERANDS - 1; /* Avoid uninitialized variable warning. */
43234a1e
L
5889
5890 /* Check if requested masking is supported. */
ae2387fe 5891 if (i.mask)
43234a1e 5892 {
ae2387fe
JB
5893 switch (t->opcode_modifier.masking)
5894 {
5895 case BOTH_MASKING:
5896 break;
5897 case MERGING_MASKING:
5898 if (i.mask->zeroing)
5899 {
5900 case 0:
5901 i.error = unsupported_masking;
5902 return 1;
5903 }
5904 break;
5905 case DYNAMIC_MASKING:
5906 /* Memory destinations allow only merging masking. */
5907 if (i.mask->zeroing && i.mem_operands)
5908 {
5909 /* Find memory operand. */
5910 for (op = 0; op < i.operands; op++)
c48dadc9 5911 if (i.flags[op] & Operand_Mem)
ae2387fe
JB
5912 break;
5913 gas_assert (op < i.operands);
5914 if (op == i.operands - 1)
5915 {
5916 i.error = unsupported_masking;
5917 return 1;
5918 }
5919 }
5920 break;
5921 default:
5922 abort ();
5923 }
43234a1e
L
5924 }
5925
5926 /* Check if masking is applied to dest operand. */
5927 if (i.mask && (i.mask->operand != (int) (i.operands - 1)))
5928 {
5929 i.error = mask_not_on_destination;
5930 return 1;
5931 }
5932
43234a1e
L
5933 /* Check RC/SAE. */
5934 if (i.rounding)
5935 {
a80195f1
JB
5936 if (!t->opcode_modifier.sae
5937 || (i.rounding->type != saeonly && !t->opcode_modifier.staticrounding))
43234a1e
L
5938 {
5939 i.error = unsupported_rc_sae;
5940 return 1;
5941 }
5942 /* If the instruction has several immediate operands and one of
5943 them is rounding, the rounding operand should be the last
5944 immediate operand. */
5945 if (i.imm_operands > 1
5946 && i.rounding->operand != (int) (i.imm_operands - 1))
7bab8ab5 5947 {
43234a1e 5948 i.error = rc_sae_operand_not_last_imm;
7bab8ab5
JB
5949 return 1;
5950 }
6c30d220
L
5951 }
5952
43234a1e 5953 /* Check vector Disp8 operand. */
b5014f7a
JB
5954 if (t->opcode_modifier.disp8memshift
5955 && i.disp_encoding != disp_encoding_32bit)
43234a1e
L
5956 {
5957 if (i.broadcast)
4a1b91ea 5958 i.memshift = t->opcode_modifier.broadcast - 1;
7091c612 5959 else if (t->opcode_modifier.disp8memshift != DISP8_SHIFT_VL)
43234a1e 5960 i.memshift = t->opcode_modifier.disp8memshift;
7091c612
JB
5961 else
5962 {
5963 const i386_operand_type *type = NULL;
5964
5965 i.memshift = 0;
5966 for (op = 0; op < i.operands; op++)
8dc0818e 5967 if (i.flags[op] & Operand_Mem)
7091c612 5968 {
4174bfff
JB
5969 if (t->opcode_modifier.evex == EVEXLIG)
5970 i.memshift = 2 + (i.suffix == QWORD_MNEM_SUFFIX);
5971 else if (t->operand_types[op].bitfield.xmmword
5972 + t->operand_types[op].bitfield.ymmword
5973 + t->operand_types[op].bitfield.zmmword <= 1)
7091c612
JB
5974 type = &t->operand_types[op];
5975 else if (!i.types[op].bitfield.unspecified)
5976 type = &i.types[op];
5977 }
3528c362 5978 else if (i.types[op].bitfield.class == RegSIMD
4174bfff 5979 && t->opcode_modifier.evex != EVEXLIG)
7091c612
JB
5980 {
5981 if (i.types[op].bitfield.zmmword)
5982 i.memshift = 6;
5983 else if (i.types[op].bitfield.ymmword && i.memshift < 5)
5984 i.memshift = 5;
5985 else if (i.types[op].bitfield.xmmword && i.memshift < 4)
5986 i.memshift = 4;
5987 }
5988
5989 if (type)
5990 {
5991 if (type->bitfield.zmmword)
5992 i.memshift = 6;
5993 else if (type->bitfield.ymmword)
5994 i.memshift = 5;
5995 else if (type->bitfield.xmmword)
5996 i.memshift = 4;
5997 }
5998
5999 /* For the check in fits_in_disp8(). */
6000 if (i.memshift == 0)
6001 i.memshift = -1;
6002 }
43234a1e
L
6003
6004 for (op = 0; op < i.operands; op++)
6005 if (operand_type_check (i.types[op], disp)
6006 && i.op[op].disps->X_op == O_constant)
6007 {
b5014f7a 6008 if (fits_in_disp8 (i.op[op].disps->X_add_number))
43234a1e 6009 {
b5014f7a
JB
6010 i.types[op].bitfield.disp8 = 1;
6011 return 0;
43234a1e 6012 }
b5014f7a 6013 i.types[op].bitfield.disp8 = 0;
43234a1e
L
6014 }
6015 }
b5014f7a
JB
6016
6017 i.memshift = 0;
43234a1e 6018
6c30d220
L
6019 return 0;
6020}
6021
43f3e2ee 6022/* Check if operands are valid for the instruction. Update VEX
a683cc34
SP
6023 operand types. */
6024
6025static int
6026VEX_check_operands (const insn_template *t)
6027{
86fa6981 6028 if (i.vec_encoding == vex_encoding_evex)
43234a1e 6029 {
86fa6981 6030 /* This instruction must be encoded with EVEX prefix. */
e771e7c9 6031 if (!is_evex_encoding (t))
86fa6981
L
6032 {
6033 i.error = unsupported;
6034 return 1;
6035 }
6036 return 0;
43234a1e
L
6037 }
6038
a683cc34 6039 if (!t->opcode_modifier.vex)
86fa6981
L
6040 {
6041 /* This instruction template doesn't have VEX prefix. */
6042 if (i.vec_encoding != vex_encoding_default)
6043 {
6044 i.error = unsupported;
6045 return 1;
6046 }
6047 return 0;
6048 }
a683cc34 6049
9d3bf266
JB
6050 /* Check the special Imm4 cases; must be the first operand. */
6051 if (t->cpu_flags.bitfield.cpuxop && t->operands == 5)
a683cc34
SP
6052 {
6053 if (i.op[0].imms->X_op != O_constant
6054 || !fits_in_imm4 (i.op[0].imms->X_add_number))
891edac4 6055 {
a65babc9 6056 i.error = bad_imm4;
891edac4
L
6057 return 1;
6058 }
a683cc34 6059
9d3bf266
JB
6060 /* Turn off Imm<N> so that update_imm won't complain. */
6061 operand_type_set (&i.types[0], 0);
a683cc34
SP
6062 }
6063
6064 return 0;
6065}
6066
d3ce72d0 6067static const insn_template *
83b16ac6 6068match_template (char mnem_suffix)
29b0f896
AM
6069{
6070 /* Points to template once we've found it. */
d3ce72d0 6071 const insn_template *t;
40fb9820 6072 i386_operand_type overlap0, overlap1, overlap2, overlap3;
c0f3af97 6073 i386_operand_type overlap4;
29b0f896 6074 unsigned int found_reverse_match;
dc2be329 6075 i386_opcode_modifier suffix_check;
40fb9820 6076 i386_operand_type operand_types [MAX_OPERANDS];
539e75ad 6077 int addr_prefix_disp;
45a4bb20 6078 unsigned int j, size_match, check_register;
5614d22c 6079 enum i386_error specific_error = 0;
29b0f896 6080
c0f3af97
L
6081#if MAX_OPERANDS != 5
6082# error "MAX_OPERANDS must be 5."
f48ff2ae
L
6083#endif
6084
29b0f896 6085 found_reverse_match = 0;
539e75ad 6086 addr_prefix_disp = -1;
40fb9820 6087
dc2be329 6088 /* Prepare for mnemonic suffix check. */
40fb9820 6089 memset (&suffix_check, 0, sizeof (suffix_check));
dc2be329
L
6090 switch (mnem_suffix)
6091 {
6092 case BYTE_MNEM_SUFFIX:
6093 suffix_check.no_bsuf = 1;
6094 break;
6095 case WORD_MNEM_SUFFIX:
6096 suffix_check.no_wsuf = 1;
6097 break;
6098 case SHORT_MNEM_SUFFIX:
6099 suffix_check.no_ssuf = 1;
6100 break;
6101 case LONG_MNEM_SUFFIX:
6102 suffix_check.no_lsuf = 1;
6103 break;
6104 case QWORD_MNEM_SUFFIX:
6105 suffix_check.no_qsuf = 1;
6106 break;
6107 default:
6108 /* NB: In Intel syntax, normally we can check for memory operand
6109 size when there is no mnemonic suffix. But jmp and call have
6110 2 different encodings with Dword memory operand size, one with
6111 No_ldSuf and the other without. i.suffix is set to
6112 LONG_DOUBLE_MNEM_SUFFIX to skip the one with No_ldSuf. */
6113 if (i.suffix == LONG_DOUBLE_MNEM_SUFFIX)
6114 suffix_check.no_ldsuf = 1;
83b16ac6
JB
6115 }
6116
01559ecc
L
6117 /* Must have right number of operands. */
6118 i.error = number_of_operands_mismatch;
6119
45aa61fe 6120 for (t = current_templates->start; t < current_templates->end; t++)
29b0f896 6121 {
539e75ad 6122 addr_prefix_disp = -1;
dbbc8b7e 6123 found_reverse_match = 0;
539e75ad 6124
29b0f896
AM
6125 if (i.operands != t->operands)
6126 continue;
6127
50aecf8c 6128 /* Check processor support. */
a65babc9 6129 i.error = unsupported;
45a4bb20 6130 if (cpu_flags_match (t) != CPU_FLAGS_PERFECT_MATCH)
50aecf8c
L
6131 continue;
6132
e1d4d893 6133 /* Check AT&T mnemonic. */
a65babc9 6134 i.error = unsupported_with_intel_mnemonic;
e1d4d893 6135 if (intel_mnemonic && t->opcode_modifier.attmnemonic)
1efbbeb4
L
6136 continue;
6137
4b5aaf5f 6138 /* Check AT&T/Intel syntax. */
a65babc9 6139 i.error = unsupported_syntax;
5c07affc 6140 if ((intel_syntax && t->opcode_modifier.attsyntax)
4b5aaf5f 6141 || (!intel_syntax && t->opcode_modifier.intelsyntax))
1efbbeb4
L
6142 continue;
6143
4b5aaf5f
L
6144 /* Check Intel64/AMD64 ISA. */
6145 switch (isa64)
6146 {
6147 default:
6148 /* Default: Don't accept Intel64. */
6149 if (t->opcode_modifier.isa64 == INTEL64)
6150 continue;
6151 break;
6152 case amd64:
6153 /* -mamd64: Don't accept Intel64 and Intel64 only. */
6154 if (t->opcode_modifier.isa64 >= INTEL64)
6155 continue;
6156 break;
6157 case intel64:
6158 /* -mintel64: Don't accept AMD64. */
5990e377 6159 if (t->opcode_modifier.isa64 == AMD64 && flag_code == CODE_64BIT)
4b5aaf5f
L
6160 continue;
6161 break;
6162 }
6163
dc2be329 6164 /* Check the suffix. */
a65babc9 6165 i.error = invalid_instruction_suffix;
dc2be329
L
6166 if ((t->opcode_modifier.no_bsuf && suffix_check.no_bsuf)
6167 || (t->opcode_modifier.no_wsuf && suffix_check.no_wsuf)
6168 || (t->opcode_modifier.no_lsuf && suffix_check.no_lsuf)
6169 || (t->opcode_modifier.no_ssuf && suffix_check.no_ssuf)
6170 || (t->opcode_modifier.no_qsuf && suffix_check.no_qsuf)
6171 || (t->opcode_modifier.no_ldsuf && suffix_check.no_ldsuf))
83b16ac6 6172 continue;
29b0f896 6173
3ac21baa
JB
6174 size_match = operand_size_match (t);
6175 if (!size_match)
7d5e4556 6176 continue;
539e75ad 6177
6f2f06be
JB
6178 /* This is intentionally not
6179
0cfa3eb3 6180 if (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE))
6f2f06be
JB
6181
6182 as the case of a missing * on the operand is accepted (perhaps with
6183 a warning, issued further down). */
0cfa3eb3 6184 if (i.jumpabsolute && t->opcode_modifier.jump != JUMP_ABSOLUTE)
6f2f06be
JB
6185 {
6186 i.error = operand_type_mismatch;
6187 continue;
6188 }
6189
5c07affc
L
6190 for (j = 0; j < MAX_OPERANDS; j++)
6191 operand_types[j] = t->operand_types[j];
6192
e365e234
JB
6193 /* In general, don't allow
6194 - 64-bit operands outside of 64-bit mode,
6195 - 32-bit operands on pre-386. */
4873e243 6196 j = i.imm_operands + (t->operands > i.imm_operands + 1);
e365e234
JB
6197 if (((i.suffix == QWORD_MNEM_SUFFIX
6198 && flag_code != CODE_64BIT
6199 && (t->base_opcode != 0x0fc7
6200 || t->extension_opcode != 1 /* cmpxchg8b */))
6201 || (i.suffix == LONG_MNEM_SUFFIX
6202 && !cpu_arch_flags.bitfield.cpui386))
45aa61fe 6203 && (intel_syntax
3cd7f3e3 6204 ? (t->opcode_modifier.mnemonicsize != IGNORESIZE
45aa61fe
AM
6205 && !intel_float_operand (t->name))
6206 : intel_float_operand (t->name) != 2)
4873e243
JB
6207 && (t->operands == i.imm_operands
6208 || (operand_types[i.imm_operands].bitfield.class != RegMMX
6209 && operand_types[i.imm_operands].bitfield.class != RegSIMD
6210 && operand_types[i.imm_operands].bitfield.class != RegMask)
6211 || (operand_types[j].bitfield.class != RegMMX
6212 && operand_types[j].bitfield.class != RegSIMD
6213 && operand_types[j].bitfield.class != RegMask))
6214 && !t->opcode_modifier.vecsib)
192dc9c6
JB
6215 continue;
6216
29b0f896 6217 /* Do not verify operands when there are none. */
e365e234
JB
6218 if (!t->operands)
6219 /* We've found a match; break out of loop. */
6220 break;
252b5132 6221
48bcea9f
JB
6222 if (!t->opcode_modifier.jump
6223 || t->opcode_modifier.jump == JUMP_ABSOLUTE)
6224 {
6225 /* There should be only one Disp operand. */
6226 for (j = 0; j < MAX_OPERANDS; j++)
6227 if (operand_type_check (operand_types[j], disp))
539e75ad 6228 break;
48bcea9f
JB
6229 if (j < MAX_OPERANDS)
6230 {
6231 bfd_boolean override = (i.prefix[ADDR_PREFIX] != 0);
6232
6233 addr_prefix_disp = j;
6234
6235 /* Address size prefix will turn Disp64/Disp32S/Disp32/Disp16
6236 operand into Disp32/Disp32/Disp16/Disp32 operand. */
6237 switch (flag_code)
40fb9820 6238 {
48bcea9f
JB
6239 case CODE_16BIT:
6240 override = !override;
6241 /* Fall through. */
6242 case CODE_32BIT:
6243 if (operand_types[j].bitfield.disp32
6244 && operand_types[j].bitfield.disp16)
40fb9820 6245 {
48bcea9f
JB
6246 operand_types[j].bitfield.disp16 = override;
6247 operand_types[j].bitfield.disp32 = !override;
40fb9820 6248 }
48bcea9f
JB
6249 operand_types[j].bitfield.disp32s = 0;
6250 operand_types[j].bitfield.disp64 = 0;
6251 break;
6252
6253 case CODE_64BIT:
6254 if (operand_types[j].bitfield.disp32s
6255 || operand_types[j].bitfield.disp64)
40fb9820 6256 {
48bcea9f
JB
6257 operand_types[j].bitfield.disp64 &= !override;
6258 operand_types[j].bitfield.disp32s &= !override;
6259 operand_types[j].bitfield.disp32 = override;
40fb9820 6260 }
48bcea9f
JB
6261 operand_types[j].bitfield.disp16 = 0;
6262 break;
40fb9820 6263 }
539e75ad 6264 }
48bcea9f 6265 }
539e75ad 6266
02a86693
L
6267 /* Force 0x8b encoding for "mov foo@GOT, %eax". */
6268 if (i.reloc[0] == BFD_RELOC_386_GOT32 && t->base_opcode == 0xa0)
6269 continue;
6270
56ffb741 6271 /* We check register size if needed. */
e2195274
JB
6272 if (t->opcode_modifier.checkregsize)
6273 {
6274 check_register = (1 << t->operands) - 1;
6275 if (i.broadcast)
6276 check_register &= ~(1 << i.broadcast->operand);
6277 }
6278 else
6279 check_register = 0;
6280
c6fb90c8 6281 overlap0 = operand_type_and (i.types[0], operand_types[0]);
29b0f896
AM
6282 switch (t->operands)
6283 {
6284 case 1:
40fb9820 6285 if (!operand_type_match (overlap0, i.types[0]))
29b0f896
AM
6286 continue;
6287 break;
6288 case 2:
33eaf5de 6289 /* xchg %eax, %eax is a special case. It is an alias for nop
8b38ad71
L
6290 only in 32bit mode and we can use opcode 0x90. In 64bit
6291 mode, we can't use 0x90 for xchg %eax, %eax since it should
6292 zero-extend %eax to %rax. */
6293 if (flag_code == CODE_64BIT
6294 && t->base_opcode == 0x90
75e5731b
JB
6295 && i.types[0].bitfield.instance == Accum
6296 && i.types[0].bitfield.dword
6297 && i.types[1].bitfield.instance == Accum
6298 && i.types[1].bitfield.dword)
8b38ad71 6299 continue;
1212781b
JB
6300 /* xrelease mov %eax, <disp> is another special case. It must not
6301 match the accumulator-only encoding of mov. */
6302 if (flag_code != CODE_64BIT
6303 && i.hle_prefix
6304 && t->base_opcode == 0xa0
75e5731b 6305 && i.types[0].bitfield.instance == Accum
8dc0818e 6306 && (i.flags[1] & Operand_Mem))
1212781b 6307 continue;
f5eb1d70
JB
6308 /* Fall through. */
6309
6310 case 3:
3ac21baa
JB
6311 if (!(size_match & MATCH_STRAIGHT))
6312 goto check_reverse;
64c49ab3
JB
6313 /* Reverse direction of operands if swapping is possible in the first
6314 place (operands need to be symmetric) and
6315 - the load form is requested, and the template is a store form,
6316 - the store form is requested, and the template is a load form,
6317 - the non-default (swapped) form is requested. */
6318 overlap1 = operand_type_and (operand_types[0], operand_types[1]);
f5eb1d70 6319 if (t->opcode_modifier.d && i.reg_operands == i.operands
64c49ab3
JB
6320 && !operand_type_all_zero (&overlap1))
6321 switch (i.dir_encoding)
6322 {
6323 case dir_encoding_load:
6324 if (operand_type_check (operand_types[i.operands - 1], anymem)
dfd69174 6325 || t->opcode_modifier.regmem)
64c49ab3
JB
6326 goto check_reverse;
6327 break;
6328
6329 case dir_encoding_store:
6330 if (!operand_type_check (operand_types[i.operands - 1], anymem)
dfd69174 6331 && !t->opcode_modifier.regmem)
64c49ab3
JB
6332 goto check_reverse;
6333 break;
6334
6335 case dir_encoding_swap:
6336 goto check_reverse;
6337
6338 case dir_encoding_default:
6339 break;
6340 }
86fa6981 6341 /* If we want store form, we skip the current load. */
64c49ab3
JB
6342 if ((i.dir_encoding == dir_encoding_store
6343 || i.dir_encoding == dir_encoding_swap)
86fa6981
L
6344 && i.mem_operands == 0
6345 && t->opcode_modifier.load)
fa99fab2 6346 continue;
1a0670f3 6347 /* Fall through. */
f48ff2ae 6348 case 4:
c0f3af97 6349 case 5:
c6fb90c8 6350 overlap1 = operand_type_and (i.types[1], operand_types[1]);
40fb9820
L
6351 if (!operand_type_match (overlap0, i.types[0])
6352 || !operand_type_match (overlap1, i.types[1])
e2195274 6353 || ((check_register & 3) == 3
dc821c5f 6354 && !operand_type_register_match (i.types[0],
40fb9820 6355 operand_types[0],
dc821c5f 6356 i.types[1],
40fb9820 6357 operand_types[1])))
29b0f896
AM
6358 {
6359 /* Check if other direction is valid ... */
38e314eb 6360 if (!t->opcode_modifier.d)
29b0f896
AM
6361 continue;
6362
dc1e8a47 6363 check_reverse:
3ac21baa
JB
6364 if (!(size_match & MATCH_REVERSE))
6365 continue;
29b0f896 6366 /* Try reversing direction of operands. */
f5eb1d70
JB
6367 overlap0 = operand_type_and (i.types[0], operand_types[i.operands - 1]);
6368 overlap1 = operand_type_and (i.types[i.operands - 1], operand_types[0]);
40fb9820 6369 if (!operand_type_match (overlap0, i.types[0])
f5eb1d70 6370 || !operand_type_match (overlap1, i.types[i.operands - 1])
45664ddb 6371 || (check_register
dc821c5f 6372 && !operand_type_register_match (i.types[0],
f5eb1d70
JB
6373 operand_types[i.operands - 1],
6374 i.types[i.operands - 1],
45664ddb 6375 operand_types[0])))
29b0f896
AM
6376 {
6377 /* Does not match either direction. */
6378 continue;
6379 }
38e314eb 6380 /* found_reverse_match holds which of D or FloatR
29b0f896 6381 we've found. */
38e314eb
JB
6382 if (!t->opcode_modifier.d)
6383 found_reverse_match = 0;
6384 else if (operand_types[0].bitfield.tbyte)
8a2ed489 6385 found_reverse_match = Opcode_FloatD;
dbbc8b7e 6386 else if (operand_types[0].bitfield.xmmword
f5eb1d70 6387 || operand_types[i.operands - 1].bitfield.xmmword
3528c362
JB
6388 || operand_types[0].bitfield.class == RegMMX
6389 || operand_types[i.operands - 1].bitfield.class == RegMMX
dbbc8b7e
JB
6390 || is_any_vex_encoding(t))
6391 found_reverse_match = (t->base_opcode & 0xee) != 0x6e
6392 ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD;
8a2ed489 6393 else
38e314eb 6394 found_reverse_match = Opcode_D;
40fb9820 6395 if (t->opcode_modifier.floatr)
8a2ed489 6396 found_reverse_match |= Opcode_FloatR;
29b0f896 6397 }
f48ff2ae 6398 else
29b0f896 6399 {
f48ff2ae 6400 /* Found a forward 2 operand match here. */
d1cbb4db
L
6401 switch (t->operands)
6402 {
c0f3af97
L
6403 case 5:
6404 overlap4 = operand_type_and (i.types[4],
6405 operand_types[4]);
1a0670f3 6406 /* Fall through. */
d1cbb4db 6407 case 4:
c6fb90c8
L
6408 overlap3 = operand_type_and (i.types[3],
6409 operand_types[3]);
1a0670f3 6410 /* Fall through. */
d1cbb4db 6411 case 3:
c6fb90c8
L
6412 overlap2 = operand_type_and (i.types[2],
6413 operand_types[2]);
d1cbb4db
L
6414 break;
6415 }
29b0f896 6416
f48ff2ae
L
6417 switch (t->operands)
6418 {
c0f3af97
L
6419 case 5:
6420 if (!operand_type_match (overlap4, i.types[4])
dc821c5f 6421 || !operand_type_register_match (i.types[3],
c0f3af97 6422 operand_types[3],
c0f3af97
L
6423 i.types[4],
6424 operand_types[4]))
6425 continue;
1a0670f3 6426 /* Fall through. */
f48ff2ae 6427 case 4:
40fb9820 6428 if (!operand_type_match (overlap3, i.types[3])
e2195274
JB
6429 || ((check_register & 0xa) == 0xa
6430 && !operand_type_register_match (i.types[1],
f7768225
JB
6431 operand_types[1],
6432 i.types[3],
e2195274
JB
6433 operand_types[3]))
6434 || ((check_register & 0xc) == 0xc
6435 && !operand_type_register_match (i.types[2],
6436 operand_types[2],
6437 i.types[3],
6438 operand_types[3])))
f48ff2ae 6439 continue;
1a0670f3 6440 /* Fall through. */
f48ff2ae
L
6441 case 3:
6442 /* Here we make use of the fact that there are no
23e42951 6443 reverse match 3 operand instructions. */
40fb9820 6444 if (!operand_type_match (overlap2, i.types[2])
e2195274
JB
6445 || ((check_register & 5) == 5
6446 && !operand_type_register_match (i.types[0],
23e42951
JB
6447 operand_types[0],
6448 i.types[2],
e2195274
JB
6449 operand_types[2]))
6450 || ((check_register & 6) == 6
6451 && !operand_type_register_match (i.types[1],
6452 operand_types[1],
6453 i.types[2],
6454 operand_types[2])))
f48ff2ae
L
6455 continue;
6456 break;
6457 }
29b0f896 6458 }
f48ff2ae 6459 /* Found either forward/reverse 2, 3 or 4 operand match here:
29b0f896
AM
6460 slip through to break. */
6461 }
c0f3af97 6462
5614d22c
JB
6463 /* Check if vector and VEX operands are valid. */
6464 if (check_VecOperands (t) || VEX_check_operands (t))
6465 {
6466 specific_error = i.error;
6467 continue;
6468 }
a683cc34 6469
29b0f896
AM
6470 /* We've found a match; break out of loop. */
6471 break;
6472 }
6473
6474 if (t == current_templates->end)
6475 {
6476 /* We found no match. */
a65babc9 6477 const char *err_msg;
5614d22c 6478 switch (specific_error ? specific_error : i.error)
a65babc9
L
6479 {
6480 default:
6481 abort ();
86e026a4 6482 case operand_size_mismatch:
a65babc9
L
6483 err_msg = _("operand size mismatch");
6484 break;
6485 case operand_type_mismatch:
6486 err_msg = _("operand type mismatch");
6487 break;
6488 case register_type_mismatch:
6489 err_msg = _("register type mismatch");
6490 break;
6491 case number_of_operands_mismatch:
6492 err_msg = _("number of operands mismatch");
6493 break;
6494 case invalid_instruction_suffix:
6495 err_msg = _("invalid instruction suffix");
6496 break;
6497 case bad_imm4:
4a2608e3 6498 err_msg = _("constant doesn't fit in 4 bits");
a65babc9 6499 break;
a65babc9
L
6500 case unsupported_with_intel_mnemonic:
6501 err_msg = _("unsupported with Intel mnemonic");
6502 break;
6503 case unsupported_syntax:
6504 err_msg = _("unsupported syntax");
6505 break;
6506 case unsupported:
35262a23 6507 as_bad (_("unsupported instruction `%s'"),
10efe3f6
L
6508 current_templates->start->name);
6509 return NULL;
6c30d220
L
6510 case invalid_vsib_address:
6511 err_msg = _("invalid VSIB address");
6512 break;
7bab8ab5
JB
6513 case invalid_vector_register_set:
6514 err_msg = _("mask, index, and destination registers must be distinct");
6515 break;
6c30d220
L
6516 case unsupported_vector_index_register:
6517 err_msg = _("unsupported vector index register");
6518 break;
43234a1e
L
6519 case unsupported_broadcast:
6520 err_msg = _("unsupported broadcast");
6521 break;
43234a1e
L
6522 case broadcast_needed:
6523 err_msg = _("broadcast is needed for operand of such type");
6524 break;
6525 case unsupported_masking:
6526 err_msg = _("unsupported masking");
6527 break;
6528 case mask_not_on_destination:
6529 err_msg = _("mask not on destination operand");
6530 break;
6531 case no_default_mask:
6532 err_msg = _("default mask isn't allowed");
6533 break;
6534 case unsupported_rc_sae:
6535 err_msg = _("unsupported static rounding/sae");
6536 break;
6537 case rc_sae_operand_not_last_imm:
6538 if (intel_syntax)
6539 err_msg = _("RC/SAE operand must precede immediate operands");
6540 else
6541 err_msg = _("RC/SAE operand must follow immediate operands");
6542 break;
6543 case invalid_register_operand:
6544 err_msg = _("invalid register operand");
6545 break;
a65babc9
L
6546 }
6547 as_bad (_("%s for `%s'"), err_msg,
891edac4 6548 current_templates->start->name);
fa99fab2 6549 return NULL;
29b0f896 6550 }
252b5132 6551
29b0f896
AM
6552 if (!quiet_warnings)
6553 {
6554 if (!intel_syntax
0cfa3eb3 6555 && (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE)))
6f2f06be 6556 as_warn (_("indirect %s without `*'"), t->name);
29b0f896 6557
40fb9820 6558 if (t->opcode_modifier.isprefix
3cd7f3e3 6559 && t->opcode_modifier.mnemonicsize == IGNORESIZE)
29b0f896
AM
6560 {
6561 /* Warn them that a data or address size prefix doesn't
6562 affect assembly of the next line of code. */
6563 as_warn (_("stand-alone `%s' prefix"), t->name);
6564 }
6565 }
6566
6567 /* Copy the template we found. */
6568 i.tm = *t;
539e75ad
L
6569
6570 if (addr_prefix_disp != -1)
6571 i.tm.operand_types[addr_prefix_disp]
6572 = operand_types[addr_prefix_disp];
6573
29b0f896
AM
6574 if (found_reverse_match)
6575 {
dfd69174
JB
6576 /* If we found a reverse match we must alter the opcode direction
6577 bit and clear/flip the regmem modifier one. found_reverse_match
6578 holds bits to change (different for int & float insns). */
29b0f896
AM
6579
6580 i.tm.base_opcode ^= found_reverse_match;
6581
f5eb1d70
JB
6582 i.tm.operand_types[0] = operand_types[i.operands - 1];
6583 i.tm.operand_types[i.operands - 1] = operand_types[0];
dfd69174
JB
6584
6585 /* Certain SIMD insns have their load forms specified in the opcode
6586 table, and hence we need to _set_ RegMem instead of clearing it.
6587 We need to avoid setting the bit though on insns like KMOVW. */
6588 i.tm.opcode_modifier.regmem
6589 = i.tm.opcode_modifier.modrm && i.tm.opcode_modifier.d
6590 && i.tm.operands > 2U - i.tm.opcode_modifier.sse2avx
6591 && !i.tm.opcode_modifier.regmem;
29b0f896
AM
6592 }
6593
fa99fab2 6594 return t;
29b0f896
AM
6595}
6596
6597static int
e3bb37b5 6598check_string (void)
29b0f896 6599{
51c8edf6
JB
6600 unsigned int es_op = i.tm.opcode_modifier.isstring - IS_STRING_ES_OP0;
6601 unsigned int op = i.tm.operand_types[0].bitfield.baseindex ? es_op : 0;
8dc0818e 6602
51c8edf6 6603 if (i.seg[op] != NULL && i.seg[op] != &es)
29b0f896 6604 {
51c8edf6
JB
6605 as_bad (_("`%s' operand %u must use `%ses' segment"),
6606 i.tm.name,
6607 intel_syntax ? i.tm.operands - es_op : es_op + 1,
6608 register_prefix);
6609 return 0;
29b0f896 6610 }
51c8edf6
JB
6611
6612 /* There's only ever one segment override allowed per instruction.
6613 This instruction possibly has a legal segment override on the
6614 second operand, so copy the segment to where non-string
6615 instructions store it, allowing common code. */
6616 i.seg[op] = i.seg[1];
6617
29b0f896
AM
6618 return 1;
6619}
6620
6621static int
543613e9 6622process_suffix (void)
29b0f896
AM
6623{
6624 /* If matched instruction specifies an explicit instruction mnemonic
6625 suffix, use it. */
673fe0f0 6626 if (i.tm.opcode_modifier.size == SIZE16)
40fb9820 6627 i.suffix = WORD_MNEM_SUFFIX;
673fe0f0 6628 else if (i.tm.opcode_modifier.size == SIZE32)
40fb9820 6629 i.suffix = LONG_MNEM_SUFFIX;
673fe0f0 6630 else if (i.tm.opcode_modifier.size == SIZE64)
40fb9820 6631 i.suffix = QWORD_MNEM_SUFFIX;
13e600d0 6632 else if (i.reg_operands
c8f8eebc
JB
6633 && (i.operands > 1 || i.types[0].bitfield.class == Reg)
6634 && !i.tm.opcode_modifier.addrprefixopreg)
29b0f896 6635 {
65fca059
JB
6636 unsigned int numop = i.operands;
6637
6638 /* movsx/movzx want only their source operand considered here, for the
6639 ambiguity checking below. The suffix will be replaced afterwards
6640 to represent the destination (register). */
6641 if (((i.tm.base_opcode | 8) == 0xfbe && i.tm.opcode_modifier.w)
6642 || (i.tm.base_opcode == 0x63 && i.tm.cpu_flags.bitfield.cpu64))
6643 --i.operands;
6644
643bb870
JB
6645 /* crc32 needs REX.W set regardless of suffix / source operand size. */
6646 if (i.tm.base_opcode == 0xf20f38f0
6647 && i.tm.operand_types[1].bitfield.qword)
6648 i.rex |= REX_W;
6649
29b0f896 6650 /* If there's no instruction mnemonic suffix we try to invent one
13e600d0 6651 based on GPR operands. */
29b0f896
AM
6652 if (!i.suffix)
6653 {
6654 /* We take i.suffix from the last register operand specified,
6655 Destination register type is more significant than source
381d071f
L
6656 register type. crc32 in SSE4.2 prefers source register
6657 type. */
1a035124 6658 unsigned int op = i.tm.base_opcode != 0xf20f38f0 ? i.operands : 1;
20592a94 6659
1a035124
JB
6660 while (op--)
6661 if (i.tm.operand_types[op].bitfield.instance == InstanceNone
6662 || i.tm.operand_types[op].bitfield.instance == Accum)
6663 {
6664 if (i.types[op].bitfield.class != Reg)
6665 continue;
6666 if (i.types[op].bitfield.byte)
6667 i.suffix = BYTE_MNEM_SUFFIX;
6668 else if (i.types[op].bitfield.word)
6669 i.suffix = WORD_MNEM_SUFFIX;
6670 else if (i.types[op].bitfield.dword)
6671 i.suffix = LONG_MNEM_SUFFIX;
6672 else if (i.types[op].bitfield.qword)
6673 i.suffix = QWORD_MNEM_SUFFIX;
6674 else
6675 continue;
6676 break;
6677 }
65fca059
JB
6678
6679 /* As an exception, movsx/movzx silently default to a byte source
6680 in AT&T mode. */
6681 if ((i.tm.base_opcode | 8) == 0xfbe && i.tm.opcode_modifier.w
6682 && !i.suffix && !intel_syntax)
6683 i.suffix = BYTE_MNEM_SUFFIX;
29b0f896
AM
6684 }
6685 else if (i.suffix == BYTE_MNEM_SUFFIX)
6686 {
2eb952a4 6687 if (intel_syntax
3cd7f3e3 6688 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
2eb952a4
L
6689 && i.tm.opcode_modifier.no_bsuf)
6690 i.suffix = 0;
6691 else if (!check_byte_reg ())
29b0f896
AM
6692 return 0;
6693 }
6694 else if (i.suffix == LONG_MNEM_SUFFIX)
6695 {
2eb952a4 6696 if (intel_syntax
3cd7f3e3 6697 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
9f123b91
JB
6698 && i.tm.opcode_modifier.no_lsuf
6699 && !i.tm.opcode_modifier.todword
6700 && !i.tm.opcode_modifier.toqword)
2eb952a4
L
6701 i.suffix = 0;
6702 else if (!check_long_reg ())
29b0f896
AM
6703 return 0;
6704 }
6705 else if (i.suffix == QWORD_MNEM_SUFFIX)
6706 {
955e1e6a 6707 if (intel_syntax
3cd7f3e3 6708 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
9f123b91
JB
6709 && i.tm.opcode_modifier.no_qsuf
6710 && !i.tm.opcode_modifier.todword
6711 && !i.tm.opcode_modifier.toqword)
955e1e6a
L
6712 i.suffix = 0;
6713 else if (!check_qword_reg ())
29b0f896
AM
6714 return 0;
6715 }
6716 else if (i.suffix == WORD_MNEM_SUFFIX)
6717 {
2eb952a4 6718 if (intel_syntax
3cd7f3e3 6719 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
2eb952a4
L
6720 && i.tm.opcode_modifier.no_wsuf)
6721 i.suffix = 0;
6722 else if (!check_word_reg ())
29b0f896
AM
6723 return 0;
6724 }
3cd7f3e3
L
6725 else if (intel_syntax
6726 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE)
29b0f896
AM
6727 /* Do nothing if the instruction is going to ignore the prefix. */
6728 ;
6729 else
6730 abort ();
65fca059
JB
6731
6732 /* Undo the movsx/movzx change done above. */
6733 i.operands = numop;
29b0f896 6734 }
3cd7f3e3
L
6735 else if (i.tm.opcode_modifier.mnemonicsize == DEFAULTSIZE
6736 && !i.suffix)
29b0f896 6737 {
13e600d0
JB
6738 i.suffix = stackop_size;
6739 if (stackop_size == LONG_MNEM_SUFFIX)
06f74c5c
L
6740 {
6741 /* stackop_size is set to LONG_MNEM_SUFFIX for the
6742 .code16gcc directive to support 16-bit mode with
6743 32-bit address. For IRET without a suffix, generate
6744 16-bit IRET (opcode 0xcf) to return from an interrupt
6745 handler. */
13e600d0
JB
6746 if (i.tm.base_opcode == 0xcf)
6747 {
6748 i.suffix = WORD_MNEM_SUFFIX;
6749 as_warn (_("generating 16-bit `iret' for .code16gcc directive"));
6750 }
6751 /* Warn about changed behavior for segment register push/pop. */
6752 else if ((i.tm.base_opcode | 1) == 0x07)
6753 as_warn (_("generating 32-bit `%s', unlike earlier gas versions"),
6754 i.tm.name);
06f74c5c 6755 }
29b0f896 6756 }
c006a730 6757 else if (!i.suffix
0cfa3eb3
JB
6758 && (i.tm.opcode_modifier.jump == JUMP_ABSOLUTE
6759 || i.tm.opcode_modifier.jump == JUMP_BYTE
6760 || i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT
64e74474
AM
6761 || (i.tm.base_opcode == 0x0f01 /* [ls][gi]dt */
6762 && i.tm.extension_opcode <= 3)))
9306ca4a
JB
6763 {
6764 switch (flag_code)
6765 {
6766 case CODE_64BIT:
40fb9820 6767 if (!i.tm.opcode_modifier.no_qsuf)
9306ca4a
JB
6768 {
6769 i.suffix = QWORD_MNEM_SUFFIX;
6770 break;
6771 }
1a0670f3 6772 /* Fall through. */
9306ca4a 6773 case CODE_32BIT:
40fb9820 6774 if (!i.tm.opcode_modifier.no_lsuf)
9306ca4a
JB
6775 i.suffix = LONG_MNEM_SUFFIX;
6776 break;
6777 case CODE_16BIT:
40fb9820 6778 if (!i.tm.opcode_modifier.no_wsuf)
9306ca4a
JB
6779 i.suffix = WORD_MNEM_SUFFIX;
6780 break;
6781 }
6782 }
252b5132 6783
c006a730 6784 if (!i.suffix
3cd7f3e3 6785 && (i.tm.opcode_modifier.mnemonicsize != DEFAULTSIZE
873494c8
JB
6786 /* Also cover lret/retf/iret in 64-bit mode. */
6787 || (flag_code == CODE_64BIT
6788 && !i.tm.opcode_modifier.no_lsuf
6789 && !i.tm.opcode_modifier.no_qsuf))
3cd7f3e3 6790 && i.tm.opcode_modifier.mnemonicsize != IGNORESIZE
62b3f548
JB
6791 /* Accept FLDENV et al without suffix. */
6792 && (i.tm.opcode_modifier.no_ssuf || i.tm.opcode_modifier.floatmf))
29b0f896 6793 {
6c0946d0 6794 unsigned int suffixes, evex = 0;
c006a730
JB
6795
6796 suffixes = !i.tm.opcode_modifier.no_bsuf;
6797 if (!i.tm.opcode_modifier.no_wsuf)
6798 suffixes |= 1 << 1;
6799 if (!i.tm.opcode_modifier.no_lsuf)
6800 suffixes |= 1 << 2;
6801 if (!i.tm.opcode_modifier.no_ldsuf)
6802 suffixes |= 1 << 3;
6803 if (!i.tm.opcode_modifier.no_ssuf)
6804 suffixes |= 1 << 4;
6805 if (flag_code == CODE_64BIT && !i.tm.opcode_modifier.no_qsuf)
6806 suffixes |= 1 << 5;
6807
6c0946d0
JB
6808 /* For [XYZ]MMWORD operands inspect operand sizes. While generally
6809 also suitable for AT&T syntax mode, it was requested that this be
6810 restricted to just Intel syntax. */
b9915cbc 6811 if (intel_syntax && is_any_vex_encoding (&i.tm) && !i.broadcast)
6c0946d0 6812 {
b9915cbc 6813 unsigned int op;
6c0946d0 6814
b9915cbc 6815 for (op = 0; op < i.tm.operands; ++op)
6c0946d0 6816 {
b9915cbc
JB
6817 if (is_evex_encoding (&i.tm)
6818 && !cpu_arch_flags.bitfield.cpuavx512vl)
6c0946d0 6819 {
b9915cbc
JB
6820 if (i.tm.operand_types[op].bitfield.ymmword)
6821 i.tm.operand_types[op].bitfield.xmmword = 0;
6822 if (i.tm.operand_types[op].bitfield.zmmword)
6823 i.tm.operand_types[op].bitfield.ymmword = 0;
6824 if (!i.tm.opcode_modifier.evex
6825 || i.tm.opcode_modifier.evex == EVEXDYN)
6826 i.tm.opcode_modifier.evex = EVEX512;
6827 }
6c0946d0 6828
b9915cbc
JB
6829 if (i.tm.operand_types[op].bitfield.xmmword
6830 + i.tm.operand_types[op].bitfield.ymmword
6831 + i.tm.operand_types[op].bitfield.zmmword < 2)
6832 continue;
6c0946d0 6833
b9915cbc
JB
6834 /* Any properly sized operand disambiguates the insn. */
6835 if (i.types[op].bitfield.xmmword
6836 || i.types[op].bitfield.ymmword
6837 || i.types[op].bitfield.zmmword)
6838 {
6839 suffixes &= ~(7 << 6);
6840 evex = 0;
6841 break;
6842 }
6c0946d0 6843
b9915cbc
JB
6844 if ((i.flags[op] & Operand_Mem)
6845 && i.tm.operand_types[op].bitfield.unspecified)
6846 {
6847 if (i.tm.operand_types[op].bitfield.xmmword)
6848 suffixes |= 1 << 6;
6849 if (i.tm.operand_types[op].bitfield.ymmword)
6850 suffixes |= 1 << 7;
6851 if (i.tm.operand_types[op].bitfield.zmmword)
6852 suffixes |= 1 << 8;
6853 if (is_evex_encoding (&i.tm))
6854 evex = EVEX512;
6c0946d0
JB
6855 }
6856 }
6857 }
6858
6859 /* Are multiple suffixes / operand sizes allowed? */
c006a730 6860 if (suffixes & (suffixes - 1))
9306ca4a 6861 {
873494c8 6862 if (intel_syntax
3cd7f3e3 6863 && (i.tm.opcode_modifier.mnemonicsize != DEFAULTSIZE
873494c8 6864 || operand_check == check_error))
9306ca4a 6865 {
c006a730 6866 as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
9306ca4a
JB
6867 return 0;
6868 }
c006a730 6869 if (operand_check == check_error)
9306ca4a 6870 {
c006a730
JB
6871 as_bad (_("no instruction mnemonic suffix given and "
6872 "no register operands; can't size `%s'"), i.tm.name);
9306ca4a
JB
6873 return 0;
6874 }
c006a730 6875 if (operand_check == check_warning)
873494c8
JB
6876 as_warn (_("%s; using default for `%s'"),
6877 intel_syntax
6878 ? _("ambiguous operand size")
6879 : _("no instruction mnemonic suffix given and "
6880 "no register operands"),
6881 i.tm.name);
c006a730
JB
6882
6883 if (i.tm.opcode_modifier.floatmf)
6884 i.suffix = SHORT_MNEM_SUFFIX;
65fca059
JB
6885 else if ((i.tm.base_opcode | 8) == 0xfbe
6886 || (i.tm.base_opcode == 0x63
6887 && i.tm.cpu_flags.bitfield.cpu64))
6888 /* handled below */;
6c0946d0
JB
6889 else if (evex)
6890 i.tm.opcode_modifier.evex = evex;
c006a730
JB
6891 else if (flag_code == CODE_16BIT)
6892 i.suffix = WORD_MNEM_SUFFIX;
1a035124 6893 else if (!i.tm.opcode_modifier.no_lsuf)
c006a730 6894 i.suffix = LONG_MNEM_SUFFIX;
1a035124
JB
6895 else
6896 i.suffix = QWORD_MNEM_SUFFIX;
9306ca4a 6897 }
29b0f896 6898 }
252b5132 6899
65fca059
JB
6900 if ((i.tm.base_opcode | 8) == 0xfbe
6901 || (i.tm.base_opcode == 0x63 && i.tm.cpu_flags.bitfield.cpu64))
6902 {
6903 /* In Intel syntax, movsx/movzx must have a "suffix" (checked above).
6904 In AT&T syntax, if there is no suffix (warned about above), the default
6905 will be byte extension. */
6906 if (i.tm.opcode_modifier.w && i.suffix && i.suffix != BYTE_MNEM_SUFFIX)
6907 i.tm.base_opcode |= 1;
6908
6909 /* For further processing, the suffix should represent the destination
6910 (register). This is already the case when one was used with
6911 mov[sz][bw]*, but we need to replace it for mov[sz]x, or if there was
6912 no suffix to begin with. */
6913 if (i.tm.opcode_modifier.w || i.tm.base_opcode == 0x63 || !i.suffix)
6914 {
6915 if (i.types[1].bitfield.word)
6916 i.suffix = WORD_MNEM_SUFFIX;
6917 else if (i.types[1].bitfield.qword)
6918 i.suffix = QWORD_MNEM_SUFFIX;
6919 else
6920 i.suffix = LONG_MNEM_SUFFIX;
6921
6922 i.tm.opcode_modifier.w = 0;
6923 }
6924 }
6925
50128d0c
JB
6926 if (!i.tm.opcode_modifier.modrm && i.reg_operands && i.tm.operands < 3)
6927 i.short_form = (i.tm.operand_types[0].bitfield.class == Reg)
6928 != (i.tm.operand_types[1].bitfield.class == Reg);
6929
d2224064
JB
6930 /* Change the opcode based on the operand size given by i.suffix. */
6931 switch (i.suffix)
29b0f896 6932 {
d2224064
JB
6933 /* Size floating point instruction. */
6934 case LONG_MNEM_SUFFIX:
6935 if (i.tm.opcode_modifier.floatmf)
6936 {
6937 i.tm.base_opcode ^= 4;
6938 break;
6939 }
6940 /* fall through */
6941 case WORD_MNEM_SUFFIX:
6942 case QWORD_MNEM_SUFFIX:
29b0f896 6943 /* It's not a byte, select word/dword operation. */
40fb9820 6944 if (i.tm.opcode_modifier.w)
29b0f896 6945 {
50128d0c 6946 if (i.short_form)
29b0f896
AM
6947 i.tm.base_opcode |= 8;
6948 else
6949 i.tm.base_opcode |= 1;
6950 }
d2224064
JB
6951 /* fall through */
6952 case SHORT_MNEM_SUFFIX:
29b0f896
AM
6953 /* Now select between word & dword operations via the operand
6954 size prefix, except for instructions that will ignore this
6955 prefix anyway. */
c8f8eebc 6956 if (i.suffix != QWORD_MNEM_SUFFIX
3cd7f3e3 6957 && i.tm.opcode_modifier.mnemonicsize != IGNORESIZE
c8f8eebc
JB
6958 && !i.tm.opcode_modifier.floatmf
6959 && !is_any_vex_encoding (&i.tm)
6960 && ((i.suffix == LONG_MNEM_SUFFIX) == (flag_code == CODE_16BIT)
6961 || (flag_code == CODE_64BIT
6962 && i.tm.opcode_modifier.jump == JUMP_BYTE)))
24eab124
AM
6963 {
6964 unsigned int prefix = DATA_PREFIX_OPCODE;
543613e9 6965
0cfa3eb3 6966 if (i.tm.opcode_modifier.jump == JUMP_BYTE) /* jcxz, loop */
29b0f896 6967 prefix = ADDR_PREFIX_OPCODE;
252b5132 6968
29b0f896
AM
6969 if (!add_prefix (prefix))
6970 return 0;
24eab124 6971 }
252b5132 6972
29b0f896
AM
6973 /* Set mode64 for an operand. */
6974 if (i.suffix == QWORD_MNEM_SUFFIX
9146926a 6975 && flag_code == CODE_64BIT
d2224064 6976 && !i.tm.opcode_modifier.norex64
4ed21b58 6977 && !i.tm.opcode_modifier.vexw
46e883c5 6978 /* Special case for xchg %rax,%rax. It is NOP and doesn't
d2224064
JB
6979 need rex64. */
6980 && ! (i.operands == 2
6981 && i.tm.base_opcode == 0x90
6982 && i.tm.extension_opcode == None
75e5731b
JB
6983 && i.types[0].bitfield.instance == Accum
6984 && i.types[0].bitfield.qword
6985 && i.types[1].bitfield.instance == Accum
6986 && i.types[1].bitfield.qword))
d2224064 6987 i.rex |= REX_W;
3e73aa7c 6988
d2224064 6989 break;
29b0f896 6990 }
7ecd2f8b 6991
c8f8eebc 6992 if (i.tm.opcode_modifier.addrprefixopreg)
c0a30a9f 6993 {
c8f8eebc
JB
6994 gas_assert (!i.suffix);
6995 gas_assert (i.reg_operands);
c0a30a9f 6996
c8f8eebc
JB
6997 if (i.tm.operand_types[0].bitfield.instance == Accum
6998 || i.operands == 1)
6999 {
7000 /* The address size override prefix changes the size of the
7001 first operand. */
7002 if (flag_code == CODE_64BIT
7003 && i.op[0].regs->reg_type.bitfield.word)
7004 {
7005 as_bad (_("16-bit addressing unavailable for `%s'"),
7006 i.tm.name);
7007 return 0;
7008 }
7009
7010 if ((flag_code == CODE_32BIT
7011 ? i.op[0].regs->reg_type.bitfield.word
7012 : i.op[0].regs->reg_type.bitfield.dword)
7013 && !add_prefix (ADDR_PREFIX_OPCODE))
7014 return 0;
7015 }
c0a30a9f
L
7016 else
7017 {
c8f8eebc
JB
7018 /* Check invalid register operand when the address size override
7019 prefix changes the size of register operands. */
7020 unsigned int op;
7021 enum { need_word, need_dword, need_qword } need;
7022
7023 if (flag_code == CODE_32BIT)
7024 need = i.prefix[ADDR_PREFIX] ? need_word : need_dword;
7025 else if (i.prefix[ADDR_PREFIX])
c0a30a9f
L
7026 need = need_dword;
7027 else
7028 need = flag_code == CODE_64BIT ? need_qword : need_word;
c0a30a9f 7029
c8f8eebc
JB
7030 for (op = 0; op < i.operands; op++)
7031 {
7032 if (i.types[op].bitfield.class != Reg)
7033 continue;
7034
7035 switch (need)
7036 {
7037 case need_word:
7038 if (i.op[op].regs->reg_type.bitfield.word)
7039 continue;
7040 break;
7041 case need_dword:
7042 if (i.op[op].regs->reg_type.bitfield.dword)
7043 continue;
7044 break;
7045 case need_qword:
7046 if (i.op[op].regs->reg_type.bitfield.qword)
7047 continue;
7048 break;
7049 }
7050
7051 as_bad (_("invalid register operand size for `%s'"),
7052 i.tm.name);
7053 return 0;
7054 }
7055 }
c0a30a9f
L
7056 }
7057
29b0f896
AM
7058 return 1;
7059}
3e73aa7c 7060
29b0f896 7061static int
543613e9 7062check_byte_reg (void)
29b0f896
AM
7063{
7064 int op;
543613e9 7065
29b0f896
AM
7066 for (op = i.operands; --op >= 0;)
7067 {
dc821c5f 7068 /* Skip non-register operands. */
bab6aec1 7069 if (i.types[op].bitfield.class != Reg)
dc821c5f
JB
7070 continue;
7071
29b0f896
AM
7072 /* If this is an eight bit register, it's OK. If it's the 16 or
7073 32 bit version of an eight bit register, we will just use the
7074 low portion, and that's OK too. */
dc821c5f 7075 if (i.types[op].bitfield.byte)
29b0f896
AM
7076 continue;
7077
5a819eb9 7078 /* I/O port address operands are OK too. */
75e5731b
JB
7079 if (i.tm.operand_types[op].bitfield.instance == RegD
7080 && i.tm.operand_types[op].bitfield.word)
5a819eb9
JB
7081 continue;
7082
9706160a
JB
7083 /* crc32 only wants its source operand checked here. */
7084 if (i.tm.base_opcode == 0xf20f38f0 && op)
9344ff29
L
7085 continue;
7086
29b0f896 7087 /* Any other register is bad. */
bab6aec1 7088 if (i.types[op].bitfield.class == Reg
3528c362
JB
7089 || i.types[op].bitfield.class == RegMMX
7090 || i.types[op].bitfield.class == RegSIMD
00cee14f 7091 || i.types[op].bitfield.class == SReg
4a5c67ed
JB
7092 || i.types[op].bitfield.class == RegCR
7093 || i.types[op].bitfield.class == RegDR
7094 || i.types[op].bitfield.class == RegTR)
29b0f896 7095 {
a540244d
L
7096 as_bad (_("`%s%s' not allowed with `%s%c'"),
7097 register_prefix,
29b0f896
AM
7098 i.op[op].regs->reg_name,
7099 i.tm.name,
7100 i.suffix);
7101 return 0;
7102 }
7103 }
7104 return 1;
7105}
7106
7107static int
e3bb37b5 7108check_long_reg (void)
29b0f896
AM
7109{
7110 int op;
7111
7112 for (op = i.operands; --op >= 0;)
dc821c5f 7113 /* Skip non-register operands. */
bab6aec1 7114 if (i.types[op].bitfield.class != Reg)
dc821c5f 7115 continue;
29b0f896
AM
7116 /* Reject eight bit registers, except where the template requires
7117 them. (eg. movzb) */
dc821c5f 7118 else if (i.types[op].bitfield.byte
bab6aec1 7119 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7120 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
7121 && (i.tm.operand_types[op].bitfield.word
7122 || i.tm.operand_types[op].bitfield.dword))
29b0f896 7123 {
a540244d
L
7124 as_bad (_("`%s%s' not allowed with `%s%c'"),
7125 register_prefix,
29b0f896
AM
7126 i.op[op].regs->reg_name,
7127 i.tm.name,
7128 i.suffix);
7129 return 0;
7130 }
be4c5e58
L
7131 /* Error if the e prefix on a general reg is missing. */
7132 else if (i.types[op].bitfield.word
bab6aec1 7133 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7134 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7135 && i.tm.operand_types[op].bitfield.dword)
29b0f896 7136 {
be4c5e58
L
7137 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
7138 register_prefix, i.op[op].regs->reg_name,
7139 i.suffix);
7140 return 0;
252b5132 7141 }
e4630f71 7142 /* Warn if the r prefix on a general reg is present. */
dc821c5f 7143 else if (i.types[op].bitfield.qword
bab6aec1 7144 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7145 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7146 && i.tm.operand_types[op].bitfield.dword)
252b5132 7147 {
34828aad 7148 if (intel_syntax
65fca059 7149 && i.tm.opcode_modifier.toqword
3528c362 7150 && i.types[0].bitfield.class != RegSIMD)
34828aad 7151 {
ca61edf2 7152 /* Convert to QWORD. We want REX byte. */
34828aad
L
7153 i.suffix = QWORD_MNEM_SUFFIX;
7154 }
7155 else
7156 {
2b5d6a91 7157 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
7158 register_prefix, i.op[op].regs->reg_name,
7159 i.suffix);
7160 return 0;
7161 }
29b0f896
AM
7162 }
7163 return 1;
7164}
252b5132 7165
29b0f896 7166static int
e3bb37b5 7167check_qword_reg (void)
29b0f896
AM
7168{
7169 int op;
252b5132 7170
29b0f896 7171 for (op = i.operands; --op >= 0; )
dc821c5f 7172 /* Skip non-register operands. */
bab6aec1 7173 if (i.types[op].bitfield.class != Reg)
dc821c5f 7174 continue;
29b0f896
AM
7175 /* Reject eight bit registers, except where the template requires
7176 them. (eg. movzb) */
dc821c5f 7177 else if (i.types[op].bitfield.byte
bab6aec1 7178 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7179 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
7180 && (i.tm.operand_types[op].bitfield.word
7181 || i.tm.operand_types[op].bitfield.dword))
29b0f896 7182 {
a540244d
L
7183 as_bad (_("`%s%s' not allowed with `%s%c'"),
7184 register_prefix,
29b0f896
AM
7185 i.op[op].regs->reg_name,
7186 i.tm.name,
7187 i.suffix);
7188 return 0;
7189 }
e4630f71 7190 /* Warn if the r prefix on a general reg is missing. */
dc821c5f
JB
7191 else if ((i.types[op].bitfield.word
7192 || i.types[op].bitfield.dword)
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.qword)
29b0f896
AM
7196 {
7197 /* Prohibit these changes in the 64bit mode, since the
7198 lowering is more complicated. */
34828aad 7199 if (intel_syntax
ca61edf2 7200 && i.tm.opcode_modifier.todword
3528c362 7201 && i.types[0].bitfield.class != RegSIMD)
34828aad 7202 {
ca61edf2 7203 /* Convert to DWORD. We don't want REX byte. */
34828aad
L
7204 i.suffix = LONG_MNEM_SUFFIX;
7205 }
7206 else
7207 {
2b5d6a91 7208 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
7209 register_prefix, i.op[op].regs->reg_name,
7210 i.suffix);
7211 return 0;
7212 }
252b5132 7213 }
29b0f896
AM
7214 return 1;
7215}
252b5132 7216
29b0f896 7217static int
e3bb37b5 7218check_word_reg (void)
29b0f896
AM
7219{
7220 int op;
7221 for (op = i.operands; --op >= 0;)
dc821c5f 7222 /* Skip non-register operands. */
bab6aec1 7223 if (i.types[op].bitfield.class != Reg)
dc821c5f 7224 continue;
29b0f896
AM
7225 /* Reject eight bit registers, except where the template requires
7226 them. (eg. movzb) */
dc821c5f 7227 else if (i.types[op].bitfield.byte
bab6aec1 7228 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7229 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
7230 && (i.tm.operand_types[op].bitfield.word
7231 || i.tm.operand_types[op].bitfield.dword))
29b0f896 7232 {
a540244d
L
7233 as_bad (_("`%s%s' not allowed with `%s%c'"),
7234 register_prefix,
29b0f896
AM
7235 i.op[op].regs->reg_name,
7236 i.tm.name,
7237 i.suffix);
7238 return 0;
7239 }
9706160a
JB
7240 /* Error if the e or r prefix on a general reg is present. */
7241 else if ((i.types[op].bitfield.dword
dc821c5f 7242 || i.types[op].bitfield.qword)
bab6aec1 7243 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7244 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7245 && i.tm.operand_types[op].bitfield.word)
252b5132 7246 {
9706160a
JB
7247 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
7248 register_prefix, i.op[op].regs->reg_name,
7249 i.suffix);
7250 return 0;
29b0f896
AM
7251 }
7252 return 1;
7253}
252b5132 7254
29b0f896 7255static int
40fb9820 7256update_imm (unsigned int j)
29b0f896 7257{
bc0844ae 7258 i386_operand_type overlap = i.types[j];
40fb9820
L
7259 if ((overlap.bitfield.imm8
7260 || overlap.bitfield.imm8s
7261 || overlap.bitfield.imm16
7262 || overlap.bitfield.imm32
7263 || overlap.bitfield.imm32s
7264 || overlap.bitfield.imm64)
0dfbf9d7
L
7265 && !operand_type_equal (&overlap, &imm8)
7266 && !operand_type_equal (&overlap, &imm8s)
7267 && !operand_type_equal (&overlap, &imm16)
7268 && !operand_type_equal (&overlap, &imm32)
7269 && !operand_type_equal (&overlap, &imm32s)
7270 && !operand_type_equal (&overlap, &imm64))
29b0f896
AM
7271 {
7272 if (i.suffix)
7273 {
40fb9820
L
7274 i386_operand_type temp;
7275
0dfbf9d7 7276 operand_type_set (&temp, 0);
7ab9ffdd 7277 if (i.suffix == BYTE_MNEM_SUFFIX)
40fb9820
L
7278 {
7279 temp.bitfield.imm8 = overlap.bitfield.imm8;
7280 temp.bitfield.imm8s = overlap.bitfield.imm8s;
7281 }
7282 else if (i.suffix == WORD_MNEM_SUFFIX)
7283 temp.bitfield.imm16 = overlap.bitfield.imm16;
7284 else if (i.suffix == QWORD_MNEM_SUFFIX)
7285 {
7286 temp.bitfield.imm64 = overlap.bitfield.imm64;
7287 temp.bitfield.imm32s = overlap.bitfield.imm32s;
7288 }
7289 else
7290 temp.bitfield.imm32 = overlap.bitfield.imm32;
7291 overlap = temp;
29b0f896 7292 }
0dfbf9d7
L
7293 else if (operand_type_equal (&overlap, &imm16_32_32s)
7294 || operand_type_equal (&overlap, &imm16_32)
7295 || operand_type_equal (&overlap, &imm16_32s))
29b0f896 7296 {
40fb9820 7297 if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
65da13b5 7298 overlap = imm16;
40fb9820 7299 else
65da13b5 7300 overlap = imm32s;
29b0f896 7301 }
0dfbf9d7
L
7302 if (!operand_type_equal (&overlap, &imm8)
7303 && !operand_type_equal (&overlap, &imm8s)
7304 && !operand_type_equal (&overlap, &imm16)
7305 && !operand_type_equal (&overlap, &imm32)
7306 && !operand_type_equal (&overlap, &imm32s)
7307 && !operand_type_equal (&overlap, &imm64))
29b0f896 7308 {
4eed87de
AM
7309 as_bad (_("no instruction mnemonic suffix given; "
7310 "can't determine immediate size"));
29b0f896
AM
7311 return 0;
7312 }
7313 }
40fb9820 7314 i.types[j] = overlap;
29b0f896 7315
40fb9820
L
7316 return 1;
7317}
7318
7319static int
7320finalize_imm (void)
7321{
bc0844ae 7322 unsigned int j, n;
29b0f896 7323
bc0844ae
L
7324 /* Update the first 2 immediate operands. */
7325 n = i.operands > 2 ? 2 : i.operands;
7326 if (n)
7327 {
7328 for (j = 0; j < n; j++)
7329 if (update_imm (j) == 0)
7330 return 0;
40fb9820 7331
bc0844ae
L
7332 /* The 3rd operand can't be immediate operand. */
7333 gas_assert (operand_type_check (i.types[2], imm) == 0);
7334 }
29b0f896
AM
7335
7336 return 1;
7337}
7338
7339static int
e3bb37b5 7340process_operands (void)
29b0f896
AM
7341{
7342 /* Default segment register this instruction will use for memory
7343 accesses. 0 means unknown. This is only for optimizing out
7344 unnecessary segment overrides. */
7345 const seg_entry *default_seg = 0;
7346
2426c15f 7347 if (i.tm.opcode_modifier.sse2avx && i.tm.opcode_modifier.vexvvvv)
29b0f896 7348 {
91d6fa6a
NC
7349 unsigned int dupl = i.operands;
7350 unsigned int dest = dupl - 1;
9fcfb3d7
L
7351 unsigned int j;
7352
c0f3af97 7353 /* The destination must be an xmm register. */
9c2799c2 7354 gas_assert (i.reg_operands
91d6fa6a 7355 && MAX_OPERANDS > dupl
7ab9ffdd 7356 && operand_type_equal (&i.types[dest], &regxmm));
c0f3af97 7357
75e5731b 7358 if (i.tm.operand_types[0].bitfield.instance == Accum
1b54b8d7 7359 && i.tm.operand_types[0].bitfield.xmmword)
e2ec9d29 7360 {
8cd7925b 7361 if (i.tm.opcode_modifier.vexsources == VEX3SOURCES)
c0f3af97
L
7362 {
7363 /* Keep xmm0 for instructions with VEX prefix and 3
7364 sources. */
75e5731b 7365 i.tm.operand_types[0].bitfield.instance = InstanceNone;
3528c362 7366 i.tm.operand_types[0].bitfield.class = RegSIMD;
c0f3af97
L
7367 goto duplicate;
7368 }
e2ec9d29 7369 else
c0f3af97
L
7370 {
7371 /* We remove the first xmm0 and keep the number of
7372 operands unchanged, which in fact duplicates the
7373 destination. */
7374 for (j = 1; j < i.operands; j++)
7375 {
7376 i.op[j - 1] = i.op[j];
7377 i.types[j - 1] = i.types[j];
7378 i.tm.operand_types[j - 1] = i.tm.operand_types[j];
8dc0818e 7379 i.flags[j - 1] = i.flags[j];
c0f3af97
L
7380 }
7381 }
7382 }
7383 else if (i.tm.opcode_modifier.implicit1stxmm0)
7ab9ffdd 7384 {
91d6fa6a 7385 gas_assert ((MAX_OPERANDS - 1) > dupl
8cd7925b
L
7386 && (i.tm.opcode_modifier.vexsources
7387 == VEX3SOURCES));
c0f3af97
L
7388
7389 /* Add the implicit xmm0 for instructions with VEX prefix
7390 and 3 sources. */
7391 for (j = i.operands; j > 0; j--)
7392 {
7393 i.op[j] = i.op[j - 1];
7394 i.types[j] = i.types[j - 1];
7395 i.tm.operand_types[j] = i.tm.operand_types[j - 1];
8dc0818e 7396 i.flags[j] = i.flags[j - 1];
c0f3af97
L
7397 }
7398 i.op[0].regs
7399 = (const reg_entry *) hash_find (reg_hash, "xmm0");
7ab9ffdd 7400 i.types[0] = regxmm;
c0f3af97
L
7401 i.tm.operand_types[0] = regxmm;
7402
7403 i.operands += 2;
7404 i.reg_operands += 2;
7405 i.tm.operands += 2;
7406
91d6fa6a 7407 dupl++;
c0f3af97 7408 dest++;
91d6fa6a
NC
7409 i.op[dupl] = i.op[dest];
7410 i.types[dupl] = i.types[dest];
7411 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
8dc0818e 7412 i.flags[dupl] = i.flags[dest];
e2ec9d29 7413 }
c0f3af97
L
7414 else
7415 {
dc1e8a47 7416 duplicate:
c0f3af97
L
7417 i.operands++;
7418 i.reg_operands++;
7419 i.tm.operands++;
7420
91d6fa6a
NC
7421 i.op[dupl] = i.op[dest];
7422 i.types[dupl] = i.types[dest];
7423 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
8dc0818e 7424 i.flags[dupl] = i.flags[dest];
c0f3af97
L
7425 }
7426
7427 if (i.tm.opcode_modifier.immext)
7428 process_immext ();
7429 }
75e5731b 7430 else if (i.tm.operand_types[0].bitfield.instance == Accum
1b54b8d7 7431 && i.tm.operand_types[0].bitfield.xmmword)
c0f3af97
L
7432 {
7433 unsigned int j;
7434
9fcfb3d7
L
7435 for (j = 1; j < i.operands; j++)
7436 {
7437 i.op[j - 1] = i.op[j];
7438 i.types[j - 1] = i.types[j];
7439
7440 /* We need to adjust fields in i.tm since they are used by
7441 build_modrm_byte. */
7442 i.tm.operand_types [j - 1] = i.tm.operand_types [j];
8dc0818e
JB
7443
7444 i.flags[j - 1] = i.flags[j];
9fcfb3d7
L
7445 }
7446
e2ec9d29
L
7447 i.operands--;
7448 i.reg_operands--;
e2ec9d29
L
7449 i.tm.operands--;
7450 }
920d2ddc
IT
7451 else if (i.tm.opcode_modifier.implicitquadgroup)
7452 {
a477a8c4
JB
7453 unsigned int regnum, first_reg_in_group, last_reg_in_group;
7454
920d2ddc 7455 /* The second operand must be {x,y,z}mmN, where N is a multiple of 4. */
3528c362 7456 gas_assert (i.operands >= 2 && i.types[1].bitfield.class == RegSIMD);
a477a8c4
JB
7457 regnum = register_number (i.op[1].regs);
7458 first_reg_in_group = regnum & ~3;
7459 last_reg_in_group = first_reg_in_group + 3;
7460 if (regnum != first_reg_in_group)
7461 as_warn (_("source register `%s%s' implicitly denotes"
7462 " `%s%.3s%u' to `%s%.3s%u' source group in `%s'"),
7463 register_prefix, i.op[1].regs->reg_name,
7464 register_prefix, i.op[1].regs->reg_name, first_reg_in_group,
7465 register_prefix, i.op[1].regs->reg_name, last_reg_in_group,
7466 i.tm.name);
7467 }
e2ec9d29
L
7468 else if (i.tm.opcode_modifier.regkludge)
7469 {
7470 /* The imul $imm, %reg instruction is converted into
7471 imul $imm, %reg, %reg, and the clr %reg instruction
7472 is converted into xor %reg, %reg. */
7473
7474 unsigned int first_reg_op;
7475
7476 if (operand_type_check (i.types[0], reg))
7477 first_reg_op = 0;
7478 else
7479 first_reg_op = 1;
7480 /* Pretend we saw the extra register operand. */
9c2799c2 7481 gas_assert (i.reg_operands == 1
7ab9ffdd 7482 && i.op[first_reg_op + 1].regs == 0);
e2ec9d29
L
7483 i.op[first_reg_op + 1].regs = i.op[first_reg_op].regs;
7484 i.types[first_reg_op + 1] = i.types[first_reg_op];
7485 i.operands++;
7486 i.reg_operands++;
29b0f896
AM
7487 }
7488
85b80b0f 7489 if (i.tm.opcode_modifier.modrm)
29b0f896
AM
7490 {
7491 /* The opcode is completed (modulo i.tm.extension_opcode which
52271982
AM
7492 must be put into the modrm byte). Now, we make the modrm and
7493 index base bytes based on all the info we've collected. */
29b0f896
AM
7494
7495 default_seg = build_modrm_byte ();
7496 }
00cee14f 7497 else if (i.types[0].bitfield.class == SReg)
85b80b0f
JB
7498 {
7499 if (flag_code != CODE_64BIT
7500 ? i.tm.base_opcode == POP_SEG_SHORT
7501 && i.op[0].regs->reg_num == 1
7502 : (i.tm.base_opcode | 1) == POP_SEG386_SHORT
7503 && i.op[0].regs->reg_num < 4)
7504 {
7505 as_bad (_("you can't `%s %s%s'"),
7506 i.tm.name, register_prefix, i.op[0].regs->reg_name);
7507 return 0;
7508 }
7509 if ( i.op[0].regs->reg_num > 3 && i.tm.opcode_length == 1 )
7510 {
7511 i.tm.base_opcode ^= POP_SEG_SHORT ^ POP_SEG386_SHORT;
7512 i.tm.opcode_length = 2;
7513 }
7514 i.tm.base_opcode |= (i.op[0].regs->reg_num << 3);
7515 }
8a2ed489 7516 else if ((i.tm.base_opcode & ~0x3) == MOV_AX_DISP32)
29b0f896
AM
7517 {
7518 default_seg = &ds;
7519 }
40fb9820 7520 else if (i.tm.opcode_modifier.isstring)
29b0f896
AM
7521 {
7522 /* For the string instructions that allow a segment override
7523 on one of their operands, the default segment is ds. */
7524 default_seg = &ds;
7525 }
50128d0c 7526 else if (i.short_form)
85b80b0f
JB
7527 {
7528 /* The register or float register operand is in operand
7529 0 or 1. */
bab6aec1 7530 unsigned int op = i.tm.operand_types[0].bitfield.class != Reg;
85b80b0f
JB
7531
7532 /* Register goes in low 3 bits of opcode. */
7533 i.tm.base_opcode |= i.op[op].regs->reg_num;
7534 if ((i.op[op].regs->reg_flags & RegRex) != 0)
7535 i.rex |= REX_B;
7536 if (!quiet_warnings && i.tm.opcode_modifier.ugh)
7537 {
7538 /* Warn about some common errors, but press on regardless.
7539 The first case can be generated by gcc (<= 2.8.1). */
7540 if (i.operands == 2)
7541 {
7542 /* Reversed arguments on faddp, fsubp, etc. */
7543 as_warn (_("translating to `%s %s%s,%s%s'"), i.tm.name,
7544 register_prefix, i.op[!intel_syntax].regs->reg_name,
7545 register_prefix, i.op[intel_syntax].regs->reg_name);
7546 }
7547 else
7548 {
7549 /* Extraneous `l' suffix on fp insn. */
7550 as_warn (_("translating to `%s %s%s'"), i.tm.name,
7551 register_prefix, i.op[0].regs->reg_name);
7552 }
7553 }
7554 }
29b0f896 7555
514a8bb0 7556 if ((i.seg[0] || i.prefix[SEG_PREFIX])
514a8bb0
JB
7557 && i.tm.base_opcode == 0x8d /* lea */
7558 && !is_any_vex_encoding(&i.tm))
92334ad2
JB
7559 {
7560 if (!quiet_warnings)
7561 as_warn (_("segment override on `%s' is ineffectual"), i.tm.name);
7562 if (optimize)
7563 {
7564 i.seg[0] = NULL;
7565 i.prefix[SEG_PREFIX] = 0;
7566 }
7567 }
52271982
AM
7568
7569 /* If a segment was explicitly specified, and the specified segment
b6773884
JB
7570 is neither the default nor the one already recorded from a prefix,
7571 use an opcode prefix to select it. If we never figured out what
7572 the default segment is, then default_seg will be zero at this
7573 point, and the specified segment prefix will always be used. */
7574 if (i.seg[0]
7575 && i.seg[0] != default_seg
7576 && i.seg[0]->seg_prefix != i.prefix[SEG_PREFIX])
29b0f896
AM
7577 {
7578 if (!add_prefix (i.seg[0]->seg_prefix))
7579 return 0;
7580 }
7581 return 1;
7582}
7583
7584static const seg_entry *
e3bb37b5 7585build_modrm_byte (void)
29b0f896
AM
7586{
7587 const seg_entry *default_seg = 0;
c0f3af97 7588 unsigned int source, dest;
8cd7925b 7589 int vex_3_sources;
c0f3af97 7590
8cd7925b 7591 vex_3_sources = i.tm.opcode_modifier.vexsources == VEX3SOURCES;
c0f3af97
L
7592 if (vex_3_sources)
7593 {
91d6fa6a 7594 unsigned int nds, reg_slot;
4c2c6516 7595 expressionS *exp;
c0f3af97 7596
6b8d3588 7597 dest = i.operands - 1;
c0f3af97 7598 nds = dest - 1;
922d8de8 7599
a683cc34 7600 /* There are 2 kinds of instructions:
bed3d976 7601 1. 5 operands: 4 register operands or 3 register operands
9d3bf266 7602 plus 1 memory operand plus one Imm4 operand, VexXDS, and
bed3d976 7603 VexW0 or VexW1. The destination must be either XMM, YMM or
43234a1e 7604 ZMM register.
bed3d976 7605 2. 4 operands: 4 register operands or 3 register operands
2f1bada2 7606 plus 1 memory operand, with VexXDS. */
922d8de8 7607 gas_assert ((i.reg_operands == 4
bed3d976
JB
7608 || (i.reg_operands == 3 && i.mem_operands == 1))
7609 && i.tm.opcode_modifier.vexvvvv == VEXXDS
dcd7e323 7610 && i.tm.opcode_modifier.vexw
3528c362 7611 && i.tm.operand_types[dest].bitfield.class == RegSIMD);
a683cc34 7612
48db9223
JB
7613 /* If VexW1 is set, the first non-immediate operand is the source and
7614 the second non-immediate one is encoded in the immediate operand. */
7615 if (i.tm.opcode_modifier.vexw == VEXW1)
7616 {
7617 source = i.imm_operands;
7618 reg_slot = i.imm_operands + 1;
7619 }
7620 else
7621 {
7622 source = i.imm_operands + 1;
7623 reg_slot = i.imm_operands;
7624 }
7625
a683cc34 7626 if (i.imm_operands == 0)
bed3d976
JB
7627 {
7628 /* When there is no immediate operand, generate an 8bit
7629 immediate operand to encode the first operand. */
7630 exp = &im_expressions[i.imm_operands++];
7631 i.op[i.operands].imms = exp;
7632 i.types[i.operands] = imm8;
7633 i.operands++;
7634
3528c362 7635 gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD);
bed3d976
JB
7636 exp->X_op = O_constant;
7637 exp->X_add_number = register_number (i.op[reg_slot].regs) << 4;
43234a1e
L
7638 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
7639 }
922d8de8 7640 else
bed3d976 7641 {
9d3bf266
JB
7642 gas_assert (i.imm_operands == 1);
7643 gas_assert (fits_in_imm4 (i.op[0].imms->X_add_number));
7644 gas_assert (!i.tm.opcode_modifier.immext);
a683cc34 7645
9d3bf266
JB
7646 /* Turn on Imm8 again so that output_imm will generate it. */
7647 i.types[0].bitfield.imm8 = 1;
bed3d976 7648
3528c362 7649 gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD);
9d3bf266 7650 i.op[0].imms->X_add_number
bed3d976 7651 |= register_number (i.op[reg_slot].regs) << 4;
43234a1e 7652 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
bed3d976 7653 }
a683cc34 7654
3528c362 7655 gas_assert (i.tm.operand_types[nds].bitfield.class == RegSIMD);
dae39acc 7656 i.vex.register_specifier = i.op[nds].regs;
c0f3af97
L
7657 }
7658 else
7659 source = dest = 0;
29b0f896
AM
7660
7661 /* i.reg_operands MUST be the number of real register operands;
c0f3af97
L
7662 implicit registers do not count. If there are 3 register
7663 operands, it must be a instruction with VexNDS. For a
7664 instruction with VexNDD, the destination register is encoded
7665 in VEX prefix. If there are 4 register operands, it must be
7666 a instruction with VEX prefix and 3 sources. */
7ab9ffdd
L
7667 if (i.mem_operands == 0
7668 && ((i.reg_operands == 2
2426c15f 7669 && i.tm.opcode_modifier.vexvvvv <= VEXXDS)
7ab9ffdd 7670 || (i.reg_operands == 3
2426c15f 7671 && i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd 7672 || (i.reg_operands == 4 && vex_3_sources)))
29b0f896 7673 {
cab737b9
L
7674 switch (i.operands)
7675 {
7676 case 2:
7677 source = 0;
7678 break;
7679 case 3:
c81128dc
L
7680 /* When there are 3 operands, one of them may be immediate,
7681 which may be the first or the last operand. Otherwise,
c0f3af97
L
7682 the first operand must be shift count register (cl) or it
7683 is an instruction with VexNDS. */
9c2799c2 7684 gas_assert (i.imm_operands == 1
7ab9ffdd 7685 || (i.imm_operands == 0
2426c15f 7686 && (i.tm.opcode_modifier.vexvvvv == VEXXDS
75e5731b
JB
7687 || (i.types[0].bitfield.instance == RegC
7688 && i.types[0].bitfield.byte))));
40fb9820 7689 if (operand_type_check (i.types[0], imm)
75e5731b
JB
7690 || (i.types[0].bitfield.instance == RegC
7691 && i.types[0].bitfield.byte))
40fb9820
L
7692 source = 1;
7693 else
7694 source = 0;
cab737b9
L
7695 break;
7696 case 4:
368d64cc
L
7697 /* When there are 4 operands, the first two must be 8bit
7698 immediate operands. The source operand will be the 3rd
c0f3af97
L
7699 one.
7700
7701 For instructions with VexNDS, if the first operand
7702 an imm8, the source operand is the 2nd one. If the last
7703 operand is imm8, the source operand is the first one. */
9c2799c2 7704 gas_assert ((i.imm_operands == 2
7ab9ffdd
L
7705 && i.types[0].bitfield.imm8
7706 && i.types[1].bitfield.imm8)
2426c15f 7707 || (i.tm.opcode_modifier.vexvvvv == VEXXDS
7ab9ffdd
L
7708 && i.imm_operands == 1
7709 && (i.types[0].bitfield.imm8
43234a1e
L
7710 || i.types[i.operands - 1].bitfield.imm8
7711 || i.rounding)));
9f2670f2
L
7712 if (i.imm_operands == 2)
7713 source = 2;
7714 else
c0f3af97
L
7715 {
7716 if (i.types[0].bitfield.imm8)
7717 source = 1;
7718 else
7719 source = 0;
7720 }
c0f3af97
L
7721 break;
7722 case 5:
e771e7c9 7723 if (is_evex_encoding (&i.tm))
43234a1e
L
7724 {
7725 /* For EVEX instructions, when there are 5 operands, the
7726 first one must be immediate operand. If the second one
7727 is immediate operand, the source operand is the 3th
7728 one. If the last one is immediate operand, the source
7729 operand is the 2nd one. */
7730 gas_assert (i.imm_operands == 2
7731 && i.tm.opcode_modifier.sae
7732 && operand_type_check (i.types[0], imm));
7733 if (operand_type_check (i.types[1], imm))
7734 source = 2;
7735 else if (operand_type_check (i.types[4], imm))
7736 source = 1;
7737 else
7738 abort ();
7739 }
cab737b9
L
7740 break;
7741 default:
7742 abort ();
7743 }
7744
c0f3af97
L
7745 if (!vex_3_sources)
7746 {
7747 dest = source + 1;
7748
43234a1e
L
7749 /* RC/SAE operand could be between DEST and SRC. That happens
7750 when one operand is GPR and the other one is XMM/YMM/ZMM
7751 register. */
7752 if (i.rounding && i.rounding->operand == (int) dest)
7753 dest++;
7754
2426c15f 7755 if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
c0f3af97 7756 {
43234a1e 7757 /* For instructions with VexNDS, the register-only source
c5d0745b 7758 operand must be a 32/64bit integer, XMM, YMM, ZMM, or mask
dfd69174 7759 register. It is encoded in VEX prefix. */
f12dc422
L
7760
7761 i386_operand_type op;
7762 unsigned int vvvv;
7763
7764 /* Check register-only source operand when two source
7765 operands are swapped. */
7766 if (!i.tm.operand_types[source].bitfield.baseindex
7767 && i.tm.operand_types[dest].bitfield.baseindex)
7768 {
7769 vvvv = source;
7770 source = dest;
7771 }
7772 else
7773 vvvv = dest;
7774
7775 op = i.tm.operand_types[vvvv];
c0f3af97 7776 if ((dest + 1) >= i.operands
bab6aec1 7777 || ((op.bitfield.class != Reg
dc821c5f 7778 || (!op.bitfield.dword && !op.bitfield.qword))
3528c362 7779 && op.bitfield.class != RegSIMD
43234a1e 7780 && !operand_type_equal (&op, &regmask)))
c0f3af97 7781 abort ();
f12dc422 7782 i.vex.register_specifier = i.op[vvvv].regs;
c0f3af97
L
7783 dest++;
7784 }
7785 }
29b0f896
AM
7786
7787 i.rm.mode = 3;
dfd69174
JB
7788 /* One of the register operands will be encoded in the i.rm.reg
7789 field, the other in the combined i.rm.mode and i.rm.regmem
29b0f896
AM
7790 fields. If no form of this instruction supports a memory
7791 destination operand, then we assume the source operand may
7792 sometimes be a memory operand and so we need to store the
7793 destination in the i.rm.reg field. */
dfd69174 7794 if (!i.tm.opcode_modifier.regmem
40fb9820 7795 && operand_type_check (i.tm.operand_types[dest], anymem) == 0)
29b0f896
AM
7796 {
7797 i.rm.reg = i.op[dest].regs->reg_num;
7798 i.rm.regmem = i.op[source].regs->reg_num;
3528c362
JB
7799 if (i.op[dest].regs->reg_type.bitfield.class == RegMMX
7800 || i.op[source].regs->reg_type.bitfield.class == RegMMX)
b4a3a7b4 7801 i.has_regmmx = TRUE;
3528c362
JB
7802 else if (i.op[dest].regs->reg_type.bitfield.class == RegSIMD
7803 || i.op[source].regs->reg_type.bitfield.class == RegSIMD)
b4a3a7b4
L
7804 {
7805 if (i.types[dest].bitfield.zmmword
7806 || i.types[source].bitfield.zmmword)
7807 i.has_regzmm = TRUE;
7808 else if (i.types[dest].bitfield.ymmword
7809 || i.types[source].bitfield.ymmword)
7810 i.has_regymm = TRUE;
7811 else
7812 i.has_regxmm = TRUE;
7813 }
29b0f896 7814 if ((i.op[dest].regs->reg_flags & RegRex) != 0)
161a04f6 7815 i.rex |= REX_R;
43234a1e
L
7816 if ((i.op[dest].regs->reg_flags & RegVRex) != 0)
7817 i.vrex |= REX_R;
29b0f896 7818 if ((i.op[source].regs->reg_flags & RegRex) != 0)
161a04f6 7819 i.rex |= REX_B;
43234a1e
L
7820 if ((i.op[source].regs->reg_flags & RegVRex) != 0)
7821 i.vrex |= REX_B;
29b0f896
AM
7822 }
7823 else
7824 {
7825 i.rm.reg = i.op[source].regs->reg_num;
7826 i.rm.regmem = i.op[dest].regs->reg_num;
7827 if ((i.op[dest].regs->reg_flags & RegRex) != 0)
161a04f6 7828 i.rex |= REX_B;
43234a1e
L
7829 if ((i.op[dest].regs->reg_flags & RegVRex) != 0)
7830 i.vrex |= REX_B;
29b0f896 7831 if ((i.op[source].regs->reg_flags & RegRex) != 0)
161a04f6 7832 i.rex |= REX_R;
43234a1e
L
7833 if ((i.op[source].regs->reg_flags & RegVRex) != 0)
7834 i.vrex |= REX_R;
29b0f896 7835 }
e0c7f900 7836 if (flag_code != CODE_64BIT && (i.rex & REX_R))
c4a530c5 7837 {
4a5c67ed 7838 if (i.types[!i.tm.opcode_modifier.regmem].bitfield.class != RegCR)
c4a530c5 7839 abort ();
e0c7f900 7840 i.rex &= ~REX_R;
c4a530c5
JB
7841 add_prefix (LOCK_PREFIX_OPCODE);
7842 }
29b0f896
AM
7843 }
7844 else
7845 { /* If it's not 2 reg operands... */
c0f3af97
L
7846 unsigned int mem;
7847
29b0f896
AM
7848 if (i.mem_operands)
7849 {
7850 unsigned int fake_zero_displacement = 0;
99018f42 7851 unsigned int op;
4eed87de 7852
7ab9ffdd 7853 for (op = 0; op < i.operands; op++)
8dc0818e 7854 if (i.flags[op] & Operand_Mem)
7ab9ffdd 7855 break;
7ab9ffdd 7856 gas_assert (op < i.operands);
29b0f896 7857
6c30d220
L
7858 if (i.tm.opcode_modifier.vecsib)
7859 {
e968fc9b 7860 if (i.index_reg->reg_num == RegIZ)
6c30d220
L
7861 abort ();
7862
7863 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7864 if (!i.base_reg)
7865 {
7866 i.sib.base = NO_BASE_REGISTER;
7867 i.sib.scale = i.log2_scale_factor;
7868 i.types[op].bitfield.disp8 = 0;
7869 i.types[op].bitfield.disp16 = 0;
7870 i.types[op].bitfield.disp64 = 0;
43083a50 7871 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
6c30d220
L
7872 {
7873 /* Must be 32 bit */
7874 i.types[op].bitfield.disp32 = 1;
7875 i.types[op].bitfield.disp32s = 0;
7876 }
7877 else
7878 {
7879 i.types[op].bitfield.disp32 = 0;
7880 i.types[op].bitfield.disp32s = 1;
7881 }
7882 }
7883 i.sib.index = i.index_reg->reg_num;
7884 if ((i.index_reg->reg_flags & RegRex) != 0)
7885 i.rex |= REX_X;
43234a1e
L
7886 if ((i.index_reg->reg_flags & RegVRex) != 0)
7887 i.vrex |= REX_X;
6c30d220
L
7888 }
7889
29b0f896
AM
7890 default_seg = &ds;
7891
7892 if (i.base_reg == 0)
7893 {
7894 i.rm.mode = 0;
7895 if (!i.disp_operands)
9bb129e8 7896 fake_zero_displacement = 1;
29b0f896
AM
7897 if (i.index_reg == 0)
7898 {
73053c1f
JB
7899 i386_operand_type newdisp;
7900
6c30d220 7901 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896 7902 /* Operand is just <disp> */
20f0a1fc 7903 if (flag_code == CODE_64BIT)
29b0f896
AM
7904 {
7905 /* 64bit mode overwrites the 32bit absolute
7906 addressing by RIP relative addressing and
7907 absolute addressing is encoded by one of the
7908 redundant SIB forms. */
7909 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7910 i.sib.base = NO_BASE_REGISTER;
7911 i.sib.index = NO_INDEX_REGISTER;
73053c1f 7912 newdisp = (!i.prefix[ADDR_PREFIX] ? disp32s : disp32);
20f0a1fc 7913 }
fc225355
L
7914 else if ((flag_code == CODE_16BIT)
7915 ^ (i.prefix[ADDR_PREFIX] != 0))
20f0a1fc
NC
7916 {
7917 i.rm.regmem = NO_BASE_REGISTER_16;
73053c1f 7918 newdisp = disp16;
20f0a1fc
NC
7919 }
7920 else
7921 {
7922 i.rm.regmem = NO_BASE_REGISTER;
73053c1f 7923 newdisp = disp32;
29b0f896 7924 }
73053c1f
JB
7925 i.types[op] = operand_type_and_not (i.types[op], anydisp);
7926 i.types[op] = operand_type_or (i.types[op], newdisp);
29b0f896 7927 }
6c30d220 7928 else if (!i.tm.opcode_modifier.vecsib)
29b0f896 7929 {
6c30d220 7930 /* !i.base_reg && i.index_reg */
e968fc9b 7931 if (i.index_reg->reg_num == RegIZ)
db51cc60
L
7932 i.sib.index = NO_INDEX_REGISTER;
7933 else
7934 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
7935 i.sib.base = NO_BASE_REGISTER;
7936 i.sib.scale = i.log2_scale_factor;
7937 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
40fb9820
L
7938 i.types[op].bitfield.disp8 = 0;
7939 i.types[op].bitfield.disp16 = 0;
7940 i.types[op].bitfield.disp64 = 0;
43083a50 7941 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
40fb9820
L
7942 {
7943 /* Must be 32 bit */
7944 i.types[op].bitfield.disp32 = 1;
7945 i.types[op].bitfield.disp32s = 0;
7946 }
29b0f896 7947 else
40fb9820
L
7948 {
7949 i.types[op].bitfield.disp32 = 0;
7950 i.types[op].bitfield.disp32s = 1;
7951 }
29b0f896 7952 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 7953 i.rex |= REX_X;
29b0f896
AM
7954 }
7955 }
7956 /* RIP addressing for 64bit mode. */
e968fc9b 7957 else if (i.base_reg->reg_num == RegIP)
29b0f896 7958 {
6c30d220 7959 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896 7960 i.rm.regmem = NO_BASE_REGISTER;
40fb9820
L
7961 i.types[op].bitfield.disp8 = 0;
7962 i.types[op].bitfield.disp16 = 0;
7963 i.types[op].bitfield.disp32 = 0;
7964 i.types[op].bitfield.disp32s = 1;
7965 i.types[op].bitfield.disp64 = 0;
71903a11 7966 i.flags[op] |= Operand_PCrel;
20f0a1fc
NC
7967 if (! i.disp_operands)
7968 fake_zero_displacement = 1;
29b0f896 7969 }
dc821c5f 7970 else if (i.base_reg->reg_type.bitfield.word)
29b0f896 7971 {
6c30d220 7972 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896
AM
7973 switch (i.base_reg->reg_num)
7974 {
7975 case 3: /* (%bx) */
7976 if (i.index_reg == 0)
7977 i.rm.regmem = 7;
7978 else /* (%bx,%si) -> 0, or (%bx,%di) -> 1 */
7979 i.rm.regmem = i.index_reg->reg_num - 6;
7980 break;
7981 case 5: /* (%bp) */
7982 default_seg = &ss;
7983 if (i.index_reg == 0)
7984 {
7985 i.rm.regmem = 6;
40fb9820 7986 if (operand_type_check (i.types[op], disp) == 0)
29b0f896
AM
7987 {
7988 /* fake (%bp) into 0(%bp) */
b5014f7a 7989 i.types[op].bitfield.disp8 = 1;
252b5132 7990 fake_zero_displacement = 1;
29b0f896
AM
7991 }
7992 }
7993 else /* (%bp,%si) -> 2, or (%bp,%di) -> 3 */
7994 i.rm.regmem = i.index_reg->reg_num - 6 + 2;
7995 break;
7996 default: /* (%si) -> 4 or (%di) -> 5 */
7997 i.rm.regmem = i.base_reg->reg_num - 6 + 4;
7998 }
7999 i.rm.mode = mode_from_disp_size (i.types[op]);
8000 }
8001 else /* i.base_reg and 32/64 bit mode */
8002 {
8003 if (flag_code == CODE_64BIT
40fb9820
L
8004 && operand_type_check (i.types[op], disp))
8005 {
73053c1f
JB
8006 i.types[op].bitfield.disp16 = 0;
8007 i.types[op].bitfield.disp64 = 0;
40fb9820 8008 if (i.prefix[ADDR_PREFIX] == 0)
73053c1f
JB
8009 {
8010 i.types[op].bitfield.disp32 = 0;
8011 i.types[op].bitfield.disp32s = 1;
8012 }
40fb9820 8013 else
73053c1f
JB
8014 {
8015 i.types[op].bitfield.disp32 = 1;
8016 i.types[op].bitfield.disp32s = 0;
8017 }
40fb9820 8018 }
20f0a1fc 8019
6c30d220
L
8020 if (!i.tm.opcode_modifier.vecsib)
8021 i.rm.regmem = i.base_reg->reg_num;
29b0f896 8022 if ((i.base_reg->reg_flags & RegRex) != 0)
161a04f6 8023 i.rex |= REX_B;
29b0f896
AM
8024 i.sib.base = i.base_reg->reg_num;
8025 /* x86-64 ignores REX prefix bit here to avoid decoder
8026 complications. */
848930b2
JB
8027 if (!(i.base_reg->reg_flags & RegRex)
8028 && (i.base_reg->reg_num == EBP_REG_NUM
8029 || i.base_reg->reg_num == ESP_REG_NUM))
29b0f896 8030 default_seg = &ss;
848930b2 8031 if (i.base_reg->reg_num == 5 && i.disp_operands == 0)
29b0f896 8032 {
848930b2 8033 fake_zero_displacement = 1;
b5014f7a 8034 i.types[op].bitfield.disp8 = 1;
29b0f896
AM
8035 }
8036 i.sib.scale = i.log2_scale_factor;
8037 if (i.index_reg == 0)
8038 {
6c30d220 8039 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896
AM
8040 /* <disp>(%esp) becomes two byte modrm with no index
8041 register. We've already stored the code for esp
8042 in i.rm.regmem ie. ESCAPE_TO_TWO_BYTE_ADDRESSING.
8043 Any base register besides %esp will not use the
8044 extra modrm byte. */
8045 i.sib.index = NO_INDEX_REGISTER;
29b0f896 8046 }
6c30d220 8047 else if (!i.tm.opcode_modifier.vecsib)
29b0f896 8048 {
e968fc9b 8049 if (i.index_reg->reg_num == RegIZ)
db51cc60
L
8050 i.sib.index = NO_INDEX_REGISTER;
8051 else
8052 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
8053 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
8054 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 8055 i.rex |= REX_X;
29b0f896 8056 }
67a4f2b7
AO
8057
8058 if (i.disp_operands
8059 && (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
8060 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL))
8061 i.rm.mode = 0;
8062 else
a501d77e
L
8063 {
8064 if (!fake_zero_displacement
8065 && !i.disp_operands
8066 && i.disp_encoding)
8067 {
8068 fake_zero_displacement = 1;
8069 if (i.disp_encoding == disp_encoding_8bit)
8070 i.types[op].bitfield.disp8 = 1;
8071 else
8072 i.types[op].bitfield.disp32 = 1;
8073 }
8074 i.rm.mode = mode_from_disp_size (i.types[op]);
8075 }
29b0f896 8076 }
252b5132 8077
29b0f896
AM
8078 if (fake_zero_displacement)
8079 {
8080 /* Fakes a zero displacement assuming that i.types[op]
8081 holds the correct displacement size. */
8082 expressionS *exp;
8083
9c2799c2 8084 gas_assert (i.op[op].disps == 0);
29b0f896
AM
8085 exp = &disp_expressions[i.disp_operands++];
8086 i.op[op].disps = exp;
8087 exp->X_op = O_constant;
8088 exp->X_add_number = 0;
8089 exp->X_add_symbol = (symbolS *) 0;
8090 exp->X_op_symbol = (symbolS *) 0;
8091 }
c0f3af97
L
8092
8093 mem = op;
29b0f896 8094 }
c0f3af97
L
8095 else
8096 mem = ~0;
252b5132 8097
8c43a48b 8098 if (i.tm.opcode_modifier.vexsources == XOP2SOURCES)
5dd85c99
SP
8099 {
8100 if (operand_type_check (i.types[0], imm))
8101 i.vex.register_specifier = NULL;
8102 else
8103 {
8104 /* VEX.vvvv encodes one of the sources when the first
8105 operand is not an immediate. */
1ef99a7b 8106 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
8107 i.vex.register_specifier = i.op[0].regs;
8108 else
8109 i.vex.register_specifier = i.op[1].regs;
8110 }
8111
8112 /* Destination is a XMM register encoded in the ModRM.reg
8113 and VEX.R bit. */
8114 i.rm.reg = i.op[2].regs->reg_num;
8115 if ((i.op[2].regs->reg_flags & RegRex) != 0)
8116 i.rex |= REX_R;
8117
8118 /* ModRM.rm and VEX.B encodes the other source. */
8119 if (!i.mem_operands)
8120 {
8121 i.rm.mode = 3;
8122
1ef99a7b 8123 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
8124 i.rm.regmem = i.op[1].regs->reg_num;
8125 else
8126 i.rm.regmem = i.op[0].regs->reg_num;
8127
8128 if ((i.op[1].regs->reg_flags & RegRex) != 0)
8129 i.rex |= REX_B;
8130 }
8131 }
2426c15f 8132 else if (i.tm.opcode_modifier.vexvvvv == VEXLWP)
f88c9eb0
SP
8133 {
8134 i.vex.register_specifier = i.op[2].regs;
8135 if (!i.mem_operands)
8136 {
8137 i.rm.mode = 3;
8138 i.rm.regmem = i.op[1].regs->reg_num;
8139 if ((i.op[1].regs->reg_flags & RegRex) != 0)
8140 i.rex |= REX_B;
8141 }
8142 }
29b0f896
AM
8143 /* Fill in i.rm.reg or i.rm.regmem field with register operand
8144 (if any) based on i.tm.extension_opcode. Again, we must be
8145 careful to make sure that segment/control/debug/test/MMX
8146 registers are coded into the i.rm.reg field. */
f88c9eb0 8147 else if (i.reg_operands)
29b0f896 8148 {
99018f42 8149 unsigned int op;
7ab9ffdd
L
8150 unsigned int vex_reg = ~0;
8151
8152 for (op = 0; op < i.operands; op++)
b4a3a7b4 8153 {
bab6aec1 8154 if (i.types[op].bitfield.class == Reg
f74a6307
JB
8155 || i.types[op].bitfield.class == RegBND
8156 || i.types[op].bitfield.class == RegMask
00cee14f 8157 || i.types[op].bitfield.class == SReg
4a5c67ed
JB
8158 || i.types[op].bitfield.class == RegCR
8159 || i.types[op].bitfield.class == RegDR
8160 || i.types[op].bitfield.class == RegTR)
b4a3a7b4 8161 break;
3528c362 8162 if (i.types[op].bitfield.class == RegSIMD)
b4a3a7b4
L
8163 {
8164 if (i.types[op].bitfield.zmmword)
8165 i.has_regzmm = TRUE;
8166 else if (i.types[op].bitfield.ymmword)
8167 i.has_regymm = TRUE;
8168 else
8169 i.has_regxmm = TRUE;
8170 break;
8171 }
3528c362 8172 if (i.types[op].bitfield.class == RegMMX)
b4a3a7b4
L
8173 {
8174 i.has_regmmx = TRUE;
8175 break;
8176 }
8177 }
c0209578 8178
7ab9ffdd
L
8179 if (vex_3_sources)
8180 op = dest;
2426c15f 8181 else if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd
L
8182 {
8183 /* For instructions with VexNDS, the register-only
8184 source operand is encoded in VEX prefix. */
8185 gas_assert (mem != (unsigned int) ~0);
c0f3af97 8186
7ab9ffdd 8187 if (op > mem)
c0f3af97 8188 {
7ab9ffdd
L
8189 vex_reg = op++;
8190 gas_assert (op < i.operands);
c0f3af97
L
8191 }
8192 else
c0f3af97 8193 {
f12dc422
L
8194 /* Check register-only source operand when two source
8195 operands are swapped. */
8196 if (!i.tm.operand_types[op].bitfield.baseindex
8197 && i.tm.operand_types[op + 1].bitfield.baseindex)
8198 {
8199 vex_reg = op;
8200 op += 2;
8201 gas_assert (mem == (vex_reg + 1)
8202 && op < i.operands);
8203 }
8204 else
8205 {
8206 vex_reg = op + 1;
8207 gas_assert (vex_reg < i.operands);
8208 }
c0f3af97 8209 }
7ab9ffdd 8210 }
2426c15f 8211 else if (i.tm.opcode_modifier.vexvvvv == VEXNDD)
7ab9ffdd 8212 {
f12dc422 8213 /* For instructions with VexNDD, the register destination
7ab9ffdd 8214 is encoded in VEX prefix. */
f12dc422
L
8215 if (i.mem_operands == 0)
8216 {
8217 /* There is no memory operand. */
8218 gas_assert ((op + 2) == i.operands);
8219 vex_reg = op + 1;
8220 }
8221 else
8d63c93e 8222 {
ed438a93
JB
8223 /* There are only 2 non-immediate operands. */
8224 gas_assert (op < i.imm_operands + 2
8225 && i.operands == i.imm_operands + 2);
8226 vex_reg = i.imm_operands + 1;
f12dc422 8227 }
7ab9ffdd
L
8228 }
8229 else
8230 gas_assert (op < i.operands);
99018f42 8231
7ab9ffdd
L
8232 if (vex_reg != (unsigned int) ~0)
8233 {
f12dc422 8234 i386_operand_type *type = &i.tm.operand_types[vex_reg];
7ab9ffdd 8235
bab6aec1 8236 if ((type->bitfield.class != Reg
dc821c5f 8237 || (!type->bitfield.dword && !type->bitfield.qword))
3528c362 8238 && type->bitfield.class != RegSIMD
43234a1e 8239 && !operand_type_equal (type, &regmask))
7ab9ffdd 8240 abort ();
f88c9eb0 8241
7ab9ffdd
L
8242 i.vex.register_specifier = i.op[vex_reg].regs;
8243 }
8244
1b9f0c97
L
8245 /* Don't set OP operand twice. */
8246 if (vex_reg != op)
7ab9ffdd 8247 {
1b9f0c97
L
8248 /* If there is an extension opcode to put here, the
8249 register number must be put into the regmem field. */
8250 if (i.tm.extension_opcode != None)
8251 {
8252 i.rm.regmem = i.op[op].regs->reg_num;
8253 if ((i.op[op].regs->reg_flags & RegRex) != 0)
8254 i.rex |= REX_B;
43234a1e
L
8255 if ((i.op[op].regs->reg_flags & RegVRex) != 0)
8256 i.vrex |= REX_B;
1b9f0c97
L
8257 }
8258 else
8259 {
8260 i.rm.reg = i.op[op].regs->reg_num;
8261 if ((i.op[op].regs->reg_flags & RegRex) != 0)
8262 i.rex |= REX_R;
43234a1e
L
8263 if ((i.op[op].regs->reg_flags & RegVRex) != 0)
8264 i.vrex |= REX_R;
1b9f0c97 8265 }
7ab9ffdd 8266 }
252b5132 8267
29b0f896
AM
8268 /* Now, if no memory operand has set i.rm.mode = 0, 1, 2 we
8269 must set it to 3 to indicate this is a register operand
8270 in the regmem field. */
8271 if (!i.mem_operands)
8272 i.rm.mode = 3;
8273 }
252b5132 8274
29b0f896 8275 /* Fill in i.rm.reg field with extension opcode (if any). */
c1e679ec 8276 if (i.tm.extension_opcode != None)
29b0f896
AM
8277 i.rm.reg = i.tm.extension_opcode;
8278 }
8279 return default_seg;
8280}
252b5132 8281
376cd056
JB
8282static unsigned int
8283flip_code16 (unsigned int code16)
8284{
8285 gas_assert (i.tm.operands == 1);
8286
8287 return !(i.prefix[REX_PREFIX] & REX_W)
8288 && (code16 ? i.tm.operand_types[0].bitfield.disp32
8289 || i.tm.operand_types[0].bitfield.disp32s
8290 : i.tm.operand_types[0].bitfield.disp16)
8291 ? CODE16 : 0;
8292}
8293
29b0f896 8294static void
e3bb37b5 8295output_branch (void)
29b0f896
AM
8296{
8297 char *p;
f8a5c266 8298 int size;
29b0f896
AM
8299 int code16;
8300 int prefix;
8301 relax_substateT subtype;
8302 symbolS *sym;
8303 offsetT off;
8304
f8a5c266 8305 code16 = flag_code == CODE_16BIT ? CODE16 : 0;
a501d77e 8306 size = i.disp_encoding == disp_encoding_32bit ? BIG : SMALL;
29b0f896
AM
8307
8308 prefix = 0;
8309 if (i.prefix[DATA_PREFIX] != 0)
252b5132 8310 {
29b0f896
AM
8311 prefix = 1;
8312 i.prefixes -= 1;
376cd056 8313 code16 ^= flip_code16(code16);
252b5132 8314 }
29b0f896
AM
8315 /* Pentium4 branch hints. */
8316 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
8317 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
2f66722d 8318 {
29b0f896
AM
8319 prefix++;
8320 i.prefixes--;
8321 }
8322 if (i.prefix[REX_PREFIX] != 0)
8323 {
8324 prefix++;
8325 i.prefixes--;
2f66722d
AM
8326 }
8327
7e8b059b
L
8328 /* BND prefixed jump. */
8329 if (i.prefix[BND_PREFIX] != 0)
8330 {
6cb0a70e
JB
8331 prefix++;
8332 i.prefixes--;
7e8b059b
L
8333 }
8334
f2810fe0
JB
8335 if (i.prefixes != 0)
8336 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
29b0f896
AM
8337
8338 /* It's always a symbol; End frag & setup for relax.
8339 Make sure there is enough room in this frag for the largest
8340 instruction we may generate in md_convert_frag. This is 2
8341 bytes for the opcode and room for the prefix and largest
8342 displacement. */
8343 frag_grow (prefix + 2 + 4);
8344 /* Prefix and 1 opcode byte go in fr_fix. */
8345 p = frag_more (prefix + 1);
8346 if (i.prefix[DATA_PREFIX] != 0)
8347 *p++ = DATA_PREFIX_OPCODE;
8348 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE
8349 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE)
8350 *p++ = i.prefix[SEG_PREFIX];
6cb0a70e
JB
8351 if (i.prefix[BND_PREFIX] != 0)
8352 *p++ = BND_PREFIX_OPCODE;
29b0f896
AM
8353 if (i.prefix[REX_PREFIX] != 0)
8354 *p++ = i.prefix[REX_PREFIX];
8355 *p = i.tm.base_opcode;
8356
8357 if ((unsigned char) *p == JUMP_PC_RELATIVE)
f8a5c266 8358 subtype = ENCODE_RELAX_STATE (UNCOND_JUMP, size);
40fb9820 8359 else if (cpu_arch_flags.bitfield.cpui386)
f8a5c266 8360 subtype = ENCODE_RELAX_STATE (COND_JUMP, size);
29b0f896 8361 else
f8a5c266 8362 subtype = ENCODE_RELAX_STATE (COND_JUMP86, size);
29b0f896 8363 subtype |= code16;
3e73aa7c 8364
29b0f896
AM
8365 sym = i.op[0].disps->X_add_symbol;
8366 off = i.op[0].disps->X_add_number;
3e73aa7c 8367
29b0f896
AM
8368 if (i.op[0].disps->X_op != O_constant
8369 && i.op[0].disps->X_op != O_symbol)
3e73aa7c 8370 {
29b0f896
AM
8371 /* Handle complex expressions. */
8372 sym = make_expr_symbol (i.op[0].disps);
8373 off = 0;
8374 }
3e73aa7c 8375
29b0f896
AM
8376 /* 1 possible extra opcode + 4 byte displacement go in var part.
8377 Pass reloc in fr_var. */
d258b828 8378 frag_var (rs_machine_dependent, 5, i.reloc[0], subtype, sym, off, p);
29b0f896 8379}
3e73aa7c 8380
bd7ab16b
L
8381#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8382/* Return TRUE iff PLT32 relocation should be used for branching to
8383 symbol S. */
8384
8385static bfd_boolean
8386need_plt32_p (symbolS *s)
8387{
8388 /* PLT32 relocation is ELF only. */
8389 if (!IS_ELF)
8390 return FALSE;
8391
a5def729
RO
8392#ifdef TE_SOLARIS
8393 /* Don't emit PLT32 relocation on Solaris: neither native linker nor
8394 krtld support it. */
8395 return FALSE;
8396#endif
8397
bd7ab16b
L
8398 /* Since there is no need to prepare for PLT branch on x86-64, we
8399 can generate R_X86_64_PLT32, instead of R_X86_64_PC32, which can
8400 be used as a marker for 32-bit PC-relative branches. */
8401 if (!object_64bit)
8402 return FALSE;
8403
8404 /* Weak or undefined symbol need PLT32 relocation. */
8405 if (S_IS_WEAK (s) || !S_IS_DEFINED (s))
8406 return TRUE;
8407
8408 /* Non-global symbol doesn't need PLT32 relocation. */
8409 if (! S_IS_EXTERNAL (s))
8410 return FALSE;
8411
8412 /* Other global symbols need PLT32 relocation. NB: Symbol with
8413 non-default visibilities are treated as normal global symbol
8414 so that PLT32 relocation can be used as a marker for 32-bit
8415 PC-relative branches. It is useful for linker relaxation. */
8416 return TRUE;
8417}
8418#endif
8419
29b0f896 8420static void
e3bb37b5 8421output_jump (void)
29b0f896
AM
8422{
8423 char *p;
8424 int size;
3e02c1cc 8425 fixS *fixP;
bd7ab16b 8426 bfd_reloc_code_real_type jump_reloc = i.reloc[0];
29b0f896 8427
0cfa3eb3 8428 if (i.tm.opcode_modifier.jump == JUMP_BYTE)
29b0f896
AM
8429 {
8430 /* This is a loop or jecxz type instruction. */
8431 size = 1;
8432 if (i.prefix[ADDR_PREFIX] != 0)
8433 {
8434 FRAG_APPEND_1_CHAR (ADDR_PREFIX_OPCODE);
8435 i.prefixes -= 1;
8436 }
8437 /* Pentium4 branch hints. */
8438 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
8439 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
8440 {
8441 FRAG_APPEND_1_CHAR (i.prefix[SEG_PREFIX]);
8442 i.prefixes--;
3e73aa7c
JH
8443 }
8444 }
29b0f896
AM
8445 else
8446 {
8447 int code16;
3e73aa7c 8448
29b0f896
AM
8449 code16 = 0;
8450 if (flag_code == CODE_16BIT)
8451 code16 = CODE16;
3e73aa7c 8452
29b0f896
AM
8453 if (i.prefix[DATA_PREFIX] != 0)
8454 {
8455 FRAG_APPEND_1_CHAR (DATA_PREFIX_OPCODE);
8456 i.prefixes -= 1;
376cd056 8457 code16 ^= flip_code16(code16);
29b0f896 8458 }
252b5132 8459
29b0f896
AM
8460 size = 4;
8461 if (code16)
8462 size = 2;
8463 }
9fcc94b6 8464
6cb0a70e
JB
8465 /* BND prefixed jump. */
8466 if (i.prefix[BND_PREFIX] != 0)
29b0f896 8467 {
6cb0a70e 8468 FRAG_APPEND_1_CHAR (i.prefix[BND_PREFIX]);
29b0f896
AM
8469 i.prefixes -= 1;
8470 }
252b5132 8471
6cb0a70e 8472 if (i.prefix[REX_PREFIX] != 0)
7e8b059b 8473 {
6cb0a70e 8474 FRAG_APPEND_1_CHAR (i.prefix[REX_PREFIX]);
7e8b059b
L
8475 i.prefixes -= 1;
8476 }
8477
f2810fe0
JB
8478 if (i.prefixes != 0)
8479 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
e0890092 8480
42164a71
L
8481 p = frag_more (i.tm.opcode_length + size);
8482 switch (i.tm.opcode_length)
8483 {
8484 case 2:
8485 *p++ = i.tm.base_opcode >> 8;
1a0670f3 8486 /* Fall through. */
42164a71
L
8487 case 1:
8488 *p++ = i.tm.base_opcode;
8489 break;
8490 default:
8491 abort ();
8492 }
e0890092 8493
bd7ab16b
L
8494#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8495 if (size == 4
8496 && jump_reloc == NO_RELOC
8497 && need_plt32_p (i.op[0].disps->X_add_symbol))
8498 jump_reloc = BFD_RELOC_X86_64_PLT32;
8499#endif
8500
8501 jump_reloc = reloc (size, 1, 1, jump_reloc);
8502
3e02c1cc 8503 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal, size,
bd7ab16b 8504 i.op[0].disps, 1, jump_reloc);
3e02c1cc
AM
8505
8506 /* All jumps handled here are signed, but don't use a signed limit
8507 check for 32 and 16 bit jumps as we want to allow wrap around at
8508 4G and 64k respectively. */
8509 if (size == 1)
8510 fixP->fx_signed = 1;
29b0f896 8511}
e0890092 8512
29b0f896 8513static void
e3bb37b5 8514output_interseg_jump (void)
29b0f896
AM
8515{
8516 char *p;
8517 int size;
8518 int prefix;
8519 int code16;
252b5132 8520
29b0f896
AM
8521 code16 = 0;
8522 if (flag_code == CODE_16BIT)
8523 code16 = CODE16;
a217f122 8524
29b0f896
AM
8525 prefix = 0;
8526 if (i.prefix[DATA_PREFIX] != 0)
8527 {
8528 prefix = 1;
8529 i.prefixes -= 1;
8530 code16 ^= CODE16;
8531 }
6cb0a70e
JB
8532
8533 gas_assert (!i.prefix[REX_PREFIX]);
252b5132 8534
29b0f896
AM
8535 size = 4;
8536 if (code16)
8537 size = 2;
252b5132 8538
f2810fe0
JB
8539 if (i.prefixes != 0)
8540 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
252b5132 8541
29b0f896
AM
8542 /* 1 opcode; 2 segment; offset */
8543 p = frag_more (prefix + 1 + 2 + size);
3e73aa7c 8544
29b0f896
AM
8545 if (i.prefix[DATA_PREFIX] != 0)
8546 *p++ = DATA_PREFIX_OPCODE;
252b5132 8547
29b0f896
AM
8548 if (i.prefix[REX_PREFIX] != 0)
8549 *p++ = i.prefix[REX_PREFIX];
252b5132 8550
29b0f896
AM
8551 *p++ = i.tm.base_opcode;
8552 if (i.op[1].imms->X_op == O_constant)
8553 {
8554 offsetT n = i.op[1].imms->X_add_number;
252b5132 8555
29b0f896
AM
8556 if (size == 2
8557 && !fits_in_unsigned_word (n)
8558 && !fits_in_signed_word (n))
8559 {
8560 as_bad (_("16-bit jump out of range"));
8561 return;
8562 }
8563 md_number_to_chars (p, n, size);
8564 }
8565 else
8566 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
d258b828 8567 i.op[1].imms, 0, reloc (size, 0, 0, i.reloc[1]));
29b0f896
AM
8568 if (i.op[0].imms->X_op != O_constant)
8569 as_bad (_("can't handle non absolute segment in `%s'"),
8570 i.tm.name);
8571 md_number_to_chars (p + size, (valueT) i.op[0].imms->X_add_number, 2);
8572}
a217f122 8573
b4a3a7b4
L
8574#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8575void
8576x86_cleanup (void)
8577{
8578 char *p;
8579 asection *seg = now_seg;
8580 subsegT subseg = now_subseg;
8581 asection *sec;
8582 unsigned int alignment, align_size_1;
8583 unsigned int isa_1_descsz, feature_2_descsz, descsz;
8584 unsigned int isa_1_descsz_raw, feature_2_descsz_raw;
8585 unsigned int padding;
8586
8587 if (!IS_ELF || !x86_used_note)
8588 return;
8589
b4a3a7b4
L
8590 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X86;
8591
8592 /* The .note.gnu.property section layout:
8593
8594 Field Length Contents
8595 ---- ---- ----
8596 n_namsz 4 4
8597 n_descsz 4 The note descriptor size
8598 n_type 4 NT_GNU_PROPERTY_TYPE_0
8599 n_name 4 "GNU"
8600 n_desc n_descsz The program property array
8601 .... .... ....
8602 */
8603
8604 /* Create the .note.gnu.property section. */
8605 sec = subseg_new (NOTE_GNU_PROPERTY_SECTION_NAME, 0);
fd361982 8606 bfd_set_section_flags (sec,
b4a3a7b4
L
8607 (SEC_ALLOC
8608 | SEC_LOAD
8609 | SEC_DATA
8610 | SEC_HAS_CONTENTS
8611 | SEC_READONLY));
8612
8613 if (get_elf_backend_data (stdoutput)->s->elfclass == ELFCLASS64)
8614 {
8615 align_size_1 = 7;
8616 alignment = 3;
8617 }
8618 else
8619 {
8620 align_size_1 = 3;
8621 alignment = 2;
8622 }
8623
fd361982 8624 bfd_set_section_alignment (sec, alignment);
b4a3a7b4
L
8625 elf_section_type (sec) = SHT_NOTE;
8626
8627 /* GNU_PROPERTY_X86_ISA_1_USED: 4-byte type + 4-byte data size
8628 + 4-byte data */
8629 isa_1_descsz_raw = 4 + 4 + 4;
8630 /* Align GNU_PROPERTY_X86_ISA_1_USED. */
8631 isa_1_descsz = (isa_1_descsz_raw + align_size_1) & ~align_size_1;
8632
8633 feature_2_descsz_raw = isa_1_descsz;
8634 /* GNU_PROPERTY_X86_FEATURE_2_USED: 4-byte type + 4-byte data size
8635 + 4-byte data */
8636 feature_2_descsz_raw += 4 + 4 + 4;
8637 /* Align GNU_PROPERTY_X86_FEATURE_2_USED. */
8638 feature_2_descsz = ((feature_2_descsz_raw + align_size_1)
8639 & ~align_size_1);
8640
8641 descsz = feature_2_descsz;
8642 /* Section size: n_namsz + n_descsz + n_type + n_name + n_descsz. */
8643 p = frag_more (4 + 4 + 4 + 4 + descsz);
8644
8645 /* Write n_namsz. */
8646 md_number_to_chars (p, (valueT) 4, 4);
8647
8648 /* Write n_descsz. */
8649 md_number_to_chars (p + 4, (valueT) descsz, 4);
8650
8651 /* Write n_type. */
8652 md_number_to_chars (p + 4 * 2, (valueT) NT_GNU_PROPERTY_TYPE_0, 4);
8653
8654 /* Write n_name. */
8655 memcpy (p + 4 * 3, "GNU", 4);
8656
8657 /* Write 4-byte type. */
8658 md_number_to_chars (p + 4 * 4,
8659 (valueT) GNU_PROPERTY_X86_ISA_1_USED, 4);
8660
8661 /* Write 4-byte data size. */
8662 md_number_to_chars (p + 4 * 5, (valueT) 4, 4);
8663
8664 /* Write 4-byte data. */
8665 md_number_to_chars (p + 4 * 6, (valueT) x86_isa_1_used, 4);
8666
8667 /* Zero out paddings. */
8668 padding = isa_1_descsz - isa_1_descsz_raw;
8669 if (padding)
8670 memset (p + 4 * 7, 0, padding);
8671
8672 /* Write 4-byte type. */
8673 md_number_to_chars (p + isa_1_descsz + 4 * 4,
8674 (valueT) GNU_PROPERTY_X86_FEATURE_2_USED, 4);
8675
8676 /* Write 4-byte data size. */
8677 md_number_to_chars (p + isa_1_descsz + 4 * 5, (valueT) 4, 4);
8678
8679 /* Write 4-byte data. */
8680 md_number_to_chars (p + isa_1_descsz + 4 * 6,
8681 (valueT) x86_feature_2_used, 4);
8682
8683 /* Zero out paddings. */
8684 padding = feature_2_descsz - feature_2_descsz_raw;
8685 if (padding)
8686 memset (p + isa_1_descsz + 4 * 7, 0, padding);
8687
8688 /* We probably can't restore the current segment, for there likely
8689 isn't one yet... */
8690 if (seg && subseg)
8691 subseg_set (seg, subseg);
8692}
8693#endif
8694
9c33702b
JB
8695static unsigned int
8696encoding_length (const fragS *start_frag, offsetT start_off,
8697 const char *frag_now_ptr)
8698{
8699 unsigned int len = 0;
8700
8701 if (start_frag != frag_now)
8702 {
8703 const fragS *fr = start_frag;
8704
8705 do {
8706 len += fr->fr_fix;
8707 fr = fr->fr_next;
8708 } while (fr && fr != frag_now);
8709 }
8710
8711 return len - start_off + (frag_now_ptr - frag_now->fr_literal);
8712}
8713
e379e5f3 8714/* Return 1 for test, and, cmp, add, sub, inc and dec which may
79d72f45
HL
8715 be macro-fused with conditional jumps.
8716 NB: If TEST/AND/CMP/ADD/SUB/INC/DEC is of RIP relative address,
8717 or is one of the following format:
8718
8719 cmp m, imm
8720 add m, imm
8721 sub m, imm
8722 test m, imm
8723 and m, imm
8724 inc m
8725 dec m
8726
8727 it is unfusible. */
e379e5f3
L
8728
8729static int
79d72f45 8730maybe_fused_with_jcc_p (enum mf_cmp_kind* mf_cmp_p)
e379e5f3
L
8731{
8732 /* No RIP address. */
8733 if (i.base_reg && i.base_reg->reg_num == RegIP)
8734 return 0;
8735
8736 /* No VEX/EVEX encoding. */
8737 if (is_any_vex_encoding (&i.tm))
8738 return 0;
8739
79d72f45
HL
8740 /* add, sub without add/sub m, imm. */
8741 if (i.tm.base_opcode <= 5
e379e5f3
L
8742 || (i.tm.base_opcode >= 0x28 && i.tm.base_opcode <= 0x2d)
8743 || ((i.tm.base_opcode | 3) == 0x83
79d72f45 8744 && (i.tm.extension_opcode == 0x5
e379e5f3 8745 || i.tm.extension_opcode == 0x0)))
79d72f45
HL
8746 {
8747 *mf_cmp_p = mf_cmp_alu_cmp;
8748 return !(i.mem_operands && i.imm_operands);
8749 }
e379e5f3 8750
79d72f45
HL
8751 /* and without and m, imm. */
8752 if ((i.tm.base_opcode >= 0x20 && i.tm.base_opcode <= 0x25)
8753 || ((i.tm.base_opcode | 3) == 0x83
8754 && i.tm.extension_opcode == 0x4))
8755 {
8756 *mf_cmp_p = mf_cmp_test_and;
8757 return !(i.mem_operands && i.imm_operands);
8758 }
8759
8760 /* test without test m imm. */
e379e5f3
L
8761 if ((i.tm.base_opcode | 1) == 0x85
8762 || (i.tm.base_opcode | 1) == 0xa9
8763 || ((i.tm.base_opcode | 1) == 0xf7
79d72f45
HL
8764 && i.tm.extension_opcode == 0))
8765 {
8766 *mf_cmp_p = mf_cmp_test_and;
8767 return !(i.mem_operands && i.imm_operands);
8768 }
8769
8770 /* cmp without cmp m, imm. */
8771 if ((i.tm.base_opcode >= 0x38 && i.tm.base_opcode <= 0x3d)
e379e5f3
L
8772 || ((i.tm.base_opcode | 3) == 0x83
8773 && (i.tm.extension_opcode == 0x7)))
79d72f45
HL
8774 {
8775 *mf_cmp_p = mf_cmp_alu_cmp;
8776 return !(i.mem_operands && i.imm_operands);
8777 }
e379e5f3 8778
79d72f45 8779 /* inc, dec without inc/dec m. */
e379e5f3
L
8780 if ((i.tm.cpu_flags.bitfield.cpuno64
8781 && (i.tm.base_opcode | 0xf) == 0x4f)
8782 || ((i.tm.base_opcode | 1) == 0xff
8783 && i.tm.extension_opcode <= 0x1))
79d72f45
HL
8784 {
8785 *mf_cmp_p = mf_cmp_incdec;
8786 return !i.mem_operands;
8787 }
e379e5f3
L
8788
8789 return 0;
8790}
8791
8792/* Return 1 if a FUSED_JCC_PADDING frag should be generated. */
8793
8794static int
79d72f45 8795add_fused_jcc_padding_frag_p (enum mf_cmp_kind* mf_cmp_p)
e379e5f3
L
8796{
8797 /* NB: Don't work with COND_JUMP86 without i386. */
8798 if (!align_branch_power
8799 || now_seg == absolute_section
8800 || !cpu_arch_flags.bitfield.cpui386
8801 || !(align_branch & align_branch_fused_bit))
8802 return 0;
8803
79d72f45 8804 if (maybe_fused_with_jcc_p (mf_cmp_p))
e379e5f3
L
8805 {
8806 if (last_insn.kind == last_insn_other
8807 || last_insn.seg != now_seg)
8808 return 1;
8809 if (flag_debug)
8810 as_warn_where (last_insn.file, last_insn.line,
8811 _("`%s` skips -malign-branch-boundary on `%s`"),
8812 last_insn.name, i.tm.name);
8813 }
8814
8815 return 0;
8816}
8817
8818/* Return 1 if a BRANCH_PREFIX frag should be generated. */
8819
8820static int
8821add_branch_prefix_frag_p (void)
8822{
8823 /* NB: Don't work with COND_JUMP86 without i386. Don't add prefix
8824 to PadLock instructions since they include prefixes in opcode. */
8825 if (!align_branch_power
8826 || !align_branch_prefix_size
8827 || now_seg == absolute_section
8828 || i.tm.cpu_flags.bitfield.cpupadlock
8829 || !cpu_arch_flags.bitfield.cpui386)
8830 return 0;
8831
8832 /* Don't add prefix if it is a prefix or there is no operand in case
8833 that segment prefix is special. */
8834 if (!i.operands || i.tm.opcode_modifier.isprefix)
8835 return 0;
8836
8837 if (last_insn.kind == last_insn_other
8838 || last_insn.seg != now_seg)
8839 return 1;
8840
8841 if (flag_debug)
8842 as_warn_where (last_insn.file, last_insn.line,
8843 _("`%s` skips -malign-branch-boundary on `%s`"),
8844 last_insn.name, i.tm.name);
8845
8846 return 0;
8847}
8848
8849/* Return 1 if a BRANCH_PADDING frag should be generated. */
8850
8851static int
79d72f45
HL
8852add_branch_padding_frag_p (enum align_branch_kind *branch_p,
8853 enum mf_jcc_kind *mf_jcc_p)
e379e5f3
L
8854{
8855 int add_padding;
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 return 0;
8862
8863 add_padding = 0;
8864
8865 /* Check for jcc and direct jmp. */
8866 if (i.tm.opcode_modifier.jump == JUMP)
8867 {
8868 if (i.tm.base_opcode == JUMP_PC_RELATIVE)
8869 {
8870 *branch_p = align_branch_jmp;
8871 add_padding = align_branch & align_branch_jmp_bit;
8872 }
8873 else
8874 {
79d72f45
HL
8875 /* Because J<cc> and JN<cc> share same group in macro-fusible table,
8876 igore the lowest bit. */
8877 *mf_jcc_p = (i.tm.base_opcode & 0x0e) >> 1;
e379e5f3
L
8878 *branch_p = align_branch_jcc;
8879 if ((align_branch & align_branch_jcc_bit))
8880 add_padding = 1;
8881 }
8882 }
8883 else if (is_any_vex_encoding (&i.tm))
8884 return 0;
8885 else if ((i.tm.base_opcode | 1) == 0xc3)
8886 {
8887 /* Near ret. */
8888 *branch_p = align_branch_ret;
8889 if ((align_branch & align_branch_ret_bit))
8890 add_padding = 1;
8891 }
8892 else
8893 {
8894 /* Check for indirect jmp, direct and indirect calls. */
8895 if (i.tm.base_opcode == 0xe8)
8896 {
8897 /* Direct call. */
8898 *branch_p = align_branch_call;
8899 if ((align_branch & align_branch_call_bit))
8900 add_padding = 1;
8901 }
8902 else if (i.tm.base_opcode == 0xff
8903 && (i.tm.extension_opcode == 2
8904 || i.tm.extension_opcode == 4))
8905 {
8906 /* Indirect call and jmp. */
8907 *branch_p = align_branch_indirect;
8908 if ((align_branch & align_branch_indirect_bit))
8909 add_padding = 1;
8910 }
8911
8912 if (add_padding
8913 && i.disp_operands
8914 && tls_get_addr
8915 && (i.op[0].disps->X_op == O_symbol
8916 || (i.op[0].disps->X_op == O_subtract
8917 && i.op[0].disps->X_op_symbol == GOT_symbol)))
8918 {
8919 symbolS *s = i.op[0].disps->X_add_symbol;
8920 /* No padding to call to global or undefined tls_get_addr. */
8921 if ((S_IS_EXTERNAL (s) || !S_IS_DEFINED (s))
8922 && strcmp (S_GET_NAME (s), tls_get_addr) == 0)
8923 return 0;
8924 }
8925 }
8926
8927 if (add_padding
8928 && last_insn.kind != last_insn_other
8929 && last_insn.seg == now_seg)
8930 {
8931 if (flag_debug)
8932 as_warn_where (last_insn.file, last_insn.line,
8933 _("`%s` skips -malign-branch-boundary on `%s`"),
8934 last_insn.name, i.tm.name);
8935 return 0;
8936 }
8937
8938 return add_padding;
8939}
8940
29b0f896 8941static void
e3bb37b5 8942output_insn (void)
29b0f896 8943{
2bbd9c25
JJ
8944 fragS *insn_start_frag;
8945 offsetT insn_start_off;
e379e5f3
L
8946 fragS *fragP = NULL;
8947 enum align_branch_kind branch = align_branch_none;
79d72f45
HL
8948 /* The initializer is arbitrary just to avoid uninitialized error.
8949 it's actually either assigned in add_branch_padding_frag_p
8950 or never be used. */
8951 enum mf_jcc_kind mf_jcc = mf_jcc_jo;
2bbd9c25 8952
b4a3a7b4
L
8953#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8954 if (IS_ELF && x86_used_note)
8955 {
8956 if (i.tm.cpu_flags.bitfield.cpucmov)
8957 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_CMOV;
8958 if (i.tm.cpu_flags.bitfield.cpusse)
8959 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE;
8960 if (i.tm.cpu_flags.bitfield.cpusse2)
8961 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE2;
8962 if (i.tm.cpu_flags.bitfield.cpusse3)
8963 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE3;
8964 if (i.tm.cpu_flags.bitfield.cpussse3)
8965 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSSE3;
8966 if (i.tm.cpu_flags.bitfield.cpusse4_1)
8967 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE4_1;
8968 if (i.tm.cpu_flags.bitfield.cpusse4_2)
8969 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE4_2;
8970 if (i.tm.cpu_flags.bitfield.cpuavx)
8971 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX;
8972 if (i.tm.cpu_flags.bitfield.cpuavx2)
8973 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX2;
8974 if (i.tm.cpu_flags.bitfield.cpufma)
8975 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_FMA;
8976 if (i.tm.cpu_flags.bitfield.cpuavx512f)
8977 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512F;
8978 if (i.tm.cpu_flags.bitfield.cpuavx512cd)
8979 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512CD;
8980 if (i.tm.cpu_flags.bitfield.cpuavx512er)
8981 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512ER;
8982 if (i.tm.cpu_flags.bitfield.cpuavx512pf)
8983 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512PF;
8984 if (i.tm.cpu_flags.bitfield.cpuavx512vl)
8985 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512VL;
8986 if (i.tm.cpu_flags.bitfield.cpuavx512dq)
8987 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512DQ;
8988 if (i.tm.cpu_flags.bitfield.cpuavx512bw)
8989 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512BW;
8990 if (i.tm.cpu_flags.bitfield.cpuavx512_4fmaps)
8991 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_4FMAPS;
8992 if (i.tm.cpu_flags.bitfield.cpuavx512_4vnniw)
8993 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_4VNNIW;
8994 if (i.tm.cpu_flags.bitfield.cpuavx512_bitalg)
8995 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_BITALG;
8996 if (i.tm.cpu_flags.bitfield.cpuavx512ifma)
8997 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_IFMA;
8998 if (i.tm.cpu_flags.bitfield.cpuavx512vbmi)
8999 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_VBMI;
9000 if (i.tm.cpu_flags.bitfield.cpuavx512_vbmi2)
9001 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_VBMI2;
9002 if (i.tm.cpu_flags.bitfield.cpuavx512_vnni)
9003 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_VNNI;
462cac58
L
9004 if (i.tm.cpu_flags.bitfield.cpuavx512_bf16)
9005 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_BF16;
b4a3a7b4
L
9006
9007 if (i.tm.cpu_flags.bitfield.cpu8087
9008 || i.tm.cpu_flags.bitfield.cpu287
9009 || i.tm.cpu_flags.bitfield.cpu387
9010 || i.tm.cpu_flags.bitfield.cpu687
9011 || i.tm.cpu_flags.bitfield.cpufisttp)
9012 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X87;
319ff62c
JB
9013 if (i.has_regmmx
9014 || i.tm.base_opcode == 0xf77 /* emms */
a7e12755
L
9015 || i.tm.base_opcode == 0xf0e /* femms */
9016 || i.tm.base_opcode == 0xf2a /* cvtpi2ps */
9017 || i.tm.base_opcode == 0x660f2a /* cvtpi2pd */)
b4a3a7b4
L
9018 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_MMX;
9019 if (i.has_regxmm)
9020 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XMM;
9021 if (i.has_regymm)
9022 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_YMM;
9023 if (i.has_regzmm)
9024 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_ZMM;
9025 if (i.tm.cpu_flags.bitfield.cpufxsr)
9026 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_FXSR;
9027 if (i.tm.cpu_flags.bitfield.cpuxsave)
9028 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVE;
9029 if (i.tm.cpu_flags.bitfield.cpuxsaveopt)
9030 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT;
9031 if (i.tm.cpu_flags.bitfield.cpuxsavec)
9032 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEC;
9033 }
9034#endif
9035
29b0f896
AM
9036 /* Tie dwarf2 debug info to the address at the start of the insn.
9037 We can't do this after the insn has been output as the current
9038 frag may have been closed off. eg. by frag_var. */
9039 dwarf2_emit_insn (0);
9040
2bbd9c25
JJ
9041 insn_start_frag = frag_now;
9042 insn_start_off = frag_now_fix ();
9043
79d72f45 9044 if (add_branch_padding_frag_p (&branch, &mf_jcc))
e379e5f3
L
9045 {
9046 char *p;
9047 /* Branch can be 8 bytes. Leave some room for prefixes. */
9048 unsigned int max_branch_padding_size = 14;
9049
9050 /* Align section to boundary. */
9051 record_alignment (now_seg, align_branch_power);
9052
9053 /* Make room for padding. */
9054 frag_grow (max_branch_padding_size);
9055
9056 /* Start of the padding. */
9057 p = frag_more (0);
9058
9059 fragP = frag_now;
9060
9061 frag_var (rs_machine_dependent, max_branch_padding_size, 0,
9062 ENCODE_RELAX_STATE (BRANCH_PADDING, 0),
9063 NULL, 0, p);
9064
79d72f45 9065 fragP->tc_frag_data.mf_type = mf_jcc;
e379e5f3
L
9066 fragP->tc_frag_data.branch_type = branch;
9067 fragP->tc_frag_data.max_bytes = max_branch_padding_size;
9068 }
9069
29b0f896 9070 /* Output jumps. */
0cfa3eb3 9071 if (i.tm.opcode_modifier.jump == JUMP)
29b0f896 9072 output_branch ();
0cfa3eb3
JB
9073 else if (i.tm.opcode_modifier.jump == JUMP_BYTE
9074 || i.tm.opcode_modifier.jump == JUMP_DWORD)
29b0f896 9075 output_jump ();
0cfa3eb3 9076 else if (i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT)
29b0f896
AM
9077 output_interseg_jump ();
9078 else
9079 {
9080 /* Output normal instructions here. */
9081 char *p;
9082 unsigned char *q;
47465058 9083 unsigned int j;
331d2d0d 9084 unsigned int prefix;
79d72f45 9085 enum mf_cmp_kind mf_cmp;
4dffcebc 9086
e4e00185 9087 if (avoid_fence
c3949f43
JB
9088 && (i.tm.base_opcode == 0xfaee8
9089 || i.tm.base_opcode == 0xfaef0
9090 || i.tm.base_opcode == 0xfaef8))
e4e00185
AS
9091 {
9092 /* Encode lfence, mfence, and sfence as
9093 f0 83 04 24 00 lock addl $0x0, (%{re}sp). */
9094 offsetT val = 0x240483f0ULL;
9095 p = frag_more (5);
9096 md_number_to_chars (p, val, 5);
9097 return;
9098 }
9099
d022bddd
IT
9100 /* Some processors fail on LOCK prefix. This options makes
9101 assembler ignore LOCK prefix and serves as a workaround. */
9102 if (omit_lock_prefix)
9103 {
9104 if (i.tm.base_opcode == LOCK_PREFIX_OPCODE)
9105 return;
9106 i.prefix[LOCK_PREFIX] = 0;
9107 }
9108
e379e5f3
L
9109 if (branch)
9110 /* Skip if this is a branch. */
9111 ;
79d72f45 9112 else if (add_fused_jcc_padding_frag_p (&mf_cmp))
e379e5f3
L
9113 {
9114 /* Make room for padding. */
9115 frag_grow (MAX_FUSED_JCC_PADDING_SIZE);
9116 p = frag_more (0);
9117
9118 fragP = frag_now;
9119
9120 frag_var (rs_machine_dependent, MAX_FUSED_JCC_PADDING_SIZE, 0,
9121 ENCODE_RELAX_STATE (FUSED_JCC_PADDING, 0),
9122 NULL, 0, p);
9123
79d72f45 9124 fragP->tc_frag_data.mf_type = mf_cmp;
e379e5f3
L
9125 fragP->tc_frag_data.branch_type = align_branch_fused;
9126 fragP->tc_frag_data.max_bytes = MAX_FUSED_JCC_PADDING_SIZE;
9127 }
9128 else if (add_branch_prefix_frag_p ())
9129 {
9130 unsigned int max_prefix_size = align_branch_prefix_size;
9131
9132 /* Make room for padding. */
9133 frag_grow (max_prefix_size);
9134 p = frag_more (0);
9135
9136 fragP = frag_now;
9137
9138 frag_var (rs_machine_dependent, max_prefix_size, 0,
9139 ENCODE_RELAX_STATE (BRANCH_PREFIX, 0),
9140 NULL, 0, p);
9141
9142 fragP->tc_frag_data.max_bytes = max_prefix_size;
9143 }
9144
43234a1e
L
9145 /* Since the VEX/EVEX prefix contains the implicit prefix, we
9146 don't need the explicit prefix. */
9147 if (!i.tm.opcode_modifier.vex && !i.tm.opcode_modifier.evex)
bc4bd9ab 9148 {
c0f3af97 9149 switch (i.tm.opcode_length)
bc4bd9ab 9150 {
c0f3af97
L
9151 case 3:
9152 if (i.tm.base_opcode & 0xff000000)
4dffcebc 9153 {
c0f3af97 9154 prefix = (i.tm.base_opcode >> 24) & 0xff;
c3949f43
JB
9155 if (!i.tm.cpu_flags.bitfield.cpupadlock
9156 || prefix != REPE_PREFIX_OPCODE
9157 || (i.prefix[REP_PREFIX] != REPE_PREFIX_OPCODE))
9158 add_prefix (prefix);
c0f3af97
L
9159 }
9160 break;
9161 case 2:
9162 if ((i.tm.base_opcode & 0xff0000) != 0)
9163 {
9164 prefix = (i.tm.base_opcode >> 16) & 0xff;
c3949f43 9165 add_prefix (prefix);
4dffcebc 9166 }
c0f3af97
L
9167 break;
9168 case 1:
9169 break;
390c91cf
L
9170 case 0:
9171 /* Check for pseudo prefixes. */
9172 as_bad_where (insn_start_frag->fr_file,
9173 insn_start_frag->fr_line,
9174 _("pseudo prefix without instruction"));
9175 return;
c0f3af97
L
9176 default:
9177 abort ();
bc4bd9ab 9178 }
c0f3af97 9179
6d19a37a 9180#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
cf61b747
L
9181 /* For x32, add a dummy REX_OPCODE prefix for mov/add with
9182 R_X86_64_GOTTPOFF relocation so that linker can safely
14470f07
L
9183 perform IE->LE optimization. A dummy REX_OPCODE prefix
9184 is also needed for lea with R_X86_64_GOTPC32_TLSDESC
9185 relocation for GDesc -> IE/LE optimization. */
cf61b747
L
9186 if (x86_elf_abi == X86_64_X32_ABI
9187 && i.operands == 2
14470f07
L
9188 && (i.reloc[0] == BFD_RELOC_X86_64_GOTTPOFF
9189 || i.reloc[0] == BFD_RELOC_X86_64_GOTPC32_TLSDESC)
cf61b747
L
9190 && i.prefix[REX_PREFIX] == 0)
9191 add_prefix (REX_OPCODE);
6d19a37a 9192#endif
cf61b747 9193
c0f3af97
L
9194 /* The prefix bytes. */
9195 for (j = ARRAY_SIZE (i.prefix), q = i.prefix; j > 0; j--, q++)
9196 if (*q)
9197 FRAG_APPEND_1_CHAR (*q);
0f10071e 9198 }
ae5c1c7b 9199 else
c0f3af97
L
9200 {
9201 for (j = 0, q = i.prefix; j < ARRAY_SIZE (i.prefix); j++, q++)
9202 if (*q)
9203 switch (j)
9204 {
9205 case REX_PREFIX:
9206 /* REX byte is encoded in VEX prefix. */
9207 break;
9208 case SEG_PREFIX:
9209 case ADDR_PREFIX:
9210 FRAG_APPEND_1_CHAR (*q);
9211 break;
9212 default:
9213 /* There should be no other prefixes for instructions
9214 with VEX prefix. */
9215 abort ();
9216 }
9217
43234a1e
L
9218 /* For EVEX instructions i.vrex should become 0 after
9219 build_evex_prefix. For VEX instructions upper 16 registers
9220 aren't available, so VREX should be 0. */
9221 if (i.vrex)
9222 abort ();
c0f3af97
L
9223 /* Now the VEX prefix. */
9224 p = frag_more (i.vex.length);
9225 for (j = 0; j < i.vex.length; j++)
9226 p[j] = i.vex.bytes[j];
9227 }
252b5132 9228
29b0f896 9229 /* Now the opcode; be careful about word order here! */
4dffcebc 9230 if (i.tm.opcode_length == 1)
29b0f896
AM
9231 {
9232 FRAG_APPEND_1_CHAR (i.tm.base_opcode);
9233 }
9234 else
9235 {
4dffcebc 9236 switch (i.tm.opcode_length)
331d2d0d 9237 {
43234a1e
L
9238 case 4:
9239 p = frag_more (4);
9240 *p++ = (i.tm.base_opcode >> 24) & 0xff;
9241 *p++ = (i.tm.base_opcode >> 16) & 0xff;
9242 break;
4dffcebc 9243 case 3:
331d2d0d
L
9244 p = frag_more (3);
9245 *p++ = (i.tm.base_opcode >> 16) & 0xff;
4dffcebc
L
9246 break;
9247 case 2:
9248 p = frag_more (2);
9249 break;
9250 default:
9251 abort ();
9252 break;
331d2d0d 9253 }
0f10071e 9254
29b0f896
AM
9255 /* Put out high byte first: can't use md_number_to_chars! */
9256 *p++ = (i.tm.base_opcode >> 8) & 0xff;
9257 *p = i.tm.base_opcode & 0xff;
9258 }
3e73aa7c 9259
29b0f896 9260 /* Now the modrm byte and sib byte (if present). */
40fb9820 9261 if (i.tm.opcode_modifier.modrm)
29b0f896 9262 {
4a3523fa
L
9263 FRAG_APPEND_1_CHAR ((i.rm.regmem << 0
9264 | i.rm.reg << 3
9265 | i.rm.mode << 6));
29b0f896
AM
9266 /* If i.rm.regmem == ESP (4)
9267 && i.rm.mode != (Register mode)
9268 && not 16 bit
9269 ==> need second modrm byte. */
9270 if (i.rm.regmem == ESCAPE_TO_TWO_BYTE_ADDRESSING
9271 && i.rm.mode != 3
dc821c5f 9272 && !(i.base_reg && i.base_reg->reg_type.bitfield.word))
4a3523fa
L
9273 FRAG_APPEND_1_CHAR ((i.sib.base << 0
9274 | i.sib.index << 3
9275 | i.sib.scale << 6));
29b0f896 9276 }
3e73aa7c 9277
29b0f896 9278 if (i.disp_operands)
2bbd9c25 9279 output_disp (insn_start_frag, insn_start_off);
3e73aa7c 9280
29b0f896 9281 if (i.imm_operands)
2bbd9c25 9282 output_imm (insn_start_frag, insn_start_off);
9c33702b
JB
9283
9284 /*
9285 * frag_now_fix () returning plain abs_section_offset when we're in the
9286 * absolute section, and abs_section_offset not getting updated as data
9287 * gets added to the frag breaks the logic below.
9288 */
9289 if (now_seg != absolute_section)
9290 {
9291 j = encoding_length (insn_start_frag, insn_start_off, frag_more (0));
9292 if (j > 15)
9293 as_warn (_("instruction length of %u bytes exceeds the limit of 15"),
9294 j);
e379e5f3
L
9295 else if (fragP)
9296 {
9297 /* NB: Don't add prefix with GOTPC relocation since
9298 output_disp() above depends on the fixed encoding
9299 length. Can't add prefix with TLS relocation since
9300 it breaks TLS linker optimization. */
9301 unsigned int max = i.has_gotpc_tls_reloc ? 0 : 15 - j;
9302 /* Prefix count on the current instruction. */
9303 unsigned int count = i.vex.length;
9304 unsigned int k;
9305 for (k = 0; k < ARRAY_SIZE (i.prefix); k++)
9306 /* REX byte is encoded in VEX/EVEX prefix. */
9307 if (i.prefix[k] && (k != REX_PREFIX || !i.vex.length))
9308 count++;
9309
9310 /* Count prefixes for extended opcode maps. */
9311 if (!i.vex.length)
9312 switch (i.tm.opcode_length)
9313 {
9314 case 3:
9315 if (((i.tm.base_opcode >> 16) & 0xff) == 0xf)
9316 {
9317 count++;
9318 switch ((i.tm.base_opcode >> 8) & 0xff)
9319 {
9320 case 0x38:
9321 case 0x3a:
9322 count++;
9323 break;
9324 default:
9325 break;
9326 }
9327 }
9328 break;
9329 case 2:
9330 if (((i.tm.base_opcode >> 8) & 0xff) == 0xf)
9331 count++;
9332 break;
9333 case 1:
9334 break;
9335 default:
9336 abort ();
9337 }
9338
9339 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
9340 == BRANCH_PREFIX)
9341 {
9342 /* Set the maximum prefix size in BRANCH_PREFIX
9343 frag. */
9344 if (fragP->tc_frag_data.max_bytes > max)
9345 fragP->tc_frag_data.max_bytes = max;
9346 if (fragP->tc_frag_data.max_bytes > count)
9347 fragP->tc_frag_data.max_bytes -= count;
9348 else
9349 fragP->tc_frag_data.max_bytes = 0;
9350 }
9351 else
9352 {
9353 /* Remember the maximum prefix size in FUSED_JCC_PADDING
9354 frag. */
9355 unsigned int max_prefix_size;
9356 if (align_branch_prefix_size > max)
9357 max_prefix_size = max;
9358 else
9359 max_prefix_size = align_branch_prefix_size;
9360 if (max_prefix_size > count)
9361 fragP->tc_frag_data.max_prefix_length
9362 = max_prefix_size - count;
9363 }
9364
9365 /* Use existing segment prefix if possible. Use CS
9366 segment prefix in 64-bit mode. In 32-bit mode, use SS
9367 segment prefix with ESP/EBP base register and use DS
9368 segment prefix without ESP/EBP base register. */
9369 if (i.prefix[SEG_PREFIX])
9370 fragP->tc_frag_data.default_prefix = i.prefix[SEG_PREFIX];
9371 else if (flag_code == CODE_64BIT)
9372 fragP->tc_frag_data.default_prefix = CS_PREFIX_OPCODE;
9373 else if (i.base_reg
9374 && (i.base_reg->reg_num == 4
9375 || i.base_reg->reg_num == 5))
9376 fragP->tc_frag_data.default_prefix = SS_PREFIX_OPCODE;
9377 else
9378 fragP->tc_frag_data.default_prefix = DS_PREFIX_OPCODE;
9379 }
9c33702b 9380 }
29b0f896 9381 }
252b5132 9382
e379e5f3
L
9383 /* NB: Don't work with COND_JUMP86 without i386. */
9384 if (align_branch_power
9385 && now_seg != absolute_section
9386 && cpu_arch_flags.bitfield.cpui386)
9387 {
9388 /* Terminate each frag so that we can add prefix and check for
9389 fused jcc. */
9390 frag_wane (frag_now);
9391 frag_new (0);
9392 }
9393
29b0f896
AM
9394#ifdef DEBUG386
9395 if (flag_debug)
9396 {
7b81dfbb 9397 pi ("" /*line*/, &i);
29b0f896
AM
9398 }
9399#endif /* DEBUG386 */
9400}
252b5132 9401
e205caa7
L
9402/* Return the size of the displacement operand N. */
9403
9404static int
9405disp_size (unsigned int n)
9406{
9407 int size = 4;
43234a1e 9408
b5014f7a 9409 if (i.types[n].bitfield.disp64)
40fb9820
L
9410 size = 8;
9411 else if (i.types[n].bitfield.disp8)
9412 size = 1;
9413 else if (i.types[n].bitfield.disp16)
9414 size = 2;
e205caa7
L
9415 return size;
9416}
9417
9418/* Return the size of the immediate operand N. */
9419
9420static int
9421imm_size (unsigned int n)
9422{
9423 int size = 4;
40fb9820
L
9424 if (i.types[n].bitfield.imm64)
9425 size = 8;
9426 else if (i.types[n].bitfield.imm8 || i.types[n].bitfield.imm8s)
9427 size = 1;
9428 else if (i.types[n].bitfield.imm16)
9429 size = 2;
e205caa7
L
9430 return size;
9431}
9432
29b0f896 9433static void
64e74474 9434output_disp (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
9435{
9436 char *p;
9437 unsigned int n;
252b5132 9438
29b0f896
AM
9439 for (n = 0; n < i.operands; n++)
9440 {
b5014f7a 9441 if (operand_type_check (i.types[n], disp))
29b0f896
AM
9442 {
9443 if (i.op[n].disps->X_op == O_constant)
9444 {
e205caa7 9445 int size = disp_size (n);
43234a1e 9446 offsetT val = i.op[n].disps->X_add_number;
252b5132 9447
629cfaf1
JB
9448 val = offset_in_range (val >> (size == 1 ? i.memshift : 0),
9449 size);
29b0f896
AM
9450 p = frag_more (size);
9451 md_number_to_chars (p, val, size);
9452 }
9453 else
9454 {
f86103b7 9455 enum bfd_reloc_code_real reloc_type;
e205caa7 9456 int size = disp_size (n);
40fb9820 9457 int sign = i.types[n].bitfield.disp32s;
29b0f896 9458 int pcrel = (i.flags[n] & Operand_PCrel) != 0;
02a86693 9459 fixS *fixP;
29b0f896 9460
e205caa7 9461 /* We can't have 8 bit displacement here. */
9c2799c2 9462 gas_assert (!i.types[n].bitfield.disp8);
e205caa7 9463
29b0f896
AM
9464 /* The PC relative address is computed relative
9465 to the instruction boundary, so in case immediate
9466 fields follows, we need to adjust the value. */
9467 if (pcrel && i.imm_operands)
9468 {
29b0f896 9469 unsigned int n1;
e205caa7 9470 int sz = 0;
252b5132 9471
29b0f896 9472 for (n1 = 0; n1 < i.operands; n1++)
40fb9820 9473 if (operand_type_check (i.types[n1], imm))
252b5132 9474 {
e205caa7
L
9475 /* Only one immediate is allowed for PC
9476 relative address. */
9c2799c2 9477 gas_assert (sz == 0);
e205caa7
L
9478 sz = imm_size (n1);
9479 i.op[n].disps->X_add_number -= sz;
252b5132 9480 }
29b0f896 9481 /* We should find the immediate. */
9c2799c2 9482 gas_assert (sz != 0);
29b0f896 9483 }
520dc8e8 9484
29b0f896 9485 p = frag_more (size);
d258b828 9486 reloc_type = reloc (size, pcrel, sign, i.reloc[n]);
d6ab8113 9487 if (GOT_symbol
2bbd9c25 9488 && GOT_symbol == i.op[n].disps->X_add_symbol
d6ab8113 9489 && (((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
9490 || reloc_type == BFD_RELOC_X86_64_32S
9491 || (reloc_type == BFD_RELOC_64
9492 && object_64bit))
d6ab8113
JB
9493 && (i.op[n].disps->X_op == O_symbol
9494 || (i.op[n].disps->X_op == O_add
9495 && ((symbol_get_value_expression
9496 (i.op[n].disps->X_op_symbol)->X_op)
9497 == O_subtract))))
9498 || reloc_type == BFD_RELOC_32_PCREL))
2bbd9c25 9499 {
4fa24527 9500 if (!object_64bit)
7b81dfbb
AJ
9501 {
9502 reloc_type = BFD_RELOC_386_GOTPC;
e379e5f3 9503 i.has_gotpc_tls_reloc = TRUE;
d583596c
JB
9504 i.op[n].imms->X_add_number +=
9505 encoding_length (insn_start_frag, insn_start_off, p);
7b81dfbb
AJ
9506 }
9507 else if (reloc_type == BFD_RELOC_64)
9508 reloc_type = BFD_RELOC_X86_64_GOTPC64;
d6ab8113 9509 else
7b81dfbb
AJ
9510 /* Don't do the adjustment for x86-64, as there
9511 the pcrel addressing is relative to the _next_
9512 insn, and that is taken care of in other code. */
d6ab8113 9513 reloc_type = BFD_RELOC_X86_64_GOTPC32;
2bbd9c25 9514 }
e379e5f3
L
9515 else if (align_branch_power)
9516 {
9517 switch (reloc_type)
9518 {
9519 case BFD_RELOC_386_TLS_GD:
9520 case BFD_RELOC_386_TLS_LDM:
9521 case BFD_RELOC_386_TLS_IE:
9522 case BFD_RELOC_386_TLS_IE_32:
9523 case BFD_RELOC_386_TLS_GOTIE:
9524 case BFD_RELOC_386_TLS_GOTDESC:
9525 case BFD_RELOC_386_TLS_DESC_CALL:
9526 case BFD_RELOC_X86_64_TLSGD:
9527 case BFD_RELOC_X86_64_TLSLD:
9528 case BFD_RELOC_X86_64_GOTTPOFF:
9529 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
9530 case BFD_RELOC_X86_64_TLSDESC_CALL:
9531 i.has_gotpc_tls_reloc = TRUE;
9532 default:
9533 break;
9534 }
9535 }
02a86693
L
9536 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal,
9537 size, i.op[n].disps, pcrel,
9538 reloc_type);
9539 /* Check for "call/jmp *mem", "mov mem, %reg",
9540 "test %reg, mem" and "binop mem, %reg" where binop
9541 is one of adc, add, and, cmp, or, sbb, sub, xor
e60f4d3b
L
9542 instructions without data prefix. Always generate
9543 R_386_GOT32X for "sym*GOT" operand in 32-bit mode. */
9544 if (i.prefix[DATA_PREFIX] == 0
9545 && (generate_relax_relocations
9546 || (!object_64bit
9547 && i.rm.mode == 0
9548 && i.rm.regmem == 5))
0cb4071e
L
9549 && (i.rm.mode == 2
9550 || (i.rm.mode == 0 && i.rm.regmem == 5))
2ae4c703 9551 && !is_any_vex_encoding(&i.tm)
02a86693
L
9552 && ((i.operands == 1
9553 && i.tm.base_opcode == 0xff
9554 && (i.rm.reg == 2 || i.rm.reg == 4))
9555 || (i.operands == 2
9556 && (i.tm.base_opcode == 0x8b
9557 || i.tm.base_opcode == 0x85
2ae4c703 9558 || (i.tm.base_opcode & ~0x38) == 0x03))))
02a86693
L
9559 {
9560 if (object_64bit)
9561 {
9562 fixP->fx_tcbit = i.rex != 0;
9563 if (i.base_reg
e968fc9b 9564 && (i.base_reg->reg_num == RegIP))
02a86693
L
9565 fixP->fx_tcbit2 = 1;
9566 }
9567 else
9568 fixP->fx_tcbit2 = 1;
9569 }
29b0f896
AM
9570 }
9571 }
9572 }
9573}
252b5132 9574
29b0f896 9575static void
64e74474 9576output_imm (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
9577{
9578 char *p;
9579 unsigned int n;
252b5132 9580
29b0f896
AM
9581 for (n = 0; n < i.operands; n++)
9582 {
43234a1e
L
9583 /* Skip SAE/RC Imm operand in EVEX. They are already handled. */
9584 if (i.rounding && (int) n == i.rounding->operand)
9585 continue;
9586
40fb9820 9587 if (operand_type_check (i.types[n], imm))
29b0f896
AM
9588 {
9589 if (i.op[n].imms->X_op == O_constant)
9590 {
e205caa7 9591 int size = imm_size (n);
29b0f896 9592 offsetT val;
b4cac588 9593
29b0f896
AM
9594 val = offset_in_range (i.op[n].imms->X_add_number,
9595 size);
9596 p = frag_more (size);
9597 md_number_to_chars (p, val, size);
9598 }
9599 else
9600 {
9601 /* Not absolute_section.
9602 Need a 32-bit fixup (don't support 8bit
9603 non-absolute imms). Try to support other
9604 sizes ... */
f86103b7 9605 enum bfd_reloc_code_real reloc_type;
e205caa7
L
9606 int size = imm_size (n);
9607 int sign;
29b0f896 9608
40fb9820 9609 if (i.types[n].bitfield.imm32s
a7d61044 9610 && (i.suffix == QWORD_MNEM_SUFFIX
40fb9820 9611 || (!i.suffix && i.tm.opcode_modifier.no_lsuf)))
29b0f896 9612 sign = 1;
e205caa7
L
9613 else
9614 sign = 0;
520dc8e8 9615
29b0f896 9616 p = frag_more (size);
d258b828 9617 reloc_type = reloc (size, 0, sign, i.reloc[n]);
f86103b7 9618
2bbd9c25
JJ
9619 /* This is tough to explain. We end up with this one if we
9620 * have operands that look like
9621 * "_GLOBAL_OFFSET_TABLE_+[.-.L284]". The goal here is to
9622 * obtain the absolute address of the GOT, and it is strongly
9623 * preferable from a performance point of view to avoid using
9624 * a runtime relocation for this. The actual sequence of
9625 * instructions often look something like:
9626 *
9627 * call .L66
9628 * .L66:
9629 * popl %ebx
9630 * addl $_GLOBAL_OFFSET_TABLE_+[.-.L66],%ebx
9631 *
9632 * The call and pop essentially return the absolute address
9633 * of the label .L66 and store it in %ebx. The linker itself
9634 * will ultimately change the first operand of the addl so
9635 * that %ebx points to the GOT, but to keep things simple, the
9636 * .o file must have this operand set so that it generates not
9637 * the absolute address of .L66, but the absolute address of
9638 * itself. This allows the linker itself simply treat a GOTPC
9639 * relocation as asking for a pcrel offset to the GOT to be
9640 * added in, and the addend of the relocation is stored in the
9641 * operand field for the instruction itself.
9642 *
9643 * Our job here is to fix the operand so that it would add
9644 * the correct offset so that %ebx would point to itself. The
9645 * thing that is tricky is that .-.L66 will point to the
9646 * beginning of the instruction, so we need to further modify
9647 * the operand so that it will point to itself. There are
9648 * other cases where you have something like:
9649 *
9650 * .long $_GLOBAL_OFFSET_TABLE_+[.-.L66]
9651 *
9652 * and here no correction would be required. Internally in
9653 * the assembler we treat operands of this form as not being
9654 * pcrel since the '.' is explicitly mentioned, and I wonder
9655 * whether it would simplify matters to do it this way. Who
9656 * knows. In earlier versions of the PIC patches, the
9657 * pcrel_adjust field was used to store the correction, but
9658 * since the expression is not pcrel, I felt it would be
9659 * confusing to do it this way. */
9660
d6ab8113 9661 if ((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
9662 || reloc_type == BFD_RELOC_X86_64_32S
9663 || reloc_type == BFD_RELOC_64)
29b0f896
AM
9664 && GOT_symbol
9665 && GOT_symbol == i.op[n].imms->X_add_symbol
9666 && (i.op[n].imms->X_op == O_symbol
9667 || (i.op[n].imms->X_op == O_add
9668 && ((symbol_get_value_expression
9669 (i.op[n].imms->X_op_symbol)->X_op)
9670 == O_subtract))))
9671 {
4fa24527 9672 if (!object_64bit)
d6ab8113 9673 reloc_type = BFD_RELOC_386_GOTPC;
7b81dfbb 9674 else if (size == 4)
d6ab8113 9675 reloc_type = BFD_RELOC_X86_64_GOTPC32;
7b81dfbb
AJ
9676 else if (size == 8)
9677 reloc_type = BFD_RELOC_X86_64_GOTPC64;
e379e5f3 9678 i.has_gotpc_tls_reloc = TRUE;
d583596c
JB
9679 i.op[n].imms->X_add_number +=
9680 encoding_length (insn_start_frag, insn_start_off, p);
29b0f896 9681 }
29b0f896
AM
9682 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
9683 i.op[n].imms, 0, reloc_type);
9684 }
9685 }
9686 }
252b5132
RH
9687}
9688\f
d182319b
JB
9689/* x86_cons_fix_new is called via the expression parsing code when a
9690 reloc is needed. We use this hook to get the correct .got reloc. */
d182319b
JB
9691static int cons_sign = -1;
9692
9693void
e3bb37b5 9694x86_cons_fix_new (fragS *frag, unsigned int off, unsigned int len,
62ebcb5c 9695 expressionS *exp, bfd_reloc_code_real_type r)
d182319b 9696{
d258b828 9697 r = reloc (len, 0, cons_sign, r);
d182319b
JB
9698
9699#ifdef TE_PE
9700 if (exp->X_op == O_secrel)
9701 {
9702 exp->X_op = O_symbol;
9703 r = BFD_RELOC_32_SECREL;
9704 }
9705#endif
9706
9707 fix_new_exp (frag, off, len, exp, 0, r);
9708}
9709
357d1bd8
L
9710/* Export the ABI address size for use by TC_ADDRESS_BYTES for the
9711 purpose of the `.dc.a' internal pseudo-op. */
9712
9713int
9714x86_address_bytes (void)
9715{
9716 if ((stdoutput->arch_info->mach & bfd_mach_x64_32))
9717 return 4;
9718 return stdoutput->arch_info->bits_per_address / 8;
9719}
9720
d382c579
TG
9721#if !(defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined (OBJ_MACH_O)) \
9722 || defined (LEX_AT)
d258b828 9723# define lex_got(reloc, adjust, types) NULL
718ddfc0 9724#else
f3c180ae
AM
9725/* Parse operands of the form
9726 <symbol>@GOTOFF+<nnn>
9727 and similar .plt or .got references.
9728
9729 If we find one, set up the correct relocation in RELOC and copy the
9730 input string, minus the `@GOTOFF' into a malloc'd buffer for
9731 parsing by the calling routine. Return this buffer, and if ADJUST
9732 is non-null set it to the length of the string we removed from the
9733 input line. Otherwise return NULL. */
9734static char *
91d6fa6a 9735lex_got (enum bfd_reloc_code_real *rel,
64e74474 9736 int *adjust,
d258b828 9737 i386_operand_type *types)
f3c180ae 9738{
7b81dfbb
AJ
9739 /* Some of the relocations depend on the size of what field is to
9740 be relocated. But in our callers i386_immediate and i386_displacement
9741 we don't yet know the operand size (this will be set by insn
9742 matching). Hence we record the word32 relocation here,
9743 and adjust the reloc according to the real size in reloc(). */
f3c180ae
AM
9744 static const struct {
9745 const char *str;
cff8d58a 9746 int len;
4fa24527 9747 const enum bfd_reloc_code_real rel[2];
40fb9820 9748 const i386_operand_type types64;
f3c180ae 9749 } gotrel[] = {
8ce3d284 9750#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
9751 { STRING_COMMA_LEN ("SIZE"), { BFD_RELOC_SIZE32,
9752 BFD_RELOC_SIZE32 },
9753 OPERAND_TYPE_IMM32_64 },
8ce3d284 9754#endif
cff8d58a
L
9755 { STRING_COMMA_LEN ("PLTOFF"), { _dummy_first_bfd_reloc_code_real,
9756 BFD_RELOC_X86_64_PLTOFF64 },
40fb9820 9757 OPERAND_TYPE_IMM64 },
cff8d58a
L
9758 { STRING_COMMA_LEN ("PLT"), { BFD_RELOC_386_PLT32,
9759 BFD_RELOC_X86_64_PLT32 },
40fb9820 9760 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9761 { STRING_COMMA_LEN ("GOTPLT"), { _dummy_first_bfd_reloc_code_real,
9762 BFD_RELOC_X86_64_GOTPLT64 },
40fb9820 9763 OPERAND_TYPE_IMM64_DISP64 },
cff8d58a
L
9764 { STRING_COMMA_LEN ("GOTOFF"), { BFD_RELOC_386_GOTOFF,
9765 BFD_RELOC_X86_64_GOTOFF64 },
40fb9820 9766 OPERAND_TYPE_IMM64_DISP64 },
cff8d58a
L
9767 { STRING_COMMA_LEN ("GOTPCREL"), { _dummy_first_bfd_reloc_code_real,
9768 BFD_RELOC_X86_64_GOTPCREL },
40fb9820 9769 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9770 { STRING_COMMA_LEN ("TLSGD"), { BFD_RELOC_386_TLS_GD,
9771 BFD_RELOC_X86_64_TLSGD },
40fb9820 9772 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9773 { STRING_COMMA_LEN ("TLSLDM"), { BFD_RELOC_386_TLS_LDM,
9774 _dummy_first_bfd_reloc_code_real },
40fb9820 9775 OPERAND_TYPE_NONE },
cff8d58a
L
9776 { STRING_COMMA_LEN ("TLSLD"), { _dummy_first_bfd_reloc_code_real,
9777 BFD_RELOC_X86_64_TLSLD },
40fb9820 9778 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9779 { STRING_COMMA_LEN ("GOTTPOFF"), { BFD_RELOC_386_TLS_IE_32,
9780 BFD_RELOC_X86_64_GOTTPOFF },
40fb9820 9781 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9782 { STRING_COMMA_LEN ("TPOFF"), { BFD_RELOC_386_TLS_LE_32,
9783 BFD_RELOC_X86_64_TPOFF32 },
40fb9820 9784 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
cff8d58a
L
9785 { STRING_COMMA_LEN ("NTPOFF"), { BFD_RELOC_386_TLS_LE,
9786 _dummy_first_bfd_reloc_code_real },
40fb9820 9787 OPERAND_TYPE_NONE },
cff8d58a
L
9788 { STRING_COMMA_LEN ("DTPOFF"), { BFD_RELOC_386_TLS_LDO_32,
9789 BFD_RELOC_X86_64_DTPOFF32 },
40fb9820 9790 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
cff8d58a
L
9791 { STRING_COMMA_LEN ("GOTNTPOFF"),{ BFD_RELOC_386_TLS_GOTIE,
9792 _dummy_first_bfd_reloc_code_real },
40fb9820 9793 OPERAND_TYPE_NONE },
cff8d58a
L
9794 { STRING_COMMA_LEN ("INDNTPOFF"),{ BFD_RELOC_386_TLS_IE,
9795 _dummy_first_bfd_reloc_code_real },
40fb9820 9796 OPERAND_TYPE_NONE },
cff8d58a
L
9797 { STRING_COMMA_LEN ("GOT"), { BFD_RELOC_386_GOT32,
9798 BFD_RELOC_X86_64_GOT32 },
40fb9820 9799 OPERAND_TYPE_IMM32_32S_64_DISP32 },
cff8d58a
L
9800 { STRING_COMMA_LEN ("TLSDESC"), { BFD_RELOC_386_TLS_GOTDESC,
9801 BFD_RELOC_X86_64_GOTPC32_TLSDESC },
40fb9820 9802 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9803 { STRING_COMMA_LEN ("TLSCALL"), { BFD_RELOC_386_TLS_DESC_CALL,
9804 BFD_RELOC_X86_64_TLSDESC_CALL },
40fb9820 9805 OPERAND_TYPE_IMM32_32S_DISP32 },
f3c180ae
AM
9806 };
9807 char *cp;
9808 unsigned int j;
9809
d382c579 9810#if defined (OBJ_MAYBE_ELF)
718ddfc0
JB
9811 if (!IS_ELF)
9812 return NULL;
d382c579 9813#endif
718ddfc0 9814
f3c180ae 9815 for (cp = input_line_pointer; *cp != '@'; cp++)
67c11a9b 9816 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
f3c180ae
AM
9817 return NULL;
9818
47465058 9819 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
f3c180ae 9820 {
cff8d58a 9821 int len = gotrel[j].len;
28f81592 9822 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
f3c180ae 9823 {
4fa24527 9824 if (gotrel[j].rel[object_64bit] != 0)
f3c180ae 9825 {
28f81592
AM
9826 int first, second;
9827 char *tmpbuf, *past_reloc;
f3c180ae 9828
91d6fa6a 9829 *rel = gotrel[j].rel[object_64bit];
f3c180ae 9830
3956db08
JB
9831 if (types)
9832 {
9833 if (flag_code != CODE_64BIT)
40fb9820
L
9834 {
9835 types->bitfield.imm32 = 1;
9836 types->bitfield.disp32 = 1;
9837 }
3956db08
JB
9838 else
9839 *types = gotrel[j].types64;
9840 }
9841
8fd4256d 9842 if (j != 0 && GOT_symbol == NULL)
f3c180ae
AM
9843 GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
9844
28f81592 9845 /* The length of the first part of our input line. */
f3c180ae 9846 first = cp - input_line_pointer;
28f81592
AM
9847
9848 /* The second part goes from after the reloc token until
67c11a9b 9849 (and including) an end_of_line char or comma. */
28f81592 9850 past_reloc = cp + 1 + len;
67c11a9b
AM
9851 cp = past_reloc;
9852 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
9853 ++cp;
9854 second = cp + 1 - past_reloc;
28f81592
AM
9855
9856 /* Allocate and copy string. The trailing NUL shouldn't
9857 be necessary, but be safe. */
add39d23 9858 tmpbuf = XNEWVEC (char, first + second + 2);
f3c180ae 9859 memcpy (tmpbuf, input_line_pointer, first);
0787a12d
AM
9860 if (second != 0 && *past_reloc != ' ')
9861 /* Replace the relocation token with ' ', so that
9862 errors like foo@GOTOFF1 will be detected. */
9863 tmpbuf[first++] = ' ';
af89796a
L
9864 else
9865 /* Increment length by 1 if the relocation token is
9866 removed. */
9867 len++;
9868 if (adjust)
9869 *adjust = len;
0787a12d
AM
9870 memcpy (tmpbuf + first, past_reloc, second);
9871 tmpbuf[first + second] = '\0';
f3c180ae
AM
9872 return tmpbuf;
9873 }
9874
4fa24527
JB
9875 as_bad (_("@%s reloc is not supported with %d-bit output format"),
9876 gotrel[j].str, 1 << (5 + object_64bit));
f3c180ae
AM
9877 return NULL;
9878 }
9879 }
9880
9881 /* Might be a symbol version string. Don't as_bad here. */
9882 return NULL;
9883}
4e4f7c87 9884#endif
f3c180ae 9885
a988325c
NC
9886#ifdef TE_PE
9887#ifdef lex_got
9888#undef lex_got
9889#endif
9890/* Parse operands of the form
9891 <symbol>@SECREL32+<nnn>
9892
9893 If we find one, set up the correct relocation in RELOC and copy the
9894 input string, minus the `@SECREL32' into a malloc'd buffer for
9895 parsing by the calling routine. Return this buffer, and if ADJUST
9896 is non-null set it to the length of the string we removed from the
34bca508
L
9897 input line. Otherwise return NULL.
9898
a988325c
NC
9899 This function is copied from the ELF version above adjusted for PE targets. */
9900
9901static char *
9902lex_got (enum bfd_reloc_code_real *rel ATTRIBUTE_UNUSED,
9903 int *adjust ATTRIBUTE_UNUSED,
d258b828 9904 i386_operand_type *types)
a988325c
NC
9905{
9906 static const struct
9907 {
9908 const char *str;
9909 int len;
9910 const enum bfd_reloc_code_real rel[2];
9911 const i386_operand_type types64;
9912 }
9913 gotrel[] =
9914 {
9915 { STRING_COMMA_LEN ("SECREL32"), { BFD_RELOC_32_SECREL,
9916 BFD_RELOC_32_SECREL },
9917 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
9918 };
9919
9920 char *cp;
9921 unsigned j;
9922
9923 for (cp = input_line_pointer; *cp != '@'; cp++)
9924 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
9925 return NULL;
9926
9927 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
9928 {
9929 int len = gotrel[j].len;
9930
9931 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
9932 {
9933 if (gotrel[j].rel[object_64bit] != 0)
9934 {
9935 int first, second;
9936 char *tmpbuf, *past_reloc;
9937
9938 *rel = gotrel[j].rel[object_64bit];
9939 if (adjust)
9940 *adjust = len;
9941
9942 if (types)
9943 {
9944 if (flag_code != CODE_64BIT)
9945 {
9946 types->bitfield.imm32 = 1;
9947 types->bitfield.disp32 = 1;
9948 }
9949 else
9950 *types = gotrel[j].types64;
9951 }
9952
9953 /* The length of the first part of our input line. */
9954 first = cp - input_line_pointer;
9955
9956 /* The second part goes from after the reloc token until
9957 (and including) an end_of_line char or comma. */
9958 past_reloc = cp + 1 + len;
9959 cp = past_reloc;
9960 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
9961 ++cp;
9962 second = cp + 1 - past_reloc;
9963
9964 /* Allocate and copy string. The trailing NUL shouldn't
9965 be necessary, but be safe. */
add39d23 9966 tmpbuf = XNEWVEC (char, first + second + 2);
a988325c
NC
9967 memcpy (tmpbuf, input_line_pointer, first);
9968 if (second != 0 && *past_reloc != ' ')
9969 /* Replace the relocation token with ' ', so that
9970 errors like foo@SECLREL321 will be detected. */
9971 tmpbuf[first++] = ' ';
9972 memcpy (tmpbuf + first, past_reloc, second);
9973 tmpbuf[first + second] = '\0';
9974 return tmpbuf;
9975 }
9976
9977 as_bad (_("@%s reloc is not supported with %d-bit output format"),
9978 gotrel[j].str, 1 << (5 + object_64bit));
9979 return NULL;
9980 }
9981 }
9982
9983 /* Might be a symbol version string. Don't as_bad here. */
9984 return NULL;
9985}
9986
9987#endif /* TE_PE */
9988
62ebcb5c 9989bfd_reloc_code_real_type
e3bb37b5 9990x86_cons (expressionS *exp, int size)
f3c180ae 9991{
62ebcb5c
AM
9992 bfd_reloc_code_real_type got_reloc = NO_RELOC;
9993
ee86248c
JB
9994 intel_syntax = -intel_syntax;
9995
3c7b9c2c 9996 exp->X_md = 0;
4fa24527 9997 if (size == 4 || (object_64bit && size == 8))
f3c180ae
AM
9998 {
9999 /* Handle @GOTOFF and the like in an expression. */
10000 char *save;
10001 char *gotfree_input_line;
4a57f2cf 10002 int adjust = 0;
f3c180ae
AM
10003
10004 save = input_line_pointer;
d258b828 10005 gotfree_input_line = lex_got (&got_reloc, &adjust, NULL);
f3c180ae
AM
10006 if (gotfree_input_line)
10007 input_line_pointer = gotfree_input_line;
10008
10009 expression (exp);
10010
10011 if (gotfree_input_line)
10012 {
10013 /* expression () has merrily parsed up to the end of line,
10014 or a comma - in the wrong buffer. Transfer how far
10015 input_line_pointer has moved to the right buffer. */
10016 input_line_pointer = (save
10017 + (input_line_pointer - gotfree_input_line)
10018 + adjust);
10019 free (gotfree_input_line);
3992d3b7
AM
10020 if (exp->X_op == O_constant
10021 || exp->X_op == O_absent
10022 || exp->X_op == O_illegal
0398aac5 10023 || exp->X_op == O_register
3992d3b7
AM
10024 || exp->X_op == O_big)
10025 {
10026 char c = *input_line_pointer;
10027 *input_line_pointer = 0;
10028 as_bad (_("missing or invalid expression `%s'"), save);
10029 *input_line_pointer = c;
10030 }
b9519cfe
L
10031 else if ((got_reloc == BFD_RELOC_386_PLT32
10032 || got_reloc == BFD_RELOC_X86_64_PLT32)
10033 && exp->X_op != O_symbol)
10034 {
10035 char c = *input_line_pointer;
10036 *input_line_pointer = 0;
10037 as_bad (_("invalid PLT expression `%s'"), save);
10038 *input_line_pointer = c;
10039 }
f3c180ae
AM
10040 }
10041 }
10042 else
10043 expression (exp);
ee86248c
JB
10044
10045 intel_syntax = -intel_syntax;
10046
10047 if (intel_syntax)
10048 i386_intel_simplify (exp);
62ebcb5c
AM
10049
10050 return got_reloc;
f3c180ae 10051}
f3c180ae 10052
9f32dd5b
L
10053static void
10054signed_cons (int size)
6482c264 10055{
d182319b
JB
10056 if (flag_code == CODE_64BIT)
10057 cons_sign = 1;
10058 cons (size);
10059 cons_sign = -1;
6482c264
NC
10060}
10061
d182319b 10062#ifdef TE_PE
6482c264 10063static void
7016a5d5 10064pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
6482c264
NC
10065{
10066 expressionS exp;
10067
10068 do
10069 {
10070 expression (&exp);
10071 if (exp.X_op == O_symbol)
10072 exp.X_op = O_secrel;
10073
10074 emit_expr (&exp, 4);
10075 }
10076 while (*input_line_pointer++ == ',');
10077
10078 input_line_pointer--;
10079 demand_empty_rest_of_line ();
10080}
6482c264
NC
10081#endif
10082
43234a1e
L
10083/* Handle Vector operations. */
10084
10085static char *
10086check_VecOperations (char *op_string, char *op_end)
10087{
10088 const reg_entry *mask;
10089 const char *saved;
10090 char *end_op;
10091
10092 while (*op_string
10093 && (op_end == NULL || op_string < op_end))
10094 {
10095 saved = op_string;
10096 if (*op_string == '{')
10097 {
10098 op_string++;
10099
10100 /* Check broadcasts. */
10101 if (strncmp (op_string, "1to", 3) == 0)
10102 {
10103 int bcst_type;
10104
10105 if (i.broadcast)
10106 goto duplicated_vec_op;
10107
10108 op_string += 3;
10109 if (*op_string == '8')
8e6e0792 10110 bcst_type = 8;
b28d1bda 10111 else if (*op_string == '4')
8e6e0792 10112 bcst_type = 4;
b28d1bda 10113 else if (*op_string == '2')
8e6e0792 10114 bcst_type = 2;
43234a1e
L
10115 else if (*op_string == '1'
10116 && *(op_string+1) == '6')
10117 {
8e6e0792 10118 bcst_type = 16;
43234a1e
L
10119 op_string++;
10120 }
10121 else
10122 {
10123 as_bad (_("Unsupported broadcast: `%s'"), saved);
10124 return NULL;
10125 }
10126 op_string++;
10127
10128 broadcast_op.type = bcst_type;
10129 broadcast_op.operand = this_operand;
1f75763a 10130 broadcast_op.bytes = 0;
43234a1e
L
10131 i.broadcast = &broadcast_op;
10132 }
10133 /* Check masking operation. */
10134 else if ((mask = parse_register (op_string, &end_op)) != NULL)
10135 {
10136 /* k0 can't be used for write mask. */
f74a6307 10137 if (mask->reg_type.bitfield.class != RegMask || !mask->reg_num)
43234a1e 10138 {
6d2cd6b2
JB
10139 as_bad (_("`%s%s' can't be used for write mask"),
10140 register_prefix, mask->reg_name);
43234a1e
L
10141 return NULL;
10142 }
10143
10144 if (!i.mask)
10145 {
10146 mask_op.mask = mask;
10147 mask_op.zeroing = 0;
10148 mask_op.operand = this_operand;
10149 i.mask = &mask_op;
10150 }
10151 else
10152 {
10153 if (i.mask->mask)
10154 goto duplicated_vec_op;
10155
10156 i.mask->mask = mask;
10157
10158 /* Only "{z}" is allowed here. No need to check
10159 zeroing mask explicitly. */
10160 if (i.mask->operand != this_operand)
10161 {
10162 as_bad (_("invalid write mask `%s'"), saved);
10163 return NULL;
10164 }
10165 }
10166
10167 op_string = end_op;
10168 }
10169 /* Check zeroing-flag for masking operation. */
10170 else if (*op_string == 'z')
10171 {
10172 if (!i.mask)
10173 {
10174 mask_op.mask = NULL;
10175 mask_op.zeroing = 1;
10176 mask_op.operand = this_operand;
10177 i.mask = &mask_op;
10178 }
10179 else
10180 {
10181 if (i.mask->zeroing)
10182 {
10183 duplicated_vec_op:
10184 as_bad (_("duplicated `%s'"), saved);
10185 return NULL;
10186 }
10187
10188 i.mask->zeroing = 1;
10189
10190 /* Only "{%k}" is allowed here. No need to check mask
10191 register explicitly. */
10192 if (i.mask->operand != this_operand)
10193 {
10194 as_bad (_("invalid zeroing-masking `%s'"),
10195 saved);
10196 return NULL;
10197 }
10198 }
10199
10200 op_string++;
10201 }
10202 else
10203 goto unknown_vec_op;
10204
10205 if (*op_string != '}')
10206 {
10207 as_bad (_("missing `}' in `%s'"), saved);
10208 return NULL;
10209 }
10210 op_string++;
0ba3a731
L
10211
10212 /* Strip whitespace since the addition of pseudo prefixes
10213 changed how the scrubber treats '{'. */
10214 if (is_space_char (*op_string))
10215 ++op_string;
10216
43234a1e
L
10217 continue;
10218 }
10219 unknown_vec_op:
10220 /* We don't know this one. */
10221 as_bad (_("unknown vector operation: `%s'"), saved);
10222 return NULL;
10223 }
10224
6d2cd6b2
JB
10225 if (i.mask && i.mask->zeroing && !i.mask->mask)
10226 {
10227 as_bad (_("zeroing-masking only allowed with write mask"));
10228 return NULL;
10229 }
10230
43234a1e
L
10231 return op_string;
10232}
10233
252b5132 10234static int
70e41ade 10235i386_immediate (char *imm_start)
252b5132
RH
10236{
10237 char *save_input_line_pointer;
f3c180ae 10238 char *gotfree_input_line;
252b5132 10239 segT exp_seg = 0;
47926f60 10240 expressionS *exp;
40fb9820
L
10241 i386_operand_type types;
10242
0dfbf9d7 10243 operand_type_set (&types, ~0);
252b5132
RH
10244
10245 if (i.imm_operands == MAX_IMMEDIATE_OPERANDS)
10246 {
31b2323c
L
10247 as_bad (_("at most %d immediate operands are allowed"),
10248 MAX_IMMEDIATE_OPERANDS);
252b5132
RH
10249 return 0;
10250 }
10251
10252 exp = &im_expressions[i.imm_operands++];
520dc8e8 10253 i.op[this_operand].imms = exp;
252b5132
RH
10254
10255 if (is_space_char (*imm_start))
10256 ++imm_start;
10257
10258 save_input_line_pointer = input_line_pointer;
10259 input_line_pointer = imm_start;
10260
d258b828 10261 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
10262 if (gotfree_input_line)
10263 input_line_pointer = gotfree_input_line;
252b5132
RH
10264
10265 exp_seg = expression (exp);
10266
83183c0c 10267 SKIP_WHITESPACE ();
43234a1e
L
10268
10269 /* Handle vector operations. */
10270 if (*input_line_pointer == '{')
10271 {
10272 input_line_pointer = check_VecOperations (input_line_pointer,
10273 NULL);
10274 if (input_line_pointer == NULL)
10275 return 0;
10276 }
10277
252b5132 10278 if (*input_line_pointer)
f3c180ae 10279 as_bad (_("junk `%s' after expression"), input_line_pointer);
252b5132
RH
10280
10281 input_line_pointer = save_input_line_pointer;
f3c180ae 10282 if (gotfree_input_line)
ee86248c
JB
10283 {
10284 free (gotfree_input_line);
10285
10286 if (exp->X_op == O_constant || exp->X_op == O_register)
10287 exp->X_op = O_illegal;
10288 }
10289
10290 return i386_finalize_immediate (exp_seg, exp, types, imm_start);
10291}
252b5132 10292
ee86248c
JB
10293static int
10294i386_finalize_immediate (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
10295 i386_operand_type types, const char *imm_start)
10296{
10297 if (exp->X_op == O_absent || exp->X_op == O_illegal || exp->X_op == O_big)
252b5132 10298 {
313c53d1
L
10299 if (imm_start)
10300 as_bad (_("missing or invalid immediate expression `%s'"),
10301 imm_start);
3992d3b7 10302 return 0;
252b5132 10303 }
3e73aa7c 10304 else if (exp->X_op == O_constant)
252b5132 10305 {
47926f60 10306 /* Size it properly later. */
40fb9820 10307 i.types[this_operand].bitfield.imm64 = 1;
13f864ae
L
10308 /* If not 64bit, sign extend val. */
10309 if (flag_code != CODE_64BIT
4eed87de
AM
10310 && (exp->X_add_number & ~(((addressT) 2 << 31) - 1)) == 0)
10311 exp->X_add_number
10312 = (exp->X_add_number ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
252b5132 10313 }
4c63da97 10314#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
f86103b7 10315 else if (OUTPUT_FLAVOR == bfd_target_aout_flavour
31312f95 10316 && exp_seg != absolute_section
47926f60 10317 && exp_seg != text_section
24eab124
AM
10318 && exp_seg != data_section
10319 && exp_seg != bss_section
10320 && exp_seg != undefined_section
f86103b7 10321 && !bfd_is_com_section (exp_seg))
252b5132 10322 {
d0b47220 10323 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
252b5132
RH
10324 return 0;
10325 }
10326#endif
a841bdf5 10327 else if (!intel_syntax && exp_seg == reg_section)
bb8f5920 10328 {
313c53d1
L
10329 if (imm_start)
10330 as_bad (_("illegal immediate register operand %s"), imm_start);
bb8f5920
L
10331 return 0;
10332 }
252b5132
RH
10333 else
10334 {
10335 /* This is an address. The size of the address will be
24eab124 10336 determined later, depending on destination register,
3e73aa7c 10337 suffix, or the default for the section. */
40fb9820
L
10338 i.types[this_operand].bitfield.imm8 = 1;
10339 i.types[this_operand].bitfield.imm16 = 1;
10340 i.types[this_operand].bitfield.imm32 = 1;
10341 i.types[this_operand].bitfield.imm32s = 1;
10342 i.types[this_operand].bitfield.imm64 = 1;
c6fb90c8
L
10343 i.types[this_operand] = operand_type_and (i.types[this_operand],
10344 types);
252b5132
RH
10345 }
10346
10347 return 1;
10348}
10349
551c1ca1 10350static char *
e3bb37b5 10351i386_scale (char *scale)
252b5132 10352{
551c1ca1
AM
10353 offsetT val;
10354 char *save = input_line_pointer;
252b5132 10355
551c1ca1
AM
10356 input_line_pointer = scale;
10357 val = get_absolute_expression ();
10358
10359 switch (val)
252b5132 10360 {
551c1ca1 10361 case 1:
252b5132
RH
10362 i.log2_scale_factor = 0;
10363 break;
551c1ca1 10364 case 2:
252b5132
RH
10365 i.log2_scale_factor = 1;
10366 break;
551c1ca1 10367 case 4:
252b5132
RH
10368 i.log2_scale_factor = 2;
10369 break;
551c1ca1 10370 case 8:
252b5132
RH
10371 i.log2_scale_factor = 3;
10372 break;
10373 default:
a724f0f4
JB
10374 {
10375 char sep = *input_line_pointer;
10376
10377 *input_line_pointer = '\0';
10378 as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
10379 scale);
10380 *input_line_pointer = sep;
10381 input_line_pointer = save;
10382 return NULL;
10383 }
252b5132 10384 }
29b0f896 10385 if (i.log2_scale_factor != 0 && i.index_reg == 0)
252b5132
RH
10386 {
10387 as_warn (_("scale factor of %d without an index register"),
24eab124 10388 1 << i.log2_scale_factor);
252b5132 10389 i.log2_scale_factor = 0;
252b5132 10390 }
551c1ca1
AM
10391 scale = input_line_pointer;
10392 input_line_pointer = save;
10393 return scale;
252b5132
RH
10394}
10395
252b5132 10396static int
e3bb37b5 10397i386_displacement (char *disp_start, char *disp_end)
252b5132 10398{
29b0f896 10399 expressionS *exp;
252b5132
RH
10400 segT exp_seg = 0;
10401 char *save_input_line_pointer;
f3c180ae 10402 char *gotfree_input_line;
40fb9820
L
10403 int override;
10404 i386_operand_type bigdisp, types = anydisp;
3992d3b7 10405 int ret;
252b5132 10406
31b2323c
L
10407 if (i.disp_operands == MAX_MEMORY_OPERANDS)
10408 {
10409 as_bad (_("at most %d displacement operands are allowed"),
10410 MAX_MEMORY_OPERANDS);
10411 return 0;
10412 }
10413
0dfbf9d7 10414 operand_type_set (&bigdisp, 0);
6f2f06be 10415 if (i.jumpabsolute
48bcea9f 10416 || i.types[this_operand].bitfield.baseindex
0cfa3eb3
JB
10417 || (current_templates->start->opcode_modifier.jump != JUMP
10418 && current_templates->start->opcode_modifier.jump != JUMP_DWORD))
e05278af 10419 {
48bcea9f 10420 i386_addressing_mode ();
e05278af 10421 override = (i.prefix[ADDR_PREFIX] != 0);
40fb9820
L
10422 if (flag_code == CODE_64BIT)
10423 {
10424 if (!override)
10425 {
10426 bigdisp.bitfield.disp32s = 1;
10427 bigdisp.bitfield.disp64 = 1;
10428 }
48bcea9f
JB
10429 else
10430 bigdisp.bitfield.disp32 = 1;
40fb9820
L
10431 }
10432 else if ((flag_code == CODE_16BIT) ^ override)
40fb9820 10433 bigdisp.bitfield.disp16 = 1;
48bcea9f
JB
10434 else
10435 bigdisp.bitfield.disp32 = 1;
e05278af
JB
10436 }
10437 else
10438 {
376cd056
JB
10439 /* For PC-relative branches, the width of the displacement may be
10440 dependent upon data size, but is never dependent upon address size.
10441 Also make sure to not unintentionally match against a non-PC-relative
10442 branch template. */
10443 static templates aux_templates;
10444 const insn_template *t = current_templates->start;
10445 bfd_boolean has_intel64 = FALSE;
10446
10447 aux_templates.start = t;
10448 while (++t < current_templates->end)
10449 {
10450 if (t->opcode_modifier.jump
10451 != current_templates->start->opcode_modifier.jump)
10452 break;
4b5aaf5f 10453 if ((t->opcode_modifier.isa64 >= INTEL64))
376cd056
JB
10454 has_intel64 = TRUE;
10455 }
10456 if (t < current_templates->end)
10457 {
10458 aux_templates.end = t;
10459 current_templates = &aux_templates;
10460 }
10461
e05278af 10462 override = (i.prefix[DATA_PREFIX] != 0);
40fb9820
L
10463 if (flag_code == CODE_64BIT)
10464 {
376cd056
JB
10465 if ((override || i.suffix == WORD_MNEM_SUFFIX)
10466 && (!intel64 || !has_intel64))
40fb9820
L
10467 bigdisp.bitfield.disp16 = 1;
10468 else
48bcea9f 10469 bigdisp.bitfield.disp32s = 1;
40fb9820
L
10470 }
10471 else
e05278af
JB
10472 {
10473 if (!override)
10474 override = (i.suffix == (flag_code != CODE_16BIT
10475 ? WORD_MNEM_SUFFIX
10476 : LONG_MNEM_SUFFIX));
40fb9820
L
10477 bigdisp.bitfield.disp32 = 1;
10478 if ((flag_code == CODE_16BIT) ^ override)
10479 {
10480 bigdisp.bitfield.disp32 = 0;
10481 bigdisp.bitfield.disp16 = 1;
10482 }
e05278af 10483 }
e05278af 10484 }
c6fb90c8
L
10485 i.types[this_operand] = operand_type_or (i.types[this_operand],
10486 bigdisp);
252b5132
RH
10487
10488 exp = &disp_expressions[i.disp_operands];
520dc8e8 10489 i.op[this_operand].disps = exp;
252b5132
RH
10490 i.disp_operands++;
10491 save_input_line_pointer = input_line_pointer;
10492 input_line_pointer = disp_start;
10493 END_STRING_AND_SAVE (disp_end);
10494
10495#ifndef GCC_ASM_O_HACK
10496#define GCC_ASM_O_HACK 0
10497#endif
10498#if GCC_ASM_O_HACK
10499 END_STRING_AND_SAVE (disp_end + 1);
40fb9820 10500 if (i.types[this_operand].bitfield.baseIndex
24eab124 10501 && displacement_string_end[-1] == '+')
252b5132
RH
10502 {
10503 /* This hack is to avoid a warning when using the "o"
24eab124
AM
10504 constraint within gcc asm statements.
10505 For instance:
10506
10507 #define _set_tssldt_desc(n,addr,limit,type) \
10508 __asm__ __volatile__ ( \
10509 "movw %w2,%0\n\t" \
10510 "movw %w1,2+%0\n\t" \
10511 "rorl $16,%1\n\t" \
10512 "movb %b1,4+%0\n\t" \
10513 "movb %4,5+%0\n\t" \
10514 "movb $0,6+%0\n\t" \
10515 "movb %h1,7+%0\n\t" \
10516 "rorl $16,%1" \
10517 : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type))
10518
10519 This works great except that the output assembler ends
10520 up looking a bit weird if it turns out that there is
10521 no offset. You end up producing code that looks like:
10522
10523 #APP
10524 movw $235,(%eax)
10525 movw %dx,2+(%eax)
10526 rorl $16,%edx
10527 movb %dl,4+(%eax)
10528 movb $137,5+(%eax)
10529 movb $0,6+(%eax)
10530 movb %dh,7+(%eax)
10531 rorl $16,%edx
10532 #NO_APP
10533
47926f60 10534 So here we provide the missing zero. */
24eab124
AM
10535
10536 *displacement_string_end = '0';
252b5132
RH
10537 }
10538#endif
d258b828 10539 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
10540 if (gotfree_input_line)
10541 input_line_pointer = gotfree_input_line;
252b5132 10542
24eab124 10543 exp_seg = expression (exp);
252b5132 10544
636c26b0
AM
10545 SKIP_WHITESPACE ();
10546 if (*input_line_pointer)
10547 as_bad (_("junk `%s' after expression"), input_line_pointer);
10548#if GCC_ASM_O_HACK
10549 RESTORE_END_STRING (disp_end + 1);
10550#endif
636c26b0 10551 input_line_pointer = save_input_line_pointer;
636c26b0 10552 if (gotfree_input_line)
ee86248c
JB
10553 {
10554 free (gotfree_input_line);
10555
10556 if (exp->X_op == O_constant || exp->X_op == O_register)
10557 exp->X_op = O_illegal;
10558 }
10559
10560 ret = i386_finalize_displacement (exp_seg, exp, types, disp_start);
10561
10562 RESTORE_END_STRING (disp_end);
10563
10564 return ret;
10565}
10566
10567static int
10568i386_finalize_displacement (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
10569 i386_operand_type types, const char *disp_start)
10570{
10571 i386_operand_type bigdisp;
10572 int ret = 1;
636c26b0 10573
24eab124
AM
10574 /* We do this to make sure that the section symbol is in
10575 the symbol table. We will ultimately change the relocation
47926f60 10576 to be relative to the beginning of the section. */
1ae12ab7 10577 if (i.reloc[this_operand] == BFD_RELOC_386_GOTOFF
d6ab8113
JB
10578 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL
10579 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
24eab124 10580 {
636c26b0 10581 if (exp->X_op != O_symbol)
3992d3b7 10582 goto inv_disp;
636c26b0 10583
e5cb08ac 10584 if (S_IS_LOCAL (exp->X_add_symbol)
c64efb4b
L
10585 && S_GET_SEGMENT (exp->X_add_symbol) != undefined_section
10586 && S_GET_SEGMENT (exp->X_add_symbol) != expr_section)
24eab124 10587 section_symbol (S_GET_SEGMENT (exp->X_add_symbol));
24eab124
AM
10588 exp->X_op = O_subtract;
10589 exp->X_op_symbol = GOT_symbol;
1ae12ab7 10590 if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL)
29b0f896 10591 i.reloc[this_operand] = BFD_RELOC_32_PCREL;
d6ab8113
JB
10592 else if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
10593 i.reloc[this_operand] = BFD_RELOC_64;
23df1078 10594 else
29b0f896 10595 i.reloc[this_operand] = BFD_RELOC_32;
24eab124 10596 }
252b5132 10597
3992d3b7
AM
10598 else if (exp->X_op == O_absent
10599 || exp->X_op == O_illegal
ee86248c 10600 || exp->X_op == O_big)
2daf4fd8 10601 {
3992d3b7
AM
10602 inv_disp:
10603 as_bad (_("missing or invalid displacement expression `%s'"),
2daf4fd8 10604 disp_start);
3992d3b7 10605 ret = 0;
2daf4fd8
AM
10606 }
10607
0e1147d9
L
10608 else if (flag_code == CODE_64BIT
10609 && !i.prefix[ADDR_PREFIX]
10610 && exp->X_op == O_constant)
10611 {
10612 /* Since displacement is signed extended to 64bit, don't allow
10613 disp32 and turn off disp32s if they are out of range. */
10614 i.types[this_operand].bitfield.disp32 = 0;
10615 if (!fits_in_signed_long (exp->X_add_number))
10616 {
10617 i.types[this_operand].bitfield.disp32s = 0;
10618 if (i.types[this_operand].bitfield.baseindex)
10619 {
10620 as_bad (_("0x%lx out range of signed 32bit displacement"),
10621 (long) exp->X_add_number);
10622 ret = 0;
10623 }
10624 }
10625 }
10626
4c63da97 10627#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
3992d3b7
AM
10628 else if (exp->X_op != O_constant
10629 && OUTPUT_FLAVOR == bfd_target_aout_flavour
10630 && exp_seg != absolute_section
10631 && exp_seg != text_section
10632 && exp_seg != data_section
10633 && exp_seg != bss_section
10634 && exp_seg != undefined_section
10635 && !bfd_is_com_section (exp_seg))
24eab124 10636 {
d0b47220 10637 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
3992d3b7 10638 ret = 0;
24eab124 10639 }
252b5132 10640#endif
3956db08 10641
48bcea9f
JB
10642 if (current_templates->start->opcode_modifier.jump == JUMP_BYTE
10643 /* Constants get taken care of by optimize_disp(). */
10644 && exp->X_op != O_constant)
10645 i.types[this_operand].bitfield.disp8 = 1;
10646
40fb9820
L
10647 /* Check if this is a displacement only operand. */
10648 bigdisp = i.types[this_operand];
10649 bigdisp.bitfield.disp8 = 0;
10650 bigdisp.bitfield.disp16 = 0;
10651 bigdisp.bitfield.disp32 = 0;
10652 bigdisp.bitfield.disp32s = 0;
10653 bigdisp.bitfield.disp64 = 0;
0dfbf9d7 10654 if (operand_type_all_zero (&bigdisp))
c6fb90c8
L
10655 i.types[this_operand] = operand_type_and (i.types[this_operand],
10656 types);
3956db08 10657
3992d3b7 10658 return ret;
252b5132
RH
10659}
10660
2abc2bec
JB
10661/* Return the active addressing mode, taking address override and
10662 registers forming the address into consideration. Update the
10663 address override prefix if necessary. */
47926f60 10664
2abc2bec
JB
10665static enum flag_code
10666i386_addressing_mode (void)
252b5132 10667{
be05d201
L
10668 enum flag_code addr_mode;
10669
10670 if (i.prefix[ADDR_PREFIX])
10671 addr_mode = flag_code == CODE_32BIT ? CODE_16BIT : CODE_32BIT;
a23b33b3
JB
10672 else if (flag_code == CODE_16BIT
10673 && current_templates->start->cpu_flags.bitfield.cpumpx
10674 /* Avoid replacing the "16-bit addressing not allowed" diagnostic
10675 from md_assemble() by "is not a valid base/index expression"
10676 when there is a base and/or index. */
10677 && !i.types[this_operand].bitfield.baseindex)
10678 {
10679 /* MPX insn memory operands with neither base nor index must be forced
10680 to use 32-bit addressing in 16-bit mode. */
10681 addr_mode = CODE_32BIT;
10682 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
10683 ++i.prefixes;
10684 gas_assert (!i.types[this_operand].bitfield.disp16);
10685 gas_assert (!i.types[this_operand].bitfield.disp32);
10686 }
be05d201
L
10687 else
10688 {
10689 addr_mode = flag_code;
10690
24eab124 10691#if INFER_ADDR_PREFIX
be05d201
L
10692 if (i.mem_operands == 0)
10693 {
10694 /* Infer address prefix from the first memory operand. */
10695 const reg_entry *addr_reg = i.base_reg;
10696
10697 if (addr_reg == NULL)
10698 addr_reg = i.index_reg;
eecb386c 10699
be05d201
L
10700 if (addr_reg)
10701 {
e968fc9b 10702 if (addr_reg->reg_type.bitfield.dword)
be05d201
L
10703 addr_mode = CODE_32BIT;
10704 else if (flag_code != CODE_64BIT
dc821c5f 10705 && addr_reg->reg_type.bitfield.word)
be05d201
L
10706 addr_mode = CODE_16BIT;
10707
10708 if (addr_mode != flag_code)
10709 {
10710 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
10711 i.prefixes += 1;
10712 /* Change the size of any displacement too. At most one
10713 of Disp16 or Disp32 is set.
10714 FIXME. There doesn't seem to be any real need for
10715 separate Disp16 and Disp32 flags. The same goes for
10716 Imm16 and Imm32. Removing them would probably clean
10717 up the code quite a lot. */
10718 if (flag_code != CODE_64BIT
10719 && (i.types[this_operand].bitfield.disp16
10720 || i.types[this_operand].bitfield.disp32))
10721 i.types[this_operand]
10722 = operand_type_xor (i.types[this_operand], disp16_32);
10723 }
10724 }
10725 }
24eab124 10726#endif
be05d201
L
10727 }
10728
2abc2bec
JB
10729 return addr_mode;
10730}
10731
10732/* Make sure the memory operand we've been dealt is valid.
10733 Return 1 on success, 0 on a failure. */
10734
10735static int
10736i386_index_check (const char *operand_string)
10737{
10738 const char *kind = "base/index";
10739 enum flag_code addr_mode = i386_addressing_mode ();
10740
fc0763e6 10741 if (current_templates->start->opcode_modifier.isstring
c3949f43 10742 && !current_templates->start->cpu_flags.bitfield.cpupadlock
fc0763e6
JB
10743 && (current_templates->end[-1].opcode_modifier.isstring
10744 || i.mem_operands))
10745 {
10746 /* Memory operands of string insns are special in that they only allow
10747 a single register (rDI, rSI, or rBX) as their memory address. */
be05d201
L
10748 const reg_entry *expected_reg;
10749 static const char *di_si[][2] =
10750 {
10751 { "esi", "edi" },
10752 { "si", "di" },
10753 { "rsi", "rdi" }
10754 };
10755 static const char *bx[] = { "ebx", "bx", "rbx" };
fc0763e6
JB
10756
10757 kind = "string address";
10758
8325cc63 10759 if (current_templates->start->opcode_modifier.repprefixok)
fc0763e6 10760 {
51c8edf6
JB
10761 int es_op = current_templates->end[-1].opcode_modifier.isstring
10762 - IS_STRING_ES_OP0;
10763 int op = 0;
fc0763e6 10764
51c8edf6 10765 if (!current_templates->end[-1].operand_types[0].bitfield.baseindex
fc0763e6
JB
10766 || ((!i.mem_operands != !intel_syntax)
10767 && current_templates->end[-1].operand_types[1]
10768 .bitfield.baseindex))
51c8edf6
JB
10769 op = 1;
10770 expected_reg = hash_find (reg_hash, di_si[addr_mode][op == es_op]);
fc0763e6
JB
10771 }
10772 else
be05d201 10773 expected_reg = hash_find (reg_hash, bx[addr_mode]);
fc0763e6 10774
be05d201
L
10775 if (i.base_reg != expected_reg
10776 || i.index_reg
fc0763e6 10777 || operand_type_check (i.types[this_operand], disp))
fc0763e6 10778 {
be05d201
L
10779 /* The second memory operand must have the same size as
10780 the first one. */
10781 if (i.mem_operands
10782 && i.base_reg
10783 && !((addr_mode == CODE_64BIT
dc821c5f 10784 && i.base_reg->reg_type.bitfield.qword)
be05d201 10785 || (addr_mode == CODE_32BIT
dc821c5f
JB
10786 ? i.base_reg->reg_type.bitfield.dword
10787 : i.base_reg->reg_type.bitfield.word)))
be05d201
L
10788 goto bad_address;
10789
fc0763e6
JB
10790 as_warn (_("`%s' is not valid here (expected `%c%s%s%c')"),
10791 operand_string,
10792 intel_syntax ? '[' : '(',
10793 register_prefix,
be05d201 10794 expected_reg->reg_name,
fc0763e6 10795 intel_syntax ? ']' : ')');
be05d201 10796 return 1;
fc0763e6 10797 }
be05d201
L
10798 else
10799 return 1;
10800
dc1e8a47 10801 bad_address:
be05d201
L
10802 as_bad (_("`%s' is not a valid %s expression"),
10803 operand_string, kind);
10804 return 0;
3e73aa7c
JH
10805 }
10806 else
10807 {
be05d201
L
10808 if (addr_mode != CODE_16BIT)
10809 {
10810 /* 32-bit/64-bit checks. */
10811 if ((i.base_reg
e968fc9b
JB
10812 && ((addr_mode == CODE_64BIT
10813 ? !i.base_reg->reg_type.bitfield.qword
10814 : !i.base_reg->reg_type.bitfield.dword)
10815 || (i.index_reg && i.base_reg->reg_num == RegIP)
10816 || i.base_reg->reg_num == RegIZ))
be05d201 10817 || (i.index_reg
1b54b8d7
JB
10818 && !i.index_reg->reg_type.bitfield.xmmword
10819 && !i.index_reg->reg_type.bitfield.ymmword
10820 && !i.index_reg->reg_type.bitfield.zmmword
be05d201 10821 && ((addr_mode == CODE_64BIT
e968fc9b
JB
10822 ? !i.index_reg->reg_type.bitfield.qword
10823 : !i.index_reg->reg_type.bitfield.dword)
be05d201
L
10824 || !i.index_reg->reg_type.bitfield.baseindex)))
10825 goto bad_address;
8178be5b
JB
10826
10827 /* bndmk, bndldx, and bndstx have special restrictions. */
10828 if (current_templates->start->base_opcode == 0xf30f1b
10829 || (current_templates->start->base_opcode & ~1) == 0x0f1a)
10830 {
10831 /* They cannot use RIP-relative addressing. */
e968fc9b 10832 if (i.base_reg && i.base_reg->reg_num == RegIP)
8178be5b
JB
10833 {
10834 as_bad (_("`%s' cannot be used here"), operand_string);
10835 return 0;
10836 }
10837
10838 /* bndldx and bndstx ignore their scale factor. */
10839 if (current_templates->start->base_opcode != 0xf30f1b
10840 && i.log2_scale_factor)
10841 as_warn (_("register scaling is being ignored here"));
10842 }
be05d201
L
10843 }
10844 else
3e73aa7c 10845 {
be05d201 10846 /* 16-bit checks. */
3e73aa7c 10847 if ((i.base_reg
dc821c5f 10848 && (!i.base_reg->reg_type.bitfield.word
40fb9820 10849 || !i.base_reg->reg_type.bitfield.baseindex))
3e73aa7c 10850 || (i.index_reg
dc821c5f 10851 && (!i.index_reg->reg_type.bitfield.word
40fb9820 10852 || !i.index_reg->reg_type.bitfield.baseindex
29b0f896
AM
10853 || !(i.base_reg
10854 && i.base_reg->reg_num < 6
10855 && i.index_reg->reg_num >= 6
10856 && i.log2_scale_factor == 0))))
be05d201 10857 goto bad_address;
3e73aa7c
JH
10858 }
10859 }
be05d201 10860 return 1;
24eab124 10861}
252b5132 10862
43234a1e
L
10863/* Handle vector immediates. */
10864
10865static int
10866RC_SAE_immediate (const char *imm_start)
10867{
10868 unsigned int match_found, j;
10869 const char *pstr = imm_start;
10870 expressionS *exp;
10871
10872 if (*pstr != '{')
10873 return 0;
10874
10875 pstr++;
10876 match_found = 0;
10877 for (j = 0; j < ARRAY_SIZE (RC_NamesTable); j++)
10878 {
10879 if (!strncmp (pstr, RC_NamesTable[j].name, RC_NamesTable[j].len))
10880 {
10881 if (!i.rounding)
10882 {
10883 rc_op.type = RC_NamesTable[j].type;
10884 rc_op.operand = this_operand;
10885 i.rounding = &rc_op;
10886 }
10887 else
10888 {
10889 as_bad (_("duplicated `%s'"), imm_start);
10890 return 0;
10891 }
10892 pstr += RC_NamesTable[j].len;
10893 match_found = 1;
10894 break;
10895 }
10896 }
10897 if (!match_found)
10898 return 0;
10899
10900 if (*pstr++ != '}')
10901 {
10902 as_bad (_("Missing '}': '%s'"), imm_start);
10903 return 0;
10904 }
10905 /* RC/SAE immediate string should contain nothing more. */;
10906 if (*pstr != 0)
10907 {
10908 as_bad (_("Junk after '}': '%s'"), imm_start);
10909 return 0;
10910 }
10911
10912 exp = &im_expressions[i.imm_operands++];
10913 i.op[this_operand].imms = exp;
10914
10915 exp->X_op = O_constant;
10916 exp->X_add_number = 0;
10917 exp->X_add_symbol = (symbolS *) 0;
10918 exp->X_op_symbol = (symbolS *) 0;
10919
10920 i.types[this_operand].bitfield.imm8 = 1;
10921 return 1;
10922}
10923
8325cc63
JB
10924/* Only string instructions can have a second memory operand, so
10925 reduce current_templates to just those if it contains any. */
10926static int
10927maybe_adjust_templates (void)
10928{
10929 const insn_template *t;
10930
10931 gas_assert (i.mem_operands == 1);
10932
10933 for (t = current_templates->start; t < current_templates->end; ++t)
10934 if (t->opcode_modifier.isstring)
10935 break;
10936
10937 if (t < current_templates->end)
10938 {
10939 static templates aux_templates;
10940 bfd_boolean recheck;
10941
10942 aux_templates.start = t;
10943 for (; t < current_templates->end; ++t)
10944 if (!t->opcode_modifier.isstring)
10945 break;
10946 aux_templates.end = t;
10947
10948 /* Determine whether to re-check the first memory operand. */
10949 recheck = (aux_templates.start != current_templates->start
10950 || t != current_templates->end);
10951
10952 current_templates = &aux_templates;
10953
10954 if (recheck)
10955 {
10956 i.mem_operands = 0;
10957 if (i.memop1_string != NULL
10958 && i386_index_check (i.memop1_string) == 0)
10959 return 0;
10960 i.mem_operands = 1;
10961 }
10962 }
10963
10964 return 1;
10965}
10966
fc0763e6 10967/* Parse OPERAND_STRING into the i386_insn structure I. Returns zero
47926f60 10968 on error. */
252b5132 10969
252b5132 10970static int
a7619375 10971i386_att_operand (char *operand_string)
252b5132 10972{
af6bdddf
AM
10973 const reg_entry *r;
10974 char *end_op;
24eab124 10975 char *op_string = operand_string;
252b5132 10976
24eab124 10977 if (is_space_char (*op_string))
252b5132
RH
10978 ++op_string;
10979
24eab124 10980 /* We check for an absolute prefix (differentiating,
47926f60 10981 for example, 'jmp pc_relative_label' from 'jmp *absolute_label'. */
24eab124
AM
10982 if (*op_string == ABSOLUTE_PREFIX)
10983 {
10984 ++op_string;
10985 if (is_space_char (*op_string))
10986 ++op_string;
6f2f06be 10987 i.jumpabsolute = TRUE;
24eab124 10988 }
252b5132 10989
47926f60 10990 /* Check if operand is a register. */
4d1bb795 10991 if ((r = parse_register (op_string, &end_op)) != NULL)
24eab124 10992 {
40fb9820
L
10993 i386_operand_type temp;
10994
24eab124
AM
10995 /* Check for a segment override by searching for ':' after a
10996 segment register. */
10997 op_string = end_op;
10998 if (is_space_char (*op_string))
10999 ++op_string;
00cee14f 11000 if (*op_string == ':' && r->reg_type.bitfield.class == SReg)
24eab124
AM
11001 {
11002 switch (r->reg_num)
11003 {
11004 case 0:
11005 i.seg[i.mem_operands] = &es;
11006 break;
11007 case 1:
11008 i.seg[i.mem_operands] = &cs;
11009 break;
11010 case 2:
11011 i.seg[i.mem_operands] = &ss;
11012 break;
11013 case 3:
11014 i.seg[i.mem_operands] = &ds;
11015 break;
11016 case 4:
11017 i.seg[i.mem_operands] = &fs;
11018 break;
11019 case 5:
11020 i.seg[i.mem_operands] = &gs;
11021 break;
11022 }
252b5132 11023
24eab124 11024 /* Skip the ':' and whitespace. */
252b5132
RH
11025 ++op_string;
11026 if (is_space_char (*op_string))
24eab124 11027 ++op_string;
252b5132 11028
24eab124
AM
11029 if (!is_digit_char (*op_string)
11030 && !is_identifier_char (*op_string)
11031 && *op_string != '('
11032 && *op_string != ABSOLUTE_PREFIX)
11033 {
11034 as_bad (_("bad memory operand `%s'"), op_string);
11035 return 0;
11036 }
47926f60 11037 /* Handle case of %es:*foo. */
24eab124
AM
11038 if (*op_string == ABSOLUTE_PREFIX)
11039 {
11040 ++op_string;
11041 if (is_space_char (*op_string))
11042 ++op_string;
6f2f06be 11043 i.jumpabsolute = TRUE;
24eab124
AM
11044 }
11045 goto do_memory_reference;
11046 }
43234a1e
L
11047
11048 /* Handle vector operations. */
11049 if (*op_string == '{')
11050 {
11051 op_string = check_VecOperations (op_string, NULL);
11052 if (op_string == NULL)
11053 return 0;
11054 }
11055
24eab124
AM
11056 if (*op_string)
11057 {
d0b47220 11058 as_bad (_("junk `%s' after register"), op_string);
24eab124
AM
11059 return 0;
11060 }
40fb9820
L
11061 temp = r->reg_type;
11062 temp.bitfield.baseindex = 0;
c6fb90c8
L
11063 i.types[this_operand] = operand_type_or (i.types[this_operand],
11064 temp);
7d5e4556 11065 i.types[this_operand].bitfield.unspecified = 0;
520dc8e8 11066 i.op[this_operand].regs = r;
24eab124
AM
11067 i.reg_operands++;
11068 }
af6bdddf
AM
11069 else if (*op_string == REGISTER_PREFIX)
11070 {
11071 as_bad (_("bad register name `%s'"), op_string);
11072 return 0;
11073 }
24eab124 11074 else if (*op_string == IMMEDIATE_PREFIX)
ce8a8b2f 11075 {
24eab124 11076 ++op_string;
6f2f06be 11077 if (i.jumpabsolute)
24eab124 11078 {
d0b47220 11079 as_bad (_("immediate operand illegal with absolute jump"));
24eab124
AM
11080 return 0;
11081 }
11082 if (!i386_immediate (op_string))
11083 return 0;
11084 }
43234a1e
L
11085 else if (RC_SAE_immediate (operand_string))
11086 {
11087 /* If it is a RC or SAE immediate, do nothing. */
11088 ;
11089 }
24eab124
AM
11090 else if (is_digit_char (*op_string)
11091 || is_identifier_char (*op_string)
d02603dc 11092 || *op_string == '"'
e5cb08ac 11093 || *op_string == '(')
24eab124 11094 {
47926f60 11095 /* This is a memory reference of some sort. */
af6bdddf 11096 char *base_string;
252b5132 11097
47926f60 11098 /* Start and end of displacement string expression (if found). */
eecb386c
AM
11099 char *displacement_string_start;
11100 char *displacement_string_end;
43234a1e 11101 char *vop_start;
252b5132 11102
24eab124 11103 do_memory_reference:
8325cc63
JB
11104 if (i.mem_operands == 1 && !maybe_adjust_templates ())
11105 return 0;
24eab124 11106 if ((i.mem_operands == 1
40fb9820 11107 && !current_templates->start->opcode_modifier.isstring)
24eab124
AM
11108 || i.mem_operands == 2)
11109 {
11110 as_bad (_("too many memory references for `%s'"),
11111 current_templates->start->name);
11112 return 0;
11113 }
252b5132 11114
24eab124
AM
11115 /* Check for base index form. We detect the base index form by
11116 looking for an ')' at the end of the operand, searching
11117 for the '(' matching it, and finding a REGISTER_PREFIX or ','
11118 after the '('. */
af6bdddf 11119 base_string = op_string + strlen (op_string);
c3332e24 11120
43234a1e
L
11121 /* Handle vector operations. */
11122 vop_start = strchr (op_string, '{');
11123 if (vop_start && vop_start < base_string)
11124 {
11125 if (check_VecOperations (vop_start, base_string) == NULL)
11126 return 0;
11127 base_string = vop_start;
11128 }
11129
af6bdddf
AM
11130 --base_string;
11131 if (is_space_char (*base_string))
11132 --base_string;
252b5132 11133
47926f60 11134 /* If we only have a displacement, set-up for it to be parsed later. */
af6bdddf
AM
11135 displacement_string_start = op_string;
11136 displacement_string_end = base_string + 1;
252b5132 11137
24eab124
AM
11138 if (*base_string == ')')
11139 {
af6bdddf 11140 char *temp_string;
24eab124
AM
11141 unsigned int parens_balanced = 1;
11142 /* We've already checked that the number of left & right ()'s are
47926f60 11143 equal, so this loop will not be infinite. */
24eab124
AM
11144 do
11145 {
11146 base_string--;
11147 if (*base_string == ')')
11148 parens_balanced++;
11149 if (*base_string == '(')
11150 parens_balanced--;
11151 }
11152 while (parens_balanced);
c3332e24 11153
af6bdddf 11154 temp_string = base_string;
c3332e24 11155
24eab124 11156 /* Skip past '(' and whitespace. */
252b5132
RH
11157 ++base_string;
11158 if (is_space_char (*base_string))
24eab124 11159 ++base_string;
252b5132 11160
af6bdddf 11161 if (*base_string == ','
4eed87de
AM
11162 || ((i.base_reg = parse_register (base_string, &end_op))
11163 != NULL))
252b5132 11164 {
af6bdddf 11165 displacement_string_end = temp_string;
252b5132 11166
40fb9820 11167 i.types[this_operand].bitfield.baseindex = 1;
252b5132 11168
af6bdddf 11169 if (i.base_reg)
24eab124 11170 {
24eab124
AM
11171 base_string = end_op;
11172 if (is_space_char (*base_string))
11173 ++base_string;
af6bdddf
AM
11174 }
11175
11176 /* There may be an index reg or scale factor here. */
11177 if (*base_string == ',')
11178 {
11179 ++base_string;
11180 if (is_space_char (*base_string))
11181 ++base_string;
11182
4eed87de
AM
11183 if ((i.index_reg = parse_register (base_string, &end_op))
11184 != NULL)
24eab124 11185 {
af6bdddf 11186 base_string = end_op;
24eab124
AM
11187 if (is_space_char (*base_string))
11188 ++base_string;
af6bdddf
AM
11189 if (*base_string == ',')
11190 {
11191 ++base_string;
11192 if (is_space_char (*base_string))
11193 ++base_string;
11194 }
e5cb08ac 11195 else if (*base_string != ')')
af6bdddf 11196 {
4eed87de
AM
11197 as_bad (_("expecting `,' or `)' "
11198 "after index register in `%s'"),
af6bdddf
AM
11199 operand_string);
11200 return 0;
11201 }
24eab124 11202 }
af6bdddf 11203 else if (*base_string == REGISTER_PREFIX)
24eab124 11204 {
f76bf5e0
L
11205 end_op = strchr (base_string, ',');
11206 if (end_op)
11207 *end_op = '\0';
af6bdddf 11208 as_bad (_("bad register name `%s'"), base_string);
24eab124
AM
11209 return 0;
11210 }
252b5132 11211
47926f60 11212 /* Check for scale factor. */
551c1ca1 11213 if (*base_string != ')')
af6bdddf 11214 {
551c1ca1
AM
11215 char *end_scale = i386_scale (base_string);
11216
11217 if (!end_scale)
af6bdddf 11218 return 0;
24eab124 11219
551c1ca1 11220 base_string = end_scale;
af6bdddf
AM
11221 if (is_space_char (*base_string))
11222 ++base_string;
11223 if (*base_string != ')')
11224 {
4eed87de
AM
11225 as_bad (_("expecting `)' "
11226 "after scale factor in `%s'"),
af6bdddf
AM
11227 operand_string);
11228 return 0;
11229 }
11230 }
11231 else if (!i.index_reg)
24eab124 11232 {
4eed87de
AM
11233 as_bad (_("expecting index register or scale factor "
11234 "after `,'; got '%c'"),
af6bdddf 11235 *base_string);
24eab124
AM
11236 return 0;
11237 }
11238 }
af6bdddf 11239 else if (*base_string != ')')
24eab124 11240 {
4eed87de
AM
11241 as_bad (_("expecting `,' or `)' "
11242 "after base register in `%s'"),
af6bdddf 11243 operand_string);
24eab124
AM
11244 return 0;
11245 }
c3332e24 11246 }
af6bdddf 11247 else if (*base_string == REGISTER_PREFIX)
c3332e24 11248 {
f76bf5e0
L
11249 end_op = strchr (base_string, ',');
11250 if (end_op)
11251 *end_op = '\0';
af6bdddf 11252 as_bad (_("bad register name `%s'"), base_string);
24eab124 11253 return 0;
c3332e24 11254 }
24eab124
AM
11255 }
11256
11257 /* If there's an expression beginning the operand, parse it,
11258 assuming displacement_string_start and
11259 displacement_string_end are meaningful. */
11260 if (displacement_string_start != displacement_string_end)
11261 {
11262 if (!i386_displacement (displacement_string_start,
11263 displacement_string_end))
11264 return 0;
11265 }
11266
11267 /* Special case for (%dx) while doing input/output op. */
11268 if (i.base_reg
75e5731b
JB
11269 && i.base_reg->reg_type.bitfield.instance == RegD
11270 && i.base_reg->reg_type.bitfield.word
24eab124
AM
11271 && i.index_reg == 0
11272 && i.log2_scale_factor == 0
11273 && i.seg[i.mem_operands] == 0
40fb9820 11274 && !operand_type_check (i.types[this_operand], disp))
24eab124 11275 {
2fb5be8d 11276 i.types[this_operand] = i.base_reg->reg_type;
24eab124
AM
11277 return 1;
11278 }
11279
eecb386c
AM
11280 if (i386_index_check (operand_string) == 0)
11281 return 0;
c48dadc9 11282 i.flags[this_operand] |= Operand_Mem;
8325cc63
JB
11283 if (i.mem_operands == 0)
11284 i.memop1_string = xstrdup (operand_string);
24eab124
AM
11285 i.mem_operands++;
11286 }
11287 else
ce8a8b2f
AM
11288 {
11289 /* It's not a memory operand; argh! */
24eab124
AM
11290 as_bad (_("invalid char %s beginning operand %d `%s'"),
11291 output_invalid (*op_string),
11292 this_operand + 1,
11293 op_string);
11294 return 0;
11295 }
47926f60 11296 return 1; /* Normal return. */
252b5132
RH
11297}
11298\f
fa94de6b
RM
11299/* Calculate the maximum variable size (i.e., excluding fr_fix)
11300 that an rs_machine_dependent frag may reach. */
11301
11302unsigned int
11303i386_frag_max_var (fragS *frag)
11304{
11305 /* The only relaxable frags are for jumps.
11306 Unconditional jumps can grow by 4 bytes and others by 5 bytes. */
11307 gas_assert (frag->fr_type == rs_machine_dependent);
11308 return TYPE_FROM_RELAX_STATE (frag->fr_subtype) == UNCOND_JUMP ? 4 : 5;
11309}
11310
b084df0b
L
11311#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11312static int
8dcea932 11313elf_symbol_resolved_in_segment_p (symbolS *fr_symbol, offsetT fr_var)
b084df0b
L
11314{
11315 /* STT_GNU_IFUNC symbol must go through PLT. */
11316 if ((symbol_get_bfdsym (fr_symbol)->flags
11317 & BSF_GNU_INDIRECT_FUNCTION) != 0)
11318 return 0;
11319
11320 if (!S_IS_EXTERNAL (fr_symbol))
11321 /* Symbol may be weak or local. */
11322 return !S_IS_WEAK (fr_symbol);
11323
8dcea932
L
11324 /* Global symbols with non-default visibility can't be preempted. */
11325 if (ELF_ST_VISIBILITY (S_GET_OTHER (fr_symbol)) != STV_DEFAULT)
11326 return 1;
11327
11328 if (fr_var != NO_RELOC)
11329 switch ((enum bfd_reloc_code_real) fr_var)
11330 {
11331 case BFD_RELOC_386_PLT32:
11332 case BFD_RELOC_X86_64_PLT32:
33eaf5de 11333 /* Symbol with PLT relocation may be preempted. */
8dcea932
L
11334 return 0;
11335 default:
11336 abort ();
11337 }
11338
b084df0b
L
11339 /* Global symbols with default visibility in a shared library may be
11340 preempted by another definition. */
8dcea932 11341 return !shared;
b084df0b
L
11342}
11343#endif
11344
79d72f45
HL
11345/* Table 3-2. Macro-Fusible Instructions in Haswell Microarchitecture
11346 Note also work for Skylake and Cascadelake.
11347---------------------------------------------------------------------
11348| JCC | ADD/SUB/CMP | INC/DEC | TEST/AND |
11349| ------ | ----------- | ------- | -------- |
11350| Jo | N | N | Y |
11351| Jno | N | N | Y |
11352| Jc/Jb | Y | N | Y |
11353| Jae/Jnb | Y | N | Y |
11354| Je/Jz | Y | Y | Y |
11355| Jne/Jnz | Y | Y | Y |
11356| Jna/Jbe | Y | N | Y |
11357| Ja/Jnbe | Y | N | Y |
11358| Js | N | N | Y |
11359| Jns | N | N | Y |
11360| Jp/Jpe | N | N | Y |
11361| Jnp/Jpo | N | N | Y |
11362| Jl/Jnge | Y | Y | Y |
11363| Jge/Jnl | Y | Y | Y |
11364| Jle/Jng | Y | Y | Y |
11365| Jg/Jnle | Y | Y | Y |
11366--------------------------------------------------------------------- */
11367static int
11368i386_macro_fusible_p (enum mf_cmp_kind mf_cmp, enum mf_jcc_kind mf_jcc)
11369{
11370 if (mf_cmp == mf_cmp_alu_cmp)
11371 return ((mf_jcc >= mf_jcc_jc && mf_jcc <= mf_jcc_jna)
11372 || mf_jcc == mf_jcc_jl || mf_jcc == mf_jcc_jle);
11373 if (mf_cmp == mf_cmp_incdec)
11374 return (mf_jcc == mf_jcc_je || mf_jcc == mf_jcc_jl
11375 || mf_jcc == mf_jcc_jle);
11376 if (mf_cmp == mf_cmp_test_and)
11377 return 1;
11378 return 0;
11379}
11380
e379e5f3
L
11381/* Return the next non-empty frag. */
11382
11383static fragS *
11384i386_next_non_empty_frag (fragS *fragP)
11385{
11386 /* There may be a frag with a ".fill 0" when there is no room in
11387 the current frag for frag_grow in output_insn. */
11388 for (fragP = fragP->fr_next;
11389 (fragP != NULL
11390 && fragP->fr_type == rs_fill
11391 && fragP->fr_fix == 0);
11392 fragP = fragP->fr_next)
11393 ;
11394 return fragP;
11395}
11396
11397/* Return the next jcc frag after BRANCH_PADDING. */
11398
11399static fragS *
79d72f45 11400i386_next_fusible_jcc_frag (fragS *maybe_cmp_fragP, fragS *pad_fragP)
e379e5f3 11401{
79d72f45
HL
11402 fragS *branch_fragP;
11403 if (!pad_fragP)
e379e5f3
L
11404 return NULL;
11405
79d72f45
HL
11406 if (pad_fragP->fr_type == rs_machine_dependent
11407 && (TYPE_FROM_RELAX_STATE (pad_fragP->fr_subtype)
e379e5f3
L
11408 == BRANCH_PADDING))
11409 {
79d72f45
HL
11410 branch_fragP = i386_next_non_empty_frag (pad_fragP);
11411 if (branch_fragP->fr_type != rs_machine_dependent)
e379e5f3 11412 return NULL;
79d72f45
HL
11413 if (TYPE_FROM_RELAX_STATE (branch_fragP->fr_subtype) == COND_JUMP
11414 && i386_macro_fusible_p (maybe_cmp_fragP->tc_frag_data.mf_type,
11415 pad_fragP->tc_frag_data.mf_type))
11416 return branch_fragP;
e379e5f3
L
11417 }
11418
11419 return NULL;
11420}
11421
11422/* Classify BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags. */
11423
11424static void
11425i386_classify_machine_dependent_frag (fragS *fragP)
11426{
11427 fragS *cmp_fragP;
11428 fragS *pad_fragP;
11429 fragS *branch_fragP;
11430 fragS *next_fragP;
11431 unsigned int max_prefix_length;
11432
11433 if (fragP->tc_frag_data.classified)
11434 return;
11435
11436 /* First scan for BRANCH_PADDING and FUSED_JCC_PADDING. Convert
11437 FUSED_JCC_PADDING and merge BRANCH_PADDING. */
11438 for (next_fragP = fragP;
11439 next_fragP != NULL;
11440 next_fragP = next_fragP->fr_next)
11441 {
11442 next_fragP->tc_frag_data.classified = 1;
11443 if (next_fragP->fr_type == rs_machine_dependent)
11444 switch (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype))
11445 {
11446 case BRANCH_PADDING:
11447 /* The BRANCH_PADDING frag must be followed by a branch
11448 frag. */
11449 branch_fragP = i386_next_non_empty_frag (next_fragP);
11450 next_fragP->tc_frag_data.u.branch_fragP = branch_fragP;
11451 break;
11452 case FUSED_JCC_PADDING:
11453 /* Check if this is a fused jcc:
11454 FUSED_JCC_PADDING
11455 CMP like instruction
11456 BRANCH_PADDING
11457 COND_JUMP
11458 */
11459 cmp_fragP = i386_next_non_empty_frag (next_fragP);
11460 pad_fragP = i386_next_non_empty_frag (cmp_fragP);
79d72f45 11461 branch_fragP = i386_next_fusible_jcc_frag (next_fragP, pad_fragP);
e379e5f3
L
11462 if (branch_fragP)
11463 {
11464 /* The BRANCH_PADDING frag is merged with the
11465 FUSED_JCC_PADDING frag. */
11466 next_fragP->tc_frag_data.u.branch_fragP = branch_fragP;
11467 /* CMP like instruction size. */
11468 next_fragP->tc_frag_data.cmp_size = cmp_fragP->fr_fix;
11469 frag_wane (pad_fragP);
11470 /* Skip to branch_fragP. */
11471 next_fragP = branch_fragP;
11472 }
11473 else if (next_fragP->tc_frag_data.max_prefix_length)
11474 {
11475 /* Turn FUSED_JCC_PADDING into BRANCH_PREFIX if it isn't
11476 a fused jcc. */
11477 next_fragP->fr_subtype
11478 = ENCODE_RELAX_STATE (BRANCH_PREFIX, 0);
11479 next_fragP->tc_frag_data.max_bytes
11480 = next_fragP->tc_frag_data.max_prefix_length;
11481 /* This will be updated in the BRANCH_PREFIX scan. */
11482 next_fragP->tc_frag_data.max_prefix_length = 0;
11483 }
11484 else
11485 frag_wane (next_fragP);
11486 break;
11487 }
11488 }
11489
11490 /* Stop if there is no BRANCH_PREFIX. */
11491 if (!align_branch_prefix_size)
11492 return;
11493
11494 /* Scan for BRANCH_PREFIX. */
11495 for (; fragP != NULL; fragP = fragP->fr_next)
11496 {
11497 if (fragP->fr_type != rs_machine_dependent
11498 || (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
11499 != BRANCH_PREFIX))
11500 continue;
11501
11502 /* Count all BRANCH_PREFIX frags before BRANCH_PADDING and
11503 COND_JUMP_PREFIX. */
11504 max_prefix_length = 0;
11505 for (next_fragP = fragP;
11506 next_fragP != NULL;
11507 next_fragP = next_fragP->fr_next)
11508 {
11509 if (next_fragP->fr_type == rs_fill)
11510 /* Skip rs_fill frags. */
11511 continue;
11512 else if (next_fragP->fr_type != rs_machine_dependent)
11513 /* Stop for all other frags. */
11514 break;
11515
11516 /* rs_machine_dependent frags. */
11517 if (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11518 == BRANCH_PREFIX)
11519 {
11520 /* Count BRANCH_PREFIX frags. */
11521 if (max_prefix_length >= MAX_FUSED_JCC_PADDING_SIZE)
11522 {
11523 max_prefix_length = MAX_FUSED_JCC_PADDING_SIZE;
11524 frag_wane (next_fragP);
11525 }
11526 else
11527 max_prefix_length
11528 += next_fragP->tc_frag_data.max_bytes;
11529 }
11530 else if ((TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11531 == BRANCH_PADDING)
11532 || (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11533 == FUSED_JCC_PADDING))
11534 {
11535 /* Stop at BRANCH_PADDING and FUSED_JCC_PADDING. */
11536 fragP->tc_frag_data.u.padding_fragP = next_fragP;
11537 break;
11538 }
11539 else
11540 /* Stop for other rs_machine_dependent frags. */
11541 break;
11542 }
11543
11544 fragP->tc_frag_data.max_prefix_length = max_prefix_length;
11545
11546 /* Skip to the next frag. */
11547 fragP = next_fragP;
11548 }
11549}
11550
11551/* Compute padding size for
11552
11553 FUSED_JCC_PADDING
11554 CMP like instruction
11555 BRANCH_PADDING
11556 COND_JUMP/UNCOND_JUMP
11557
11558 or
11559
11560 BRANCH_PADDING
11561 COND_JUMP/UNCOND_JUMP
11562 */
11563
11564static int
11565i386_branch_padding_size (fragS *fragP, offsetT address)
11566{
11567 unsigned int offset, size, padding_size;
11568 fragS *branch_fragP = fragP->tc_frag_data.u.branch_fragP;
11569
11570 /* The start address of the BRANCH_PADDING or FUSED_JCC_PADDING frag. */
11571 if (!address)
11572 address = fragP->fr_address;
11573 address += fragP->fr_fix;
11574
11575 /* CMP like instrunction size. */
11576 size = fragP->tc_frag_data.cmp_size;
11577
11578 /* The base size of the branch frag. */
11579 size += branch_fragP->fr_fix;
11580
11581 /* Add opcode and displacement bytes for the rs_machine_dependent
11582 branch frag. */
11583 if (branch_fragP->fr_type == rs_machine_dependent)
11584 size += md_relax_table[branch_fragP->fr_subtype].rlx_length;
11585
11586 /* Check if branch is within boundary and doesn't end at the last
11587 byte. */
11588 offset = address & ((1U << align_branch_power) - 1);
11589 if ((offset + size) >= (1U << align_branch_power))
11590 /* Padding needed to avoid crossing boundary. */
11591 padding_size = (1U << align_branch_power) - offset;
11592 else
11593 /* No padding needed. */
11594 padding_size = 0;
11595
11596 /* The return value may be saved in tc_frag_data.length which is
11597 unsigned byte. */
11598 if (!fits_in_unsigned_byte (padding_size))
11599 abort ();
11600
11601 return padding_size;
11602}
11603
11604/* i386_generic_table_relax_frag()
11605
11606 Handle BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags to
11607 grow/shrink padding to align branch frags. Hand others to
11608 relax_frag(). */
11609
11610long
11611i386_generic_table_relax_frag (segT segment, fragS *fragP, long stretch)
11612{
11613 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11614 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
11615 {
11616 long padding_size = i386_branch_padding_size (fragP, 0);
11617 long grow = padding_size - fragP->tc_frag_data.length;
11618
11619 /* When the BRANCH_PREFIX frag is used, the computed address
11620 must match the actual address and there should be no padding. */
11621 if (fragP->tc_frag_data.padding_address
11622 && (fragP->tc_frag_data.padding_address != fragP->fr_address
11623 || padding_size))
11624 abort ();
11625
11626 /* Update the padding size. */
11627 if (grow)
11628 fragP->tc_frag_data.length = padding_size;
11629
11630 return grow;
11631 }
11632 else if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11633 {
11634 fragS *padding_fragP, *next_fragP;
11635 long padding_size, left_size, last_size;
11636
11637 padding_fragP = fragP->tc_frag_data.u.padding_fragP;
11638 if (!padding_fragP)
11639 /* Use the padding set by the leading BRANCH_PREFIX frag. */
11640 return (fragP->tc_frag_data.length
11641 - fragP->tc_frag_data.last_length);
11642
11643 /* Compute the relative address of the padding frag in the very
11644 first time where the BRANCH_PREFIX frag sizes are zero. */
11645 if (!fragP->tc_frag_data.padding_address)
11646 fragP->tc_frag_data.padding_address
11647 = padding_fragP->fr_address - (fragP->fr_address - stretch);
11648
11649 /* First update the last length from the previous interation. */
11650 left_size = fragP->tc_frag_data.prefix_length;
11651 for (next_fragP = fragP;
11652 next_fragP != padding_fragP;
11653 next_fragP = next_fragP->fr_next)
11654 if (next_fragP->fr_type == rs_machine_dependent
11655 && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11656 == BRANCH_PREFIX))
11657 {
11658 if (left_size)
11659 {
11660 int max = next_fragP->tc_frag_data.max_bytes;
11661 if (max)
11662 {
11663 int size;
11664 if (max > left_size)
11665 size = left_size;
11666 else
11667 size = max;
11668 left_size -= size;
11669 next_fragP->tc_frag_data.last_length = size;
11670 }
11671 }
11672 else
11673 next_fragP->tc_frag_data.last_length = 0;
11674 }
11675
11676 /* Check the padding size for the padding frag. */
11677 padding_size = i386_branch_padding_size
11678 (padding_fragP, (fragP->fr_address
11679 + fragP->tc_frag_data.padding_address));
11680
11681 last_size = fragP->tc_frag_data.prefix_length;
11682 /* Check if there is change from the last interation. */
11683 if (padding_size == last_size)
11684 {
11685 /* Update the expected address of the padding frag. */
11686 padding_fragP->tc_frag_data.padding_address
11687 = (fragP->fr_address + padding_size
11688 + fragP->tc_frag_data.padding_address);
11689 return 0;
11690 }
11691
11692 if (padding_size > fragP->tc_frag_data.max_prefix_length)
11693 {
11694 /* No padding if there is no sufficient room. Clear the
11695 expected address of the padding frag. */
11696 padding_fragP->tc_frag_data.padding_address = 0;
11697 padding_size = 0;
11698 }
11699 else
11700 /* Store the expected address of the padding frag. */
11701 padding_fragP->tc_frag_data.padding_address
11702 = (fragP->fr_address + padding_size
11703 + fragP->tc_frag_data.padding_address);
11704
11705 fragP->tc_frag_data.prefix_length = padding_size;
11706
11707 /* Update the length for the current interation. */
11708 left_size = padding_size;
11709 for (next_fragP = fragP;
11710 next_fragP != padding_fragP;
11711 next_fragP = next_fragP->fr_next)
11712 if (next_fragP->fr_type == rs_machine_dependent
11713 && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11714 == BRANCH_PREFIX))
11715 {
11716 if (left_size)
11717 {
11718 int max = next_fragP->tc_frag_data.max_bytes;
11719 if (max)
11720 {
11721 int size;
11722 if (max > left_size)
11723 size = left_size;
11724 else
11725 size = max;
11726 left_size -= size;
11727 next_fragP->tc_frag_data.length = size;
11728 }
11729 }
11730 else
11731 next_fragP->tc_frag_data.length = 0;
11732 }
11733
11734 return (fragP->tc_frag_data.length
11735 - fragP->tc_frag_data.last_length);
11736 }
11737 return relax_frag (segment, fragP, stretch);
11738}
11739
ee7fcc42
AM
11740/* md_estimate_size_before_relax()
11741
11742 Called just before relax() for rs_machine_dependent frags. The x86
11743 assembler uses these frags to handle variable size jump
11744 instructions.
11745
11746 Any symbol that is now undefined will not become defined.
11747 Return the correct fr_subtype in the frag.
11748 Return the initial "guess for variable size of frag" to caller.
11749 The guess is actually the growth beyond the fixed part. Whatever
11750 we do to grow the fixed or variable part contributes to our
11751 returned value. */
11752
252b5132 11753int
7016a5d5 11754md_estimate_size_before_relax (fragS *fragP, segT segment)
252b5132 11755{
e379e5f3
L
11756 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11757 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX
11758 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
11759 {
11760 i386_classify_machine_dependent_frag (fragP);
11761 return fragP->tc_frag_data.length;
11762 }
11763
252b5132 11764 /* We've already got fragP->fr_subtype right; all we have to do is
b98ef147
AM
11765 check for un-relaxable symbols. On an ELF system, we can't relax
11766 an externally visible symbol, because it may be overridden by a
11767 shared library. */
11768 if (S_GET_SEGMENT (fragP->fr_symbol) != segment
6d249963 11769#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 11770 || (IS_ELF
8dcea932
L
11771 && !elf_symbol_resolved_in_segment_p (fragP->fr_symbol,
11772 fragP->fr_var))
fbeb56a4
DK
11773#endif
11774#if defined (OBJ_COFF) && defined (TE_PE)
7ab9ffdd 11775 || (OUTPUT_FLAVOR == bfd_target_coff_flavour
fbeb56a4 11776 && S_IS_WEAK (fragP->fr_symbol))
b98ef147
AM
11777#endif
11778 )
252b5132 11779 {
b98ef147
AM
11780 /* Symbol is undefined in this segment, or we need to keep a
11781 reloc so that weak symbols can be overridden. */
11782 int size = (fragP->fr_subtype & CODE16) ? 2 : 4;
f86103b7 11783 enum bfd_reloc_code_real reloc_type;
ee7fcc42
AM
11784 unsigned char *opcode;
11785 int old_fr_fix;
f6af82bd 11786
ee7fcc42 11787 if (fragP->fr_var != NO_RELOC)
1e9cc1c2 11788 reloc_type = (enum bfd_reloc_code_real) fragP->fr_var;
b98ef147 11789 else if (size == 2)
f6af82bd 11790 reloc_type = BFD_RELOC_16_PCREL;
bd7ab16b
L
11791#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11792 else if (need_plt32_p (fragP->fr_symbol))
11793 reloc_type = BFD_RELOC_X86_64_PLT32;
11794#endif
f6af82bd
AM
11795 else
11796 reloc_type = BFD_RELOC_32_PCREL;
252b5132 11797
ee7fcc42
AM
11798 old_fr_fix = fragP->fr_fix;
11799 opcode = (unsigned char *) fragP->fr_opcode;
11800
fddf5b5b 11801 switch (TYPE_FROM_RELAX_STATE (fragP->fr_subtype))
252b5132 11802 {
fddf5b5b
AM
11803 case UNCOND_JUMP:
11804 /* Make jmp (0xeb) a (d)word displacement jump. */
47926f60 11805 opcode[0] = 0xe9;
252b5132 11806 fragP->fr_fix += size;
062cd5e7
AS
11807 fix_new (fragP, old_fr_fix, size,
11808 fragP->fr_symbol,
11809 fragP->fr_offset, 1,
11810 reloc_type);
252b5132
RH
11811 break;
11812
fddf5b5b 11813 case COND_JUMP86:
412167cb
AM
11814 if (size == 2
11815 && (!no_cond_jump_promotion || fragP->fr_var != NO_RELOC))
fddf5b5b
AM
11816 {
11817 /* Negate the condition, and branch past an
11818 unconditional jump. */
11819 opcode[0] ^= 1;
11820 opcode[1] = 3;
11821 /* Insert an unconditional jump. */
11822 opcode[2] = 0xe9;
11823 /* We added two extra opcode bytes, and have a two byte
11824 offset. */
11825 fragP->fr_fix += 2 + 2;
062cd5e7
AS
11826 fix_new (fragP, old_fr_fix + 2, 2,
11827 fragP->fr_symbol,
11828 fragP->fr_offset, 1,
11829 reloc_type);
fddf5b5b
AM
11830 break;
11831 }
11832 /* Fall through. */
11833
11834 case COND_JUMP:
412167cb
AM
11835 if (no_cond_jump_promotion && fragP->fr_var == NO_RELOC)
11836 {
3e02c1cc
AM
11837 fixS *fixP;
11838
412167cb 11839 fragP->fr_fix += 1;
3e02c1cc
AM
11840 fixP = fix_new (fragP, old_fr_fix, 1,
11841 fragP->fr_symbol,
11842 fragP->fr_offset, 1,
11843 BFD_RELOC_8_PCREL);
11844 fixP->fx_signed = 1;
412167cb
AM
11845 break;
11846 }
93c2a809 11847
24eab124 11848 /* This changes the byte-displacement jump 0x7N
fddf5b5b 11849 to the (d)word-displacement jump 0x0f,0x8N. */
252b5132 11850 opcode[1] = opcode[0] + 0x10;
f6af82bd 11851 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
47926f60
KH
11852 /* We've added an opcode byte. */
11853 fragP->fr_fix += 1 + size;
062cd5e7
AS
11854 fix_new (fragP, old_fr_fix + 1, size,
11855 fragP->fr_symbol,
11856 fragP->fr_offset, 1,
11857 reloc_type);
252b5132 11858 break;
fddf5b5b
AM
11859
11860 default:
11861 BAD_CASE (fragP->fr_subtype);
11862 break;
252b5132
RH
11863 }
11864 frag_wane (fragP);
ee7fcc42 11865 return fragP->fr_fix - old_fr_fix;
252b5132 11866 }
93c2a809 11867
93c2a809
AM
11868 /* Guess size depending on current relax state. Initially the relax
11869 state will correspond to a short jump and we return 1, because
11870 the variable part of the frag (the branch offset) is one byte
11871 long. However, we can relax a section more than once and in that
11872 case we must either set fr_subtype back to the unrelaxed state,
11873 or return the value for the appropriate branch. */
11874 return md_relax_table[fragP->fr_subtype].rlx_length;
ee7fcc42
AM
11875}
11876
47926f60
KH
11877/* Called after relax() is finished.
11878
11879 In: Address of frag.
11880 fr_type == rs_machine_dependent.
11881 fr_subtype is what the address relaxed to.
11882
11883 Out: Any fixSs and constants are set up.
11884 Caller will turn frag into a ".space 0". */
11885
252b5132 11886void
7016a5d5
TG
11887md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec ATTRIBUTE_UNUSED,
11888 fragS *fragP)
252b5132 11889{
29b0f896 11890 unsigned char *opcode;
252b5132 11891 unsigned char *where_to_put_displacement = NULL;
847f7ad4
AM
11892 offsetT target_address;
11893 offsetT opcode_address;
252b5132 11894 unsigned int extension = 0;
847f7ad4 11895 offsetT displacement_from_opcode_start;
252b5132 11896
e379e5f3
L
11897 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11898 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING
11899 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11900 {
11901 /* Generate nop padding. */
11902 unsigned int size = fragP->tc_frag_data.length;
11903 if (size)
11904 {
11905 if (size > fragP->tc_frag_data.max_bytes)
11906 abort ();
11907
11908 if (flag_debug)
11909 {
11910 const char *msg;
11911 const char *branch = "branch";
11912 const char *prefix = "";
11913 fragS *padding_fragP;
11914 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
11915 == BRANCH_PREFIX)
11916 {
11917 padding_fragP = fragP->tc_frag_data.u.padding_fragP;
11918 switch (fragP->tc_frag_data.default_prefix)
11919 {
11920 default:
11921 abort ();
11922 break;
11923 case CS_PREFIX_OPCODE:
11924 prefix = " cs";
11925 break;
11926 case DS_PREFIX_OPCODE:
11927 prefix = " ds";
11928 break;
11929 case ES_PREFIX_OPCODE:
11930 prefix = " es";
11931 break;
11932 case FS_PREFIX_OPCODE:
11933 prefix = " fs";
11934 break;
11935 case GS_PREFIX_OPCODE:
11936 prefix = " gs";
11937 break;
11938 case SS_PREFIX_OPCODE:
11939 prefix = " ss";
11940 break;
11941 }
11942 if (padding_fragP)
11943 msg = _("%s:%u: add %d%s at 0x%llx to align "
11944 "%s within %d-byte boundary\n");
11945 else
11946 msg = _("%s:%u: add additional %d%s at 0x%llx to "
11947 "align %s within %d-byte boundary\n");
11948 }
11949 else
11950 {
11951 padding_fragP = fragP;
11952 msg = _("%s:%u: add %d%s-byte nop at 0x%llx to align "
11953 "%s within %d-byte boundary\n");
11954 }
11955
11956 if (padding_fragP)
11957 switch (padding_fragP->tc_frag_data.branch_type)
11958 {
11959 case align_branch_jcc:
11960 branch = "jcc";
11961 break;
11962 case align_branch_fused:
11963 branch = "fused jcc";
11964 break;
11965 case align_branch_jmp:
11966 branch = "jmp";
11967 break;
11968 case align_branch_call:
11969 branch = "call";
11970 break;
11971 case align_branch_indirect:
11972 branch = "indiret branch";
11973 break;
11974 case align_branch_ret:
11975 branch = "ret";
11976 break;
11977 default:
11978 break;
11979 }
11980
11981 fprintf (stdout, msg,
11982 fragP->fr_file, fragP->fr_line, size, prefix,
11983 (long long) fragP->fr_address, branch,
11984 1 << align_branch_power);
11985 }
11986 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11987 memset (fragP->fr_opcode,
11988 fragP->tc_frag_data.default_prefix, size);
11989 else
11990 i386_generate_nops (fragP, (char *) fragP->fr_opcode,
11991 size, 0);
11992 fragP->fr_fix += size;
11993 }
11994 return;
11995 }
11996
252b5132
RH
11997 opcode = (unsigned char *) fragP->fr_opcode;
11998
47926f60 11999 /* Address we want to reach in file space. */
252b5132 12000 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
252b5132 12001
47926f60 12002 /* Address opcode resides at in file space. */
252b5132
RH
12003 opcode_address = fragP->fr_address + fragP->fr_fix;
12004
47926f60 12005 /* Displacement from opcode start to fill into instruction. */
252b5132
RH
12006 displacement_from_opcode_start = target_address - opcode_address;
12007
fddf5b5b 12008 if ((fragP->fr_subtype & BIG) == 0)
252b5132 12009 {
47926f60
KH
12010 /* Don't have to change opcode. */
12011 extension = 1; /* 1 opcode + 1 displacement */
252b5132 12012 where_to_put_displacement = &opcode[1];
fddf5b5b
AM
12013 }
12014 else
12015 {
12016 if (no_cond_jump_promotion
12017 && TYPE_FROM_RELAX_STATE (fragP->fr_subtype) != UNCOND_JUMP)
4eed87de
AM
12018 as_warn_where (fragP->fr_file, fragP->fr_line,
12019 _("long jump required"));
252b5132 12020
fddf5b5b
AM
12021 switch (fragP->fr_subtype)
12022 {
12023 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG):
12024 extension = 4; /* 1 opcode + 4 displacement */
12025 opcode[0] = 0xe9;
12026 where_to_put_displacement = &opcode[1];
12027 break;
252b5132 12028
fddf5b5b
AM
12029 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16):
12030 extension = 2; /* 1 opcode + 2 displacement */
12031 opcode[0] = 0xe9;
12032 where_to_put_displacement = &opcode[1];
12033 break;
252b5132 12034
fddf5b5b
AM
12035 case ENCODE_RELAX_STATE (COND_JUMP, BIG):
12036 case ENCODE_RELAX_STATE (COND_JUMP86, BIG):
12037 extension = 5; /* 2 opcode + 4 displacement */
12038 opcode[1] = opcode[0] + 0x10;
12039 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
12040 where_to_put_displacement = &opcode[2];
12041 break;
252b5132 12042
fddf5b5b
AM
12043 case ENCODE_RELAX_STATE (COND_JUMP, BIG16):
12044 extension = 3; /* 2 opcode + 2 displacement */
12045 opcode[1] = opcode[0] + 0x10;
12046 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
12047 where_to_put_displacement = &opcode[2];
12048 break;
252b5132 12049
fddf5b5b
AM
12050 case ENCODE_RELAX_STATE (COND_JUMP86, BIG16):
12051 extension = 4;
12052 opcode[0] ^= 1;
12053 opcode[1] = 3;
12054 opcode[2] = 0xe9;
12055 where_to_put_displacement = &opcode[3];
12056 break;
12057
12058 default:
12059 BAD_CASE (fragP->fr_subtype);
12060 break;
12061 }
252b5132 12062 }
fddf5b5b 12063
7b81dfbb
AJ
12064 /* If size if less then four we are sure that the operand fits,
12065 but if it's 4, then it could be that the displacement is larger
12066 then -/+ 2GB. */
12067 if (DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype) == 4
12068 && object_64bit
12069 && ((addressT) (displacement_from_opcode_start - extension
4eed87de
AM
12070 + ((addressT) 1 << 31))
12071 > (((addressT) 2 << 31) - 1)))
7b81dfbb
AJ
12072 {
12073 as_bad_where (fragP->fr_file, fragP->fr_line,
12074 _("jump target out of range"));
12075 /* Make us emit 0. */
12076 displacement_from_opcode_start = extension;
12077 }
47926f60 12078 /* Now put displacement after opcode. */
252b5132
RH
12079 md_number_to_chars ((char *) where_to_put_displacement,
12080 (valueT) (displacement_from_opcode_start - extension),
fddf5b5b 12081 DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
252b5132
RH
12082 fragP->fr_fix += extension;
12083}
12084\f
7016a5d5 12085/* Apply a fixup (fixP) to segment data, once it has been determined
252b5132
RH
12086 by our caller that we have all the info we need to fix it up.
12087
7016a5d5
TG
12088 Parameter valP is the pointer to the value of the bits.
12089
252b5132
RH
12090 On the 386, immediates, displacements, and data pointers are all in
12091 the same (little-endian) format, so we don't need to care about which
12092 we are handling. */
12093
94f592af 12094void
7016a5d5 12095md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 12096{
94f592af 12097 char *p = fixP->fx_where + fixP->fx_frag->fr_literal;
c6682705 12098 valueT value = *valP;
252b5132 12099
f86103b7 12100#if !defined (TE_Mach)
93382f6d
AM
12101 if (fixP->fx_pcrel)
12102 {
12103 switch (fixP->fx_r_type)
12104 {
5865bb77
ILT
12105 default:
12106 break;
12107
d6ab8113
JB
12108 case BFD_RELOC_64:
12109 fixP->fx_r_type = BFD_RELOC_64_PCREL;
12110 break;
93382f6d 12111 case BFD_RELOC_32:
ae8887b5 12112 case BFD_RELOC_X86_64_32S:
93382f6d
AM
12113 fixP->fx_r_type = BFD_RELOC_32_PCREL;
12114 break;
12115 case BFD_RELOC_16:
12116 fixP->fx_r_type = BFD_RELOC_16_PCREL;
12117 break;
12118 case BFD_RELOC_8:
12119 fixP->fx_r_type = BFD_RELOC_8_PCREL;
12120 break;
12121 }
12122 }
252b5132 12123
a161fe53 12124 if (fixP->fx_addsy != NULL
31312f95 12125 && (fixP->fx_r_type == BFD_RELOC_32_PCREL
d6ab8113 12126 || fixP->fx_r_type == BFD_RELOC_64_PCREL
31312f95 12127 || fixP->fx_r_type == BFD_RELOC_16_PCREL
d258b828 12128 || fixP->fx_r_type == BFD_RELOC_8_PCREL)
31312f95 12129 && !use_rela_relocations)
252b5132 12130 {
31312f95
AM
12131 /* This is a hack. There should be a better way to handle this.
12132 This covers for the fact that bfd_install_relocation will
12133 subtract the current location (for partial_inplace, PC relative
12134 relocations); see more below. */
252b5132 12135#ifndef OBJ_AOUT
718ddfc0 12136 if (IS_ELF
252b5132
RH
12137#ifdef TE_PE
12138 || OUTPUT_FLAVOR == bfd_target_coff_flavour
12139#endif
12140 )
12141 value += fixP->fx_where + fixP->fx_frag->fr_address;
12142#endif
12143#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 12144 if (IS_ELF)
252b5132 12145 {
6539b54b 12146 segT sym_seg = S_GET_SEGMENT (fixP->fx_addsy);
2f66722d 12147
6539b54b 12148 if ((sym_seg == seg
2f66722d 12149 || (symbol_section_p (fixP->fx_addsy)
6539b54b 12150 && sym_seg != absolute_section))
af65af87 12151 && !generic_force_reloc (fixP))
2f66722d
AM
12152 {
12153 /* Yes, we add the values in twice. This is because
6539b54b
AM
12154 bfd_install_relocation subtracts them out again. I think
12155 bfd_install_relocation is broken, but I don't dare change
2f66722d
AM
12156 it. FIXME. */
12157 value += fixP->fx_where + fixP->fx_frag->fr_address;
12158 }
252b5132
RH
12159 }
12160#endif
12161#if defined (OBJ_COFF) && defined (TE_PE)
977cdf5a
NC
12162 /* For some reason, the PE format does not store a
12163 section address offset for a PC relative symbol. */
12164 if (S_GET_SEGMENT (fixP->fx_addsy) != seg
7be1c489 12165 || S_IS_WEAK (fixP->fx_addsy))
252b5132
RH
12166 value += md_pcrel_from (fixP);
12167#endif
12168 }
fbeb56a4 12169#if defined (OBJ_COFF) && defined (TE_PE)
f01c1a09
NC
12170 if (fixP->fx_addsy != NULL
12171 && S_IS_WEAK (fixP->fx_addsy)
12172 /* PR 16858: Do not modify weak function references. */
12173 && ! fixP->fx_pcrel)
fbeb56a4 12174 {
296a8689
NC
12175#if !defined (TE_PEP)
12176 /* For x86 PE weak function symbols are neither PC-relative
12177 nor do they set S_IS_FUNCTION. So the only reliable way
12178 to detect them is to check the flags of their containing
12179 section. */
12180 if (S_GET_SEGMENT (fixP->fx_addsy) != NULL
12181 && S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_CODE)
12182 ;
12183 else
12184#endif
fbeb56a4
DK
12185 value -= S_GET_VALUE (fixP->fx_addsy);
12186 }
12187#endif
252b5132
RH
12188
12189 /* Fix a few things - the dynamic linker expects certain values here,
0234cb7c 12190 and we must not disappoint it. */
252b5132 12191#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 12192 if (IS_ELF && fixP->fx_addsy)
47926f60
KH
12193 switch (fixP->fx_r_type)
12194 {
12195 case BFD_RELOC_386_PLT32:
3e73aa7c 12196 case BFD_RELOC_X86_64_PLT32:
b9519cfe
L
12197 /* Make the jump instruction point to the address of the operand.
12198 At runtime we merely add the offset to the actual PLT entry.
12199 NB: Subtract the offset size only for jump instructions. */
12200 if (fixP->fx_pcrel)
12201 value = -4;
47926f60 12202 break;
31312f95 12203
13ae64f3
JJ
12204 case BFD_RELOC_386_TLS_GD:
12205 case BFD_RELOC_386_TLS_LDM:
13ae64f3 12206 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
12207 case BFD_RELOC_386_TLS_IE:
12208 case BFD_RELOC_386_TLS_GOTIE:
67a4f2b7 12209 case BFD_RELOC_386_TLS_GOTDESC:
bffbf940
JJ
12210 case BFD_RELOC_X86_64_TLSGD:
12211 case BFD_RELOC_X86_64_TLSLD:
12212 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7 12213 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
00f7efb6
JJ
12214 value = 0; /* Fully resolved at runtime. No addend. */
12215 /* Fallthrough */
12216 case BFD_RELOC_386_TLS_LE:
12217 case BFD_RELOC_386_TLS_LDO_32:
12218 case BFD_RELOC_386_TLS_LE_32:
12219 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 12220 case BFD_RELOC_X86_64_DTPOFF64:
00f7efb6 12221 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113 12222 case BFD_RELOC_X86_64_TPOFF64:
00f7efb6
JJ
12223 S_SET_THREAD_LOCAL (fixP->fx_addsy);
12224 break;
12225
67a4f2b7
AO
12226 case BFD_RELOC_386_TLS_DESC_CALL:
12227 case BFD_RELOC_X86_64_TLSDESC_CALL:
12228 value = 0; /* Fully resolved at runtime. No addend. */
12229 S_SET_THREAD_LOCAL (fixP->fx_addsy);
12230 fixP->fx_done = 0;
12231 return;
12232
47926f60
KH
12233 case BFD_RELOC_VTABLE_INHERIT:
12234 case BFD_RELOC_VTABLE_ENTRY:
12235 fixP->fx_done = 0;
94f592af 12236 return;
47926f60
KH
12237
12238 default:
12239 break;
12240 }
12241#endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) */
c6682705 12242 *valP = value;
f86103b7 12243#endif /* !defined (TE_Mach) */
3e73aa7c 12244
3e73aa7c 12245 /* Are we finished with this relocation now? */
c6682705 12246 if (fixP->fx_addsy == NULL)
3e73aa7c 12247 fixP->fx_done = 1;
fbeb56a4
DK
12248#if defined (OBJ_COFF) && defined (TE_PE)
12249 else if (fixP->fx_addsy != NULL && S_IS_WEAK (fixP->fx_addsy))
12250 {
12251 fixP->fx_done = 0;
12252 /* Remember value for tc_gen_reloc. */
12253 fixP->fx_addnumber = value;
12254 /* Clear out the frag for now. */
12255 value = 0;
12256 }
12257#endif
3e73aa7c
JH
12258 else if (use_rela_relocations)
12259 {
12260 fixP->fx_no_overflow = 1;
062cd5e7
AS
12261 /* Remember value for tc_gen_reloc. */
12262 fixP->fx_addnumber = value;
3e73aa7c
JH
12263 value = 0;
12264 }
f86103b7 12265
94f592af 12266 md_number_to_chars (p, value, fixP->fx_size);
252b5132 12267}
252b5132 12268\f
6d4af3c2 12269const char *
499ac353 12270md_atof (int type, char *litP, int *sizeP)
252b5132 12271{
499ac353
NC
12272 /* This outputs the LITTLENUMs in REVERSE order;
12273 in accord with the bigendian 386. */
12274 return ieee_md_atof (type, litP, sizeP, FALSE);
252b5132
RH
12275}
12276\f
2d545b82 12277static char output_invalid_buf[sizeof (unsigned char) * 2 + 6];
252b5132 12278
252b5132 12279static char *
e3bb37b5 12280output_invalid (int c)
252b5132 12281{
3882b010 12282 if (ISPRINT (c))
f9f21a03
L
12283 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
12284 "'%c'", c);
252b5132 12285 else
f9f21a03 12286 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
2d545b82 12287 "(0x%x)", (unsigned char) c);
252b5132
RH
12288 return output_invalid_buf;
12289}
12290
af6bdddf 12291/* REG_STRING starts *before* REGISTER_PREFIX. */
252b5132
RH
12292
12293static const reg_entry *
4d1bb795 12294parse_real_register (char *reg_string, char **end_op)
252b5132 12295{
af6bdddf
AM
12296 char *s = reg_string;
12297 char *p;
252b5132
RH
12298 char reg_name_given[MAX_REG_NAME_SIZE + 1];
12299 const reg_entry *r;
12300
12301 /* Skip possible REGISTER_PREFIX and possible whitespace. */
12302 if (*s == REGISTER_PREFIX)
12303 ++s;
12304
12305 if (is_space_char (*s))
12306 ++s;
12307
12308 p = reg_name_given;
af6bdddf 12309 while ((*p++ = register_chars[(unsigned char) *s]) != '\0')
252b5132
RH
12310 {
12311 if (p >= reg_name_given + MAX_REG_NAME_SIZE)
af6bdddf
AM
12312 return (const reg_entry *) NULL;
12313 s++;
252b5132
RH
12314 }
12315
6588847e
DN
12316 /* For naked regs, make sure that we are not dealing with an identifier.
12317 This prevents confusing an identifier like `eax_var' with register
12318 `eax'. */
12319 if (allow_naked_reg && identifier_chars[(unsigned char) *s])
12320 return (const reg_entry *) NULL;
12321
af6bdddf 12322 *end_op = s;
252b5132
RH
12323
12324 r = (const reg_entry *) hash_find (reg_hash, reg_name_given);
12325
5f47d35b 12326 /* Handle floating point regs, allowing spaces in the (i) part. */
47926f60 12327 if (r == i386_regtab /* %st is first entry of table */)
5f47d35b 12328 {
0e0eea78
JB
12329 if (!cpu_arch_flags.bitfield.cpu8087
12330 && !cpu_arch_flags.bitfield.cpu287
12331 && !cpu_arch_flags.bitfield.cpu387)
12332 return (const reg_entry *) NULL;
12333
5f47d35b
AM
12334 if (is_space_char (*s))
12335 ++s;
12336 if (*s == '(')
12337 {
af6bdddf 12338 ++s;
5f47d35b
AM
12339 if (is_space_char (*s))
12340 ++s;
12341 if (*s >= '0' && *s <= '7')
12342 {
db557034 12343 int fpr = *s - '0';
af6bdddf 12344 ++s;
5f47d35b
AM
12345 if (is_space_char (*s))
12346 ++s;
12347 if (*s == ')')
12348 {
12349 *end_op = s + 1;
1e9cc1c2 12350 r = (const reg_entry *) hash_find (reg_hash, "st(0)");
db557034
AM
12351 know (r);
12352 return r + fpr;
5f47d35b 12353 }
5f47d35b 12354 }
47926f60 12355 /* We have "%st(" then garbage. */
5f47d35b
AM
12356 return (const reg_entry *) NULL;
12357 }
12358 }
12359
a60de03c
JB
12360 if (r == NULL || allow_pseudo_reg)
12361 return r;
12362
0dfbf9d7 12363 if (operand_type_all_zero (&r->reg_type))
a60de03c
JB
12364 return (const reg_entry *) NULL;
12365
dc821c5f 12366 if ((r->reg_type.bitfield.dword
00cee14f 12367 || (r->reg_type.bitfield.class == SReg && r->reg_num > 3)
4a5c67ed
JB
12368 || r->reg_type.bitfield.class == RegCR
12369 || r->reg_type.bitfield.class == RegDR
12370 || r->reg_type.bitfield.class == RegTR)
192dc9c6
JB
12371 && !cpu_arch_flags.bitfield.cpui386)
12372 return (const reg_entry *) NULL;
12373
3528c362 12374 if (r->reg_type.bitfield.class == RegMMX && !cpu_arch_flags.bitfield.cpummx)
192dc9c6
JB
12375 return (const reg_entry *) NULL;
12376
6e041cf4
JB
12377 if (!cpu_arch_flags.bitfield.cpuavx512f)
12378 {
f74a6307
JB
12379 if (r->reg_type.bitfield.zmmword
12380 || r->reg_type.bitfield.class == RegMask)
6e041cf4 12381 return (const reg_entry *) NULL;
40f12533 12382
6e041cf4
JB
12383 if (!cpu_arch_flags.bitfield.cpuavx)
12384 {
12385 if (r->reg_type.bitfield.ymmword)
12386 return (const reg_entry *) NULL;
1848e567 12387
6e041cf4
JB
12388 if (!cpu_arch_flags.bitfield.cpusse && r->reg_type.bitfield.xmmword)
12389 return (const reg_entry *) NULL;
12390 }
12391 }
43234a1e 12392
f74a6307 12393 if (r->reg_type.bitfield.class == RegBND && !cpu_arch_flags.bitfield.cpumpx)
1adf7f56
JB
12394 return (const reg_entry *) NULL;
12395
db51cc60 12396 /* Don't allow fake index register unless allow_index_reg isn't 0. */
e968fc9b 12397 if (!allow_index_reg && r->reg_num == RegIZ)
db51cc60
L
12398 return (const reg_entry *) NULL;
12399
1d3f8286
JB
12400 /* Upper 16 vector registers are only available with VREX in 64bit
12401 mode, and require EVEX encoding. */
12402 if (r->reg_flags & RegVRex)
43234a1e 12403 {
e951d5ca 12404 if (!cpu_arch_flags.bitfield.cpuavx512f
43234a1e
L
12405 || flag_code != CODE_64BIT)
12406 return (const reg_entry *) NULL;
1d3f8286
JB
12407
12408 i.vec_encoding = vex_encoding_evex;
43234a1e
L
12409 }
12410
4787f4a5 12411 if (((r->reg_flags & (RegRex64 | RegRex)) || r->reg_type.bitfield.qword)
4a5c67ed 12412 && (!cpu_arch_flags.bitfield.cpulm || r->reg_type.bitfield.class != RegCR)
1ae00879 12413 && flag_code != CODE_64BIT)
20f0a1fc 12414 return (const reg_entry *) NULL;
1ae00879 12415
00cee14f
JB
12416 if (r->reg_type.bitfield.class == SReg && r->reg_num == RegFlat
12417 && !intel_syntax)
b7240065
JB
12418 return (const reg_entry *) NULL;
12419
252b5132
RH
12420 return r;
12421}
4d1bb795
JB
12422
12423/* REG_STRING starts *before* REGISTER_PREFIX. */
12424
12425static const reg_entry *
12426parse_register (char *reg_string, char **end_op)
12427{
12428 const reg_entry *r;
12429
12430 if (*reg_string == REGISTER_PREFIX || allow_naked_reg)
12431 r = parse_real_register (reg_string, end_op);
12432 else
12433 r = NULL;
12434 if (!r)
12435 {
12436 char *save = input_line_pointer;
12437 char c;
12438 symbolS *symbolP;
12439
12440 input_line_pointer = reg_string;
d02603dc 12441 c = get_symbol_name (&reg_string);
4d1bb795
JB
12442 symbolP = symbol_find (reg_string);
12443 if (symbolP && S_GET_SEGMENT (symbolP) == reg_section)
12444 {
12445 const expressionS *e = symbol_get_value_expression (symbolP);
12446
0398aac5 12447 know (e->X_op == O_register);
4eed87de 12448 know (e->X_add_number >= 0
c3fe08fa 12449 && (valueT) e->X_add_number < i386_regtab_size);
4d1bb795 12450 r = i386_regtab + e->X_add_number;
d3bb6b49 12451 if ((r->reg_flags & RegVRex))
86fa6981 12452 i.vec_encoding = vex_encoding_evex;
4d1bb795
JB
12453 *end_op = input_line_pointer;
12454 }
12455 *input_line_pointer = c;
12456 input_line_pointer = save;
12457 }
12458 return r;
12459}
12460
12461int
12462i386_parse_name (char *name, expressionS *e, char *nextcharP)
12463{
12464 const reg_entry *r;
12465 char *end = input_line_pointer;
12466
12467 *end = *nextcharP;
12468 r = parse_register (name, &input_line_pointer);
12469 if (r && end <= input_line_pointer)
12470 {
12471 *nextcharP = *input_line_pointer;
12472 *input_line_pointer = 0;
12473 e->X_op = O_register;
12474 e->X_add_number = r - i386_regtab;
12475 return 1;
12476 }
12477 input_line_pointer = end;
12478 *end = 0;
ee86248c 12479 return intel_syntax ? i386_intel_parse_name (name, e) : 0;
4d1bb795
JB
12480}
12481
12482void
12483md_operand (expressionS *e)
12484{
ee86248c
JB
12485 char *end;
12486 const reg_entry *r;
4d1bb795 12487
ee86248c
JB
12488 switch (*input_line_pointer)
12489 {
12490 case REGISTER_PREFIX:
12491 r = parse_real_register (input_line_pointer, &end);
4d1bb795
JB
12492 if (r)
12493 {
12494 e->X_op = O_register;
12495 e->X_add_number = r - i386_regtab;
12496 input_line_pointer = end;
12497 }
ee86248c
JB
12498 break;
12499
12500 case '[':
9c2799c2 12501 gas_assert (intel_syntax);
ee86248c
JB
12502 end = input_line_pointer++;
12503 expression (e);
12504 if (*input_line_pointer == ']')
12505 {
12506 ++input_line_pointer;
12507 e->X_op_symbol = make_expr_symbol (e);
12508 e->X_add_symbol = NULL;
12509 e->X_add_number = 0;
12510 e->X_op = O_index;
12511 }
12512 else
12513 {
12514 e->X_op = O_absent;
12515 input_line_pointer = end;
12516 }
12517 break;
4d1bb795
JB
12518 }
12519}
12520
252b5132 12521\f
4cc782b5 12522#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
b6f8c7c4 12523const char *md_shortopts = "kVQ:sqnO::";
252b5132 12524#else
b6f8c7c4 12525const char *md_shortopts = "qnO::";
252b5132 12526#endif
6e0b89ee 12527
3e73aa7c 12528#define OPTION_32 (OPTION_MD_BASE + 0)
b3b91714
AM
12529#define OPTION_64 (OPTION_MD_BASE + 1)
12530#define OPTION_DIVIDE (OPTION_MD_BASE + 2)
9103f4f4
L
12531#define OPTION_MARCH (OPTION_MD_BASE + 3)
12532#define OPTION_MTUNE (OPTION_MD_BASE + 4)
1efbbeb4
L
12533#define OPTION_MMNEMONIC (OPTION_MD_BASE + 5)
12534#define OPTION_MSYNTAX (OPTION_MD_BASE + 6)
12535#define OPTION_MINDEX_REG (OPTION_MD_BASE + 7)
12536#define OPTION_MNAKED_REG (OPTION_MD_BASE + 8)
bd5dea88 12537#define OPTION_MRELAX_RELOCATIONS (OPTION_MD_BASE + 9)
c0f3af97 12538#define OPTION_MSSE2AVX (OPTION_MD_BASE + 10)
daf50ae7 12539#define OPTION_MSSE_CHECK (OPTION_MD_BASE + 11)
7bab8ab5
JB
12540#define OPTION_MOPERAND_CHECK (OPTION_MD_BASE + 12)
12541#define OPTION_MAVXSCALAR (OPTION_MD_BASE + 13)
12542#define OPTION_X32 (OPTION_MD_BASE + 14)
7e8b059b 12543#define OPTION_MADD_BND_PREFIX (OPTION_MD_BASE + 15)
43234a1e
L
12544#define OPTION_MEVEXLIG (OPTION_MD_BASE + 16)
12545#define OPTION_MEVEXWIG (OPTION_MD_BASE + 17)
167ad85b 12546#define OPTION_MBIG_OBJ (OPTION_MD_BASE + 18)
d1982f93 12547#define OPTION_MOMIT_LOCK_PREFIX (OPTION_MD_BASE + 19)
d3d3c6db 12548#define OPTION_MEVEXRCIG (OPTION_MD_BASE + 20)
8dcea932 12549#define OPTION_MSHARED (OPTION_MD_BASE + 21)
5db04b09
L
12550#define OPTION_MAMD64 (OPTION_MD_BASE + 22)
12551#define OPTION_MINTEL64 (OPTION_MD_BASE + 23)
e4e00185 12552#define OPTION_MFENCE_AS_LOCK_ADD (OPTION_MD_BASE + 24)
b4a3a7b4 12553#define OPTION_X86_USED_NOTE (OPTION_MD_BASE + 25)
03751133 12554#define OPTION_MVEXWIG (OPTION_MD_BASE + 26)
e379e5f3
L
12555#define OPTION_MALIGN_BRANCH_BOUNDARY (OPTION_MD_BASE + 27)
12556#define OPTION_MALIGN_BRANCH_PREFIX_SIZE (OPTION_MD_BASE + 28)
12557#define OPTION_MALIGN_BRANCH (OPTION_MD_BASE + 29)
76cf450b 12558#define OPTION_MBRANCHES_WITH_32B_BOUNDARIES (OPTION_MD_BASE + 30)
ae531041
L
12559#define OPTION_MLFENCE_AFTER_LOAD (OPTION_MD_BASE + 31)
12560#define OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH (OPTION_MD_BASE + 32)
12561#define OPTION_MLFENCE_BEFORE_RET (OPTION_MD_BASE + 33)
b3b91714 12562
99ad8390
NC
12563struct option md_longopts[] =
12564{
3e73aa7c 12565 {"32", no_argument, NULL, OPTION_32},
321098a5 12566#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 12567 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c 12568 {"64", no_argument, NULL, OPTION_64},
351f65ca
L
12569#endif
12570#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 12571 {"x32", no_argument, NULL, OPTION_X32},
8dcea932 12572 {"mshared", no_argument, NULL, OPTION_MSHARED},
b4a3a7b4 12573 {"mx86-used-note", required_argument, NULL, OPTION_X86_USED_NOTE},
6e0b89ee 12574#endif
b3b91714 12575 {"divide", no_argument, NULL, OPTION_DIVIDE},
9103f4f4
L
12576 {"march", required_argument, NULL, OPTION_MARCH},
12577 {"mtune", required_argument, NULL, OPTION_MTUNE},
1efbbeb4
L
12578 {"mmnemonic", required_argument, NULL, OPTION_MMNEMONIC},
12579 {"msyntax", required_argument, NULL, OPTION_MSYNTAX},
12580 {"mindex-reg", no_argument, NULL, OPTION_MINDEX_REG},
12581 {"mnaked-reg", no_argument, NULL, OPTION_MNAKED_REG},
c0f3af97 12582 {"msse2avx", no_argument, NULL, OPTION_MSSE2AVX},
daf50ae7 12583 {"msse-check", required_argument, NULL, OPTION_MSSE_CHECK},
7bab8ab5 12584 {"moperand-check", required_argument, NULL, OPTION_MOPERAND_CHECK},
539f890d 12585 {"mavxscalar", required_argument, NULL, OPTION_MAVXSCALAR},
03751133 12586 {"mvexwig", required_argument, NULL, OPTION_MVEXWIG},
7e8b059b 12587 {"madd-bnd-prefix", no_argument, NULL, OPTION_MADD_BND_PREFIX},
43234a1e
L
12588 {"mevexlig", required_argument, NULL, OPTION_MEVEXLIG},
12589 {"mevexwig", required_argument, NULL, OPTION_MEVEXWIG},
167ad85b
TG
12590# if defined (TE_PE) || defined (TE_PEP)
12591 {"mbig-obj", no_argument, NULL, OPTION_MBIG_OBJ},
12592#endif
d1982f93 12593 {"momit-lock-prefix", required_argument, NULL, OPTION_MOMIT_LOCK_PREFIX},
e4e00185 12594 {"mfence-as-lock-add", required_argument, NULL, OPTION_MFENCE_AS_LOCK_ADD},
0cb4071e 12595 {"mrelax-relocations", required_argument, NULL, OPTION_MRELAX_RELOCATIONS},
d3d3c6db 12596 {"mevexrcig", required_argument, NULL, OPTION_MEVEXRCIG},
e379e5f3
L
12597 {"malign-branch-boundary", required_argument, NULL, OPTION_MALIGN_BRANCH_BOUNDARY},
12598 {"malign-branch-prefix-size", required_argument, NULL, OPTION_MALIGN_BRANCH_PREFIX_SIZE},
12599 {"malign-branch", required_argument, NULL, OPTION_MALIGN_BRANCH},
76cf450b 12600 {"mbranches-within-32B-boundaries", no_argument, NULL, OPTION_MBRANCHES_WITH_32B_BOUNDARIES},
ae531041
L
12601 {"mlfence-after-load", required_argument, NULL, OPTION_MLFENCE_AFTER_LOAD},
12602 {"mlfence-before-indirect-branch", required_argument, NULL,
12603 OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH},
12604 {"mlfence-before-ret", required_argument, NULL, OPTION_MLFENCE_BEFORE_RET},
5db04b09
L
12605 {"mamd64", no_argument, NULL, OPTION_MAMD64},
12606 {"mintel64", no_argument, NULL, OPTION_MINTEL64},
252b5132
RH
12607 {NULL, no_argument, NULL, 0}
12608};
12609size_t md_longopts_size = sizeof (md_longopts);
12610
12611int
17b9d67d 12612md_parse_option (int c, const char *arg)
252b5132 12613{
91d6fa6a 12614 unsigned int j;
e379e5f3 12615 char *arch, *next, *saved, *type;
9103f4f4 12616
252b5132
RH
12617 switch (c)
12618 {
12b55ccc
L
12619 case 'n':
12620 optimize_align_code = 0;
12621 break;
12622
a38cf1db
AM
12623 case 'q':
12624 quiet_warnings = 1;
252b5132
RH
12625 break;
12626
12627#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
a38cf1db
AM
12628 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
12629 should be emitted or not. FIXME: Not implemented. */
12630 case 'Q':
d4693039
JB
12631 if ((arg[0] != 'y' && arg[0] != 'n') || arg[1])
12632 return 0;
252b5132
RH
12633 break;
12634
12635 /* -V: SVR4 argument to print version ID. */
12636 case 'V':
12637 print_version_id ();
12638 break;
12639
a38cf1db
AM
12640 /* -k: Ignore for FreeBSD compatibility. */
12641 case 'k':
252b5132 12642 break;
4cc782b5
ILT
12643
12644 case 's':
12645 /* -s: On i386 Solaris, this tells the native assembler to use
29b0f896 12646 .stab instead of .stab.excl. We always use .stab anyhow. */
4cc782b5 12647 break;
8dcea932
L
12648
12649 case OPTION_MSHARED:
12650 shared = 1;
12651 break;
b4a3a7b4
L
12652
12653 case OPTION_X86_USED_NOTE:
12654 if (strcasecmp (arg, "yes") == 0)
12655 x86_used_note = 1;
12656 else if (strcasecmp (arg, "no") == 0)
12657 x86_used_note = 0;
12658 else
12659 as_fatal (_("invalid -mx86-used-note= option: `%s'"), arg);
12660 break;
12661
12662
99ad8390 12663#endif
321098a5 12664#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 12665 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c
JH
12666 case OPTION_64:
12667 {
12668 const char **list, **l;
12669
3e73aa7c
JH
12670 list = bfd_target_list ();
12671 for (l = list; *l != NULL; l++)
8620418b 12672 if (CONST_STRNEQ (*l, "elf64-x86-64")
99ad8390
NC
12673 || strcmp (*l, "coff-x86-64") == 0
12674 || strcmp (*l, "pe-x86-64") == 0
d382c579
TG
12675 || strcmp (*l, "pei-x86-64") == 0
12676 || strcmp (*l, "mach-o-x86-64") == 0)
6e0b89ee
AM
12677 {
12678 default_arch = "x86_64";
12679 break;
12680 }
3e73aa7c 12681 if (*l == NULL)
2b5d6a91 12682 as_fatal (_("no compiled in support for x86_64"));
3e73aa7c
JH
12683 free (list);
12684 }
12685 break;
12686#endif
252b5132 12687
351f65ca 12688#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 12689 case OPTION_X32:
351f65ca
L
12690 if (IS_ELF)
12691 {
12692 const char **list, **l;
12693
12694 list = bfd_target_list ();
12695 for (l = list; *l != NULL; l++)
12696 if (CONST_STRNEQ (*l, "elf32-x86-64"))
12697 {
12698 default_arch = "x86_64:32";
12699 break;
12700 }
12701 if (*l == NULL)
2b5d6a91 12702 as_fatal (_("no compiled in support for 32bit x86_64"));
351f65ca
L
12703 free (list);
12704 }
12705 else
12706 as_fatal (_("32bit x86_64 is only supported for ELF"));
12707 break;
12708#endif
12709
6e0b89ee
AM
12710 case OPTION_32:
12711 default_arch = "i386";
12712 break;
12713
b3b91714
AM
12714 case OPTION_DIVIDE:
12715#ifdef SVR4_COMMENT_CHARS
12716 {
12717 char *n, *t;
12718 const char *s;
12719
add39d23 12720 n = XNEWVEC (char, strlen (i386_comment_chars) + 1);
b3b91714
AM
12721 t = n;
12722 for (s = i386_comment_chars; *s != '\0'; s++)
12723 if (*s != '/')
12724 *t++ = *s;
12725 *t = '\0';
12726 i386_comment_chars = n;
12727 }
12728#endif
12729 break;
12730
9103f4f4 12731 case OPTION_MARCH:
293f5f65
L
12732 saved = xstrdup (arg);
12733 arch = saved;
12734 /* Allow -march=+nosse. */
12735 if (*arch == '+')
12736 arch++;
6305a203 12737 do
9103f4f4 12738 {
6305a203 12739 if (*arch == '.')
2b5d6a91 12740 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
12741 next = strchr (arch, '+');
12742 if (next)
12743 *next++ = '\0';
91d6fa6a 12744 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 12745 {
91d6fa6a 12746 if (strcmp (arch, cpu_arch [j].name) == 0)
ccc9c027 12747 {
6305a203 12748 /* Processor. */
1ded5609
JB
12749 if (! cpu_arch[j].flags.bitfield.cpui386)
12750 continue;
12751
91d6fa6a 12752 cpu_arch_name = cpu_arch[j].name;
6305a203 12753 cpu_sub_arch_name = NULL;
91d6fa6a
NC
12754 cpu_arch_flags = cpu_arch[j].flags;
12755 cpu_arch_isa = cpu_arch[j].type;
12756 cpu_arch_isa_flags = cpu_arch[j].flags;
6305a203
L
12757 if (!cpu_arch_tune_set)
12758 {
12759 cpu_arch_tune = cpu_arch_isa;
12760 cpu_arch_tune_flags = cpu_arch_isa_flags;
12761 }
12762 break;
12763 }
91d6fa6a
NC
12764 else if (*cpu_arch [j].name == '.'
12765 && strcmp (arch, cpu_arch [j].name + 1) == 0)
6305a203 12766 {
33eaf5de 12767 /* ISA extension. */
6305a203 12768 i386_cpu_flags flags;
309d3373 12769
293f5f65
L
12770 flags = cpu_flags_or (cpu_arch_flags,
12771 cpu_arch[j].flags);
81486035 12772
5b64d091 12773 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
6305a203
L
12774 {
12775 if (cpu_sub_arch_name)
12776 {
12777 char *name = cpu_sub_arch_name;
12778 cpu_sub_arch_name = concat (name,
91d6fa6a 12779 cpu_arch[j].name,
1bf57e9f 12780 (const char *) NULL);
6305a203
L
12781 free (name);
12782 }
12783 else
91d6fa6a 12784 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
6305a203 12785 cpu_arch_flags = flags;
a586129e 12786 cpu_arch_isa_flags = flags;
6305a203 12787 }
0089dace
L
12788 else
12789 cpu_arch_isa_flags
12790 = cpu_flags_or (cpu_arch_isa_flags,
12791 cpu_arch[j].flags);
6305a203 12792 break;
ccc9c027 12793 }
9103f4f4 12794 }
6305a203 12795
293f5f65
L
12796 if (j >= ARRAY_SIZE (cpu_arch))
12797 {
33eaf5de 12798 /* Disable an ISA extension. */
293f5f65
L
12799 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
12800 if (strcmp (arch, cpu_noarch [j].name) == 0)
12801 {
12802 i386_cpu_flags flags;
12803
12804 flags = cpu_flags_and_not (cpu_arch_flags,
12805 cpu_noarch[j].flags);
12806 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
12807 {
12808 if (cpu_sub_arch_name)
12809 {
12810 char *name = cpu_sub_arch_name;
12811 cpu_sub_arch_name = concat (arch,
12812 (const char *) NULL);
12813 free (name);
12814 }
12815 else
12816 cpu_sub_arch_name = xstrdup (arch);
12817 cpu_arch_flags = flags;
12818 cpu_arch_isa_flags = flags;
12819 }
12820 break;
12821 }
12822
12823 if (j >= ARRAY_SIZE (cpu_noarch))
12824 j = ARRAY_SIZE (cpu_arch);
12825 }
12826
91d6fa6a 12827 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 12828 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
12829
12830 arch = next;
9103f4f4 12831 }
293f5f65
L
12832 while (next != NULL);
12833 free (saved);
9103f4f4
L
12834 break;
12835
12836 case OPTION_MTUNE:
12837 if (*arg == '.')
2b5d6a91 12838 as_fatal (_("invalid -mtune= option: `%s'"), arg);
91d6fa6a 12839 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 12840 {
91d6fa6a 12841 if (strcmp (arg, cpu_arch [j].name) == 0)
9103f4f4 12842 {
ccc9c027 12843 cpu_arch_tune_set = 1;
91d6fa6a
NC
12844 cpu_arch_tune = cpu_arch [j].type;
12845 cpu_arch_tune_flags = cpu_arch[j].flags;
9103f4f4
L
12846 break;
12847 }
12848 }
91d6fa6a 12849 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 12850 as_fatal (_("invalid -mtune= option: `%s'"), arg);
9103f4f4
L
12851 break;
12852
1efbbeb4
L
12853 case OPTION_MMNEMONIC:
12854 if (strcasecmp (arg, "att") == 0)
12855 intel_mnemonic = 0;
12856 else if (strcasecmp (arg, "intel") == 0)
12857 intel_mnemonic = 1;
12858 else
2b5d6a91 12859 as_fatal (_("invalid -mmnemonic= option: `%s'"), arg);
1efbbeb4
L
12860 break;
12861
12862 case OPTION_MSYNTAX:
12863 if (strcasecmp (arg, "att") == 0)
12864 intel_syntax = 0;
12865 else if (strcasecmp (arg, "intel") == 0)
12866 intel_syntax = 1;
12867 else
2b5d6a91 12868 as_fatal (_("invalid -msyntax= option: `%s'"), arg);
1efbbeb4
L
12869 break;
12870
12871 case OPTION_MINDEX_REG:
12872 allow_index_reg = 1;
12873 break;
12874
12875 case OPTION_MNAKED_REG:
12876 allow_naked_reg = 1;
12877 break;
12878
c0f3af97
L
12879 case OPTION_MSSE2AVX:
12880 sse2avx = 1;
12881 break;
12882
daf50ae7
L
12883 case OPTION_MSSE_CHECK:
12884 if (strcasecmp (arg, "error") == 0)
7bab8ab5 12885 sse_check = check_error;
daf50ae7 12886 else if (strcasecmp (arg, "warning") == 0)
7bab8ab5 12887 sse_check = check_warning;
daf50ae7 12888 else if (strcasecmp (arg, "none") == 0)
7bab8ab5 12889 sse_check = check_none;
daf50ae7 12890 else
2b5d6a91 12891 as_fatal (_("invalid -msse-check= option: `%s'"), arg);
daf50ae7
L
12892 break;
12893
7bab8ab5
JB
12894 case OPTION_MOPERAND_CHECK:
12895 if (strcasecmp (arg, "error") == 0)
12896 operand_check = check_error;
12897 else if (strcasecmp (arg, "warning") == 0)
12898 operand_check = check_warning;
12899 else if (strcasecmp (arg, "none") == 0)
12900 operand_check = check_none;
12901 else
12902 as_fatal (_("invalid -moperand-check= option: `%s'"), arg);
12903 break;
12904
539f890d
L
12905 case OPTION_MAVXSCALAR:
12906 if (strcasecmp (arg, "128") == 0)
12907 avxscalar = vex128;
12908 else if (strcasecmp (arg, "256") == 0)
12909 avxscalar = vex256;
12910 else
2b5d6a91 12911 as_fatal (_("invalid -mavxscalar= option: `%s'"), arg);
539f890d
L
12912 break;
12913
03751133
L
12914 case OPTION_MVEXWIG:
12915 if (strcmp (arg, "0") == 0)
40c9c8de 12916 vexwig = vexw0;
03751133 12917 else if (strcmp (arg, "1") == 0)
40c9c8de 12918 vexwig = vexw1;
03751133
L
12919 else
12920 as_fatal (_("invalid -mvexwig= option: `%s'"), arg);
12921 break;
12922
7e8b059b
L
12923 case OPTION_MADD_BND_PREFIX:
12924 add_bnd_prefix = 1;
12925 break;
12926
43234a1e
L
12927 case OPTION_MEVEXLIG:
12928 if (strcmp (arg, "128") == 0)
12929 evexlig = evexl128;
12930 else if (strcmp (arg, "256") == 0)
12931 evexlig = evexl256;
12932 else if (strcmp (arg, "512") == 0)
12933 evexlig = evexl512;
12934 else
12935 as_fatal (_("invalid -mevexlig= option: `%s'"), arg);
12936 break;
12937
d3d3c6db
IT
12938 case OPTION_MEVEXRCIG:
12939 if (strcmp (arg, "rne") == 0)
12940 evexrcig = rne;
12941 else if (strcmp (arg, "rd") == 0)
12942 evexrcig = rd;
12943 else if (strcmp (arg, "ru") == 0)
12944 evexrcig = ru;
12945 else if (strcmp (arg, "rz") == 0)
12946 evexrcig = rz;
12947 else
12948 as_fatal (_("invalid -mevexrcig= option: `%s'"), arg);
12949 break;
12950
43234a1e
L
12951 case OPTION_MEVEXWIG:
12952 if (strcmp (arg, "0") == 0)
12953 evexwig = evexw0;
12954 else if (strcmp (arg, "1") == 0)
12955 evexwig = evexw1;
12956 else
12957 as_fatal (_("invalid -mevexwig= option: `%s'"), arg);
12958 break;
12959
167ad85b
TG
12960# if defined (TE_PE) || defined (TE_PEP)
12961 case OPTION_MBIG_OBJ:
12962 use_big_obj = 1;
12963 break;
12964#endif
12965
d1982f93 12966 case OPTION_MOMIT_LOCK_PREFIX:
d022bddd
IT
12967 if (strcasecmp (arg, "yes") == 0)
12968 omit_lock_prefix = 1;
12969 else if (strcasecmp (arg, "no") == 0)
12970 omit_lock_prefix = 0;
12971 else
12972 as_fatal (_("invalid -momit-lock-prefix= option: `%s'"), arg);
12973 break;
12974
e4e00185
AS
12975 case OPTION_MFENCE_AS_LOCK_ADD:
12976 if (strcasecmp (arg, "yes") == 0)
12977 avoid_fence = 1;
12978 else if (strcasecmp (arg, "no") == 0)
12979 avoid_fence = 0;
12980 else
12981 as_fatal (_("invalid -mfence-as-lock-add= option: `%s'"), arg);
12982 break;
12983
ae531041
L
12984 case OPTION_MLFENCE_AFTER_LOAD:
12985 if (strcasecmp (arg, "yes") == 0)
12986 lfence_after_load = 1;
12987 else if (strcasecmp (arg, "no") == 0)
12988 lfence_after_load = 0;
12989 else
12990 as_fatal (_("invalid -mlfence-after-load= option: `%s'"), arg);
12991 break;
12992
12993 case OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH:
12994 if (strcasecmp (arg, "all") == 0)
12995 lfence_before_indirect_branch = lfence_branch_all;
12996 else if (strcasecmp (arg, "memory") == 0)
12997 lfence_before_indirect_branch = lfence_branch_memory;
12998 else if (strcasecmp (arg, "register") == 0)
12999 lfence_before_indirect_branch = lfence_branch_register;
13000 else if (strcasecmp (arg, "none") == 0)
13001 lfence_before_indirect_branch = lfence_branch_none;
13002 else
13003 as_fatal (_("invalid -mlfence-before-indirect-branch= option: `%s'"),
13004 arg);
13005 break;
13006
13007 case OPTION_MLFENCE_BEFORE_RET:
13008 if (strcasecmp (arg, "or") == 0)
13009 lfence_before_ret = lfence_before_ret_or;
13010 else if (strcasecmp (arg, "not") == 0)
13011 lfence_before_ret = lfence_before_ret_not;
13012 else if (strcasecmp (arg, "none") == 0)
13013 lfence_before_ret = lfence_before_ret_none;
13014 else
13015 as_fatal (_("invalid -mlfence-before-ret= option: `%s'"),
13016 arg);
13017 break;
13018
0cb4071e
L
13019 case OPTION_MRELAX_RELOCATIONS:
13020 if (strcasecmp (arg, "yes") == 0)
13021 generate_relax_relocations = 1;
13022 else if (strcasecmp (arg, "no") == 0)
13023 generate_relax_relocations = 0;
13024 else
13025 as_fatal (_("invalid -mrelax-relocations= option: `%s'"), arg);
13026 break;
13027
e379e5f3
L
13028 case OPTION_MALIGN_BRANCH_BOUNDARY:
13029 {
13030 char *end;
13031 long int align = strtoul (arg, &end, 0);
13032 if (*end == '\0')
13033 {
13034 if (align == 0)
13035 {
13036 align_branch_power = 0;
13037 break;
13038 }
13039 else if (align >= 16)
13040 {
13041 int align_power;
13042 for (align_power = 0;
13043 (align & 1) == 0;
13044 align >>= 1, align_power++)
13045 continue;
13046 /* Limit alignment power to 31. */
13047 if (align == 1 && align_power < 32)
13048 {
13049 align_branch_power = align_power;
13050 break;
13051 }
13052 }
13053 }
13054 as_fatal (_("invalid -malign-branch-boundary= value: %s"), arg);
13055 }
13056 break;
13057
13058 case OPTION_MALIGN_BRANCH_PREFIX_SIZE:
13059 {
13060 char *end;
13061 int align = strtoul (arg, &end, 0);
13062 /* Some processors only support 5 prefixes. */
13063 if (*end == '\0' && align >= 0 && align < 6)
13064 {
13065 align_branch_prefix_size = align;
13066 break;
13067 }
13068 as_fatal (_("invalid -malign-branch-prefix-size= value: %s"),
13069 arg);
13070 }
13071 break;
13072
13073 case OPTION_MALIGN_BRANCH:
13074 align_branch = 0;
13075 saved = xstrdup (arg);
13076 type = saved;
13077 do
13078 {
13079 next = strchr (type, '+');
13080 if (next)
13081 *next++ = '\0';
13082 if (strcasecmp (type, "jcc") == 0)
13083 align_branch |= align_branch_jcc_bit;
13084 else if (strcasecmp (type, "fused") == 0)
13085 align_branch |= align_branch_fused_bit;
13086 else if (strcasecmp (type, "jmp") == 0)
13087 align_branch |= align_branch_jmp_bit;
13088 else if (strcasecmp (type, "call") == 0)
13089 align_branch |= align_branch_call_bit;
13090 else if (strcasecmp (type, "ret") == 0)
13091 align_branch |= align_branch_ret_bit;
13092 else if (strcasecmp (type, "indirect") == 0)
13093 align_branch |= align_branch_indirect_bit;
13094 else
13095 as_fatal (_("invalid -malign-branch= option: `%s'"), arg);
13096 type = next;
13097 }
13098 while (next != NULL);
13099 free (saved);
13100 break;
13101
76cf450b
L
13102 case OPTION_MBRANCHES_WITH_32B_BOUNDARIES:
13103 align_branch_power = 5;
13104 align_branch_prefix_size = 5;
13105 align_branch = (align_branch_jcc_bit
13106 | align_branch_fused_bit
13107 | align_branch_jmp_bit);
13108 break;
13109
5db04b09 13110 case OPTION_MAMD64:
4b5aaf5f 13111 isa64 = amd64;
5db04b09
L
13112 break;
13113
13114 case OPTION_MINTEL64:
4b5aaf5f 13115 isa64 = intel64;
5db04b09
L
13116 break;
13117
b6f8c7c4
L
13118 case 'O':
13119 if (arg == NULL)
13120 {
13121 optimize = 1;
13122 /* Turn off -Os. */
13123 optimize_for_space = 0;
13124 }
13125 else if (*arg == 's')
13126 {
13127 optimize_for_space = 1;
13128 /* Turn on all encoding optimizations. */
41fd2579 13129 optimize = INT_MAX;
b6f8c7c4
L
13130 }
13131 else
13132 {
13133 optimize = atoi (arg);
13134 /* Turn off -Os. */
13135 optimize_for_space = 0;
13136 }
13137 break;
13138
252b5132
RH
13139 default:
13140 return 0;
13141 }
13142 return 1;
13143}
13144
8a2c8fef
L
13145#define MESSAGE_TEMPLATE \
13146" "
13147
293f5f65
L
13148static char *
13149output_message (FILE *stream, char *p, char *message, char *start,
13150 int *left_p, const char *name, int len)
13151{
13152 int size = sizeof (MESSAGE_TEMPLATE);
13153 int left = *left_p;
13154
13155 /* Reserve 2 spaces for ", " or ",\0" */
13156 left -= len + 2;
13157
13158 /* Check if there is any room. */
13159 if (left >= 0)
13160 {
13161 if (p != start)
13162 {
13163 *p++ = ',';
13164 *p++ = ' ';
13165 }
13166 p = mempcpy (p, name, len);
13167 }
13168 else
13169 {
13170 /* Output the current message now and start a new one. */
13171 *p++ = ',';
13172 *p = '\0';
13173 fprintf (stream, "%s\n", message);
13174 p = start;
13175 left = size - (start - message) - len - 2;
13176
13177 gas_assert (left >= 0);
13178
13179 p = mempcpy (p, name, len);
13180 }
13181
13182 *left_p = left;
13183 return p;
13184}
13185
8a2c8fef 13186static void
1ded5609 13187show_arch (FILE *stream, int ext, int check)
8a2c8fef
L
13188{
13189 static char message[] = MESSAGE_TEMPLATE;
13190 char *start = message + 27;
13191 char *p;
13192 int size = sizeof (MESSAGE_TEMPLATE);
13193 int left;
13194 const char *name;
13195 int len;
13196 unsigned int j;
13197
13198 p = start;
13199 left = size - (start - message);
13200 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
13201 {
13202 /* Should it be skipped? */
13203 if (cpu_arch [j].skip)
13204 continue;
13205
13206 name = cpu_arch [j].name;
13207 len = cpu_arch [j].len;
13208 if (*name == '.')
13209 {
13210 /* It is an extension. Skip if we aren't asked to show it. */
13211 if (ext)
13212 {
13213 name++;
13214 len--;
13215 }
13216 else
13217 continue;
13218 }
13219 else if (ext)
13220 {
13221 /* It is an processor. Skip if we show only extension. */
13222 continue;
13223 }
1ded5609
JB
13224 else if (check && ! cpu_arch[j].flags.bitfield.cpui386)
13225 {
13226 /* It is an impossible processor - skip. */
13227 continue;
13228 }
8a2c8fef 13229
293f5f65 13230 p = output_message (stream, p, message, start, &left, name, len);
8a2c8fef
L
13231 }
13232
293f5f65
L
13233 /* Display disabled extensions. */
13234 if (ext)
13235 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
13236 {
13237 name = cpu_noarch [j].name;
13238 len = cpu_noarch [j].len;
13239 p = output_message (stream, p, message, start, &left, name,
13240 len);
13241 }
13242
8a2c8fef
L
13243 *p = '\0';
13244 fprintf (stream, "%s\n", message);
13245}
13246
252b5132 13247void
8a2c8fef 13248md_show_usage (FILE *stream)
252b5132 13249{
4cc782b5
ILT
13250#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13251 fprintf (stream, _("\
d4693039 13252 -Qy, -Qn ignored\n\
a38cf1db 13253 -V print assembler version number\n\
b3b91714
AM
13254 -k ignored\n"));
13255#endif
13256 fprintf (stream, _("\
12b55ccc 13257 -n Do not optimize code alignment\n\
b3b91714
AM
13258 -q quieten some warnings\n"));
13259#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13260 fprintf (stream, _("\
a38cf1db 13261 -s ignored\n"));
b3b91714 13262#endif
d7f449c0
L
13263#if defined BFD64 && (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
13264 || defined (TE_PE) || defined (TE_PEP))
751d281c 13265 fprintf (stream, _("\
570561f7 13266 --32/--64/--x32 generate 32bit/64bit/x32 code\n"));
751d281c 13267#endif
b3b91714
AM
13268#ifdef SVR4_COMMENT_CHARS
13269 fprintf (stream, _("\
13270 --divide do not treat `/' as a comment character\n"));
a38cf1db
AM
13271#else
13272 fprintf (stream, _("\
b3b91714 13273 --divide ignored\n"));
4cc782b5 13274#endif
9103f4f4 13275 fprintf (stream, _("\
6305a203 13276 -march=CPU[,+EXTENSION...]\n\
8a2c8fef 13277 generate code for CPU and EXTENSION, CPU is one of:\n"));
1ded5609 13278 show_arch (stream, 0, 1);
8a2c8fef
L
13279 fprintf (stream, _("\
13280 EXTENSION is combination of:\n"));
1ded5609 13281 show_arch (stream, 1, 0);
6305a203 13282 fprintf (stream, _("\
8a2c8fef 13283 -mtune=CPU optimize for CPU, CPU is one of:\n"));
1ded5609 13284 show_arch (stream, 0, 0);
ba104c83 13285 fprintf (stream, _("\
c0f3af97
L
13286 -msse2avx encode SSE instructions with VEX prefix\n"));
13287 fprintf (stream, _("\
7c5c05ef 13288 -msse-check=[none|error|warning] (default: warning)\n\
daf50ae7
L
13289 check SSE instructions\n"));
13290 fprintf (stream, _("\
7c5c05ef 13291 -moperand-check=[none|error|warning] (default: warning)\n\
7bab8ab5
JB
13292 check operand combinations for validity\n"));
13293 fprintf (stream, _("\
7c5c05ef
L
13294 -mavxscalar=[128|256] (default: 128)\n\
13295 encode scalar AVX instructions with specific vector\n\
539f890d
L
13296 length\n"));
13297 fprintf (stream, _("\
03751133
L
13298 -mvexwig=[0|1] (default: 0)\n\
13299 encode VEX instructions with specific VEX.W value\n\
13300 for VEX.W bit ignored instructions\n"));
13301 fprintf (stream, _("\
7c5c05ef
L
13302 -mevexlig=[128|256|512] (default: 128)\n\
13303 encode scalar EVEX instructions with specific vector\n\
43234a1e
L
13304 length\n"));
13305 fprintf (stream, _("\
7c5c05ef
L
13306 -mevexwig=[0|1] (default: 0)\n\
13307 encode EVEX instructions with specific EVEX.W value\n\
43234a1e
L
13308 for EVEX.W bit ignored instructions\n"));
13309 fprintf (stream, _("\
7c5c05ef 13310 -mevexrcig=[rne|rd|ru|rz] (default: rne)\n\
d3d3c6db
IT
13311 encode EVEX instructions with specific EVEX.RC value\n\
13312 for SAE-only ignored instructions\n"));
13313 fprintf (stream, _("\
7c5c05ef
L
13314 -mmnemonic=[att|intel] "));
13315 if (SYSV386_COMPAT)
13316 fprintf (stream, _("(default: att)\n"));
13317 else
13318 fprintf (stream, _("(default: intel)\n"));
13319 fprintf (stream, _("\
13320 use AT&T/Intel mnemonic\n"));
ba104c83 13321 fprintf (stream, _("\
7c5c05ef
L
13322 -msyntax=[att|intel] (default: att)\n\
13323 use AT&T/Intel syntax\n"));
ba104c83
L
13324 fprintf (stream, _("\
13325 -mindex-reg support pseudo index registers\n"));
13326 fprintf (stream, _("\
13327 -mnaked-reg don't require `%%' prefix for registers\n"));
13328 fprintf (stream, _("\
7e8b059b 13329 -madd-bnd-prefix add BND prefix for all valid branches\n"));
b4a3a7b4 13330#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8dcea932
L
13331 fprintf (stream, _("\
13332 -mshared disable branch optimization for shared code\n"));
b4a3a7b4
L
13333 fprintf (stream, _("\
13334 -mx86-used-note=[no|yes] "));
13335 if (DEFAULT_X86_USED_NOTE)
13336 fprintf (stream, _("(default: yes)\n"));
13337 else
13338 fprintf (stream, _("(default: no)\n"));
13339 fprintf (stream, _("\
13340 generate x86 used ISA and feature properties\n"));
13341#endif
13342#if defined (TE_PE) || defined (TE_PEP)
167ad85b
TG
13343 fprintf (stream, _("\
13344 -mbig-obj generate big object files\n"));
13345#endif
d022bddd 13346 fprintf (stream, _("\
7c5c05ef 13347 -momit-lock-prefix=[no|yes] (default: no)\n\
d022bddd 13348 strip all lock prefixes\n"));
5db04b09 13349 fprintf (stream, _("\
7c5c05ef 13350 -mfence-as-lock-add=[no|yes] (default: no)\n\
e4e00185
AS
13351 encode lfence, mfence and sfence as\n\
13352 lock addl $0x0, (%%{re}sp)\n"));
13353 fprintf (stream, _("\
7c5c05ef
L
13354 -mrelax-relocations=[no|yes] "));
13355 if (DEFAULT_GENERATE_X86_RELAX_RELOCATIONS)
13356 fprintf (stream, _("(default: yes)\n"));
13357 else
13358 fprintf (stream, _("(default: no)\n"));
13359 fprintf (stream, _("\
0cb4071e
L
13360 generate relax relocations\n"));
13361 fprintf (stream, _("\
e379e5f3
L
13362 -malign-branch-boundary=NUM (default: 0)\n\
13363 align branches within NUM byte boundary\n"));
13364 fprintf (stream, _("\
13365 -malign-branch=TYPE[+TYPE...] (default: jcc+fused+jmp)\n\
13366 TYPE is combination of jcc, fused, jmp, call, ret,\n\
13367 indirect\n\
13368 specify types of branches to align\n"));
13369 fprintf (stream, _("\
13370 -malign-branch-prefix-size=NUM (default: 5)\n\
13371 align branches with NUM prefixes per instruction\n"));
13372 fprintf (stream, _("\
76cf450b
L
13373 -mbranches-within-32B-boundaries\n\
13374 align branches within 32 byte boundary\n"));
13375 fprintf (stream, _("\
ae531041
L
13376 -mlfence-after-load=[no|yes] (default: no)\n\
13377 generate lfence after load\n"));
13378 fprintf (stream, _("\
13379 -mlfence-before-indirect-branch=[none|all|register|memory] (default: none)\n\
13380 generate lfence before indirect near branch\n"));
13381 fprintf (stream, _("\
13382 -mlfence-before-ret=[none|or|not] (default: none)\n\
13383 generate lfence before ret\n"));
13384 fprintf (stream, _("\
7c5c05ef 13385 -mamd64 accept only AMD64 ISA [default]\n"));
5db04b09
L
13386 fprintf (stream, _("\
13387 -mintel64 accept only Intel64 ISA\n"));
252b5132
RH
13388}
13389
3e73aa7c 13390#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
321098a5 13391 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
e57f8c65 13392 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
252b5132
RH
13393
13394/* Pick the target format to use. */
13395
47926f60 13396const char *
e3bb37b5 13397i386_target_format (void)
252b5132 13398{
351f65ca
L
13399 if (!strncmp (default_arch, "x86_64", 6))
13400 {
13401 update_code_flag (CODE_64BIT, 1);
13402 if (default_arch[6] == '\0')
7f56bc95 13403 x86_elf_abi = X86_64_ABI;
351f65ca 13404 else
7f56bc95 13405 x86_elf_abi = X86_64_X32_ABI;
351f65ca 13406 }
3e73aa7c 13407 else if (!strcmp (default_arch, "i386"))
78f12dd3 13408 update_code_flag (CODE_32BIT, 1);
5197d474
L
13409 else if (!strcmp (default_arch, "iamcu"))
13410 {
13411 update_code_flag (CODE_32BIT, 1);
13412 if (cpu_arch_isa == PROCESSOR_UNKNOWN)
13413 {
13414 static const i386_cpu_flags iamcu_flags = CPU_IAMCU_FLAGS;
13415 cpu_arch_name = "iamcu";
13416 cpu_sub_arch_name = NULL;
13417 cpu_arch_flags = iamcu_flags;
13418 cpu_arch_isa = PROCESSOR_IAMCU;
13419 cpu_arch_isa_flags = iamcu_flags;
13420 if (!cpu_arch_tune_set)
13421 {
13422 cpu_arch_tune = cpu_arch_isa;
13423 cpu_arch_tune_flags = cpu_arch_isa_flags;
13424 }
13425 }
8d471ec1 13426 else if (cpu_arch_isa != PROCESSOR_IAMCU)
5197d474
L
13427 as_fatal (_("Intel MCU doesn't support `%s' architecture"),
13428 cpu_arch_name);
13429 }
3e73aa7c 13430 else
2b5d6a91 13431 as_fatal (_("unknown architecture"));
89507696
JB
13432
13433 if (cpu_flags_all_zero (&cpu_arch_isa_flags))
13434 cpu_arch_isa_flags = cpu_arch[flag_code == CODE_64BIT].flags;
13435 if (cpu_flags_all_zero (&cpu_arch_tune_flags))
13436 cpu_arch_tune_flags = cpu_arch[flag_code == CODE_64BIT].flags;
13437
252b5132
RH
13438 switch (OUTPUT_FLAVOR)
13439 {
9384f2ff 13440#if defined (OBJ_MAYBE_AOUT) || defined (OBJ_AOUT)
4c63da97 13441 case bfd_target_aout_flavour:
47926f60 13442 return AOUT_TARGET_FORMAT;
4c63da97 13443#endif
9384f2ff
AM
13444#if defined (OBJ_MAYBE_COFF) || defined (OBJ_COFF)
13445# if defined (TE_PE) || defined (TE_PEP)
13446 case bfd_target_coff_flavour:
167ad85b
TG
13447 if (flag_code == CODE_64BIT)
13448 return use_big_obj ? "pe-bigobj-x86-64" : "pe-x86-64";
13449 else
13450 return "pe-i386";
9384f2ff 13451# elif defined (TE_GO32)
0561d57c
JK
13452 case bfd_target_coff_flavour:
13453 return "coff-go32";
9384f2ff 13454# else
252b5132
RH
13455 case bfd_target_coff_flavour:
13456 return "coff-i386";
9384f2ff 13457# endif
4c63da97 13458#endif
3e73aa7c 13459#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
252b5132 13460 case bfd_target_elf_flavour:
3e73aa7c 13461 {
351f65ca
L
13462 const char *format;
13463
13464 switch (x86_elf_abi)
4fa24527 13465 {
351f65ca
L
13466 default:
13467 format = ELF_TARGET_FORMAT;
e379e5f3
L
13468#ifndef TE_SOLARIS
13469 tls_get_addr = "___tls_get_addr";
13470#endif
351f65ca 13471 break;
7f56bc95 13472 case X86_64_ABI:
351f65ca 13473 use_rela_relocations = 1;
4fa24527 13474 object_64bit = 1;
e379e5f3
L
13475#ifndef TE_SOLARIS
13476 tls_get_addr = "__tls_get_addr";
13477#endif
351f65ca
L
13478 format = ELF_TARGET_FORMAT64;
13479 break;
7f56bc95 13480 case X86_64_X32_ABI:
4fa24527 13481 use_rela_relocations = 1;
351f65ca 13482 object_64bit = 1;
e379e5f3
L
13483#ifndef TE_SOLARIS
13484 tls_get_addr = "__tls_get_addr";
13485#endif
862be3fb 13486 disallow_64bit_reloc = 1;
351f65ca
L
13487 format = ELF_TARGET_FORMAT32;
13488 break;
4fa24527 13489 }
3632d14b 13490 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 13491 {
7f56bc95 13492 if (x86_elf_abi != X86_64_ABI)
8a9036a4
L
13493 as_fatal (_("Intel L1OM is 64bit only"));
13494 return ELF_TARGET_L1OM_FORMAT;
13495 }
b49f93f6 13496 else if (cpu_arch_isa == PROCESSOR_K1OM)
7a9068fe
L
13497 {
13498 if (x86_elf_abi != X86_64_ABI)
13499 as_fatal (_("Intel K1OM is 64bit only"));
13500 return ELF_TARGET_K1OM_FORMAT;
13501 }
81486035
L
13502 else if (cpu_arch_isa == PROCESSOR_IAMCU)
13503 {
13504 if (x86_elf_abi != I386_ABI)
13505 as_fatal (_("Intel MCU is 32bit only"));
13506 return ELF_TARGET_IAMCU_FORMAT;
13507 }
8a9036a4 13508 else
351f65ca 13509 return format;
3e73aa7c 13510 }
e57f8c65
TG
13511#endif
13512#if defined (OBJ_MACH_O)
13513 case bfd_target_mach_o_flavour:
d382c579
TG
13514 if (flag_code == CODE_64BIT)
13515 {
13516 use_rela_relocations = 1;
13517 object_64bit = 1;
13518 return "mach-o-x86-64";
13519 }
13520 else
13521 return "mach-o-i386";
4c63da97 13522#endif
252b5132
RH
13523 default:
13524 abort ();
13525 return NULL;
13526 }
13527}
13528
47926f60 13529#endif /* OBJ_MAYBE_ more than one */
252b5132 13530\f
252b5132 13531symbolS *
7016a5d5 13532md_undefined_symbol (char *name)
252b5132 13533{
18dc2407
ILT
13534 if (name[0] == GLOBAL_OFFSET_TABLE_NAME[0]
13535 && name[1] == GLOBAL_OFFSET_TABLE_NAME[1]
13536 && name[2] == GLOBAL_OFFSET_TABLE_NAME[2]
13537 && strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0)
24eab124
AM
13538 {
13539 if (!GOT_symbol)
13540 {
13541 if (symbol_find (name))
13542 as_bad (_("GOT already in symbol table"));
13543 GOT_symbol = symbol_new (name, undefined_section,
13544 (valueT) 0, &zero_address_frag);
13545 };
13546 return GOT_symbol;
13547 }
252b5132
RH
13548 return 0;
13549}
13550
13551/* Round up a section size to the appropriate boundary. */
47926f60 13552
252b5132 13553valueT
7016a5d5 13554md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size)
252b5132 13555{
4c63da97
AM
13556#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
13557 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
13558 {
13559 /* For a.out, force the section size to be aligned. If we don't do
13560 this, BFD will align it for us, but it will not write out the
13561 final bytes of the section. This may be a bug in BFD, but it is
13562 easier to fix it here since that is how the other a.out targets
13563 work. */
13564 int align;
13565
fd361982 13566 align = bfd_section_alignment (segment);
8d3842cd 13567 size = ((size + (1 << align) - 1) & (-((valueT) 1 << align)));
4c63da97 13568 }
252b5132
RH
13569#endif
13570
13571 return size;
13572}
13573
13574/* On the i386, PC-relative offsets are relative to the start of the
13575 next instruction. That is, the address of the offset, plus its
13576 size, since the offset is always the last part of the insn. */
13577
13578long
e3bb37b5 13579md_pcrel_from (fixS *fixP)
252b5132
RH
13580{
13581 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
13582}
13583
13584#ifndef I386COFF
13585
13586static void
e3bb37b5 13587s_bss (int ignore ATTRIBUTE_UNUSED)
252b5132 13588{
29b0f896 13589 int temp;
252b5132 13590
8a75718c
JB
13591#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13592 if (IS_ELF)
13593 obj_elf_section_change_hook ();
13594#endif
252b5132
RH
13595 temp = get_absolute_expression ();
13596 subseg_set (bss_section, (subsegT) temp);
13597 demand_empty_rest_of_line ();
13598}
13599
13600#endif
13601
e379e5f3
L
13602/* Remember constant directive. */
13603
13604void
13605i386_cons_align (int ignore ATTRIBUTE_UNUSED)
13606{
13607 if (last_insn.kind != last_insn_directive
13608 && (bfd_section_flags (now_seg) & SEC_CODE))
13609 {
13610 last_insn.seg = now_seg;
13611 last_insn.kind = last_insn_directive;
13612 last_insn.name = "constant directive";
13613 last_insn.file = as_where (&last_insn.line);
ae531041
L
13614 if (lfence_before_ret != lfence_before_ret_none)
13615 {
13616 if (lfence_before_indirect_branch != lfence_branch_none)
13617 as_warn (_("constant directive skips -mlfence-before-ret "
13618 "and -mlfence-before-indirect-branch"));
13619 else
13620 as_warn (_("constant directive skips -mlfence-before-ret"));
13621 }
13622 else if (lfence_before_indirect_branch != lfence_branch_none)
13623 as_warn (_("constant directive skips -mlfence-before-indirect-branch"));
e379e5f3
L
13624 }
13625}
13626
252b5132 13627void
e3bb37b5 13628i386_validate_fix (fixS *fixp)
252b5132 13629{
02a86693 13630 if (fixp->fx_subsy)
252b5132 13631 {
02a86693 13632 if (fixp->fx_subsy == GOT_symbol)
23df1078 13633 {
02a86693
L
13634 if (fixp->fx_r_type == BFD_RELOC_32_PCREL)
13635 {
13636 if (!object_64bit)
13637 abort ();
13638#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13639 if (fixp->fx_tcbit2)
56ceb5b5
L
13640 fixp->fx_r_type = (fixp->fx_tcbit
13641 ? BFD_RELOC_X86_64_REX_GOTPCRELX
13642 : BFD_RELOC_X86_64_GOTPCRELX);
02a86693
L
13643 else
13644#endif
13645 fixp->fx_r_type = BFD_RELOC_X86_64_GOTPCREL;
13646 }
d6ab8113 13647 else
02a86693
L
13648 {
13649 if (!object_64bit)
13650 fixp->fx_r_type = BFD_RELOC_386_GOTOFF;
13651 else
13652 fixp->fx_r_type = BFD_RELOC_X86_64_GOTOFF64;
13653 }
13654 fixp->fx_subsy = 0;
23df1078 13655 }
252b5132 13656 }
02a86693
L
13657#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13658 else if (!object_64bit)
13659 {
13660 if (fixp->fx_r_type == BFD_RELOC_386_GOT32
13661 && fixp->fx_tcbit2)
13662 fixp->fx_r_type = BFD_RELOC_386_GOT32X;
13663 }
13664#endif
252b5132
RH
13665}
13666
252b5132 13667arelent *
7016a5d5 13668tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
13669{
13670 arelent *rel;
13671 bfd_reloc_code_real_type code;
13672
13673 switch (fixp->fx_r_type)
13674 {
8ce3d284 13675#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
13676 case BFD_RELOC_SIZE32:
13677 case BFD_RELOC_SIZE64:
13678 if (S_IS_DEFINED (fixp->fx_addsy)
13679 && !S_IS_EXTERNAL (fixp->fx_addsy))
13680 {
13681 /* Resolve size relocation against local symbol to size of
13682 the symbol plus addend. */
13683 valueT value = S_GET_SIZE (fixp->fx_addsy) + fixp->fx_offset;
13684 if (fixp->fx_r_type == BFD_RELOC_SIZE32
13685 && !fits_in_unsigned_long (value))
13686 as_bad_where (fixp->fx_file, fixp->fx_line,
13687 _("symbol size computation overflow"));
13688 fixp->fx_addsy = NULL;
13689 fixp->fx_subsy = NULL;
13690 md_apply_fix (fixp, (valueT *) &value, NULL);
13691 return NULL;
13692 }
8ce3d284 13693#endif
1a0670f3 13694 /* Fall through. */
8fd4256d 13695
3e73aa7c
JH
13696 case BFD_RELOC_X86_64_PLT32:
13697 case BFD_RELOC_X86_64_GOT32:
13698 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
13699 case BFD_RELOC_X86_64_GOTPCRELX:
13700 case BFD_RELOC_X86_64_REX_GOTPCRELX:
252b5132
RH
13701 case BFD_RELOC_386_PLT32:
13702 case BFD_RELOC_386_GOT32:
02a86693 13703 case BFD_RELOC_386_GOT32X:
252b5132
RH
13704 case BFD_RELOC_386_GOTOFF:
13705 case BFD_RELOC_386_GOTPC:
13ae64f3
JJ
13706 case BFD_RELOC_386_TLS_GD:
13707 case BFD_RELOC_386_TLS_LDM:
13708 case BFD_RELOC_386_TLS_LDO_32:
13709 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
13710 case BFD_RELOC_386_TLS_IE:
13711 case BFD_RELOC_386_TLS_GOTIE:
13ae64f3
JJ
13712 case BFD_RELOC_386_TLS_LE_32:
13713 case BFD_RELOC_386_TLS_LE:
67a4f2b7
AO
13714 case BFD_RELOC_386_TLS_GOTDESC:
13715 case BFD_RELOC_386_TLS_DESC_CALL:
bffbf940
JJ
13716 case BFD_RELOC_X86_64_TLSGD:
13717 case BFD_RELOC_X86_64_TLSLD:
13718 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 13719 case BFD_RELOC_X86_64_DTPOFF64:
bffbf940
JJ
13720 case BFD_RELOC_X86_64_GOTTPOFF:
13721 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113
JB
13722 case BFD_RELOC_X86_64_TPOFF64:
13723 case BFD_RELOC_X86_64_GOTOFF64:
13724 case BFD_RELOC_X86_64_GOTPC32:
7b81dfbb
AJ
13725 case BFD_RELOC_X86_64_GOT64:
13726 case BFD_RELOC_X86_64_GOTPCREL64:
13727 case BFD_RELOC_X86_64_GOTPC64:
13728 case BFD_RELOC_X86_64_GOTPLT64:
13729 case BFD_RELOC_X86_64_PLTOFF64:
67a4f2b7
AO
13730 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
13731 case BFD_RELOC_X86_64_TLSDESC_CALL:
252b5132
RH
13732 case BFD_RELOC_RVA:
13733 case BFD_RELOC_VTABLE_ENTRY:
13734 case BFD_RELOC_VTABLE_INHERIT:
6482c264
NC
13735#ifdef TE_PE
13736 case BFD_RELOC_32_SECREL:
13737#endif
252b5132
RH
13738 code = fixp->fx_r_type;
13739 break;
dbbaec26
L
13740 case BFD_RELOC_X86_64_32S:
13741 if (!fixp->fx_pcrel)
13742 {
13743 /* Don't turn BFD_RELOC_X86_64_32S into BFD_RELOC_32. */
13744 code = fixp->fx_r_type;
13745 break;
13746 }
1a0670f3 13747 /* Fall through. */
252b5132 13748 default:
93382f6d 13749 if (fixp->fx_pcrel)
252b5132 13750 {
93382f6d
AM
13751 switch (fixp->fx_size)
13752 {
13753 default:
b091f402
AM
13754 as_bad_where (fixp->fx_file, fixp->fx_line,
13755 _("can not do %d byte pc-relative relocation"),
13756 fixp->fx_size);
93382f6d
AM
13757 code = BFD_RELOC_32_PCREL;
13758 break;
13759 case 1: code = BFD_RELOC_8_PCREL; break;
13760 case 2: code = BFD_RELOC_16_PCREL; break;
d258b828 13761 case 4: code = BFD_RELOC_32_PCREL; break;
d6ab8113
JB
13762#ifdef BFD64
13763 case 8: code = BFD_RELOC_64_PCREL; break;
13764#endif
93382f6d
AM
13765 }
13766 }
13767 else
13768 {
13769 switch (fixp->fx_size)
13770 {
13771 default:
b091f402
AM
13772 as_bad_where (fixp->fx_file, fixp->fx_line,
13773 _("can not do %d byte relocation"),
13774 fixp->fx_size);
93382f6d
AM
13775 code = BFD_RELOC_32;
13776 break;
13777 case 1: code = BFD_RELOC_8; break;
13778 case 2: code = BFD_RELOC_16; break;
13779 case 4: code = BFD_RELOC_32; break;
937149dd 13780#ifdef BFD64
3e73aa7c 13781 case 8: code = BFD_RELOC_64; break;
937149dd 13782#endif
93382f6d 13783 }
252b5132
RH
13784 }
13785 break;
13786 }
252b5132 13787
d182319b
JB
13788 if ((code == BFD_RELOC_32
13789 || code == BFD_RELOC_32_PCREL
13790 || code == BFD_RELOC_X86_64_32S)
252b5132
RH
13791 && GOT_symbol
13792 && fixp->fx_addsy == GOT_symbol)
3e73aa7c 13793 {
4fa24527 13794 if (!object_64bit)
d6ab8113
JB
13795 code = BFD_RELOC_386_GOTPC;
13796 else
13797 code = BFD_RELOC_X86_64_GOTPC32;
3e73aa7c 13798 }
7b81dfbb
AJ
13799 if ((code == BFD_RELOC_64 || code == BFD_RELOC_64_PCREL)
13800 && GOT_symbol
13801 && fixp->fx_addsy == GOT_symbol)
13802 {
13803 code = BFD_RELOC_X86_64_GOTPC64;
13804 }
252b5132 13805
add39d23
TS
13806 rel = XNEW (arelent);
13807 rel->sym_ptr_ptr = XNEW (asymbol *);
49309057 13808 *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
13809
13810 rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
c87db184 13811
3e73aa7c
JH
13812 if (!use_rela_relocations)
13813 {
13814 /* HACK: Since i386 ELF uses Rel instead of Rela, encode the
13815 vtable entry to be used in the relocation's section offset. */
13816 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
13817 rel->address = fixp->fx_offset;
fbeb56a4
DK
13818#if defined (OBJ_COFF) && defined (TE_PE)
13819 else if (fixp->fx_addsy && S_IS_WEAK (fixp->fx_addsy))
13820 rel->addend = fixp->fx_addnumber - (S_GET_VALUE (fixp->fx_addsy) * 2);
13821 else
13822#endif
c6682705 13823 rel->addend = 0;
3e73aa7c
JH
13824 }
13825 /* Use the rela in 64bit mode. */
252b5132 13826 else
3e73aa7c 13827 {
862be3fb
L
13828 if (disallow_64bit_reloc)
13829 switch (code)
13830 {
862be3fb
L
13831 case BFD_RELOC_X86_64_DTPOFF64:
13832 case BFD_RELOC_X86_64_TPOFF64:
13833 case BFD_RELOC_64_PCREL:
13834 case BFD_RELOC_X86_64_GOTOFF64:
13835 case BFD_RELOC_X86_64_GOT64:
13836 case BFD_RELOC_X86_64_GOTPCREL64:
13837 case BFD_RELOC_X86_64_GOTPC64:
13838 case BFD_RELOC_X86_64_GOTPLT64:
13839 case BFD_RELOC_X86_64_PLTOFF64:
13840 as_bad_where (fixp->fx_file, fixp->fx_line,
13841 _("cannot represent relocation type %s in x32 mode"),
13842 bfd_get_reloc_code_name (code));
13843 break;
13844 default:
13845 break;
13846 }
13847
062cd5e7
AS
13848 if (!fixp->fx_pcrel)
13849 rel->addend = fixp->fx_offset;
13850 else
13851 switch (code)
13852 {
13853 case BFD_RELOC_X86_64_PLT32:
13854 case BFD_RELOC_X86_64_GOT32:
13855 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
13856 case BFD_RELOC_X86_64_GOTPCRELX:
13857 case BFD_RELOC_X86_64_REX_GOTPCRELX:
bffbf940
JJ
13858 case BFD_RELOC_X86_64_TLSGD:
13859 case BFD_RELOC_X86_64_TLSLD:
13860 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7
AO
13861 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
13862 case BFD_RELOC_X86_64_TLSDESC_CALL:
062cd5e7
AS
13863 rel->addend = fixp->fx_offset - fixp->fx_size;
13864 break;
13865 default:
13866 rel->addend = (section->vma
13867 - fixp->fx_size
13868 + fixp->fx_addnumber
13869 + md_pcrel_from (fixp));
13870 break;
13871 }
3e73aa7c
JH
13872 }
13873
252b5132
RH
13874 rel->howto = bfd_reloc_type_lookup (stdoutput, code);
13875 if (rel->howto == NULL)
13876 {
13877 as_bad_where (fixp->fx_file, fixp->fx_line,
d0b47220 13878 _("cannot represent relocation type %s"),
252b5132
RH
13879 bfd_get_reloc_code_name (code));
13880 /* Set howto to a garbage value so that we can keep going. */
13881 rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
9c2799c2 13882 gas_assert (rel->howto != NULL);
252b5132
RH
13883 }
13884
13885 return rel;
13886}
13887
ee86248c 13888#include "tc-i386-intel.c"
54cfded0 13889
a60de03c
JB
13890void
13891tc_x86_parse_to_dw2regnum (expressionS *exp)
54cfded0 13892{
a60de03c
JB
13893 int saved_naked_reg;
13894 char saved_register_dot;
54cfded0 13895
a60de03c
JB
13896 saved_naked_reg = allow_naked_reg;
13897 allow_naked_reg = 1;
13898 saved_register_dot = register_chars['.'];
13899 register_chars['.'] = '.';
13900 allow_pseudo_reg = 1;
13901 expression_and_evaluate (exp);
13902 allow_pseudo_reg = 0;
13903 register_chars['.'] = saved_register_dot;
13904 allow_naked_reg = saved_naked_reg;
13905
e96d56a1 13906 if (exp->X_op == O_register && exp->X_add_number >= 0)
54cfded0 13907 {
a60de03c
JB
13908 if ((addressT) exp->X_add_number < i386_regtab_size)
13909 {
13910 exp->X_op = O_constant;
13911 exp->X_add_number = i386_regtab[exp->X_add_number]
13912 .dw2_regnum[flag_code >> 1];
13913 }
13914 else
13915 exp->X_op = O_illegal;
54cfded0 13916 }
54cfded0
AM
13917}
13918
13919void
13920tc_x86_frame_initial_instructions (void)
13921{
a60de03c
JB
13922 static unsigned int sp_regno[2];
13923
13924 if (!sp_regno[flag_code >> 1])
13925 {
13926 char *saved_input = input_line_pointer;
13927 char sp[][4] = {"esp", "rsp"};
13928 expressionS exp;
a4447b93 13929
a60de03c
JB
13930 input_line_pointer = sp[flag_code >> 1];
13931 tc_x86_parse_to_dw2regnum (&exp);
9c2799c2 13932 gas_assert (exp.X_op == O_constant);
a60de03c
JB
13933 sp_regno[flag_code >> 1] = exp.X_add_number;
13934 input_line_pointer = saved_input;
13935 }
a4447b93 13936
61ff971f
L
13937 cfi_add_CFA_def_cfa (sp_regno[flag_code >> 1], -x86_cie_data_alignment);
13938 cfi_add_CFA_offset (x86_dwarf2_return_column, x86_cie_data_alignment);
54cfded0 13939}
d2b2c203 13940
d7921315
L
13941int
13942x86_dwarf2_addr_size (void)
13943{
13944#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
13945 if (x86_elf_abi == X86_64_X32_ABI)
13946 return 4;
13947#endif
13948 return bfd_arch_bits_per_address (stdoutput) / 8;
13949}
13950
d2b2c203
DJ
13951int
13952i386_elf_section_type (const char *str, size_t len)
13953{
13954 if (flag_code == CODE_64BIT
13955 && len == sizeof ("unwind") - 1
13956 && strncmp (str, "unwind", 6) == 0)
13957 return SHT_X86_64_UNWIND;
13958
13959 return -1;
13960}
bb41ade5 13961
ad5fec3b
EB
13962#ifdef TE_SOLARIS
13963void
13964i386_solaris_fix_up_eh_frame (segT sec)
13965{
13966 if (flag_code == CODE_64BIT)
13967 elf_section_type (sec) = SHT_X86_64_UNWIND;
13968}
13969#endif
13970
bb41ade5
AM
13971#ifdef TE_PE
13972void
13973tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
13974{
91d6fa6a 13975 expressionS exp;
bb41ade5 13976
91d6fa6a
NC
13977 exp.X_op = O_secrel;
13978 exp.X_add_symbol = symbol;
13979 exp.X_add_number = 0;
13980 emit_expr (&exp, size);
bb41ade5
AM
13981}
13982#endif
3b22753a
L
13983
13984#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13985/* For ELF on x86-64, add support for SHF_X86_64_LARGE. */
13986
01e1a5bc 13987bfd_vma
6d4af3c2 13988x86_64_section_letter (int letter, const char **ptr_msg)
3b22753a
L
13989{
13990 if (flag_code == CODE_64BIT)
13991 {
13992 if (letter == 'l')
13993 return SHF_X86_64_LARGE;
13994
8f3bae45 13995 *ptr_msg = _("bad .section directive: want a,l,w,x,M,S,G,T in string");
64e74474 13996 }
3b22753a 13997 else
8f3bae45 13998 *ptr_msg = _("bad .section directive: want a,w,x,M,S,G,T in string");
3b22753a
L
13999 return -1;
14000}
14001
01e1a5bc 14002bfd_vma
3b22753a
L
14003x86_64_section_word (char *str, size_t len)
14004{
8620418b 14005 if (len == 5 && flag_code == CODE_64BIT && CONST_STRNEQ (str, "large"))
3b22753a
L
14006 return SHF_X86_64_LARGE;
14007
14008 return -1;
14009}
14010
14011static void
14012handle_large_common (int small ATTRIBUTE_UNUSED)
14013{
14014 if (flag_code != CODE_64BIT)
14015 {
14016 s_comm_internal (0, elf_common_parse);
14017 as_warn (_(".largecomm supported only in 64bit mode, producing .comm"));
14018 }
14019 else
14020 {
14021 static segT lbss_section;
14022 asection *saved_com_section_ptr = elf_com_section_ptr;
14023 asection *saved_bss_section = bss_section;
14024
14025 if (lbss_section == NULL)
14026 {
14027 flagword applicable;
14028 segT seg = now_seg;
14029 subsegT subseg = now_subseg;
14030
14031 /* The .lbss section is for local .largecomm symbols. */
14032 lbss_section = subseg_new (".lbss", 0);
14033 applicable = bfd_applicable_section_flags (stdoutput);
fd361982 14034 bfd_set_section_flags (lbss_section, applicable & SEC_ALLOC);
3b22753a
L
14035 seg_info (lbss_section)->bss = 1;
14036
14037 subseg_set (seg, subseg);
14038 }
14039
14040 elf_com_section_ptr = &_bfd_elf_large_com_section;
14041 bss_section = lbss_section;
14042
14043 s_comm_internal (0, elf_common_parse);
14044
14045 elf_com_section_ptr = saved_com_section_ptr;
14046 bss_section = saved_bss_section;
14047 }
14048}
14049#endif /* OBJ_ELF || OBJ_MAYBE_ELF */
This page took 2.438946 seconds and 4 git commands to generate.