]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-i386.c
PR25593, --as-needed breaks DT_NEEDED order with linker plugin
[thirdparty/binutils-gdb.git] / gas / config / tc-i386.c
CommitLineData
b534c6d3 1/* tc-i386.c -- Assemble code for the Intel 80386
b3adc24a 2 Copyright (C) 1989-2020 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20
47926f60
KH
21/* Intel 80386 machine specific gas.
22 Written by Eliot Dresselhaus (eliot@mgm.mit.edu).
3e73aa7c 23 x86_64 support by Jan Hubicka (jh@suse.cz)
0f10071e 24 VIA PadLock support by Michal Ludvig (mludvig@suse.cz)
47926f60
KH
25 Bugs & suggestions are completely welcome. This is free software.
26 Please help us make it better. */
252b5132 27
252b5132 28#include "as.h"
3882b010 29#include "safe-ctype.h"
252b5132 30#include "subsegs.h"
316e2c05 31#include "dwarf2dbg.h"
54cfded0 32#include "dw2gencfi.h"
d2b2c203 33#include "elf/x86-64.h"
40fb9820 34#include "opcodes/i386-init.h"
252b5132 35
41fd2579
L
36#ifdef HAVE_LIMITS_H
37#include <limits.h>
38#else
39#ifdef HAVE_SYS_PARAM_H
40#include <sys/param.h>
41#endif
42#ifndef INT_MAX
43#define INT_MAX (int) (((unsigned) (-1)) >> 1)
44#endif
45#endif
46
c3332e24 47#ifndef INFER_ADDR_PREFIX
eecb386c 48#define INFER_ADDR_PREFIX 1
c3332e24
AM
49#endif
50
29b0f896
AM
51#ifndef DEFAULT_ARCH
52#define DEFAULT_ARCH "i386"
246fcdee 53#endif
252b5132 54
edde18a5
AM
55#ifndef INLINE
56#if __GNUC__ >= 2
57#define INLINE __inline__
58#else
59#define INLINE
60#endif
61#endif
62
6305a203
L
63/* Prefixes will be emitted in the order defined below.
64 WAIT_PREFIX must be the first prefix since FWAIT is really is an
65 instruction, and so must come before any prefixes.
66 The preferred prefix order is SEG_PREFIX, ADDR_PREFIX, DATA_PREFIX,
42164a71 67 REP_PREFIX/HLE_PREFIX, LOCK_PREFIX. */
6305a203
L
68#define WAIT_PREFIX 0
69#define SEG_PREFIX 1
70#define ADDR_PREFIX 2
71#define DATA_PREFIX 3
c32fa91d 72#define REP_PREFIX 4
42164a71 73#define HLE_PREFIX REP_PREFIX
7e8b059b 74#define BND_PREFIX REP_PREFIX
c32fa91d 75#define LOCK_PREFIX 5
4e9ac44a
L
76#define REX_PREFIX 6 /* must come last. */
77#define MAX_PREFIXES 7 /* max prefixes per opcode */
6305a203
L
78
79/* we define the syntax here (modulo base,index,scale syntax) */
80#define REGISTER_PREFIX '%'
81#define IMMEDIATE_PREFIX '$'
82#define ABSOLUTE_PREFIX '*'
83
84/* these are the instruction mnemonic suffixes in AT&T syntax or
85 memory operand size in Intel syntax. */
86#define WORD_MNEM_SUFFIX 'w'
87#define BYTE_MNEM_SUFFIX 'b'
88#define SHORT_MNEM_SUFFIX 's'
89#define LONG_MNEM_SUFFIX 'l'
90#define QWORD_MNEM_SUFFIX 'q'
6305a203
L
91/* Intel Syntax. Use a non-ascii letter since since it never appears
92 in instructions. */
93#define LONG_DOUBLE_MNEM_SUFFIX '\1'
94
95#define END_OF_INSN '\0'
96
79dec6b7
JB
97/* This matches the C -> StaticRounding alias in the opcode table. */
98#define commutative staticrounding
99
6305a203
L
100/*
101 'templates' is for grouping together 'template' structures for opcodes
102 of the same name. This is only used for storing the insns in the grand
103 ole hash table of insns.
104 The templates themselves start at START and range up to (but not including)
105 END.
106 */
107typedef struct
108{
d3ce72d0
NC
109 const insn_template *start;
110 const insn_template *end;
6305a203
L
111}
112templates;
113
114/* 386 operand encoding bytes: see 386 book for details of this. */
115typedef struct
116{
117 unsigned int regmem; /* codes register or memory operand */
118 unsigned int reg; /* codes register operand (or extended opcode) */
119 unsigned int mode; /* how to interpret regmem & reg */
120}
121modrm_byte;
122
123/* x86-64 extension prefix. */
124typedef int rex_byte;
125
6305a203
L
126/* 386 opcode byte to code indirect addressing. */
127typedef struct
128{
129 unsigned base;
130 unsigned index;
131 unsigned scale;
132}
133sib_byte;
134
6305a203
L
135/* x86 arch names, types and features */
136typedef struct
137{
138 const char *name; /* arch name */
8a2c8fef 139 unsigned int len; /* arch string length */
6305a203
L
140 enum processor_type type; /* arch type */
141 i386_cpu_flags flags; /* cpu feature flags */
8a2c8fef 142 unsigned int skip; /* show_arch should skip this. */
6305a203
L
143}
144arch_entry;
145
293f5f65
L
146/* Used to turn off indicated flags. */
147typedef struct
148{
149 const char *name; /* arch name */
150 unsigned int len; /* arch string length */
151 i386_cpu_flags flags; /* cpu feature flags */
152}
153noarch_entry;
154
78f12dd3 155static void update_code_flag (int, int);
e3bb37b5
L
156static void set_code_flag (int);
157static void set_16bit_gcc_code_flag (int);
158static void set_intel_syntax (int);
1efbbeb4 159static void set_intel_mnemonic (int);
db51cc60 160static void set_allow_index_reg (int);
7bab8ab5 161static void set_check (int);
e3bb37b5 162static void set_cpu_arch (int);
6482c264 163#ifdef TE_PE
e3bb37b5 164static void pe_directive_secrel (int);
6482c264 165#endif
e3bb37b5
L
166static void signed_cons (int);
167static char *output_invalid (int c);
ee86248c
JB
168static int i386_finalize_immediate (segT, expressionS *, i386_operand_type,
169 const char *);
170static int i386_finalize_displacement (segT, expressionS *, i386_operand_type,
171 const char *);
a7619375 172static int i386_att_operand (char *);
e3bb37b5 173static int i386_intel_operand (char *, int);
ee86248c
JB
174static int i386_intel_simplify (expressionS *);
175static int i386_intel_parse_name (const char *, expressionS *);
e3bb37b5
L
176static const reg_entry *parse_register (char *, char **);
177static char *parse_insn (char *, char *);
178static char *parse_operands (char *, const char *);
179static void swap_operands (void);
4d456e3d 180static void swap_2_operands (int, int);
48bcea9f 181static enum flag_code i386_addressing_mode (void);
e3bb37b5
L
182static void optimize_imm (void);
183static void optimize_disp (void);
83b16ac6 184static const insn_template *match_template (char);
e3bb37b5
L
185static int check_string (void);
186static int process_suffix (void);
187static int check_byte_reg (void);
188static int check_long_reg (void);
189static int check_qword_reg (void);
190static int check_word_reg (void);
191static int finalize_imm (void);
192static int process_operands (void);
193static const seg_entry *build_modrm_byte (void);
194static void output_insn (void);
195static void output_imm (fragS *, offsetT);
196static void output_disp (fragS *, offsetT);
29b0f896 197#ifndef I386COFF
e3bb37b5 198static void s_bss (int);
252b5132 199#endif
17d4e2a2
L
200#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
201static void handle_large_common (int small ATTRIBUTE_UNUSED);
b4a3a7b4
L
202
203/* GNU_PROPERTY_X86_ISA_1_USED. */
204static unsigned int x86_isa_1_used;
205/* GNU_PROPERTY_X86_FEATURE_2_USED. */
206static unsigned int x86_feature_2_used;
207/* Generate x86 used ISA and feature properties. */
208static unsigned int x86_used_note = DEFAULT_X86_USED_NOTE;
17d4e2a2 209#endif
252b5132 210
a847613f 211static const char *default_arch = DEFAULT_ARCH;
3e73aa7c 212
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
e379e5f3
L
632/* Type of the previous instruction. */
633static struct
634 {
635 segT seg;
636 const char *file;
637 const char *name;
638 unsigned int line;
639 enum last_insn_kind
640 {
641 last_insn_other = 0,
642 last_insn_directive,
643 last_insn_prefix
644 } kind;
645 } last_insn;
646
0cb4071e
L
647/* 1 if the assembler should generate relax relocations. */
648
649static int generate_relax_relocations
650 = DEFAULT_GENERATE_X86_RELAX_RELOCATIONS;
651
7bab8ab5 652static enum check_kind
daf50ae7 653 {
7bab8ab5
JB
654 check_none = 0,
655 check_warning,
656 check_error
daf50ae7 657 }
7bab8ab5 658sse_check, operand_check = check_warning;
daf50ae7 659
e379e5f3
L
660/* Non-zero if branches should be aligned within power of 2 boundary. */
661static int align_branch_power = 0;
662
663/* Types of branches to align. */
664enum align_branch_kind
665 {
666 align_branch_none = 0,
667 align_branch_jcc = 1,
668 align_branch_fused = 2,
669 align_branch_jmp = 3,
670 align_branch_call = 4,
671 align_branch_indirect = 5,
672 align_branch_ret = 6
673 };
674
675/* Type bits of branches to align. */
676enum align_branch_bit
677 {
678 align_branch_jcc_bit = 1 << align_branch_jcc,
679 align_branch_fused_bit = 1 << align_branch_fused,
680 align_branch_jmp_bit = 1 << align_branch_jmp,
681 align_branch_call_bit = 1 << align_branch_call,
682 align_branch_indirect_bit = 1 << align_branch_indirect,
683 align_branch_ret_bit = 1 << align_branch_ret
684 };
685
686static unsigned int align_branch = (align_branch_jcc_bit
687 | align_branch_fused_bit
688 | align_branch_jmp_bit);
689
690/* The maximum padding size for fused jcc. CMP like instruction can
691 be 9 bytes and jcc can be 6 bytes. Leave room just in case for
692 prefixes. */
693#define MAX_FUSED_JCC_PADDING_SIZE 20
694
695/* The maximum number of prefixes added for an instruction. */
696static unsigned int align_branch_prefix_size = 5;
697
b6f8c7c4
L
698/* Optimization:
699 1. Clear the REX_W bit with register operand if possible.
700 2. Above plus use 128bit vector instruction to clear the full vector
701 register.
702 */
703static int optimize = 0;
704
705/* Optimization:
706 1. Clear the REX_W bit with register operand if possible.
707 2. Above plus use 128bit vector instruction to clear the full vector
708 register.
709 3. Above plus optimize "test{q,l,w} $imm8,%r{64,32,16}" to
710 "testb $imm7,%r8".
711 */
712static int optimize_for_space = 0;
713
2ca3ace5
L
714/* Register prefix used for error message. */
715static const char *register_prefix = "%";
716
47926f60
KH
717/* Used in 16 bit gcc mode to add an l suffix to call, ret, enter,
718 leave, push, and pop instructions so that gcc has the same stack
719 frame as in 32 bit mode. */
720static char stackop_size = '\0';
eecb386c 721
12b55ccc
L
722/* Non-zero to optimize code alignment. */
723int optimize_align_code = 1;
724
47926f60
KH
725/* Non-zero to quieten some warnings. */
726static int quiet_warnings = 0;
a38cf1db 727
47926f60
KH
728/* CPU name. */
729static const char *cpu_arch_name = NULL;
6305a203 730static char *cpu_sub_arch_name = NULL;
a38cf1db 731
47926f60 732/* CPU feature flags. */
40fb9820
L
733static i386_cpu_flags cpu_arch_flags = CPU_UNKNOWN_FLAGS;
734
ccc9c027
L
735/* If we have selected a cpu we are generating instructions for. */
736static int cpu_arch_tune_set = 0;
737
9103f4f4 738/* Cpu we are generating instructions for. */
fbf3f584 739enum processor_type cpu_arch_tune = PROCESSOR_UNKNOWN;
9103f4f4
L
740
741/* CPU feature flags of cpu we are generating instructions for. */
40fb9820 742static i386_cpu_flags cpu_arch_tune_flags;
9103f4f4 743
ccc9c027 744/* CPU instruction set architecture used. */
fbf3f584 745enum processor_type cpu_arch_isa = PROCESSOR_UNKNOWN;
ccc9c027 746
9103f4f4 747/* CPU feature flags of instruction set architecture used. */
fbf3f584 748i386_cpu_flags cpu_arch_isa_flags;
9103f4f4 749
fddf5b5b
AM
750/* If set, conditional jumps are not automatically promoted to handle
751 larger than a byte offset. */
752static unsigned int no_cond_jump_promotion = 0;
753
c0f3af97
L
754/* Encode SSE instructions with VEX prefix. */
755static unsigned int sse2avx;
756
539f890d
L
757/* Encode scalar AVX instructions with specific vector length. */
758static enum
759 {
760 vex128 = 0,
761 vex256
762 } avxscalar;
763
03751133
L
764/* Encode VEX WIG instructions with specific vex.w. */
765static enum
766 {
767 vexw0 = 0,
768 vexw1
769 } vexwig;
770
43234a1e
L
771/* Encode scalar EVEX LIG instructions with specific vector length. */
772static enum
773 {
774 evexl128 = 0,
775 evexl256,
776 evexl512
777 } evexlig;
778
779/* Encode EVEX WIG instructions with specific evex.w. */
780static enum
781 {
782 evexw0 = 0,
783 evexw1
784 } evexwig;
785
d3d3c6db
IT
786/* Value to encode in EVEX RC bits, for SAE-only instructions. */
787static enum rc_type evexrcig = rne;
788
29b0f896 789/* Pre-defined "_GLOBAL_OFFSET_TABLE_". */
87c245cc 790static symbolS *GOT_symbol;
29b0f896 791
a4447b93
RH
792/* The dwarf2 return column, adjusted for 32 or 64 bit. */
793unsigned int x86_dwarf2_return_column;
794
795/* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
796int x86_cie_data_alignment;
797
252b5132 798/* Interface to relax_segment.
fddf5b5b
AM
799 There are 3 major relax states for 386 jump insns because the
800 different types of jumps add different sizes to frags when we're
e379e5f3
L
801 figuring out what sort of jump to choose to reach a given label.
802
803 BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING are used to align
804 branches which are handled by md_estimate_size_before_relax() and
805 i386_generic_table_relax_frag(). */
252b5132 806
47926f60 807/* Types. */
93c2a809
AM
808#define UNCOND_JUMP 0
809#define COND_JUMP 1
810#define COND_JUMP86 2
e379e5f3
L
811#define BRANCH_PADDING 3
812#define BRANCH_PREFIX 4
813#define FUSED_JCC_PADDING 5
fddf5b5b 814
47926f60 815/* Sizes. */
252b5132
RH
816#define CODE16 1
817#define SMALL 0
29b0f896 818#define SMALL16 (SMALL | CODE16)
252b5132 819#define BIG 2
29b0f896 820#define BIG16 (BIG | CODE16)
252b5132
RH
821
822#ifndef INLINE
823#ifdef __GNUC__
824#define INLINE __inline__
825#else
826#define INLINE
827#endif
828#endif
829
fddf5b5b
AM
830#define ENCODE_RELAX_STATE(type, size) \
831 ((relax_substateT) (((type) << 2) | (size)))
832#define TYPE_FROM_RELAX_STATE(s) \
833 ((s) >> 2)
834#define DISP_SIZE_FROM_RELAX_STATE(s) \
835 ((((s) & 3) == BIG ? 4 : (((s) & 3) == BIG16 ? 2 : 1)))
252b5132
RH
836
837/* This table is used by relax_frag to promote short jumps to long
838 ones where necessary. SMALL (short) jumps may be promoted to BIG
839 (32 bit long) ones, and SMALL16 jumps to BIG16 (16 bit long). We
840 don't allow a short jump in a 32 bit code segment to be promoted to
841 a 16 bit offset jump because it's slower (requires data size
842 prefix), and doesn't work, unless the destination is in the bottom
843 64k of the code segment (The top 16 bits of eip are zeroed). */
844
845const relax_typeS md_relax_table[] =
846{
24eab124
AM
847 /* The fields are:
848 1) most positive reach of this state,
849 2) most negative reach of this state,
93c2a809 850 3) how many bytes this mode will have in the variable part of the frag
ce8a8b2f 851 4) which index into the table to try if we can't fit into this one. */
252b5132 852
fddf5b5b 853 /* UNCOND_JUMP states. */
93c2a809
AM
854 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG)},
855 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16)},
856 /* dword jmp adds 4 bytes to frag:
857 0 extra opcode bytes, 4 displacement bytes. */
252b5132 858 {0, 0, 4, 0},
93c2a809
AM
859 /* word jmp adds 2 byte2 to frag:
860 0 extra opcode bytes, 2 displacement bytes. */
252b5132
RH
861 {0, 0, 2, 0},
862
93c2a809
AM
863 /* COND_JUMP states. */
864 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG)},
865 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG16)},
866 /* dword conditionals adds 5 bytes to frag:
867 1 extra opcode byte, 4 displacement bytes. */
868 {0, 0, 5, 0},
fddf5b5b 869 /* word conditionals add 3 bytes to frag:
93c2a809
AM
870 1 extra opcode byte, 2 displacement bytes. */
871 {0, 0, 3, 0},
872
873 /* COND_JUMP86 states. */
874 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG)},
875 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG16)},
876 /* dword conditionals adds 5 bytes to frag:
877 1 extra opcode byte, 4 displacement bytes. */
878 {0, 0, 5, 0},
879 /* word conditionals add 4 bytes to frag:
880 1 displacement byte and a 3 byte long branch insn. */
881 {0, 0, 4, 0}
252b5132
RH
882};
883
9103f4f4
L
884static const arch_entry cpu_arch[] =
885{
89507696
JB
886 /* Do not replace the first two entries - i386_target_format()
887 relies on them being there in this order. */
8a2c8fef 888 { STRING_COMMA_LEN ("generic32"), PROCESSOR_GENERIC32,
293f5f65 889 CPU_GENERIC32_FLAGS, 0 },
8a2c8fef 890 { STRING_COMMA_LEN ("generic64"), PROCESSOR_GENERIC64,
293f5f65 891 CPU_GENERIC64_FLAGS, 0 },
8a2c8fef 892 { STRING_COMMA_LEN ("i8086"), PROCESSOR_UNKNOWN,
293f5f65 893 CPU_NONE_FLAGS, 0 },
8a2c8fef 894 { STRING_COMMA_LEN ("i186"), PROCESSOR_UNKNOWN,
293f5f65 895 CPU_I186_FLAGS, 0 },
8a2c8fef 896 { STRING_COMMA_LEN ("i286"), PROCESSOR_UNKNOWN,
293f5f65 897 CPU_I286_FLAGS, 0 },
8a2c8fef 898 { STRING_COMMA_LEN ("i386"), PROCESSOR_I386,
293f5f65 899 CPU_I386_FLAGS, 0 },
8a2c8fef 900 { STRING_COMMA_LEN ("i486"), PROCESSOR_I486,
293f5f65 901 CPU_I486_FLAGS, 0 },
8a2c8fef 902 { STRING_COMMA_LEN ("i586"), PROCESSOR_PENTIUM,
293f5f65 903 CPU_I586_FLAGS, 0 },
8a2c8fef 904 { STRING_COMMA_LEN ("i686"), PROCESSOR_PENTIUMPRO,
293f5f65 905 CPU_I686_FLAGS, 0 },
8a2c8fef 906 { STRING_COMMA_LEN ("pentium"), PROCESSOR_PENTIUM,
293f5f65 907 CPU_I586_FLAGS, 0 },
8a2c8fef 908 { STRING_COMMA_LEN ("pentiumpro"), PROCESSOR_PENTIUMPRO,
293f5f65 909 CPU_PENTIUMPRO_FLAGS, 0 },
8a2c8fef 910 { STRING_COMMA_LEN ("pentiumii"), PROCESSOR_PENTIUMPRO,
293f5f65 911 CPU_P2_FLAGS, 0 },
8a2c8fef 912 { STRING_COMMA_LEN ("pentiumiii"),PROCESSOR_PENTIUMPRO,
293f5f65 913 CPU_P3_FLAGS, 0 },
8a2c8fef 914 { STRING_COMMA_LEN ("pentium4"), PROCESSOR_PENTIUM4,
293f5f65 915 CPU_P4_FLAGS, 0 },
8a2c8fef 916 { STRING_COMMA_LEN ("prescott"), PROCESSOR_NOCONA,
293f5f65 917 CPU_CORE_FLAGS, 0 },
8a2c8fef 918 { STRING_COMMA_LEN ("nocona"), PROCESSOR_NOCONA,
293f5f65 919 CPU_NOCONA_FLAGS, 0 },
8a2c8fef 920 { STRING_COMMA_LEN ("yonah"), PROCESSOR_CORE,
293f5f65 921 CPU_CORE_FLAGS, 1 },
8a2c8fef 922 { STRING_COMMA_LEN ("core"), PROCESSOR_CORE,
293f5f65 923 CPU_CORE_FLAGS, 0 },
8a2c8fef 924 { STRING_COMMA_LEN ("merom"), PROCESSOR_CORE2,
293f5f65 925 CPU_CORE2_FLAGS, 1 },
8a2c8fef 926 { STRING_COMMA_LEN ("core2"), PROCESSOR_CORE2,
293f5f65 927 CPU_CORE2_FLAGS, 0 },
8a2c8fef 928 { STRING_COMMA_LEN ("corei7"), PROCESSOR_COREI7,
293f5f65 929 CPU_COREI7_FLAGS, 0 },
8a2c8fef 930 { STRING_COMMA_LEN ("l1om"), PROCESSOR_L1OM,
293f5f65 931 CPU_L1OM_FLAGS, 0 },
7a9068fe 932 { STRING_COMMA_LEN ("k1om"), PROCESSOR_K1OM,
293f5f65 933 CPU_K1OM_FLAGS, 0 },
81486035 934 { STRING_COMMA_LEN ("iamcu"), PROCESSOR_IAMCU,
293f5f65 935 CPU_IAMCU_FLAGS, 0 },
8a2c8fef 936 { STRING_COMMA_LEN ("k6"), PROCESSOR_K6,
293f5f65 937 CPU_K6_FLAGS, 0 },
8a2c8fef 938 { STRING_COMMA_LEN ("k6_2"), PROCESSOR_K6,
293f5f65 939 CPU_K6_2_FLAGS, 0 },
8a2c8fef 940 { STRING_COMMA_LEN ("athlon"), PROCESSOR_ATHLON,
293f5f65 941 CPU_ATHLON_FLAGS, 0 },
8a2c8fef 942 { STRING_COMMA_LEN ("sledgehammer"), PROCESSOR_K8,
293f5f65 943 CPU_K8_FLAGS, 1 },
8a2c8fef 944 { STRING_COMMA_LEN ("opteron"), PROCESSOR_K8,
293f5f65 945 CPU_K8_FLAGS, 0 },
8a2c8fef 946 { STRING_COMMA_LEN ("k8"), PROCESSOR_K8,
293f5f65 947 CPU_K8_FLAGS, 0 },
8a2c8fef 948 { STRING_COMMA_LEN ("amdfam10"), PROCESSOR_AMDFAM10,
293f5f65 949 CPU_AMDFAM10_FLAGS, 0 },
8aedb9fe 950 { STRING_COMMA_LEN ("bdver1"), PROCESSOR_BD,
293f5f65 951 CPU_BDVER1_FLAGS, 0 },
8aedb9fe 952 { STRING_COMMA_LEN ("bdver2"), PROCESSOR_BD,
293f5f65 953 CPU_BDVER2_FLAGS, 0 },
5e5c50d3 954 { STRING_COMMA_LEN ("bdver3"), PROCESSOR_BD,
293f5f65 955 CPU_BDVER3_FLAGS, 0 },
c7b0bd56 956 { STRING_COMMA_LEN ("bdver4"), PROCESSOR_BD,
293f5f65 957 CPU_BDVER4_FLAGS, 0 },
029f3522 958 { STRING_COMMA_LEN ("znver1"), PROCESSOR_ZNVER,
293f5f65 959 CPU_ZNVER1_FLAGS, 0 },
a9660a6f
AP
960 { STRING_COMMA_LEN ("znver2"), PROCESSOR_ZNVER,
961 CPU_ZNVER2_FLAGS, 0 },
7b458c12 962 { STRING_COMMA_LEN ("btver1"), PROCESSOR_BT,
293f5f65 963 CPU_BTVER1_FLAGS, 0 },
7b458c12 964 { STRING_COMMA_LEN ("btver2"), PROCESSOR_BT,
293f5f65 965 CPU_BTVER2_FLAGS, 0 },
8a2c8fef 966 { STRING_COMMA_LEN (".8087"), PROCESSOR_UNKNOWN,
293f5f65 967 CPU_8087_FLAGS, 0 },
8a2c8fef 968 { STRING_COMMA_LEN (".287"), PROCESSOR_UNKNOWN,
293f5f65 969 CPU_287_FLAGS, 0 },
8a2c8fef 970 { STRING_COMMA_LEN (".387"), PROCESSOR_UNKNOWN,
293f5f65 971 CPU_387_FLAGS, 0 },
1848e567
L
972 { STRING_COMMA_LEN (".687"), PROCESSOR_UNKNOWN,
973 CPU_687_FLAGS, 0 },
d871f3f4
L
974 { STRING_COMMA_LEN (".cmov"), PROCESSOR_UNKNOWN,
975 CPU_CMOV_FLAGS, 0 },
976 { STRING_COMMA_LEN (".fxsr"), PROCESSOR_UNKNOWN,
977 CPU_FXSR_FLAGS, 0 },
8a2c8fef 978 { STRING_COMMA_LEN (".mmx"), PROCESSOR_UNKNOWN,
293f5f65 979 CPU_MMX_FLAGS, 0 },
8a2c8fef 980 { STRING_COMMA_LEN (".sse"), PROCESSOR_UNKNOWN,
293f5f65 981 CPU_SSE_FLAGS, 0 },
8a2c8fef 982 { STRING_COMMA_LEN (".sse2"), PROCESSOR_UNKNOWN,
293f5f65 983 CPU_SSE2_FLAGS, 0 },
8a2c8fef 984 { STRING_COMMA_LEN (".sse3"), PROCESSOR_UNKNOWN,
293f5f65 985 CPU_SSE3_FLAGS, 0 },
af5c13b0
L
986 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
987 CPU_SSE4A_FLAGS, 0 },
8a2c8fef 988 { STRING_COMMA_LEN (".ssse3"), PROCESSOR_UNKNOWN,
293f5f65 989 CPU_SSSE3_FLAGS, 0 },
8a2c8fef 990 { STRING_COMMA_LEN (".sse4.1"), PROCESSOR_UNKNOWN,
293f5f65 991 CPU_SSE4_1_FLAGS, 0 },
8a2c8fef 992 { STRING_COMMA_LEN (".sse4.2"), PROCESSOR_UNKNOWN,
293f5f65 993 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 994 { STRING_COMMA_LEN (".sse4"), PROCESSOR_UNKNOWN,
293f5f65 995 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 996 { STRING_COMMA_LEN (".avx"), PROCESSOR_UNKNOWN,
293f5f65 997 CPU_AVX_FLAGS, 0 },
6c30d220 998 { STRING_COMMA_LEN (".avx2"), PROCESSOR_UNKNOWN,
293f5f65 999 CPU_AVX2_FLAGS, 0 },
43234a1e 1000 { STRING_COMMA_LEN (".avx512f"), PROCESSOR_UNKNOWN,
293f5f65 1001 CPU_AVX512F_FLAGS, 0 },
43234a1e 1002 { STRING_COMMA_LEN (".avx512cd"), PROCESSOR_UNKNOWN,
293f5f65 1003 CPU_AVX512CD_FLAGS, 0 },
43234a1e 1004 { STRING_COMMA_LEN (".avx512er"), PROCESSOR_UNKNOWN,
293f5f65 1005 CPU_AVX512ER_FLAGS, 0 },
43234a1e 1006 { STRING_COMMA_LEN (".avx512pf"), PROCESSOR_UNKNOWN,
293f5f65 1007 CPU_AVX512PF_FLAGS, 0 },
1dfc6506 1008 { STRING_COMMA_LEN (".avx512dq"), PROCESSOR_UNKNOWN,
293f5f65 1009 CPU_AVX512DQ_FLAGS, 0 },
1dfc6506 1010 { STRING_COMMA_LEN (".avx512bw"), PROCESSOR_UNKNOWN,
293f5f65 1011 CPU_AVX512BW_FLAGS, 0 },
1dfc6506 1012 { STRING_COMMA_LEN (".avx512vl"), PROCESSOR_UNKNOWN,
293f5f65 1013 CPU_AVX512VL_FLAGS, 0 },
8a2c8fef 1014 { STRING_COMMA_LEN (".vmx"), PROCESSOR_UNKNOWN,
293f5f65 1015 CPU_VMX_FLAGS, 0 },
8729a6f6 1016 { STRING_COMMA_LEN (".vmfunc"), PROCESSOR_UNKNOWN,
293f5f65 1017 CPU_VMFUNC_FLAGS, 0 },
8a2c8fef 1018 { STRING_COMMA_LEN (".smx"), PROCESSOR_UNKNOWN,
293f5f65 1019 CPU_SMX_FLAGS, 0 },
8a2c8fef 1020 { STRING_COMMA_LEN (".xsave"), PROCESSOR_UNKNOWN,
293f5f65 1021 CPU_XSAVE_FLAGS, 0 },
c7b8aa3a 1022 { STRING_COMMA_LEN (".xsaveopt"), PROCESSOR_UNKNOWN,
293f5f65 1023 CPU_XSAVEOPT_FLAGS, 0 },
1dfc6506 1024 { STRING_COMMA_LEN (".xsavec"), PROCESSOR_UNKNOWN,
293f5f65 1025 CPU_XSAVEC_FLAGS, 0 },
1dfc6506 1026 { STRING_COMMA_LEN (".xsaves"), PROCESSOR_UNKNOWN,
293f5f65 1027 CPU_XSAVES_FLAGS, 0 },
8a2c8fef 1028 { STRING_COMMA_LEN (".aes"), PROCESSOR_UNKNOWN,
293f5f65 1029 CPU_AES_FLAGS, 0 },
8a2c8fef 1030 { STRING_COMMA_LEN (".pclmul"), PROCESSOR_UNKNOWN,
293f5f65 1031 CPU_PCLMUL_FLAGS, 0 },
8a2c8fef 1032 { STRING_COMMA_LEN (".clmul"), PROCESSOR_UNKNOWN,
293f5f65 1033 CPU_PCLMUL_FLAGS, 1 },
c7b8aa3a 1034 { STRING_COMMA_LEN (".fsgsbase"), PROCESSOR_UNKNOWN,
293f5f65 1035 CPU_FSGSBASE_FLAGS, 0 },
c7b8aa3a 1036 { STRING_COMMA_LEN (".rdrnd"), PROCESSOR_UNKNOWN,
293f5f65 1037 CPU_RDRND_FLAGS, 0 },
c7b8aa3a 1038 { STRING_COMMA_LEN (".f16c"), PROCESSOR_UNKNOWN,
293f5f65 1039 CPU_F16C_FLAGS, 0 },
6c30d220 1040 { STRING_COMMA_LEN (".bmi2"), PROCESSOR_UNKNOWN,
293f5f65 1041 CPU_BMI2_FLAGS, 0 },
8a2c8fef 1042 { STRING_COMMA_LEN (".fma"), PROCESSOR_UNKNOWN,
293f5f65 1043 CPU_FMA_FLAGS, 0 },
8a2c8fef 1044 { STRING_COMMA_LEN (".fma4"), PROCESSOR_UNKNOWN,
293f5f65 1045 CPU_FMA4_FLAGS, 0 },
8a2c8fef 1046 { STRING_COMMA_LEN (".xop"), PROCESSOR_UNKNOWN,
293f5f65 1047 CPU_XOP_FLAGS, 0 },
8a2c8fef 1048 { STRING_COMMA_LEN (".lwp"), PROCESSOR_UNKNOWN,
293f5f65 1049 CPU_LWP_FLAGS, 0 },
8a2c8fef 1050 { STRING_COMMA_LEN (".movbe"), PROCESSOR_UNKNOWN,
293f5f65 1051 CPU_MOVBE_FLAGS, 0 },
60aa667e 1052 { STRING_COMMA_LEN (".cx16"), PROCESSOR_UNKNOWN,
293f5f65 1053 CPU_CX16_FLAGS, 0 },
8a2c8fef 1054 { STRING_COMMA_LEN (".ept"), PROCESSOR_UNKNOWN,
293f5f65 1055 CPU_EPT_FLAGS, 0 },
6c30d220 1056 { STRING_COMMA_LEN (".lzcnt"), PROCESSOR_UNKNOWN,
293f5f65 1057 CPU_LZCNT_FLAGS, 0 },
272a84b1
L
1058 { STRING_COMMA_LEN (".popcnt"), PROCESSOR_UNKNOWN,
1059 CPU_POPCNT_FLAGS, 0 },
42164a71 1060 { STRING_COMMA_LEN (".hle"), PROCESSOR_UNKNOWN,
293f5f65 1061 CPU_HLE_FLAGS, 0 },
42164a71 1062 { STRING_COMMA_LEN (".rtm"), PROCESSOR_UNKNOWN,
293f5f65 1063 CPU_RTM_FLAGS, 0 },
6c30d220 1064 { STRING_COMMA_LEN (".invpcid"), PROCESSOR_UNKNOWN,
293f5f65 1065 CPU_INVPCID_FLAGS, 0 },
8a2c8fef 1066 { STRING_COMMA_LEN (".clflush"), PROCESSOR_UNKNOWN,
293f5f65 1067 CPU_CLFLUSH_FLAGS, 0 },
22109423 1068 { STRING_COMMA_LEN (".nop"), PROCESSOR_UNKNOWN,
293f5f65 1069 CPU_NOP_FLAGS, 0 },
8a2c8fef 1070 { STRING_COMMA_LEN (".syscall"), PROCESSOR_UNKNOWN,
293f5f65 1071 CPU_SYSCALL_FLAGS, 0 },
8a2c8fef 1072 { STRING_COMMA_LEN (".rdtscp"), PROCESSOR_UNKNOWN,
293f5f65 1073 CPU_RDTSCP_FLAGS, 0 },
8a2c8fef 1074 { STRING_COMMA_LEN (".3dnow"), PROCESSOR_UNKNOWN,
293f5f65 1075 CPU_3DNOW_FLAGS, 0 },
8a2c8fef 1076 { STRING_COMMA_LEN (".3dnowa"), PROCESSOR_UNKNOWN,
293f5f65 1077 CPU_3DNOWA_FLAGS, 0 },
8a2c8fef 1078 { STRING_COMMA_LEN (".padlock"), PROCESSOR_UNKNOWN,
293f5f65 1079 CPU_PADLOCK_FLAGS, 0 },
8a2c8fef 1080 { STRING_COMMA_LEN (".pacifica"), PROCESSOR_UNKNOWN,
293f5f65 1081 CPU_SVME_FLAGS, 1 },
8a2c8fef 1082 { STRING_COMMA_LEN (".svme"), PROCESSOR_UNKNOWN,
293f5f65 1083 CPU_SVME_FLAGS, 0 },
8a2c8fef 1084 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
293f5f65 1085 CPU_SSE4A_FLAGS, 0 },
8a2c8fef 1086 { STRING_COMMA_LEN (".abm"), PROCESSOR_UNKNOWN,
293f5f65 1087 CPU_ABM_FLAGS, 0 },
87973e9f 1088 { STRING_COMMA_LEN (".bmi"), PROCESSOR_UNKNOWN,
293f5f65 1089 CPU_BMI_FLAGS, 0 },
2a2a0f38 1090 { STRING_COMMA_LEN (".tbm"), PROCESSOR_UNKNOWN,
293f5f65 1091 CPU_TBM_FLAGS, 0 },
e2e1fcde 1092 { STRING_COMMA_LEN (".adx"), PROCESSOR_UNKNOWN,
293f5f65 1093 CPU_ADX_FLAGS, 0 },
e2e1fcde 1094 { STRING_COMMA_LEN (".rdseed"), PROCESSOR_UNKNOWN,
293f5f65 1095 CPU_RDSEED_FLAGS, 0 },
e2e1fcde 1096 { STRING_COMMA_LEN (".prfchw"), PROCESSOR_UNKNOWN,
293f5f65 1097 CPU_PRFCHW_FLAGS, 0 },
5c111e37 1098 { STRING_COMMA_LEN (".smap"), PROCESSOR_UNKNOWN,
293f5f65 1099 CPU_SMAP_FLAGS, 0 },
7e8b059b 1100 { STRING_COMMA_LEN (".mpx"), PROCESSOR_UNKNOWN,
293f5f65 1101 CPU_MPX_FLAGS, 0 },
a0046408 1102 { STRING_COMMA_LEN (".sha"), PROCESSOR_UNKNOWN,
293f5f65 1103 CPU_SHA_FLAGS, 0 },
963f3586 1104 { STRING_COMMA_LEN (".clflushopt"), PROCESSOR_UNKNOWN,
293f5f65 1105 CPU_CLFLUSHOPT_FLAGS, 0 },
dcf893b5 1106 { STRING_COMMA_LEN (".prefetchwt1"), PROCESSOR_UNKNOWN,
293f5f65 1107 CPU_PREFETCHWT1_FLAGS, 0 },
2cf200a4 1108 { STRING_COMMA_LEN (".se1"), PROCESSOR_UNKNOWN,
293f5f65 1109 CPU_SE1_FLAGS, 0 },
c5e7287a 1110 { STRING_COMMA_LEN (".clwb"), PROCESSOR_UNKNOWN,
293f5f65 1111 CPU_CLWB_FLAGS, 0 },
2cc1b5aa 1112 { STRING_COMMA_LEN (".avx512ifma"), PROCESSOR_UNKNOWN,
293f5f65 1113 CPU_AVX512IFMA_FLAGS, 0 },
14f195c9 1114 { STRING_COMMA_LEN (".avx512vbmi"), PROCESSOR_UNKNOWN,
293f5f65 1115 CPU_AVX512VBMI_FLAGS, 0 },
920d2ddc
IT
1116 { STRING_COMMA_LEN (".avx512_4fmaps"), PROCESSOR_UNKNOWN,
1117 CPU_AVX512_4FMAPS_FLAGS, 0 },
47acf0bd
IT
1118 { STRING_COMMA_LEN (".avx512_4vnniw"), PROCESSOR_UNKNOWN,
1119 CPU_AVX512_4VNNIW_FLAGS, 0 },
620214f7
IT
1120 { STRING_COMMA_LEN (".avx512_vpopcntdq"), PROCESSOR_UNKNOWN,
1121 CPU_AVX512_VPOPCNTDQ_FLAGS, 0 },
53467f57
IT
1122 { STRING_COMMA_LEN (".avx512_vbmi2"), PROCESSOR_UNKNOWN,
1123 CPU_AVX512_VBMI2_FLAGS, 0 },
8cfcb765
IT
1124 { STRING_COMMA_LEN (".avx512_vnni"), PROCESSOR_UNKNOWN,
1125 CPU_AVX512_VNNI_FLAGS, 0 },
ee6872be
IT
1126 { STRING_COMMA_LEN (".avx512_bitalg"), PROCESSOR_UNKNOWN,
1127 CPU_AVX512_BITALG_FLAGS, 0 },
029f3522 1128 { STRING_COMMA_LEN (".clzero"), PROCESSOR_UNKNOWN,
293f5f65 1129 CPU_CLZERO_FLAGS, 0 },
9916071f 1130 { STRING_COMMA_LEN (".mwaitx"), PROCESSOR_UNKNOWN,
293f5f65 1131 CPU_MWAITX_FLAGS, 0 },
8eab4136 1132 { STRING_COMMA_LEN (".ospke"), PROCESSOR_UNKNOWN,
293f5f65 1133 CPU_OSPKE_FLAGS, 0 },
8bc52696 1134 { STRING_COMMA_LEN (".rdpid"), PROCESSOR_UNKNOWN,
293f5f65 1135 CPU_RDPID_FLAGS, 0 },
6b40c462
L
1136 { STRING_COMMA_LEN (".ptwrite"), PROCESSOR_UNKNOWN,
1137 CPU_PTWRITE_FLAGS, 0 },
d777820b
IT
1138 { STRING_COMMA_LEN (".ibt"), PROCESSOR_UNKNOWN,
1139 CPU_IBT_FLAGS, 0 },
1140 { STRING_COMMA_LEN (".shstk"), PROCESSOR_UNKNOWN,
1141 CPU_SHSTK_FLAGS, 0 },
48521003
IT
1142 { STRING_COMMA_LEN (".gfni"), PROCESSOR_UNKNOWN,
1143 CPU_GFNI_FLAGS, 0 },
8dcf1fad
IT
1144 { STRING_COMMA_LEN (".vaes"), PROCESSOR_UNKNOWN,
1145 CPU_VAES_FLAGS, 0 },
ff1982d5
IT
1146 { STRING_COMMA_LEN (".vpclmulqdq"), PROCESSOR_UNKNOWN,
1147 CPU_VPCLMULQDQ_FLAGS, 0 },
3233d7d0
IT
1148 { STRING_COMMA_LEN (".wbnoinvd"), PROCESSOR_UNKNOWN,
1149 CPU_WBNOINVD_FLAGS, 0 },
be3a8dca
IT
1150 { STRING_COMMA_LEN (".pconfig"), PROCESSOR_UNKNOWN,
1151 CPU_PCONFIG_FLAGS, 0 },
de89d0a3
IT
1152 { STRING_COMMA_LEN (".waitpkg"), PROCESSOR_UNKNOWN,
1153 CPU_WAITPKG_FLAGS, 0 },
c48935d7
IT
1154 { STRING_COMMA_LEN (".cldemote"), PROCESSOR_UNKNOWN,
1155 CPU_CLDEMOTE_FLAGS, 0 },
c0a30a9f
L
1156 { STRING_COMMA_LEN (".movdiri"), PROCESSOR_UNKNOWN,
1157 CPU_MOVDIRI_FLAGS, 0 },
1158 { STRING_COMMA_LEN (".movdir64b"), PROCESSOR_UNKNOWN,
1159 CPU_MOVDIR64B_FLAGS, 0 },
d6aab7a1
XG
1160 { STRING_COMMA_LEN (".avx512_bf16"), PROCESSOR_UNKNOWN,
1161 CPU_AVX512_BF16_FLAGS, 0 },
9186c494
L
1162 { STRING_COMMA_LEN (".avx512_vp2intersect"), PROCESSOR_UNKNOWN,
1163 CPU_AVX512_VP2INTERSECT_FLAGS, 0 },
dd455cf5
L
1164 { STRING_COMMA_LEN (".enqcmd"), PROCESSOR_UNKNOWN,
1165 CPU_ENQCMD_FLAGS, 0 },
142861df
JB
1166 { STRING_COMMA_LEN (".rdpru"), PROCESSOR_UNKNOWN,
1167 CPU_RDPRU_FLAGS, 0 },
1168 { STRING_COMMA_LEN (".mcommit"), PROCESSOR_UNKNOWN,
1169 CPU_MCOMMIT_FLAGS, 0 },
293f5f65
L
1170};
1171
1172static const noarch_entry cpu_noarch[] =
1173{
1174 { STRING_COMMA_LEN ("no87"), CPU_ANY_X87_FLAGS },
1848e567
L
1175 { STRING_COMMA_LEN ("no287"), CPU_ANY_287_FLAGS },
1176 { STRING_COMMA_LEN ("no387"), CPU_ANY_387_FLAGS },
1177 { STRING_COMMA_LEN ("no687"), CPU_ANY_687_FLAGS },
d871f3f4
L
1178 { STRING_COMMA_LEN ("nocmov"), CPU_ANY_CMOV_FLAGS },
1179 { STRING_COMMA_LEN ("nofxsr"), CPU_ANY_FXSR_FLAGS },
293f5f65
L
1180 { STRING_COMMA_LEN ("nommx"), CPU_ANY_MMX_FLAGS },
1181 { STRING_COMMA_LEN ("nosse"), CPU_ANY_SSE_FLAGS },
1848e567
L
1182 { STRING_COMMA_LEN ("nosse2"), CPU_ANY_SSE2_FLAGS },
1183 { STRING_COMMA_LEN ("nosse3"), CPU_ANY_SSE3_FLAGS },
af5c13b0 1184 { STRING_COMMA_LEN ("nosse4a"), CPU_ANY_SSE4A_FLAGS },
1848e567
L
1185 { STRING_COMMA_LEN ("nossse3"), CPU_ANY_SSSE3_FLAGS },
1186 { STRING_COMMA_LEN ("nosse4.1"), CPU_ANY_SSE4_1_FLAGS },
1187 { STRING_COMMA_LEN ("nosse4.2"), CPU_ANY_SSE4_2_FLAGS },
af5c13b0 1188 { STRING_COMMA_LEN ("nosse4"), CPU_ANY_SSE4_1_FLAGS },
293f5f65 1189 { STRING_COMMA_LEN ("noavx"), CPU_ANY_AVX_FLAGS },
1848e567 1190 { STRING_COMMA_LEN ("noavx2"), CPU_ANY_AVX2_FLAGS },
144b71e2
L
1191 { STRING_COMMA_LEN ("noavx512f"), CPU_ANY_AVX512F_FLAGS },
1192 { STRING_COMMA_LEN ("noavx512cd"), CPU_ANY_AVX512CD_FLAGS },
1193 { STRING_COMMA_LEN ("noavx512er"), CPU_ANY_AVX512ER_FLAGS },
1194 { STRING_COMMA_LEN ("noavx512pf"), CPU_ANY_AVX512PF_FLAGS },
1195 { STRING_COMMA_LEN ("noavx512dq"), CPU_ANY_AVX512DQ_FLAGS },
1196 { STRING_COMMA_LEN ("noavx512bw"), CPU_ANY_AVX512BW_FLAGS },
1197 { STRING_COMMA_LEN ("noavx512vl"), CPU_ANY_AVX512VL_FLAGS },
1198 { STRING_COMMA_LEN ("noavx512ifma"), CPU_ANY_AVX512IFMA_FLAGS },
1199 { STRING_COMMA_LEN ("noavx512vbmi"), CPU_ANY_AVX512VBMI_FLAGS },
920d2ddc 1200 { STRING_COMMA_LEN ("noavx512_4fmaps"), CPU_ANY_AVX512_4FMAPS_FLAGS },
47acf0bd 1201 { STRING_COMMA_LEN ("noavx512_4vnniw"), CPU_ANY_AVX512_4VNNIW_FLAGS },
620214f7 1202 { STRING_COMMA_LEN ("noavx512_vpopcntdq"), CPU_ANY_AVX512_VPOPCNTDQ_FLAGS },
53467f57 1203 { STRING_COMMA_LEN ("noavx512_vbmi2"), CPU_ANY_AVX512_VBMI2_FLAGS },
8cfcb765 1204 { STRING_COMMA_LEN ("noavx512_vnni"), CPU_ANY_AVX512_VNNI_FLAGS },
ee6872be 1205 { STRING_COMMA_LEN ("noavx512_bitalg"), CPU_ANY_AVX512_BITALG_FLAGS },
d777820b
IT
1206 { STRING_COMMA_LEN ("noibt"), CPU_ANY_IBT_FLAGS },
1207 { STRING_COMMA_LEN ("noshstk"), CPU_ANY_SHSTK_FLAGS },
c0a30a9f
L
1208 { STRING_COMMA_LEN ("nomovdiri"), CPU_ANY_MOVDIRI_FLAGS },
1209 { STRING_COMMA_LEN ("nomovdir64b"), CPU_ANY_MOVDIR64B_FLAGS },
d6aab7a1 1210 { STRING_COMMA_LEN ("noavx512_bf16"), CPU_ANY_AVX512_BF16_FLAGS },
9186c494 1211 { STRING_COMMA_LEN ("noavx512_vp2intersect"), CPU_ANY_SHSTK_FLAGS },
dd455cf5 1212 { STRING_COMMA_LEN ("noenqcmd"), CPU_ANY_ENQCMD_FLAGS },
e413e4e9
AM
1213};
1214
704209c0 1215#ifdef I386COFF
a6c24e68
NC
1216/* Like s_lcomm_internal in gas/read.c but the alignment string
1217 is allowed to be optional. */
1218
1219static symbolS *
1220pe_lcomm_internal (int needs_align, symbolS *symbolP, addressT size)
1221{
1222 addressT align = 0;
1223
1224 SKIP_WHITESPACE ();
1225
7ab9ffdd 1226 if (needs_align
a6c24e68
NC
1227 && *input_line_pointer == ',')
1228 {
1229 align = parse_align (needs_align - 1);
7ab9ffdd 1230
a6c24e68
NC
1231 if (align == (addressT) -1)
1232 return NULL;
1233 }
1234 else
1235 {
1236 if (size >= 8)
1237 align = 3;
1238 else if (size >= 4)
1239 align = 2;
1240 else if (size >= 2)
1241 align = 1;
1242 else
1243 align = 0;
1244 }
1245
1246 bss_alloc (symbolP, size, align);
1247 return symbolP;
1248}
1249
704209c0 1250static void
a6c24e68
NC
1251pe_lcomm (int needs_align)
1252{
1253 s_comm_internal (needs_align * 2, pe_lcomm_internal);
1254}
704209c0 1255#endif
a6c24e68 1256
29b0f896
AM
1257const pseudo_typeS md_pseudo_table[] =
1258{
1259#if !defined(OBJ_AOUT) && !defined(USE_ALIGN_PTWO)
1260 {"align", s_align_bytes, 0},
1261#else
1262 {"align", s_align_ptwo, 0},
1263#endif
1264 {"arch", set_cpu_arch, 0},
1265#ifndef I386COFF
1266 {"bss", s_bss, 0},
a6c24e68
NC
1267#else
1268 {"lcomm", pe_lcomm, 1},
29b0f896
AM
1269#endif
1270 {"ffloat", float_cons, 'f'},
1271 {"dfloat", float_cons, 'd'},
1272 {"tfloat", float_cons, 'x'},
1273 {"value", cons, 2},
d182319b 1274 {"slong", signed_cons, 4},
29b0f896
AM
1275 {"noopt", s_ignore, 0},
1276 {"optim", s_ignore, 0},
1277 {"code16gcc", set_16bit_gcc_code_flag, CODE_16BIT},
1278 {"code16", set_code_flag, CODE_16BIT},
1279 {"code32", set_code_flag, CODE_32BIT},
da5f19a2 1280#ifdef BFD64
29b0f896 1281 {"code64", set_code_flag, CODE_64BIT},
da5f19a2 1282#endif
29b0f896
AM
1283 {"intel_syntax", set_intel_syntax, 1},
1284 {"att_syntax", set_intel_syntax, 0},
1efbbeb4
L
1285 {"intel_mnemonic", set_intel_mnemonic, 1},
1286 {"att_mnemonic", set_intel_mnemonic, 0},
db51cc60
L
1287 {"allow_index_reg", set_allow_index_reg, 1},
1288 {"disallow_index_reg", set_allow_index_reg, 0},
7bab8ab5
JB
1289 {"sse_check", set_check, 0},
1290 {"operand_check", set_check, 1},
3b22753a
L
1291#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
1292 {"largecomm", handle_large_common, 0},
07a53e5c 1293#else
68d20676 1294 {"file", dwarf2_directive_file, 0},
07a53e5c
RH
1295 {"loc", dwarf2_directive_loc, 0},
1296 {"loc_mark_labels", dwarf2_directive_loc_mark_labels, 0},
3b22753a 1297#endif
6482c264
NC
1298#ifdef TE_PE
1299 {"secrel32", pe_directive_secrel, 0},
1300#endif
29b0f896
AM
1301 {0, 0, 0}
1302};
1303
1304/* For interface with expression (). */
1305extern char *input_line_pointer;
1306
1307/* Hash table for instruction mnemonic lookup. */
1308static struct hash_control *op_hash;
1309
1310/* Hash table for register lookup. */
1311static struct hash_control *reg_hash;
1312\f
ce8a8b2f
AM
1313 /* Various efficient no-op patterns for aligning code labels.
1314 Note: Don't try to assemble the instructions in the comments.
1315 0L and 0w are not legal. */
62a02d25
L
1316static const unsigned char f32_1[] =
1317 {0x90}; /* nop */
1318static const unsigned char f32_2[] =
1319 {0x66,0x90}; /* xchg %ax,%ax */
1320static const unsigned char f32_3[] =
1321 {0x8d,0x76,0x00}; /* leal 0(%esi),%esi */
1322static const unsigned char f32_4[] =
1323 {0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
62a02d25
L
1324static const unsigned char f32_6[] =
1325 {0x8d,0xb6,0x00,0x00,0x00,0x00}; /* leal 0L(%esi),%esi */
1326static const unsigned char f32_7[] =
1327 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
62a02d25 1328static const unsigned char f16_3[] =
3ae729d5 1329 {0x8d,0x74,0x00}; /* lea 0(%si),%si */
62a02d25 1330static const unsigned char f16_4[] =
3ae729d5
L
1331 {0x8d,0xb4,0x00,0x00}; /* lea 0W(%si),%si */
1332static const unsigned char jump_disp8[] =
1333 {0xeb}; /* jmp disp8 */
1334static const unsigned char jump32_disp32[] =
1335 {0xe9}; /* jmp disp32 */
1336static const unsigned char jump16_disp32[] =
1337 {0x66,0xe9}; /* jmp disp32 */
62a02d25
L
1338/* 32-bit NOPs patterns. */
1339static const unsigned char *const f32_patt[] = {
3ae729d5 1340 f32_1, f32_2, f32_3, f32_4, NULL, f32_6, f32_7
62a02d25
L
1341};
1342/* 16-bit NOPs patterns. */
1343static const unsigned char *const f16_patt[] = {
3ae729d5 1344 f32_1, f32_2, f16_3, f16_4
62a02d25
L
1345};
1346/* nopl (%[re]ax) */
1347static const unsigned char alt_3[] =
1348 {0x0f,0x1f,0x00};
1349/* nopl 0(%[re]ax) */
1350static const unsigned char alt_4[] =
1351 {0x0f,0x1f,0x40,0x00};
1352/* nopl 0(%[re]ax,%[re]ax,1) */
1353static const unsigned char alt_5[] =
1354 {0x0f,0x1f,0x44,0x00,0x00};
1355/* nopw 0(%[re]ax,%[re]ax,1) */
1356static const unsigned char alt_6[] =
1357 {0x66,0x0f,0x1f,0x44,0x00,0x00};
1358/* nopl 0L(%[re]ax) */
1359static const unsigned char alt_7[] =
1360 {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
1361/* nopl 0L(%[re]ax,%[re]ax,1) */
1362static const unsigned char alt_8[] =
1363 {0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1364/* nopw 0L(%[re]ax,%[re]ax,1) */
1365static const unsigned char alt_9[] =
1366 {0x66,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1367/* nopw %cs:0L(%[re]ax,%[re]ax,1) */
1368static const unsigned char alt_10[] =
1369 {0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
3ae729d5
L
1370/* data16 nopw %cs:0L(%eax,%eax,1) */
1371static const unsigned char alt_11[] =
1372 {0x66,0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
62a02d25
L
1373/* 32-bit and 64-bit NOPs patterns. */
1374static const unsigned char *const alt_patt[] = {
1375 f32_1, f32_2, alt_3, alt_4, alt_5, alt_6, alt_7, alt_8,
3ae729d5 1376 alt_9, alt_10, alt_11
62a02d25
L
1377};
1378
1379/* Genenerate COUNT bytes of NOPs to WHERE from PATT with the maximum
1380 size of a single NOP instruction MAX_SINGLE_NOP_SIZE. */
1381
1382static void
1383i386_output_nops (char *where, const unsigned char *const *patt,
1384 int count, int max_single_nop_size)
1385
1386{
3ae729d5
L
1387 /* Place the longer NOP first. */
1388 int last;
1389 int offset;
3076e594
NC
1390 const unsigned char *nops;
1391
1392 if (max_single_nop_size < 1)
1393 {
1394 as_fatal (_("i386_output_nops called to generate nops of at most %d bytes!"),
1395 max_single_nop_size);
1396 return;
1397 }
1398
1399 nops = patt[max_single_nop_size - 1];
3ae729d5
L
1400
1401 /* Use the smaller one if the requsted one isn't available. */
1402 if (nops == NULL)
62a02d25 1403 {
3ae729d5
L
1404 max_single_nop_size--;
1405 nops = patt[max_single_nop_size - 1];
62a02d25
L
1406 }
1407
3ae729d5
L
1408 last = count % max_single_nop_size;
1409
1410 count -= last;
1411 for (offset = 0; offset < count; offset += max_single_nop_size)
1412 memcpy (where + offset, nops, max_single_nop_size);
1413
1414 if (last)
1415 {
1416 nops = patt[last - 1];
1417 if (nops == NULL)
1418 {
1419 /* Use the smaller one plus one-byte NOP if the needed one
1420 isn't available. */
1421 last--;
1422 nops = patt[last - 1];
1423 memcpy (where + offset, nops, last);
1424 where[offset + last] = *patt[0];
1425 }
1426 else
1427 memcpy (where + offset, nops, last);
1428 }
62a02d25
L
1429}
1430
3ae729d5
L
1431static INLINE int
1432fits_in_imm7 (offsetT num)
1433{
1434 return (num & 0x7f) == num;
1435}
1436
1437static INLINE int
1438fits_in_imm31 (offsetT num)
1439{
1440 return (num & 0x7fffffff) == num;
1441}
62a02d25
L
1442
1443/* Genenerate COUNT bytes of NOPs to WHERE with the maximum size of a
1444 single NOP instruction LIMIT. */
1445
1446void
3ae729d5 1447i386_generate_nops (fragS *fragP, char *where, offsetT count, int limit)
62a02d25 1448{
3ae729d5 1449 const unsigned char *const *patt = NULL;
62a02d25 1450 int max_single_nop_size;
3ae729d5
L
1451 /* Maximum number of NOPs before switching to jump over NOPs. */
1452 int max_number_of_nops;
62a02d25 1453
3ae729d5 1454 switch (fragP->fr_type)
62a02d25 1455 {
3ae729d5
L
1456 case rs_fill_nop:
1457 case rs_align_code:
1458 break;
e379e5f3
L
1459 case rs_machine_dependent:
1460 /* Allow NOP padding for jumps and calls. */
1461 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
1462 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
1463 break;
1464 /* Fall through. */
3ae729d5 1465 default:
62a02d25
L
1466 return;
1467 }
1468
ccc9c027
L
1469 /* We need to decide which NOP sequence to use for 32bit and
1470 64bit. When -mtune= is used:
4eed87de 1471
76bc74dc
L
1472 1. For PROCESSOR_I386, PROCESSOR_I486, PROCESSOR_PENTIUM and
1473 PROCESSOR_GENERIC32, f32_patt will be used.
80b8656c
L
1474 2. For the rest, alt_patt will be used.
1475
1476 When -mtune= isn't used, alt_patt will be used if
22109423 1477 cpu_arch_isa_flags has CpuNop. Otherwise, f32_patt will
76bc74dc 1478 be used.
ccc9c027
L
1479
1480 When -march= or .arch is used, we can't use anything beyond
1481 cpu_arch_isa_flags. */
1482
1483 if (flag_code == CODE_16BIT)
1484 {
3ae729d5
L
1485 patt = f16_patt;
1486 max_single_nop_size = sizeof (f16_patt) / sizeof (f16_patt[0]);
1487 /* Limit number of NOPs to 2 in 16-bit mode. */
1488 max_number_of_nops = 2;
252b5132 1489 }
33fef721 1490 else
ccc9c027 1491 {
fbf3f584 1492 if (fragP->tc_frag_data.isa == PROCESSOR_UNKNOWN)
ccc9c027
L
1493 {
1494 /* PROCESSOR_UNKNOWN means that all ISAs may be used. */
1495 switch (cpu_arch_tune)
1496 {
1497 case PROCESSOR_UNKNOWN:
1498 /* We use cpu_arch_isa_flags to check if we SHOULD
22109423
L
1499 optimize with nops. */
1500 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1501 patt = alt_patt;
ccc9c027
L
1502 else
1503 patt = f32_patt;
1504 break;
ccc9c027
L
1505 case PROCESSOR_PENTIUM4:
1506 case PROCESSOR_NOCONA:
ef05d495 1507 case PROCESSOR_CORE:
76bc74dc 1508 case PROCESSOR_CORE2:
bd5295b2 1509 case PROCESSOR_COREI7:
3632d14b 1510 case PROCESSOR_L1OM:
7a9068fe 1511 case PROCESSOR_K1OM:
76bc74dc 1512 case PROCESSOR_GENERIC64:
ccc9c027
L
1513 case PROCESSOR_K6:
1514 case PROCESSOR_ATHLON:
1515 case PROCESSOR_K8:
4eed87de 1516 case PROCESSOR_AMDFAM10:
8aedb9fe 1517 case PROCESSOR_BD:
029f3522 1518 case PROCESSOR_ZNVER:
7b458c12 1519 case PROCESSOR_BT:
80b8656c 1520 patt = alt_patt;
ccc9c027 1521 break;
76bc74dc 1522 case PROCESSOR_I386:
ccc9c027
L
1523 case PROCESSOR_I486:
1524 case PROCESSOR_PENTIUM:
2dde1948 1525 case PROCESSOR_PENTIUMPRO:
81486035 1526 case PROCESSOR_IAMCU:
ccc9c027
L
1527 case PROCESSOR_GENERIC32:
1528 patt = f32_patt;
1529 break;
4eed87de 1530 }
ccc9c027
L
1531 }
1532 else
1533 {
fbf3f584 1534 switch (fragP->tc_frag_data.tune)
ccc9c027
L
1535 {
1536 case PROCESSOR_UNKNOWN:
e6a14101 1537 /* When cpu_arch_isa is set, cpu_arch_tune shouldn't be
ccc9c027
L
1538 PROCESSOR_UNKNOWN. */
1539 abort ();
1540 break;
1541
76bc74dc 1542 case PROCESSOR_I386:
ccc9c027
L
1543 case PROCESSOR_I486:
1544 case PROCESSOR_PENTIUM:
81486035 1545 case PROCESSOR_IAMCU:
ccc9c027
L
1546 case PROCESSOR_K6:
1547 case PROCESSOR_ATHLON:
1548 case PROCESSOR_K8:
4eed87de 1549 case PROCESSOR_AMDFAM10:
8aedb9fe 1550 case PROCESSOR_BD:
029f3522 1551 case PROCESSOR_ZNVER:
7b458c12 1552 case PROCESSOR_BT:
ccc9c027
L
1553 case PROCESSOR_GENERIC32:
1554 /* We use cpu_arch_isa_flags to check if we CAN optimize
22109423
L
1555 with nops. */
1556 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1557 patt = alt_patt;
ccc9c027
L
1558 else
1559 patt = f32_patt;
1560 break;
76bc74dc
L
1561 case PROCESSOR_PENTIUMPRO:
1562 case PROCESSOR_PENTIUM4:
1563 case PROCESSOR_NOCONA:
1564 case PROCESSOR_CORE:
ef05d495 1565 case PROCESSOR_CORE2:
bd5295b2 1566 case PROCESSOR_COREI7:
3632d14b 1567 case PROCESSOR_L1OM:
7a9068fe 1568 case PROCESSOR_K1OM:
22109423 1569 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1570 patt = alt_patt;
ccc9c027
L
1571 else
1572 patt = f32_patt;
1573 break;
1574 case PROCESSOR_GENERIC64:
80b8656c 1575 patt = alt_patt;
ccc9c027 1576 break;
4eed87de 1577 }
ccc9c027
L
1578 }
1579
76bc74dc
L
1580 if (patt == f32_patt)
1581 {
3ae729d5
L
1582 max_single_nop_size = sizeof (f32_patt) / sizeof (f32_patt[0]);
1583 /* Limit number of NOPs to 2 for older processors. */
1584 max_number_of_nops = 2;
76bc74dc
L
1585 }
1586 else
1587 {
3ae729d5
L
1588 max_single_nop_size = sizeof (alt_patt) / sizeof (alt_patt[0]);
1589 /* Limit number of NOPs to 7 for newer processors. */
1590 max_number_of_nops = 7;
1591 }
1592 }
1593
1594 if (limit == 0)
1595 limit = max_single_nop_size;
1596
1597 if (fragP->fr_type == rs_fill_nop)
1598 {
1599 /* Output NOPs for .nop directive. */
1600 if (limit > max_single_nop_size)
1601 {
1602 as_bad_where (fragP->fr_file, fragP->fr_line,
1603 _("invalid single nop size: %d "
1604 "(expect within [0, %d])"),
1605 limit, max_single_nop_size);
1606 return;
1607 }
1608 }
e379e5f3 1609 else if (fragP->fr_type != rs_machine_dependent)
3ae729d5
L
1610 fragP->fr_var = count;
1611
1612 if ((count / max_single_nop_size) > max_number_of_nops)
1613 {
1614 /* Generate jump over NOPs. */
1615 offsetT disp = count - 2;
1616 if (fits_in_imm7 (disp))
1617 {
1618 /* Use "jmp disp8" if possible. */
1619 count = disp;
1620 where[0] = jump_disp8[0];
1621 where[1] = count;
1622 where += 2;
1623 }
1624 else
1625 {
1626 unsigned int size_of_jump;
1627
1628 if (flag_code == CODE_16BIT)
1629 {
1630 where[0] = jump16_disp32[0];
1631 where[1] = jump16_disp32[1];
1632 size_of_jump = 2;
1633 }
1634 else
1635 {
1636 where[0] = jump32_disp32[0];
1637 size_of_jump = 1;
1638 }
1639
1640 count -= size_of_jump + 4;
1641 if (!fits_in_imm31 (count))
1642 {
1643 as_bad_where (fragP->fr_file, fragP->fr_line,
1644 _("jump over nop padding out of range"));
1645 return;
1646 }
1647
1648 md_number_to_chars (where + size_of_jump, count, 4);
1649 where += size_of_jump + 4;
76bc74dc 1650 }
ccc9c027 1651 }
3ae729d5
L
1652
1653 /* Generate multiple NOPs. */
1654 i386_output_nops (where, patt, count, limit);
252b5132
RH
1655}
1656
c6fb90c8 1657static INLINE int
0dfbf9d7 1658operand_type_all_zero (const union i386_operand_type *x)
40fb9820 1659{
0dfbf9d7 1660 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1661 {
1662 case 3:
0dfbf9d7 1663 if (x->array[2])
c6fb90c8 1664 return 0;
1a0670f3 1665 /* Fall through. */
c6fb90c8 1666 case 2:
0dfbf9d7 1667 if (x->array[1])
c6fb90c8 1668 return 0;
1a0670f3 1669 /* Fall through. */
c6fb90c8 1670 case 1:
0dfbf9d7 1671 return !x->array[0];
c6fb90c8
L
1672 default:
1673 abort ();
1674 }
40fb9820
L
1675}
1676
c6fb90c8 1677static INLINE void
0dfbf9d7 1678operand_type_set (union i386_operand_type *x, unsigned int v)
40fb9820 1679{
0dfbf9d7 1680 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1681 {
1682 case 3:
0dfbf9d7 1683 x->array[2] = v;
1a0670f3 1684 /* Fall through. */
c6fb90c8 1685 case 2:
0dfbf9d7 1686 x->array[1] = v;
1a0670f3 1687 /* Fall through. */
c6fb90c8 1688 case 1:
0dfbf9d7 1689 x->array[0] = v;
1a0670f3 1690 /* Fall through. */
c6fb90c8
L
1691 break;
1692 default:
1693 abort ();
1694 }
bab6aec1
JB
1695
1696 x->bitfield.class = ClassNone;
75e5731b 1697 x->bitfield.instance = InstanceNone;
c6fb90c8 1698}
40fb9820 1699
c6fb90c8 1700static INLINE int
0dfbf9d7
L
1701operand_type_equal (const union i386_operand_type *x,
1702 const union i386_operand_type *y)
c6fb90c8 1703{
0dfbf9d7 1704 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1705 {
1706 case 3:
0dfbf9d7 1707 if (x->array[2] != y->array[2])
c6fb90c8 1708 return 0;
1a0670f3 1709 /* Fall through. */
c6fb90c8 1710 case 2:
0dfbf9d7 1711 if (x->array[1] != y->array[1])
c6fb90c8 1712 return 0;
1a0670f3 1713 /* Fall through. */
c6fb90c8 1714 case 1:
0dfbf9d7 1715 return x->array[0] == y->array[0];
c6fb90c8
L
1716 break;
1717 default:
1718 abort ();
1719 }
1720}
40fb9820 1721
0dfbf9d7
L
1722static INLINE int
1723cpu_flags_all_zero (const union i386_cpu_flags *x)
1724{
1725 switch (ARRAY_SIZE(x->array))
1726 {
53467f57
IT
1727 case 4:
1728 if (x->array[3])
1729 return 0;
1730 /* Fall through. */
0dfbf9d7
L
1731 case 3:
1732 if (x->array[2])
1733 return 0;
1a0670f3 1734 /* Fall through. */
0dfbf9d7
L
1735 case 2:
1736 if (x->array[1])
1737 return 0;
1a0670f3 1738 /* Fall through. */
0dfbf9d7
L
1739 case 1:
1740 return !x->array[0];
1741 default:
1742 abort ();
1743 }
1744}
1745
0dfbf9d7
L
1746static INLINE int
1747cpu_flags_equal (const union i386_cpu_flags *x,
1748 const union i386_cpu_flags *y)
1749{
1750 switch (ARRAY_SIZE(x->array))
1751 {
53467f57
IT
1752 case 4:
1753 if (x->array[3] != y->array[3])
1754 return 0;
1755 /* Fall through. */
0dfbf9d7
L
1756 case 3:
1757 if (x->array[2] != y->array[2])
1758 return 0;
1a0670f3 1759 /* Fall through. */
0dfbf9d7
L
1760 case 2:
1761 if (x->array[1] != y->array[1])
1762 return 0;
1a0670f3 1763 /* Fall through. */
0dfbf9d7
L
1764 case 1:
1765 return x->array[0] == y->array[0];
1766 break;
1767 default:
1768 abort ();
1769 }
1770}
c6fb90c8
L
1771
1772static INLINE int
1773cpu_flags_check_cpu64 (i386_cpu_flags f)
1774{
1775 return !((flag_code == CODE_64BIT && f.bitfield.cpuno64)
1776 || (flag_code != CODE_64BIT && f.bitfield.cpu64));
40fb9820
L
1777}
1778
c6fb90c8
L
1779static INLINE i386_cpu_flags
1780cpu_flags_and (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1781{
c6fb90c8
L
1782 switch (ARRAY_SIZE (x.array))
1783 {
53467f57
IT
1784 case 4:
1785 x.array [3] &= y.array [3];
1786 /* Fall through. */
c6fb90c8
L
1787 case 3:
1788 x.array [2] &= y.array [2];
1a0670f3 1789 /* Fall through. */
c6fb90c8
L
1790 case 2:
1791 x.array [1] &= y.array [1];
1a0670f3 1792 /* Fall through. */
c6fb90c8
L
1793 case 1:
1794 x.array [0] &= y.array [0];
1795 break;
1796 default:
1797 abort ();
1798 }
1799 return x;
1800}
40fb9820 1801
c6fb90c8
L
1802static INLINE i386_cpu_flags
1803cpu_flags_or (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1804{
c6fb90c8 1805 switch (ARRAY_SIZE (x.array))
40fb9820 1806 {
53467f57
IT
1807 case 4:
1808 x.array [3] |= y.array [3];
1809 /* Fall through. */
c6fb90c8
L
1810 case 3:
1811 x.array [2] |= y.array [2];
1a0670f3 1812 /* Fall through. */
c6fb90c8
L
1813 case 2:
1814 x.array [1] |= y.array [1];
1a0670f3 1815 /* Fall through. */
c6fb90c8
L
1816 case 1:
1817 x.array [0] |= y.array [0];
40fb9820
L
1818 break;
1819 default:
1820 abort ();
1821 }
40fb9820
L
1822 return x;
1823}
1824
309d3373
JB
1825static INLINE i386_cpu_flags
1826cpu_flags_and_not (i386_cpu_flags x, i386_cpu_flags y)
1827{
1828 switch (ARRAY_SIZE (x.array))
1829 {
53467f57
IT
1830 case 4:
1831 x.array [3] &= ~y.array [3];
1832 /* Fall through. */
309d3373
JB
1833 case 3:
1834 x.array [2] &= ~y.array [2];
1a0670f3 1835 /* Fall through. */
309d3373
JB
1836 case 2:
1837 x.array [1] &= ~y.array [1];
1a0670f3 1838 /* Fall through. */
309d3373
JB
1839 case 1:
1840 x.array [0] &= ~y.array [0];
1841 break;
1842 default:
1843 abort ();
1844 }
1845 return x;
1846}
1847
6c0946d0
JB
1848static const i386_cpu_flags avx512 = CPU_ANY_AVX512F_FLAGS;
1849
c0f3af97
L
1850#define CPU_FLAGS_ARCH_MATCH 0x1
1851#define CPU_FLAGS_64BIT_MATCH 0x2
1852
c0f3af97 1853#define CPU_FLAGS_PERFECT_MATCH \
db12e14e 1854 (CPU_FLAGS_ARCH_MATCH | CPU_FLAGS_64BIT_MATCH)
c0f3af97
L
1855
1856/* Return CPU flags match bits. */
3629bb00 1857
40fb9820 1858static int
d3ce72d0 1859cpu_flags_match (const insn_template *t)
40fb9820 1860{
c0f3af97
L
1861 i386_cpu_flags x = t->cpu_flags;
1862 int match = cpu_flags_check_cpu64 (x) ? CPU_FLAGS_64BIT_MATCH : 0;
40fb9820
L
1863
1864 x.bitfield.cpu64 = 0;
1865 x.bitfield.cpuno64 = 0;
1866
0dfbf9d7 1867 if (cpu_flags_all_zero (&x))
c0f3af97
L
1868 {
1869 /* This instruction is available on all archs. */
db12e14e 1870 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 1871 }
3629bb00
L
1872 else
1873 {
c0f3af97 1874 /* This instruction is available only on some archs. */
3629bb00
L
1875 i386_cpu_flags cpu = cpu_arch_flags;
1876
ab592e75
JB
1877 /* AVX512VL is no standalone feature - match it and then strip it. */
1878 if (x.bitfield.cpuavx512vl && !cpu.bitfield.cpuavx512vl)
1879 return match;
1880 x.bitfield.cpuavx512vl = 0;
1881
3629bb00 1882 cpu = cpu_flags_and (x, cpu);
c0f3af97
L
1883 if (!cpu_flags_all_zero (&cpu))
1884 {
a5ff0eb2
L
1885 if (x.bitfield.cpuavx)
1886 {
929f69fa 1887 /* We need to check a few extra flags with AVX. */
b9d49817
JB
1888 if (cpu.bitfield.cpuavx
1889 && (!t->opcode_modifier.sse2avx || sse2avx)
1890 && (!x.bitfield.cpuaes || cpu.bitfield.cpuaes)
929f69fa 1891 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
b9d49817
JB
1892 && (!x.bitfield.cpupclmul || cpu.bitfield.cpupclmul))
1893 match |= CPU_FLAGS_ARCH_MATCH;
a5ff0eb2 1894 }
929f69fa
JB
1895 else if (x.bitfield.cpuavx512f)
1896 {
1897 /* We need to check a few extra flags with AVX512F. */
1898 if (cpu.bitfield.cpuavx512f
1899 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
1900 && (!x.bitfield.cpuvaes || cpu.bitfield.cpuvaes)
1901 && (!x.bitfield.cpuvpclmulqdq || cpu.bitfield.cpuvpclmulqdq))
1902 match |= CPU_FLAGS_ARCH_MATCH;
1903 }
a5ff0eb2 1904 else
db12e14e 1905 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 1906 }
3629bb00 1907 }
c0f3af97 1908 return match;
40fb9820
L
1909}
1910
c6fb90c8
L
1911static INLINE i386_operand_type
1912operand_type_and (i386_operand_type x, i386_operand_type y)
40fb9820 1913{
bab6aec1
JB
1914 if (x.bitfield.class != y.bitfield.class)
1915 x.bitfield.class = ClassNone;
75e5731b
JB
1916 if (x.bitfield.instance != y.bitfield.instance)
1917 x.bitfield.instance = InstanceNone;
bab6aec1 1918
c6fb90c8
L
1919 switch (ARRAY_SIZE (x.array))
1920 {
1921 case 3:
1922 x.array [2] &= y.array [2];
1a0670f3 1923 /* Fall through. */
c6fb90c8
L
1924 case 2:
1925 x.array [1] &= y.array [1];
1a0670f3 1926 /* Fall through. */
c6fb90c8
L
1927 case 1:
1928 x.array [0] &= y.array [0];
1929 break;
1930 default:
1931 abort ();
1932 }
1933 return x;
40fb9820
L
1934}
1935
73053c1f
JB
1936static INLINE i386_operand_type
1937operand_type_and_not (i386_operand_type x, i386_operand_type y)
1938{
bab6aec1 1939 gas_assert (y.bitfield.class == ClassNone);
75e5731b 1940 gas_assert (y.bitfield.instance == InstanceNone);
bab6aec1 1941
73053c1f
JB
1942 switch (ARRAY_SIZE (x.array))
1943 {
1944 case 3:
1945 x.array [2] &= ~y.array [2];
1946 /* Fall through. */
1947 case 2:
1948 x.array [1] &= ~y.array [1];
1949 /* Fall through. */
1950 case 1:
1951 x.array [0] &= ~y.array [0];
1952 break;
1953 default:
1954 abort ();
1955 }
1956 return x;
1957}
1958
c6fb90c8
L
1959static INLINE i386_operand_type
1960operand_type_or (i386_operand_type x, i386_operand_type y)
40fb9820 1961{
bab6aec1
JB
1962 gas_assert (x.bitfield.class == ClassNone ||
1963 y.bitfield.class == ClassNone ||
1964 x.bitfield.class == y.bitfield.class);
75e5731b
JB
1965 gas_assert (x.bitfield.instance == InstanceNone ||
1966 y.bitfield.instance == InstanceNone ||
1967 x.bitfield.instance == y.bitfield.instance);
bab6aec1 1968
c6fb90c8 1969 switch (ARRAY_SIZE (x.array))
40fb9820 1970 {
c6fb90c8
L
1971 case 3:
1972 x.array [2] |= y.array [2];
1a0670f3 1973 /* Fall through. */
c6fb90c8
L
1974 case 2:
1975 x.array [1] |= y.array [1];
1a0670f3 1976 /* Fall through. */
c6fb90c8
L
1977 case 1:
1978 x.array [0] |= y.array [0];
40fb9820
L
1979 break;
1980 default:
1981 abort ();
1982 }
c6fb90c8
L
1983 return x;
1984}
40fb9820 1985
c6fb90c8
L
1986static INLINE i386_operand_type
1987operand_type_xor (i386_operand_type x, i386_operand_type y)
1988{
bab6aec1 1989 gas_assert (y.bitfield.class == ClassNone);
75e5731b 1990 gas_assert (y.bitfield.instance == InstanceNone);
bab6aec1 1991
c6fb90c8
L
1992 switch (ARRAY_SIZE (x.array))
1993 {
1994 case 3:
1995 x.array [2] ^= y.array [2];
1a0670f3 1996 /* Fall through. */
c6fb90c8
L
1997 case 2:
1998 x.array [1] ^= y.array [1];
1a0670f3 1999 /* Fall through. */
c6fb90c8
L
2000 case 1:
2001 x.array [0] ^= y.array [0];
2002 break;
2003 default:
2004 abort ();
2005 }
40fb9820
L
2006 return x;
2007}
2008
40fb9820
L
2009static const i386_operand_type disp16 = OPERAND_TYPE_DISP16;
2010static const i386_operand_type disp32 = OPERAND_TYPE_DISP32;
2011static const i386_operand_type disp32s = OPERAND_TYPE_DISP32S;
2012static const i386_operand_type disp16_32 = OPERAND_TYPE_DISP16_32;
bab6aec1
JB
2013static const i386_operand_type anydisp = OPERAND_TYPE_ANYDISP;
2014static const i386_operand_type anyimm = OPERAND_TYPE_ANYIMM;
40fb9820 2015static const i386_operand_type regxmm = OPERAND_TYPE_REGXMM;
43234a1e 2016static const i386_operand_type regmask = OPERAND_TYPE_REGMASK;
40fb9820
L
2017static const i386_operand_type imm8 = OPERAND_TYPE_IMM8;
2018static const i386_operand_type imm8s = OPERAND_TYPE_IMM8S;
2019static const i386_operand_type imm16 = OPERAND_TYPE_IMM16;
2020static const i386_operand_type imm32 = OPERAND_TYPE_IMM32;
2021static const i386_operand_type imm32s = OPERAND_TYPE_IMM32S;
2022static const i386_operand_type imm64 = OPERAND_TYPE_IMM64;
2023static const i386_operand_type imm16_32 = OPERAND_TYPE_IMM16_32;
2024static const i386_operand_type imm16_32s = OPERAND_TYPE_IMM16_32S;
2025static const i386_operand_type imm16_32_32s = OPERAND_TYPE_IMM16_32_32S;
2026
2027enum operand_type
2028{
2029 reg,
40fb9820
L
2030 imm,
2031 disp,
2032 anymem
2033};
2034
c6fb90c8 2035static INLINE int
40fb9820
L
2036operand_type_check (i386_operand_type t, enum operand_type c)
2037{
2038 switch (c)
2039 {
2040 case reg:
bab6aec1 2041 return t.bitfield.class == Reg;
40fb9820 2042
40fb9820
L
2043 case imm:
2044 return (t.bitfield.imm8
2045 || t.bitfield.imm8s
2046 || t.bitfield.imm16
2047 || t.bitfield.imm32
2048 || t.bitfield.imm32s
2049 || t.bitfield.imm64);
2050
2051 case disp:
2052 return (t.bitfield.disp8
2053 || t.bitfield.disp16
2054 || t.bitfield.disp32
2055 || t.bitfield.disp32s
2056 || t.bitfield.disp64);
2057
2058 case anymem:
2059 return (t.bitfield.disp8
2060 || t.bitfield.disp16
2061 || t.bitfield.disp32
2062 || t.bitfield.disp32s
2063 || t.bitfield.disp64
2064 || t.bitfield.baseindex);
2065
2066 default:
2067 abort ();
2068 }
2cfe26b6
AM
2069
2070 return 0;
40fb9820
L
2071}
2072
7a54636a
L
2073/* Return 1 if there is no conflict in 8bit/16bit/32bit/64bit/80bit size
2074 between operand GIVEN and opeand WANTED for instruction template T. */
5c07affc
L
2075
2076static INLINE int
7a54636a
L
2077match_operand_size (const insn_template *t, unsigned int wanted,
2078 unsigned int given)
5c07affc 2079{
3ac21baa
JB
2080 return !((i.types[given].bitfield.byte
2081 && !t->operand_types[wanted].bitfield.byte)
2082 || (i.types[given].bitfield.word
2083 && !t->operand_types[wanted].bitfield.word)
2084 || (i.types[given].bitfield.dword
2085 && !t->operand_types[wanted].bitfield.dword)
2086 || (i.types[given].bitfield.qword
2087 && !t->operand_types[wanted].bitfield.qword)
2088 || (i.types[given].bitfield.tbyte
2089 && !t->operand_types[wanted].bitfield.tbyte));
5c07affc
L
2090}
2091
dd40ce22
L
2092/* Return 1 if there is no conflict in SIMD register between operand
2093 GIVEN and opeand WANTED for instruction template T. */
1b54b8d7
JB
2094
2095static INLINE int
dd40ce22
L
2096match_simd_size (const insn_template *t, unsigned int wanted,
2097 unsigned int given)
1b54b8d7 2098{
3ac21baa
JB
2099 return !((i.types[given].bitfield.xmmword
2100 && !t->operand_types[wanted].bitfield.xmmword)
2101 || (i.types[given].bitfield.ymmword
2102 && !t->operand_types[wanted].bitfield.ymmword)
2103 || (i.types[given].bitfield.zmmword
2104 && !t->operand_types[wanted].bitfield.zmmword));
1b54b8d7
JB
2105}
2106
7a54636a
L
2107/* Return 1 if there is no conflict in any size between operand GIVEN
2108 and opeand WANTED for instruction template T. */
5c07affc
L
2109
2110static INLINE int
dd40ce22
L
2111match_mem_size (const insn_template *t, unsigned int wanted,
2112 unsigned int given)
5c07affc 2113{
7a54636a 2114 return (match_operand_size (t, wanted, given)
3ac21baa 2115 && !((i.types[given].bitfield.unspecified
af508cb9 2116 && !i.broadcast
3ac21baa
JB
2117 && !t->operand_types[wanted].bitfield.unspecified)
2118 || (i.types[given].bitfield.fword
2119 && !t->operand_types[wanted].bitfield.fword)
1b54b8d7
JB
2120 /* For scalar opcode templates to allow register and memory
2121 operands at the same time, some special casing is needed
d6793fa1
JB
2122 here. Also for v{,p}broadcast*, {,v}pmov{s,z}*, and
2123 down-conversion vpmov*. */
3528c362 2124 || ((t->operand_types[wanted].bitfield.class == RegSIMD
1b54b8d7 2125 && !t->opcode_modifier.broadcast
3ac21baa
JB
2126 && (t->operand_types[wanted].bitfield.byte
2127 || t->operand_types[wanted].bitfield.word
2128 || t->operand_types[wanted].bitfield.dword
2129 || t->operand_types[wanted].bitfield.qword))
2130 ? (i.types[given].bitfield.xmmword
2131 || i.types[given].bitfield.ymmword
2132 || i.types[given].bitfield.zmmword)
2133 : !match_simd_size(t, wanted, given))));
5c07affc
L
2134}
2135
3ac21baa
JB
2136/* Return value has MATCH_STRAIGHT set if there is no size conflict on any
2137 operands for instruction template T, and it has MATCH_REVERSE set if there
2138 is no size conflict on any operands for the template with operands reversed
2139 (and the template allows for reversing in the first place). */
5c07affc 2140
3ac21baa
JB
2141#define MATCH_STRAIGHT 1
2142#define MATCH_REVERSE 2
2143
2144static INLINE unsigned int
d3ce72d0 2145operand_size_match (const insn_template *t)
5c07affc 2146{
3ac21baa 2147 unsigned int j, match = MATCH_STRAIGHT;
5c07affc 2148
0cfa3eb3 2149 /* Don't check non-absolute jump instructions. */
5c07affc 2150 if (t->opcode_modifier.jump
0cfa3eb3 2151 && t->opcode_modifier.jump != JUMP_ABSOLUTE)
5c07affc
L
2152 return match;
2153
2154 /* Check memory and accumulator operand size. */
2155 for (j = 0; j < i.operands; j++)
2156 {
3528c362
JB
2157 if (i.types[j].bitfield.class != Reg
2158 && i.types[j].bitfield.class != RegSIMD
601e8564 2159 && t->opcode_modifier.anysize)
5c07affc
L
2160 continue;
2161
bab6aec1 2162 if (t->operand_types[j].bitfield.class == Reg
7a54636a 2163 && !match_operand_size (t, j, j))
5c07affc
L
2164 {
2165 match = 0;
2166 break;
2167 }
2168
3528c362 2169 if (t->operand_types[j].bitfield.class == RegSIMD
3ac21baa 2170 && !match_simd_size (t, j, j))
1b54b8d7
JB
2171 {
2172 match = 0;
2173 break;
2174 }
2175
75e5731b 2176 if (t->operand_types[j].bitfield.instance == Accum
7a54636a 2177 && (!match_operand_size (t, j, j) || !match_simd_size (t, j, j)))
1b54b8d7
JB
2178 {
2179 match = 0;
2180 break;
2181 }
2182
c48dadc9 2183 if ((i.flags[j] & Operand_Mem) && !match_mem_size (t, j, j))
5c07affc
L
2184 {
2185 match = 0;
2186 break;
2187 }
2188 }
2189
3ac21baa 2190 if (!t->opcode_modifier.d)
891edac4
L
2191 {
2192mismatch:
3ac21baa
JB
2193 if (!match)
2194 i.error = operand_size_mismatch;
2195 return match;
891edac4 2196 }
5c07affc
L
2197
2198 /* Check reverse. */
f5eb1d70 2199 gas_assert (i.operands >= 2 && i.operands <= 3);
5c07affc 2200
f5eb1d70 2201 for (j = 0; j < i.operands; j++)
5c07affc 2202 {
f5eb1d70
JB
2203 unsigned int given = i.operands - j - 1;
2204
bab6aec1 2205 if (t->operand_types[j].bitfield.class == Reg
f5eb1d70 2206 && !match_operand_size (t, j, given))
891edac4 2207 goto mismatch;
5c07affc 2208
3528c362 2209 if (t->operand_types[j].bitfield.class == RegSIMD
f5eb1d70 2210 && !match_simd_size (t, j, given))
dbbc8b7e
JB
2211 goto mismatch;
2212
75e5731b 2213 if (t->operand_types[j].bitfield.instance == Accum
f5eb1d70
JB
2214 && (!match_operand_size (t, j, given)
2215 || !match_simd_size (t, j, given)))
dbbc8b7e
JB
2216 goto mismatch;
2217
f5eb1d70 2218 if ((i.flags[given] & Operand_Mem) && !match_mem_size (t, j, given))
891edac4 2219 goto mismatch;
5c07affc
L
2220 }
2221
3ac21baa 2222 return match | MATCH_REVERSE;
5c07affc
L
2223}
2224
c6fb90c8 2225static INLINE int
40fb9820
L
2226operand_type_match (i386_operand_type overlap,
2227 i386_operand_type given)
2228{
2229 i386_operand_type temp = overlap;
2230
7d5e4556 2231 temp.bitfield.unspecified = 0;
5c07affc
L
2232 temp.bitfield.byte = 0;
2233 temp.bitfield.word = 0;
2234 temp.bitfield.dword = 0;
2235 temp.bitfield.fword = 0;
2236 temp.bitfield.qword = 0;
2237 temp.bitfield.tbyte = 0;
2238 temp.bitfield.xmmword = 0;
c0f3af97 2239 temp.bitfield.ymmword = 0;
43234a1e 2240 temp.bitfield.zmmword = 0;
0dfbf9d7 2241 if (operand_type_all_zero (&temp))
891edac4 2242 goto mismatch;
40fb9820 2243
6f2f06be 2244 if (given.bitfield.baseindex == overlap.bitfield.baseindex)
891edac4
L
2245 return 1;
2246
2247mismatch:
a65babc9 2248 i.error = operand_type_mismatch;
891edac4 2249 return 0;
40fb9820
L
2250}
2251
7d5e4556 2252/* If given types g0 and g1 are registers they must be of the same type
10c17abd 2253 unless the expected operand type register overlap is null.
5de4d9ef 2254 Some Intel syntax memory operand size checking also happens here. */
40fb9820 2255
c6fb90c8 2256static INLINE int
dc821c5f 2257operand_type_register_match (i386_operand_type g0,
40fb9820 2258 i386_operand_type t0,
40fb9820
L
2259 i386_operand_type g1,
2260 i386_operand_type t1)
2261{
bab6aec1 2262 if (g0.bitfield.class != Reg
3528c362 2263 && g0.bitfield.class != RegSIMD
10c17abd
JB
2264 && (!operand_type_check (g0, anymem)
2265 || g0.bitfield.unspecified
5de4d9ef
JB
2266 || (t0.bitfield.class != Reg
2267 && t0.bitfield.class != RegSIMD)))
40fb9820
L
2268 return 1;
2269
bab6aec1 2270 if (g1.bitfield.class != Reg
3528c362 2271 && g1.bitfield.class != RegSIMD
10c17abd
JB
2272 && (!operand_type_check (g1, anymem)
2273 || g1.bitfield.unspecified
5de4d9ef
JB
2274 || (t1.bitfield.class != Reg
2275 && t1.bitfield.class != RegSIMD)))
40fb9820
L
2276 return 1;
2277
dc821c5f
JB
2278 if (g0.bitfield.byte == g1.bitfield.byte
2279 && g0.bitfield.word == g1.bitfield.word
2280 && g0.bitfield.dword == g1.bitfield.dword
10c17abd
JB
2281 && g0.bitfield.qword == g1.bitfield.qword
2282 && g0.bitfield.xmmword == g1.bitfield.xmmword
2283 && g0.bitfield.ymmword == g1.bitfield.ymmword
2284 && g0.bitfield.zmmword == g1.bitfield.zmmword)
40fb9820
L
2285 return 1;
2286
dc821c5f
JB
2287 if (!(t0.bitfield.byte & t1.bitfield.byte)
2288 && !(t0.bitfield.word & t1.bitfield.word)
2289 && !(t0.bitfield.dword & t1.bitfield.dword)
10c17abd
JB
2290 && !(t0.bitfield.qword & t1.bitfield.qword)
2291 && !(t0.bitfield.xmmword & t1.bitfield.xmmword)
2292 && !(t0.bitfield.ymmword & t1.bitfield.ymmword)
2293 && !(t0.bitfield.zmmword & t1.bitfield.zmmword))
891edac4
L
2294 return 1;
2295
a65babc9 2296 i.error = register_type_mismatch;
891edac4
L
2297
2298 return 0;
40fb9820
L
2299}
2300
4c692bc7
JB
2301static INLINE unsigned int
2302register_number (const reg_entry *r)
2303{
2304 unsigned int nr = r->reg_num;
2305
2306 if (r->reg_flags & RegRex)
2307 nr += 8;
2308
200cbe0f
L
2309 if (r->reg_flags & RegVRex)
2310 nr += 16;
2311
4c692bc7
JB
2312 return nr;
2313}
2314
252b5132 2315static INLINE unsigned int
40fb9820 2316mode_from_disp_size (i386_operand_type t)
252b5132 2317{
b5014f7a 2318 if (t.bitfield.disp8)
40fb9820
L
2319 return 1;
2320 else if (t.bitfield.disp16
2321 || t.bitfield.disp32
2322 || t.bitfield.disp32s)
2323 return 2;
2324 else
2325 return 0;
252b5132
RH
2326}
2327
2328static INLINE int
65879393 2329fits_in_signed_byte (addressT num)
252b5132 2330{
65879393 2331 return num + 0x80 <= 0xff;
47926f60 2332}
252b5132
RH
2333
2334static INLINE int
65879393 2335fits_in_unsigned_byte (addressT num)
252b5132 2336{
65879393 2337 return num <= 0xff;
47926f60 2338}
252b5132
RH
2339
2340static INLINE int
65879393 2341fits_in_unsigned_word (addressT num)
252b5132 2342{
65879393 2343 return num <= 0xffff;
47926f60 2344}
252b5132
RH
2345
2346static INLINE int
65879393 2347fits_in_signed_word (addressT num)
252b5132 2348{
65879393 2349 return num + 0x8000 <= 0xffff;
47926f60 2350}
2a962e6d 2351
3e73aa7c 2352static INLINE int
65879393 2353fits_in_signed_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2354{
2355#ifndef BFD64
2356 return 1;
2357#else
65879393 2358 return num + 0x80000000 <= 0xffffffff;
3e73aa7c
JH
2359#endif
2360} /* fits_in_signed_long() */
2a962e6d 2361
3e73aa7c 2362static INLINE int
65879393 2363fits_in_unsigned_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2364{
2365#ifndef BFD64
2366 return 1;
2367#else
65879393 2368 return num <= 0xffffffff;
3e73aa7c
JH
2369#endif
2370} /* fits_in_unsigned_long() */
252b5132 2371
43234a1e 2372static INLINE int
b5014f7a 2373fits_in_disp8 (offsetT num)
43234a1e
L
2374{
2375 int shift = i.memshift;
2376 unsigned int mask;
2377
2378 if (shift == -1)
2379 abort ();
2380
2381 mask = (1 << shift) - 1;
2382
2383 /* Return 0 if NUM isn't properly aligned. */
2384 if ((num & mask))
2385 return 0;
2386
2387 /* Check if NUM will fit in 8bit after shift. */
2388 return fits_in_signed_byte (num >> shift);
2389}
2390
a683cc34
SP
2391static INLINE int
2392fits_in_imm4 (offsetT num)
2393{
2394 return (num & 0xf) == num;
2395}
2396
40fb9820 2397static i386_operand_type
e3bb37b5 2398smallest_imm_type (offsetT num)
252b5132 2399{
40fb9820 2400 i386_operand_type t;
7ab9ffdd 2401
0dfbf9d7 2402 operand_type_set (&t, 0);
40fb9820
L
2403 t.bitfield.imm64 = 1;
2404
2405 if (cpu_arch_tune != PROCESSOR_I486 && num == 1)
e413e4e9
AM
2406 {
2407 /* This code is disabled on the 486 because all the Imm1 forms
2408 in the opcode table are slower on the i486. They're the
2409 versions with the implicitly specified single-position
2410 displacement, which has another syntax if you really want to
2411 use that form. */
40fb9820
L
2412 t.bitfield.imm1 = 1;
2413 t.bitfield.imm8 = 1;
2414 t.bitfield.imm8s = 1;
2415 t.bitfield.imm16 = 1;
2416 t.bitfield.imm32 = 1;
2417 t.bitfield.imm32s = 1;
2418 }
2419 else if (fits_in_signed_byte (num))
2420 {
2421 t.bitfield.imm8 = 1;
2422 t.bitfield.imm8s = 1;
2423 t.bitfield.imm16 = 1;
2424 t.bitfield.imm32 = 1;
2425 t.bitfield.imm32s = 1;
2426 }
2427 else if (fits_in_unsigned_byte (num))
2428 {
2429 t.bitfield.imm8 = 1;
2430 t.bitfield.imm16 = 1;
2431 t.bitfield.imm32 = 1;
2432 t.bitfield.imm32s = 1;
2433 }
2434 else if (fits_in_signed_word (num) || fits_in_unsigned_word (num))
2435 {
2436 t.bitfield.imm16 = 1;
2437 t.bitfield.imm32 = 1;
2438 t.bitfield.imm32s = 1;
2439 }
2440 else if (fits_in_signed_long (num))
2441 {
2442 t.bitfield.imm32 = 1;
2443 t.bitfield.imm32s = 1;
2444 }
2445 else if (fits_in_unsigned_long (num))
2446 t.bitfield.imm32 = 1;
2447
2448 return t;
47926f60 2449}
252b5132 2450
847f7ad4 2451static offsetT
e3bb37b5 2452offset_in_range (offsetT val, int size)
847f7ad4 2453{
508866be 2454 addressT mask;
ba2adb93 2455
847f7ad4
AM
2456 switch (size)
2457 {
508866be
L
2458 case 1: mask = ((addressT) 1 << 8) - 1; break;
2459 case 2: mask = ((addressT) 1 << 16) - 1; break;
3b0ec529 2460 case 4: mask = ((addressT) 2 << 31) - 1; break;
3e73aa7c
JH
2461#ifdef BFD64
2462 case 8: mask = ((addressT) 2 << 63) - 1; break;
2463#endif
47926f60 2464 default: abort ();
847f7ad4
AM
2465 }
2466
9de868bf
L
2467#ifdef BFD64
2468 /* If BFD64, sign extend val for 32bit address mode. */
2469 if (flag_code != CODE_64BIT
2470 || i.prefix[ADDR_PREFIX])
3e73aa7c
JH
2471 if ((val & ~(((addressT) 2 << 31) - 1)) == 0)
2472 val = (val ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
fa289fb8 2473#endif
ba2adb93 2474
47926f60 2475 if ((val & ~mask) != 0 && (val & ~mask) != ~mask)
847f7ad4
AM
2476 {
2477 char buf1[40], buf2[40];
2478
2479 sprint_value (buf1, val);
2480 sprint_value (buf2, val & mask);
2481 as_warn (_("%s shortened to %s"), buf1, buf2);
2482 }
2483 return val & mask;
2484}
2485
c32fa91d
L
2486enum PREFIX_GROUP
2487{
2488 PREFIX_EXIST = 0,
2489 PREFIX_LOCK,
2490 PREFIX_REP,
04ef582a 2491 PREFIX_DS,
c32fa91d
L
2492 PREFIX_OTHER
2493};
2494
2495/* Returns
2496 a. PREFIX_EXIST if attempting to add a prefix where one from the
2497 same class already exists.
2498 b. PREFIX_LOCK if lock prefix is added.
2499 c. PREFIX_REP if rep/repne prefix is added.
04ef582a
L
2500 d. PREFIX_DS if ds prefix is added.
2501 e. PREFIX_OTHER if other prefix is added.
c32fa91d
L
2502 */
2503
2504static enum PREFIX_GROUP
e3bb37b5 2505add_prefix (unsigned int prefix)
252b5132 2506{
c32fa91d 2507 enum PREFIX_GROUP ret = PREFIX_OTHER;
b1905489 2508 unsigned int q;
252b5132 2509
29b0f896
AM
2510 if (prefix >= REX_OPCODE && prefix < REX_OPCODE + 16
2511 && flag_code == CODE_64BIT)
b1905489 2512 {
161a04f6 2513 if ((i.prefix[REX_PREFIX] & prefix & REX_W)
44846f29
JB
2514 || (i.prefix[REX_PREFIX] & prefix & REX_R)
2515 || (i.prefix[REX_PREFIX] & prefix & REX_X)
2516 || (i.prefix[REX_PREFIX] & prefix & REX_B))
c32fa91d 2517 ret = PREFIX_EXIST;
b1905489
JB
2518 q = REX_PREFIX;
2519 }
3e73aa7c 2520 else
b1905489
JB
2521 {
2522 switch (prefix)
2523 {
2524 default:
2525 abort ();
2526
b1905489 2527 case DS_PREFIX_OPCODE:
04ef582a
L
2528 ret = PREFIX_DS;
2529 /* Fall through. */
2530 case CS_PREFIX_OPCODE:
b1905489
JB
2531 case ES_PREFIX_OPCODE:
2532 case FS_PREFIX_OPCODE:
2533 case GS_PREFIX_OPCODE:
2534 case SS_PREFIX_OPCODE:
2535 q = SEG_PREFIX;
2536 break;
2537
2538 case REPNE_PREFIX_OPCODE:
2539 case REPE_PREFIX_OPCODE:
c32fa91d
L
2540 q = REP_PREFIX;
2541 ret = PREFIX_REP;
2542 break;
2543
b1905489 2544 case LOCK_PREFIX_OPCODE:
c32fa91d
L
2545 q = LOCK_PREFIX;
2546 ret = PREFIX_LOCK;
b1905489
JB
2547 break;
2548
2549 case FWAIT_OPCODE:
2550 q = WAIT_PREFIX;
2551 break;
2552
2553 case ADDR_PREFIX_OPCODE:
2554 q = ADDR_PREFIX;
2555 break;
2556
2557 case DATA_PREFIX_OPCODE:
2558 q = DATA_PREFIX;
2559 break;
2560 }
2561 if (i.prefix[q] != 0)
c32fa91d 2562 ret = PREFIX_EXIST;
b1905489 2563 }
252b5132 2564
b1905489 2565 if (ret)
252b5132 2566 {
b1905489
JB
2567 if (!i.prefix[q])
2568 ++i.prefixes;
2569 i.prefix[q] |= prefix;
252b5132 2570 }
b1905489
JB
2571 else
2572 as_bad (_("same type of prefix used twice"));
252b5132 2573
252b5132
RH
2574 return ret;
2575}
2576
2577static void
78f12dd3 2578update_code_flag (int value, int check)
eecb386c 2579{
78f12dd3
L
2580 PRINTF_LIKE ((*as_error));
2581
1e9cc1c2 2582 flag_code = (enum flag_code) value;
40fb9820
L
2583 if (flag_code == CODE_64BIT)
2584 {
2585 cpu_arch_flags.bitfield.cpu64 = 1;
2586 cpu_arch_flags.bitfield.cpuno64 = 0;
40fb9820
L
2587 }
2588 else
2589 {
2590 cpu_arch_flags.bitfield.cpu64 = 0;
2591 cpu_arch_flags.bitfield.cpuno64 = 1;
40fb9820
L
2592 }
2593 if (value == CODE_64BIT && !cpu_arch_flags.bitfield.cpulm )
3e73aa7c 2594 {
78f12dd3
L
2595 if (check)
2596 as_error = as_fatal;
2597 else
2598 as_error = as_bad;
2599 (*as_error) (_("64bit mode not supported on `%s'."),
2600 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2601 }
40fb9820 2602 if (value == CODE_32BIT && !cpu_arch_flags.bitfield.cpui386)
3e73aa7c 2603 {
78f12dd3
L
2604 if (check)
2605 as_error = as_fatal;
2606 else
2607 as_error = as_bad;
2608 (*as_error) (_("32bit mode not supported on `%s'."),
2609 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2610 }
eecb386c
AM
2611 stackop_size = '\0';
2612}
2613
78f12dd3
L
2614static void
2615set_code_flag (int value)
2616{
2617 update_code_flag (value, 0);
2618}
2619
eecb386c 2620static void
e3bb37b5 2621set_16bit_gcc_code_flag (int new_code_flag)
252b5132 2622{
1e9cc1c2 2623 flag_code = (enum flag_code) new_code_flag;
40fb9820
L
2624 if (flag_code != CODE_16BIT)
2625 abort ();
2626 cpu_arch_flags.bitfield.cpu64 = 0;
2627 cpu_arch_flags.bitfield.cpuno64 = 1;
9306ca4a 2628 stackop_size = LONG_MNEM_SUFFIX;
252b5132
RH
2629}
2630
2631static void
e3bb37b5 2632set_intel_syntax (int syntax_flag)
252b5132
RH
2633{
2634 /* Find out if register prefixing is specified. */
2635 int ask_naked_reg = 0;
2636
2637 SKIP_WHITESPACE ();
29b0f896 2638 if (!is_end_of_line[(unsigned char) *input_line_pointer])
252b5132 2639 {
d02603dc
NC
2640 char *string;
2641 int e = get_symbol_name (&string);
252b5132 2642
47926f60 2643 if (strcmp (string, "prefix") == 0)
252b5132 2644 ask_naked_reg = 1;
47926f60 2645 else if (strcmp (string, "noprefix") == 0)
252b5132
RH
2646 ask_naked_reg = -1;
2647 else
d0b47220 2648 as_bad (_("bad argument to syntax directive."));
d02603dc 2649 (void) restore_line_pointer (e);
252b5132
RH
2650 }
2651 demand_empty_rest_of_line ();
c3332e24 2652
252b5132
RH
2653 intel_syntax = syntax_flag;
2654
2655 if (ask_naked_reg == 0)
f86103b7
AM
2656 allow_naked_reg = (intel_syntax
2657 && (bfd_get_symbol_leading_char (stdoutput) != '\0'));
252b5132
RH
2658 else
2659 allow_naked_reg = (ask_naked_reg < 0);
9306ca4a 2660
ee86248c 2661 expr_set_rank (O_full_ptr, syntax_flag ? 10 : 0);
7ab9ffdd 2662
e4a3b5a4 2663 identifier_chars['%'] = intel_syntax && allow_naked_reg ? '%' : 0;
9306ca4a 2664 identifier_chars['$'] = intel_syntax ? '$' : 0;
e4a3b5a4 2665 register_prefix = allow_naked_reg ? "" : "%";
252b5132
RH
2666}
2667
1efbbeb4
L
2668static void
2669set_intel_mnemonic (int mnemonic_flag)
2670{
e1d4d893 2671 intel_mnemonic = mnemonic_flag;
1efbbeb4
L
2672}
2673
db51cc60
L
2674static void
2675set_allow_index_reg (int flag)
2676{
2677 allow_index_reg = flag;
2678}
2679
cb19c032 2680static void
7bab8ab5 2681set_check (int what)
cb19c032 2682{
7bab8ab5
JB
2683 enum check_kind *kind;
2684 const char *str;
2685
2686 if (what)
2687 {
2688 kind = &operand_check;
2689 str = "operand";
2690 }
2691 else
2692 {
2693 kind = &sse_check;
2694 str = "sse";
2695 }
2696
cb19c032
L
2697 SKIP_WHITESPACE ();
2698
2699 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2700 {
d02603dc
NC
2701 char *string;
2702 int e = get_symbol_name (&string);
cb19c032
L
2703
2704 if (strcmp (string, "none") == 0)
7bab8ab5 2705 *kind = check_none;
cb19c032 2706 else if (strcmp (string, "warning") == 0)
7bab8ab5 2707 *kind = check_warning;
cb19c032 2708 else if (strcmp (string, "error") == 0)
7bab8ab5 2709 *kind = check_error;
cb19c032 2710 else
7bab8ab5 2711 as_bad (_("bad argument to %s_check directive."), str);
d02603dc 2712 (void) restore_line_pointer (e);
cb19c032
L
2713 }
2714 else
7bab8ab5 2715 as_bad (_("missing argument for %s_check directive"), str);
cb19c032
L
2716
2717 demand_empty_rest_of_line ();
2718}
2719
8a9036a4
L
2720static void
2721check_cpu_arch_compatible (const char *name ATTRIBUTE_UNUSED,
1e9cc1c2 2722 i386_cpu_flags new_flag ATTRIBUTE_UNUSED)
8a9036a4
L
2723{
2724#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2725 static const char *arch;
2726
2727 /* Intel LIOM is only supported on ELF. */
2728 if (!IS_ELF)
2729 return;
2730
2731 if (!arch)
2732 {
2733 /* Use cpu_arch_name if it is set in md_parse_option. Otherwise
2734 use default_arch. */
2735 arch = cpu_arch_name;
2736 if (!arch)
2737 arch = default_arch;
2738 }
2739
81486035
L
2740 /* If we are targeting Intel MCU, we must enable it. */
2741 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_IAMCU
2742 || new_flag.bitfield.cpuiamcu)
2743 return;
2744
3632d14b 2745 /* If we are targeting Intel L1OM, we must enable it. */
8a9036a4 2746 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_L1OM
1e9cc1c2 2747 || new_flag.bitfield.cpul1om)
8a9036a4 2748 return;
76ba9986 2749
7a9068fe
L
2750 /* If we are targeting Intel K1OM, we must enable it. */
2751 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_K1OM
2752 || new_flag.bitfield.cpuk1om)
2753 return;
2754
8a9036a4
L
2755 as_bad (_("`%s' is not supported on `%s'"), name, arch);
2756#endif
2757}
2758
e413e4e9 2759static void
e3bb37b5 2760set_cpu_arch (int dummy ATTRIBUTE_UNUSED)
e413e4e9 2761{
47926f60 2762 SKIP_WHITESPACE ();
e413e4e9 2763
29b0f896 2764 if (!is_end_of_line[(unsigned char) *input_line_pointer])
e413e4e9 2765 {
d02603dc
NC
2766 char *string;
2767 int e = get_symbol_name (&string);
91d6fa6a 2768 unsigned int j;
40fb9820 2769 i386_cpu_flags flags;
e413e4e9 2770
91d6fa6a 2771 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
e413e4e9 2772 {
91d6fa6a 2773 if (strcmp (string, cpu_arch[j].name) == 0)
e413e4e9 2774 {
91d6fa6a 2775 check_cpu_arch_compatible (string, cpu_arch[j].flags);
8a9036a4 2776
5c6af06e
JB
2777 if (*string != '.')
2778 {
91d6fa6a 2779 cpu_arch_name = cpu_arch[j].name;
5c6af06e 2780 cpu_sub_arch_name = NULL;
91d6fa6a 2781 cpu_arch_flags = cpu_arch[j].flags;
40fb9820
L
2782 if (flag_code == CODE_64BIT)
2783 {
2784 cpu_arch_flags.bitfield.cpu64 = 1;
2785 cpu_arch_flags.bitfield.cpuno64 = 0;
2786 }
2787 else
2788 {
2789 cpu_arch_flags.bitfield.cpu64 = 0;
2790 cpu_arch_flags.bitfield.cpuno64 = 1;
2791 }
91d6fa6a
NC
2792 cpu_arch_isa = cpu_arch[j].type;
2793 cpu_arch_isa_flags = cpu_arch[j].flags;
ccc9c027
L
2794 if (!cpu_arch_tune_set)
2795 {
2796 cpu_arch_tune = cpu_arch_isa;
2797 cpu_arch_tune_flags = cpu_arch_isa_flags;
2798 }
5c6af06e
JB
2799 break;
2800 }
40fb9820 2801
293f5f65
L
2802 flags = cpu_flags_or (cpu_arch_flags,
2803 cpu_arch[j].flags);
81486035 2804
5b64d091 2805 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
5c6af06e 2806 {
6305a203
L
2807 if (cpu_sub_arch_name)
2808 {
2809 char *name = cpu_sub_arch_name;
2810 cpu_sub_arch_name = concat (name,
91d6fa6a 2811 cpu_arch[j].name,
1bf57e9f 2812 (const char *) NULL);
6305a203
L
2813 free (name);
2814 }
2815 else
91d6fa6a 2816 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
40fb9820 2817 cpu_arch_flags = flags;
a586129e 2818 cpu_arch_isa_flags = flags;
5c6af06e 2819 }
0089dace
L
2820 else
2821 cpu_arch_isa_flags
2822 = cpu_flags_or (cpu_arch_isa_flags,
2823 cpu_arch[j].flags);
d02603dc 2824 (void) restore_line_pointer (e);
5c6af06e
JB
2825 demand_empty_rest_of_line ();
2826 return;
e413e4e9
AM
2827 }
2828 }
293f5f65
L
2829
2830 if (*string == '.' && j >= ARRAY_SIZE (cpu_arch))
2831 {
33eaf5de 2832 /* Disable an ISA extension. */
293f5f65
L
2833 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
2834 if (strcmp (string + 1, cpu_noarch [j].name) == 0)
2835 {
2836 flags = cpu_flags_and_not (cpu_arch_flags,
2837 cpu_noarch[j].flags);
2838 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
2839 {
2840 if (cpu_sub_arch_name)
2841 {
2842 char *name = cpu_sub_arch_name;
2843 cpu_sub_arch_name = concat (name, string,
2844 (const char *) NULL);
2845 free (name);
2846 }
2847 else
2848 cpu_sub_arch_name = xstrdup (string);
2849 cpu_arch_flags = flags;
2850 cpu_arch_isa_flags = flags;
2851 }
2852 (void) restore_line_pointer (e);
2853 demand_empty_rest_of_line ();
2854 return;
2855 }
2856
2857 j = ARRAY_SIZE (cpu_arch);
2858 }
2859
91d6fa6a 2860 if (j >= ARRAY_SIZE (cpu_arch))
e413e4e9
AM
2861 as_bad (_("no such architecture: `%s'"), string);
2862
2863 *input_line_pointer = e;
2864 }
2865 else
2866 as_bad (_("missing cpu architecture"));
2867
fddf5b5b
AM
2868 no_cond_jump_promotion = 0;
2869 if (*input_line_pointer == ','
29b0f896 2870 && !is_end_of_line[(unsigned char) input_line_pointer[1]])
fddf5b5b 2871 {
d02603dc
NC
2872 char *string;
2873 char e;
2874
2875 ++input_line_pointer;
2876 e = get_symbol_name (&string);
fddf5b5b
AM
2877
2878 if (strcmp (string, "nojumps") == 0)
2879 no_cond_jump_promotion = 1;
2880 else if (strcmp (string, "jumps") == 0)
2881 ;
2882 else
2883 as_bad (_("no such architecture modifier: `%s'"), string);
2884
d02603dc 2885 (void) restore_line_pointer (e);
fddf5b5b
AM
2886 }
2887
e413e4e9
AM
2888 demand_empty_rest_of_line ();
2889}
2890
8a9036a4
L
2891enum bfd_architecture
2892i386_arch (void)
2893{
3632d14b 2894 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4
L
2895 {
2896 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2897 || flag_code != CODE_64BIT)
2898 as_fatal (_("Intel L1OM is 64bit ELF only"));
2899 return bfd_arch_l1om;
2900 }
7a9068fe
L
2901 else if (cpu_arch_isa == PROCESSOR_K1OM)
2902 {
2903 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2904 || flag_code != CODE_64BIT)
2905 as_fatal (_("Intel K1OM is 64bit ELF only"));
2906 return bfd_arch_k1om;
2907 }
81486035
L
2908 else if (cpu_arch_isa == PROCESSOR_IAMCU)
2909 {
2910 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2911 || flag_code == CODE_64BIT)
2912 as_fatal (_("Intel MCU is 32bit ELF only"));
2913 return bfd_arch_iamcu;
2914 }
8a9036a4
L
2915 else
2916 return bfd_arch_i386;
2917}
2918
b9d79e03 2919unsigned long
7016a5d5 2920i386_mach (void)
b9d79e03 2921{
351f65ca 2922 if (!strncmp (default_arch, "x86_64", 6))
8a9036a4 2923 {
3632d14b 2924 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 2925 {
351f65ca
L
2926 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2927 || default_arch[6] != '\0')
8a9036a4
L
2928 as_fatal (_("Intel L1OM is 64bit ELF only"));
2929 return bfd_mach_l1om;
2930 }
7a9068fe
L
2931 else if (cpu_arch_isa == PROCESSOR_K1OM)
2932 {
2933 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2934 || default_arch[6] != '\0')
2935 as_fatal (_("Intel K1OM is 64bit ELF only"));
2936 return bfd_mach_k1om;
2937 }
351f65ca 2938 else if (default_arch[6] == '\0')
8a9036a4 2939 return bfd_mach_x86_64;
351f65ca
L
2940 else
2941 return bfd_mach_x64_32;
8a9036a4 2942 }
5197d474
L
2943 else if (!strcmp (default_arch, "i386")
2944 || !strcmp (default_arch, "iamcu"))
81486035
L
2945 {
2946 if (cpu_arch_isa == PROCESSOR_IAMCU)
2947 {
2948 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
2949 as_fatal (_("Intel MCU is 32bit ELF only"));
2950 return bfd_mach_i386_iamcu;
2951 }
2952 else
2953 return bfd_mach_i386_i386;
2954 }
b9d79e03 2955 else
2b5d6a91 2956 as_fatal (_("unknown architecture"));
b9d79e03 2957}
b9d79e03 2958\f
252b5132 2959void
7016a5d5 2960md_begin (void)
252b5132
RH
2961{
2962 const char *hash_err;
2963
86fa6981
L
2964 /* Support pseudo prefixes like {disp32}. */
2965 lex_type ['{'] = LEX_BEGIN_NAME;
2966
47926f60 2967 /* Initialize op_hash hash table. */
252b5132
RH
2968 op_hash = hash_new ();
2969
2970 {
d3ce72d0 2971 const insn_template *optab;
29b0f896 2972 templates *core_optab;
252b5132 2973
47926f60
KH
2974 /* Setup for loop. */
2975 optab = i386_optab;
add39d23 2976 core_optab = XNEW (templates);
252b5132
RH
2977 core_optab->start = optab;
2978
2979 while (1)
2980 {
2981 ++optab;
2982 if (optab->name == NULL
2983 || strcmp (optab->name, (optab - 1)->name) != 0)
2984 {
2985 /* different name --> ship out current template list;
47926f60 2986 add to hash table; & begin anew. */
252b5132
RH
2987 core_optab->end = optab;
2988 hash_err = hash_insert (op_hash,
2989 (optab - 1)->name,
5a49b8ac 2990 (void *) core_optab);
252b5132
RH
2991 if (hash_err)
2992 {
b37df7c4 2993 as_fatal (_("can't hash %s: %s"),
252b5132
RH
2994 (optab - 1)->name,
2995 hash_err);
2996 }
2997 if (optab->name == NULL)
2998 break;
add39d23 2999 core_optab = XNEW (templates);
252b5132
RH
3000 core_optab->start = optab;
3001 }
3002 }
3003 }
3004
47926f60 3005 /* Initialize reg_hash hash table. */
252b5132
RH
3006 reg_hash = hash_new ();
3007 {
29b0f896 3008 const reg_entry *regtab;
c3fe08fa 3009 unsigned int regtab_size = i386_regtab_size;
252b5132 3010
c3fe08fa 3011 for (regtab = i386_regtab; regtab_size--; regtab++)
252b5132 3012 {
5a49b8ac 3013 hash_err = hash_insert (reg_hash, regtab->reg_name, (void *) regtab);
252b5132 3014 if (hash_err)
b37df7c4 3015 as_fatal (_("can't hash %s: %s"),
3e73aa7c
JH
3016 regtab->reg_name,
3017 hash_err);
252b5132
RH
3018 }
3019 }
3020
47926f60 3021 /* Fill in lexical tables: mnemonic_chars, operand_chars. */
252b5132 3022 {
29b0f896
AM
3023 int c;
3024 char *p;
252b5132
RH
3025
3026 for (c = 0; c < 256; c++)
3027 {
3882b010 3028 if (ISDIGIT (c))
252b5132
RH
3029 {
3030 digit_chars[c] = c;
3031 mnemonic_chars[c] = c;
3032 register_chars[c] = c;
3033 operand_chars[c] = c;
3034 }
3882b010 3035 else if (ISLOWER (c))
252b5132
RH
3036 {
3037 mnemonic_chars[c] = c;
3038 register_chars[c] = c;
3039 operand_chars[c] = c;
3040 }
3882b010 3041 else if (ISUPPER (c))
252b5132 3042 {
3882b010 3043 mnemonic_chars[c] = TOLOWER (c);
252b5132
RH
3044 register_chars[c] = mnemonic_chars[c];
3045 operand_chars[c] = c;
3046 }
43234a1e 3047 else if (c == '{' || c == '}')
86fa6981
L
3048 {
3049 mnemonic_chars[c] = c;
3050 operand_chars[c] = c;
3051 }
252b5132 3052
3882b010 3053 if (ISALPHA (c) || ISDIGIT (c))
252b5132
RH
3054 identifier_chars[c] = c;
3055 else if (c >= 128)
3056 {
3057 identifier_chars[c] = c;
3058 operand_chars[c] = c;
3059 }
3060 }
3061
3062#ifdef LEX_AT
3063 identifier_chars['@'] = '@';
32137342
NC
3064#endif
3065#ifdef LEX_QM
3066 identifier_chars['?'] = '?';
3067 operand_chars['?'] = '?';
252b5132 3068#endif
252b5132 3069 digit_chars['-'] = '-';
c0f3af97 3070 mnemonic_chars['_'] = '_';
791fe849 3071 mnemonic_chars['-'] = '-';
0003779b 3072 mnemonic_chars['.'] = '.';
252b5132
RH
3073 identifier_chars['_'] = '_';
3074 identifier_chars['.'] = '.';
3075
3076 for (p = operand_special_chars; *p != '\0'; p++)
3077 operand_chars[(unsigned char) *p] = *p;
3078 }
3079
a4447b93
RH
3080 if (flag_code == CODE_64BIT)
3081 {
ca19b261
KT
3082#if defined (OBJ_COFF) && defined (TE_PE)
3083 x86_dwarf2_return_column = (OUTPUT_FLAVOR == bfd_target_coff_flavour
3084 ? 32 : 16);
3085#else
a4447b93 3086 x86_dwarf2_return_column = 16;
ca19b261 3087#endif
61ff971f 3088 x86_cie_data_alignment = -8;
a4447b93
RH
3089 }
3090 else
3091 {
3092 x86_dwarf2_return_column = 8;
3093 x86_cie_data_alignment = -4;
3094 }
e379e5f3
L
3095
3096 /* NB: FUSED_JCC_PADDING frag must have sufficient room so that it
3097 can be turned into BRANCH_PREFIX frag. */
3098 if (align_branch_prefix_size > MAX_FUSED_JCC_PADDING_SIZE)
3099 abort ();
252b5132
RH
3100}
3101
3102void
e3bb37b5 3103i386_print_statistics (FILE *file)
252b5132
RH
3104{
3105 hash_print_statistics (file, "i386 opcode", op_hash);
3106 hash_print_statistics (file, "i386 register", reg_hash);
3107}
3108\f
252b5132
RH
3109#ifdef DEBUG386
3110
ce8a8b2f 3111/* Debugging routines for md_assemble. */
d3ce72d0 3112static void pte (insn_template *);
40fb9820 3113static void pt (i386_operand_type);
e3bb37b5
L
3114static void pe (expressionS *);
3115static void ps (symbolS *);
252b5132
RH
3116
3117static void
2c703856 3118pi (const char *line, i386_insn *x)
252b5132 3119{
09137c09 3120 unsigned int j;
252b5132
RH
3121
3122 fprintf (stdout, "%s: template ", line);
3123 pte (&x->tm);
09f131f2
JH
3124 fprintf (stdout, " address: base %s index %s scale %x\n",
3125 x->base_reg ? x->base_reg->reg_name : "none",
3126 x->index_reg ? x->index_reg->reg_name : "none",
3127 x->log2_scale_factor);
3128 fprintf (stdout, " modrm: mode %x reg %x reg/mem %x\n",
252b5132 3129 x->rm.mode, x->rm.reg, x->rm.regmem);
09f131f2
JH
3130 fprintf (stdout, " sib: base %x index %x scale %x\n",
3131 x->sib.base, x->sib.index, x->sib.scale);
3132 fprintf (stdout, " rex: 64bit %x extX %x extY %x extZ %x\n",
161a04f6
L
3133 (x->rex & REX_W) != 0,
3134 (x->rex & REX_R) != 0,
3135 (x->rex & REX_X) != 0,
3136 (x->rex & REX_B) != 0);
09137c09 3137 for (j = 0; j < x->operands; j++)
252b5132 3138 {
09137c09
SP
3139 fprintf (stdout, " #%d: ", j + 1);
3140 pt (x->types[j]);
252b5132 3141 fprintf (stdout, "\n");
bab6aec1 3142 if (x->types[j].bitfield.class == Reg
3528c362
JB
3143 || x->types[j].bitfield.class == RegMMX
3144 || x->types[j].bitfield.class == RegSIMD
00cee14f 3145 || x->types[j].bitfield.class == SReg
4a5c67ed
JB
3146 || x->types[j].bitfield.class == RegCR
3147 || x->types[j].bitfield.class == RegDR
3148 || x->types[j].bitfield.class == RegTR)
09137c09
SP
3149 fprintf (stdout, "%s\n", x->op[j].regs->reg_name);
3150 if (operand_type_check (x->types[j], imm))
3151 pe (x->op[j].imms);
3152 if (operand_type_check (x->types[j], disp))
3153 pe (x->op[j].disps);
252b5132
RH
3154 }
3155}
3156
3157static void
d3ce72d0 3158pte (insn_template *t)
252b5132 3159{
09137c09 3160 unsigned int j;
252b5132 3161 fprintf (stdout, " %d operands ", t->operands);
47926f60 3162 fprintf (stdout, "opcode %x ", t->base_opcode);
252b5132
RH
3163 if (t->extension_opcode != None)
3164 fprintf (stdout, "ext %x ", t->extension_opcode);
40fb9820 3165 if (t->opcode_modifier.d)
252b5132 3166 fprintf (stdout, "D");
40fb9820 3167 if (t->opcode_modifier.w)
252b5132
RH
3168 fprintf (stdout, "W");
3169 fprintf (stdout, "\n");
09137c09 3170 for (j = 0; j < t->operands; j++)
252b5132 3171 {
09137c09
SP
3172 fprintf (stdout, " #%d type ", j + 1);
3173 pt (t->operand_types[j]);
252b5132
RH
3174 fprintf (stdout, "\n");
3175 }
3176}
3177
3178static void
e3bb37b5 3179pe (expressionS *e)
252b5132 3180{
24eab124 3181 fprintf (stdout, " operation %d\n", e->X_op);
b77ad1d4
AM
3182 fprintf (stdout, " add_number %ld (%lx)\n",
3183 (long) e->X_add_number, (long) e->X_add_number);
252b5132
RH
3184 if (e->X_add_symbol)
3185 {
3186 fprintf (stdout, " add_symbol ");
3187 ps (e->X_add_symbol);
3188 fprintf (stdout, "\n");
3189 }
3190 if (e->X_op_symbol)
3191 {
3192 fprintf (stdout, " op_symbol ");
3193 ps (e->X_op_symbol);
3194 fprintf (stdout, "\n");
3195 }
3196}
3197
3198static void
e3bb37b5 3199ps (symbolS *s)
252b5132
RH
3200{
3201 fprintf (stdout, "%s type %s%s",
3202 S_GET_NAME (s),
3203 S_IS_EXTERNAL (s) ? "EXTERNAL " : "",
3204 segment_name (S_GET_SEGMENT (s)));
3205}
3206
7b81dfbb 3207static struct type_name
252b5132 3208 {
40fb9820
L
3209 i386_operand_type mask;
3210 const char *name;
252b5132 3211 }
7b81dfbb 3212const type_names[] =
252b5132 3213{
40fb9820
L
3214 { OPERAND_TYPE_REG8, "r8" },
3215 { OPERAND_TYPE_REG16, "r16" },
3216 { OPERAND_TYPE_REG32, "r32" },
3217 { OPERAND_TYPE_REG64, "r64" },
2c703856
JB
3218 { OPERAND_TYPE_ACC8, "acc8" },
3219 { OPERAND_TYPE_ACC16, "acc16" },
3220 { OPERAND_TYPE_ACC32, "acc32" },
3221 { OPERAND_TYPE_ACC64, "acc64" },
40fb9820
L
3222 { OPERAND_TYPE_IMM8, "i8" },
3223 { OPERAND_TYPE_IMM8, "i8s" },
3224 { OPERAND_TYPE_IMM16, "i16" },
3225 { OPERAND_TYPE_IMM32, "i32" },
3226 { OPERAND_TYPE_IMM32S, "i32s" },
3227 { OPERAND_TYPE_IMM64, "i64" },
3228 { OPERAND_TYPE_IMM1, "i1" },
3229 { OPERAND_TYPE_BASEINDEX, "BaseIndex" },
3230 { OPERAND_TYPE_DISP8, "d8" },
3231 { OPERAND_TYPE_DISP16, "d16" },
3232 { OPERAND_TYPE_DISP32, "d32" },
3233 { OPERAND_TYPE_DISP32S, "d32s" },
3234 { OPERAND_TYPE_DISP64, "d64" },
3235 { OPERAND_TYPE_INOUTPORTREG, "InOutPortReg" },
3236 { OPERAND_TYPE_SHIFTCOUNT, "ShiftCount" },
3237 { OPERAND_TYPE_CONTROL, "control reg" },
3238 { OPERAND_TYPE_TEST, "test reg" },
3239 { OPERAND_TYPE_DEBUG, "debug reg" },
3240 { OPERAND_TYPE_FLOATREG, "FReg" },
3241 { OPERAND_TYPE_FLOATACC, "FAcc" },
21df382b 3242 { OPERAND_TYPE_SREG, "SReg" },
40fb9820
L
3243 { OPERAND_TYPE_REGMMX, "rMMX" },
3244 { OPERAND_TYPE_REGXMM, "rXMM" },
0349dc08 3245 { OPERAND_TYPE_REGYMM, "rYMM" },
43234a1e
L
3246 { OPERAND_TYPE_REGZMM, "rZMM" },
3247 { OPERAND_TYPE_REGMASK, "Mask reg" },
252b5132
RH
3248};
3249
3250static void
40fb9820 3251pt (i386_operand_type t)
252b5132 3252{
40fb9820 3253 unsigned int j;
c6fb90c8 3254 i386_operand_type a;
252b5132 3255
40fb9820 3256 for (j = 0; j < ARRAY_SIZE (type_names); j++)
c6fb90c8
L
3257 {
3258 a = operand_type_and (t, type_names[j].mask);
2c703856 3259 if (operand_type_equal (&a, &type_names[j].mask))
c6fb90c8
L
3260 fprintf (stdout, "%s, ", type_names[j].name);
3261 }
252b5132
RH
3262 fflush (stdout);
3263}
3264
3265#endif /* DEBUG386 */
3266\f
252b5132 3267static bfd_reloc_code_real_type
3956db08 3268reloc (unsigned int size,
64e74474
AM
3269 int pcrel,
3270 int sign,
3271 bfd_reloc_code_real_type other)
252b5132 3272{
47926f60 3273 if (other != NO_RELOC)
3956db08 3274 {
91d6fa6a 3275 reloc_howto_type *rel;
3956db08
JB
3276
3277 if (size == 8)
3278 switch (other)
3279 {
64e74474
AM
3280 case BFD_RELOC_X86_64_GOT32:
3281 return BFD_RELOC_X86_64_GOT64;
3282 break;
553d1284
L
3283 case BFD_RELOC_X86_64_GOTPLT64:
3284 return BFD_RELOC_X86_64_GOTPLT64;
3285 break;
64e74474
AM
3286 case BFD_RELOC_X86_64_PLTOFF64:
3287 return BFD_RELOC_X86_64_PLTOFF64;
3288 break;
3289 case BFD_RELOC_X86_64_GOTPC32:
3290 other = BFD_RELOC_X86_64_GOTPC64;
3291 break;
3292 case BFD_RELOC_X86_64_GOTPCREL:
3293 other = BFD_RELOC_X86_64_GOTPCREL64;
3294 break;
3295 case BFD_RELOC_X86_64_TPOFF32:
3296 other = BFD_RELOC_X86_64_TPOFF64;
3297 break;
3298 case BFD_RELOC_X86_64_DTPOFF32:
3299 other = BFD_RELOC_X86_64_DTPOFF64;
3300 break;
3301 default:
3302 break;
3956db08 3303 }
e05278af 3304
8ce3d284 3305#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
3306 if (other == BFD_RELOC_SIZE32)
3307 {
3308 if (size == 8)
1ab668bf 3309 other = BFD_RELOC_SIZE64;
8fd4256d 3310 if (pcrel)
1ab668bf
AM
3311 {
3312 as_bad (_("there are no pc-relative size relocations"));
3313 return NO_RELOC;
3314 }
8fd4256d 3315 }
8ce3d284 3316#endif
8fd4256d 3317
e05278af 3318 /* Sign-checking 4-byte relocations in 16-/32-bit code is pointless. */
f2d8a97c 3319 if (size == 4 && (flag_code != CODE_64BIT || disallow_64bit_reloc))
e05278af
JB
3320 sign = -1;
3321
91d6fa6a
NC
3322 rel = bfd_reloc_type_lookup (stdoutput, other);
3323 if (!rel)
3956db08 3324 as_bad (_("unknown relocation (%u)"), other);
91d6fa6a 3325 else if (size != bfd_get_reloc_size (rel))
3956db08 3326 as_bad (_("%u-byte relocation cannot be applied to %u-byte field"),
91d6fa6a 3327 bfd_get_reloc_size (rel),
3956db08 3328 size);
91d6fa6a 3329 else if (pcrel && !rel->pc_relative)
3956db08 3330 as_bad (_("non-pc-relative relocation for pc-relative field"));
91d6fa6a 3331 else if ((rel->complain_on_overflow == complain_overflow_signed
3956db08 3332 && !sign)
91d6fa6a 3333 || (rel->complain_on_overflow == complain_overflow_unsigned
64e74474 3334 && sign > 0))
3956db08
JB
3335 as_bad (_("relocated field and relocation type differ in signedness"));
3336 else
3337 return other;
3338 return NO_RELOC;
3339 }
252b5132
RH
3340
3341 if (pcrel)
3342 {
3e73aa7c 3343 if (!sign)
3956db08 3344 as_bad (_("there are no unsigned pc-relative relocations"));
252b5132
RH
3345 switch (size)
3346 {
3347 case 1: return BFD_RELOC_8_PCREL;
3348 case 2: return BFD_RELOC_16_PCREL;
d258b828 3349 case 4: return BFD_RELOC_32_PCREL;
d6ab8113 3350 case 8: return BFD_RELOC_64_PCREL;
252b5132 3351 }
3956db08 3352 as_bad (_("cannot do %u byte pc-relative relocation"), size);
252b5132
RH
3353 }
3354 else
3355 {
3956db08 3356 if (sign > 0)
e5cb08ac 3357 switch (size)
3e73aa7c
JH
3358 {
3359 case 4: return BFD_RELOC_X86_64_32S;
3360 }
3361 else
3362 switch (size)
3363 {
3364 case 1: return BFD_RELOC_8;
3365 case 2: return BFD_RELOC_16;
3366 case 4: return BFD_RELOC_32;
3367 case 8: return BFD_RELOC_64;
3368 }
3956db08
JB
3369 as_bad (_("cannot do %s %u byte relocation"),
3370 sign > 0 ? "signed" : "unsigned", size);
252b5132
RH
3371 }
3372
0cc9e1d3 3373 return NO_RELOC;
252b5132
RH
3374}
3375
47926f60
KH
3376/* Here we decide which fixups can be adjusted to make them relative to
3377 the beginning of the section instead of the symbol. Basically we need
3378 to make sure that the dynamic relocations are done correctly, so in
3379 some cases we force the original symbol to be used. */
3380
252b5132 3381int
e3bb37b5 3382tc_i386_fix_adjustable (fixS *fixP ATTRIBUTE_UNUSED)
252b5132 3383{
6d249963 3384#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 3385 if (!IS_ELF)
31312f95
AM
3386 return 1;
3387
a161fe53
AM
3388 /* Don't adjust pc-relative references to merge sections in 64-bit
3389 mode. */
3390 if (use_rela_relocations
3391 && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0
3392 && fixP->fx_pcrel)
252b5132 3393 return 0;
31312f95 3394
8d01d9a9
AJ
3395 /* The x86_64 GOTPCREL are represented as 32bit PCrel relocations
3396 and changed later by validate_fix. */
3397 if (GOT_symbol && fixP->fx_subsy == GOT_symbol
3398 && fixP->fx_r_type == BFD_RELOC_32_PCREL)
3399 return 0;
3400
8fd4256d
L
3401 /* Adjust_reloc_syms doesn't know about the GOT. Need to keep symbol
3402 for size relocations. */
3403 if (fixP->fx_r_type == BFD_RELOC_SIZE32
3404 || fixP->fx_r_type == BFD_RELOC_SIZE64
3405 || fixP->fx_r_type == BFD_RELOC_386_GOTOFF
252b5132 3406 || fixP->fx_r_type == BFD_RELOC_386_GOT32
02a86693 3407 || fixP->fx_r_type == BFD_RELOC_386_GOT32X
13ae64f3
JJ
3408 || fixP->fx_r_type == BFD_RELOC_386_TLS_GD
3409 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDM
3410 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDO_32
3411 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE_32
37e55690
JJ
3412 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE
3413 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTIE
13ae64f3
JJ
3414 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE_32
3415 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE
67a4f2b7
AO
3416 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTDESC
3417 || fixP->fx_r_type == BFD_RELOC_386_TLS_DESC_CALL
3e73aa7c 3418 || fixP->fx_r_type == BFD_RELOC_X86_64_GOT32
80b3ee89 3419 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCREL
56ceb5b5
L
3420 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCRELX
3421 || fixP->fx_r_type == BFD_RELOC_X86_64_REX_GOTPCRELX
bffbf940
JJ
3422 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSGD
3423 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSLD
3424 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF32
d6ab8113 3425 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF64
bffbf940
JJ
3426 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTTPOFF
3427 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF32
d6ab8113
JB
3428 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF64
3429 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTOFF64
67a4f2b7
AO
3430 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPC32_TLSDESC
3431 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSDESC_CALL
252b5132
RH
3432 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
3433 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
3434 return 0;
31312f95 3435#endif
252b5132
RH
3436 return 1;
3437}
252b5132 3438
b4cac588 3439static int
e3bb37b5 3440intel_float_operand (const char *mnemonic)
252b5132 3441{
9306ca4a
JB
3442 /* Note that the value returned is meaningful only for opcodes with (memory)
3443 operands, hence the code here is free to improperly handle opcodes that
3444 have no operands (for better performance and smaller code). */
3445
3446 if (mnemonic[0] != 'f')
3447 return 0; /* non-math */
3448
3449 switch (mnemonic[1])
3450 {
3451 /* fclex, fdecstp, fdisi, femms, feni, fincstp, finit, fsetpm, and
3452 the fs segment override prefix not currently handled because no
3453 call path can make opcodes without operands get here */
3454 case 'i':
3455 return 2 /* integer op */;
3456 case 'l':
3457 if (mnemonic[2] == 'd' && (mnemonic[3] == 'c' || mnemonic[3] == 'e'))
3458 return 3; /* fldcw/fldenv */
3459 break;
3460 case 'n':
3461 if (mnemonic[2] != 'o' /* fnop */)
3462 return 3; /* non-waiting control op */
3463 break;
3464 case 'r':
3465 if (mnemonic[2] == 's')
3466 return 3; /* frstor/frstpm */
3467 break;
3468 case 's':
3469 if (mnemonic[2] == 'a')
3470 return 3; /* fsave */
3471 if (mnemonic[2] == 't')
3472 {
3473 switch (mnemonic[3])
3474 {
3475 case 'c': /* fstcw */
3476 case 'd': /* fstdw */
3477 case 'e': /* fstenv */
3478 case 's': /* fsts[gw] */
3479 return 3;
3480 }
3481 }
3482 break;
3483 case 'x':
3484 if (mnemonic[2] == 'r' || mnemonic[2] == 's')
3485 return 0; /* fxsave/fxrstor are not really math ops */
3486 break;
3487 }
252b5132 3488
9306ca4a 3489 return 1;
252b5132
RH
3490}
3491
c0f3af97
L
3492/* Build the VEX prefix. */
3493
3494static void
d3ce72d0 3495build_vex_prefix (const insn_template *t)
c0f3af97
L
3496{
3497 unsigned int register_specifier;
3498 unsigned int implied_prefix;
3499 unsigned int vector_length;
03751133 3500 unsigned int w;
c0f3af97
L
3501
3502 /* Check register specifier. */
3503 if (i.vex.register_specifier)
43234a1e
L
3504 {
3505 register_specifier =
3506 ~register_number (i.vex.register_specifier) & 0xf;
3507 gas_assert ((i.vex.register_specifier->reg_flags & RegVRex) == 0);
3508 }
c0f3af97
L
3509 else
3510 register_specifier = 0xf;
3511
79f0fa25
L
3512 /* Use 2-byte VEX prefix by swapping destination and source operand
3513 if there are more than 1 register operand. */
3514 if (i.reg_operands > 1
3515 && i.vec_encoding != vex_encoding_vex3
86fa6981 3516 && i.dir_encoding == dir_encoding_default
fa99fab2 3517 && i.operands == i.reg_operands
dbbc8b7e 3518 && operand_type_equal (&i.types[0], &i.types[i.operands - 1])
7f399153 3519 && i.tm.opcode_modifier.vexopcode == VEX0F
dbbc8b7e 3520 && (i.tm.opcode_modifier.load || i.tm.opcode_modifier.d)
fa99fab2
L
3521 && i.rex == REX_B)
3522 {
3523 unsigned int xchg = i.operands - 1;
3524 union i386_op temp_op;
3525 i386_operand_type temp_type;
3526
3527 temp_type = i.types[xchg];
3528 i.types[xchg] = i.types[0];
3529 i.types[0] = temp_type;
3530 temp_op = i.op[xchg];
3531 i.op[xchg] = i.op[0];
3532 i.op[0] = temp_op;
3533
9c2799c2 3534 gas_assert (i.rm.mode == 3);
fa99fab2
L
3535
3536 i.rex = REX_R;
3537 xchg = i.rm.regmem;
3538 i.rm.regmem = i.rm.reg;
3539 i.rm.reg = xchg;
3540
dbbc8b7e
JB
3541 if (i.tm.opcode_modifier.d)
3542 i.tm.base_opcode ^= (i.tm.base_opcode & 0xee) != 0x6e
3543 ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD;
3544 else /* Use the next insn. */
3545 i.tm = t[1];
fa99fab2
L
3546 }
3547
79dec6b7
JB
3548 /* Use 2-byte VEX prefix by swapping commutative source operands if there
3549 are no memory operands and at least 3 register ones. */
3550 if (i.reg_operands >= 3
3551 && i.vec_encoding != vex_encoding_vex3
3552 && i.reg_operands == i.operands - i.imm_operands
3553 && i.tm.opcode_modifier.vex
3554 && i.tm.opcode_modifier.commutative
3555 && (i.tm.opcode_modifier.sse2avx || optimize > 1)
3556 && i.rex == REX_B
3557 && i.vex.register_specifier
3558 && !(i.vex.register_specifier->reg_flags & RegRex))
3559 {
3560 unsigned int xchg = i.operands - i.reg_operands;
3561 union i386_op temp_op;
3562 i386_operand_type temp_type;
3563
3564 gas_assert (i.tm.opcode_modifier.vexopcode == VEX0F);
3565 gas_assert (!i.tm.opcode_modifier.sae);
3566 gas_assert (operand_type_equal (&i.types[i.operands - 2],
3567 &i.types[i.operands - 3]));
3568 gas_assert (i.rm.mode == 3);
3569
3570 temp_type = i.types[xchg];
3571 i.types[xchg] = i.types[xchg + 1];
3572 i.types[xchg + 1] = temp_type;
3573 temp_op = i.op[xchg];
3574 i.op[xchg] = i.op[xchg + 1];
3575 i.op[xchg + 1] = temp_op;
3576
3577 i.rex = 0;
3578 xchg = i.rm.regmem | 8;
3579 i.rm.regmem = ~register_specifier & 0xf;
3580 gas_assert (!(i.rm.regmem & 8));
3581 i.vex.register_specifier += xchg - i.rm.regmem;
3582 register_specifier = ~xchg & 0xf;
3583 }
3584
539f890d
L
3585 if (i.tm.opcode_modifier.vex == VEXScalar)
3586 vector_length = avxscalar;
10c17abd
JB
3587 else if (i.tm.opcode_modifier.vex == VEX256)
3588 vector_length = 1;
539f890d 3589 else
10c17abd 3590 {
56522fc5 3591 unsigned int op;
10c17abd 3592
c7213af9
L
3593 /* Determine vector length from the last multi-length vector
3594 operand. */
10c17abd 3595 vector_length = 0;
56522fc5 3596 for (op = t->operands; op--;)
10c17abd
JB
3597 if (t->operand_types[op].bitfield.xmmword
3598 && t->operand_types[op].bitfield.ymmword
3599 && i.types[op].bitfield.ymmword)
3600 {
3601 vector_length = 1;
3602 break;
3603 }
3604 }
c0f3af97
L
3605
3606 switch ((i.tm.base_opcode >> 8) & 0xff)
3607 {
3608 case 0:
3609 implied_prefix = 0;
3610 break;
3611 case DATA_PREFIX_OPCODE:
3612 implied_prefix = 1;
3613 break;
3614 case REPE_PREFIX_OPCODE:
3615 implied_prefix = 2;
3616 break;
3617 case REPNE_PREFIX_OPCODE:
3618 implied_prefix = 3;
3619 break;
3620 default:
3621 abort ();
3622 }
3623
03751133
L
3624 /* Check the REX.W bit and VEXW. */
3625 if (i.tm.opcode_modifier.vexw == VEXWIG)
3626 w = (vexwig == vexw1 || (i.rex & REX_W)) ? 1 : 0;
3627 else if (i.tm.opcode_modifier.vexw)
3628 w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0;
3629 else
931d03b7 3630 w = (flag_code == CODE_64BIT ? i.rex & REX_W : vexwig == vexw1) ? 1 : 0;
03751133 3631
c0f3af97 3632 /* Use 2-byte VEX prefix if possible. */
03751133
L
3633 if (w == 0
3634 && i.vec_encoding != vex_encoding_vex3
86fa6981 3635 && i.tm.opcode_modifier.vexopcode == VEX0F
c0f3af97
L
3636 && (i.rex & (REX_W | REX_X | REX_B)) == 0)
3637 {
3638 /* 2-byte VEX prefix. */
3639 unsigned int r;
3640
3641 i.vex.length = 2;
3642 i.vex.bytes[0] = 0xc5;
3643
3644 /* Check the REX.R bit. */
3645 r = (i.rex & REX_R) ? 0 : 1;
3646 i.vex.bytes[1] = (r << 7
3647 | register_specifier << 3
3648 | vector_length << 2
3649 | implied_prefix);
3650 }
3651 else
3652 {
3653 /* 3-byte VEX prefix. */
03751133 3654 unsigned int m;
c0f3af97 3655
f88c9eb0 3656 i.vex.length = 3;
f88c9eb0 3657
7f399153 3658 switch (i.tm.opcode_modifier.vexopcode)
5dd85c99 3659 {
7f399153
L
3660 case VEX0F:
3661 m = 0x1;
80de6e00 3662 i.vex.bytes[0] = 0xc4;
7f399153
L
3663 break;
3664 case VEX0F38:
3665 m = 0x2;
80de6e00 3666 i.vex.bytes[0] = 0xc4;
7f399153
L
3667 break;
3668 case VEX0F3A:
3669 m = 0x3;
80de6e00 3670 i.vex.bytes[0] = 0xc4;
7f399153
L
3671 break;
3672 case XOP08:
5dd85c99
SP
3673 m = 0x8;
3674 i.vex.bytes[0] = 0x8f;
7f399153
L
3675 break;
3676 case XOP09:
f88c9eb0
SP
3677 m = 0x9;
3678 i.vex.bytes[0] = 0x8f;
7f399153
L
3679 break;
3680 case XOP0A:
f88c9eb0
SP
3681 m = 0xa;
3682 i.vex.bytes[0] = 0x8f;
7f399153
L
3683 break;
3684 default:
3685 abort ();
f88c9eb0 3686 }
c0f3af97 3687
c0f3af97
L
3688 /* The high 3 bits of the second VEX byte are 1's compliment
3689 of RXB bits from REX. */
3690 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m;
3691
c0f3af97
L
3692 i.vex.bytes[2] = (w << 7
3693 | register_specifier << 3
3694 | vector_length << 2
3695 | implied_prefix);
3696 }
3697}
3698
e771e7c9
JB
3699static INLINE bfd_boolean
3700is_evex_encoding (const insn_template *t)
3701{
7091c612 3702 return t->opcode_modifier.evex || t->opcode_modifier.disp8memshift
e771e7c9 3703 || t->opcode_modifier.broadcast || t->opcode_modifier.masking
a80195f1 3704 || t->opcode_modifier.sae;
e771e7c9
JB
3705}
3706
7a8655d2
JB
3707static INLINE bfd_boolean
3708is_any_vex_encoding (const insn_template *t)
3709{
3710 return t->opcode_modifier.vex || t->opcode_modifier.vexopcode
3711 || is_evex_encoding (t);
3712}
3713
43234a1e
L
3714/* Build the EVEX prefix. */
3715
3716static void
3717build_evex_prefix (void)
3718{
3719 unsigned int register_specifier;
3720 unsigned int implied_prefix;
3721 unsigned int m, w;
3722 rex_byte vrex_used = 0;
3723
3724 /* Check register specifier. */
3725 if (i.vex.register_specifier)
3726 {
3727 gas_assert ((i.vrex & REX_X) == 0);
3728
3729 register_specifier = i.vex.register_specifier->reg_num;
3730 if ((i.vex.register_specifier->reg_flags & RegRex))
3731 register_specifier += 8;
3732 /* The upper 16 registers are encoded in the fourth byte of the
3733 EVEX prefix. */
3734 if (!(i.vex.register_specifier->reg_flags & RegVRex))
3735 i.vex.bytes[3] = 0x8;
3736 register_specifier = ~register_specifier & 0xf;
3737 }
3738 else
3739 {
3740 register_specifier = 0xf;
3741
3742 /* Encode upper 16 vector index register in the fourth byte of
3743 the EVEX prefix. */
3744 if (!(i.vrex & REX_X))
3745 i.vex.bytes[3] = 0x8;
3746 else
3747 vrex_used |= REX_X;
3748 }
3749
3750 switch ((i.tm.base_opcode >> 8) & 0xff)
3751 {
3752 case 0:
3753 implied_prefix = 0;
3754 break;
3755 case DATA_PREFIX_OPCODE:
3756 implied_prefix = 1;
3757 break;
3758 case REPE_PREFIX_OPCODE:
3759 implied_prefix = 2;
3760 break;
3761 case REPNE_PREFIX_OPCODE:
3762 implied_prefix = 3;
3763 break;
3764 default:
3765 abort ();
3766 }
3767
3768 /* 4 byte EVEX prefix. */
3769 i.vex.length = 4;
3770 i.vex.bytes[0] = 0x62;
3771
3772 /* mmmm bits. */
3773 switch (i.tm.opcode_modifier.vexopcode)
3774 {
3775 case VEX0F:
3776 m = 1;
3777 break;
3778 case VEX0F38:
3779 m = 2;
3780 break;
3781 case VEX0F3A:
3782 m = 3;
3783 break;
3784 default:
3785 abort ();
3786 break;
3787 }
3788
3789 /* The high 3 bits of the second EVEX byte are 1's compliment of RXB
3790 bits from REX. */
3791 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m;
3792
3793 /* The fifth bit of the second EVEX byte is 1's compliment of the
3794 REX_R bit in VREX. */
3795 if (!(i.vrex & REX_R))
3796 i.vex.bytes[1] |= 0x10;
3797 else
3798 vrex_used |= REX_R;
3799
3800 if ((i.reg_operands + i.imm_operands) == i.operands)
3801 {
3802 /* When all operands are registers, the REX_X bit in REX is not
3803 used. We reuse it to encode the upper 16 registers, which is
3804 indicated by the REX_B bit in VREX. The REX_X bit is encoded
3805 as 1's compliment. */
3806 if ((i.vrex & REX_B))
3807 {
3808 vrex_used |= REX_B;
3809 i.vex.bytes[1] &= ~0x40;
3810 }
3811 }
3812
3813 /* EVEX instructions shouldn't need the REX prefix. */
3814 i.vrex &= ~vrex_used;
3815 gas_assert (i.vrex == 0);
3816
6865c043
L
3817 /* Check the REX.W bit and VEXW. */
3818 if (i.tm.opcode_modifier.vexw == VEXWIG)
3819 w = (evexwig == evexw1 || (i.rex & REX_W)) ? 1 : 0;
3820 else if (i.tm.opcode_modifier.vexw)
3821 w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0;
3822 else
931d03b7 3823 w = (flag_code == CODE_64BIT ? i.rex & REX_W : evexwig == evexw1) ? 1 : 0;
43234a1e
L
3824
3825 /* Encode the U bit. */
3826 implied_prefix |= 0x4;
3827
3828 /* The third byte of the EVEX prefix. */
3829 i.vex.bytes[2] = (w << 7 | register_specifier << 3 | implied_prefix);
3830
3831 /* The fourth byte of the EVEX prefix. */
3832 /* The zeroing-masking bit. */
3833 if (i.mask && i.mask->zeroing)
3834 i.vex.bytes[3] |= 0x80;
3835
3836 /* Don't always set the broadcast bit if there is no RC. */
3837 if (!i.rounding)
3838 {
3839 /* Encode the vector length. */
3840 unsigned int vec_length;
3841
e771e7c9
JB
3842 if (!i.tm.opcode_modifier.evex
3843 || i.tm.opcode_modifier.evex == EVEXDYN)
3844 {
56522fc5 3845 unsigned int op;
e771e7c9 3846
c7213af9
L
3847 /* Determine vector length from the last multi-length vector
3848 operand. */
e771e7c9 3849 vec_length = 0;
56522fc5 3850 for (op = i.operands; op--;)
e771e7c9
JB
3851 if (i.tm.operand_types[op].bitfield.xmmword
3852 + i.tm.operand_types[op].bitfield.ymmword
3853 + i.tm.operand_types[op].bitfield.zmmword > 1)
3854 {
3855 if (i.types[op].bitfield.zmmword)
c7213af9
L
3856 {
3857 i.tm.opcode_modifier.evex = EVEX512;
3858 break;
3859 }
e771e7c9 3860 else if (i.types[op].bitfield.ymmword)
c7213af9
L
3861 {
3862 i.tm.opcode_modifier.evex = EVEX256;
3863 break;
3864 }
e771e7c9 3865 else if (i.types[op].bitfield.xmmword)
c7213af9
L
3866 {
3867 i.tm.opcode_modifier.evex = EVEX128;
3868 break;
3869 }
625cbd7a
JB
3870 else if (i.broadcast && (int) op == i.broadcast->operand)
3871 {
4a1b91ea 3872 switch (i.broadcast->bytes)
625cbd7a
JB
3873 {
3874 case 64:
3875 i.tm.opcode_modifier.evex = EVEX512;
3876 break;
3877 case 32:
3878 i.tm.opcode_modifier.evex = EVEX256;
3879 break;
3880 case 16:
3881 i.tm.opcode_modifier.evex = EVEX128;
3882 break;
3883 default:
c7213af9 3884 abort ();
625cbd7a 3885 }
c7213af9 3886 break;
625cbd7a 3887 }
e771e7c9 3888 }
c7213af9 3889
56522fc5 3890 if (op >= MAX_OPERANDS)
c7213af9 3891 abort ();
e771e7c9
JB
3892 }
3893
43234a1e
L
3894 switch (i.tm.opcode_modifier.evex)
3895 {
3896 case EVEXLIG: /* LL' is ignored */
3897 vec_length = evexlig << 5;
3898 break;
3899 case EVEX128:
3900 vec_length = 0 << 5;
3901 break;
3902 case EVEX256:
3903 vec_length = 1 << 5;
3904 break;
3905 case EVEX512:
3906 vec_length = 2 << 5;
3907 break;
3908 default:
3909 abort ();
3910 break;
3911 }
3912 i.vex.bytes[3] |= vec_length;
3913 /* Encode the broadcast bit. */
3914 if (i.broadcast)
3915 i.vex.bytes[3] |= 0x10;
3916 }
3917 else
3918 {
3919 if (i.rounding->type != saeonly)
3920 i.vex.bytes[3] |= 0x10 | (i.rounding->type << 5);
3921 else
d3d3c6db 3922 i.vex.bytes[3] |= 0x10 | (evexrcig << 5);
43234a1e
L
3923 }
3924
3925 if (i.mask && i.mask->mask)
3926 i.vex.bytes[3] |= i.mask->mask->reg_num;
3927}
3928
65da13b5
L
3929static void
3930process_immext (void)
3931{
3932 expressionS *exp;
3933
c0f3af97 3934 /* These AMD 3DNow! and SSE2 instructions have an opcode suffix
65da13b5
L
3935 which is coded in the same place as an 8-bit immediate field
3936 would be. Here we fake an 8-bit immediate operand from the
3937 opcode suffix stored in tm.extension_opcode.
3938
c1e679ec 3939 AVX instructions also use this encoding, for some of
c0f3af97 3940 3 argument instructions. */
65da13b5 3941
43234a1e 3942 gas_assert (i.imm_operands <= 1
7ab9ffdd 3943 && (i.operands <= 2
7a8655d2 3944 || (is_any_vex_encoding (&i.tm)
7ab9ffdd 3945 && i.operands <= 4)));
65da13b5
L
3946
3947 exp = &im_expressions[i.imm_operands++];
3948 i.op[i.operands].imms = exp;
3949 i.types[i.operands] = imm8;
3950 i.operands++;
3951 exp->X_op = O_constant;
3952 exp->X_add_number = i.tm.extension_opcode;
3953 i.tm.extension_opcode = None;
3954}
3955
42164a71
L
3956
3957static int
3958check_hle (void)
3959{
3960 switch (i.tm.opcode_modifier.hleprefixok)
3961 {
3962 default:
3963 abort ();
82c2def5 3964 case HLEPrefixNone:
165de32a
L
3965 as_bad (_("invalid instruction `%s' after `%s'"),
3966 i.tm.name, i.hle_prefix);
42164a71 3967 return 0;
82c2def5 3968 case HLEPrefixLock:
42164a71
L
3969 if (i.prefix[LOCK_PREFIX])
3970 return 1;
165de32a 3971 as_bad (_("missing `lock' with `%s'"), i.hle_prefix);
42164a71 3972 return 0;
82c2def5 3973 case HLEPrefixAny:
42164a71 3974 return 1;
82c2def5 3975 case HLEPrefixRelease:
42164a71
L
3976 if (i.prefix[HLE_PREFIX] != XRELEASE_PREFIX_OPCODE)
3977 {
3978 as_bad (_("instruction `%s' after `xacquire' not allowed"),
3979 i.tm.name);
3980 return 0;
3981 }
8dc0818e 3982 if (i.mem_operands == 0 || !(i.flags[i.operands - 1] & Operand_Mem))
42164a71
L
3983 {
3984 as_bad (_("memory destination needed for instruction `%s'"
3985 " after `xrelease'"), i.tm.name);
3986 return 0;
3987 }
3988 return 1;
3989 }
3990}
3991
b6f8c7c4
L
3992/* Try the shortest encoding by shortening operand size. */
3993
3994static void
3995optimize_encoding (void)
3996{
a0a1771e 3997 unsigned int j;
b6f8c7c4
L
3998
3999 if (optimize_for_space
72aea328 4000 && !is_any_vex_encoding (&i.tm)
b6f8c7c4
L
4001 && i.reg_operands == 1
4002 && i.imm_operands == 1
4003 && !i.types[1].bitfield.byte
4004 && i.op[0].imms->X_op == O_constant
4005 && fits_in_imm7 (i.op[0].imms->X_add_number)
72aea328 4006 && (i.tm.base_opcode == 0xa8
b6f8c7c4
L
4007 || (i.tm.base_opcode == 0xf6
4008 && i.tm.extension_opcode == 0x0)))
4009 {
4010 /* Optimize: -Os:
4011 test $imm7, %r64/%r32/%r16 -> test $imm7, %r8
4012 */
4013 unsigned int base_regnum = i.op[1].regs->reg_num;
4014 if (flag_code == CODE_64BIT || base_regnum < 4)
4015 {
4016 i.types[1].bitfield.byte = 1;
4017 /* Ignore the suffix. */
4018 i.suffix = 0;
7697afb6
JB
4019 /* Convert to byte registers. */
4020 if (i.types[1].bitfield.word)
4021 j = 16;
4022 else if (i.types[1].bitfield.dword)
4023 j = 32;
4024 else
4025 j = 48;
4026 if (!(i.op[1].regs->reg_flags & RegRex) && base_regnum < 4)
4027 j += 8;
4028 i.op[1].regs -= j;
b6f8c7c4
L
4029 }
4030 }
4031 else if (flag_code == CODE_64BIT
72aea328 4032 && !is_any_vex_encoding (&i.tm)
d3d50934
L
4033 && ((i.types[1].bitfield.qword
4034 && i.reg_operands == 1
b6f8c7c4
L
4035 && i.imm_operands == 1
4036 && i.op[0].imms->X_op == O_constant
507916b8 4037 && ((i.tm.base_opcode == 0xb8
b6f8c7c4
L
4038 && i.tm.extension_opcode == None
4039 && fits_in_unsigned_long (i.op[0].imms->X_add_number))
4040 || (fits_in_imm31 (i.op[0].imms->X_add_number)
72aea328
JB
4041 && ((i.tm.base_opcode == 0x24
4042 || i.tm.base_opcode == 0xa8)
b6f8c7c4
L
4043 || (i.tm.base_opcode == 0x80
4044 && i.tm.extension_opcode == 0x4)
4045 || ((i.tm.base_opcode == 0xf6
507916b8 4046 || (i.tm.base_opcode | 1) == 0xc7)
b8364fa7
JB
4047 && i.tm.extension_opcode == 0x0)))
4048 || (fits_in_imm7 (i.op[0].imms->X_add_number)
4049 && i.tm.base_opcode == 0x83
4050 && i.tm.extension_opcode == 0x4)))
d3d50934
L
4051 || (i.types[0].bitfield.qword
4052 && ((i.reg_operands == 2
4053 && i.op[0].regs == i.op[1].regs
72aea328
JB
4054 && (i.tm.base_opcode == 0x30
4055 || i.tm.base_opcode == 0x28))
d3d50934
L
4056 || (i.reg_operands == 1
4057 && i.operands == 1
72aea328 4058 && i.tm.base_opcode == 0x30)))))
b6f8c7c4
L
4059 {
4060 /* Optimize: -O:
4061 andq $imm31, %r64 -> andl $imm31, %r32
b8364fa7 4062 andq $imm7, %r64 -> andl $imm7, %r32
b6f8c7c4
L
4063 testq $imm31, %r64 -> testl $imm31, %r32
4064 xorq %r64, %r64 -> xorl %r32, %r32
4065 subq %r64, %r64 -> subl %r32, %r32
4066 movq $imm31, %r64 -> movl $imm31, %r32
4067 movq $imm32, %r64 -> movl $imm32, %r32
4068 */
4069 i.tm.opcode_modifier.norex64 = 1;
507916b8 4070 if (i.tm.base_opcode == 0xb8 || (i.tm.base_opcode | 1) == 0xc7)
b6f8c7c4
L
4071 {
4072 /* Handle
4073 movq $imm31, %r64 -> movl $imm31, %r32
4074 movq $imm32, %r64 -> movl $imm32, %r32
4075 */
4076 i.tm.operand_types[0].bitfield.imm32 = 1;
4077 i.tm.operand_types[0].bitfield.imm32s = 0;
4078 i.tm.operand_types[0].bitfield.imm64 = 0;
4079 i.types[0].bitfield.imm32 = 1;
4080 i.types[0].bitfield.imm32s = 0;
4081 i.types[0].bitfield.imm64 = 0;
4082 i.types[1].bitfield.dword = 1;
4083 i.types[1].bitfield.qword = 0;
507916b8 4084 if ((i.tm.base_opcode | 1) == 0xc7)
b6f8c7c4
L
4085 {
4086 /* Handle
4087 movq $imm31, %r64 -> movl $imm31, %r32
4088 */
507916b8 4089 i.tm.base_opcode = 0xb8;
b6f8c7c4 4090 i.tm.extension_opcode = None;
507916b8 4091 i.tm.opcode_modifier.w = 0;
b6f8c7c4
L
4092 i.tm.opcode_modifier.modrm = 0;
4093 }
4094 }
4095 }
5641ec01
JB
4096 else if (optimize > 1
4097 && !optimize_for_space
72aea328 4098 && !is_any_vex_encoding (&i.tm)
5641ec01
JB
4099 && i.reg_operands == 2
4100 && i.op[0].regs == i.op[1].regs
4101 && ((i.tm.base_opcode & ~(Opcode_D | 1)) == 0x8
4102 || (i.tm.base_opcode & ~(Opcode_D | 1)) == 0x20)
4103 && (flag_code != CODE_64BIT || !i.types[0].bitfield.dword))
4104 {
4105 /* Optimize: -O2:
4106 andb %rN, %rN -> testb %rN, %rN
4107 andw %rN, %rN -> testw %rN, %rN
4108 andq %rN, %rN -> testq %rN, %rN
4109 orb %rN, %rN -> testb %rN, %rN
4110 orw %rN, %rN -> testw %rN, %rN
4111 orq %rN, %rN -> testq %rN, %rN
4112
4113 and outside of 64-bit mode
4114
4115 andl %rN, %rN -> testl %rN, %rN
4116 orl %rN, %rN -> testl %rN, %rN
4117 */
4118 i.tm.base_opcode = 0x84 | (i.tm.base_opcode & 1);
4119 }
99112332 4120 else if (i.reg_operands == 3
b6f8c7c4
L
4121 && i.op[0].regs == i.op[1].regs
4122 && !i.types[2].bitfield.xmmword
4123 && (i.tm.opcode_modifier.vex
7a69eac3 4124 || ((!i.mask || i.mask->zeroing)
b6f8c7c4 4125 && !i.rounding
e771e7c9 4126 && is_evex_encoding (&i.tm)
80c34c38 4127 && (i.vec_encoding != vex_encoding_evex
dd22218c 4128 || cpu_arch_isa_flags.bitfield.cpuavx512vl
80c34c38 4129 || i.tm.cpu_flags.bitfield.cpuavx512vl
7091c612 4130 || (i.tm.operand_types[2].bitfield.zmmword
dd22218c 4131 && i.types[2].bitfield.ymmword))))
b6f8c7c4
L
4132 && ((i.tm.base_opcode == 0x55
4133 || i.tm.base_opcode == 0x6655
4134 || i.tm.base_opcode == 0x66df
4135 || i.tm.base_opcode == 0x57
4136 || i.tm.base_opcode == 0x6657
8305403a
L
4137 || i.tm.base_opcode == 0x66ef
4138 || i.tm.base_opcode == 0x66f8
4139 || i.tm.base_opcode == 0x66f9
4140 || i.tm.base_opcode == 0x66fa
1424ad86
JB
4141 || i.tm.base_opcode == 0x66fb
4142 || i.tm.base_opcode == 0x42
4143 || i.tm.base_opcode == 0x6642
4144 || i.tm.base_opcode == 0x47
4145 || i.tm.base_opcode == 0x6647)
b6f8c7c4
L
4146 && i.tm.extension_opcode == None))
4147 {
99112332 4148 /* Optimize: -O1:
8305403a
L
4149 VOP, one of vandnps, vandnpd, vxorps, vxorpd, vpsubb, vpsubd,
4150 vpsubq and vpsubw:
b6f8c7c4
L
4151 EVEX VOP %zmmM, %zmmM, %zmmN
4152 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4153 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4154 EVEX VOP %ymmM, %ymmM, %ymmN
4155 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4156 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4157 VEX VOP %ymmM, %ymmM, %ymmN
4158 -> VEX VOP %xmmM, %xmmM, %xmmN
4159 VOP, one of vpandn and vpxor:
4160 VEX VOP %ymmM, %ymmM, %ymmN
4161 -> VEX VOP %xmmM, %xmmM, %xmmN
4162 VOP, one of vpandnd and vpandnq:
4163 EVEX VOP %zmmM, %zmmM, %zmmN
4164 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4165 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4166 EVEX VOP %ymmM, %ymmM, %ymmN
4167 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4168 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4169 VOP, one of vpxord and vpxorq:
4170 EVEX VOP %zmmM, %zmmM, %zmmN
4171 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4172 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4173 EVEX VOP %ymmM, %ymmM, %ymmN
4174 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4175 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
1424ad86
JB
4176 VOP, one of kxord and kxorq:
4177 VEX VOP %kM, %kM, %kN
4178 -> VEX kxorw %kM, %kM, %kN
4179 VOP, one of kandnd and kandnq:
4180 VEX VOP %kM, %kM, %kN
4181 -> VEX kandnw %kM, %kM, %kN
b6f8c7c4 4182 */
e771e7c9 4183 if (is_evex_encoding (&i.tm))
b6f8c7c4 4184 {
7b1d7ca1 4185 if (i.vec_encoding != vex_encoding_evex)
b6f8c7c4
L
4186 {
4187 i.tm.opcode_modifier.vex = VEX128;
4188 i.tm.opcode_modifier.vexw = VEXW0;
4189 i.tm.opcode_modifier.evex = 0;
4190 }
7b1d7ca1 4191 else if (optimize > 1)
dd22218c
L
4192 i.tm.opcode_modifier.evex = EVEX128;
4193 else
4194 return;
b6f8c7c4 4195 }
f74a6307 4196 else if (i.tm.operand_types[0].bitfield.class == RegMask)
1424ad86
JB
4197 {
4198 i.tm.base_opcode &= 0xff;
4199 i.tm.opcode_modifier.vexw = VEXW0;
4200 }
b6f8c7c4
L
4201 else
4202 i.tm.opcode_modifier.vex = VEX128;
4203
4204 if (i.tm.opcode_modifier.vex)
4205 for (j = 0; j < 3; j++)
4206 {
4207 i.types[j].bitfield.xmmword = 1;
4208 i.types[j].bitfield.ymmword = 0;
4209 }
4210 }
392a5972 4211 else if (i.vec_encoding != vex_encoding_evex
97ed31ae 4212 && !i.types[0].bitfield.zmmword
392a5972 4213 && !i.types[1].bitfield.zmmword
97ed31ae 4214 && !i.mask
a0a1771e 4215 && !i.broadcast
97ed31ae 4216 && is_evex_encoding (&i.tm)
392a5972
L
4217 && ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0x666f
4218 || (i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf36f
a0a1771e
JB
4219 || (i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf26f
4220 || (i.tm.base_opcode & ~4) == 0x66db
4221 || (i.tm.base_opcode & ~4) == 0x66eb)
97ed31ae
L
4222 && i.tm.extension_opcode == None)
4223 {
4224 /* Optimize: -O1:
4225 VOP, one of vmovdqa32, vmovdqa64, vmovdqu8, vmovdqu16,
4226 vmovdqu32 and vmovdqu64:
4227 EVEX VOP %xmmM, %xmmN
4228 -> VEX vmovdqa|vmovdqu %xmmM, %xmmN (M and N < 16)
4229 EVEX VOP %ymmM, %ymmN
4230 -> VEX vmovdqa|vmovdqu %ymmM, %ymmN (M and N < 16)
4231 EVEX VOP %xmmM, mem
4232 -> VEX vmovdqa|vmovdqu %xmmM, mem (M < 16)
4233 EVEX VOP %ymmM, mem
4234 -> VEX vmovdqa|vmovdqu %ymmM, mem (M < 16)
4235 EVEX VOP mem, %xmmN
4236 -> VEX mvmovdqa|vmovdquem, %xmmN (N < 16)
4237 EVEX VOP mem, %ymmN
4238 -> VEX vmovdqa|vmovdqu mem, %ymmN (N < 16)
a0a1771e
JB
4239 VOP, one of vpand, vpandn, vpor, vpxor:
4240 EVEX VOP{d,q} %xmmL, %xmmM, %xmmN
4241 -> VEX VOP %xmmL, %xmmM, %xmmN (L, M, and N < 16)
4242 EVEX VOP{d,q} %ymmL, %ymmM, %ymmN
4243 -> VEX VOP %ymmL, %ymmM, %ymmN (L, M, and N < 16)
4244 EVEX VOP{d,q} mem, %xmmM, %xmmN
4245 -> VEX VOP mem, %xmmM, %xmmN (M and N < 16)
4246 EVEX VOP{d,q} mem, %ymmM, %ymmN
4247 -> VEX VOP mem, %ymmM, %ymmN (M and N < 16)
97ed31ae 4248 */
a0a1771e 4249 for (j = 0; j < i.operands; j++)
392a5972
L
4250 if (operand_type_check (i.types[j], disp)
4251 && i.op[j].disps->X_op == O_constant)
4252 {
4253 /* Since the VEX prefix has 2 or 3 bytes, the EVEX prefix
4254 has 4 bytes, EVEX Disp8 has 1 byte and VEX Disp32 has 4
4255 bytes, we choose EVEX Disp8 over VEX Disp32. */
4256 int evex_disp8, vex_disp8;
4257 unsigned int memshift = i.memshift;
4258 offsetT n = i.op[j].disps->X_add_number;
4259
4260 evex_disp8 = fits_in_disp8 (n);
4261 i.memshift = 0;
4262 vex_disp8 = fits_in_disp8 (n);
4263 if (evex_disp8 != vex_disp8)
4264 {
4265 i.memshift = memshift;
4266 return;
4267 }
4268
4269 i.types[j].bitfield.disp8 = vex_disp8;
4270 break;
4271 }
4272 if ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf26f)
4273 i.tm.base_opcode ^= 0xf36f ^ 0xf26f;
97ed31ae
L
4274 i.tm.opcode_modifier.vex
4275 = i.types[0].bitfield.ymmword ? VEX256 : VEX128;
4276 i.tm.opcode_modifier.vexw = VEXW0;
79dec6b7
JB
4277 /* VPAND, VPOR, and VPXOR are commutative. */
4278 if (i.reg_operands == 3 && i.tm.base_opcode != 0x66df)
4279 i.tm.opcode_modifier.commutative = 1;
97ed31ae
L
4280 i.tm.opcode_modifier.evex = 0;
4281 i.tm.opcode_modifier.masking = 0;
a0a1771e 4282 i.tm.opcode_modifier.broadcast = 0;
97ed31ae
L
4283 i.tm.opcode_modifier.disp8memshift = 0;
4284 i.memshift = 0;
a0a1771e
JB
4285 if (j < i.operands)
4286 i.types[j].bitfield.disp8
4287 = fits_in_disp8 (i.op[j].disps->X_add_number);
97ed31ae 4288 }
b6f8c7c4
L
4289}
4290
252b5132
RH
4291/* This is the guts of the machine-dependent assembler. LINE points to a
4292 machine dependent instruction. This function is supposed to emit
4293 the frags/bytes it assembles to. */
4294
4295void
65da13b5 4296md_assemble (char *line)
252b5132 4297{
40fb9820 4298 unsigned int j;
83b16ac6 4299 char mnemonic[MAX_MNEM_SIZE], mnem_suffix;
d3ce72d0 4300 const insn_template *t;
252b5132 4301
47926f60 4302 /* Initialize globals. */
252b5132
RH
4303 memset (&i, '\0', sizeof (i));
4304 for (j = 0; j < MAX_OPERANDS; j++)
1ae12ab7 4305 i.reloc[j] = NO_RELOC;
252b5132
RH
4306 memset (disp_expressions, '\0', sizeof (disp_expressions));
4307 memset (im_expressions, '\0', sizeof (im_expressions));
ce8a8b2f 4308 save_stack_p = save_stack;
252b5132
RH
4309
4310 /* First parse an instruction mnemonic & call i386_operand for the operands.
4311 We assume that the scrubber has arranged it so that line[0] is the valid
47926f60 4312 start of a (possibly prefixed) mnemonic. */
252b5132 4313
29b0f896
AM
4314 line = parse_insn (line, mnemonic);
4315 if (line == NULL)
4316 return;
83b16ac6 4317 mnem_suffix = i.suffix;
252b5132 4318
29b0f896 4319 line = parse_operands (line, mnemonic);
ee86248c 4320 this_operand = -1;
8325cc63
JB
4321 xfree (i.memop1_string);
4322 i.memop1_string = NULL;
29b0f896
AM
4323 if (line == NULL)
4324 return;
252b5132 4325
29b0f896
AM
4326 /* Now we've parsed the mnemonic into a set of templates, and have the
4327 operands at hand. */
4328
eedb0f2c
JB
4329 /* All Intel opcodes have reversed operands except for "bound", "enter"
4330 "monitor*", and "mwait*". We also don't reverse intersegment "jmp"
4331 and "call" instructions with 2 immediate operands so that the immediate
4332 segment precedes the offset, as it does when in AT&T mode. */
4d456e3d
L
4333 if (intel_syntax
4334 && i.operands > 1
29b0f896 4335 && (strcmp (mnemonic, "bound") != 0)
30123838 4336 && (strcmp (mnemonic, "invlpga") != 0)
eedb0f2c
JB
4337 && (strncmp (mnemonic, "monitor", 7) != 0)
4338 && (strncmp (mnemonic, "mwait", 5) != 0)
40fb9820
L
4339 && !(operand_type_check (i.types[0], imm)
4340 && operand_type_check (i.types[1], imm)))
29b0f896
AM
4341 swap_operands ();
4342
ec56d5c0
JB
4343 /* The order of the immediates should be reversed
4344 for 2 immediates extrq and insertq instructions */
4345 if (i.imm_operands == 2
4346 && (strcmp (mnemonic, "extrq") == 0
4347 || strcmp (mnemonic, "insertq") == 0))
4348 swap_2_operands (0, 1);
4349
29b0f896
AM
4350 if (i.imm_operands)
4351 optimize_imm ();
4352
b300c311
L
4353 /* Don't optimize displacement for movabs since it only takes 64bit
4354 displacement. */
4355 if (i.disp_operands
a501d77e 4356 && i.disp_encoding != disp_encoding_32bit
862be3fb
L
4357 && (flag_code != CODE_64BIT
4358 || strcmp (mnemonic, "movabs") != 0))
4359 optimize_disp ();
29b0f896
AM
4360
4361 /* Next, we find a template that matches the given insn,
4362 making sure the overlap of the given operands types is consistent
4363 with the template operand types. */
252b5132 4364
83b16ac6 4365 if (!(t = match_template (mnem_suffix)))
29b0f896 4366 return;
252b5132 4367
7bab8ab5 4368 if (sse_check != check_none
81f8a913 4369 && !i.tm.opcode_modifier.noavx
6e3e5c9e 4370 && !i.tm.cpu_flags.bitfield.cpuavx
569d50f1 4371 && !i.tm.cpu_flags.bitfield.cpuavx512f
daf50ae7
L
4372 && (i.tm.cpu_flags.bitfield.cpusse
4373 || i.tm.cpu_flags.bitfield.cpusse2
4374 || i.tm.cpu_flags.bitfield.cpusse3
4375 || i.tm.cpu_flags.bitfield.cpussse3
4376 || i.tm.cpu_flags.bitfield.cpusse4_1
6e3e5c9e 4377 || i.tm.cpu_flags.bitfield.cpusse4_2
569d50f1 4378 || i.tm.cpu_flags.bitfield.cpusse4a
6e3e5c9e
JB
4379 || i.tm.cpu_flags.bitfield.cpupclmul
4380 || i.tm.cpu_flags.bitfield.cpuaes
569d50f1 4381 || i.tm.cpu_flags.bitfield.cpusha
6e3e5c9e 4382 || i.tm.cpu_flags.bitfield.cpugfni))
daf50ae7 4383 {
7bab8ab5 4384 (sse_check == check_warning
daf50ae7
L
4385 ? as_warn
4386 : as_bad) (_("SSE instruction `%s' is used"), i.tm.name);
4387 }
4388
40fb9820 4389 if (i.tm.opcode_modifier.fwait)
29b0f896
AM
4390 if (!add_prefix (FWAIT_OPCODE))
4391 return;
252b5132 4392
d5de92cf
L
4393 /* Check if REP prefix is OK. */
4394 if (i.rep_prefix && !i.tm.opcode_modifier.repprefixok)
4395 {
4396 as_bad (_("invalid instruction `%s' after `%s'"),
4397 i.tm.name, i.rep_prefix);
4398 return;
4399 }
4400
c1ba0266
L
4401 /* Check for lock without a lockable instruction. Destination operand
4402 must be memory unless it is xchg (0x86). */
c32fa91d
L
4403 if (i.prefix[LOCK_PREFIX]
4404 && (!i.tm.opcode_modifier.islockable
c1ba0266
L
4405 || i.mem_operands == 0
4406 || (i.tm.base_opcode != 0x86
8dc0818e 4407 && !(i.flags[i.operands - 1] & Operand_Mem))))
c32fa91d
L
4408 {
4409 as_bad (_("expecting lockable instruction after `lock'"));
4410 return;
4411 }
4412
7a8655d2
JB
4413 /* Check for data size prefix on VEX/XOP/EVEX encoded insns. */
4414 if (i.prefix[DATA_PREFIX] && is_any_vex_encoding (&i.tm))
4415 {
4416 as_bad (_("data size prefix invalid with `%s'"), i.tm.name);
4417 return;
4418 }
4419
42164a71 4420 /* Check if HLE prefix is OK. */
165de32a 4421 if (i.hle_prefix && !check_hle ())
42164a71
L
4422 return;
4423
7e8b059b
L
4424 /* Check BND prefix. */
4425 if (i.bnd_prefix && !i.tm.opcode_modifier.bndprefixok)
4426 as_bad (_("expecting valid branch instruction after `bnd'"));
4427
04ef582a 4428 /* Check NOTRACK prefix. */
9fef80d6
L
4429 if (i.notrack_prefix && !i.tm.opcode_modifier.notrackprefixok)
4430 as_bad (_("expecting indirect branch instruction after `notrack'"));
04ef582a 4431
327e8c42
JB
4432 if (i.tm.cpu_flags.bitfield.cpumpx)
4433 {
4434 if (flag_code == CODE_64BIT && i.prefix[ADDR_PREFIX])
4435 as_bad (_("32-bit address isn't allowed in 64-bit MPX instructions."));
4436 else if (flag_code != CODE_16BIT
4437 ? i.prefix[ADDR_PREFIX]
4438 : i.mem_operands && !i.prefix[ADDR_PREFIX])
4439 as_bad (_("16-bit address isn't allowed in MPX instructions"));
4440 }
7e8b059b
L
4441
4442 /* Insert BND prefix. */
76d3a78a
JB
4443 if (add_bnd_prefix && i.tm.opcode_modifier.bndprefixok)
4444 {
4445 if (!i.prefix[BND_PREFIX])
4446 add_prefix (BND_PREFIX_OPCODE);
4447 else if (i.prefix[BND_PREFIX] != BND_PREFIX_OPCODE)
4448 {
4449 as_warn (_("replacing `rep'/`repe' prefix by `bnd'"));
4450 i.prefix[BND_PREFIX] = BND_PREFIX_OPCODE;
4451 }
4452 }
7e8b059b 4453
29b0f896 4454 /* Check string instruction segment overrides. */
51c8edf6 4455 if (i.tm.opcode_modifier.isstring >= IS_STRING_ES_OP0)
29b0f896 4456 {
51c8edf6 4457 gas_assert (i.mem_operands);
29b0f896 4458 if (!check_string ())
5dd0794d 4459 return;
fc0763e6 4460 i.disp_operands = 0;
29b0f896 4461 }
5dd0794d 4462
b6f8c7c4
L
4463 if (optimize && !i.no_optimize && i.tm.opcode_modifier.optimize)
4464 optimize_encoding ();
4465
29b0f896
AM
4466 if (!process_suffix ())
4467 return;
e413e4e9 4468
bc0844ae
L
4469 /* Update operand types. */
4470 for (j = 0; j < i.operands; j++)
4471 i.types[j] = operand_type_and (i.types[j], i.tm.operand_types[j]);
4472
29b0f896
AM
4473 /* Make still unresolved immediate matches conform to size of immediate
4474 given in i.suffix. */
4475 if (!finalize_imm ())
4476 return;
252b5132 4477
40fb9820 4478 if (i.types[0].bitfield.imm1)
29b0f896 4479 i.imm_operands = 0; /* kludge for shift insns. */
252b5132 4480
9afe6eb8
L
4481 /* We only need to check those implicit registers for instructions
4482 with 3 operands or less. */
4483 if (i.operands <= 3)
4484 for (j = 0; j < i.operands; j++)
75e5731b
JB
4485 if (i.types[j].bitfield.instance != InstanceNone
4486 && !i.types[j].bitfield.xmmword)
9afe6eb8 4487 i.reg_operands--;
40fb9820 4488
c0f3af97
L
4489 /* ImmExt should be processed after SSE2AVX. */
4490 if (!i.tm.opcode_modifier.sse2avx
4491 && i.tm.opcode_modifier.immext)
65da13b5 4492 process_immext ();
252b5132 4493
29b0f896
AM
4494 /* For insns with operands there are more diddles to do to the opcode. */
4495 if (i.operands)
4496 {
4497 if (!process_operands ())
4498 return;
4499 }
40fb9820 4500 else if (!quiet_warnings && i.tm.opcode_modifier.ugh)
29b0f896
AM
4501 {
4502 /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. */
4503 as_warn (_("translating to `%sp'"), i.tm.name);
4504 }
252b5132 4505
7a8655d2 4506 if (is_any_vex_encoding (&i.tm))
9e5e5283 4507 {
c1dc7af5 4508 if (!cpu_arch_flags.bitfield.cpui286)
9e5e5283 4509 {
c1dc7af5 4510 as_bad (_("instruction `%s' isn't supported outside of protected mode."),
9e5e5283
L
4511 i.tm.name);
4512 return;
4513 }
c0f3af97 4514
9e5e5283
L
4515 if (i.tm.opcode_modifier.vex)
4516 build_vex_prefix (t);
4517 else
4518 build_evex_prefix ();
4519 }
43234a1e 4520
5dd85c99
SP
4521 /* Handle conversion of 'int $3' --> special int3 insn. XOP or FMA4
4522 instructions may define INT_OPCODE as well, so avoid this corner
4523 case for those instructions that use MODRM. */
4524 if (i.tm.base_opcode == INT_OPCODE
a6461c02
SP
4525 && !i.tm.opcode_modifier.modrm
4526 && i.op[0].imms->X_add_number == 3)
29b0f896
AM
4527 {
4528 i.tm.base_opcode = INT3_OPCODE;
4529 i.imm_operands = 0;
4530 }
252b5132 4531
0cfa3eb3
JB
4532 if ((i.tm.opcode_modifier.jump == JUMP
4533 || i.tm.opcode_modifier.jump == JUMP_BYTE
4534 || i.tm.opcode_modifier.jump == JUMP_DWORD)
29b0f896
AM
4535 && i.op[0].disps->X_op == O_constant)
4536 {
4537 /* Convert "jmp constant" (and "call constant") to a jump (call) to
4538 the absolute address given by the constant. Since ix86 jumps and
4539 calls are pc relative, we need to generate a reloc. */
4540 i.op[0].disps->X_add_symbol = &abs_symbol;
4541 i.op[0].disps->X_op = O_symbol;
4542 }
252b5132 4543
40fb9820 4544 if (i.tm.opcode_modifier.rex64)
161a04f6 4545 i.rex |= REX_W;
252b5132 4546
29b0f896
AM
4547 /* For 8 bit registers we need an empty rex prefix. Also if the
4548 instruction already has a prefix, we need to convert old
4549 registers to new ones. */
773f551c 4550
bab6aec1 4551 if ((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte
29b0f896 4552 && (i.op[0].regs->reg_flags & RegRex64) != 0)
bab6aec1 4553 || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte
29b0f896 4554 && (i.op[1].regs->reg_flags & RegRex64) != 0)
bab6aec1
JB
4555 || (((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte)
4556 || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte))
29b0f896
AM
4557 && i.rex != 0))
4558 {
4559 int x;
726c5dcd 4560
29b0f896
AM
4561 i.rex |= REX_OPCODE;
4562 for (x = 0; x < 2; x++)
4563 {
4564 /* Look for 8 bit operand that uses old registers. */
bab6aec1 4565 if (i.types[x].bitfield.class == Reg && i.types[x].bitfield.byte
29b0f896 4566 && (i.op[x].regs->reg_flags & RegRex64) == 0)
773f551c 4567 {
3f93af61 4568 gas_assert (!(i.op[x].regs->reg_flags & RegRex));
29b0f896
AM
4569 /* In case it is "hi" register, give up. */
4570 if (i.op[x].regs->reg_num > 3)
a540244d 4571 as_bad (_("can't encode register '%s%s' in an "
4eed87de 4572 "instruction requiring REX prefix."),
a540244d 4573 register_prefix, i.op[x].regs->reg_name);
773f551c 4574
29b0f896
AM
4575 /* Otherwise it is equivalent to the extended register.
4576 Since the encoding doesn't change this is merely
4577 cosmetic cleanup for debug output. */
4578
4579 i.op[x].regs = i.op[x].regs + 8;
773f551c 4580 }
29b0f896
AM
4581 }
4582 }
773f551c 4583
6b6b6807
L
4584 if (i.rex == 0 && i.rex_encoding)
4585 {
4586 /* Check if we can add a REX_OPCODE byte. Look for 8 bit operand
3f93af61 4587 that uses legacy register. If it is "hi" register, don't add
6b6b6807
L
4588 the REX_OPCODE byte. */
4589 int x;
4590 for (x = 0; x < 2; x++)
bab6aec1 4591 if (i.types[x].bitfield.class == Reg
6b6b6807
L
4592 && i.types[x].bitfield.byte
4593 && (i.op[x].regs->reg_flags & RegRex64) == 0
4594 && i.op[x].regs->reg_num > 3)
4595 {
3f93af61 4596 gas_assert (!(i.op[x].regs->reg_flags & RegRex));
6b6b6807
L
4597 i.rex_encoding = FALSE;
4598 break;
4599 }
4600
4601 if (i.rex_encoding)
4602 i.rex = REX_OPCODE;
4603 }
4604
7ab9ffdd 4605 if (i.rex != 0)
29b0f896
AM
4606 add_prefix (REX_OPCODE | i.rex);
4607
4608 /* We are ready to output the insn. */
4609 output_insn ();
e379e5f3
L
4610
4611 last_insn.seg = now_seg;
4612
4613 if (i.tm.opcode_modifier.isprefix)
4614 {
4615 last_insn.kind = last_insn_prefix;
4616 last_insn.name = i.tm.name;
4617 last_insn.file = as_where (&last_insn.line);
4618 }
4619 else
4620 last_insn.kind = last_insn_other;
29b0f896
AM
4621}
4622
4623static char *
e3bb37b5 4624parse_insn (char *line, char *mnemonic)
29b0f896
AM
4625{
4626 char *l = line;
4627 char *token_start = l;
4628 char *mnem_p;
5c6af06e 4629 int supported;
d3ce72d0 4630 const insn_template *t;
b6169b20 4631 char *dot_p = NULL;
29b0f896 4632
29b0f896
AM
4633 while (1)
4634 {
4635 mnem_p = mnemonic;
4636 while ((*mnem_p = mnemonic_chars[(unsigned char) *l]) != 0)
4637 {
b6169b20
L
4638 if (*mnem_p == '.')
4639 dot_p = mnem_p;
29b0f896
AM
4640 mnem_p++;
4641 if (mnem_p >= mnemonic + MAX_MNEM_SIZE)
45288df1 4642 {
29b0f896
AM
4643 as_bad (_("no such instruction: `%s'"), token_start);
4644 return NULL;
4645 }
4646 l++;
4647 }
4648 if (!is_space_char (*l)
4649 && *l != END_OF_INSN
e44823cf
JB
4650 && (intel_syntax
4651 || (*l != PREFIX_SEPARATOR
4652 && *l != ',')))
29b0f896
AM
4653 {
4654 as_bad (_("invalid character %s in mnemonic"),
4655 output_invalid (*l));
4656 return NULL;
4657 }
4658 if (token_start == l)
4659 {
e44823cf 4660 if (!intel_syntax && *l == PREFIX_SEPARATOR)
29b0f896
AM
4661 as_bad (_("expecting prefix; got nothing"));
4662 else
4663 as_bad (_("expecting mnemonic; got nothing"));
4664 return NULL;
4665 }
45288df1 4666
29b0f896 4667 /* Look up instruction (or prefix) via hash table. */
d3ce72d0 4668 current_templates = (const templates *) hash_find (op_hash, mnemonic);
47926f60 4669
29b0f896
AM
4670 if (*l != END_OF_INSN
4671 && (!is_space_char (*l) || l[1] != END_OF_INSN)
4672 && current_templates
40fb9820 4673 && current_templates->start->opcode_modifier.isprefix)
29b0f896 4674 {
c6fb90c8 4675 if (!cpu_flags_check_cpu64 (current_templates->start->cpu_flags))
2dd88dca
JB
4676 {
4677 as_bad ((flag_code != CODE_64BIT
4678 ? _("`%s' is only supported in 64-bit mode")
4679 : _("`%s' is not supported in 64-bit mode")),
4680 current_templates->start->name);
4681 return NULL;
4682 }
29b0f896
AM
4683 /* If we are in 16-bit mode, do not allow addr16 or data16.
4684 Similarly, in 32-bit mode, do not allow addr32 or data32. */
673fe0f0
JB
4685 if ((current_templates->start->opcode_modifier.size == SIZE16
4686 || current_templates->start->opcode_modifier.size == SIZE32)
29b0f896 4687 && flag_code != CODE_64BIT
673fe0f0 4688 && ((current_templates->start->opcode_modifier.size == SIZE32)
29b0f896
AM
4689 ^ (flag_code == CODE_16BIT)))
4690 {
4691 as_bad (_("redundant %s prefix"),
4692 current_templates->start->name);
4693 return NULL;
45288df1 4694 }
86fa6981 4695 if (current_templates->start->opcode_length == 0)
29b0f896 4696 {
86fa6981
L
4697 /* Handle pseudo prefixes. */
4698 switch (current_templates->start->base_opcode)
4699 {
4700 case 0x0:
4701 /* {disp8} */
4702 i.disp_encoding = disp_encoding_8bit;
4703 break;
4704 case 0x1:
4705 /* {disp32} */
4706 i.disp_encoding = disp_encoding_32bit;
4707 break;
4708 case 0x2:
4709 /* {load} */
4710 i.dir_encoding = dir_encoding_load;
4711 break;
4712 case 0x3:
4713 /* {store} */
4714 i.dir_encoding = dir_encoding_store;
4715 break;
4716 case 0x4:
42e04b36
L
4717 /* {vex} */
4718 i.vec_encoding = vex_encoding_vex;
86fa6981
L
4719 break;
4720 case 0x5:
4721 /* {vex3} */
4722 i.vec_encoding = vex_encoding_vex3;
4723 break;
4724 case 0x6:
4725 /* {evex} */
4726 i.vec_encoding = vex_encoding_evex;
4727 break;
6b6b6807
L
4728 case 0x7:
4729 /* {rex} */
4730 i.rex_encoding = TRUE;
4731 break;
b6f8c7c4
L
4732 case 0x8:
4733 /* {nooptimize} */
4734 i.no_optimize = TRUE;
4735 break;
86fa6981
L
4736 default:
4737 abort ();
4738 }
4739 }
4740 else
4741 {
4742 /* Add prefix, checking for repeated prefixes. */
4e9ac44a 4743 switch (add_prefix (current_templates->start->base_opcode))
86fa6981 4744 {
4e9ac44a
L
4745 case PREFIX_EXIST:
4746 return NULL;
4747 case PREFIX_DS:
d777820b 4748 if (current_templates->start->cpu_flags.bitfield.cpuibt)
4e9ac44a
L
4749 i.notrack_prefix = current_templates->start->name;
4750 break;
4751 case PREFIX_REP:
4752 if (current_templates->start->cpu_flags.bitfield.cpuhle)
4753 i.hle_prefix = current_templates->start->name;
4754 else if (current_templates->start->cpu_flags.bitfield.cpumpx)
4755 i.bnd_prefix = current_templates->start->name;
4756 else
4757 i.rep_prefix = current_templates->start->name;
4758 break;
4759 default:
4760 break;
86fa6981 4761 }
29b0f896
AM
4762 }
4763 /* Skip past PREFIX_SEPARATOR and reset token_start. */
4764 token_start = ++l;
4765 }
4766 else
4767 break;
4768 }
45288df1 4769
30a55f88 4770 if (!current_templates)
b6169b20 4771 {
07d5e953
JB
4772 /* Deprecated functionality (new code should use pseudo-prefixes instead):
4773 Check if we should swap operand or force 32bit displacement in
f8a5c266 4774 encoding. */
30a55f88 4775 if (mnem_p - 2 == dot_p && dot_p[1] == 's')
64c49ab3 4776 i.dir_encoding = dir_encoding_swap;
8d63c93e 4777 else if (mnem_p - 3 == dot_p
a501d77e
L
4778 && dot_p[1] == 'd'
4779 && dot_p[2] == '8')
4780 i.disp_encoding = disp_encoding_8bit;
8d63c93e 4781 else if (mnem_p - 4 == dot_p
f8a5c266
L
4782 && dot_p[1] == 'd'
4783 && dot_p[2] == '3'
4784 && dot_p[3] == '2')
a501d77e 4785 i.disp_encoding = disp_encoding_32bit;
30a55f88
L
4786 else
4787 goto check_suffix;
4788 mnem_p = dot_p;
4789 *dot_p = '\0';
d3ce72d0 4790 current_templates = (const templates *) hash_find (op_hash, mnemonic);
b6169b20
L
4791 }
4792
29b0f896
AM
4793 if (!current_templates)
4794 {
b6169b20 4795check_suffix:
1c529385 4796 if (mnem_p > mnemonic)
29b0f896 4797 {
1c529385
LH
4798 /* See if we can get a match by trimming off a suffix. */
4799 switch (mnem_p[-1])
29b0f896 4800 {
1c529385
LH
4801 case WORD_MNEM_SUFFIX:
4802 if (intel_syntax && (intel_float_operand (mnemonic) & 2))
29b0f896
AM
4803 i.suffix = SHORT_MNEM_SUFFIX;
4804 else
1c529385
LH
4805 /* Fall through. */
4806 case BYTE_MNEM_SUFFIX:
4807 case QWORD_MNEM_SUFFIX:
4808 i.suffix = mnem_p[-1];
29b0f896 4809 mnem_p[-1] = '\0';
d3ce72d0 4810 current_templates = (const templates *) hash_find (op_hash,
1c529385
LH
4811 mnemonic);
4812 break;
4813 case SHORT_MNEM_SUFFIX:
4814 case LONG_MNEM_SUFFIX:
4815 if (!intel_syntax)
4816 {
4817 i.suffix = mnem_p[-1];
4818 mnem_p[-1] = '\0';
4819 current_templates = (const templates *) hash_find (op_hash,
4820 mnemonic);
4821 }
4822 break;
4823
4824 /* Intel Syntax. */
4825 case 'd':
4826 if (intel_syntax)
4827 {
4828 if (intel_float_operand (mnemonic) == 1)
4829 i.suffix = SHORT_MNEM_SUFFIX;
4830 else
4831 i.suffix = LONG_MNEM_SUFFIX;
4832 mnem_p[-1] = '\0';
4833 current_templates = (const templates *) hash_find (op_hash,
4834 mnemonic);
4835 }
4836 break;
29b0f896 4837 }
29b0f896 4838 }
1c529385 4839
29b0f896
AM
4840 if (!current_templates)
4841 {
4842 as_bad (_("no such instruction: `%s'"), token_start);
4843 return NULL;
4844 }
4845 }
252b5132 4846
0cfa3eb3
JB
4847 if (current_templates->start->opcode_modifier.jump == JUMP
4848 || current_templates->start->opcode_modifier.jump == JUMP_BYTE)
29b0f896
AM
4849 {
4850 /* Check for a branch hint. We allow ",pt" and ",pn" for
4851 predict taken and predict not taken respectively.
4852 I'm not sure that branch hints actually do anything on loop
4853 and jcxz insns (JumpByte) for current Pentium4 chips. They
4854 may work in the future and it doesn't hurt to accept them
4855 now. */
4856 if (l[0] == ',' && l[1] == 'p')
4857 {
4858 if (l[2] == 't')
4859 {
4860 if (!add_prefix (DS_PREFIX_OPCODE))
4861 return NULL;
4862 l += 3;
4863 }
4864 else if (l[2] == 'n')
4865 {
4866 if (!add_prefix (CS_PREFIX_OPCODE))
4867 return NULL;
4868 l += 3;
4869 }
4870 }
4871 }
4872 /* Any other comma loses. */
4873 if (*l == ',')
4874 {
4875 as_bad (_("invalid character %s in mnemonic"),
4876 output_invalid (*l));
4877 return NULL;
4878 }
252b5132 4879
29b0f896 4880 /* Check if instruction is supported on specified architecture. */
5c6af06e
JB
4881 supported = 0;
4882 for (t = current_templates->start; t < current_templates->end; ++t)
4883 {
c0f3af97
L
4884 supported |= cpu_flags_match (t);
4885 if (supported == CPU_FLAGS_PERFECT_MATCH)
548d0ee6
JB
4886 {
4887 if (!cpu_arch_flags.bitfield.cpui386 && (flag_code != CODE_16BIT))
4888 as_warn (_("use .code16 to ensure correct addressing mode"));
3629bb00 4889
548d0ee6
JB
4890 return l;
4891 }
29b0f896 4892 }
3629bb00 4893
548d0ee6
JB
4894 if (!(supported & CPU_FLAGS_64BIT_MATCH))
4895 as_bad (flag_code == CODE_64BIT
4896 ? _("`%s' is not supported in 64-bit mode")
4897 : _("`%s' is only supported in 64-bit mode"),
4898 current_templates->start->name);
4899 else
4900 as_bad (_("`%s' is not supported on `%s%s'"),
4901 current_templates->start->name,
4902 cpu_arch_name ? cpu_arch_name : default_arch,
4903 cpu_sub_arch_name ? cpu_sub_arch_name : "");
252b5132 4904
548d0ee6 4905 return NULL;
29b0f896 4906}
252b5132 4907
29b0f896 4908static char *
e3bb37b5 4909parse_operands (char *l, const char *mnemonic)
29b0f896
AM
4910{
4911 char *token_start;
3138f287 4912
29b0f896
AM
4913 /* 1 if operand is pending after ','. */
4914 unsigned int expecting_operand = 0;
252b5132 4915
29b0f896
AM
4916 /* Non-zero if operand parens not balanced. */
4917 unsigned int paren_not_balanced;
4918
4919 while (*l != END_OF_INSN)
4920 {
4921 /* Skip optional white space before operand. */
4922 if (is_space_char (*l))
4923 ++l;
d02603dc 4924 if (!is_operand_char (*l) && *l != END_OF_INSN && *l != '"')
29b0f896
AM
4925 {
4926 as_bad (_("invalid character %s before operand %d"),
4927 output_invalid (*l),
4928 i.operands + 1);
4929 return NULL;
4930 }
d02603dc 4931 token_start = l; /* After white space. */
29b0f896
AM
4932 paren_not_balanced = 0;
4933 while (paren_not_balanced || *l != ',')
4934 {
4935 if (*l == END_OF_INSN)
4936 {
4937 if (paren_not_balanced)
4938 {
4939 if (!intel_syntax)
4940 as_bad (_("unbalanced parenthesis in operand %d."),
4941 i.operands + 1);
4942 else
4943 as_bad (_("unbalanced brackets in operand %d."),
4944 i.operands + 1);
4945 return NULL;
4946 }
4947 else
4948 break; /* we are done */
4949 }
d02603dc 4950 else if (!is_operand_char (*l) && !is_space_char (*l) && *l != '"')
29b0f896
AM
4951 {
4952 as_bad (_("invalid character %s in operand %d"),
4953 output_invalid (*l),
4954 i.operands + 1);
4955 return NULL;
4956 }
4957 if (!intel_syntax)
4958 {
4959 if (*l == '(')
4960 ++paren_not_balanced;
4961 if (*l == ')')
4962 --paren_not_balanced;
4963 }
4964 else
4965 {
4966 if (*l == '[')
4967 ++paren_not_balanced;
4968 if (*l == ']')
4969 --paren_not_balanced;
4970 }
4971 l++;
4972 }
4973 if (l != token_start)
4974 { /* Yes, we've read in another operand. */
4975 unsigned int operand_ok;
4976 this_operand = i.operands++;
4977 if (i.operands > MAX_OPERANDS)
4978 {
4979 as_bad (_("spurious operands; (%d operands/instruction max)"),
4980 MAX_OPERANDS);
4981 return NULL;
4982 }
9d46ce34 4983 i.types[this_operand].bitfield.unspecified = 1;
29b0f896
AM
4984 /* Now parse operand adding info to 'i' as we go along. */
4985 END_STRING_AND_SAVE (l);
4986
1286ab78
L
4987 if (i.mem_operands > 1)
4988 {
4989 as_bad (_("too many memory references for `%s'"),
4990 mnemonic);
4991 return 0;
4992 }
4993
29b0f896
AM
4994 if (intel_syntax)
4995 operand_ok =
4996 i386_intel_operand (token_start,
4997 intel_float_operand (mnemonic));
4998 else
a7619375 4999 operand_ok = i386_att_operand (token_start);
29b0f896
AM
5000
5001 RESTORE_END_STRING (l);
5002 if (!operand_ok)
5003 return NULL;
5004 }
5005 else
5006 {
5007 if (expecting_operand)
5008 {
5009 expecting_operand_after_comma:
5010 as_bad (_("expecting operand after ','; got nothing"));
5011 return NULL;
5012 }
5013 if (*l == ',')
5014 {
5015 as_bad (_("expecting operand before ','; got nothing"));
5016 return NULL;
5017 }
5018 }
7f3f1ea2 5019
29b0f896
AM
5020 /* Now *l must be either ',' or END_OF_INSN. */
5021 if (*l == ',')
5022 {
5023 if (*++l == END_OF_INSN)
5024 {
5025 /* Just skip it, if it's \n complain. */
5026 goto expecting_operand_after_comma;
5027 }
5028 expecting_operand = 1;
5029 }
5030 }
5031 return l;
5032}
7f3f1ea2 5033
050dfa73 5034static void
4d456e3d 5035swap_2_operands (int xchg1, int xchg2)
050dfa73
MM
5036{
5037 union i386_op temp_op;
40fb9820 5038 i386_operand_type temp_type;
c48dadc9 5039 unsigned int temp_flags;
050dfa73 5040 enum bfd_reloc_code_real temp_reloc;
4eed87de 5041
050dfa73
MM
5042 temp_type = i.types[xchg2];
5043 i.types[xchg2] = i.types[xchg1];
5044 i.types[xchg1] = temp_type;
c48dadc9
JB
5045
5046 temp_flags = i.flags[xchg2];
5047 i.flags[xchg2] = i.flags[xchg1];
5048 i.flags[xchg1] = temp_flags;
5049
050dfa73
MM
5050 temp_op = i.op[xchg2];
5051 i.op[xchg2] = i.op[xchg1];
5052 i.op[xchg1] = temp_op;
c48dadc9 5053
050dfa73
MM
5054 temp_reloc = i.reloc[xchg2];
5055 i.reloc[xchg2] = i.reloc[xchg1];
5056 i.reloc[xchg1] = temp_reloc;
43234a1e
L
5057
5058 if (i.mask)
5059 {
5060 if (i.mask->operand == xchg1)
5061 i.mask->operand = xchg2;
5062 else if (i.mask->operand == xchg2)
5063 i.mask->operand = xchg1;
5064 }
5065 if (i.broadcast)
5066 {
5067 if (i.broadcast->operand == xchg1)
5068 i.broadcast->operand = xchg2;
5069 else if (i.broadcast->operand == xchg2)
5070 i.broadcast->operand = xchg1;
5071 }
5072 if (i.rounding)
5073 {
5074 if (i.rounding->operand == xchg1)
5075 i.rounding->operand = xchg2;
5076 else if (i.rounding->operand == xchg2)
5077 i.rounding->operand = xchg1;
5078 }
050dfa73
MM
5079}
5080
29b0f896 5081static void
e3bb37b5 5082swap_operands (void)
29b0f896 5083{
b7c61d9a 5084 switch (i.operands)
050dfa73 5085 {
c0f3af97 5086 case 5:
b7c61d9a 5087 case 4:
4d456e3d 5088 swap_2_operands (1, i.operands - 2);
1a0670f3 5089 /* Fall through. */
b7c61d9a
L
5090 case 3:
5091 case 2:
4d456e3d 5092 swap_2_operands (0, i.operands - 1);
b7c61d9a
L
5093 break;
5094 default:
5095 abort ();
29b0f896 5096 }
29b0f896
AM
5097
5098 if (i.mem_operands == 2)
5099 {
5100 const seg_entry *temp_seg;
5101 temp_seg = i.seg[0];
5102 i.seg[0] = i.seg[1];
5103 i.seg[1] = temp_seg;
5104 }
5105}
252b5132 5106
29b0f896
AM
5107/* Try to ensure constant immediates are represented in the smallest
5108 opcode possible. */
5109static void
e3bb37b5 5110optimize_imm (void)
29b0f896
AM
5111{
5112 char guess_suffix = 0;
5113 int op;
252b5132 5114
29b0f896
AM
5115 if (i.suffix)
5116 guess_suffix = i.suffix;
5117 else if (i.reg_operands)
5118 {
5119 /* Figure out a suffix from the last register operand specified.
75e5731b
JB
5120 We can't do this properly yet, i.e. excluding special register
5121 instances, but the following works for instructions with
5122 immediates. In any case, we can't set i.suffix yet. */
29b0f896 5123 for (op = i.operands; --op >= 0;)
bab6aec1
JB
5124 if (i.types[op].bitfield.class != Reg)
5125 continue;
5126 else if (i.types[op].bitfield.byte)
7ab9ffdd 5127 {
40fb9820
L
5128 guess_suffix = BYTE_MNEM_SUFFIX;
5129 break;
5130 }
bab6aec1 5131 else if (i.types[op].bitfield.word)
252b5132 5132 {
40fb9820
L
5133 guess_suffix = WORD_MNEM_SUFFIX;
5134 break;
5135 }
bab6aec1 5136 else if (i.types[op].bitfield.dword)
40fb9820
L
5137 {
5138 guess_suffix = LONG_MNEM_SUFFIX;
5139 break;
5140 }
bab6aec1 5141 else if (i.types[op].bitfield.qword)
40fb9820
L
5142 {
5143 guess_suffix = QWORD_MNEM_SUFFIX;
29b0f896 5144 break;
252b5132 5145 }
29b0f896
AM
5146 }
5147 else if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
5148 guess_suffix = WORD_MNEM_SUFFIX;
5149
5150 for (op = i.operands; --op >= 0;)
40fb9820 5151 if (operand_type_check (i.types[op], imm))
29b0f896
AM
5152 {
5153 switch (i.op[op].imms->X_op)
252b5132 5154 {
29b0f896
AM
5155 case O_constant:
5156 /* If a suffix is given, this operand may be shortened. */
5157 switch (guess_suffix)
252b5132 5158 {
29b0f896 5159 case LONG_MNEM_SUFFIX:
40fb9820
L
5160 i.types[op].bitfield.imm32 = 1;
5161 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
5162 break;
5163 case WORD_MNEM_SUFFIX:
40fb9820
L
5164 i.types[op].bitfield.imm16 = 1;
5165 i.types[op].bitfield.imm32 = 1;
5166 i.types[op].bitfield.imm32s = 1;
5167 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
5168 break;
5169 case BYTE_MNEM_SUFFIX:
40fb9820
L
5170 i.types[op].bitfield.imm8 = 1;
5171 i.types[op].bitfield.imm8s = 1;
5172 i.types[op].bitfield.imm16 = 1;
5173 i.types[op].bitfield.imm32 = 1;
5174 i.types[op].bitfield.imm32s = 1;
5175 i.types[op].bitfield.imm64 = 1;
29b0f896 5176 break;
252b5132 5177 }
252b5132 5178
29b0f896
AM
5179 /* If this operand is at most 16 bits, convert it
5180 to a signed 16 bit number before trying to see
5181 whether it will fit in an even smaller size.
5182 This allows a 16-bit operand such as $0xffe0 to
5183 be recognised as within Imm8S range. */
40fb9820 5184 if ((i.types[op].bitfield.imm16)
29b0f896 5185 && (i.op[op].imms->X_add_number & ~(offsetT) 0xffff) == 0)
252b5132 5186 {
29b0f896
AM
5187 i.op[op].imms->X_add_number =
5188 (((i.op[op].imms->X_add_number & 0xffff) ^ 0x8000) - 0x8000);
5189 }
a28def75
L
5190#ifdef BFD64
5191 /* Store 32-bit immediate in 64-bit for 64-bit BFD. */
40fb9820 5192 if ((i.types[op].bitfield.imm32)
29b0f896
AM
5193 && ((i.op[op].imms->X_add_number & ~(((offsetT) 2 << 31) - 1))
5194 == 0))
5195 {
5196 i.op[op].imms->X_add_number = ((i.op[op].imms->X_add_number
5197 ^ ((offsetT) 1 << 31))
5198 - ((offsetT) 1 << 31));
5199 }
a28def75 5200#endif
40fb9820 5201 i.types[op]
c6fb90c8
L
5202 = operand_type_or (i.types[op],
5203 smallest_imm_type (i.op[op].imms->X_add_number));
252b5132 5204
29b0f896
AM
5205 /* We must avoid matching of Imm32 templates when 64bit
5206 only immediate is available. */
5207 if (guess_suffix == QWORD_MNEM_SUFFIX)
40fb9820 5208 i.types[op].bitfield.imm32 = 0;
29b0f896 5209 break;
252b5132 5210
29b0f896
AM
5211 case O_absent:
5212 case O_register:
5213 abort ();
5214
5215 /* Symbols and expressions. */
5216 default:
9cd96992
JB
5217 /* Convert symbolic operand to proper sizes for matching, but don't
5218 prevent matching a set of insns that only supports sizes other
5219 than those matching the insn suffix. */
5220 {
40fb9820 5221 i386_operand_type mask, allowed;
d3ce72d0 5222 const insn_template *t;
9cd96992 5223
0dfbf9d7
L
5224 operand_type_set (&mask, 0);
5225 operand_type_set (&allowed, 0);
40fb9820 5226
4eed87de
AM
5227 for (t = current_templates->start;
5228 t < current_templates->end;
5229 ++t)
bab6aec1
JB
5230 {
5231 allowed = operand_type_or (allowed, t->operand_types[op]);
5232 allowed = operand_type_and (allowed, anyimm);
5233 }
9cd96992
JB
5234 switch (guess_suffix)
5235 {
5236 case QWORD_MNEM_SUFFIX:
40fb9820
L
5237 mask.bitfield.imm64 = 1;
5238 mask.bitfield.imm32s = 1;
9cd96992
JB
5239 break;
5240 case LONG_MNEM_SUFFIX:
40fb9820 5241 mask.bitfield.imm32 = 1;
9cd96992
JB
5242 break;
5243 case WORD_MNEM_SUFFIX:
40fb9820 5244 mask.bitfield.imm16 = 1;
9cd96992
JB
5245 break;
5246 case BYTE_MNEM_SUFFIX:
40fb9820 5247 mask.bitfield.imm8 = 1;
9cd96992
JB
5248 break;
5249 default:
9cd96992
JB
5250 break;
5251 }
c6fb90c8 5252 allowed = operand_type_and (mask, allowed);
0dfbf9d7 5253 if (!operand_type_all_zero (&allowed))
c6fb90c8 5254 i.types[op] = operand_type_and (i.types[op], mask);
9cd96992 5255 }
29b0f896 5256 break;
252b5132 5257 }
29b0f896
AM
5258 }
5259}
47926f60 5260
29b0f896
AM
5261/* Try to use the smallest displacement type too. */
5262static void
e3bb37b5 5263optimize_disp (void)
29b0f896
AM
5264{
5265 int op;
3e73aa7c 5266
29b0f896 5267 for (op = i.operands; --op >= 0;)
40fb9820 5268 if (operand_type_check (i.types[op], disp))
252b5132 5269 {
b300c311 5270 if (i.op[op].disps->X_op == O_constant)
252b5132 5271 {
91d6fa6a 5272 offsetT op_disp = i.op[op].disps->X_add_number;
29b0f896 5273
40fb9820 5274 if (i.types[op].bitfield.disp16
91d6fa6a 5275 && (op_disp & ~(offsetT) 0xffff) == 0)
b300c311
L
5276 {
5277 /* If this operand is at most 16 bits, convert
5278 to a signed 16 bit number and don't use 64bit
5279 displacement. */
91d6fa6a 5280 op_disp = (((op_disp & 0xffff) ^ 0x8000) - 0x8000);
40fb9820 5281 i.types[op].bitfield.disp64 = 0;
b300c311 5282 }
a28def75
L
5283#ifdef BFD64
5284 /* Optimize 64-bit displacement to 32-bit for 64-bit BFD. */
40fb9820 5285 if (i.types[op].bitfield.disp32
91d6fa6a 5286 && (op_disp & ~(((offsetT) 2 << 31) - 1)) == 0)
b300c311
L
5287 {
5288 /* If this operand is at most 32 bits, convert
5289 to a signed 32 bit number and don't use 64bit
5290 displacement. */
91d6fa6a
NC
5291 op_disp &= (((offsetT) 2 << 31) - 1);
5292 op_disp = (op_disp ^ ((offsetT) 1 << 31)) - ((addressT) 1 << 31);
40fb9820 5293 i.types[op].bitfield.disp64 = 0;
b300c311 5294 }
a28def75 5295#endif
91d6fa6a 5296 if (!op_disp && i.types[op].bitfield.baseindex)
b300c311 5297 {
40fb9820
L
5298 i.types[op].bitfield.disp8 = 0;
5299 i.types[op].bitfield.disp16 = 0;
5300 i.types[op].bitfield.disp32 = 0;
5301 i.types[op].bitfield.disp32s = 0;
5302 i.types[op].bitfield.disp64 = 0;
b300c311
L
5303 i.op[op].disps = 0;
5304 i.disp_operands--;
5305 }
5306 else if (flag_code == CODE_64BIT)
5307 {
91d6fa6a 5308 if (fits_in_signed_long (op_disp))
28a9d8f5 5309 {
40fb9820
L
5310 i.types[op].bitfield.disp64 = 0;
5311 i.types[op].bitfield.disp32s = 1;
28a9d8f5 5312 }
0e1147d9 5313 if (i.prefix[ADDR_PREFIX]
91d6fa6a 5314 && fits_in_unsigned_long (op_disp))
40fb9820 5315 i.types[op].bitfield.disp32 = 1;
b300c311 5316 }
40fb9820
L
5317 if ((i.types[op].bitfield.disp32
5318 || i.types[op].bitfield.disp32s
5319 || i.types[op].bitfield.disp16)
b5014f7a 5320 && fits_in_disp8 (op_disp))
40fb9820 5321 i.types[op].bitfield.disp8 = 1;
252b5132 5322 }
67a4f2b7
AO
5323 else if (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
5324 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL)
5325 {
5326 fix_new_exp (frag_now, frag_more (0) - frag_now->fr_literal, 0,
5327 i.op[op].disps, 0, i.reloc[op]);
40fb9820
L
5328 i.types[op].bitfield.disp8 = 0;
5329 i.types[op].bitfield.disp16 = 0;
5330 i.types[op].bitfield.disp32 = 0;
5331 i.types[op].bitfield.disp32s = 0;
5332 i.types[op].bitfield.disp64 = 0;
67a4f2b7
AO
5333 }
5334 else
b300c311 5335 /* We only support 64bit displacement on constants. */
40fb9820 5336 i.types[op].bitfield.disp64 = 0;
252b5132 5337 }
29b0f896
AM
5338}
5339
4a1b91ea
L
5340/* Return 1 if there is a match in broadcast bytes between operand
5341 GIVEN and instruction template T. */
5342
5343static INLINE int
5344match_broadcast_size (const insn_template *t, unsigned int given)
5345{
5346 return ((t->opcode_modifier.broadcast == BYTE_BROADCAST
5347 && i.types[given].bitfield.byte)
5348 || (t->opcode_modifier.broadcast == WORD_BROADCAST
5349 && i.types[given].bitfield.word)
5350 || (t->opcode_modifier.broadcast == DWORD_BROADCAST
5351 && i.types[given].bitfield.dword)
5352 || (t->opcode_modifier.broadcast == QWORD_BROADCAST
5353 && i.types[given].bitfield.qword));
5354}
5355
6c30d220
L
5356/* Check if operands are valid for the instruction. */
5357
5358static int
5359check_VecOperands (const insn_template *t)
5360{
43234a1e 5361 unsigned int op;
e2195274 5362 i386_cpu_flags cpu;
e2195274
JB
5363
5364 /* Templates allowing for ZMMword as well as YMMword and/or XMMword for
5365 any one operand are implicity requiring AVX512VL support if the actual
5366 operand size is YMMword or XMMword. Since this function runs after
5367 template matching, there's no need to check for YMMword/XMMword in
5368 the template. */
5369 cpu = cpu_flags_and (t->cpu_flags, avx512);
5370 if (!cpu_flags_all_zero (&cpu)
5371 && !t->cpu_flags.bitfield.cpuavx512vl
5372 && !cpu_arch_flags.bitfield.cpuavx512vl)
5373 {
5374 for (op = 0; op < t->operands; ++op)
5375 {
5376 if (t->operand_types[op].bitfield.zmmword
5377 && (i.types[op].bitfield.ymmword
5378 || i.types[op].bitfield.xmmword))
5379 {
5380 i.error = unsupported;
5381 return 1;
5382 }
5383 }
5384 }
43234a1e 5385
6c30d220
L
5386 /* Without VSIB byte, we can't have a vector register for index. */
5387 if (!t->opcode_modifier.vecsib
5388 && i.index_reg
1b54b8d7
JB
5389 && (i.index_reg->reg_type.bitfield.xmmword
5390 || i.index_reg->reg_type.bitfield.ymmword
5391 || i.index_reg->reg_type.bitfield.zmmword))
6c30d220
L
5392 {
5393 i.error = unsupported_vector_index_register;
5394 return 1;
5395 }
5396
ad8ecc81
MZ
5397 /* Check if default mask is allowed. */
5398 if (t->opcode_modifier.nodefmask
5399 && (!i.mask || i.mask->mask->reg_num == 0))
5400 {
5401 i.error = no_default_mask;
5402 return 1;
5403 }
5404
7bab8ab5
JB
5405 /* For VSIB byte, we need a vector register for index, and all vector
5406 registers must be distinct. */
5407 if (t->opcode_modifier.vecsib)
5408 {
5409 if (!i.index_reg
6c30d220 5410 || !((t->opcode_modifier.vecsib == VecSIB128
1b54b8d7 5411 && i.index_reg->reg_type.bitfield.xmmword)
6c30d220 5412 || (t->opcode_modifier.vecsib == VecSIB256
1b54b8d7 5413 && i.index_reg->reg_type.bitfield.ymmword)
43234a1e 5414 || (t->opcode_modifier.vecsib == VecSIB512
1b54b8d7 5415 && i.index_reg->reg_type.bitfield.zmmword)))
7bab8ab5
JB
5416 {
5417 i.error = invalid_vsib_address;
5418 return 1;
5419 }
5420
43234a1e
L
5421 gas_assert (i.reg_operands == 2 || i.mask);
5422 if (i.reg_operands == 2 && !i.mask)
5423 {
3528c362 5424 gas_assert (i.types[0].bitfield.class == RegSIMD);
1b54b8d7
JB
5425 gas_assert (i.types[0].bitfield.xmmword
5426 || i.types[0].bitfield.ymmword);
3528c362 5427 gas_assert (i.types[2].bitfield.class == RegSIMD);
1b54b8d7
JB
5428 gas_assert (i.types[2].bitfield.xmmword
5429 || i.types[2].bitfield.ymmword);
43234a1e
L
5430 if (operand_check == check_none)
5431 return 0;
5432 if (register_number (i.op[0].regs)
5433 != register_number (i.index_reg)
5434 && register_number (i.op[2].regs)
5435 != register_number (i.index_reg)
5436 && register_number (i.op[0].regs)
5437 != register_number (i.op[2].regs))
5438 return 0;
5439 if (operand_check == check_error)
5440 {
5441 i.error = invalid_vector_register_set;
5442 return 1;
5443 }
5444 as_warn (_("mask, index, and destination registers should be distinct"));
5445 }
8444f82a
MZ
5446 else if (i.reg_operands == 1 && i.mask)
5447 {
3528c362 5448 if (i.types[1].bitfield.class == RegSIMD
1b54b8d7
JB
5449 && (i.types[1].bitfield.xmmword
5450 || i.types[1].bitfield.ymmword
5451 || i.types[1].bitfield.zmmword)
8444f82a
MZ
5452 && (register_number (i.op[1].regs)
5453 == register_number (i.index_reg)))
5454 {
5455 if (operand_check == check_error)
5456 {
5457 i.error = invalid_vector_register_set;
5458 return 1;
5459 }
5460 if (operand_check != check_none)
5461 as_warn (_("index and destination registers should be distinct"));
5462 }
5463 }
43234a1e 5464 }
7bab8ab5 5465
43234a1e
L
5466 /* Check if broadcast is supported by the instruction and is applied
5467 to the memory operand. */
5468 if (i.broadcast)
5469 {
8e6e0792 5470 i386_operand_type type, overlap;
43234a1e
L
5471
5472 /* Check if specified broadcast is supported in this instruction,
4a1b91ea 5473 and its broadcast bytes match the memory operand. */
32546502 5474 op = i.broadcast->operand;
8e6e0792 5475 if (!t->opcode_modifier.broadcast
c48dadc9 5476 || !(i.flags[op] & Operand_Mem)
c39e5b26 5477 || (!i.types[op].bitfield.unspecified
4a1b91ea 5478 && !match_broadcast_size (t, op)))
43234a1e
L
5479 {
5480 bad_broadcast:
5481 i.error = unsupported_broadcast;
5482 return 1;
5483 }
8e6e0792 5484
4a1b91ea
L
5485 i.broadcast->bytes = ((1 << (t->opcode_modifier.broadcast - 1))
5486 * i.broadcast->type);
8e6e0792 5487 operand_type_set (&type, 0);
4a1b91ea 5488 switch (i.broadcast->bytes)
8e6e0792 5489 {
4a1b91ea
L
5490 case 2:
5491 type.bitfield.word = 1;
5492 break;
5493 case 4:
5494 type.bitfield.dword = 1;
5495 break;
8e6e0792
JB
5496 case 8:
5497 type.bitfield.qword = 1;
5498 break;
5499 case 16:
5500 type.bitfield.xmmword = 1;
5501 break;
5502 case 32:
5503 type.bitfield.ymmword = 1;
5504 break;
5505 case 64:
5506 type.bitfield.zmmword = 1;
5507 break;
5508 default:
5509 goto bad_broadcast;
5510 }
5511
5512 overlap = operand_type_and (type, t->operand_types[op]);
5513 if (operand_type_all_zero (&overlap))
5514 goto bad_broadcast;
5515
5516 if (t->opcode_modifier.checkregsize)
5517 {
5518 unsigned int j;
5519
e2195274 5520 type.bitfield.baseindex = 1;
8e6e0792
JB
5521 for (j = 0; j < i.operands; ++j)
5522 {
5523 if (j != op
5524 && !operand_type_register_match(i.types[j],
5525 t->operand_types[j],
5526 type,
5527 t->operand_types[op]))
5528 goto bad_broadcast;
5529 }
5530 }
43234a1e
L
5531 }
5532 /* If broadcast is supported in this instruction, we need to check if
5533 operand of one-element size isn't specified without broadcast. */
5534 else if (t->opcode_modifier.broadcast && i.mem_operands)
5535 {
5536 /* Find memory operand. */
5537 for (op = 0; op < i.operands; op++)
8dc0818e 5538 if (i.flags[op] & Operand_Mem)
43234a1e
L
5539 break;
5540 gas_assert (op < i.operands);
5541 /* Check size of the memory operand. */
4a1b91ea 5542 if (match_broadcast_size (t, op))
43234a1e
L
5543 {
5544 i.error = broadcast_needed;
5545 return 1;
5546 }
5547 }
c39e5b26
JB
5548 else
5549 op = MAX_OPERANDS - 1; /* Avoid uninitialized variable warning. */
43234a1e
L
5550
5551 /* Check if requested masking is supported. */
ae2387fe 5552 if (i.mask)
43234a1e 5553 {
ae2387fe
JB
5554 switch (t->opcode_modifier.masking)
5555 {
5556 case BOTH_MASKING:
5557 break;
5558 case MERGING_MASKING:
5559 if (i.mask->zeroing)
5560 {
5561 case 0:
5562 i.error = unsupported_masking;
5563 return 1;
5564 }
5565 break;
5566 case DYNAMIC_MASKING:
5567 /* Memory destinations allow only merging masking. */
5568 if (i.mask->zeroing && i.mem_operands)
5569 {
5570 /* Find memory operand. */
5571 for (op = 0; op < i.operands; op++)
c48dadc9 5572 if (i.flags[op] & Operand_Mem)
ae2387fe
JB
5573 break;
5574 gas_assert (op < i.operands);
5575 if (op == i.operands - 1)
5576 {
5577 i.error = unsupported_masking;
5578 return 1;
5579 }
5580 }
5581 break;
5582 default:
5583 abort ();
5584 }
43234a1e
L
5585 }
5586
5587 /* Check if masking is applied to dest operand. */
5588 if (i.mask && (i.mask->operand != (int) (i.operands - 1)))
5589 {
5590 i.error = mask_not_on_destination;
5591 return 1;
5592 }
5593
43234a1e
L
5594 /* Check RC/SAE. */
5595 if (i.rounding)
5596 {
a80195f1
JB
5597 if (!t->opcode_modifier.sae
5598 || (i.rounding->type != saeonly && !t->opcode_modifier.staticrounding))
43234a1e
L
5599 {
5600 i.error = unsupported_rc_sae;
5601 return 1;
5602 }
5603 /* If the instruction has several immediate operands and one of
5604 them is rounding, the rounding operand should be the last
5605 immediate operand. */
5606 if (i.imm_operands > 1
5607 && i.rounding->operand != (int) (i.imm_operands - 1))
7bab8ab5 5608 {
43234a1e 5609 i.error = rc_sae_operand_not_last_imm;
7bab8ab5
JB
5610 return 1;
5611 }
6c30d220
L
5612 }
5613
43234a1e 5614 /* Check vector Disp8 operand. */
b5014f7a
JB
5615 if (t->opcode_modifier.disp8memshift
5616 && i.disp_encoding != disp_encoding_32bit)
43234a1e
L
5617 {
5618 if (i.broadcast)
4a1b91ea 5619 i.memshift = t->opcode_modifier.broadcast - 1;
7091c612 5620 else if (t->opcode_modifier.disp8memshift != DISP8_SHIFT_VL)
43234a1e 5621 i.memshift = t->opcode_modifier.disp8memshift;
7091c612
JB
5622 else
5623 {
5624 const i386_operand_type *type = NULL;
5625
5626 i.memshift = 0;
5627 for (op = 0; op < i.operands; op++)
8dc0818e 5628 if (i.flags[op] & Operand_Mem)
7091c612 5629 {
4174bfff
JB
5630 if (t->opcode_modifier.evex == EVEXLIG)
5631 i.memshift = 2 + (i.suffix == QWORD_MNEM_SUFFIX);
5632 else if (t->operand_types[op].bitfield.xmmword
5633 + t->operand_types[op].bitfield.ymmword
5634 + t->operand_types[op].bitfield.zmmword <= 1)
7091c612
JB
5635 type = &t->operand_types[op];
5636 else if (!i.types[op].bitfield.unspecified)
5637 type = &i.types[op];
5638 }
3528c362 5639 else if (i.types[op].bitfield.class == RegSIMD
4174bfff 5640 && t->opcode_modifier.evex != EVEXLIG)
7091c612
JB
5641 {
5642 if (i.types[op].bitfield.zmmword)
5643 i.memshift = 6;
5644 else if (i.types[op].bitfield.ymmword && i.memshift < 5)
5645 i.memshift = 5;
5646 else if (i.types[op].bitfield.xmmword && i.memshift < 4)
5647 i.memshift = 4;
5648 }
5649
5650 if (type)
5651 {
5652 if (type->bitfield.zmmword)
5653 i.memshift = 6;
5654 else if (type->bitfield.ymmword)
5655 i.memshift = 5;
5656 else if (type->bitfield.xmmword)
5657 i.memshift = 4;
5658 }
5659
5660 /* For the check in fits_in_disp8(). */
5661 if (i.memshift == 0)
5662 i.memshift = -1;
5663 }
43234a1e
L
5664
5665 for (op = 0; op < i.operands; op++)
5666 if (operand_type_check (i.types[op], disp)
5667 && i.op[op].disps->X_op == O_constant)
5668 {
b5014f7a 5669 if (fits_in_disp8 (i.op[op].disps->X_add_number))
43234a1e 5670 {
b5014f7a
JB
5671 i.types[op].bitfield.disp8 = 1;
5672 return 0;
43234a1e 5673 }
b5014f7a 5674 i.types[op].bitfield.disp8 = 0;
43234a1e
L
5675 }
5676 }
b5014f7a
JB
5677
5678 i.memshift = 0;
43234a1e 5679
6c30d220
L
5680 return 0;
5681}
5682
43f3e2ee 5683/* Check if operands are valid for the instruction. Update VEX
a683cc34
SP
5684 operand types. */
5685
5686static int
5687VEX_check_operands (const insn_template *t)
5688{
86fa6981 5689 if (i.vec_encoding == vex_encoding_evex)
43234a1e 5690 {
86fa6981 5691 /* This instruction must be encoded with EVEX prefix. */
e771e7c9 5692 if (!is_evex_encoding (t))
86fa6981
L
5693 {
5694 i.error = unsupported;
5695 return 1;
5696 }
5697 return 0;
43234a1e
L
5698 }
5699
a683cc34 5700 if (!t->opcode_modifier.vex)
86fa6981
L
5701 {
5702 /* This instruction template doesn't have VEX prefix. */
5703 if (i.vec_encoding != vex_encoding_default)
5704 {
5705 i.error = unsupported;
5706 return 1;
5707 }
5708 return 0;
5709 }
a683cc34 5710
9d3bf266
JB
5711 /* Check the special Imm4 cases; must be the first operand. */
5712 if (t->cpu_flags.bitfield.cpuxop && t->operands == 5)
a683cc34
SP
5713 {
5714 if (i.op[0].imms->X_op != O_constant
5715 || !fits_in_imm4 (i.op[0].imms->X_add_number))
891edac4 5716 {
a65babc9 5717 i.error = bad_imm4;
891edac4
L
5718 return 1;
5719 }
a683cc34 5720
9d3bf266
JB
5721 /* Turn off Imm<N> so that update_imm won't complain. */
5722 operand_type_set (&i.types[0], 0);
a683cc34
SP
5723 }
5724
5725 return 0;
5726}
5727
d3ce72d0 5728static const insn_template *
83b16ac6 5729match_template (char mnem_suffix)
29b0f896
AM
5730{
5731 /* Points to template once we've found it. */
d3ce72d0 5732 const insn_template *t;
40fb9820 5733 i386_operand_type overlap0, overlap1, overlap2, overlap3;
c0f3af97 5734 i386_operand_type overlap4;
29b0f896 5735 unsigned int found_reverse_match;
dc2be329 5736 i386_opcode_modifier suffix_check;
40fb9820 5737 i386_operand_type operand_types [MAX_OPERANDS];
539e75ad 5738 int addr_prefix_disp;
45a4bb20 5739 unsigned int j, size_match, check_register;
5614d22c 5740 enum i386_error specific_error = 0;
29b0f896 5741
c0f3af97
L
5742#if MAX_OPERANDS != 5
5743# error "MAX_OPERANDS must be 5."
f48ff2ae
L
5744#endif
5745
29b0f896 5746 found_reverse_match = 0;
539e75ad 5747 addr_prefix_disp = -1;
40fb9820 5748
dc2be329 5749 /* Prepare for mnemonic suffix check. */
40fb9820 5750 memset (&suffix_check, 0, sizeof (suffix_check));
dc2be329
L
5751 switch (mnem_suffix)
5752 {
5753 case BYTE_MNEM_SUFFIX:
5754 suffix_check.no_bsuf = 1;
5755 break;
5756 case WORD_MNEM_SUFFIX:
5757 suffix_check.no_wsuf = 1;
5758 break;
5759 case SHORT_MNEM_SUFFIX:
5760 suffix_check.no_ssuf = 1;
5761 break;
5762 case LONG_MNEM_SUFFIX:
5763 suffix_check.no_lsuf = 1;
5764 break;
5765 case QWORD_MNEM_SUFFIX:
5766 suffix_check.no_qsuf = 1;
5767 break;
5768 default:
5769 /* NB: In Intel syntax, normally we can check for memory operand
5770 size when there is no mnemonic suffix. But jmp and call have
5771 2 different encodings with Dword memory operand size, one with
5772 No_ldSuf and the other without. i.suffix is set to
5773 LONG_DOUBLE_MNEM_SUFFIX to skip the one with No_ldSuf. */
5774 if (i.suffix == LONG_DOUBLE_MNEM_SUFFIX)
5775 suffix_check.no_ldsuf = 1;
83b16ac6
JB
5776 }
5777
01559ecc
L
5778 /* Must have right number of operands. */
5779 i.error = number_of_operands_mismatch;
5780
45aa61fe 5781 for (t = current_templates->start; t < current_templates->end; t++)
29b0f896 5782 {
539e75ad 5783 addr_prefix_disp = -1;
dbbc8b7e 5784 found_reverse_match = 0;
539e75ad 5785
29b0f896
AM
5786 if (i.operands != t->operands)
5787 continue;
5788
50aecf8c 5789 /* Check processor support. */
a65babc9 5790 i.error = unsupported;
45a4bb20 5791 if (cpu_flags_match (t) != CPU_FLAGS_PERFECT_MATCH)
50aecf8c
L
5792 continue;
5793
e1d4d893 5794 /* Check AT&T mnemonic. */
a65babc9 5795 i.error = unsupported_with_intel_mnemonic;
e1d4d893 5796 if (intel_mnemonic && t->opcode_modifier.attmnemonic)
1efbbeb4
L
5797 continue;
5798
4b5aaf5f 5799 /* Check AT&T/Intel syntax. */
a65babc9 5800 i.error = unsupported_syntax;
5c07affc 5801 if ((intel_syntax && t->opcode_modifier.attsyntax)
4b5aaf5f 5802 || (!intel_syntax && t->opcode_modifier.intelsyntax))
1efbbeb4
L
5803 continue;
5804
4b5aaf5f
L
5805 /* Check Intel64/AMD64 ISA. */
5806 switch (isa64)
5807 {
5808 default:
5809 /* Default: Don't accept Intel64. */
5810 if (t->opcode_modifier.isa64 == INTEL64)
5811 continue;
5812 break;
5813 case amd64:
5814 /* -mamd64: Don't accept Intel64 and Intel64 only. */
5815 if (t->opcode_modifier.isa64 >= INTEL64)
5816 continue;
5817 break;
5818 case intel64:
5819 /* -mintel64: Don't accept AMD64. */
5990e377 5820 if (t->opcode_modifier.isa64 == AMD64 && flag_code == CODE_64BIT)
4b5aaf5f
L
5821 continue;
5822 break;
5823 }
5824
dc2be329 5825 /* Check the suffix. */
a65babc9 5826 i.error = invalid_instruction_suffix;
dc2be329
L
5827 if ((t->opcode_modifier.no_bsuf && suffix_check.no_bsuf)
5828 || (t->opcode_modifier.no_wsuf && suffix_check.no_wsuf)
5829 || (t->opcode_modifier.no_lsuf && suffix_check.no_lsuf)
5830 || (t->opcode_modifier.no_ssuf && suffix_check.no_ssuf)
5831 || (t->opcode_modifier.no_qsuf && suffix_check.no_qsuf)
5832 || (t->opcode_modifier.no_ldsuf && suffix_check.no_ldsuf))
83b16ac6 5833 continue;
29b0f896 5834
3ac21baa
JB
5835 size_match = operand_size_match (t);
5836 if (!size_match)
7d5e4556 5837 continue;
539e75ad 5838
6f2f06be
JB
5839 /* This is intentionally not
5840
0cfa3eb3 5841 if (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE))
6f2f06be
JB
5842
5843 as the case of a missing * on the operand is accepted (perhaps with
5844 a warning, issued further down). */
0cfa3eb3 5845 if (i.jumpabsolute && t->opcode_modifier.jump != JUMP_ABSOLUTE)
6f2f06be
JB
5846 {
5847 i.error = operand_type_mismatch;
5848 continue;
5849 }
5850
5c07affc
L
5851 for (j = 0; j < MAX_OPERANDS; j++)
5852 operand_types[j] = t->operand_types[j];
5853
45aa61fe
AM
5854 /* In general, don't allow 64-bit operands in 32-bit mode. */
5855 if (i.suffix == QWORD_MNEM_SUFFIX
5856 && flag_code != CODE_64BIT
5857 && (intel_syntax
40fb9820 5858 ? (!t->opcode_modifier.ignoresize
625cbd7a 5859 && !t->opcode_modifier.broadcast
45aa61fe
AM
5860 && !intel_float_operand (t->name))
5861 : intel_float_operand (t->name) != 2)
3528c362
JB
5862 && ((operand_types[0].bitfield.class != RegMMX
5863 && operand_types[0].bitfield.class != RegSIMD)
5864 || (operand_types[t->operands > 1].bitfield.class != RegMMX
5865 && operand_types[t->operands > 1].bitfield.class != RegSIMD))
45aa61fe
AM
5866 && (t->base_opcode != 0x0fc7
5867 || t->extension_opcode != 1 /* cmpxchg8b */))
5868 continue;
5869
192dc9c6
JB
5870 /* In general, don't allow 32-bit operands on pre-386. */
5871 else if (i.suffix == LONG_MNEM_SUFFIX
5872 && !cpu_arch_flags.bitfield.cpui386
5873 && (intel_syntax
5874 ? (!t->opcode_modifier.ignoresize
5875 && !intel_float_operand (t->name))
5876 : intel_float_operand (t->name) != 2)
3528c362
JB
5877 && ((operand_types[0].bitfield.class != RegMMX
5878 && operand_types[0].bitfield.class != RegSIMD)
5879 || (operand_types[t->operands > 1].bitfield.class != RegMMX
5880 && operand_types[t->operands > 1].bitfield.class
5881 != RegSIMD)))
192dc9c6
JB
5882 continue;
5883
29b0f896 5884 /* Do not verify operands when there are none. */
50aecf8c 5885 else
29b0f896 5886 {
c6fb90c8 5887 if (!t->operands)
2dbab7d5
L
5888 /* We've found a match; break out of loop. */
5889 break;
29b0f896 5890 }
252b5132 5891
48bcea9f
JB
5892 if (!t->opcode_modifier.jump
5893 || t->opcode_modifier.jump == JUMP_ABSOLUTE)
5894 {
5895 /* There should be only one Disp operand. */
5896 for (j = 0; j < MAX_OPERANDS; j++)
5897 if (operand_type_check (operand_types[j], disp))
539e75ad 5898 break;
48bcea9f
JB
5899 if (j < MAX_OPERANDS)
5900 {
5901 bfd_boolean override = (i.prefix[ADDR_PREFIX] != 0);
5902
5903 addr_prefix_disp = j;
5904
5905 /* Address size prefix will turn Disp64/Disp32S/Disp32/Disp16
5906 operand into Disp32/Disp32/Disp16/Disp32 operand. */
5907 switch (flag_code)
40fb9820 5908 {
48bcea9f
JB
5909 case CODE_16BIT:
5910 override = !override;
5911 /* Fall through. */
5912 case CODE_32BIT:
5913 if (operand_types[j].bitfield.disp32
5914 && operand_types[j].bitfield.disp16)
40fb9820 5915 {
48bcea9f
JB
5916 operand_types[j].bitfield.disp16 = override;
5917 operand_types[j].bitfield.disp32 = !override;
40fb9820 5918 }
48bcea9f
JB
5919 operand_types[j].bitfield.disp32s = 0;
5920 operand_types[j].bitfield.disp64 = 0;
5921 break;
5922
5923 case CODE_64BIT:
5924 if (operand_types[j].bitfield.disp32s
5925 || operand_types[j].bitfield.disp64)
40fb9820 5926 {
48bcea9f
JB
5927 operand_types[j].bitfield.disp64 &= !override;
5928 operand_types[j].bitfield.disp32s &= !override;
5929 operand_types[j].bitfield.disp32 = override;
40fb9820 5930 }
48bcea9f
JB
5931 operand_types[j].bitfield.disp16 = 0;
5932 break;
40fb9820 5933 }
539e75ad 5934 }
48bcea9f 5935 }
539e75ad 5936
02a86693
L
5937 /* Force 0x8b encoding for "mov foo@GOT, %eax". */
5938 if (i.reloc[0] == BFD_RELOC_386_GOT32 && t->base_opcode == 0xa0)
5939 continue;
5940
56ffb741 5941 /* We check register size if needed. */
e2195274
JB
5942 if (t->opcode_modifier.checkregsize)
5943 {
5944 check_register = (1 << t->operands) - 1;
5945 if (i.broadcast)
5946 check_register &= ~(1 << i.broadcast->operand);
5947 }
5948 else
5949 check_register = 0;
5950
c6fb90c8 5951 overlap0 = operand_type_and (i.types[0], operand_types[0]);
29b0f896
AM
5952 switch (t->operands)
5953 {
5954 case 1:
40fb9820 5955 if (!operand_type_match (overlap0, i.types[0]))
29b0f896
AM
5956 continue;
5957 break;
5958 case 2:
33eaf5de 5959 /* xchg %eax, %eax is a special case. It is an alias for nop
8b38ad71
L
5960 only in 32bit mode and we can use opcode 0x90. In 64bit
5961 mode, we can't use 0x90 for xchg %eax, %eax since it should
5962 zero-extend %eax to %rax. */
5963 if (flag_code == CODE_64BIT
5964 && t->base_opcode == 0x90
75e5731b
JB
5965 && i.types[0].bitfield.instance == Accum
5966 && i.types[0].bitfield.dword
5967 && i.types[1].bitfield.instance == Accum
5968 && i.types[1].bitfield.dword)
8b38ad71 5969 continue;
1212781b
JB
5970 /* xrelease mov %eax, <disp> is another special case. It must not
5971 match the accumulator-only encoding of mov. */
5972 if (flag_code != CODE_64BIT
5973 && i.hle_prefix
5974 && t->base_opcode == 0xa0
75e5731b 5975 && i.types[0].bitfield.instance == Accum
8dc0818e 5976 && (i.flags[1] & Operand_Mem))
1212781b 5977 continue;
f5eb1d70
JB
5978 /* Fall through. */
5979
5980 case 3:
3ac21baa
JB
5981 if (!(size_match & MATCH_STRAIGHT))
5982 goto check_reverse;
64c49ab3
JB
5983 /* Reverse direction of operands if swapping is possible in the first
5984 place (operands need to be symmetric) and
5985 - the load form is requested, and the template is a store form,
5986 - the store form is requested, and the template is a load form,
5987 - the non-default (swapped) form is requested. */
5988 overlap1 = operand_type_and (operand_types[0], operand_types[1]);
f5eb1d70 5989 if (t->opcode_modifier.d && i.reg_operands == i.operands
64c49ab3
JB
5990 && !operand_type_all_zero (&overlap1))
5991 switch (i.dir_encoding)
5992 {
5993 case dir_encoding_load:
5994 if (operand_type_check (operand_types[i.operands - 1], anymem)
dfd69174 5995 || t->opcode_modifier.regmem)
64c49ab3
JB
5996 goto check_reverse;
5997 break;
5998
5999 case dir_encoding_store:
6000 if (!operand_type_check (operand_types[i.operands - 1], anymem)
dfd69174 6001 && !t->opcode_modifier.regmem)
64c49ab3
JB
6002 goto check_reverse;
6003 break;
6004
6005 case dir_encoding_swap:
6006 goto check_reverse;
6007
6008 case dir_encoding_default:
6009 break;
6010 }
86fa6981 6011 /* If we want store form, we skip the current load. */
64c49ab3
JB
6012 if ((i.dir_encoding == dir_encoding_store
6013 || i.dir_encoding == dir_encoding_swap)
86fa6981
L
6014 && i.mem_operands == 0
6015 && t->opcode_modifier.load)
fa99fab2 6016 continue;
1a0670f3 6017 /* Fall through. */
f48ff2ae 6018 case 4:
c0f3af97 6019 case 5:
c6fb90c8 6020 overlap1 = operand_type_and (i.types[1], operand_types[1]);
40fb9820
L
6021 if (!operand_type_match (overlap0, i.types[0])
6022 || !operand_type_match (overlap1, i.types[1])
e2195274 6023 || ((check_register & 3) == 3
dc821c5f 6024 && !operand_type_register_match (i.types[0],
40fb9820 6025 operand_types[0],
dc821c5f 6026 i.types[1],
40fb9820 6027 operand_types[1])))
29b0f896
AM
6028 {
6029 /* Check if other direction is valid ... */
38e314eb 6030 if (!t->opcode_modifier.d)
29b0f896
AM
6031 continue;
6032
b6169b20 6033check_reverse:
3ac21baa
JB
6034 if (!(size_match & MATCH_REVERSE))
6035 continue;
29b0f896 6036 /* Try reversing direction of operands. */
f5eb1d70
JB
6037 overlap0 = operand_type_and (i.types[0], operand_types[i.operands - 1]);
6038 overlap1 = operand_type_and (i.types[i.operands - 1], operand_types[0]);
40fb9820 6039 if (!operand_type_match (overlap0, i.types[0])
f5eb1d70 6040 || !operand_type_match (overlap1, i.types[i.operands - 1])
45664ddb 6041 || (check_register
dc821c5f 6042 && !operand_type_register_match (i.types[0],
f5eb1d70
JB
6043 operand_types[i.operands - 1],
6044 i.types[i.operands - 1],
45664ddb 6045 operand_types[0])))
29b0f896
AM
6046 {
6047 /* Does not match either direction. */
6048 continue;
6049 }
38e314eb 6050 /* found_reverse_match holds which of D or FloatR
29b0f896 6051 we've found. */
38e314eb
JB
6052 if (!t->opcode_modifier.d)
6053 found_reverse_match = 0;
6054 else if (operand_types[0].bitfield.tbyte)
8a2ed489 6055 found_reverse_match = Opcode_FloatD;
dbbc8b7e 6056 else if (operand_types[0].bitfield.xmmword
f5eb1d70 6057 || operand_types[i.operands - 1].bitfield.xmmword
3528c362
JB
6058 || operand_types[0].bitfield.class == RegMMX
6059 || operand_types[i.operands - 1].bitfield.class == RegMMX
dbbc8b7e
JB
6060 || is_any_vex_encoding(t))
6061 found_reverse_match = (t->base_opcode & 0xee) != 0x6e
6062 ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD;
8a2ed489 6063 else
38e314eb 6064 found_reverse_match = Opcode_D;
40fb9820 6065 if (t->opcode_modifier.floatr)
8a2ed489 6066 found_reverse_match |= Opcode_FloatR;
29b0f896 6067 }
f48ff2ae 6068 else
29b0f896 6069 {
f48ff2ae 6070 /* Found a forward 2 operand match here. */
d1cbb4db
L
6071 switch (t->operands)
6072 {
c0f3af97
L
6073 case 5:
6074 overlap4 = operand_type_and (i.types[4],
6075 operand_types[4]);
1a0670f3 6076 /* Fall through. */
d1cbb4db 6077 case 4:
c6fb90c8
L
6078 overlap3 = operand_type_and (i.types[3],
6079 operand_types[3]);
1a0670f3 6080 /* Fall through. */
d1cbb4db 6081 case 3:
c6fb90c8
L
6082 overlap2 = operand_type_and (i.types[2],
6083 operand_types[2]);
d1cbb4db
L
6084 break;
6085 }
29b0f896 6086
f48ff2ae
L
6087 switch (t->operands)
6088 {
c0f3af97
L
6089 case 5:
6090 if (!operand_type_match (overlap4, i.types[4])
dc821c5f 6091 || !operand_type_register_match (i.types[3],
c0f3af97 6092 operand_types[3],
c0f3af97
L
6093 i.types[4],
6094 operand_types[4]))
6095 continue;
1a0670f3 6096 /* Fall through. */
f48ff2ae 6097 case 4:
40fb9820 6098 if (!operand_type_match (overlap3, i.types[3])
e2195274
JB
6099 || ((check_register & 0xa) == 0xa
6100 && !operand_type_register_match (i.types[1],
f7768225
JB
6101 operand_types[1],
6102 i.types[3],
e2195274
JB
6103 operand_types[3]))
6104 || ((check_register & 0xc) == 0xc
6105 && !operand_type_register_match (i.types[2],
6106 operand_types[2],
6107 i.types[3],
6108 operand_types[3])))
f48ff2ae 6109 continue;
1a0670f3 6110 /* Fall through. */
f48ff2ae
L
6111 case 3:
6112 /* Here we make use of the fact that there are no
23e42951 6113 reverse match 3 operand instructions. */
40fb9820 6114 if (!operand_type_match (overlap2, i.types[2])
e2195274
JB
6115 || ((check_register & 5) == 5
6116 && !operand_type_register_match (i.types[0],
23e42951
JB
6117 operand_types[0],
6118 i.types[2],
e2195274
JB
6119 operand_types[2]))
6120 || ((check_register & 6) == 6
6121 && !operand_type_register_match (i.types[1],
6122 operand_types[1],
6123 i.types[2],
6124 operand_types[2])))
f48ff2ae
L
6125 continue;
6126 break;
6127 }
29b0f896 6128 }
f48ff2ae 6129 /* Found either forward/reverse 2, 3 or 4 operand match here:
29b0f896
AM
6130 slip through to break. */
6131 }
c0f3af97 6132
5614d22c
JB
6133 /* Check if vector and VEX operands are valid. */
6134 if (check_VecOperands (t) || VEX_check_operands (t))
6135 {
6136 specific_error = i.error;
6137 continue;
6138 }
a683cc34 6139
29b0f896
AM
6140 /* We've found a match; break out of loop. */
6141 break;
6142 }
6143
6144 if (t == current_templates->end)
6145 {
6146 /* We found no match. */
a65babc9 6147 const char *err_msg;
5614d22c 6148 switch (specific_error ? specific_error : i.error)
a65babc9
L
6149 {
6150 default:
6151 abort ();
86e026a4 6152 case operand_size_mismatch:
a65babc9
L
6153 err_msg = _("operand size mismatch");
6154 break;
6155 case operand_type_mismatch:
6156 err_msg = _("operand type mismatch");
6157 break;
6158 case register_type_mismatch:
6159 err_msg = _("register type mismatch");
6160 break;
6161 case number_of_operands_mismatch:
6162 err_msg = _("number of operands mismatch");
6163 break;
6164 case invalid_instruction_suffix:
6165 err_msg = _("invalid instruction suffix");
6166 break;
6167 case bad_imm4:
4a2608e3 6168 err_msg = _("constant doesn't fit in 4 bits");
a65babc9 6169 break;
a65babc9
L
6170 case unsupported_with_intel_mnemonic:
6171 err_msg = _("unsupported with Intel mnemonic");
6172 break;
6173 case unsupported_syntax:
6174 err_msg = _("unsupported syntax");
6175 break;
6176 case unsupported:
35262a23 6177 as_bad (_("unsupported instruction `%s'"),
10efe3f6
L
6178 current_templates->start->name);
6179 return NULL;
6c30d220
L
6180 case invalid_vsib_address:
6181 err_msg = _("invalid VSIB address");
6182 break;
7bab8ab5
JB
6183 case invalid_vector_register_set:
6184 err_msg = _("mask, index, and destination registers must be distinct");
6185 break;
6c30d220
L
6186 case unsupported_vector_index_register:
6187 err_msg = _("unsupported vector index register");
6188 break;
43234a1e
L
6189 case unsupported_broadcast:
6190 err_msg = _("unsupported broadcast");
6191 break;
43234a1e
L
6192 case broadcast_needed:
6193 err_msg = _("broadcast is needed for operand of such type");
6194 break;
6195 case unsupported_masking:
6196 err_msg = _("unsupported masking");
6197 break;
6198 case mask_not_on_destination:
6199 err_msg = _("mask not on destination operand");
6200 break;
6201 case no_default_mask:
6202 err_msg = _("default mask isn't allowed");
6203 break;
6204 case unsupported_rc_sae:
6205 err_msg = _("unsupported static rounding/sae");
6206 break;
6207 case rc_sae_operand_not_last_imm:
6208 if (intel_syntax)
6209 err_msg = _("RC/SAE operand must precede immediate operands");
6210 else
6211 err_msg = _("RC/SAE operand must follow immediate operands");
6212 break;
6213 case invalid_register_operand:
6214 err_msg = _("invalid register operand");
6215 break;
a65babc9
L
6216 }
6217 as_bad (_("%s for `%s'"), err_msg,
891edac4 6218 current_templates->start->name);
fa99fab2 6219 return NULL;
29b0f896 6220 }
252b5132 6221
29b0f896
AM
6222 if (!quiet_warnings)
6223 {
6224 if (!intel_syntax
0cfa3eb3 6225 && (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE)))
6f2f06be 6226 as_warn (_("indirect %s without `*'"), t->name);
29b0f896 6227
40fb9820
L
6228 if (t->opcode_modifier.isprefix
6229 && t->opcode_modifier.ignoresize)
29b0f896
AM
6230 {
6231 /* Warn them that a data or address size prefix doesn't
6232 affect assembly of the next line of code. */
6233 as_warn (_("stand-alone `%s' prefix"), t->name);
6234 }
6235 }
6236
6237 /* Copy the template we found. */
6238 i.tm = *t;
539e75ad
L
6239
6240 if (addr_prefix_disp != -1)
6241 i.tm.operand_types[addr_prefix_disp]
6242 = operand_types[addr_prefix_disp];
6243
29b0f896
AM
6244 if (found_reverse_match)
6245 {
dfd69174
JB
6246 /* If we found a reverse match we must alter the opcode direction
6247 bit and clear/flip the regmem modifier one. found_reverse_match
6248 holds bits to change (different for int & float insns). */
29b0f896
AM
6249
6250 i.tm.base_opcode ^= found_reverse_match;
6251
f5eb1d70
JB
6252 i.tm.operand_types[0] = operand_types[i.operands - 1];
6253 i.tm.operand_types[i.operands - 1] = operand_types[0];
dfd69174
JB
6254
6255 /* Certain SIMD insns have their load forms specified in the opcode
6256 table, and hence we need to _set_ RegMem instead of clearing it.
6257 We need to avoid setting the bit though on insns like KMOVW. */
6258 i.tm.opcode_modifier.regmem
6259 = i.tm.opcode_modifier.modrm && i.tm.opcode_modifier.d
6260 && i.tm.operands > 2U - i.tm.opcode_modifier.sse2avx
6261 && !i.tm.opcode_modifier.regmem;
29b0f896
AM
6262 }
6263
fa99fab2 6264 return t;
29b0f896
AM
6265}
6266
6267static int
e3bb37b5 6268check_string (void)
29b0f896 6269{
51c8edf6
JB
6270 unsigned int es_op = i.tm.opcode_modifier.isstring - IS_STRING_ES_OP0;
6271 unsigned int op = i.tm.operand_types[0].bitfield.baseindex ? es_op : 0;
8dc0818e 6272
51c8edf6 6273 if (i.seg[op] != NULL && i.seg[op] != &es)
29b0f896 6274 {
51c8edf6
JB
6275 as_bad (_("`%s' operand %u must use `%ses' segment"),
6276 i.tm.name,
6277 intel_syntax ? i.tm.operands - es_op : es_op + 1,
6278 register_prefix);
6279 return 0;
29b0f896 6280 }
51c8edf6
JB
6281
6282 /* There's only ever one segment override allowed per instruction.
6283 This instruction possibly has a legal segment override on the
6284 second operand, so copy the segment to where non-string
6285 instructions store it, allowing common code. */
6286 i.seg[op] = i.seg[1];
6287
29b0f896
AM
6288 return 1;
6289}
6290
6291static int
543613e9 6292process_suffix (void)
29b0f896
AM
6293{
6294 /* If matched instruction specifies an explicit instruction mnemonic
6295 suffix, use it. */
673fe0f0 6296 if (i.tm.opcode_modifier.size == SIZE16)
40fb9820 6297 i.suffix = WORD_MNEM_SUFFIX;
673fe0f0 6298 else if (i.tm.opcode_modifier.size == SIZE32)
40fb9820 6299 i.suffix = LONG_MNEM_SUFFIX;
673fe0f0 6300 else if (i.tm.opcode_modifier.size == SIZE64)
40fb9820 6301 i.suffix = QWORD_MNEM_SUFFIX;
13e600d0 6302 else if (i.reg_operands
c8f8eebc
JB
6303 && (i.operands > 1 || i.types[0].bitfield.class == Reg)
6304 && !i.tm.opcode_modifier.addrprefixopreg)
29b0f896 6305 {
65fca059
JB
6306 unsigned int numop = i.operands;
6307
6308 /* movsx/movzx want only their source operand considered here, for the
6309 ambiguity checking below. The suffix will be replaced afterwards
6310 to represent the destination (register). */
6311 if (((i.tm.base_opcode | 8) == 0xfbe && i.tm.opcode_modifier.w)
6312 || (i.tm.base_opcode == 0x63 && i.tm.cpu_flags.bitfield.cpu64))
6313 --i.operands;
6314
29b0f896 6315 /* If there's no instruction mnemonic suffix we try to invent one
13e600d0 6316 based on GPR operands. */
29b0f896
AM
6317 if (!i.suffix)
6318 {
6319 /* We take i.suffix from the last register operand specified,
6320 Destination register type is more significant than source
381d071f
L
6321 register type. crc32 in SSE4.2 prefers source register
6322 type. */
1a035124 6323 unsigned int op = i.tm.base_opcode != 0xf20f38f0 ? i.operands : 1;
20592a94 6324
1a035124
JB
6325 while (op--)
6326 if (i.tm.operand_types[op].bitfield.instance == InstanceNone
6327 || i.tm.operand_types[op].bitfield.instance == Accum)
6328 {
6329 if (i.types[op].bitfield.class != Reg)
6330 continue;
6331 if (i.types[op].bitfield.byte)
6332 i.suffix = BYTE_MNEM_SUFFIX;
6333 else if (i.types[op].bitfield.word)
6334 i.suffix = WORD_MNEM_SUFFIX;
6335 else if (i.types[op].bitfield.dword)
6336 i.suffix = LONG_MNEM_SUFFIX;
6337 else if (i.types[op].bitfield.qword)
6338 i.suffix = QWORD_MNEM_SUFFIX;
6339 else
6340 continue;
6341 break;
6342 }
65fca059
JB
6343
6344 /* As an exception, movsx/movzx silently default to a byte source
6345 in AT&T mode. */
6346 if ((i.tm.base_opcode | 8) == 0xfbe && i.tm.opcode_modifier.w
6347 && !i.suffix && !intel_syntax)
6348 i.suffix = BYTE_MNEM_SUFFIX;
29b0f896
AM
6349 }
6350 else if (i.suffix == BYTE_MNEM_SUFFIX)
6351 {
2eb952a4
L
6352 if (intel_syntax
6353 && i.tm.opcode_modifier.ignoresize
6354 && i.tm.opcode_modifier.no_bsuf)
6355 i.suffix = 0;
6356 else if (!check_byte_reg ())
29b0f896
AM
6357 return 0;
6358 }
6359 else if (i.suffix == LONG_MNEM_SUFFIX)
6360 {
2eb952a4
L
6361 if (intel_syntax
6362 && i.tm.opcode_modifier.ignoresize
9f123b91
JB
6363 && i.tm.opcode_modifier.no_lsuf
6364 && !i.tm.opcode_modifier.todword
6365 && !i.tm.opcode_modifier.toqword)
2eb952a4
L
6366 i.suffix = 0;
6367 else if (!check_long_reg ())
29b0f896
AM
6368 return 0;
6369 }
6370 else if (i.suffix == QWORD_MNEM_SUFFIX)
6371 {
955e1e6a
L
6372 if (intel_syntax
6373 && i.tm.opcode_modifier.ignoresize
9f123b91
JB
6374 && i.tm.opcode_modifier.no_qsuf
6375 && !i.tm.opcode_modifier.todword
6376 && !i.tm.opcode_modifier.toqword)
955e1e6a
L
6377 i.suffix = 0;
6378 else if (!check_qword_reg ())
29b0f896
AM
6379 return 0;
6380 }
6381 else if (i.suffix == WORD_MNEM_SUFFIX)
6382 {
2eb952a4
L
6383 if (intel_syntax
6384 && i.tm.opcode_modifier.ignoresize
6385 && i.tm.opcode_modifier.no_wsuf)
6386 i.suffix = 0;
6387 else if (!check_word_reg ())
29b0f896
AM
6388 return 0;
6389 }
40fb9820 6390 else if (intel_syntax && i.tm.opcode_modifier.ignoresize)
29b0f896
AM
6391 /* Do nothing if the instruction is going to ignore the prefix. */
6392 ;
6393 else
6394 abort ();
65fca059
JB
6395
6396 /* Undo the movsx/movzx change done above. */
6397 i.operands = numop;
29b0f896 6398 }
62b3f548 6399 else if (i.tm.opcode_modifier.defaultsize && !i.suffix)
29b0f896 6400 {
13e600d0
JB
6401 i.suffix = stackop_size;
6402 if (stackop_size == LONG_MNEM_SUFFIX)
06f74c5c
L
6403 {
6404 /* stackop_size is set to LONG_MNEM_SUFFIX for the
6405 .code16gcc directive to support 16-bit mode with
6406 32-bit address. For IRET without a suffix, generate
6407 16-bit IRET (opcode 0xcf) to return from an interrupt
6408 handler. */
13e600d0
JB
6409 if (i.tm.base_opcode == 0xcf)
6410 {
6411 i.suffix = WORD_MNEM_SUFFIX;
6412 as_warn (_("generating 16-bit `iret' for .code16gcc directive"));
6413 }
6414 /* Warn about changed behavior for segment register push/pop. */
6415 else if ((i.tm.base_opcode | 1) == 0x07)
6416 as_warn (_("generating 32-bit `%s', unlike earlier gas versions"),
6417 i.tm.name);
06f74c5c 6418 }
29b0f896 6419 }
c006a730 6420 else if (!i.suffix
0cfa3eb3
JB
6421 && (i.tm.opcode_modifier.jump == JUMP_ABSOLUTE
6422 || i.tm.opcode_modifier.jump == JUMP_BYTE
6423 || i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT
64e74474
AM
6424 || (i.tm.base_opcode == 0x0f01 /* [ls][gi]dt */
6425 && i.tm.extension_opcode <= 3)))
9306ca4a
JB
6426 {
6427 switch (flag_code)
6428 {
6429 case CODE_64BIT:
40fb9820 6430 if (!i.tm.opcode_modifier.no_qsuf)
9306ca4a
JB
6431 {
6432 i.suffix = QWORD_MNEM_SUFFIX;
6433 break;
6434 }
1a0670f3 6435 /* Fall through. */
9306ca4a 6436 case CODE_32BIT:
40fb9820 6437 if (!i.tm.opcode_modifier.no_lsuf)
9306ca4a
JB
6438 i.suffix = LONG_MNEM_SUFFIX;
6439 break;
6440 case CODE_16BIT:
40fb9820 6441 if (!i.tm.opcode_modifier.no_wsuf)
9306ca4a
JB
6442 i.suffix = WORD_MNEM_SUFFIX;
6443 break;
6444 }
6445 }
252b5132 6446
c006a730 6447 if (!i.suffix
873494c8
JB
6448 && (!i.tm.opcode_modifier.defaultsize
6449 /* Also cover lret/retf/iret in 64-bit mode. */
6450 || (flag_code == CODE_64BIT
6451 && !i.tm.opcode_modifier.no_lsuf
6452 && !i.tm.opcode_modifier.no_qsuf))
62b3f548
JB
6453 && !i.tm.opcode_modifier.ignoresize
6454 /* Accept FLDENV et al without suffix. */
6455 && (i.tm.opcode_modifier.no_ssuf || i.tm.opcode_modifier.floatmf))
29b0f896 6456 {
6c0946d0 6457 unsigned int suffixes, evex = 0;
c006a730
JB
6458
6459 suffixes = !i.tm.opcode_modifier.no_bsuf;
6460 if (!i.tm.opcode_modifier.no_wsuf)
6461 suffixes |= 1 << 1;
6462 if (!i.tm.opcode_modifier.no_lsuf)
6463 suffixes |= 1 << 2;
6464 if (!i.tm.opcode_modifier.no_ldsuf)
6465 suffixes |= 1 << 3;
6466 if (!i.tm.opcode_modifier.no_ssuf)
6467 suffixes |= 1 << 4;
6468 if (flag_code == CODE_64BIT && !i.tm.opcode_modifier.no_qsuf)
6469 suffixes |= 1 << 5;
6470
6c0946d0
JB
6471 /* For [XYZ]MMWORD operands inspect operand sizes. While generally
6472 also suitable for AT&T syntax mode, it was requested that this be
6473 restricted to just Intel syntax. */
b9915cbc 6474 if (intel_syntax && is_any_vex_encoding (&i.tm) && !i.broadcast)
6c0946d0 6475 {
b9915cbc 6476 unsigned int op;
6c0946d0 6477
b9915cbc 6478 for (op = 0; op < i.tm.operands; ++op)
6c0946d0 6479 {
b9915cbc
JB
6480 if (is_evex_encoding (&i.tm)
6481 && !cpu_arch_flags.bitfield.cpuavx512vl)
6c0946d0 6482 {
b9915cbc
JB
6483 if (i.tm.operand_types[op].bitfield.ymmword)
6484 i.tm.operand_types[op].bitfield.xmmword = 0;
6485 if (i.tm.operand_types[op].bitfield.zmmword)
6486 i.tm.operand_types[op].bitfield.ymmword = 0;
6487 if (!i.tm.opcode_modifier.evex
6488 || i.tm.opcode_modifier.evex == EVEXDYN)
6489 i.tm.opcode_modifier.evex = EVEX512;
6490 }
6c0946d0 6491
b9915cbc
JB
6492 if (i.tm.operand_types[op].bitfield.xmmword
6493 + i.tm.operand_types[op].bitfield.ymmword
6494 + i.tm.operand_types[op].bitfield.zmmword < 2)
6495 continue;
6c0946d0 6496
b9915cbc
JB
6497 /* Any properly sized operand disambiguates the insn. */
6498 if (i.types[op].bitfield.xmmword
6499 || i.types[op].bitfield.ymmword
6500 || i.types[op].bitfield.zmmword)
6501 {
6502 suffixes &= ~(7 << 6);
6503 evex = 0;
6504 break;
6505 }
6c0946d0 6506
b9915cbc
JB
6507 if ((i.flags[op] & Operand_Mem)
6508 && i.tm.operand_types[op].bitfield.unspecified)
6509 {
6510 if (i.tm.operand_types[op].bitfield.xmmword)
6511 suffixes |= 1 << 6;
6512 if (i.tm.operand_types[op].bitfield.ymmword)
6513 suffixes |= 1 << 7;
6514 if (i.tm.operand_types[op].bitfield.zmmword)
6515 suffixes |= 1 << 8;
6516 if (is_evex_encoding (&i.tm))
6517 evex = EVEX512;
6c0946d0
JB
6518 }
6519 }
6520 }
6521
6522 /* Are multiple suffixes / operand sizes allowed? */
c006a730 6523 if (suffixes & (suffixes - 1))
9306ca4a 6524 {
873494c8
JB
6525 if (intel_syntax
6526 && (!i.tm.opcode_modifier.defaultsize
6527 || operand_check == check_error))
9306ca4a 6528 {
c006a730 6529 as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
9306ca4a
JB
6530 return 0;
6531 }
c006a730 6532 if (operand_check == check_error)
9306ca4a 6533 {
c006a730
JB
6534 as_bad (_("no instruction mnemonic suffix given and "
6535 "no register operands; can't size `%s'"), i.tm.name);
9306ca4a
JB
6536 return 0;
6537 }
c006a730 6538 if (operand_check == check_warning)
873494c8
JB
6539 as_warn (_("%s; using default for `%s'"),
6540 intel_syntax
6541 ? _("ambiguous operand size")
6542 : _("no instruction mnemonic suffix given and "
6543 "no register operands"),
6544 i.tm.name);
c006a730
JB
6545
6546 if (i.tm.opcode_modifier.floatmf)
6547 i.suffix = SHORT_MNEM_SUFFIX;
65fca059
JB
6548 else if ((i.tm.base_opcode | 8) == 0xfbe
6549 || (i.tm.base_opcode == 0x63
6550 && i.tm.cpu_flags.bitfield.cpu64))
6551 /* handled below */;
6c0946d0
JB
6552 else if (evex)
6553 i.tm.opcode_modifier.evex = evex;
c006a730
JB
6554 else if (flag_code == CODE_16BIT)
6555 i.suffix = WORD_MNEM_SUFFIX;
1a035124 6556 else if (!i.tm.opcode_modifier.no_lsuf)
c006a730 6557 i.suffix = LONG_MNEM_SUFFIX;
1a035124
JB
6558 else
6559 i.suffix = QWORD_MNEM_SUFFIX;
9306ca4a 6560 }
29b0f896 6561 }
252b5132 6562
65fca059
JB
6563 if ((i.tm.base_opcode | 8) == 0xfbe
6564 || (i.tm.base_opcode == 0x63 && i.tm.cpu_flags.bitfield.cpu64))
6565 {
6566 /* In Intel syntax, movsx/movzx must have a "suffix" (checked above).
6567 In AT&T syntax, if there is no suffix (warned about above), the default
6568 will be byte extension. */
6569 if (i.tm.opcode_modifier.w && i.suffix && i.suffix != BYTE_MNEM_SUFFIX)
6570 i.tm.base_opcode |= 1;
6571
6572 /* For further processing, the suffix should represent the destination
6573 (register). This is already the case when one was used with
6574 mov[sz][bw]*, but we need to replace it for mov[sz]x, or if there was
6575 no suffix to begin with. */
6576 if (i.tm.opcode_modifier.w || i.tm.base_opcode == 0x63 || !i.suffix)
6577 {
6578 if (i.types[1].bitfield.word)
6579 i.suffix = WORD_MNEM_SUFFIX;
6580 else if (i.types[1].bitfield.qword)
6581 i.suffix = QWORD_MNEM_SUFFIX;
6582 else
6583 i.suffix = LONG_MNEM_SUFFIX;
6584
6585 i.tm.opcode_modifier.w = 0;
6586 }
6587 }
6588
50128d0c
JB
6589 if (!i.tm.opcode_modifier.modrm && i.reg_operands && i.tm.operands < 3)
6590 i.short_form = (i.tm.operand_types[0].bitfield.class == Reg)
6591 != (i.tm.operand_types[1].bitfield.class == Reg);
6592
d2224064
JB
6593 /* Change the opcode based on the operand size given by i.suffix. */
6594 switch (i.suffix)
29b0f896 6595 {
d2224064
JB
6596 /* Size floating point instruction. */
6597 case LONG_MNEM_SUFFIX:
6598 if (i.tm.opcode_modifier.floatmf)
6599 {
6600 i.tm.base_opcode ^= 4;
6601 break;
6602 }
6603 /* fall through */
6604 case WORD_MNEM_SUFFIX:
6605 case QWORD_MNEM_SUFFIX:
29b0f896 6606 /* It's not a byte, select word/dword operation. */
40fb9820 6607 if (i.tm.opcode_modifier.w)
29b0f896 6608 {
50128d0c 6609 if (i.short_form)
29b0f896
AM
6610 i.tm.base_opcode |= 8;
6611 else
6612 i.tm.base_opcode |= 1;
6613 }
d2224064
JB
6614 /* fall through */
6615 case SHORT_MNEM_SUFFIX:
29b0f896
AM
6616 /* Now select between word & dword operations via the operand
6617 size prefix, except for instructions that will ignore this
6618 prefix anyway. */
c8f8eebc
JB
6619 if (i.suffix != QWORD_MNEM_SUFFIX
6620 && !i.tm.opcode_modifier.ignoresize
6621 && !i.tm.opcode_modifier.floatmf
6622 && !is_any_vex_encoding (&i.tm)
6623 && ((i.suffix == LONG_MNEM_SUFFIX) == (flag_code == CODE_16BIT)
6624 || (flag_code == CODE_64BIT
6625 && i.tm.opcode_modifier.jump == JUMP_BYTE)))
24eab124
AM
6626 {
6627 unsigned int prefix = DATA_PREFIX_OPCODE;
543613e9 6628
0cfa3eb3 6629 if (i.tm.opcode_modifier.jump == JUMP_BYTE) /* jcxz, loop */
29b0f896 6630 prefix = ADDR_PREFIX_OPCODE;
252b5132 6631
29b0f896
AM
6632 if (!add_prefix (prefix))
6633 return 0;
24eab124 6634 }
252b5132 6635
29b0f896
AM
6636 /* Set mode64 for an operand. */
6637 if (i.suffix == QWORD_MNEM_SUFFIX
9146926a 6638 && flag_code == CODE_64BIT
d2224064 6639 && !i.tm.opcode_modifier.norex64
46e883c5 6640 /* Special case for xchg %rax,%rax. It is NOP and doesn't
d2224064
JB
6641 need rex64. */
6642 && ! (i.operands == 2
6643 && i.tm.base_opcode == 0x90
6644 && i.tm.extension_opcode == None
75e5731b
JB
6645 && i.types[0].bitfield.instance == Accum
6646 && i.types[0].bitfield.qword
6647 && i.types[1].bitfield.instance == Accum
6648 && i.types[1].bitfield.qword))
d2224064 6649 i.rex |= REX_W;
3e73aa7c 6650
d2224064 6651 break;
29b0f896 6652 }
7ecd2f8b 6653
c8f8eebc 6654 if (i.tm.opcode_modifier.addrprefixopreg)
c0a30a9f 6655 {
c8f8eebc
JB
6656 gas_assert (!i.suffix);
6657 gas_assert (i.reg_operands);
c0a30a9f 6658
c8f8eebc
JB
6659 if (i.tm.operand_types[0].bitfield.instance == Accum
6660 || i.operands == 1)
6661 {
6662 /* The address size override prefix changes the size of the
6663 first operand. */
6664 if (flag_code == CODE_64BIT
6665 && i.op[0].regs->reg_type.bitfield.word)
6666 {
6667 as_bad (_("16-bit addressing unavailable for `%s'"),
6668 i.tm.name);
6669 return 0;
6670 }
6671
6672 if ((flag_code == CODE_32BIT
6673 ? i.op[0].regs->reg_type.bitfield.word
6674 : i.op[0].regs->reg_type.bitfield.dword)
6675 && !add_prefix (ADDR_PREFIX_OPCODE))
6676 return 0;
6677 }
c0a30a9f
L
6678 else
6679 {
c8f8eebc
JB
6680 /* Check invalid register operand when the address size override
6681 prefix changes the size of register operands. */
6682 unsigned int op;
6683 enum { need_word, need_dword, need_qword } need;
6684
6685 if (flag_code == CODE_32BIT)
6686 need = i.prefix[ADDR_PREFIX] ? need_word : need_dword;
6687 else if (i.prefix[ADDR_PREFIX])
c0a30a9f
L
6688 need = need_dword;
6689 else
6690 need = flag_code == CODE_64BIT ? need_qword : need_word;
c0a30a9f 6691
c8f8eebc
JB
6692 for (op = 0; op < i.operands; op++)
6693 {
6694 if (i.types[op].bitfield.class != Reg)
6695 continue;
6696
6697 switch (need)
6698 {
6699 case need_word:
6700 if (i.op[op].regs->reg_type.bitfield.word)
6701 continue;
6702 break;
6703 case need_dword:
6704 if (i.op[op].regs->reg_type.bitfield.dword)
6705 continue;
6706 break;
6707 case need_qword:
6708 if (i.op[op].regs->reg_type.bitfield.qword)
6709 continue;
6710 break;
6711 }
6712
6713 as_bad (_("invalid register operand size for `%s'"),
6714 i.tm.name);
6715 return 0;
6716 }
6717 }
c0a30a9f
L
6718 }
6719
29b0f896
AM
6720 return 1;
6721}
3e73aa7c 6722
29b0f896 6723static int
543613e9 6724check_byte_reg (void)
29b0f896
AM
6725{
6726 int op;
543613e9 6727
29b0f896
AM
6728 for (op = i.operands; --op >= 0;)
6729 {
dc821c5f 6730 /* Skip non-register operands. */
bab6aec1 6731 if (i.types[op].bitfield.class != Reg)
dc821c5f
JB
6732 continue;
6733
29b0f896
AM
6734 /* If this is an eight bit register, it's OK. If it's the 16 or
6735 32 bit version of an eight bit register, we will just use the
6736 low portion, and that's OK too. */
dc821c5f 6737 if (i.types[op].bitfield.byte)
29b0f896
AM
6738 continue;
6739
5a819eb9 6740 /* I/O port address operands are OK too. */
75e5731b
JB
6741 if (i.tm.operand_types[op].bitfield.instance == RegD
6742 && i.tm.operand_types[op].bitfield.word)
5a819eb9
JB
6743 continue;
6744
9706160a
JB
6745 /* crc32 only wants its source operand checked here. */
6746 if (i.tm.base_opcode == 0xf20f38f0 && op)
9344ff29
L
6747 continue;
6748
29b0f896 6749 /* Any other register is bad. */
bab6aec1 6750 if (i.types[op].bitfield.class == Reg
3528c362
JB
6751 || i.types[op].bitfield.class == RegMMX
6752 || i.types[op].bitfield.class == RegSIMD
00cee14f 6753 || i.types[op].bitfield.class == SReg
4a5c67ed
JB
6754 || i.types[op].bitfield.class == RegCR
6755 || i.types[op].bitfield.class == RegDR
6756 || i.types[op].bitfield.class == RegTR)
29b0f896 6757 {
a540244d
L
6758 as_bad (_("`%s%s' not allowed with `%s%c'"),
6759 register_prefix,
29b0f896
AM
6760 i.op[op].regs->reg_name,
6761 i.tm.name,
6762 i.suffix);
6763 return 0;
6764 }
6765 }
6766 return 1;
6767}
6768
6769static int
e3bb37b5 6770check_long_reg (void)
29b0f896
AM
6771{
6772 int op;
6773
6774 for (op = i.operands; --op >= 0;)
dc821c5f 6775 /* Skip non-register operands. */
bab6aec1 6776 if (i.types[op].bitfield.class != Reg)
dc821c5f 6777 continue;
29b0f896
AM
6778 /* Reject eight bit registers, except where the template requires
6779 them. (eg. movzb) */
dc821c5f 6780 else if (i.types[op].bitfield.byte
bab6aec1 6781 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6782 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
6783 && (i.tm.operand_types[op].bitfield.word
6784 || i.tm.operand_types[op].bitfield.dword))
29b0f896 6785 {
a540244d
L
6786 as_bad (_("`%s%s' not allowed with `%s%c'"),
6787 register_prefix,
29b0f896
AM
6788 i.op[op].regs->reg_name,
6789 i.tm.name,
6790 i.suffix);
6791 return 0;
6792 }
be4c5e58
L
6793 /* Error if the e prefix on a general reg is missing. */
6794 else if (i.types[op].bitfield.word
bab6aec1 6795 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6796 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 6797 && i.tm.operand_types[op].bitfield.dword)
29b0f896 6798 {
be4c5e58
L
6799 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
6800 register_prefix, i.op[op].regs->reg_name,
6801 i.suffix);
6802 return 0;
252b5132 6803 }
e4630f71 6804 /* Warn if the r prefix on a general reg is present. */
dc821c5f 6805 else if (i.types[op].bitfield.qword
bab6aec1 6806 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6807 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 6808 && i.tm.operand_types[op].bitfield.dword)
252b5132 6809 {
34828aad 6810 if (intel_syntax
65fca059 6811 && i.tm.opcode_modifier.toqword
3528c362 6812 && i.types[0].bitfield.class != RegSIMD)
34828aad 6813 {
ca61edf2 6814 /* Convert to QWORD. We want REX byte. */
34828aad
L
6815 i.suffix = QWORD_MNEM_SUFFIX;
6816 }
6817 else
6818 {
2b5d6a91 6819 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
6820 register_prefix, i.op[op].regs->reg_name,
6821 i.suffix);
6822 return 0;
6823 }
29b0f896
AM
6824 }
6825 return 1;
6826}
252b5132 6827
29b0f896 6828static int
e3bb37b5 6829check_qword_reg (void)
29b0f896
AM
6830{
6831 int op;
252b5132 6832
29b0f896 6833 for (op = i.operands; --op >= 0; )
dc821c5f 6834 /* Skip non-register operands. */
bab6aec1 6835 if (i.types[op].bitfield.class != Reg)
dc821c5f 6836 continue;
29b0f896
AM
6837 /* Reject eight bit registers, except where the template requires
6838 them. (eg. movzb) */
dc821c5f 6839 else if (i.types[op].bitfield.byte
bab6aec1 6840 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6841 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
6842 && (i.tm.operand_types[op].bitfield.word
6843 || i.tm.operand_types[op].bitfield.dword))
29b0f896 6844 {
a540244d
L
6845 as_bad (_("`%s%s' not allowed with `%s%c'"),
6846 register_prefix,
29b0f896
AM
6847 i.op[op].regs->reg_name,
6848 i.tm.name,
6849 i.suffix);
6850 return 0;
6851 }
e4630f71 6852 /* Warn if the r prefix on a general reg is missing. */
dc821c5f
JB
6853 else if ((i.types[op].bitfield.word
6854 || i.types[op].bitfield.dword)
bab6aec1 6855 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6856 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 6857 && i.tm.operand_types[op].bitfield.qword)
29b0f896
AM
6858 {
6859 /* Prohibit these changes in the 64bit mode, since the
6860 lowering is more complicated. */
34828aad 6861 if (intel_syntax
ca61edf2 6862 && i.tm.opcode_modifier.todword
3528c362 6863 && i.types[0].bitfield.class != RegSIMD)
34828aad 6864 {
ca61edf2 6865 /* Convert to DWORD. We don't want REX byte. */
34828aad
L
6866 i.suffix = LONG_MNEM_SUFFIX;
6867 }
6868 else
6869 {
2b5d6a91 6870 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
6871 register_prefix, i.op[op].regs->reg_name,
6872 i.suffix);
6873 return 0;
6874 }
252b5132 6875 }
29b0f896
AM
6876 return 1;
6877}
252b5132 6878
29b0f896 6879static int
e3bb37b5 6880check_word_reg (void)
29b0f896
AM
6881{
6882 int op;
6883 for (op = i.operands; --op >= 0;)
dc821c5f 6884 /* Skip non-register operands. */
bab6aec1 6885 if (i.types[op].bitfield.class != Reg)
dc821c5f 6886 continue;
29b0f896
AM
6887 /* Reject eight bit registers, except where the template requires
6888 them. (eg. movzb) */
dc821c5f 6889 else if (i.types[op].bitfield.byte
bab6aec1 6890 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6891 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
6892 && (i.tm.operand_types[op].bitfield.word
6893 || i.tm.operand_types[op].bitfield.dword))
29b0f896 6894 {
a540244d
L
6895 as_bad (_("`%s%s' not allowed with `%s%c'"),
6896 register_prefix,
29b0f896
AM
6897 i.op[op].regs->reg_name,
6898 i.tm.name,
6899 i.suffix);
6900 return 0;
6901 }
9706160a
JB
6902 /* Error if the e or r prefix on a general reg is present. */
6903 else if ((i.types[op].bitfield.dword
dc821c5f 6904 || i.types[op].bitfield.qword)
bab6aec1 6905 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6906 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 6907 && i.tm.operand_types[op].bitfield.word)
252b5132 6908 {
9706160a
JB
6909 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
6910 register_prefix, i.op[op].regs->reg_name,
6911 i.suffix);
6912 return 0;
29b0f896
AM
6913 }
6914 return 1;
6915}
252b5132 6916
29b0f896 6917static int
40fb9820 6918update_imm (unsigned int j)
29b0f896 6919{
bc0844ae 6920 i386_operand_type overlap = i.types[j];
40fb9820
L
6921 if ((overlap.bitfield.imm8
6922 || overlap.bitfield.imm8s
6923 || overlap.bitfield.imm16
6924 || overlap.bitfield.imm32
6925 || overlap.bitfield.imm32s
6926 || overlap.bitfield.imm64)
0dfbf9d7
L
6927 && !operand_type_equal (&overlap, &imm8)
6928 && !operand_type_equal (&overlap, &imm8s)
6929 && !operand_type_equal (&overlap, &imm16)
6930 && !operand_type_equal (&overlap, &imm32)
6931 && !operand_type_equal (&overlap, &imm32s)
6932 && !operand_type_equal (&overlap, &imm64))
29b0f896
AM
6933 {
6934 if (i.suffix)
6935 {
40fb9820
L
6936 i386_operand_type temp;
6937
0dfbf9d7 6938 operand_type_set (&temp, 0);
7ab9ffdd 6939 if (i.suffix == BYTE_MNEM_SUFFIX)
40fb9820
L
6940 {
6941 temp.bitfield.imm8 = overlap.bitfield.imm8;
6942 temp.bitfield.imm8s = overlap.bitfield.imm8s;
6943 }
6944 else if (i.suffix == WORD_MNEM_SUFFIX)
6945 temp.bitfield.imm16 = overlap.bitfield.imm16;
6946 else if (i.suffix == QWORD_MNEM_SUFFIX)
6947 {
6948 temp.bitfield.imm64 = overlap.bitfield.imm64;
6949 temp.bitfield.imm32s = overlap.bitfield.imm32s;
6950 }
6951 else
6952 temp.bitfield.imm32 = overlap.bitfield.imm32;
6953 overlap = temp;
29b0f896 6954 }
0dfbf9d7
L
6955 else if (operand_type_equal (&overlap, &imm16_32_32s)
6956 || operand_type_equal (&overlap, &imm16_32)
6957 || operand_type_equal (&overlap, &imm16_32s))
29b0f896 6958 {
40fb9820 6959 if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
65da13b5 6960 overlap = imm16;
40fb9820 6961 else
65da13b5 6962 overlap = imm32s;
29b0f896 6963 }
0dfbf9d7
L
6964 if (!operand_type_equal (&overlap, &imm8)
6965 && !operand_type_equal (&overlap, &imm8s)
6966 && !operand_type_equal (&overlap, &imm16)
6967 && !operand_type_equal (&overlap, &imm32)
6968 && !operand_type_equal (&overlap, &imm32s)
6969 && !operand_type_equal (&overlap, &imm64))
29b0f896 6970 {
4eed87de
AM
6971 as_bad (_("no instruction mnemonic suffix given; "
6972 "can't determine immediate size"));
29b0f896
AM
6973 return 0;
6974 }
6975 }
40fb9820 6976 i.types[j] = overlap;
29b0f896 6977
40fb9820
L
6978 return 1;
6979}
6980
6981static int
6982finalize_imm (void)
6983{
bc0844ae 6984 unsigned int j, n;
29b0f896 6985
bc0844ae
L
6986 /* Update the first 2 immediate operands. */
6987 n = i.operands > 2 ? 2 : i.operands;
6988 if (n)
6989 {
6990 for (j = 0; j < n; j++)
6991 if (update_imm (j) == 0)
6992 return 0;
40fb9820 6993
bc0844ae
L
6994 /* The 3rd operand can't be immediate operand. */
6995 gas_assert (operand_type_check (i.types[2], imm) == 0);
6996 }
29b0f896
AM
6997
6998 return 1;
6999}
7000
7001static int
e3bb37b5 7002process_operands (void)
29b0f896
AM
7003{
7004 /* Default segment register this instruction will use for memory
7005 accesses. 0 means unknown. This is only for optimizing out
7006 unnecessary segment overrides. */
7007 const seg_entry *default_seg = 0;
7008
2426c15f 7009 if (i.tm.opcode_modifier.sse2avx && i.tm.opcode_modifier.vexvvvv)
29b0f896 7010 {
91d6fa6a
NC
7011 unsigned int dupl = i.operands;
7012 unsigned int dest = dupl - 1;
9fcfb3d7
L
7013 unsigned int j;
7014
c0f3af97 7015 /* The destination must be an xmm register. */
9c2799c2 7016 gas_assert (i.reg_operands
91d6fa6a 7017 && MAX_OPERANDS > dupl
7ab9ffdd 7018 && operand_type_equal (&i.types[dest], &regxmm));
c0f3af97 7019
75e5731b 7020 if (i.tm.operand_types[0].bitfield.instance == Accum
1b54b8d7 7021 && i.tm.operand_types[0].bitfield.xmmword)
e2ec9d29 7022 {
8cd7925b 7023 if (i.tm.opcode_modifier.vexsources == VEX3SOURCES)
c0f3af97
L
7024 {
7025 /* Keep xmm0 for instructions with VEX prefix and 3
7026 sources. */
75e5731b 7027 i.tm.operand_types[0].bitfield.instance = InstanceNone;
3528c362 7028 i.tm.operand_types[0].bitfield.class = RegSIMD;
c0f3af97
L
7029 goto duplicate;
7030 }
e2ec9d29 7031 else
c0f3af97
L
7032 {
7033 /* We remove the first xmm0 and keep the number of
7034 operands unchanged, which in fact duplicates the
7035 destination. */
7036 for (j = 1; j < i.operands; j++)
7037 {
7038 i.op[j - 1] = i.op[j];
7039 i.types[j - 1] = i.types[j];
7040 i.tm.operand_types[j - 1] = i.tm.operand_types[j];
8dc0818e 7041 i.flags[j - 1] = i.flags[j];
c0f3af97
L
7042 }
7043 }
7044 }
7045 else if (i.tm.opcode_modifier.implicit1stxmm0)
7ab9ffdd 7046 {
91d6fa6a 7047 gas_assert ((MAX_OPERANDS - 1) > dupl
8cd7925b
L
7048 && (i.tm.opcode_modifier.vexsources
7049 == VEX3SOURCES));
c0f3af97
L
7050
7051 /* Add the implicit xmm0 for instructions with VEX prefix
7052 and 3 sources. */
7053 for (j = i.operands; j > 0; j--)
7054 {
7055 i.op[j] = i.op[j - 1];
7056 i.types[j] = i.types[j - 1];
7057 i.tm.operand_types[j] = i.tm.operand_types[j - 1];
8dc0818e 7058 i.flags[j] = i.flags[j - 1];
c0f3af97
L
7059 }
7060 i.op[0].regs
7061 = (const reg_entry *) hash_find (reg_hash, "xmm0");
7ab9ffdd 7062 i.types[0] = regxmm;
c0f3af97
L
7063 i.tm.operand_types[0] = regxmm;
7064
7065 i.operands += 2;
7066 i.reg_operands += 2;
7067 i.tm.operands += 2;
7068
91d6fa6a 7069 dupl++;
c0f3af97 7070 dest++;
91d6fa6a
NC
7071 i.op[dupl] = i.op[dest];
7072 i.types[dupl] = i.types[dest];
7073 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
8dc0818e 7074 i.flags[dupl] = i.flags[dest];
e2ec9d29 7075 }
c0f3af97
L
7076 else
7077 {
7078duplicate:
7079 i.operands++;
7080 i.reg_operands++;
7081 i.tm.operands++;
7082
91d6fa6a
NC
7083 i.op[dupl] = i.op[dest];
7084 i.types[dupl] = i.types[dest];
7085 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
8dc0818e 7086 i.flags[dupl] = i.flags[dest];
c0f3af97
L
7087 }
7088
7089 if (i.tm.opcode_modifier.immext)
7090 process_immext ();
7091 }
75e5731b 7092 else if (i.tm.operand_types[0].bitfield.instance == Accum
1b54b8d7 7093 && i.tm.operand_types[0].bitfield.xmmword)
c0f3af97
L
7094 {
7095 unsigned int j;
7096
9fcfb3d7
L
7097 for (j = 1; j < i.operands; j++)
7098 {
7099 i.op[j - 1] = i.op[j];
7100 i.types[j - 1] = i.types[j];
7101
7102 /* We need to adjust fields in i.tm since they are used by
7103 build_modrm_byte. */
7104 i.tm.operand_types [j - 1] = i.tm.operand_types [j];
8dc0818e
JB
7105
7106 i.flags[j - 1] = i.flags[j];
9fcfb3d7
L
7107 }
7108
e2ec9d29
L
7109 i.operands--;
7110 i.reg_operands--;
e2ec9d29
L
7111 i.tm.operands--;
7112 }
920d2ddc
IT
7113 else if (i.tm.opcode_modifier.implicitquadgroup)
7114 {
a477a8c4
JB
7115 unsigned int regnum, first_reg_in_group, last_reg_in_group;
7116
920d2ddc 7117 /* The second operand must be {x,y,z}mmN, where N is a multiple of 4. */
3528c362 7118 gas_assert (i.operands >= 2 && i.types[1].bitfield.class == RegSIMD);
a477a8c4
JB
7119 regnum = register_number (i.op[1].regs);
7120 first_reg_in_group = regnum & ~3;
7121 last_reg_in_group = first_reg_in_group + 3;
7122 if (regnum != first_reg_in_group)
7123 as_warn (_("source register `%s%s' implicitly denotes"
7124 " `%s%.3s%u' to `%s%.3s%u' source group in `%s'"),
7125 register_prefix, i.op[1].regs->reg_name,
7126 register_prefix, i.op[1].regs->reg_name, first_reg_in_group,
7127 register_prefix, i.op[1].regs->reg_name, last_reg_in_group,
7128 i.tm.name);
7129 }
e2ec9d29
L
7130 else if (i.tm.opcode_modifier.regkludge)
7131 {
7132 /* The imul $imm, %reg instruction is converted into
7133 imul $imm, %reg, %reg, and the clr %reg instruction
7134 is converted into xor %reg, %reg. */
7135
7136 unsigned int first_reg_op;
7137
7138 if (operand_type_check (i.types[0], reg))
7139 first_reg_op = 0;
7140 else
7141 first_reg_op = 1;
7142 /* Pretend we saw the extra register operand. */
9c2799c2 7143 gas_assert (i.reg_operands == 1
7ab9ffdd 7144 && i.op[first_reg_op + 1].regs == 0);
e2ec9d29
L
7145 i.op[first_reg_op + 1].regs = i.op[first_reg_op].regs;
7146 i.types[first_reg_op + 1] = i.types[first_reg_op];
7147 i.operands++;
7148 i.reg_operands++;
29b0f896
AM
7149 }
7150
85b80b0f 7151 if (i.tm.opcode_modifier.modrm)
29b0f896
AM
7152 {
7153 /* The opcode is completed (modulo i.tm.extension_opcode which
52271982
AM
7154 must be put into the modrm byte). Now, we make the modrm and
7155 index base bytes based on all the info we've collected. */
29b0f896
AM
7156
7157 default_seg = build_modrm_byte ();
7158 }
00cee14f 7159 else if (i.types[0].bitfield.class == SReg)
85b80b0f
JB
7160 {
7161 if (flag_code != CODE_64BIT
7162 ? i.tm.base_opcode == POP_SEG_SHORT
7163 && i.op[0].regs->reg_num == 1
7164 : (i.tm.base_opcode | 1) == POP_SEG386_SHORT
7165 && i.op[0].regs->reg_num < 4)
7166 {
7167 as_bad (_("you can't `%s %s%s'"),
7168 i.tm.name, register_prefix, i.op[0].regs->reg_name);
7169 return 0;
7170 }
7171 if ( i.op[0].regs->reg_num > 3 && i.tm.opcode_length == 1 )
7172 {
7173 i.tm.base_opcode ^= POP_SEG_SHORT ^ POP_SEG386_SHORT;
7174 i.tm.opcode_length = 2;
7175 }
7176 i.tm.base_opcode |= (i.op[0].regs->reg_num << 3);
7177 }
8a2ed489 7178 else if ((i.tm.base_opcode & ~0x3) == MOV_AX_DISP32)
29b0f896
AM
7179 {
7180 default_seg = &ds;
7181 }
40fb9820 7182 else if (i.tm.opcode_modifier.isstring)
29b0f896
AM
7183 {
7184 /* For the string instructions that allow a segment override
7185 on one of their operands, the default segment is ds. */
7186 default_seg = &ds;
7187 }
50128d0c 7188 else if (i.short_form)
85b80b0f
JB
7189 {
7190 /* The register or float register operand is in operand
7191 0 or 1. */
bab6aec1 7192 unsigned int op = i.tm.operand_types[0].bitfield.class != Reg;
85b80b0f
JB
7193
7194 /* Register goes in low 3 bits of opcode. */
7195 i.tm.base_opcode |= i.op[op].regs->reg_num;
7196 if ((i.op[op].regs->reg_flags & RegRex) != 0)
7197 i.rex |= REX_B;
7198 if (!quiet_warnings && i.tm.opcode_modifier.ugh)
7199 {
7200 /* Warn about some common errors, but press on regardless.
7201 The first case can be generated by gcc (<= 2.8.1). */
7202 if (i.operands == 2)
7203 {
7204 /* Reversed arguments on faddp, fsubp, etc. */
7205 as_warn (_("translating to `%s %s%s,%s%s'"), i.tm.name,
7206 register_prefix, i.op[!intel_syntax].regs->reg_name,
7207 register_prefix, i.op[intel_syntax].regs->reg_name);
7208 }
7209 else
7210 {
7211 /* Extraneous `l' suffix on fp insn. */
7212 as_warn (_("translating to `%s %s%s'"), i.tm.name,
7213 register_prefix, i.op[0].regs->reg_name);
7214 }
7215 }
7216 }
29b0f896 7217
514a8bb0 7218 if ((i.seg[0] || i.prefix[SEG_PREFIX])
514a8bb0
JB
7219 && i.tm.base_opcode == 0x8d /* lea */
7220 && !is_any_vex_encoding(&i.tm))
92334ad2
JB
7221 {
7222 if (!quiet_warnings)
7223 as_warn (_("segment override on `%s' is ineffectual"), i.tm.name);
7224 if (optimize)
7225 {
7226 i.seg[0] = NULL;
7227 i.prefix[SEG_PREFIX] = 0;
7228 }
7229 }
52271982
AM
7230
7231 /* If a segment was explicitly specified, and the specified segment
b6773884
JB
7232 is neither the default nor the one already recorded from a prefix,
7233 use an opcode prefix to select it. If we never figured out what
7234 the default segment is, then default_seg will be zero at this
7235 point, and the specified segment prefix will always be used. */
7236 if (i.seg[0]
7237 && i.seg[0] != default_seg
7238 && i.seg[0]->seg_prefix != i.prefix[SEG_PREFIX])
29b0f896
AM
7239 {
7240 if (!add_prefix (i.seg[0]->seg_prefix))
7241 return 0;
7242 }
7243 return 1;
7244}
7245
7246static const seg_entry *
e3bb37b5 7247build_modrm_byte (void)
29b0f896
AM
7248{
7249 const seg_entry *default_seg = 0;
c0f3af97 7250 unsigned int source, dest;
8cd7925b 7251 int vex_3_sources;
c0f3af97 7252
8cd7925b 7253 vex_3_sources = i.tm.opcode_modifier.vexsources == VEX3SOURCES;
c0f3af97
L
7254 if (vex_3_sources)
7255 {
91d6fa6a 7256 unsigned int nds, reg_slot;
4c2c6516 7257 expressionS *exp;
c0f3af97 7258
6b8d3588 7259 dest = i.operands - 1;
c0f3af97 7260 nds = dest - 1;
922d8de8 7261
a683cc34 7262 /* There are 2 kinds of instructions:
bed3d976 7263 1. 5 operands: 4 register operands or 3 register operands
9d3bf266 7264 plus 1 memory operand plus one Imm4 operand, VexXDS, and
bed3d976 7265 VexW0 or VexW1. The destination must be either XMM, YMM or
43234a1e 7266 ZMM register.
bed3d976 7267 2. 4 operands: 4 register operands or 3 register operands
2f1bada2 7268 plus 1 memory operand, with VexXDS. */
922d8de8 7269 gas_assert ((i.reg_operands == 4
bed3d976
JB
7270 || (i.reg_operands == 3 && i.mem_operands == 1))
7271 && i.tm.opcode_modifier.vexvvvv == VEXXDS
dcd7e323 7272 && i.tm.opcode_modifier.vexw
3528c362 7273 && i.tm.operand_types[dest].bitfield.class == RegSIMD);
a683cc34 7274
48db9223
JB
7275 /* If VexW1 is set, the first non-immediate operand is the source and
7276 the second non-immediate one is encoded in the immediate operand. */
7277 if (i.tm.opcode_modifier.vexw == VEXW1)
7278 {
7279 source = i.imm_operands;
7280 reg_slot = i.imm_operands + 1;
7281 }
7282 else
7283 {
7284 source = i.imm_operands + 1;
7285 reg_slot = i.imm_operands;
7286 }
7287
a683cc34 7288 if (i.imm_operands == 0)
bed3d976
JB
7289 {
7290 /* When there is no immediate operand, generate an 8bit
7291 immediate operand to encode the first operand. */
7292 exp = &im_expressions[i.imm_operands++];
7293 i.op[i.operands].imms = exp;
7294 i.types[i.operands] = imm8;
7295 i.operands++;
7296
3528c362 7297 gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD);
bed3d976
JB
7298 exp->X_op = O_constant;
7299 exp->X_add_number = register_number (i.op[reg_slot].regs) << 4;
43234a1e
L
7300 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
7301 }
922d8de8 7302 else
bed3d976 7303 {
9d3bf266
JB
7304 gas_assert (i.imm_operands == 1);
7305 gas_assert (fits_in_imm4 (i.op[0].imms->X_add_number));
7306 gas_assert (!i.tm.opcode_modifier.immext);
a683cc34 7307
9d3bf266
JB
7308 /* Turn on Imm8 again so that output_imm will generate it. */
7309 i.types[0].bitfield.imm8 = 1;
bed3d976 7310
3528c362 7311 gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD);
9d3bf266 7312 i.op[0].imms->X_add_number
bed3d976 7313 |= register_number (i.op[reg_slot].regs) << 4;
43234a1e 7314 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
bed3d976 7315 }
a683cc34 7316
3528c362 7317 gas_assert (i.tm.operand_types[nds].bitfield.class == RegSIMD);
dae39acc 7318 i.vex.register_specifier = i.op[nds].regs;
c0f3af97
L
7319 }
7320 else
7321 source = dest = 0;
29b0f896
AM
7322
7323 /* i.reg_operands MUST be the number of real register operands;
c0f3af97
L
7324 implicit registers do not count. If there are 3 register
7325 operands, it must be a instruction with VexNDS. For a
7326 instruction with VexNDD, the destination register is encoded
7327 in VEX prefix. If there are 4 register operands, it must be
7328 a instruction with VEX prefix and 3 sources. */
7ab9ffdd
L
7329 if (i.mem_operands == 0
7330 && ((i.reg_operands == 2
2426c15f 7331 && i.tm.opcode_modifier.vexvvvv <= VEXXDS)
7ab9ffdd 7332 || (i.reg_operands == 3
2426c15f 7333 && i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd 7334 || (i.reg_operands == 4 && vex_3_sources)))
29b0f896 7335 {
cab737b9
L
7336 switch (i.operands)
7337 {
7338 case 2:
7339 source = 0;
7340 break;
7341 case 3:
c81128dc
L
7342 /* When there are 3 operands, one of them may be immediate,
7343 which may be the first or the last operand. Otherwise,
c0f3af97
L
7344 the first operand must be shift count register (cl) or it
7345 is an instruction with VexNDS. */
9c2799c2 7346 gas_assert (i.imm_operands == 1
7ab9ffdd 7347 || (i.imm_operands == 0
2426c15f 7348 && (i.tm.opcode_modifier.vexvvvv == VEXXDS
75e5731b
JB
7349 || (i.types[0].bitfield.instance == RegC
7350 && i.types[0].bitfield.byte))));
40fb9820 7351 if (operand_type_check (i.types[0], imm)
75e5731b
JB
7352 || (i.types[0].bitfield.instance == RegC
7353 && i.types[0].bitfield.byte))
40fb9820
L
7354 source = 1;
7355 else
7356 source = 0;
cab737b9
L
7357 break;
7358 case 4:
368d64cc
L
7359 /* When there are 4 operands, the first two must be 8bit
7360 immediate operands. The source operand will be the 3rd
c0f3af97
L
7361 one.
7362
7363 For instructions with VexNDS, if the first operand
7364 an imm8, the source operand is the 2nd one. If the last
7365 operand is imm8, the source operand is the first one. */
9c2799c2 7366 gas_assert ((i.imm_operands == 2
7ab9ffdd
L
7367 && i.types[0].bitfield.imm8
7368 && i.types[1].bitfield.imm8)
2426c15f 7369 || (i.tm.opcode_modifier.vexvvvv == VEXXDS
7ab9ffdd
L
7370 && i.imm_operands == 1
7371 && (i.types[0].bitfield.imm8
43234a1e
L
7372 || i.types[i.operands - 1].bitfield.imm8
7373 || i.rounding)));
9f2670f2
L
7374 if (i.imm_operands == 2)
7375 source = 2;
7376 else
c0f3af97
L
7377 {
7378 if (i.types[0].bitfield.imm8)
7379 source = 1;
7380 else
7381 source = 0;
7382 }
c0f3af97
L
7383 break;
7384 case 5:
e771e7c9 7385 if (is_evex_encoding (&i.tm))
43234a1e
L
7386 {
7387 /* For EVEX instructions, when there are 5 operands, the
7388 first one must be immediate operand. If the second one
7389 is immediate operand, the source operand is the 3th
7390 one. If the last one is immediate operand, the source
7391 operand is the 2nd one. */
7392 gas_assert (i.imm_operands == 2
7393 && i.tm.opcode_modifier.sae
7394 && operand_type_check (i.types[0], imm));
7395 if (operand_type_check (i.types[1], imm))
7396 source = 2;
7397 else if (operand_type_check (i.types[4], imm))
7398 source = 1;
7399 else
7400 abort ();
7401 }
cab737b9
L
7402 break;
7403 default:
7404 abort ();
7405 }
7406
c0f3af97
L
7407 if (!vex_3_sources)
7408 {
7409 dest = source + 1;
7410
43234a1e
L
7411 /* RC/SAE operand could be between DEST and SRC. That happens
7412 when one operand is GPR and the other one is XMM/YMM/ZMM
7413 register. */
7414 if (i.rounding && i.rounding->operand == (int) dest)
7415 dest++;
7416
2426c15f 7417 if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
c0f3af97 7418 {
43234a1e 7419 /* For instructions with VexNDS, the register-only source
c5d0745b 7420 operand must be a 32/64bit integer, XMM, YMM, ZMM, or mask
dfd69174 7421 register. It is encoded in VEX prefix. */
f12dc422
L
7422
7423 i386_operand_type op;
7424 unsigned int vvvv;
7425
7426 /* Check register-only source operand when two source
7427 operands are swapped. */
7428 if (!i.tm.operand_types[source].bitfield.baseindex
7429 && i.tm.operand_types[dest].bitfield.baseindex)
7430 {
7431 vvvv = source;
7432 source = dest;
7433 }
7434 else
7435 vvvv = dest;
7436
7437 op = i.tm.operand_types[vvvv];
c0f3af97 7438 if ((dest + 1) >= i.operands
bab6aec1 7439 || ((op.bitfield.class != Reg
dc821c5f 7440 || (!op.bitfield.dword && !op.bitfield.qword))
3528c362 7441 && op.bitfield.class != RegSIMD
43234a1e 7442 && !operand_type_equal (&op, &regmask)))
c0f3af97 7443 abort ();
f12dc422 7444 i.vex.register_specifier = i.op[vvvv].regs;
c0f3af97
L
7445 dest++;
7446 }
7447 }
29b0f896
AM
7448
7449 i.rm.mode = 3;
dfd69174
JB
7450 /* One of the register operands will be encoded in the i.rm.reg
7451 field, the other in the combined i.rm.mode and i.rm.regmem
29b0f896
AM
7452 fields. If no form of this instruction supports a memory
7453 destination operand, then we assume the source operand may
7454 sometimes be a memory operand and so we need to store the
7455 destination in the i.rm.reg field. */
dfd69174 7456 if (!i.tm.opcode_modifier.regmem
40fb9820 7457 && operand_type_check (i.tm.operand_types[dest], anymem) == 0)
29b0f896
AM
7458 {
7459 i.rm.reg = i.op[dest].regs->reg_num;
7460 i.rm.regmem = i.op[source].regs->reg_num;
3528c362
JB
7461 if (i.op[dest].regs->reg_type.bitfield.class == RegMMX
7462 || i.op[source].regs->reg_type.bitfield.class == RegMMX)
b4a3a7b4 7463 i.has_regmmx = TRUE;
3528c362
JB
7464 else if (i.op[dest].regs->reg_type.bitfield.class == RegSIMD
7465 || i.op[source].regs->reg_type.bitfield.class == RegSIMD)
b4a3a7b4
L
7466 {
7467 if (i.types[dest].bitfield.zmmword
7468 || i.types[source].bitfield.zmmword)
7469 i.has_regzmm = TRUE;
7470 else if (i.types[dest].bitfield.ymmword
7471 || i.types[source].bitfield.ymmword)
7472 i.has_regymm = TRUE;
7473 else
7474 i.has_regxmm = TRUE;
7475 }
29b0f896 7476 if ((i.op[dest].regs->reg_flags & RegRex) != 0)
161a04f6 7477 i.rex |= REX_R;
43234a1e
L
7478 if ((i.op[dest].regs->reg_flags & RegVRex) != 0)
7479 i.vrex |= REX_R;
29b0f896 7480 if ((i.op[source].regs->reg_flags & RegRex) != 0)
161a04f6 7481 i.rex |= REX_B;
43234a1e
L
7482 if ((i.op[source].regs->reg_flags & RegVRex) != 0)
7483 i.vrex |= REX_B;
29b0f896
AM
7484 }
7485 else
7486 {
7487 i.rm.reg = i.op[source].regs->reg_num;
7488 i.rm.regmem = i.op[dest].regs->reg_num;
7489 if ((i.op[dest].regs->reg_flags & RegRex) != 0)
161a04f6 7490 i.rex |= REX_B;
43234a1e
L
7491 if ((i.op[dest].regs->reg_flags & RegVRex) != 0)
7492 i.vrex |= REX_B;
29b0f896 7493 if ((i.op[source].regs->reg_flags & RegRex) != 0)
161a04f6 7494 i.rex |= REX_R;
43234a1e
L
7495 if ((i.op[source].regs->reg_flags & RegVRex) != 0)
7496 i.vrex |= REX_R;
29b0f896 7497 }
e0c7f900 7498 if (flag_code != CODE_64BIT && (i.rex & REX_R))
c4a530c5 7499 {
4a5c67ed 7500 if (i.types[!i.tm.opcode_modifier.regmem].bitfield.class != RegCR)
c4a530c5 7501 abort ();
e0c7f900 7502 i.rex &= ~REX_R;
c4a530c5
JB
7503 add_prefix (LOCK_PREFIX_OPCODE);
7504 }
29b0f896
AM
7505 }
7506 else
7507 { /* If it's not 2 reg operands... */
c0f3af97
L
7508 unsigned int mem;
7509
29b0f896
AM
7510 if (i.mem_operands)
7511 {
7512 unsigned int fake_zero_displacement = 0;
99018f42 7513 unsigned int op;
4eed87de 7514
7ab9ffdd 7515 for (op = 0; op < i.operands; op++)
8dc0818e 7516 if (i.flags[op] & Operand_Mem)
7ab9ffdd 7517 break;
7ab9ffdd 7518 gas_assert (op < i.operands);
29b0f896 7519
6c30d220
L
7520 if (i.tm.opcode_modifier.vecsib)
7521 {
e968fc9b 7522 if (i.index_reg->reg_num == RegIZ)
6c30d220
L
7523 abort ();
7524
7525 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7526 if (!i.base_reg)
7527 {
7528 i.sib.base = NO_BASE_REGISTER;
7529 i.sib.scale = i.log2_scale_factor;
7530 i.types[op].bitfield.disp8 = 0;
7531 i.types[op].bitfield.disp16 = 0;
7532 i.types[op].bitfield.disp64 = 0;
43083a50 7533 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
6c30d220
L
7534 {
7535 /* Must be 32 bit */
7536 i.types[op].bitfield.disp32 = 1;
7537 i.types[op].bitfield.disp32s = 0;
7538 }
7539 else
7540 {
7541 i.types[op].bitfield.disp32 = 0;
7542 i.types[op].bitfield.disp32s = 1;
7543 }
7544 }
7545 i.sib.index = i.index_reg->reg_num;
7546 if ((i.index_reg->reg_flags & RegRex) != 0)
7547 i.rex |= REX_X;
43234a1e
L
7548 if ((i.index_reg->reg_flags & RegVRex) != 0)
7549 i.vrex |= REX_X;
6c30d220
L
7550 }
7551
29b0f896
AM
7552 default_seg = &ds;
7553
7554 if (i.base_reg == 0)
7555 {
7556 i.rm.mode = 0;
7557 if (!i.disp_operands)
9bb129e8 7558 fake_zero_displacement = 1;
29b0f896
AM
7559 if (i.index_reg == 0)
7560 {
73053c1f
JB
7561 i386_operand_type newdisp;
7562
6c30d220 7563 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896 7564 /* Operand is just <disp> */
20f0a1fc 7565 if (flag_code == CODE_64BIT)
29b0f896
AM
7566 {
7567 /* 64bit mode overwrites the 32bit absolute
7568 addressing by RIP relative addressing and
7569 absolute addressing is encoded by one of the
7570 redundant SIB forms. */
7571 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7572 i.sib.base = NO_BASE_REGISTER;
7573 i.sib.index = NO_INDEX_REGISTER;
73053c1f 7574 newdisp = (!i.prefix[ADDR_PREFIX] ? disp32s : disp32);
20f0a1fc 7575 }
fc225355
L
7576 else if ((flag_code == CODE_16BIT)
7577 ^ (i.prefix[ADDR_PREFIX] != 0))
20f0a1fc
NC
7578 {
7579 i.rm.regmem = NO_BASE_REGISTER_16;
73053c1f 7580 newdisp = disp16;
20f0a1fc
NC
7581 }
7582 else
7583 {
7584 i.rm.regmem = NO_BASE_REGISTER;
73053c1f 7585 newdisp = disp32;
29b0f896 7586 }
73053c1f
JB
7587 i.types[op] = operand_type_and_not (i.types[op], anydisp);
7588 i.types[op] = operand_type_or (i.types[op], newdisp);
29b0f896 7589 }
6c30d220 7590 else if (!i.tm.opcode_modifier.vecsib)
29b0f896 7591 {
6c30d220 7592 /* !i.base_reg && i.index_reg */
e968fc9b 7593 if (i.index_reg->reg_num == RegIZ)
db51cc60
L
7594 i.sib.index = NO_INDEX_REGISTER;
7595 else
7596 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
7597 i.sib.base = NO_BASE_REGISTER;
7598 i.sib.scale = i.log2_scale_factor;
7599 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
40fb9820
L
7600 i.types[op].bitfield.disp8 = 0;
7601 i.types[op].bitfield.disp16 = 0;
7602 i.types[op].bitfield.disp64 = 0;
43083a50 7603 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
40fb9820
L
7604 {
7605 /* Must be 32 bit */
7606 i.types[op].bitfield.disp32 = 1;
7607 i.types[op].bitfield.disp32s = 0;
7608 }
29b0f896 7609 else
40fb9820
L
7610 {
7611 i.types[op].bitfield.disp32 = 0;
7612 i.types[op].bitfield.disp32s = 1;
7613 }
29b0f896 7614 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 7615 i.rex |= REX_X;
29b0f896
AM
7616 }
7617 }
7618 /* RIP addressing for 64bit mode. */
e968fc9b 7619 else if (i.base_reg->reg_num == RegIP)
29b0f896 7620 {
6c30d220 7621 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896 7622 i.rm.regmem = NO_BASE_REGISTER;
40fb9820
L
7623 i.types[op].bitfield.disp8 = 0;
7624 i.types[op].bitfield.disp16 = 0;
7625 i.types[op].bitfield.disp32 = 0;
7626 i.types[op].bitfield.disp32s = 1;
7627 i.types[op].bitfield.disp64 = 0;
71903a11 7628 i.flags[op] |= Operand_PCrel;
20f0a1fc
NC
7629 if (! i.disp_operands)
7630 fake_zero_displacement = 1;
29b0f896 7631 }
dc821c5f 7632 else if (i.base_reg->reg_type.bitfield.word)
29b0f896 7633 {
6c30d220 7634 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896
AM
7635 switch (i.base_reg->reg_num)
7636 {
7637 case 3: /* (%bx) */
7638 if (i.index_reg == 0)
7639 i.rm.regmem = 7;
7640 else /* (%bx,%si) -> 0, or (%bx,%di) -> 1 */
7641 i.rm.regmem = i.index_reg->reg_num - 6;
7642 break;
7643 case 5: /* (%bp) */
7644 default_seg = &ss;
7645 if (i.index_reg == 0)
7646 {
7647 i.rm.regmem = 6;
40fb9820 7648 if (operand_type_check (i.types[op], disp) == 0)
29b0f896
AM
7649 {
7650 /* fake (%bp) into 0(%bp) */
b5014f7a 7651 i.types[op].bitfield.disp8 = 1;
252b5132 7652 fake_zero_displacement = 1;
29b0f896
AM
7653 }
7654 }
7655 else /* (%bp,%si) -> 2, or (%bp,%di) -> 3 */
7656 i.rm.regmem = i.index_reg->reg_num - 6 + 2;
7657 break;
7658 default: /* (%si) -> 4 or (%di) -> 5 */
7659 i.rm.regmem = i.base_reg->reg_num - 6 + 4;
7660 }
7661 i.rm.mode = mode_from_disp_size (i.types[op]);
7662 }
7663 else /* i.base_reg and 32/64 bit mode */
7664 {
7665 if (flag_code == CODE_64BIT
40fb9820
L
7666 && operand_type_check (i.types[op], disp))
7667 {
73053c1f
JB
7668 i.types[op].bitfield.disp16 = 0;
7669 i.types[op].bitfield.disp64 = 0;
40fb9820 7670 if (i.prefix[ADDR_PREFIX] == 0)
73053c1f
JB
7671 {
7672 i.types[op].bitfield.disp32 = 0;
7673 i.types[op].bitfield.disp32s = 1;
7674 }
40fb9820 7675 else
73053c1f
JB
7676 {
7677 i.types[op].bitfield.disp32 = 1;
7678 i.types[op].bitfield.disp32s = 0;
7679 }
40fb9820 7680 }
20f0a1fc 7681
6c30d220
L
7682 if (!i.tm.opcode_modifier.vecsib)
7683 i.rm.regmem = i.base_reg->reg_num;
29b0f896 7684 if ((i.base_reg->reg_flags & RegRex) != 0)
161a04f6 7685 i.rex |= REX_B;
29b0f896
AM
7686 i.sib.base = i.base_reg->reg_num;
7687 /* x86-64 ignores REX prefix bit here to avoid decoder
7688 complications. */
848930b2
JB
7689 if (!(i.base_reg->reg_flags & RegRex)
7690 && (i.base_reg->reg_num == EBP_REG_NUM
7691 || i.base_reg->reg_num == ESP_REG_NUM))
29b0f896 7692 default_seg = &ss;
848930b2 7693 if (i.base_reg->reg_num == 5 && i.disp_operands == 0)
29b0f896 7694 {
848930b2 7695 fake_zero_displacement = 1;
b5014f7a 7696 i.types[op].bitfield.disp8 = 1;
29b0f896
AM
7697 }
7698 i.sib.scale = i.log2_scale_factor;
7699 if (i.index_reg == 0)
7700 {
6c30d220 7701 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896
AM
7702 /* <disp>(%esp) becomes two byte modrm with no index
7703 register. We've already stored the code for esp
7704 in i.rm.regmem ie. ESCAPE_TO_TWO_BYTE_ADDRESSING.
7705 Any base register besides %esp will not use the
7706 extra modrm byte. */
7707 i.sib.index = NO_INDEX_REGISTER;
29b0f896 7708 }
6c30d220 7709 else if (!i.tm.opcode_modifier.vecsib)
29b0f896 7710 {
e968fc9b 7711 if (i.index_reg->reg_num == RegIZ)
db51cc60
L
7712 i.sib.index = NO_INDEX_REGISTER;
7713 else
7714 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
7715 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7716 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 7717 i.rex |= REX_X;
29b0f896 7718 }
67a4f2b7
AO
7719
7720 if (i.disp_operands
7721 && (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
7722 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL))
7723 i.rm.mode = 0;
7724 else
a501d77e
L
7725 {
7726 if (!fake_zero_displacement
7727 && !i.disp_operands
7728 && i.disp_encoding)
7729 {
7730 fake_zero_displacement = 1;
7731 if (i.disp_encoding == disp_encoding_8bit)
7732 i.types[op].bitfield.disp8 = 1;
7733 else
7734 i.types[op].bitfield.disp32 = 1;
7735 }
7736 i.rm.mode = mode_from_disp_size (i.types[op]);
7737 }
29b0f896 7738 }
252b5132 7739
29b0f896
AM
7740 if (fake_zero_displacement)
7741 {
7742 /* Fakes a zero displacement assuming that i.types[op]
7743 holds the correct displacement size. */
7744 expressionS *exp;
7745
9c2799c2 7746 gas_assert (i.op[op].disps == 0);
29b0f896
AM
7747 exp = &disp_expressions[i.disp_operands++];
7748 i.op[op].disps = exp;
7749 exp->X_op = O_constant;
7750 exp->X_add_number = 0;
7751 exp->X_add_symbol = (symbolS *) 0;
7752 exp->X_op_symbol = (symbolS *) 0;
7753 }
c0f3af97
L
7754
7755 mem = op;
29b0f896 7756 }
c0f3af97
L
7757 else
7758 mem = ~0;
252b5132 7759
8c43a48b 7760 if (i.tm.opcode_modifier.vexsources == XOP2SOURCES)
5dd85c99
SP
7761 {
7762 if (operand_type_check (i.types[0], imm))
7763 i.vex.register_specifier = NULL;
7764 else
7765 {
7766 /* VEX.vvvv encodes one of the sources when the first
7767 operand is not an immediate. */
1ef99a7b 7768 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
7769 i.vex.register_specifier = i.op[0].regs;
7770 else
7771 i.vex.register_specifier = i.op[1].regs;
7772 }
7773
7774 /* Destination is a XMM register encoded in the ModRM.reg
7775 and VEX.R bit. */
7776 i.rm.reg = i.op[2].regs->reg_num;
7777 if ((i.op[2].regs->reg_flags & RegRex) != 0)
7778 i.rex |= REX_R;
7779
7780 /* ModRM.rm and VEX.B encodes the other source. */
7781 if (!i.mem_operands)
7782 {
7783 i.rm.mode = 3;
7784
1ef99a7b 7785 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
7786 i.rm.regmem = i.op[1].regs->reg_num;
7787 else
7788 i.rm.regmem = i.op[0].regs->reg_num;
7789
7790 if ((i.op[1].regs->reg_flags & RegRex) != 0)
7791 i.rex |= REX_B;
7792 }
7793 }
2426c15f 7794 else if (i.tm.opcode_modifier.vexvvvv == VEXLWP)
f88c9eb0
SP
7795 {
7796 i.vex.register_specifier = i.op[2].regs;
7797 if (!i.mem_operands)
7798 {
7799 i.rm.mode = 3;
7800 i.rm.regmem = i.op[1].regs->reg_num;
7801 if ((i.op[1].regs->reg_flags & RegRex) != 0)
7802 i.rex |= REX_B;
7803 }
7804 }
29b0f896
AM
7805 /* Fill in i.rm.reg or i.rm.regmem field with register operand
7806 (if any) based on i.tm.extension_opcode. Again, we must be
7807 careful to make sure that segment/control/debug/test/MMX
7808 registers are coded into the i.rm.reg field. */
f88c9eb0 7809 else if (i.reg_operands)
29b0f896 7810 {
99018f42 7811 unsigned int op;
7ab9ffdd
L
7812 unsigned int vex_reg = ~0;
7813
7814 for (op = 0; op < i.operands; op++)
b4a3a7b4 7815 {
bab6aec1 7816 if (i.types[op].bitfield.class == Reg
f74a6307
JB
7817 || i.types[op].bitfield.class == RegBND
7818 || i.types[op].bitfield.class == RegMask
00cee14f 7819 || i.types[op].bitfield.class == SReg
4a5c67ed
JB
7820 || i.types[op].bitfield.class == RegCR
7821 || i.types[op].bitfield.class == RegDR
7822 || i.types[op].bitfield.class == RegTR)
b4a3a7b4 7823 break;
3528c362 7824 if (i.types[op].bitfield.class == RegSIMD)
b4a3a7b4
L
7825 {
7826 if (i.types[op].bitfield.zmmword)
7827 i.has_regzmm = TRUE;
7828 else if (i.types[op].bitfield.ymmword)
7829 i.has_regymm = TRUE;
7830 else
7831 i.has_regxmm = TRUE;
7832 break;
7833 }
3528c362 7834 if (i.types[op].bitfield.class == RegMMX)
b4a3a7b4
L
7835 {
7836 i.has_regmmx = TRUE;
7837 break;
7838 }
7839 }
c0209578 7840
7ab9ffdd
L
7841 if (vex_3_sources)
7842 op = dest;
2426c15f 7843 else if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd
L
7844 {
7845 /* For instructions with VexNDS, the register-only
7846 source operand is encoded in VEX prefix. */
7847 gas_assert (mem != (unsigned int) ~0);
c0f3af97 7848
7ab9ffdd 7849 if (op > mem)
c0f3af97 7850 {
7ab9ffdd
L
7851 vex_reg = op++;
7852 gas_assert (op < i.operands);
c0f3af97
L
7853 }
7854 else
c0f3af97 7855 {
f12dc422
L
7856 /* Check register-only source operand when two source
7857 operands are swapped. */
7858 if (!i.tm.operand_types[op].bitfield.baseindex
7859 && i.tm.operand_types[op + 1].bitfield.baseindex)
7860 {
7861 vex_reg = op;
7862 op += 2;
7863 gas_assert (mem == (vex_reg + 1)
7864 && op < i.operands);
7865 }
7866 else
7867 {
7868 vex_reg = op + 1;
7869 gas_assert (vex_reg < i.operands);
7870 }
c0f3af97 7871 }
7ab9ffdd 7872 }
2426c15f 7873 else if (i.tm.opcode_modifier.vexvvvv == VEXNDD)
7ab9ffdd 7874 {
f12dc422 7875 /* For instructions with VexNDD, the register destination
7ab9ffdd 7876 is encoded in VEX prefix. */
f12dc422
L
7877 if (i.mem_operands == 0)
7878 {
7879 /* There is no memory operand. */
7880 gas_assert ((op + 2) == i.operands);
7881 vex_reg = op + 1;
7882 }
7883 else
8d63c93e 7884 {
ed438a93
JB
7885 /* There are only 2 non-immediate operands. */
7886 gas_assert (op < i.imm_operands + 2
7887 && i.operands == i.imm_operands + 2);
7888 vex_reg = i.imm_operands + 1;
f12dc422 7889 }
7ab9ffdd
L
7890 }
7891 else
7892 gas_assert (op < i.operands);
99018f42 7893
7ab9ffdd
L
7894 if (vex_reg != (unsigned int) ~0)
7895 {
f12dc422 7896 i386_operand_type *type = &i.tm.operand_types[vex_reg];
7ab9ffdd 7897
bab6aec1 7898 if ((type->bitfield.class != Reg
dc821c5f 7899 || (!type->bitfield.dword && !type->bitfield.qword))
3528c362 7900 && type->bitfield.class != RegSIMD
43234a1e 7901 && !operand_type_equal (type, &regmask))
7ab9ffdd 7902 abort ();
f88c9eb0 7903
7ab9ffdd
L
7904 i.vex.register_specifier = i.op[vex_reg].regs;
7905 }
7906
1b9f0c97
L
7907 /* Don't set OP operand twice. */
7908 if (vex_reg != op)
7ab9ffdd 7909 {
1b9f0c97
L
7910 /* If there is an extension opcode to put here, the
7911 register number must be put into the regmem field. */
7912 if (i.tm.extension_opcode != None)
7913 {
7914 i.rm.regmem = i.op[op].regs->reg_num;
7915 if ((i.op[op].regs->reg_flags & RegRex) != 0)
7916 i.rex |= REX_B;
43234a1e
L
7917 if ((i.op[op].regs->reg_flags & RegVRex) != 0)
7918 i.vrex |= REX_B;
1b9f0c97
L
7919 }
7920 else
7921 {
7922 i.rm.reg = i.op[op].regs->reg_num;
7923 if ((i.op[op].regs->reg_flags & RegRex) != 0)
7924 i.rex |= REX_R;
43234a1e
L
7925 if ((i.op[op].regs->reg_flags & RegVRex) != 0)
7926 i.vrex |= REX_R;
1b9f0c97 7927 }
7ab9ffdd 7928 }
252b5132 7929
29b0f896
AM
7930 /* Now, if no memory operand has set i.rm.mode = 0, 1, 2 we
7931 must set it to 3 to indicate this is a register operand
7932 in the regmem field. */
7933 if (!i.mem_operands)
7934 i.rm.mode = 3;
7935 }
252b5132 7936
29b0f896 7937 /* Fill in i.rm.reg field with extension opcode (if any). */
c1e679ec 7938 if (i.tm.extension_opcode != None)
29b0f896
AM
7939 i.rm.reg = i.tm.extension_opcode;
7940 }
7941 return default_seg;
7942}
252b5132 7943
376cd056
JB
7944static unsigned int
7945flip_code16 (unsigned int code16)
7946{
7947 gas_assert (i.tm.operands == 1);
7948
7949 return !(i.prefix[REX_PREFIX] & REX_W)
7950 && (code16 ? i.tm.operand_types[0].bitfield.disp32
7951 || i.tm.operand_types[0].bitfield.disp32s
7952 : i.tm.operand_types[0].bitfield.disp16)
7953 ? CODE16 : 0;
7954}
7955
29b0f896 7956static void
e3bb37b5 7957output_branch (void)
29b0f896
AM
7958{
7959 char *p;
f8a5c266 7960 int size;
29b0f896
AM
7961 int code16;
7962 int prefix;
7963 relax_substateT subtype;
7964 symbolS *sym;
7965 offsetT off;
7966
f8a5c266 7967 code16 = flag_code == CODE_16BIT ? CODE16 : 0;
a501d77e 7968 size = i.disp_encoding == disp_encoding_32bit ? BIG : SMALL;
29b0f896
AM
7969
7970 prefix = 0;
7971 if (i.prefix[DATA_PREFIX] != 0)
252b5132 7972 {
29b0f896
AM
7973 prefix = 1;
7974 i.prefixes -= 1;
376cd056 7975 code16 ^= flip_code16(code16);
252b5132 7976 }
29b0f896
AM
7977 /* Pentium4 branch hints. */
7978 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
7979 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
2f66722d 7980 {
29b0f896
AM
7981 prefix++;
7982 i.prefixes--;
7983 }
7984 if (i.prefix[REX_PREFIX] != 0)
7985 {
7986 prefix++;
7987 i.prefixes--;
2f66722d
AM
7988 }
7989
7e8b059b
L
7990 /* BND prefixed jump. */
7991 if (i.prefix[BND_PREFIX] != 0)
7992 {
6cb0a70e
JB
7993 prefix++;
7994 i.prefixes--;
7e8b059b
L
7995 }
7996
f2810fe0
JB
7997 if (i.prefixes != 0)
7998 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
29b0f896
AM
7999
8000 /* It's always a symbol; End frag & setup for relax.
8001 Make sure there is enough room in this frag for the largest
8002 instruction we may generate in md_convert_frag. This is 2
8003 bytes for the opcode and room for the prefix and largest
8004 displacement. */
8005 frag_grow (prefix + 2 + 4);
8006 /* Prefix and 1 opcode byte go in fr_fix. */
8007 p = frag_more (prefix + 1);
8008 if (i.prefix[DATA_PREFIX] != 0)
8009 *p++ = DATA_PREFIX_OPCODE;
8010 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE
8011 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE)
8012 *p++ = i.prefix[SEG_PREFIX];
6cb0a70e
JB
8013 if (i.prefix[BND_PREFIX] != 0)
8014 *p++ = BND_PREFIX_OPCODE;
29b0f896
AM
8015 if (i.prefix[REX_PREFIX] != 0)
8016 *p++ = i.prefix[REX_PREFIX];
8017 *p = i.tm.base_opcode;
8018
8019 if ((unsigned char) *p == JUMP_PC_RELATIVE)
f8a5c266 8020 subtype = ENCODE_RELAX_STATE (UNCOND_JUMP, size);
40fb9820 8021 else if (cpu_arch_flags.bitfield.cpui386)
f8a5c266 8022 subtype = ENCODE_RELAX_STATE (COND_JUMP, size);
29b0f896 8023 else
f8a5c266 8024 subtype = ENCODE_RELAX_STATE (COND_JUMP86, size);
29b0f896 8025 subtype |= code16;
3e73aa7c 8026
29b0f896
AM
8027 sym = i.op[0].disps->X_add_symbol;
8028 off = i.op[0].disps->X_add_number;
3e73aa7c 8029
29b0f896
AM
8030 if (i.op[0].disps->X_op != O_constant
8031 && i.op[0].disps->X_op != O_symbol)
3e73aa7c 8032 {
29b0f896
AM
8033 /* Handle complex expressions. */
8034 sym = make_expr_symbol (i.op[0].disps);
8035 off = 0;
8036 }
3e73aa7c 8037
29b0f896
AM
8038 /* 1 possible extra opcode + 4 byte displacement go in var part.
8039 Pass reloc in fr_var. */
d258b828 8040 frag_var (rs_machine_dependent, 5, i.reloc[0], subtype, sym, off, p);
29b0f896 8041}
3e73aa7c 8042
bd7ab16b
L
8043#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8044/* Return TRUE iff PLT32 relocation should be used for branching to
8045 symbol S. */
8046
8047static bfd_boolean
8048need_plt32_p (symbolS *s)
8049{
8050 /* PLT32 relocation is ELF only. */
8051 if (!IS_ELF)
8052 return FALSE;
8053
a5def729
RO
8054#ifdef TE_SOLARIS
8055 /* Don't emit PLT32 relocation on Solaris: neither native linker nor
8056 krtld support it. */
8057 return FALSE;
8058#endif
8059
bd7ab16b
L
8060 /* Since there is no need to prepare for PLT branch on x86-64, we
8061 can generate R_X86_64_PLT32, instead of R_X86_64_PC32, which can
8062 be used as a marker for 32-bit PC-relative branches. */
8063 if (!object_64bit)
8064 return FALSE;
8065
8066 /* Weak or undefined symbol need PLT32 relocation. */
8067 if (S_IS_WEAK (s) || !S_IS_DEFINED (s))
8068 return TRUE;
8069
8070 /* Non-global symbol doesn't need PLT32 relocation. */
8071 if (! S_IS_EXTERNAL (s))
8072 return FALSE;
8073
8074 /* Other global symbols need PLT32 relocation. NB: Symbol with
8075 non-default visibilities are treated as normal global symbol
8076 so that PLT32 relocation can be used as a marker for 32-bit
8077 PC-relative branches. It is useful for linker relaxation. */
8078 return TRUE;
8079}
8080#endif
8081
29b0f896 8082static void
e3bb37b5 8083output_jump (void)
29b0f896
AM
8084{
8085 char *p;
8086 int size;
3e02c1cc 8087 fixS *fixP;
bd7ab16b 8088 bfd_reloc_code_real_type jump_reloc = i.reloc[0];
29b0f896 8089
0cfa3eb3 8090 if (i.tm.opcode_modifier.jump == JUMP_BYTE)
29b0f896
AM
8091 {
8092 /* This is a loop or jecxz type instruction. */
8093 size = 1;
8094 if (i.prefix[ADDR_PREFIX] != 0)
8095 {
8096 FRAG_APPEND_1_CHAR (ADDR_PREFIX_OPCODE);
8097 i.prefixes -= 1;
8098 }
8099 /* Pentium4 branch hints. */
8100 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
8101 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
8102 {
8103 FRAG_APPEND_1_CHAR (i.prefix[SEG_PREFIX]);
8104 i.prefixes--;
3e73aa7c
JH
8105 }
8106 }
29b0f896
AM
8107 else
8108 {
8109 int code16;
3e73aa7c 8110
29b0f896
AM
8111 code16 = 0;
8112 if (flag_code == CODE_16BIT)
8113 code16 = CODE16;
3e73aa7c 8114
29b0f896
AM
8115 if (i.prefix[DATA_PREFIX] != 0)
8116 {
8117 FRAG_APPEND_1_CHAR (DATA_PREFIX_OPCODE);
8118 i.prefixes -= 1;
376cd056 8119 code16 ^= flip_code16(code16);
29b0f896 8120 }
252b5132 8121
29b0f896
AM
8122 size = 4;
8123 if (code16)
8124 size = 2;
8125 }
9fcc94b6 8126
6cb0a70e
JB
8127 /* BND prefixed jump. */
8128 if (i.prefix[BND_PREFIX] != 0)
29b0f896 8129 {
6cb0a70e 8130 FRAG_APPEND_1_CHAR (i.prefix[BND_PREFIX]);
29b0f896
AM
8131 i.prefixes -= 1;
8132 }
252b5132 8133
6cb0a70e 8134 if (i.prefix[REX_PREFIX] != 0)
7e8b059b 8135 {
6cb0a70e 8136 FRAG_APPEND_1_CHAR (i.prefix[REX_PREFIX]);
7e8b059b
L
8137 i.prefixes -= 1;
8138 }
8139
f2810fe0
JB
8140 if (i.prefixes != 0)
8141 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
e0890092 8142
42164a71
L
8143 p = frag_more (i.tm.opcode_length + size);
8144 switch (i.tm.opcode_length)
8145 {
8146 case 2:
8147 *p++ = i.tm.base_opcode >> 8;
1a0670f3 8148 /* Fall through. */
42164a71
L
8149 case 1:
8150 *p++ = i.tm.base_opcode;
8151 break;
8152 default:
8153 abort ();
8154 }
e0890092 8155
bd7ab16b
L
8156#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8157 if (size == 4
8158 && jump_reloc == NO_RELOC
8159 && need_plt32_p (i.op[0].disps->X_add_symbol))
8160 jump_reloc = BFD_RELOC_X86_64_PLT32;
8161#endif
8162
8163 jump_reloc = reloc (size, 1, 1, jump_reloc);
8164
3e02c1cc 8165 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal, size,
bd7ab16b 8166 i.op[0].disps, 1, jump_reloc);
3e02c1cc
AM
8167
8168 /* All jumps handled here are signed, but don't use a signed limit
8169 check for 32 and 16 bit jumps as we want to allow wrap around at
8170 4G and 64k respectively. */
8171 if (size == 1)
8172 fixP->fx_signed = 1;
29b0f896 8173}
e0890092 8174
29b0f896 8175static void
e3bb37b5 8176output_interseg_jump (void)
29b0f896
AM
8177{
8178 char *p;
8179 int size;
8180 int prefix;
8181 int code16;
252b5132 8182
29b0f896
AM
8183 code16 = 0;
8184 if (flag_code == CODE_16BIT)
8185 code16 = CODE16;
a217f122 8186
29b0f896
AM
8187 prefix = 0;
8188 if (i.prefix[DATA_PREFIX] != 0)
8189 {
8190 prefix = 1;
8191 i.prefixes -= 1;
8192 code16 ^= CODE16;
8193 }
6cb0a70e
JB
8194
8195 gas_assert (!i.prefix[REX_PREFIX]);
252b5132 8196
29b0f896
AM
8197 size = 4;
8198 if (code16)
8199 size = 2;
252b5132 8200
f2810fe0
JB
8201 if (i.prefixes != 0)
8202 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
252b5132 8203
29b0f896
AM
8204 /* 1 opcode; 2 segment; offset */
8205 p = frag_more (prefix + 1 + 2 + size);
3e73aa7c 8206
29b0f896
AM
8207 if (i.prefix[DATA_PREFIX] != 0)
8208 *p++ = DATA_PREFIX_OPCODE;
252b5132 8209
29b0f896
AM
8210 if (i.prefix[REX_PREFIX] != 0)
8211 *p++ = i.prefix[REX_PREFIX];
252b5132 8212
29b0f896
AM
8213 *p++ = i.tm.base_opcode;
8214 if (i.op[1].imms->X_op == O_constant)
8215 {
8216 offsetT n = i.op[1].imms->X_add_number;
252b5132 8217
29b0f896
AM
8218 if (size == 2
8219 && !fits_in_unsigned_word (n)
8220 && !fits_in_signed_word (n))
8221 {
8222 as_bad (_("16-bit jump out of range"));
8223 return;
8224 }
8225 md_number_to_chars (p, n, size);
8226 }
8227 else
8228 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
d258b828 8229 i.op[1].imms, 0, reloc (size, 0, 0, i.reloc[1]));
29b0f896
AM
8230 if (i.op[0].imms->X_op != O_constant)
8231 as_bad (_("can't handle non absolute segment in `%s'"),
8232 i.tm.name);
8233 md_number_to_chars (p + size, (valueT) i.op[0].imms->X_add_number, 2);
8234}
a217f122 8235
b4a3a7b4
L
8236#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8237void
8238x86_cleanup (void)
8239{
8240 char *p;
8241 asection *seg = now_seg;
8242 subsegT subseg = now_subseg;
8243 asection *sec;
8244 unsigned int alignment, align_size_1;
8245 unsigned int isa_1_descsz, feature_2_descsz, descsz;
8246 unsigned int isa_1_descsz_raw, feature_2_descsz_raw;
8247 unsigned int padding;
8248
8249 if (!IS_ELF || !x86_used_note)
8250 return;
8251
b4a3a7b4
L
8252 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X86;
8253
8254 /* The .note.gnu.property section layout:
8255
8256 Field Length Contents
8257 ---- ---- ----
8258 n_namsz 4 4
8259 n_descsz 4 The note descriptor size
8260 n_type 4 NT_GNU_PROPERTY_TYPE_0
8261 n_name 4 "GNU"
8262 n_desc n_descsz The program property array
8263 .... .... ....
8264 */
8265
8266 /* Create the .note.gnu.property section. */
8267 sec = subseg_new (NOTE_GNU_PROPERTY_SECTION_NAME, 0);
fd361982 8268 bfd_set_section_flags (sec,
b4a3a7b4
L
8269 (SEC_ALLOC
8270 | SEC_LOAD
8271 | SEC_DATA
8272 | SEC_HAS_CONTENTS
8273 | SEC_READONLY));
8274
8275 if (get_elf_backend_data (stdoutput)->s->elfclass == ELFCLASS64)
8276 {
8277 align_size_1 = 7;
8278 alignment = 3;
8279 }
8280 else
8281 {
8282 align_size_1 = 3;
8283 alignment = 2;
8284 }
8285
fd361982 8286 bfd_set_section_alignment (sec, alignment);
b4a3a7b4
L
8287 elf_section_type (sec) = SHT_NOTE;
8288
8289 /* GNU_PROPERTY_X86_ISA_1_USED: 4-byte type + 4-byte data size
8290 + 4-byte data */
8291 isa_1_descsz_raw = 4 + 4 + 4;
8292 /* Align GNU_PROPERTY_X86_ISA_1_USED. */
8293 isa_1_descsz = (isa_1_descsz_raw + align_size_1) & ~align_size_1;
8294
8295 feature_2_descsz_raw = isa_1_descsz;
8296 /* GNU_PROPERTY_X86_FEATURE_2_USED: 4-byte type + 4-byte data size
8297 + 4-byte data */
8298 feature_2_descsz_raw += 4 + 4 + 4;
8299 /* Align GNU_PROPERTY_X86_FEATURE_2_USED. */
8300 feature_2_descsz = ((feature_2_descsz_raw + align_size_1)
8301 & ~align_size_1);
8302
8303 descsz = feature_2_descsz;
8304 /* Section size: n_namsz + n_descsz + n_type + n_name + n_descsz. */
8305 p = frag_more (4 + 4 + 4 + 4 + descsz);
8306
8307 /* Write n_namsz. */
8308 md_number_to_chars (p, (valueT) 4, 4);
8309
8310 /* Write n_descsz. */
8311 md_number_to_chars (p + 4, (valueT) descsz, 4);
8312
8313 /* Write n_type. */
8314 md_number_to_chars (p + 4 * 2, (valueT) NT_GNU_PROPERTY_TYPE_0, 4);
8315
8316 /* Write n_name. */
8317 memcpy (p + 4 * 3, "GNU", 4);
8318
8319 /* Write 4-byte type. */
8320 md_number_to_chars (p + 4 * 4,
8321 (valueT) GNU_PROPERTY_X86_ISA_1_USED, 4);
8322
8323 /* Write 4-byte data size. */
8324 md_number_to_chars (p + 4 * 5, (valueT) 4, 4);
8325
8326 /* Write 4-byte data. */
8327 md_number_to_chars (p + 4 * 6, (valueT) x86_isa_1_used, 4);
8328
8329 /* Zero out paddings. */
8330 padding = isa_1_descsz - isa_1_descsz_raw;
8331 if (padding)
8332 memset (p + 4 * 7, 0, padding);
8333
8334 /* Write 4-byte type. */
8335 md_number_to_chars (p + isa_1_descsz + 4 * 4,
8336 (valueT) GNU_PROPERTY_X86_FEATURE_2_USED, 4);
8337
8338 /* Write 4-byte data size. */
8339 md_number_to_chars (p + isa_1_descsz + 4 * 5, (valueT) 4, 4);
8340
8341 /* Write 4-byte data. */
8342 md_number_to_chars (p + isa_1_descsz + 4 * 6,
8343 (valueT) x86_feature_2_used, 4);
8344
8345 /* Zero out paddings. */
8346 padding = feature_2_descsz - feature_2_descsz_raw;
8347 if (padding)
8348 memset (p + isa_1_descsz + 4 * 7, 0, padding);
8349
8350 /* We probably can't restore the current segment, for there likely
8351 isn't one yet... */
8352 if (seg && subseg)
8353 subseg_set (seg, subseg);
8354}
8355#endif
8356
9c33702b
JB
8357static unsigned int
8358encoding_length (const fragS *start_frag, offsetT start_off,
8359 const char *frag_now_ptr)
8360{
8361 unsigned int len = 0;
8362
8363 if (start_frag != frag_now)
8364 {
8365 const fragS *fr = start_frag;
8366
8367 do {
8368 len += fr->fr_fix;
8369 fr = fr->fr_next;
8370 } while (fr && fr != frag_now);
8371 }
8372
8373 return len - start_off + (frag_now_ptr - frag_now->fr_literal);
8374}
8375
e379e5f3
L
8376/* Return 1 for test, and, cmp, add, sub, inc and dec which may
8377 be macro-fused with conditional jumps. */
8378
8379static int
8380maybe_fused_with_jcc_p (void)
8381{
8382 /* No RIP address. */
8383 if (i.base_reg && i.base_reg->reg_num == RegIP)
8384 return 0;
8385
8386 /* No VEX/EVEX encoding. */
8387 if (is_any_vex_encoding (&i.tm))
8388 return 0;
8389
8390 /* and, add, sub with destination register. */
8391 if ((i.tm.base_opcode >= 0x20 && i.tm.base_opcode <= 0x25)
8392 || i.tm.base_opcode <= 5
8393 || (i.tm.base_opcode >= 0x28 && i.tm.base_opcode <= 0x2d)
8394 || ((i.tm.base_opcode | 3) == 0x83
8395 && ((i.tm.extension_opcode | 1) == 0x5
8396 || i.tm.extension_opcode == 0x0)))
8397 return (i.types[1].bitfield.class == Reg
8398 || i.types[1].bitfield.instance == Accum);
8399
8400 /* test, cmp with any register. */
8401 if ((i.tm.base_opcode | 1) == 0x85
8402 || (i.tm.base_opcode | 1) == 0xa9
8403 || ((i.tm.base_opcode | 1) == 0xf7
8404 && i.tm.extension_opcode == 0)
8405 || (i.tm.base_opcode >= 0x38 && i.tm.base_opcode <= 0x3d)
8406 || ((i.tm.base_opcode | 3) == 0x83
8407 && (i.tm.extension_opcode == 0x7)))
8408 return (i.types[0].bitfield.class == Reg
8409 || i.types[0].bitfield.instance == Accum
8410 || i.types[1].bitfield.class == Reg
8411 || i.types[1].bitfield.instance == Accum);
8412
8413 /* inc, dec with any register. */
8414 if ((i.tm.cpu_flags.bitfield.cpuno64
8415 && (i.tm.base_opcode | 0xf) == 0x4f)
8416 || ((i.tm.base_opcode | 1) == 0xff
8417 && i.tm.extension_opcode <= 0x1))
8418 return (i.types[0].bitfield.class == Reg
8419 || i.types[0].bitfield.instance == Accum);
8420
8421 return 0;
8422}
8423
8424/* Return 1 if a FUSED_JCC_PADDING frag should be generated. */
8425
8426static int
8427add_fused_jcc_padding_frag_p (void)
8428{
8429 /* NB: Don't work with COND_JUMP86 without i386. */
8430 if (!align_branch_power
8431 || now_seg == absolute_section
8432 || !cpu_arch_flags.bitfield.cpui386
8433 || !(align_branch & align_branch_fused_bit))
8434 return 0;
8435
8436 if (maybe_fused_with_jcc_p ())
8437 {
8438 if (last_insn.kind == last_insn_other
8439 || last_insn.seg != now_seg)
8440 return 1;
8441 if (flag_debug)
8442 as_warn_where (last_insn.file, last_insn.line,
8443 _("`%s` skips -malign-branch-boundary on `%s`"),
8444 last_insn.name, i.tm.name);
8445 }
8446
8447 return 0;
8448}
8449
8450/* Return 1 if a BRANCH_PREFIX frag should be generated. */
8451
8452static int
8453add_branch_prefix_frag_p (void)
8454{
8455 /* NB: Don't work with COND_JUMP86 without i386. Don't add prefix
8456 to PadLock instructions since they include prefixes in opcode. */
8457 if (!align_branch_power
8458 || !align_branch_prefix_size
8459 || now_seg == absolute_section
8460 || i.tm.cpu_flags.bitfield.cpupadlock
8461 || !cpu_arch_flags.bitfield.cpui386)
8462 return 0;
8463
8464 /* Don't add prefix if it is a prefix or there is no operand in case
8465 that segment prefix is special. */
8466 if (!i.operands || i.tm.opcode_modifier.isprefix)
8467 return 0;
8468
8469 if (last_insn.kind == last_insn_other
8470 || last_insn.seg != now_seg)
8471 return 1;
8472
8473 if (flag_debug)
8474 as_warn_where (last_insn.file, last_insn.line,
8475 _("`%s` skips -malign-branch-boundary on `%s`"),
8476 last_insn.name, i.tm.name);
8477
8478 return 0;
8479}
8480
8481/* Return 1 if a BRANCH_PADDING frag should be generated. */
8482
8483static int
8484add_branch_padding_frag_p (enum align_branch_kind *branch_p)
8485{
8486 int add_padding;
8487
8488 /* NB: Don't work with COND_JUMP86 without i386. */
8489 if (!align_branch_power
8490 || now_seg == absolute_section
8491 || !cpu_arch_flags.bitfield.cpui386)
8492 return 0;
8493
8494 add_padding = 0;
8495
8496 /* Check for jcc and direct jmp. */
8497 if (i.tm.opcode_modifier.jump == JUMP)
8498 {
8499 if (i.tm.base_opcode == JUMP_PC_RELATIVE)
8500 {
8501 *branch_p = align_branch_jmp;
8502 add_padding = align_branch & align_branch_jmp_bit;
8503 }
8504 else
8505 {
8506 *branch_p = align_branch_jcc;
8507 if ((align_branch & align_branch_jcc_bit))
8508 add_padding = 1;
8509 }
8510 }
8511 else if (is_any_vex_encoding (&i.tm))
8512 return 0;
8513 else if ((i.tm.base_opcode | 1) == 0xc3)
8514 {
8515 /* Near ret. */
8516 *branch_p = align_branch_ret;
8517 if ((align_branch & align_branch_ret_bit))
8518 add_padding = 1;
8519 }
8520 else
8521 {
8522 /* Check for indirect jmp, direct and indirect calls. */
8523 if (i.tm.base_opcode == 0xe8)
8524 {
8525 /* Direct call. */
8526 *branch_p = align_branch_call;
8527 if ((align_branch & align_branch_call_bit))
8528 add_padding = 1;
8529 }
8530 else if (i.tm.base_opcode == 0xff
8531 && (i.tm.extension_opcode == 2
8532 || i.tm.extension_opcode == 4))
8533 {
8534 /* Indirect call and jmp. */
8535 *branch_p = align_branch_indirect;
8536 if ((align_branch & align_branch_indirect_bit))
8537 add_padding = 1;
8538 }
8539
8540 if (add_padding
8541 && i.disp_operands
8542 && tls_get_addr
8543 && (i.op[0].disps->X_op == O_symbol
8544 || (i.op[0].disps->X_op == O_subtract
8545 && i.op[0].disps->X_op_symbol == GOT_symbol)))
8546 {
8547 symbolS *s = i.op[0].disps->X_add_symbol;
8548 /* No padding to call to global or undefined tls_get_addr. */
8549 if ((S_IS_EXTERNAL (s) || !S_IS_DEFINED (s))
8550 && strcmp (S_GET_NAME (s), tls_get_addr) == 0)
8551 return 0;
8552 }
8553 }
8554
8555 if (add_padding
8556 && last_insn.kind != last_insn_other
8557 && last_insn.seg == now_seg)
8558 {
8559 if (flag_debug)
8560 as_warn_where (last_insn.file, last_insn.line,
8561 _("`%s` skips -malign-branch-boundary on `%s`"),
8562 last_insn.name, i.tm.name);
8563 return 0;
8564 }
8565
8566 return add_padding;
8567}
8568
29b0f896 8569static void
e3bb37b5 8570output_insn (void)
29b0f896 8571{
2bbd9c25
JJ
8572 fragS *insn_start_frag;
8573 offsetT insn_start_off;
e379e5f3
L
8574 fragS *fragP = NULL;
8575 enum align_branch_kind branch = align_branch_none;
2bbd9c25 8576
b4a3a7b4
L
8577#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8578 if (IS_ELF && x86_used_note)
8579 {
8580 if (i.tm.cpu_flags.bitfield.cpucmov)
8581 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_CMOV;
8582 if (i.tm.cpu_flags.bitfield.cpusse)
8583 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE;
8584 if (i.tm.cpu_flags.bitfield.cpusse2)
8585 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE2;
8586 if (i.tm.cpu_flags.bitfield.cpusse3)
8587 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE3;
8588 if (i.tm.cpu_flags.bitfield.cpussse3)
8589 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSSE3;
8590 if (i.tm.cpu_flags.bitfield.cpusse4_1)
8591 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE4_1;
8592 if (i.tm.cpu_flags.bitfield.cpusse4_2)
8593 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE4_2;
8594 if (i.tm.cpu_flags.bitfield.cpuavx)
8595 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX;
8596 if (i.tm.cpu_flags.bitfield.cpuavx2)
8597 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX2;
8598 if (i.tm.cpu_flags.bitfield.cpufma)
8599 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_FMA;
8600 if (i.tm.cpu_flags.bitfield.cpuavx512f)
8601 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512F;
8602 if (i.tm.cpu_flags.bitfield.cpuavx512cd)
8603 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512CD;
8604 if (i.tm.cpu_flags.bitfield.cpuavx512er)
8605 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512ER;
8606 if (i.tm.cpu_flags.bitfield.cpuavx512pf)
8607 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512PF;
8608 if (i.tm.cpu_flags.bitfield.cpuavx512vl)
8609 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512VL;
8610 if (i.tm.cpu_flags.bitfield.cpuavx512dq)
8611 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512DQ;
8612 if (i.tm.cpu_flags.bitfield.cpuavx512bw)
8613 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512BW;
8614 if (i.tm.cpu_flags.bitfield.cpuavx512_4fmaps)
8615 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_4FMAPS;
8616 if (i.tm.cpu_flags.bitfield.cpuavx512_4vnniw)
8617 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_4VNNIW;
8618 if (i.tm.cpu_flags.bitfield.cpuavx512_bitalg)
8619 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_BITALG;
8620 if (i.tm.cpu_flags.bitfield.cpuavx512ifma)
8621 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_IFMA;
8622 if (i.tm.cpu_flags.bitfield.cpuavx512vbmi)
8623 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_VBMI;
8624 if (i.tm.cpu_flags.bitfield.cpuavx512_vbmi2)
8625 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_VBMI2;
8626 if (i.tm.cpu_flags.bitfield.cpuavx512_vnni)
8627 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_VNNI;
462cac58
L
8628 if (i.tm.cpu_flags.bitfield.cpuavx512_bf16)
8629 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_BF16;
b4a3a7b4
L
8630
8631 if (i.tm.cpu_flags.bitfield.cpu8087
8632 || i.tm.cpu_flags.bitfield.cpu287
8633 || i.tm.cpu_flags.bitfield.cpu387
8634 || i.tm.cpu_flags.bitfield.cpu687
8635 || i.tm.cpu_flags.bitfield.cpufisttp)
8636 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X87;
319ff62c
JB
8637 if (i.has_regmmx
8638 || i.tm.base_opcode == 0xf77 /* emms */
a7e12755
L
8639 || i.tm.base_opcode == 0xf0e /* femms */
8640 || i.tm.base_opcode == 0xf2a /* cvtpi2ps */
8641 || i.tm.base_opcode == 0x660f2a /* cvtpi2pd */)
b4a3a7b4
L
8642 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_MMX;
8643 if (i.has_regxmm)
8644 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XMM;
8645 if (i.has_regymm)
8646 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_YMM;
8647 if (i.has_regzmm)
8648 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_ZMM;
8649 if (i.tm.cpu_flags.bitfield.cpufxsr)
8650 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_FXSR;
8651 if (i.tm.cpu_flags.bitfield.cpuxsave)
8652 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVE;
8653 if (i.tm.cpu_flags.bitfield.cpuxsaveopt)
8654 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT;
8655 if (i.tm.cpu_flags.bitfield.cpuxsavec)
8656 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEC;
8657 }
8658#endif
8659
29b0f896
AM
8660 /* Tie dwarf2 debug info to the address at the start of the insn.
8661 We can't do this after the insn has been output as the current
8662 frag may have been closed off. eg. by frag_var. */
8663 dwarf2_emit_insn (0);
8664
2bbd9c25
JJ
8665 insn_start_frag = frag_now;
8666 insn_start_off = frag_now_fix ();
8667
e379e5f3
L
8668 if (add_branch_padding_frag_p (&branch))
8669 {
8670 char *p;
8671 /* Branch can be 8 bytes. Leave some room for prefixes. */
8672 unsigned int max_branch_padding_size = 14;
8673
8674 /* Align section to boundary. */
8675 record_alignment (now_seg, align_branch_power);
8676
8677 /* Make room for padding. */
8678 frag_grow (max_branch_padding_size);
8679
8680 /* Start of the padding. */
8681 p = frag_more (0);
8682
8683 fragP = frag_now;
8684
8685 frag_var (rs_machine_dependent, max_branch_padding_size, 0,
8686 ENCODE_RELAX_STATE (BRANCH_PADDING, 0),
8687 NULL, 0, p);
8688
8689 fragP->tc_frag_data.branch_type = branch;
8690 fragP->tc_frag_data.max_bytes = max_branch_padding_size;
8691 }
8692
29b0f896 8693 /* Output jumps. */
0cfa3eb3 8694 if (i.tm.opcode_modifier.jump == JUMP)
29b0f896 8695 output_branch ();
0cfa3eb3
JB
8696 else if (i.tm.opcode_modifier.jump == JUMP_BYTE
8697 || i.tm.opcode_modifier.jump == JUMP_DWORD)
29b0f896 8698 output_jump ();
0cfa3eb3 8699 else if (i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT)
29b0f896
AM
8700 output_interseg_jump ();
8701 else
8702 {
8703 /* Output normal instructions here. */
8704 char *p;
8705 unsigned char *q;
47465058 8706 unsigned int j;
331d2d0d 8707 unsigned int prefix;
4dffcebc 8708
e4e00185 8709 if (avoid_fence
c3949f43
JB
8710 && (i.tm.base_opcode == 0xfaee8
8711 || i.tm.base_opcode == 0xfaef0
8712 || i.tm.base_opcode == 0xfaef8))
e4e00185
AS
8713 {
8714 /* Encode lfence, mfence, and sfence as
8715 f0 83 04 24 00 lock addl $0x0, (%{re}sp). */
8716 offsetT val = 0x240483f0ULL;
8717 p = frag_more (5);
8718 md_number_to_chars (p, val, 5);
8719 return;
8720 }
8721
d022bddd
IT
8722 /* Some processors fail on LOCK prefix. This options makes
8723 assembler ignore LOCK prefix and serves as a workaround. */
8724 if (omit_lock_prefix)
8725 {
8726 if (i.tm.base_opcode == LOCK_PREFIX_OPCODE)
8727 return;
8728 i.prefix[LOCK_PREFIX] = 0;
8729 }
8730
e379e5f3
L
8731 if (branch)
8732 /* Skip if this is a branch. */
8733 ;
8734 else if (add_fused_jcc_padding_frag_p ())
8735 {
8736 /* Make room for padding. */
8737 frag_grow (MAX_FUSED_JCC_PADDING_SIZE);
8738 p = frag_more (0);
8739
8740 fragP = frag_now;
8741
8742 frag_var (rs_machine_dependent, MAX_FUSED_JCC_PADDING_SIZE, 0,
8743 ENCODE_RELAX_STATE (FUSED_JCC_PADDING, 0),
8744 NULL, 0, p);
8745
8746 fragP->tc_frag_data.branch_type = align_branch_fused;
8747 fragP->tc_frag_data.max_bytes = MAX_FUSED_JCC_PADDING_SIZE;
8748 }
8749 else if (add_branch_prefix_frag_p ())
8750 {
8751 unsigned int max_prefix_size = align_branch_prefix_size;
8752
8753 /* Make room for padding. */
8754 frag_grow (max_prefix_size);
8755 p = frag_more (0);
8756
8757 fragP = frag_now;
8758
8759 frag_var (rs_machine_dependent, max_prefix_size, 0,
8760 ENCODE_RELAX_STATE (BRANCH_PREFIX, 0),
8761 NULL, 0, p);
8762
8763 fragP->tc_frag_data.max_bytes = max_prefix_size;
8764 }
8765
43234a1e
L
8766 /* Since the VEX/EVEX prefix contains the implicit prefix, we
8767 don't need the explicit prefix. */
8768 if (!i.tm.opcode_modifier.vex && !i.tm.opcode_modifier.evex)
bc4bd9ab 8769 {
c0f3af97 8770 switch (i.tm.opcode_length)
bc4bd9ab 8771 {
c0f3af97
L
8772 case 3:
8773 if (i.tm.base_opcode & 0xff000000)
4dffcebc 8774 {
c0f3af97 8775 prefix = (i.tm.base_opcode >> 24) & 0xff;
c3949f43
JB
8776 if (!i.tm.cpu_flags.bitfield.cpupadlock
8777 || prefix != REPE_PREFIX_OPCODE
8778 || (i.prefix[REP_PREFIX] != REPE_PREFIX_OPCODE))
8779 add_prefix (prefix);
c0f3af97
L
8780 }
8781 break;
8782 case 2:
8783 if ((i.tm.base_opcode & 0xff0000) != 0)
8784 {
8785 prefix = (i.tm.base_opcode >> 16) & 0xff;
c3949f43 8786 add_prefix (prefix);
4dffcebc 8787 }
c0f3af97
L
8788 break;
8789 case 1:
8790 break;
390c91cf
L
8791 case 0:
8792 /* Check for pseudo prefixes. */
8793 as_bad_where (insn_start_frag->fr_file,
8794 insn_start_frag->fr_line,
8795 _("pseudo prefix without instruction"));
8796 return;
c0f3af97
L
8797 default:
8798 abort ();
bc4bd9ab 8799 }
c0f3af97 8800
6d19a37a 8801#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
cf61b747
L
8802 /* For x32, add a dummy REX_OPCODE prefix for mov/add with
8803 R_X86_64_GOTTPOFF relocation so that linker can safely
14470f07
L
8804 perform IE->LE optimization. A dummy REX_OPCODE prefix
8805 is also needed for lea with R_X86_64_GOTPC32_TLSDESC
8806 relocation for GDesc -> IE/LE optimization. */
cf61b747
L
8807 if (x86_elf_abi == X86_64_X32_ABI
8808 && i.operands == 2
14470f07
L
8809 && (i.reloc[0] == BFD_RELOC_X86_64_GOTTPOFF
8810 || i.reloc[0] == BFD_RELOC_X86_64_GOTPC32_TLSDESC)
cf61b747
L
8811 && i.prefix[REX_PREFIX] == 0)
8812 add_prefix (REX_OPCODE);
6d19a37a 8813#endif
cf61b747 8814
c0f3af97
L
8815 /* The prefix bytes. */
8816 for (j = ARRAY_SIZE (i.prefix), q = i.prefix; j > 0; j--, q++)
8817 if (*q)
8818 FRAG_APPEND_1_CHAR (*q);
0f10071e 8819 }
ae5c1c7b 8820 else
c0f3af97
L
8821 {
8822 for (j = 0, q = i.prefix; j < ARRAY_SIZE (i.prefix); j++, q++)
8823 if (*q)
8824 switch (j)
8825 {
8826 case REX_PREFIX:
8827 /* REX byte is encoded in VEX prefix. */
8828 break;
8829 case SEG_PREFIX:
8830 case ADDR_PREFIX:
8831 FRAG_APPEND_1_CHAR (*q);
8832 break;
8833 default:
8834 /* There should be no other prefixes for instructions
8835 with VEX prefix. */
8836 abort ();
8837 }
8838
43234a1e
L
8839 /* For EVEX instructions i.vrex should become 0 after
8840 build_evex_prefix. For VEX instructions upper 16 registers
8841 aren't available, so VREX should be 0. */
8842 if (i.vrex)
8843 abort ();
c0f3af97
L
8844 /* Now the VEX prefix. */
8845 p = frag_more (i.vex.length);
8846 for (j = 0; j < i.vex.length; j++)
8847 p[j] = i.vex.bytes[j];
8848 }
252b5132 8849
29b0f896 8850 /* Now the opcode; be careful about word order here! */
4dffcebc 8851 if (i.tm.opcode_length == 1)
29b0f896
AM
8852 {
8853 FRAG_APPEND_1_CHAR (i.tm.base_opcode);
8854 }
8855 else
8856 {
4dffcebc 8857 switch (i.tm.opcode_length)
331d2d0d 8858 {
43234a1e
L
8859 case 4:
8860 p = frag_more (4);
8861 *p++ = (i.tm.base_opcode >> 24) & 0xff;
8862 *p++ = (i.tm.base_opcode >> 16) & 0xff;
8863 break;
4dffcebc 8864 case 3:
331d2d0d
L
8865 p = frag_more (3);
8866 *p++ = (i.tm.base_opcode >> 16) & 0xff;
4dffcebc
L
8867 break;
8868 case 2:
8869 p = frag_more (2);
8870 break;
8871 default:
8872 abort ();
8873 break;
331d2d0d 8874 }
0f10071e 8875
29b0f896
AM
8876 /* Put out high byte first: can't use md_number_to_chars! */
8877 *p++ = (i.tm.base_opcode >> 8) & 0xff;
8878 *p = i.tm.base_opcode & 0xff;
8879 }
3e73aa7c 8880
29b0f896 8881 /* Now the modrm byte and sib byte (if present). */
40fb9820 8882 if (i.tm.opcode_modifier.modrm)
29b0f896 8883 {
4a3523fa
L
8884 FRAG_APPEND_1_CHAR ((i.rm.regmem << 0
8885 | i.rm.reg << 3
8886 | i.rm.mode << 6));
29b0f896
AM
8887 /* If i.rm.regmem == ESP (4)
8888 && i.rm.mode != (Register mode)
8889 && not 16 bit
8890 ==> need second modrm byte. */
8891 if (i.rm.regmem == ESCAPE_TO_TWO_BYTE_ADDRESSING
8892 && i.rm.mode != 3
dc821c5f 8893 && !(i.base_reg && i.base_reg->reg_type.bitfield.word))
4a3523fa
L
8894 FRAG_APPEND_1_CHAR ((i.sib.base << 0
8895 | i.sib.index << 3
8896 | i.sib.scale << 6));
29b0f896 8897 }
3e73aa7c 8898
29b0f896 8899 if (i.disp_operands)
2bbd9c25 8900 output_disp (insn_start_frag, insn_start_off);
3e73aa7c 8901
29b0f896 8902 if (i.imm_operands)
2bbd9c25 8903 output_imm (insn_start_frag, insn_start_off);
9c33702b
JB
8904
8905 /*
8906 * frag_now_fix () returning plain abs_section_offset when we're in the
8907 * absolute section, and abs_section_offset not getting updated as data
8908 * gets added to the frag breaks the logic below.
8909 */
8910 if (now_seg != absolute_section)
8911 {
8912 j = encoding_length (insn_start_frag, insn_start_off, frag_more (0));
8913 if (j > 15)
8914 as_warn (_("instruction length of %u bytes exceeds the limit of 15"),
8915 j);
e379e5f3
L
8916 else if (fragP)
8917 {
8918 /* NB: Don't add prefix with GOTPC relocation since
8919 output_disp() above depends on the fixed encoding
8920 length. Can't add prefix with TLS relocation since
8921 it breaks TLS linker optimization. */
8922 unsigned int max = i.has_gotpc_tls_reloc ? 0 : 15 - j;
8923 /* Prefix count on the current instruction. */
8924 unsigned int count = i.vex.length;
8925 unsigned int k;
8926 for (k = 0; k < ARRAY_SIZE (i.prefix); k++)
8927 /* REX byte is encoded in VEX/EVEX prefix. */
8928 if (i.prefix[k] && (k != REX_PREFIX || !i.vex.length))
8929 count++;
8930
8931 /* Count prefixes for extended opcode maps. */
8932 if (!i.vex.length)
8933 switch (i.tm.opcode_length)
8934 {
8935 case 3:
8936 if (((i.tm.base_opcode >> 16) & 0xff) == 0xf)
8937 {
8938 count++;
8939 switch ((i.tm.base_opcode >> 8) & 0xff)
8940 {
8941 case 0x38:
8942 case 0x3a:
8943 count++;
8944 break;
8945 default:
8946 break;
8947 }
8948 }
8949 break;
8950 case 2:
8951 if (((i.tm.base_opcode >> 8) & 0xff) == 0xf)
8952 count++;
8953 break;
8954 case 1:
8955 break;
8956 default:
8957 abort ();
8958 }
8959
8960 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
8961 == BRANCH_PREFIX)
8962 {
8963 /* Set the maximum prefix size in BRANCH_PREFIX
8964 frag. */
8965 if (fragP->tc_frag_data.max_bytes > max)
8966 fragP->tc_frag_data.max_bytes = max;
8967 if (fragP->tc_frag_data.max_bytes > count)
8968 fragP->tc_frag_data.max_bytes -= count;
8969 else
8970 fragP->tc_frag_data.max_bytes = 0;
8971 }
8972 else
8973 {
8974 /* Remember the maximum prefix size in FUSED_JCC_PADDING
8975 frag. */
8976 unsigned int max_prefix_size;
8977 if (align_branch_prefix_size > max)
8978 max_prefix_size = max;
8979 else
8980 max_prefix_size = align_branch_prefix_size;
8981 if (max_prefix_size > count)
8982 fragP->tc_frag_data.max_prefix_length
8983 = max_prefix_size - count;
8984 }
8985
8986 /* Use existing segment prefix if possible. Use CS
8987 segment prefix in 64-bit mode. In 32-bit mode, use SS
8988 segment prefix with ESP/EBP base register and use DS
8989 segment prefix without ESP/EBP base register. */
8990 if (i.prefix[SEG_PREFIX])
8991 fragP->tc_frag_data.default_prefix = i.prefix[SEG_PREFIX];
8992 else if (flag_code == CODE_64BIT)
8993 fragP->tc_frag_data.default_prefix = CS_PREFIX_OPCODE;
8994 else if (i.base_reg
8995 && (i.base_reg->reg_num == 4
8996 || i.base_reg->reg_num == 5))
8997 fragP->tc_frag_data.default_prefix = SS_PREFIX_OPCODE;
8998 else
8999 fragP->tc_frag_data.default_prefix = DS_PREFIX_OPCODE;
9000 }
9c33702b 9001 }
29b0f896 9002 }
252b5132 9003
e379e5f3
L
9004 /* NB: Don't work with COND_JUMP86 without i386. */
9005 if (align_branch_power
9006 && now_seg != absolute_section
9007 && cpu_arch_flags.bitfield.cpui386)
9008 {
9009 /* Terminate each frag so that we can add prefix and check for
9010 fused jcc. */
9011 frag_wane (frag_now);
9012 frag_new (0);
9013 }
9014
29b0f896
AM
9015#ifdef DEBUG386
9016 if (flag_debug)
9017 {
7b81dfbb 9018 pi ("" /*line*/, &i);
29b0f896
AM
9019 }
9020#endif /* DEBUG386 */
9021}
252b5132 9022
e205caa7
L
9023/* Return the size of the displacement operand N. */
9024
9025static int
9026disp_size (unsigned int n)
9027{
9028 int size = 4;
43234a1e 9029
b5014f7a 9030 if (i.types[n].bitfield.disp64)
40fb9820
L
9031 size = 8;
9032 else if (i.types[n].bitfield.disp8)
9033 size = 1;
9034 else if (i.types[n].bitfield.disp16)
9035 size = 2;
e205caa7
L
9036 return size;
9037}
9038
9039/* Return the size of the immediate operand N. */
9040
9041static int
9042imm_size (unsigned int n)
9043{
9044 int size = 4;
40fb9820
L
9045 if (i.types[n].bitfield.imm64)
9046 size = 8;
9047 else if (i.types[n].bitfield.imm8 || i.types[n].bitfield.imm8s)
9048 size = 1;
9049 else if (i.types[n].bitfield.imm16)
9050 size = 2;
e205caa7
L
9051 return size;
9052}
9053
29b0f896 9054static void
64e74474 9055output_disp (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
9056{
9057 char *p;
9058 unsigned int n;
252b5132 9059
29b0f896
AM
9060 for (n = 0; n < i.operands; n++)
9061 {
b5014f7a 9062 if (operand_type_check (i.types[n], disp))
29b0f896
AM
9063 {
9064 if (i.op[n].disps->X_op == O_constant)
9065 {
e205caa7 9066 int size = disp_size (n);
43234a1e 9067 offsetT val = i.op[n].disps->X_add_number;
252b5132 9068
629cfaf1
JB
9069 val = offset_in_range (val >> (size == 1 ? i.memshift : 0),
9070 size);
29b0f896
AM
9071 p = frag_more (size);
9072 md_number_to_chars (p, val, size);
9073 }
9074 else
9075 {
f86103b7 9076 enum bfd_reloc_code_real reloc_type;
e205caa7 9077 int size = disp_size (n);
40fb9820 9078 int sign = i.types[n].bitfield.disp32s;
29b0f896 9079 int pcrel = (i.flags[n] & Operand_PCrel) != 0;
02a86693 9080 fixS *fixP;
29b0f896 9081
e205caa7 9082 /* We can't have 8 bit displacement here. */
9c2799c2 9083 gas_assert (!i.types[n].bitfield.disp8);
e205caa7 9084
29b0f896
AM
9085 /* The PC relative address is computed relative
9086 to the instruction boundary, so in case immediate
9087 fields follows, we need to adjust the value. */
9088 if (pcrel && i.imm_operands)
9089 {
29b0f896 9090 unsigned int n1;
e205caa7 9091 int sz = 0;
252b5132 9092
29b0f896 9093 for (n1 = 0; n1 < i.operands; n1++)
40fb9820 9094 if (operand_type_check (i.types[n1], imm))
252b5132 9095 {
e205caa7
L
9096 /* Only one immediate is allowed for PC
9097 relative address. */
9c2799c2 9098 gas_assert (sz == 0);
e205caa7
L
9099 sz = imm_size (n1);
9100 i.op[n].disps->X_add_number -= sz;
252b5132 9101 }
29b0f896 9102 /* We should find the immediate. */
9c2799c2 9103 gas_assert (sz != 0);
29b0f896 9104 }
520dc8e8 9105
29b0f896 9106 p = frag_more (size);
d258b828 9107 reloc_type = reloc (size, pcrel, sign, i.reloc[n]);
d6ab8113 9108 if (GOT_symbol
2bbd9c25 9109 && GOT_symbol == i.op[n].disps->X_add_symbol
d6ab8113 9110 && (((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
9111 || reloc_type == BFD_RELOC_X86_64_32S
9112 || (reloc_type == BFD_RELOC_64
9113 && object_64bit))
d6ab8113
JB
9114 && (i.op[n].disps->X_op == O_symbol
9115 || (i.op[n].disps->X_op == O_add
9116 && ((symbol_get_value_expression
9117 (i.op[n].disps->X_op_symbol)->X_op)
9118 == O_subtract))))
9119 || reloc_type == BFD_RELOC_32_PCREL))
2bbd9c25 9120 {
4fa24527 9121 if (!object_64bit)
7b81dfbb
AJ
9122 {
9123 reloc_type = BFD_RELOC_386_GOTPC;
e379e5f3 9124 i.has_gotpc_tls_reloc = TRUE;
d583596c
JB
9125 i.op[n].imms->X_add_number +=
9126 encoding_length (insn_start_frag, insn_start_off, p);
7b81dfbb
AJ
9127 }
9128 else if (reloc_type == BFD_RELOC_64)
9129 reloc_type = BFD_RELOC_X86_64_GOTPC64;
d6ab8113 9130 else
7b81dfbb
AJ
9131 /* Don't do the adjustment for x86-64, as there
9132 the pcrel addressing is relative to the _next_
9133 insn, and that is taken care of in other code. */
d6ab8113 9134 reloc_type = BFD_RELOC_X86_64_GOTPC32;
2bbd9c25 9135 }
e379e5f3
L
9136 else if (align_branch_power)
9137 {
9138 switch (reloc_type)
9139 {
9140 case BFD_RELOC_386_TLS_GD:
9141 case BFD_RELOC_386_TLS_LDM:
9142 case BFD_RELOC_386_TLS_IE:
9143 case BFD_RELOC_386_TLS_IE_32:
9144 case BFD_RELOC_386_TLS_GOTIE:
9145 case BFD_RELOC_386_TLS_GOTDESC:
9146 case BFD_RELOC_386_TLS_DESC_CALL:
9147 case BFD_RELOC_X86_64_TLSGD:
9148 case BFD_RELOC_X86_64_TLSLD:
9149 case BFD_RELOC_X86_64_GOTTPOFF:
9150 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
9151 case BFD_RELOC_X86_64_TLSDESC_CALL:
9152 i.has_gotpc_tls_reloc = TRUE;
9153 default:
9154 break;
9155 }
9156 }
02a86693
L
9157 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal,
9158 size, i.op[n].disps, pcrel,
9159 reloc_type);
9160 /* Check for "call/jmp *mem", "mov mem, %reg",
9161 "test %reg, mem" and "binop mem, %reg" where binop
9162 is one of adc, add, and, cmp, or, sbb, sub, xor
e60f4d3b
L
9163 instructions without data prefix. Always generate
9164 R_386_GOT32X for "sym*GOT" operand in 32-bit mode. */
9165 if (i.prefix[DATA_PREFIX] == 0
9166 && (generate_relax_relocations
9167 || (!object_64bit
9168 && i.rm.mode == 0
9169 && i.rm.regmem == 5))
0cb4071e
L
9170 && (i.rm.mode == 2
9171 || (i.rm.mode == 0 && i.rm.regmem == 5))
2ae4c703 9172 && !is_any_vex_encoding(&i.tm)
02a86693
L
9173 && ((i.operands == 1
9174 && i.tm.base_opcode == 0xff
9175 && (i.rm.reg == 2 || i.rm.reg == 4))
9176 || (i.operands == 2
9177 && (i.tm.base_opcode == 0x8b
9178 || i.tm.base_opcode == 0x85
2ae4c703 9179 || (i.tm.base_opcode & ~0x38) == 0x03))))
02a86693
L
9180 {
9181 if (object_64bit)
9182 {
9183 fixP->fx_tcbit = i.rex != 0;
9184 if (i.base_reg
e968fc9b 9185 && (i.base_reg->reg_num == RegIP))
02a86693
L
9186 fixP->fx_tcbit2 = 1;
9187 }
9188 else
9189 fixP->fx_tcbit2 = 1;
9190 }
29b0f896
AM
9191 }
9192 }
9193 }
9194}
252b5132 9195
29b0f896 9196static void
64e74474 9197output_imm (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
9198{
9199 char *p;
9200 unsigned int n;
252b5132 9201
29b0f896
AM
9202 for (n = 0; n < i.operands; n++)
9203 {
43234a1e
L
9204 /* Skip SAE/RC Imm operand in EVEX. They are already handled. */
9205 if (i.rounding && (int) n == i.rounding->operand)
9206 continue;
9207
40fb9820 9208 if (operand_type_check (i.types[n], imm))
29b0f896
AM
9209 {
9210 if (i.op[n].imms->X_op == O_constant)
9211 {
e205caa7 9212 int size = imm_size (n);
29b0f896 9213 offsetT val;
b4cac588 9214
29b0f896
AM
9215 val = offset_in_range (i.op[n].imms->X_add_number,
9216 size);
9217 p = frag_more (size);
9218 md_number_to_chars (p, val, size);
9219 }
9220 else
9221 {
9222 /* Not absolute_section.
9223 Need a 32-bit fixup (don't support 8bit
9224 non-absolute imms). Try to support other
9225 sizes ... */
f86103b7 9226 enum bfd_reloc_code_real reloc_type;
e205caa7
L
9227 int size = imm_size (n);
9228 int sign;
29b0f896 9229
40fb9820 9230 if (i.types[n].bitfield.imm32s
a7d61044 9231 && (i.suffix == QWORD_MNEM_SUFFIX
40fb9820 9232 || (!i.suffix && i.tm.opcode_modifier.no_lsuf)))
29b0f896 9233 sign = 1;
e205caa7
L
9234 else
9235 sign = 0;
520dc8e8 9236
29b0f896 9237 p = frag_more (size);
d258b828 9238 reloc_type = reloc (size, 0, sign, i.reloc[n]);
f86103b7 9239
2bbd9c25
JJ
9240 /* This is tough to explain. We end up with this one if we
9241 * have operands that look like
9242 * "_GLOBAL_OFFSET_TABLE_+[.-.L284]". The goal here is to
9243 * obtain the absolute address of the GOT, and it is strongly
9244 * preferable from a performance point of view to avoid using
9245 * a runtime relocation for this. The actual sequence of
9246 * instructions often look something like:
9247 *
9248 * call .L66
9249 * .L66:
9250 * popl %ebx
9251 * addl $_GLOBAL_OFFSET_TABLE_+[.-.L66],%ebx
9252 *
9253 * The call and pop essentially return the absolute address
9254 * of the label .L66 and store it in %ebx. The linker itself
9255 * will ultimately change the first operand of the addl so
9256 * that %ebx points to the GOT, but to keep things simple, the
9257 * .o file must have this operand set so that it generates not
9258 * the absolute address of .L66, but the absolute address of
9259 * itself. This allows the linker itself simply treat a GOTPC
9260 * relocation as asking for a pcrel offset to the GOT to be
9261 * added in, and the addend of the relocation is stored in the
9262 * operand field for the instruction itself.
9263 *
9264 * Our job here is to fix the operand so that it would add
9265 * the correct offset so that %ebx would point to itself. The
9266 * thing that is tricky is that .-.L66 will point to the
9267 * beginning of the instruction, so we need to further modify
9268 * the operand so that it will point to itself. There are
9269 * other cases where you have something like:
9270 *
9271 * .long $_GLOBAL_OFFSET_TABLE_+[.-.L66]
9272 *
9273 * and here no correction would be required. Internally in
9274 * the assembler we treat operands of this form as not being
9275 * pcrel since the '.' is explicitly mentioned, and I wonder
9276 * whether it would simplify matters to do it this way. Who
9277 * knows. In earlier versions of the PIC patches, the
9278 * pcrel_adjust field was used to store the correction, but
9279 * since the expression is not pcrel, I felt it would be
9280 * confusing to do it this way. */
9281
d6ab8113 9282 if ((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
9283 || reloc_type == BFD_RELOC_X86_64_32S
9284 || reloc_type == BFD_RELOC_64)
29b0f896
AM
9285 && GOT_symbol
9286 && GOT_symbol == i.op[n].imms->X_add_symbol
9287 && (i.op[n].imms->X_op == O_symbol
9288 || (i.op[n].imms->X_op == O_add
9289 && ((symbol_get_value_expression
9290 (i.op[n].imms->X_op_symbol)->X_op)
9291 == O_subtract))))
9292 {
4fa24527 9293 if (!object_64bit)
d6ab8113 9294 reloc_type = BFD_RELOC_386_GOTPC;
7b81dfbb 9295 else if (size == 4)
d6ab8113 9296 reloc_type = BFD_RELOC_X86_64_GOTPC32;
7b81dfbb
AJ
9297 else if (size == 8)
9298 reloc_type = BFD_RELOC_X86_64_GOTPC64;
e379e5f3 9299 i.has_gotpc_tls_reloc = TRUE;
d583596c
JB
9300 i.op[n].imms->X_add_number +=
9301 encoding_length (insn_start_frag, insn_start_off, p);
29b0f896 9302 }
29b0f896
AM
9303 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
9304 i.op[n].imms, 0, reloc_type);
9305 }
9306 }
9307 }
252b5132
RH
9308}
9309\f
d182319b
JB
9310/* x86_cons_fix_new is called via the expression parsing code when a
9311 reloc is needed. We use this hook to get the correct .got reloc. */
d182319b
JB
9312static int cons_sign = -1;
9313
9314void
e3bb37b5 9315x86_cons_fix_new (fragS *frag, unsigned int off, unsigned int len,
62ebcb5c 9316 expressionS *exp, bfd_reloc_code_real_type r)
d182319b 9317{
d258b828 9318 r = reloc (len, 0, cons_sign, r);
d182319b
JB
9319
9320#ifdef TE_PE
9321 if (exp->X_op == O_secrel)
9322 {
9323 exp->X_op = O_symbol;
9324 r = BFD_RELOC_32_SECREL;
9325 }
9326#endif
9327
9328 fix_new_exp (frag, off, len, exp, 0, r);
9329}
9330
357d1bd8
L
9331/* Export the ABI address size for use by TC_ADDRESS_BYTES for the
9332 purpose of the `.dc.a' internal pseudo-op. */
9333
9334int
9335x86_address_bytes (void)
9336{
9337 if ((stdoutput->arch_info->mach & bfd_mach_x64_32))
9338 return 4;
9339 return stdoutput->arch_info->bits_per_address / 8;
9340}
9341
d382c579
TG
9342#if !(defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined (OBJ_MACH_O)) \
9343 || defined (LEX_AT)
d258b828 9344# define lex_got(reloc, adjust, types) NULL
718ddfc0 9345#else
f3c180ae
AM
9346/* Parse operands of the form
9347 <symbol>@GOTOFF+<nnn>
9348 and similar .plt or .got references.
9349
9350 If we find one, set up the correct relocation in RELOC and copy the
9351 input string, minus the `@GOTOFF' into a malloc'd buffer for
9352 parsing by the calling routine. Return this buffer, and if ADJUST
9353 is non-null set it to the length of the string we removed from the
9354 input line. Otherwise return NULL. */
9355static char *
91d6fa6a 9356lex_got (enum bfd_reloc_code_real *rel,
64e74474 9357 int *adjust,
d258b828 9358 i386_operand_type *types)
f3c180ae 9359{
7b81dfbb
AJ
9360 /* Some of the relocations depend on the size of what field is to
9361 be relocated. But in our callers i386_immediate and i386_displacement
9362 we don't yet know the operand size (this will be set by insn
9363 matching). Hence we record the word32 relocation here,
9364 and adjust the reloc according to the real size in reloc(). */
f3c180ae
AM
9365 static const struct {
9366 const char *str;
cff8d58a 9367 int len;
4fa24527 9368 const enum bfd_reloc_code_real rel[2];
40fb9820 9369 const i386_operand_type types64;
f3c180ae 9370 } gotrel[] = {
8ce3d284 9371#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
9372 { STRING_COMMA_LEN ("SIZE"), { BFD_RELOC_SIZE32,
9373 BFD_RELOC_SIZE32 },
9374 OPERAND_TYPE_IMM32_64 },
8ce3d284 9375#endif
cff8d58a
L
9376 { STRING_COMMA_LEN ("PLTOFF"), { _dummy_first_bfd_reloc_code_real,
9377 BFD_RELOC_X86_64_PLTOFF64 },
40fb9820 9378 OPERAND_TYPE_IMM64 },
cff8d58a
L
9379 { STRING_COMMA_LEN ("PLT"), { BFD_RELOC_386_PLT32,
9380 BFD_RELOC_X86_64_PLT32 },
40fb9820 9381 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9382 { STRING_COMMA_LEN ("GOTPLT"), { _dummy_first_bfd_reloc_code_real,
9383 BFD_RELOC_X86_64_GOTPLT64 },
40fb9820 9384 OPERAND_TYPE_IMM64_DISP64 },
cff8d58a
L
9385 { STRING_COMMA_LEN ("GOTOFF"), { BFD_RELOC_386_GOTOFF,
9386 BFD_RELOC_X86_64_GOTOFF64 },
40fb9820 9387 OPERAND_TYPE_IMM64_DISP64 },
cff8d58a
L
9388 { STRING_COMMA_LEN ("GOTPCREL"), { _dummy_first_bfd_reloc_code_real,
9389 BFD_RELOC_X86_64_GOTPCREL },
40fb9820 9390 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9391 { STRING_COMMA_LEN ("TLSGD"), { BFD_RELOC_386_TLS_GD,
9392 BFD_RELOC_X86_64_TLSGD },
40fb9820 9393 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9394 { STRING_COMMA_LEN ("TLSLDM"), { BFD_RELOC_386_TLS_LDM,
9395 _dummy_first_bfd_reloc_code_real },
40fb9820 9396 OPERAND_TYPE_NONE },
cff8d58a
L
9397 { STRING_COMMA_LEN ("TLSLD"), { _dummy_first_bfd_reloc_code_real,
9398 BFD_RELOC_X86_64_TLSLD },
40fb9820 9399 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9400 { STRING_COMMA_LEN ("GOTTPOFF"), { BFD_RELOC_386_TLS_IE_32,
9401 BFD_RELOC_X86_64_GOTTPOFF },
40fb9820 9402 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9403 { STRING_COMMA_LEN ("TPOFF"), { BFD_RELOC_386_TLS_LE_32,
9404 BFD_RELOC_X86_64_TPOFF32 },
40fb9820 9405 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
cff8d58a
L
9406 { STRING_COMMA_LEN ("NTPOFF"), { BFD_RELOC_386_TLS_LE,
9407 _dummy_first_bfd_reloc_code_real },
40fb9820 9408 OPERAND_TYPE_NONE },
cff8d58a
L
9409 { STRING_COMMA_LEN ("DTPOFF"), { BFD_RELOC_386_TLS_LDO_32,
9410 BFD_RELOC_X86_64_DTPOFF32 },
40fb9820 9411 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
cff8d58a
L
9412 { STRING_COMMA_LEN ("GOTNTPOFF"),{ BFD_RELOC_386_TLS_GOTIE,
9413 _dummy_first_bfd_reloc_code_real },
40fb9820 9414 OPERAND_TYPE_NONE },
cff8d58a
L
9415 { STRING_COMMA_LEN ("INDNTPOFF"),{ BFD_RELOC_386_TLS_IE,
9416 _dummy_first_bfd_reloc_code_real },
40fb9820 9417 OPERAND_TYPE_NONE },
cff8d58a
L
9418 { STRING_COMMA_LEN ("GOT"), { BFD_RELOC_386_GOT32,
9419 BFD_RELOC_X86_64_GOT32 },
40fb9820 9420 OPERAND_TYPE_IMM32_32S_64_DISP32 },
cff8d58a
L
9421 { STRING_COMMA_LEN ("TLSDESC"), { BFD_RELOC_386_TLS_GOTDESC,
9422 BFD_RELOC_X86_64_GOTPC32_TLSDESC },
40fb9820 9423 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9424 { STRING_COMMA_LEN ("TLSCALL"), { BFD_RELOC_386_TLS_DESC_CALL,
9425 BFD_RELOC_X86_64_TLSDESC_CALL },
40fb9820 9426 OPERAND_TYPE_IMM32_32S_DISP32 },
f3c180ae
AM
9427 };
9428 char *cp;
9429 unsigned int j;
9430
d382c579 9431#if defined (OBJ_MAYBE_ELF)
718ddfc0
JB
9432 if (!IS_ELF)
9433 return NULL;
d382c579 9434#endif
718ddfc0 9435
f3c180ae 9436 for (cp = input_line_pointer; *cp != '@'; cp++)
67c11a9b 9437 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
f3c180ae
AM
9438 return NULL;
9439
47465058 9440 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
f3c180ae 9441 {
cff8d58a 9442 int len = gotrel[j].len;
28f81592 9443 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
f3c180ae 9444 {
4fa24527 9445 if (gotrel[j].rel[object_64bit] != 0)
f3c180ae 9446 {
28f81592
AM
9447 int first, second;
9448 char *tmpbuf, *past_reloc;
f3c180ae 9449
91d6fa6a 9450 *rel = gotrel[j].rel[object_64bit];
f3c180ae 9451
3956db08
JB
9452 if (types)
9453 {
9454 if (flag_code != CODE_64BIT)
40fb9820
L
9455 {
9456 types->bitfield.imm32 = 1;
9457 types->bitfield.disp32 = 1;
9458 }
3956db08
JB
9459 else
9460 *types = gotrel[j].types64;
9461 }
9462
8fd4256d 9463 if (j != 0 && GOT_symbol == NULL)
f3c180ae
AM
9464 GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
9465
28f81592 9466 /* The length of the first part of our input line. */
f3c180ae 9467 first = cp - input_line_pointer;
28f81592
AM
9468
9469 /* The second part goes from after the reloc token until
67c11a9b 9470 (and including) an end_of_line char or comma. */
28f81592 9471 past_reloc = cp + 1 + len;
67c11a9b
AM
9472 cp = past_reloc;
9473 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
9474 ++cp;
9475 second = cp + 1 - past_reloc;
28f81592
AM
9476
9477 /* Allocate and copy string. The trailing NUL shouldn't
9478 be necessary, but be safe. */
add39d23 9479 tmpbuf = XNEWVEC (char, first + second + 2);
f3c180ae 9480 memcpy (tmpbuf, input_line_pointer, first);
0787a12d
AM
9481 if (second != 0 && *past_reloc != ' ')
9482 /* Replace the relocation token with ' ', so that
9483 errors like foo@GOTOFF1 will be detected. */
9484 tmpbuf[first++] = ' ';
af89796a
L
9485 else
9486 /* Increment length by 1 if the relocation token is
9487 removed. */
9488 len++;
9489 if (adjust)
9490 *adjust = len;
0787a12d
AM
9491 memcpy (tmpbuf + first, past_reloc, second);
9492 tmpbuf[first + second] = '\0';
f3c180ae
AM
9493 return tmpbuf;
9494 }
9495
4fa24527
JB
9496 as_bad (_("@%s reloc is not supported with %d-bit output format"),
9497 gotrel[j].str, 1 << (5 + object_64bit));
f3c180ae
AM
9498 return NULL;
9499 }
9500 }
9501
9502 /* Might be a symbol version string. Don't as_bad here. */
9503 return NULL;
9504}
4e4f7c87 9505#endif
f3c180ae 9506
a988325c
NC
9507#ifdef TE_PE
9508#ifdef lex_got
9509#undef lex_got
9510#endif
9511/* Parse operands of the form
9512 <symbol>@SECREL32+<nnn>
9513
9514 If we find one, set up the correct relocation in RELOC and copy the
9515 input string, minus the `@SECREL32' into a malloc'd buffer for
9516 parsing by the calling routine. Return this buffer, and if ADJUST
9517 is non-null set it to the length of the string we removed from the
34bca508
L
9518 input line. Otherwise return NULL.
9519
a988325c
NC
9520 This function is copied from the ELF version above adjusted for PE targets. */
9521
9522static char *
9523lex_got (enum bfd_reloc_code_real *rel ATTRIBUTE_UNUSED,
9524 int *adjust ATTRIBUTE_UNUSED,
d258b828 9525 i386_operand_type *types)
a988325c
NC
9526{
9527 static const struct
9528 {
9529 const char *str;
9530 int len;
9531 const enum bfd_reloc_code_real rel[2];
9532 const i386_operand_type types64;
9533 }
9534 gotrel[] =
9535 {
9536 { STRING_COMMA_LEN ("SECREL32"), { BFD_RELOC_32_SECREL,
9537 BFD_RELOC_32_SECREL },
9538 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
9539 };
9540
9541 char *cp;
9542 unsigned j;
9543
9544 for (cp = input_line_pointer; *cp != '@'; cp++)
9545 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
9546 return NULL;
9547
9548 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
9549 {
9550 int len = gotrel[j].len;
9551
9552 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
9553 {
9554 if (gotrel[j].rel[object_64bit] != 0)
9555 {
9556 int first, second;
9557 char *tmpbuf, *past_reloc;
9558
9559 *rel = gotrel[j].rel[object_64bit];
9560 if (adjust)
9561 *adjust = len;
9562
9563 if (types)
9564 {
9565 if (flag_code != CODE_64BIT)
9566 {
9567 types->bitfield.imm32 = 1;
9568 types->bitfield.disp32 = 1;
9569 }
9570 else
9571 *types = gotrel[j].types64;
9572 }
9573
9574 /* The length of the first part of our input line. */
9575 first = cp - input_line_pointer;
9576
9577 /* The second part goes from after the reloc token until
9578 (and including) an end_of_line char or comma. */
9579 past_reloc = cp + 1 + len;
9580 cp = past_reloc;
9581 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
9582 ++cp;
9583 second = cp + 1 - past_reloc;
9584
9585 /* Allocate and copy string. The trailing NUL shouldn't
9586 be necessary, but be safe. */
add39d23 9587 tmpbuf = XNEWVEC (char, first + second + 2);
a988325c
NC
9588 memcpy (tmpbuf, input_line_pointer, first);
9589 if (second != 0 && *past_reloc != ' ')
9590 /* Replace the relocation token with ' ', so that
9591 errors like foo@SECLREL321 will be detected. */
9592 tmpbuf[first++] = ' ';
9593 memcpy (tmpbuf + first, past_reloc, second);
9594 tmpbuf[first + second] = '\0';
9595 return tmpbuf;
9596 }
9597
9598 as_bad (_("@%s reloc is not supported with %d-bit output format"),
9599 gotrel[j].str, 1 << (5 + object_64bit));
9600 return NULL;
9601 }
9602 }
9603
9604 /* Might be a symbol version string. Don't as_bad here. */
9605 return NULL;
9606}
9607
9608#endif /* TE_PE */
9609
62ebcb5c 9610bfd_reloc_code_real_type
e3bb37b5 9611x86_cons (expressionS *exp, int size)
f3c180ae 9612{
62ebcb5c
AM
9613 bfd_reloc_code_real_type got_reloc = NO_RELOC;
9614
ee86248c
JB
9615 intel_syntax = -intel_syntax;
9616
3c7b9c2c 9617 exp->X_md = 0;
4fa24527 9618 if (size == 4 || (object_64bit && size == 8))
f3c180ae
AM
9619 {
9620 /* Handle @GOTOFF and the like in an expression. */
9621 char *save;
9622 char *gotfree_input_line;
4a57f2cf 9623 int adjust = 0;
f3c180ae
AM
9624
9625 save = input_line_pointer;
d258b828 9626 gotfree_input_line = lex_got (&got_reloc, &adjust, NULL);
f3c180ae
AM
9627 if (gotfree_input_line)
9628 input_line_pointer = gotfree_input_line;
9629
9630 expression (exp);
9631
9632 if (gotfree_input_line)
9633 {
9634 /* expression () has merrily parsed up to the end of line,
9635 or a comma - in the wrong buffer. Transfer how far
9636 input_line_pointer has moved to the right buffer. */
9637 input_line_pointer = (save
9638 + (input_line_pointer - gotfree_input_line)
9639 + adjust);
9640 free (gotfree_input_line);
3992d3b7
AM
9641 if (exp->X_op == O_constant
9642 || exp->X_op == O_absent
9643 || exp->X_op == O_illegal
0398aac5 9644 || exp->X_op == O_register
3992d3b7
AM
9645 || exp->X_op == O_big)
9646 {
9647 char c = *input_line_pointer;
9648 *input_line_pointer = 0;
9649 as_bad (_("missing or invalid expression `%s'"), save);
9650 *input_line_pointer = c;
9651 }
b9519cfe
L
9652 else if ((got_reloc == BFD_RELOC_386_PLT32
9653 || got_reloc == BFD_RELOC_X86_64_PLT32)
9654 && exp->X_op != O_symbol)
9655 {
9656 char c = *input_line_pointer;
9657 *input_line_pointer = 0;
9658 as_bad (_("invalid PLT expression `%s'"), save);
9659 *input_line_pointer = c;
9660 }
f3c180ae
AM
9661 }
9662 }
9663 else
9664 expression (exp);
ee86248c
JB
9665
9666 intel_syntax = -intel_syntax;
9667
9668 if (intel_syntax)
9669 i386_intel_simplify (exp);
62ebcb5c
AM
9670
9671 return got_reloc;
f3c180ae 9672}
f3c180ae 9673
9f32dd5b
L
9674static void
9675signed_cons (int size)
6482c264 9676{
d182319b
JB
9677 if (flag_code == CODE_64BIT)
9678 cons_sign = 1;
9679 cons (size);
9680 cons_sign = -1;
6482c264
NC
9681}
9682
d182319b 9683#ifdef TE_PE
6482c264 9684static void
7016a5d5 9685pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
6482c264
NC
9686{
9687 expressionS exp;
9688
9689 do
9690 {
9691 expression (&exp);
9692 if (exp.X_op == O_symbol)
9693 exp.X_op = O_secrel;
9694
9695 emit_expr (&exp, 4);
9696 }
9697 while (*input_line_pointer++ == ',');
9698
9699 input_line_pointer--;
9700 demand_empty_rest_of_line ();
9701}
6482c264
NC
9702#endif
9703
43234a1e
L
9704/* Handle Vector operations. */
9705
9706static char *
9707check_VecOperations (char *op_string, char *op_end)
9708{
9709 const reg_entry *mask;
9710 const char *saved;
9711 char *end_op;
9712
9713 while (*op_string
9714 && (op_end == NULL || op_string < op_end))
9715 {
9716 saved = op_string;
9717 if (*op_string == '{')
9718 {
9719 op_string++;
9720
9721 /* Check broadcasts. */
9722 if (strncmp (op_string, "1to", 3) == 0)
9723 {
9724 int bcst_type;
9725
9726 if (i.broadcast)
9727 goto duplicated_vec_op;
9728
9729 op_string += 3;
9730 if (*op_string == '8')
8e6e0792 9731 bcst_type = 8;
b28d1bda 9732 else if (*op_string == '4')
8e6e0792 9733 bcst_type = 4;
b28d1bda 9734 else if (*op_string == '2')
8e6e0792 9735 bcst_type = 2;
43234a1e
L
9736 else if (*op_string == '1'
9737 && *(op_string+1) == '6')
9738 {
8e6e0792 9739 bcst_type = 16;
43234a1e
L
9740 op_string++;
9741 }
9742 else
9743 {
9744 as_bad (_("Unsupported broadcast: `%s'"), saved);
9745 return NULL;
9746 }
9747 op_string++;
9748
9749 broadcast_op.type = bcst_type;
9750 broadcast_op.operand = this_operand;
1f75763a 9751 broadcast_op.bytes = 0;
43234a1e
L
9752 i.broadcast = &broadcast_op;
9753 }
9754 /* Check masking operation. */
9755 else if ((mask = parse_register (op_string, &end_op)) != NULL)
9756 {
9757 /* k0 can't be used for write mask. */
f74a6307 9758 if (mask->reg_type.bitfield.class != RegMask || !mask->reg_num)
43234a1e 9759 {
6d2cd6b2
JB
9760 as_bad (_("`%s%s' can't be used for write mask"),
9761 register_prefix, mask->reg_name);
43234a1e
L
9762 return NULL;
9763 }
9764
9765 if (!i.mask)
9766 {
9767 mask_op.mask = mask;
9768 mask_op.zeroing = 0;
9769 mask_op.operand = this_operand;
9770 i.mask = &mask_op;
9771 }
9772 else
9773 {
9774 if (i.mask->mask)
9775 goto duplicated_vec_op;
9776
9777 i.mask->mask = mask;
9778
9779 /* Only "{z}" is allowed here. No need to check
9780 zeroing mask explicitly. */
9781 if (i.mask->operand != this_operand)
9782 {
9783 as_bad (_("invalid write mask `%s'"), saved);
9784 return NULL;
9785 }
9786 }
9787
9788 op_string = end_op;
9789 }
9790 /* Check zeroing-flag for masking operation. */
9791 else if (*op_string == 'z')
9792 {
9793 if (!i.mask)
9794 {
9795 mask_op.mask = NULL;
9796 mask_op.zeroing = 1;
9797 mask_op.operand = this_operand;
9798 i.mask = &mask_op;
9799 }
9800 else
9801 {
9802 if (i.mask->zeroing)
9803 {
9804 duplicated_vec_op:
9805 as_bad (_("duplicated `%s'"), saved);
9806 return NULL;
9807 }
9808
9809 i.mask->zeroing = 1;
9810
9811 /* Only "{%k}" is allowed here. No need to check mask
9812 register explicitly. */
9813 if (i.mask->operand != this_operand)
9814 {
9815 as_bad (_("invalid zeroing-masking `%s'"),
9816 saved);
9817 return NULL;
9818 }
9819 }
9820
9821 op_string++;
9822 }
9823 else
9824 goto unknown_vec_op;
9825
9826 if (*op_string != '}')
9827 {
9828 as_bad (_("missing `}' in `%s'"), saved);
9829 return NULL;
9830 }
9831 op_string++;
0ba3a731
L
9832
9833 /* Strip whitespace since the addition of pseudo prefixes
9834 changed how the scrubber treats '{'. */
9835 if (is_space_char (*op_string))
9836 ++op_string;
9837
43234a1e
L
9838 continue;
9839 }
9840 unknown_vec_op:
9841 /* We don't know this one. */
9842 as_bad (_("unknown vector operation: `%s'"), saved);
9843 return NULL;
9844 }
9845
6d2cd6b2
JB
9846 if (i.mask && i.mask->zeroing && !i.mask->mask)
9847 {
9848 as_bad (_("zeroing-masking only allowed with write mask"));
9849 return NULL;
9850 }
9851
43234a1e
L
9852 return op_string;
9853}
9854
252b5132 9855static int
70e41ade 9856i386_immediate (char *imm_start)
252b5132
RH
9857{
9858 char *save_input_line_pointer;
f3c180ae 9859 char *gotfree_input_line;
252b5132 9860 segT exp_seg = 0;
47926f60 9861 expressionS *exp;
40fb9820
L
9862 i386_operand_type types;
9863
0dfbf9d7 9864 operand_type_set (&types, ~0);
252b5132
RH
9865
9866 if (i.imm_operands == MAX_IMMEDIATE_OPERANDS)
9867 {
31b2323c
L
9868 as_bad (_("at most %d immediate operands are allowed"),
9869 MAX_IMMEDIATE_OPERANDS);
252b5132
RH
9870 return 0;
9871 }
9872
9873 exp = &im_expressions[i.imm_operands++];
520dc8e8 9874 i.op[this_operand].imms = exp;
252b5132
RH
9875
9876 if (is_space_char (*imm_start))
9877 ++imm_start;
9878
9879 save_input_line_pointer = input_line_pointer;
9880 input_line_pointer = imm_start;
9881
d258b828 9882 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
9883 if (gotfree_input_line)
9884 input_line_pointer = gotfree_input_line;
252b5132
RH
9885
9886 exp_seg = expression (exp);
9887
83183c0c 9888 SKIP_WHITESPACE ();
43234a1e
L
9889
9890 /* Handle vector operations. */
9891 if (*input_line_pointer == '{')
9892 {
9893 input_line_pointer = check_VecOperations (input_line_pointer,
9894 NULL);
9895 if (input_line_pointer == NULL)
9896 return 0;
9897 }
9898
252b5132 9899 if (*input_line_pointer)
f3c180ae 9900 as_bad (_("junk `%s' after expression"), input_line_pointer);
252b5132
RH
9901
9902 input_line_pointer = save_input_line_pointer;
f3c180ae 9903 if (gotfree_input_line)
ee86248c
JB
9904 {
9905 free (gotfree_input_line);
9906
9907 if (exp->X_op == O_constant || exp->X_op == O_register)
9908 exp->X_op = O_illegal;
9909 }
9910
9911 return i386_finalize_immediate (exp_seg, exp, types, imm_start);
9912}
252b5132 9913
ee86248c
JB
9914static int
9915i386_finalize_immediate (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
9916 i386_operand_type types, const char *imm_start)
9917{
9918 if (exp->X_op == O_absent || exp->X_op == O_illegal || exp->X_op == O_big)
252b5132 9919 {
313c53d1
L
9920 if (imm_start)
9921 as_bad (_("missing or invalid immediate expression `%s'"),
9922 imm_start);
3992d3b7 9923 return 0;
252b5132 9924 }
3e73aa7c 9925 else if (exp->X_op == O_constant)
252b5132 9926 {
47926f60 9927 /* Size it properly later. */
40fb9820 9928 i.types[this_operand].bitfield.imm64 = 1;
13f864ae
L
9929 /* If not 64bit, sign extend val. */
9930 if (flag_code != CODE_64BIT
4eed87de
AM
9931 && (exp->X_add_number & ~(((addressT) 2 << 31) - 1)) == 0)
9932 exp->X_add_number
9933 = (exp->X_add_number ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
252b5132 9934 }
4c63da97 9935#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
f86103b7 9936 else if (OUTPUT_FLAVOR == bfd_target_aout_flavour
31312f95 9937 && exp_seg != absolute_section
47926f60 9938 && exp_seg != text_section
24eab124
AM
9939 && exp_seg != data_section
9940 && exp_seg != bss_section
9941 && exp_seg != undefined_section
f86103b7 9942 && !bfd_is_com_section (exp_seg))
252b5132 9943 {
d0b47220 9944 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
252b5132
RH
9945 return 0;
9946 }
9947#endif
a841bdf5 9948 else if (!intel_syntax && exp_seg == reg_section)
bb8f5920 9949 {
313c53d1
L
9950 if (imm_start)
9951 as_bad (_("illegal immediate register operand %s"), imm_start);
bb8f5920
L
9952 return 0;
9953 }
252b5132
RH
9954 else
9955 {
9956 /* This is an address. The size of the address will be
24eab124 9957 determined later, depending on destination register,
3e73aa7c 9958 suffix, or the default for the section. */
40fb9820
L
9959 i.types[this_operand].bitfield.imm8 = 1;
9960 i.types[this_operand].bitfield.imm16 = 1;
9961 i.types[this_operand].bitfield.imm32 = 1;
9962 i.types[this_operand].bitfield.imm32s = 1;
9963 i.types[this_operand].bitfield.imm64 = 1;
c6fb90c8
L
9964 i.types[this_operand] = operand_type_and (i.types[this_operand],
9965 types);
252b5132
RH
9966 }
9967
9968 return 1;
9969}
9970
551c1ca1 9971static char *
e3bb37b5 9972i386_scale (char *scale)
252b5132 9973{
551c1ca1
AM
9974 offsetT val;
9975 char *save = input_line_pointer;
252b5132 9976
551c1ca1
AM
9977 input_line_pointer = scale;
9978 val = get_absolute_expression ();
9979
9980 switch (val)
252b5132 9981 {
551c1ca1 9982 case 1:
252b5132
RH
9983 i.log2_scale_factor = 0;
9984 break;
551c1ca1 9985 case 2:
252b5132
RH
9986 i.log2_scale_factor = 1;
9987 break;
551c1ca1 9988 case 4:
252b5132
RH
9989 i.log2_scale_factor = 2;
9990 break;
551c1ca1 9991 case 8:
252b5132
RH
9992 i.log2_scale_factor = 3;
9993 break;
9994 default:
a724f0f4
JB
9995 {
9996 char sep = *input_line_pointer;
9997
9998 *input_line_pointer = '\0';
9999 as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
10000 scale);
10001 *input_line_pointer = sep;
10002 input_line_pointer = save;
10003 return NULL;
10004 }
252b5132 10005 }
29b0f896 10006 if (i.log2_scale_factor != 0 && i.index_reg == 0)
252b5132
RH
10007 {
10008 as_warn (_("scale factor of %d without an index register"),
24eab124 10009 1 << i.log2_scale_factor);
252b5132 10010 i.log2_scale_factor = 0;
252b5132 10011 }
551c1ca1
AM
10012 scale = input_line_pointer;
10013 input_line_pointer = save;
10014 return scale;
252b5132
RH
10015}
10016
252b5132 10017static int
e3bb37b5 10018i386_displacement (char *disp_start, char *disp_end)
252b5132 10019{
29b0f896 10020 expressionS *exp;
252b5132
RH
10021 segT exp_seg = 0;
10022 char *save_input_line_pointer;
f3c180ae 10023 char *gotfree_input_line;
40fb9820
L
10024 int override;
10025 i386_operand_type bigdisp, types = anydisp;
3992d3b7 10026 int ret;
252b5132 10027
31b2323c
L
10028 if (i.disp_operands == MAX_MEMORY_OPERANDS)
10029 {
10030 as_bad (_("at most %d displacement operands are allowed"),
10031 MAX_MEMORY_OPERANDS);
10032 return 0;
10033 }
10034
0dfbf9d7 10035 operand_type_set (&bigdisp, 0);
6f2f06be 10036 if (i.jumpabsolute
48bcea9f 10037 || i.types[this_operand].bitfield.baseindex
0cfa3eb3
JB
10038 || (current_templates->start->opcode_modifier.jump != JUMP
10039 && current_templates->start->opcode_modifier.jump != JUMP_DWORD))
e05278af 10040 {
48bcea9f 10041 i386_addressing_mode ();
e05278af 10042 override = (i.prefix[ADDR_PREFIX] != 0);
40fb9820
L
10043 if (flag_code == CODE_64BIT)
10044 {
10045 if (!override)
10046 {
10047 bigdisp.bitfield.disp32s = 1;
10048 bigdisp.bitfield.disp64 = 1;
10049 }
48bcea9f
JB
10050 else
10051 bigdisp.bitfield.disp32 = 1;
40fb9820
L
10052 }
10053 else if ((flag_code == CODE_16BIT) ^ override)
40fb9820 10054 bigdisp.bitfield.disp16 = 1;
48bcea9f
JB
10055 else
10056 bigdisp.bitfield.disp32 = 1;
e05278af
JB
10057 }
10058 else
10059 {
376cd056
JB
10060 /* For PC-relative branches, the width of the displacement may be
10061 dependent upon data size, but is never dependent upon address size.
10062 Also make sure to not unintentionally match against a non-PC-relative
10063 branch template. */
10064 static templates aux_templates;
10065 const insn_template *t = current_templates->start;
10066 bfd_boolean has_intel64 = FALSE;
10067
10068 aux_templates.start = t;
10069 while (++t < current_templates->end)
10070 {
10071 if (t->opcode_modifier.jump
10072 != current_templates->start->opcode_modifier.jump)
10073 break;
4b5aaf5f 10074 if ((t->opcode_modifier.isa64 >= INTEL64))
376cd056
JB
10075 has_intel64 = TRUE;
10076 }
10077 if (t < current_templates->end)
10078 {
10079 aux_templates.end = t;
10080 current_templates = &aux_templates;
10081 }
10082
e05278af 10083 override = (i.prefix[DATA_PREFIX] != 0);
40fb9820
L
10084 if (flag_code == CODE_64BIT)
10085 {
376cd056
JB
10086 if ((override || i.suffix == WORD_MNEM_SUFFIX)
10087 && (!intel64 || !has_intel64))
40fb9820
L
10088 bigdisp.bitfield.disp16 = 1;
10089 else
48bcea9f 10090 bigdisp.bitfield.disp32s = 1;
40fb9820
L
10091 }
10092 else
e05278af
JB
10093 {
10094 if (!override)
10095 override = (i.suffix == (flag_code != CODE_16BIT
10096 ? WORD_MNEM_SUFFIX
10097 : LONG_MNEM_SUFFIX));
40fb9820
L
10098 bigdisp.bitfield.disp32 = 1;
10099 if ((flag_code == CODE_16BIT) ^ override)
10100 {
10101 bigdisp.bitfield.disp32 = 0;
10102 bigdisp.bitfield.disp16 = 1;
10103 }
e05278af 10104 }
e05278af 10105 }
c6fb90c8
L
10106 i.types[this_operand] = operand_type_or (i.types[this_operand],
10107 bigdisp);
252b5132
RH
10108
10109 exp = &disp_expressions[i.disp_operands];
520dc8e8 10110 i.op[this_operand].disps = exp;
252b5132
RH
10111 i.disp_operands++;
10112 save_input_line_pointer = input_line_pointer;
10113 input_line_pointer = disp_start;
10114 END_STRING_AND_SAVE (disp_end);
10115
10116#ifndef GCC_ASM_O_HACK
10117#define GCC_ASM_O_HACK 0
10118#endif
10119#if GCC_ASM_O_HACK
10120 END_STRING_AND_SAVE (disp_end + 1);
40fb9820 10121 if (i.types[this_operand].bitfield.baseIndex
24eab124 10122 && displacement_string_end[-1] == '+')
252b5132
RH
10123 {
10124 /* This hack is to avoid a warning when using the "o"
24eab124
AM
10125 constraint within gcc asm statements.
10126 For instance:
10127
10128 #define _set_tssldt_desc(n,addr,limit,type) \
10129 __asm__ __volatile__ ( \
10130 "movw %w2,%0\n\t" \
10131 "movw %w1,2+%0\n\t" \
10132 "rorl $16,%1\n\t" \
10133 "movb %b1,4+%0\n\t" \
10134 "movb %4,5+%0\n\t" \
10135 "movb $0,6+%0\n\t" \
10136 "movb %h1,7+%0\n\t" \
10137 "rorl $16,%1" \
10138 : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type))
10139
10140 This works great except that the output assembler ends
10141 up looking a bit weird if it turns out that there is
10142 no offset. You end up producing code that looks like:
10143
10144 #APP
10145 movw $235,(%eax)
10146 movw %dx,2+(%eax)
10147 rorl $16,%edx
10148 movb %dl,4+(%eax)
10149 movb $137,5+(%eax)
10150 movb $0,6+(%eax)
10151 movb %dh,7+(%eax)
10152 rorl $16,%edx
10153 #NO_APP
10154
47926f60 10155 So here we provide the missing zero. */
24eab124
AM
10156
10157 *displacement_string_end = '0';
252b5132
RH
10158 }
10159#endif
d258b828 10160 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
10161 if (gotfree_input_line)
10162 input_line_pointer = gotfree_input_line;
252b5132 10163
24eab124 10164 exp_seg = expression (exp);
252b5132 10165
636c26b0
AM
10166 SKIP_WHITESPACE ();
10167 if (*input_line_pointer)
10168 as_bad (_("junk `%s' after expression"), input_line_pointer);
10169#if GCC_ASM_O_HACK
10170 RESTORE_END_STRING (disp_end + 1);
10171#endif
636c26b0 10172 input_line_pointer = save_input_line_pointer;
636c26b0 10173 if (gotfree_input_line)
ee86248c
JB
10174 {
10175 free (gotfree_input_line);
10176
10177 if (exp->X_op == O_constant || exp->X_op == O_register)
10178 exp->X_op = O_illegal;
10179 }
10180
10181 ret = i386_finalize_displacement (exp_seg, exp, types, disp_start);
10182
10183 RESTORE_END_STRING (disp_end);
10184
10185 return ret;
10186}
10187
10188static int
10189i386_finalize_displacement (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
10190 i386_operand_type types, const char *disp_start)
10191{
10192 i386_operand_type bigdisp;
10193 int ret = 1;
636c26b0 10194
24eab124
AM
10195 /* We do this to make sure that the section symbol is in
10196 the symbol table. We will ultimately change the relocation
47926f60 10197 to be relative to the beginning of the section. */
1ae12ab7 10198 if (i.reloc[this_operand] == BFD_RELOC_386_GOTOFF
d6ab8113
JB
10199 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL
10200 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
24eab124 10201 {
636c26b0 10202 if (exp->X_op != O_symbol)
3992d3b7 10203 goto inv_disp;
636c26b0 10204
e5cb08ac 10205 if (S_IS_LOCAL (exp->X_add_symbol)
c64efb4b
L
10206 && S_GET_SEGMENT (exp->X_add_symbol) != undefined_section
10207 && S_GET_SEGMENT (exp->X_add_symbol) != expr_section)
24eab124 10208 section_symbol (S_GET_SEGMENT (exp->X_add_symbol));
24eab124
AM
10209 exp->X_op = O_subtract;
10210 exp->X_op_symbol = GOT_symbol;
1ae12ab7 10211 if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL)
29b0f896 10212 i.reloc[this_operand] = BFD_RELOC_32_PCREL;
d6ab8113
JB
10213 else if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
10214 i.reloc[this_operand] = BFD_RELOC_64;
23df1078 10215 else
29b0f896 10216 i.reloc[this_operand] = BFD_RELOC_32;
24eab124 10217 }
252b5132 10218
3992d3b7
AM
10219 else if (exp->X_op == O_absent
10220 || exp->X_op == O_illegal
ee86248c 10221 || exp->X_op == O_big)
2daf4fd8 10222 {
3992d3b7
AM
10223 inv_disp:
10224 as_bad (_("missing or invalid displacement expression `%s'"),
2daf4fd8 10225 disp_start);
3992d3b7 10226 ret = 0;
2daf4fd8
AM
10227 }
10228
0e1147d9
L
10229 else if (flag_code == CODE_64BIT
10230 && !i.prefix[ADDR_PREFIX]
10231 && exp->X_op == O_constant)
10232 {
10233 /* Since displacement is signed extended to 64bit, don't allow
10234 disp32 and turn off disp32s if they are out of range. */
10235 i.types[this_operand].bitfield.disp32 = 0;
10236 if (!fits_in_signed_long (exp->X_add_number))
10237 {
10238 i.types[this_operand].bitfield.disp32s = 0;
10239 if (i.types[this_operand].bitfield.baseindex)
10240 {
10241 as_bad (_("0x%lx out range of signed 32bit displacement"),
10242 (long) exp->X_add_number);
10243 ret = 0;
10244 }
10245 }
10246 }
10247
4c63da97 10248#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
3992d3b7
AM
10249 else if (exp->X_op != O_constant
10250 && OUTPUT_FLAVOR == bfd_target_aout_flavour
10251 && exp_seg != absolute_section
10252 && exp_seg != text_section
10253 && exp_seg != data_section
10254 && exp_seg != bss_section
10255 && exp_seg != undefined_section
10256 && !bfd_is_com_section (exp_seg))
24eab124 10257 {
d0b47220 10258 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
3992d3b7 10259 ret = 0;
24eab124 10260 }
252b5132 10261#endif
3956db08 10262
48bcea9f
JB
10263 if (current_templates->start->opcode_modifier.jump == JUMP_BYTE
10264 /* Constants get taken care of by optimize_disp(). */
10265 && exp->X_op != O_constant)
10266 i.types[this_operand].bitfield.disp8 = 1;
10267
40fb9820
L
10268 /* Check if this is a displacement only operand. */
10269 bigdisp = i.types[this_operand];
10270 bigdisp.bitfield.disp8 = 0;
10271 bigdisp.bitfield.disp16 = 0;
10272 bigdisp.bitfield.disp32 = 0;
10273 bigdisp.bitfield.disp32s = 0;
10274 bigdisp.bitfield.disp64 = 0;
0dfbf9d7 10275 if (operand_type_all_zero (&bigdisp))
c6fb90c8
L
10276 i.types[this_operand] = operand_type_and (i.types[this_operand],
10277 types);
3956db08 10278
3992d3b7 10279 return ret;
252b5132
RH
10280}
10281
2abc2bec
JB
10282/* Return the active addressing mode, taking address override and
10283 registers forming the address into consideration. Update the
10284 address override prefix if necessary. */
47926f60 10285
2abc2bec
JB
10286static enum flag_code
10287i386_addressing_mode (void)
252b5132 10288{
be05d201
L
10289 enum flag_code addr_mode;
10290
10291 if (i.prefix[ADDR_PREFIX])
10292 addr_mode = flag_code == CODE_32BIT ? CODE_16BIT : CODE_32BIT;
10293 else
10294 {
10295 addr_mode = flag_code;
10296
24eab124 10297#if INFER_ADDR_PREFIX
be05d201
L
10298 if (i.mem_operands == 0)
10299 {
10300 /* Infer address prefix from the first memory operand. */
10301 const reg_entry *addr_reg = i.base_reg;
10302
10303 if (addr_reg == NULL)
10304 addr_reg = i.index_reg;
eecb386c 10305
be05d201
L
10306 if (addr_reg)
10307 {
e968fc9b 10308 if (addr_reg->reg_type.bitfield.dword)
be05d201
L
10309 addr_mode = CODE_32BIT;
10310 else if (flag_code != CODE_64BIT
dc821c5f 10311 && addr_reg->reg_type.bitfield.word)
be05d201
L
10312 addr_mode = CODE_16BIT;
10313
10314 if (addr_mode != flag_code)
10315 {
10316 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
10317 i.prefixes += 1;
10318 /* Change the size of any displacement too. At most one
10319 of Disp16 or Disp32 is set.
10320 FIXME. There doesn't seem to be any real need for
10321 separate Disp16 and Disp32 flags. The same goes for
10322 Imm16 and Imm32. Removing them would probably clean
10323 up the code quite a lot. */
10324 if (flag_code != CODE_64BIT
10325 && (i.types[this_operand].bitfield.disp16
10326 || i.types[this_operand].bitfield.disp32))
10327 i.types[this_operand]
10328 = operand_type_xor (i.types[this_operand], disp16_32);
10329 }
10330 }
10331 }
24eab124 10332#endif
be05d201
L
10333 }
10334
2abc2bec
JB
10335 return addr_mode;
10336}
10337
10338/* Make sure the memory operand we've been dealt is valid.
10339 Return 1 on success, 0 on a failure. */
10340
10341static int
10342i386_index_check (const char *operand_string)
10343{
10344 const char *kind = "base/index";
10345 enum flag_code addr_mode = i386_addressing_mode ();
10346
fc0763e6 10347 if (current_templates->start->opcode_modifier.isstring
c3949f43 10348 && !current_templates->start->cpu_flags.bitfield.cpupadlock
fc0763e6
JB
10349 && (current_templates->end[-1].opcode_modifier.isstring
10350 || i.mem_operands))
10351 {
10352 /* Memory operands of string insns are special in that they only allow
10353 a single register (rDI, rSI, or rBX) as their memory address. */
be05d201
L
10354 const reg_entry *expected_reg;
10355 static const char *di_si[][2] =
10356 {
10357 { "esi", "edi" },
10358 { "si", "di" },
10359 { "rsi", "rdi" }
10360 };
10361 static const char *bx[] = { "ebx", "bx", "rbx" };
fc0763e6
JB
10362
10363 kind = "string address";
10364
8325cc63 10365 if (current_templates->start->opcode_modifier.repprefixok)
fc0763e6 10366 {
51c8edf6
JB
10367 int es_op = current_templates->end[-1].opcode_modifier.isstring
10368 - IS_STRING_ES_OP0;
10369 int op = 0;
fc0763e6 10370
51c8edf6 10371 if (!current_templates->end[-1].operand_types[0].bitfield.baseindex
fc0763e6
JB
10372 || ((!i.mem_operands != !intel_syntax)
10373 && current_templates->end[-1].operand_types[1]
10374 .bitfield.baseindex))
51c8edf6
JB
10375 op = 1;
10376 expected_reg = hash_find (reg_hash, di_si[addr_mode][op == es_op]);
fc0763e6
JB
10377 }
10378 else
be05d201 10379 expected_reg = hash_find (reg_hash, bx[addr_mode]);
fc0763e6 10380
be05d201
L
10381 if (i.base_reg != expected_reg
10382 || i.index_reg
fc0763e6 10383 || operand_type_check (i.types[this_operand], disp))
fc0763e6 10384 {
be05d201
L
10385 /* The second memory operand must have the same size as
10386 the first one. */
10387 if (i.mem_operands
10388 && i.base_reg
10389 && !((addr_mode == CODE_64BIT
dc821c5f 10390 && i.base_reg->reg_type.bitfield.qword)
be05d201 10391 || (addr_mode == CODE_32BIT
dc821c5f
JB
10392 ? i.base_reg->reg_type.bitfield.dword
10393 : i.base_reg->reg_type.bitfield.word)))
be05d201
L
10394 goto bad_address;
10395
fc0763e6
JB
10396 as_warn (_("`%s' is not valid here (expected `%c%s%s%c')"),
10397 operand_string,
10398 intel_syntax ? '[' : '(',
10399 register_prefix,
be05d201 10400 expected_reg->reg_name,
fc0763e6 10401 intel_syntax ? ']' : ')');
be05d201 10402 return 1;
fc0763e6 10403 }
be05d201
L
10404 else
10405 return 1;
10406
10407bad_address:
10408 as_bad (_("`%s' is not a valid %s expression"),
10409 operand_string, kind);
10410 return 0;
3e73aa7c
JH
10411 }
10412 else
10413 {
be05d201
L
10414 if (addr_mode != CODE_16BIT)
10415 {
10416 /* 32-bit/64-bit checks. */
10417 if ((i.base_reg
e968fc9b
JB
10418 && ((addr_mode == CODE_64BIT
10419 ? !i.base_reg->reg_type.bitfield.qword
10420 : !i.base_reg->reg_type.bitfield.dword)
10421 || (i.index_reg && i.base_reg->reg_num == RegIP)
10422 || i.base_reg->reg_num == RegIZ))
be05d201 10423 || (i.index_reg
1b54b8d7
JB
10424 && !i.index_reg->reg_type.bitfield.xmmword
10425 && !i.index_reg->reg_type.bitfield.ymmword
10426 && !i.index_reg->reg_type.bitfield.zmmword
be05d201 10427 && ((addr_mode == CODE_64BIT
e968fc9b
JB
10428 ? !i.index_reg->reg_type.bitfield.qword
10429 : !i.index_reg->reg_type.bitfield.dword)
be05d201
L
10430 || !i.index_reg->reg_type.bitfield.baseindex)))
10431 goto bad_address;
8178be5b
JB
10432
10433 /* bndmk, bndldx, and bndstx have special restrictions. */
10434 if (current_templates->start->base_opcode == 0xf30f1b
10435 || (current_templates->start->base_opcode & ~1) == 0x0f1a)
10436 {
10437 /* They cannot use RIP-relative addressing. */
e968fc9b 10438 if (i.base_reg && i.base_reg->reg_num == RegIP)
8178be5b
JB
10439 {
10440 as_bad (_("`%s' cannot be used here"), operand_string);
10441 return 0;
10442 }
10443
10444 /* bndldx and bndstx ignore their scale factor. */
10445 if (current_templates->start->base_opcode != 0xf30f1b
10446 && i.log2_scale_factor)
10447 as_warn (_("register scaling is being ignored here"));
10448 }
be05d201
L
10449 }
10450 else
3e73aa7c 10451 {
be05d201 10452 /* 16-bit checks. */
3e73aa7c 10453 if ((i.base_reg
dc821c5f 10454 && (!i.base_reg->reg_type.bitfield.word
40fb9820 10455 || !i.base_reg->reg_type.bitfield.baseindex))
3e73aa7c 10456 || (i.index_reg
dc821c5f 10457 && (!i.index_reg->reg_type.bitfield.word
40fb9820 10458 || !i.index_reg->reg_type.bitfield.baseindex
29b0f896
AM
10459 || !(i.base_reg
10460 && i.base_reg->reg_num < 6
10461 && i.index_reg->reg_num >= 6
10462 && i.log2_scale_factor == 0))))
be05d201 10463 goto bad_address;
3e73aa7c
JH
10464 }
10465 }
be05d201 10466 return 1;
24eab124 10467}
252b5132 10468
43234a1e
L
10469/* Handle vector immediates. */
10470
10471static int
10472RC_SAE_immediate (const char *imm_start)
10473{
10474 unsigned int match_found, j;
10475 const char *pstr = imm_start;
10476 expressionS *exp;
10477
10478 if (*pstr != '{')
10479 return 0;
10480
10481 pstr++;
10482 match_found = 0;
10483 for (j = 0; j < ARRAY_SIZE (RC_NamesTable); j++)
10484 {
10485 if (!strncmp (pstr, RC_NamesTable[j].name, RC_NamesTable[j].len))
10486 {
10487 if (!i.rounding)
10488 {
10489 rc_op.type = RC_NamesTable[j].type;
10490 rc_op.operand = this_operand;
10491 i.rounding = &rc_op;
10492 }
10493 else
10494 {
10495 as_bad (_("duplicated `%s'"), imm_start);
10496 return 0;
10497 }
10498 pstr += RC_NamesTable[j].len;
10499 match_found = 1;
10500 break;
10501 }
10502 }
10503 if (!match_found)
10504 return 0;
10505
10506 if (*pstr++ != '}')
10507 {
10508 as_bad (_("Missing '}': '%s'"), imm_start);
10509 return 0;
10510 }
10511 /* RC/SAE immediate string should contain nothing more. */;
10512 if (*pstr != 0)
10513 {
10514 as_bad (_("Junk after '}': '%s'"), imm_start);
10515 return 0;
10516 }
10517
10518 exp = &im_expressions[i.imm_operands++];
10519 i.op[this_operand].imms = exp;
10520
10521 exp->X_op = O_constant;
10522 exp->X_add_number = 0;
10523 exp->X_add_symbol = (symbolS *) 0;
10524 exp->X_op_symbol = (symbolS *) 0;
10525
10526 i.types[this_operand].bitfield.imm8 = 1;
10527 return 1;
10528}
10529
8325cc63
JB
10530/* Only string instructions can have a second memory operand, so
10531 reduce current_templates to just those if it contains any. */
10532static int
10533maybe_adjust_templates (void)
10534{
10535 const insn_template *t;
10536
10537 gas_assert (i.mem_operands == 1);
10538
10539 for (t = current_templates->start; t < current_templates->end; ++t)
10540 if (t->opcode_modifier.isstring)
10541 break;
10542
10543 if (t < current_templates->end)
10544 {
10545 static templates aux_templates;
10546 bfd_boolean recheck;
10547
10548 aux_templates.start = t;
10549 for (; t < current_templates->end; ++t)
10550 if (!t->opcode_modifier.isstring)
10551 break;
10552 aux_templates.end = t;
10553
10554 /* Determine whether to re-check the first memory operand. */
10555 recheck = (aux_templates.start != current_templates->start
10556 || t != current_templates->end);
10557
10558 current_templates = &aux_templates;
10559
10560 if (recheck)
10561 {
10562 i.mem_operands = 0;
10563 if (i.memop1_string != NULL
10564 && i386_index_check (i.memop1_string) == 0)
10565 return 0;
10566 i.mem_operands = 1;
10567 }
10568 }
10569
10570 return 1;
10571}
10572
fc0763e6 10573/* Parse OPERAND_STRING into the i386_insn structure I. Returns zero
47926f60 10574 on error. */
252b5132 10575
252b5132 10576static int
a7619375 10577i386_att_operand (char *operand_string)
252b5132 10578{
af6bdddf
AM
10579 const reg_entry *r;
10580 char *end_op;
24eab124 10581 char *op_string = operand_string;
252b5132 10582
24eab124 10583 if (is_space_char (*op_string))
252b5132
RH
10584 ++op_string;
10585
24eab124 10586 /* We check for an absolute prefix (differentiating,
47926f60 10587 for example, 'jmp pc_relative_label' from 'jmp *absolute_label'. */
24eab124
AM
10588 if (*op_string == ABSOLUTE_PREFIX)
10589 {
10590 ++op_string;
10591 if (is_space_char (*op_string))
10592 ++op_string;
6f2f06be 10593 i.jumpabsolute = TRUE;
24eab124 10594 }
252b5132 10595
47926f60 10596 /* Check if operand is a register. */
4d1bb795 10597 if ((r = parse_register (op_string, &end_op)) != NULL)
24eab124 10598 {
40fb9820
L
10599 i386_operand_type temp;
10600
24eab124
AM
10601 /* Check for a segment override by searching for ':' after a
10602 segment register. */
10603 op_string = end_op;
10604 if (is_space_char (*op_string))
10605 ++op_string;
00cee14f 10606 if (*op_string == ':' && r->reg_type.bitfield.class == SReg)
24eab124
AM
10607 {
10608 switch (r->reg_num)
10609 {
10610 case 0:
10611 i.seg[i.mem_operands] = &es;
10612 break;
10613 case 1:
10614 i.seg[i.mem_operands] = &cs;
10615 break;
10616 case 2:
10617 i.seg[i.mem_operands] = &ss;
10618 break;
10619 case 3:
10620 i.seg[i.mem_operands] = &ds;
10621 break;
10622 case 4:
10623 i.seg[i.mem_operands] = &fs;
10624 break;
10625 case 5:
10626 i.seg[i.mem_operands] = &gs;
10627 break;
10628 }
252b5132 10629
24eab124 10630 /* Skip the ':' and whitespace. */
252b5132
RH
10631 ++op_string;
10632 if (is_space_char (*op_string))
24eab124 10633 ++op_string;
252b5132 10634
24eab124
AM
10635 if (!is_digit_char (*op_string)
10636 && !is_identifier_char (*op_string)
10637 && *op_string != '('
10638 && *op_string != ABSOLUTE_PREFIX)
10639 {
10640 as_bad (_("bad memory operand `%s'"), op_string);
10641 return 0;
10642 }
47926f60 10643 /* Handle case of %es:*foo. */
24eab124
AM
10644 if (*op_string == ABSOLUTE_PREFIX)
10645 {
10646 ++op_string;
10647 if (is_space_char (*op_string))
10648 ++op_string;
6f2f06be 10649 i.jumpabsolute = TRUE;
24eab124
AM
10650 }
10651 goto do_memory_reference;
10652 }
43234a1e
L
10653
10654 /* Handle vector operations. */
10655 if (*op_string == '{')
10656 {
10657 op_string = check_VecOperations (op_string, NULL);
10658 if (op_string == NULL)
10659 return 0;
10660 }
10661
24eab124
AM
10662 if (*op_string)
10663 {
d0b47220 10664 as_bad (_("junk `%s' after register"), op_string);
24eab124
AM
10665 return 0;
10666 }
40fb9820
L
10667 temp = r->reg_type;
10668 temp.bitfield.baseindex = 0;
c6fb90c8
L
10669 i.types[this_operand] = operand_type_or (i.types[this_operand],
10670 temp);
7d5e4556 10671 i.types[this_operand].bitfield.unspecified = 0;
520dc8e8 10672 i.op[this_operand].regs = r;
24eab124
AM
10673 i.reg_operands++;
10674 }
af6bdddf
AM
10675 else if (*op_string == REGISTER_PREFIX)
10676 {
10677 as_bad (_("bad register name `%s'"), op_string);
10678 return 0;
10679 }
24eab124 10680 else if (*op_string == IMMEDIATE_PREFIX)
ce8a8b2f 10681 {
24eab124 10682 ++op_string;
6f2f06be 10683 if (i.jumpabsolute)
24eab124 10684 {
d0b47220 10685 as_bad (_("immediate operand illegal with absolute jump"));
24eab124
AM
10686 return 0;
10687 }
10688 if (!i386_immediate (op_string))
10689 return 0;
10690 }
43234a1e
L
10691 else if (RC_SAE_immediate (operand_string))
10692 {
10693 /* If it is a RC or SAE immediate, do nothing. */
10694 ;
10695 }
24eab124
AM
10696 else if (is_digit_char (*op_string)
10697 || is_identifier_char (*op_string)
d02603dc 10698 || *op_string == '"'
e5cb08ac 10699 || *op_string == '(')
24eab124 10700 {
47926f60 10701 /* This is a memory reference of some sort. */
af6bdddf 10702 char *base_string;
252b5132 10703
47926f60 10704 /* Start and end of displacement string expression (if found). */
eecb386c
AM
10705 char *displacement_string_start;
10706 char *displacement_string_end;
43234a1e 10707 char *vop_start;
252b5132 10708
24eab124 10709 do_memory_reference:
8325cc63
JB
10710 if (i.mem_operands == 1 && !maybe_adjust_templates ())
10711 return 0;
24eab124 10712 if ((i.mem_operands == 1
40fb9820 10713 && !current_templates->start->opcode_modifier.isstring)
24eab124
AM
10714 || i.mem_operands == 2)
10715 {
10716 as_bad (_("too many memory references for `%s'"),
10717 current_templates->start->name);
10718 return 0;
10719 }
252b5132 10720
24eab124
AM
10721 /* Check for base index form. We detect the base index form by
10722 looking for an ')' at the end of the operand, searching
10723 for the '(' matching it, and finding a REGISTER_PREFIX or ','
10724 after the '('. */
af6bdddf 10725 base_string = op_string + strlen (op_string);
c3332e24 10726
43234a1e
L
10727 /* Handle vector operations. */
10728 vop_start = strchr (op_string, '{');
10729 if (vop_start && vop_start < base_string)
10730 {
10731 if (check_VecOperations (vop_start, base_string) == NULL)
10732 return 0;
10733 base_string = vop_start;
10734 }
10735
af6bdddf
AM
10736 --base_string;
10737 if (is_space_char (*base_string))
10738 --base_string;
252b5132 10739
47926f60 10740 /* If we only have a displacement, set-up for it to be parsed later. */
af6bdddf
AM
10741 displacement_string_start = op_string;
10742 displacement_string_end = base_string + 1;
252b5132 10743
24eab124
AM
10744 if (*base_string == ')')
10745 {
af6bdddf 10746 char *temp_string;
24eab124
AM
10747 unsigned int parens_balanced = 1;
10748 /* We've already checked that the number of left & right ()'s are
47926f60 10749 equal, so this loop will not be infinite. */
24eab124
AM
10750 do
10751 {
10752 base_string--;
10753 if (*base_string == ')')
10754 parens_balanced++;
10755 if (*base_string == '(')
10756 parens_balanced--;
10757 }
10758 while (parens_balanced);
c3332e24 10759
af6bdddf 10760 temp_string = base_string;
c3332e24 10761
24eab124 10762 /* Skip past '(' and whitespace. */
252b5132
RH
10763 ++base_string;
10764 if (is_space_char (*base_string))
24eab124 10765 ++base_string;
252b5132 10766
af6bdddf 10767 if (*base_string == ','
4eed87de
AM
10768 || ((i.base_reg = parse_register (base_string, &end_op))
10769 != NULL))
252b5132 10770 {
af6bdddf 10771 displacement_string_end = temp_string;
252b5132 10772
40fb9820 10773 i.types[this_operand].bitfield.baseindex = 1;
252b5132 10774
af6bdddf 10775 if (i.base_reg)
24eab124 10776 {
24eab124
AM
10777 base_string = end_op;
10778 if (is_space_char (*base_string))
10779 ++base_string;
af6bdddf
AM
10780 }
10781
10782 /* There may be an index reg or scale factor here. */
10783 if (*base_string == ',')
10784 {
10785 ++base_string;
10786 if (is_space_char (*base_string))
10787 ++base_string;
10788
4eed87de
AM
10789 if ((i.index_reg = parse_register (base_string, &end_op))
10790 != NULL)
24eab124 10791 {
af6bdddf 10792 base_string = end_op;
24eab124
AM
10793 if (is_space_char (*base_string))
10794 ++base_string;
af6bdddf
AM
10795 if (*base_string == ',')
10796 {
10797 ++base_string;
10798 if (is_space_char (*base_string))
10799 ++base_string;
10800 }
e5cb08ac 10801 else if (*base_string != ')')
af6bdddf 10802 {
4eed87de
AM
10803 as_bad (_("expecting `,' or `)' "
10804 "after index register in `%s'"),
af6bdddf
AM
10805 operand_string);
10806 return 0;
10807 }
24eab124 10808 }
af6bdddf 10809 else if (*base_string == REGISTER_PREFIX)
24eab124 10810 {
f76bf5e0
L
10811 end_op = strchr (base_string, ',');
10812 if (end_op)
10813 *end_op = '\0';
af6bdddf 10814 as_bad (_("bad register name `%s'"), base_string);
24eab124
AM
10815 return 0;
10816 }
252b5132 10817
47926f60 10818 /* Check for scale factor. */
551c1ca1 10819 if (*base_string != ')')
af6bdddf 10820 {
551c1ca1
AM
10821 char *end_scale = i386_scale (base_string);
10822
10823 if (!end_scale)
af6bdddf 10824 return 0;
24eab124 10825
551c1ca1 10826 base_string = end_scale;
af6bdddf
AM
10827 if (is_space_char (*base_string))
10828 ++base_string;
10829 if (*base_string != ')')
10830 {
4eed87de
AM
10831 as_bad (_("expecting `)' "
10832 "after scale factor in `%s'"),
af6bdddf
AM
10833 operand_string);
10834 return 0;
10835 }
10836 }
10837 else if (!i.index_reg)
24eab124 10838 {
4eed87de
AM
10839 as_bad (_("expecting index register or scale factor "
10840 "after `,'; got '%c'"),
af6bdddf 10841 *base_string);
24eab124
AM
10842 return 0;
10843 }
10844 }
af6bdddf 10845 else if (*base_string != ')')
24eab124 10846 {
4eed87de
AM
10847 as_bad (_("expecting `,' or `)' "
10848 "after base register in `%s'"),
af6bdddf 10849 operand_string);
24eab124
AM
10850 return 0;
10851 }
c3332e24 10852 }
af6bdddf 10853 else if (*base_string == REGISTER_PREFIX)
c3332e24 10854 {
f76bf5e0
L
10855 end_op = strchr (base_string, ',');
10856 if (end_op)
10857 *end_op = '\0';
af6bdddf 10858 as_bad (_("bad register name `%s'"), base_string);
24eab124 10859 return 0;
c3332e24 10860 }
24eab124
AM
10861 }
10862
10863 /* If there's an expression beginning the operand, parse it,
10864 assuming displacement_string_start and
10865 displacement_string_end are meaningful. */
10866 if (displacement_string_start != displacement_string_end)
10867 {
10868 if (!i386_displacement (displacement_string_start,
10869 displacement_string_end))
10870 return 0;
10871 }
10872
10873 /* Special case for (%dx) while doing input/output op. */
10874 if (i.base_reg
75e5731b
JB
10875 && i.base_reg->reg_type.bitfield.instance == RegD
10876 && i.base_reg->reg_type.bitfield.word
24eab124
AM
10877 && i.index_reg == 0
10878 && i.log2_scale_factor == 0
10879 && i.seg[i.mem_operands] == 0
40fb9820 10880 && !operand_type_check (i.types[this_operand], disp))
24eab124 10881 {
2fb5be8d 10882 i.types[this_operand] = i.base_reg->reg_type;
24eab124
AM
10883 return 1;
10884 }
10885
eecb386c
AM
10886 if (i386_index_check (operand_string) == 0)
10887 return 0;
c48dadc9 10888 i.flags[this_operand] |= Operand_Mem;
8325cc63
JB
10889 if (i.mem_operands == 0)
10890 i.memop1_string = xstrdup (operand_string);
24eab124
AM
10891 i.mem_operands++;
10892 }
10893 else
ce8a8b2f
AM
10894 {
10895 /* It's not a memory operand; argh! */
24eab124
AM
10896 as_bad (_("invalid char %s beginning operand %d `%s'"),
10897 output_invalid (*op_string),
10898 this_operand + 1,
10899 op_string);
10900 return 0;
10901 }
47926f60 10902 return 1; /* Normal return. */
252b5132
RH
10903}
10904\f
fa94de6b
RM
10905/* Calculate the maximum variable size (i.e., excluding fr_fix)
10906 that an rs_machine_dependent frag may reach. */
10907
10908unsigned int
10909i386_frag_max_var (fragS *frag)
10910{
10911 /* The only relaxable frags are for jumps.
10912 Unconditional jumps can grow by 4 bytes and others by 5 bytes. */
10913 gas_assert (frag->fr_type == rs_machine_dependent);
10914 return TYPE_FROM_RELAX_STATE (frag->fr_subtype) == UNCOND_JUMP ? 4 : 5;
10915}
10916
b084df0b
L
10917#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
10918static int
8dcea932 10919elf_symbol_resolved_in_segment_p (symbolS *fr_symbol, offsetT fr_var)
b084df0b
L
10920{
10921 /* STT_GNU_IFUNC symbol must go through PLT. */
10922 if ((symbol_get_bfdsym (fr_symbol)->flags
10923 & BSF_GNU_INDIRECT_FUNCTION) != 0)
10924 return 0;
10925
10926 if (!S_IS_EXTERNAL (fr_symbol))
10927 /* Symbol may be weak or local. */
10928 return !S_IS_WEAK (fr_symbol);
10929
8dcea932
L
10930 /* Global symbols with non-default visibility can't be preempted. */
10931 if (ELF_ST_VISIBILITY (S_GET_OTHER (fr_symbol)) != STV_DEFAULT)
10932 return 1;
10933
10934 if (fr_var != NO_RELOC)
10935 switch ((enum bfd_reloc_code_real) fr_var)
10936 {
10937 case BFD_RELOC_386_PLT32:
10938 case BFD_RELOC_X86_64_PLT32:
33eaf5de 10939 /* Symbol with PLT relocation may be preempted. */
8dcea932
L
10940 return 0;
10941 default:
10942 abort ();
10943 }
10944
b084df0b
L
10945 /* Global symbols with default visibility in a shared library may be
10946 preempted by another definition. */
8dcea932 10947 return !shared;
b084df0b
L
10948}
10949#endif
10950
e379e5f3
L
10951/* Return the next non-empty frag. */
10952
10953static fragS *
10954i386_next_non_empty_frag (fragS *fragP)
10955{
10956 /* There may be a frag with a ".fill 0" when there is no room in
10957 the current frag for frag_grow in output_insn. */
10958 for (fragP = fragP->fr_next;
10959 (fragP != NULL
10960 && fragP->fr_type == rs_fill
10961 && fragP->fr_fix == 0);
10962 fragP = fragP->fr_next)
10963 ;
10964 return fragP;
10965}
10966
10967/* Return the next jcc frag after BRANCH_PADDING. */
10968
10969static fragS *
10970i386_next_jcc_frag (fragS *fragP)
10971{
10972 if (!fragP)
10973 return NULL;
10974
10975 if (fragP->fr_type == rs_machine_dependent
10976 && (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
10977 == BRANCH_PADDING))
10978 {
10979 fragP = i386_next_non_empty_frag (fragP);
10980 if (fragP->fr_type != rs_machine_dependent)
10981 return NULL;
10982 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == COND_JUMP)
10983 return fragP;
10984 }
10985
10986 return NULL;
10987}
10988
10989/* Classify BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags. */
10990
10991static void
10992i386_classify_machine_dependent_frag (fragS *fragP)
10993{
10994 fragS *cmp_fragP;
10995 fragS *pad_fragP;
10996 fragS *branch_fragP;
10997 fragS *next_fragP;
10998 unsigned int max_prefix_length;
10999
11000 if (fragP->tc_frag_data.classified)
11001 return;
11002
11003 /* First scan for BRANCH_PADDING and FUSED_JCC_PADDING. Convert
11004 FUSED_JCC_PADDING and merge BRANCH_PADDING. */
11005 for (next_fragP = fragP;
11006 next_fragP != NULL;
11007 next_fragP = next_fragP->fr_next)
11008 {
11009 next_fragP->tc_frag_data.classified = 1;
11010 if (next_fragP->fr_type == rs_machine_dependent)
11011 switch (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype))
11012 {
11013 case BRANCH_PADDING:
11014 /* The BRANCH_PADDING frag must be followed by a branch
11015 frag. */
11016 branch_fragP = i386_next_non_empty_frag (next_fragP);
11017 next_fragP->tc_frag_data.u.branch_fragP = branch_fragP;
11018 break;
11019 case FUSED_JCC_PADDING:
11020 /* Check if this is a fused jcc:
11021 FUSED_JCC_PADDING
11022 CMP like instruction
11023 BRANCH_PADDING
11024 COND_JUMP
11025 */
11026 cmp_fragP = i386_next_non_empty_frag (next_fragP);
11027 pad_fragP = i386_next_non_empty_frag (cmp_fragP);
11028 branch_fragP = i386_next_jcc_frag (pad_fragP);
11029 if (branch_fragP)
11030 {
11031 /* The BRANCH_PADDING frag is merged with the
11032 FUSED_JCC_PADDING frag. */
11033 next_fragP->tc_frag_data.u.branch_fragP = branch_fragP;
11034 /* CMP like instruction size. */
11035 next_fragP->tc_frag_data.cmp_size = cmp_fragP->fr_fix;
11036 frag_wane (pad_fragP);
11037 /* Skip to branch_fragP. */
11038 next_fragP = branch_fragP;
11039 }
11040 else if (next_fragP->tc_frag_data.max_prefix_length)
11041 {
11042 /* Turn FUSED_JCC_PADDING into BRANCH_PREFIX if it isn't
11043 a fused jcc. */
11044 next_fragP->fr_subtype
11045 = ENCODE_RELAX_STATE (BRANCH_PREFIX, 0);
11046 next_fragP->tc_frag_data.max_bytes
11047 = next_fragP->tc_frag_data.max_prefix_length;
11048 /* This will be updated in the BRANCH_PREFIX scan. */
11049 next_fragP->tc_frag_data.max_prefix_length = 0;
11050 }
11051 else
11052 frag_wane (next_fragP);
11053 break;
11054 }
11055 }
11056
11057 /* Stop if there is no BRANCH_PREFIX. */
11058 if (!align_branch_prefix_size)
11059 return;
11060
11061 /* Scan for BRANCH_PREFIX. */
11062 for (; fragP != NULL; fragP = fragP->fr_next)
11063 {
11064 if (fragP->fr_type != rs_machine_dependent
11065 || (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
11066 != BRANCH_PREFIX))
11067 continue;
11068
11069 /* Count all BRANCH_PREFIX frags before BRANCH_PADDING and
11070 COND_JUMP_PREFIX. */
11071 max_prefix_length = 0;
11072 for (next_fragP = fragP;
11073 next_fragP != NULL;
11074 next_fragP = next_fragP->fr_next)
11075 {
11076 if (next_fragP->fr_type == rs_fill)
11077 /* Skip rs_fill frags. */
11078 continue;
11079 else if (next_fragP->fr_type != rs_machine_dependent)
11080 /* Stop for all other frags. */
11081 break;
11082
11083 /* rs_machine_dependent frags. */
11084 if (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11085 == BRANCH_PREFIX)
11086 {
11087 /* Count BRANCH_PREFIX frags. */
11088 if (max_prefix_length >= MAX_FUSED_JCC_PADDING_SIZE)
11089 {
11090 max_prefix_length = MAX_FUSED_JCC_PADDING_SIZE;
11091 frag_wane (next_fragP);
11092 }
11093 else
11094 max_prefix_length
11095 += next_fragP->tc_frag_data.max_bytes;
11096 }
11097 else if ((TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11098 == BRANCH_PADDING)
11099 || (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11100 == FUSED_JCC_PADDING))
11101 {
11102 /* Stop at BRANCH_PADDING and FUSED_JCC_PADDING. */
11103 fragP->tc_frag_data.u.padding_fragP = next_fragP;
11104 break;
11105 }
11106 else
11107 /* Stop for other rs_machine_dependent frags. */
11108 break;
11109 }
11110
11111 fragP->tc_frag_data.max_prefix_length = max_prefix_length;
11112
11113 /* Skip to the next frag. */
11114 fragP = next_fragP;
11115 }
11116}
11117
11118/* Compute padding size for
11119
11120 FUSED_JCC_PADDING
11121 CMP like instruction
11122 BRANCH_PADDING
11123 COND_JUMP/UNCOND_JUMP
11124
11125 or
11126
11127 BRANCH_PADDING
11128 COND_JUMP/UNCOND_JUMP
11129 */
11130
11131static int
11132i386_branch_padding_size (fragS *fragP, offsetT address)
11133{
11134 unsigned int offset, size, padding_size;
11135 fragS *branch_fragP = fragP->tc_frag_data.u.branch_fragP;
11136
11137 /* The start address of the BRANCH_PADDING or FUSED_JCC_PADDING frag. */
11138 if (!address)
11139 address = fragP->fr_address;
11140 address += fragP->fr_fix;
11141
11142 /* CMP like instrunction size. */
11143 size = fragP->tc_frag_data.cmp_size;
11144
11145 /* The base size of the branch frag. */
11146 size += branch_fragP->fr_fix;
11147
11148 /* Add opcode and displacement bytes for the rs_machine_dependent
11149 branch frag. */
11150 if (branch_fragP->fr_type == rs_machine_dependent)
11151 size += md_relax_table[branch_fragP->fr_subtype].rlx_length;
11152
11153 /* Check if branch is within boundary and doesn't end at the last
11154 byte. */
11155 offset = address & ((1U << align_branch_power) - 1);
11156 if ((offset + size) >= (1U << align_branch_power))
11157 /* Padding needed to avoid crossing boundary. */
11158 padding_size = (1U << align_branch_power) - offset;
11159 else
11160 /* No padding needed. */
11161 padding_size = 0;
11162
11163 /* The return value may be saved in tc_frag_data.length which is
11164 unsigned byte. */
11165 if (!fits_in_unsigned_byte (padding_size))
11166 abort ();
11167
11168 return padding_size;
11169}
11170
11171/* i386_generic_table_relax_frag()
11172
11173 Handle BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags to
11174 grow/shrink padding to align branch frags. Hand others to
11175 relax_frag(). */
11176
11177long
11178i386_generic_table_relax_frag (segT segment, fragS *fragP, long stretch)
11179{
11180 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11181 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
11182 {
11183 long padding_size = i386_branch_padding_size (fragP, 0);
11184 long grow = padding_size - fragP->tc_frag_data.length;
11185
11186 /* When the BRANCH_PREFIX frag is used, the computed address
11187 must match the actual address and there should be no padding. */
11188 if (fragP->tc_frag_data.padding_address
11189 && (fragP->tc_frag_data.padding_address != fragP->fr_address
11190 || padding_size))
11191 abort ();
11192
11193 /* Update the padding size. */
11194 if (grow)
11195 fragP->tc_frag_data.length = padding_size;
11196
11197 return grow;
11198 }
11199 else if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11200 {
11201 fragS *padding_fragP, *next_fragP;
11202 long padding_size, left_size, last_size;
11203
11204 padding_fragP = fragP->tc_frag_data.u.padding_fragP;
11205 if (!padding_fragP)
11206 /* Use the padding set by the leading BRANCH_PREFIX frag. */
11207 return (fragP->tc_frag_data.length
11208 - fragP->tc_frag_data.last_length);
11209
11210 /* Compute the relative address of the padding frag in the very
11211 first time where the BRANCH_PREFIX frag sizes are zero. */
11212 if (!fragP->tc_frag_data.padding_address)
11213 fragP->tc_frag_data.padding_address
11214 = padding_fragP->fr_address - (fragP->fr_address - stretch);
11215
11216 /* First update the last length from the previous interation. */
11217 left_size = fragP->tc_frag_data.prefix_length;
11218 for (next_fragP = fragP;
11219 next_fragP != padding_fragP;
11220 next_fragP = next_fragP->fr_next)
11221 if (next_fragP->fr_type == rs_machine_dependent
11222 && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11223 == BRANCH_PREFIX))
11224 {
11225 if (left_size)
11226 {
11227 int max = next_fragP->tc_frag_data.max_bytes;
11228 if (max)
11229 {
11230 int size;
11231 if (max > left_size)
11232 size = left_size;
11233 else
11234 size = max;
11235 left_size -= size;
11236 next_fragP->tc_frag_data.last_length = size;
11237 }
11238 }
11239 else
11240 next_fragP->tc_frag_data.last_length = 0;
11241 }
11242
11243 /* Check the padding size for the padding frag. */
11244 padding_size = i386_branch_padding_size
11245 (padding_fragP, (fragP->fr_address
11246 + fragP->tc_frag_data.padding_address));
11247
11248 last_size = fragP->tc_frag_data.prefix_length;
11249 /* Check if there is change from the last interation. */
11250 if (padding_size == last_size)
11251 {
11252 /* Update the expected address of the padding frag. */
11253 padding_fragP->tc_frag_data.padding_address
11254 = (fragP->fr_address + padding_size
11255 + fragP->tc_frag_data.padding_address);
11256 return 0;
11257 }
11258
11259 if (padding_size > fragP->tc_frag_data.max_prefix_length)
11260 {
11261 /* No padding if there is no sufficient room. Clear the
11262 expected address of the padding frag. */
11263 padding_fragP->tc_frag_data.padding_address = 0;
11264 padding_size = 0;
11265 }
11266 else
11267 /* Store the expected address of the padding frag. */
11268 padding_fragP->tc_frag_data.padding_address
11269 = (fragP->fr_address + padding_size
11270 + fragP->tc_frag_data.padding_address);
11271
11272 fragP->tc_frag_data.prefix_length = padding_size;
11273
11274 /* Update the length for the current interation. */
11275 left_size = padding_size;
11276 for (next_fragP = fragP;
11277 next_fragP != padding_fragP;
11278 next_fragP = next_fragP->fr_next)
11279 if (next_fragP->fr_type == rs_machine_dependent
11280 && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11281 == BRANCH_PREFIX))
11282 {
11283 if (left_size)
11284 {
11285 int max = next_fragP->tc_frag_data.max_bytes;
11286 if (max)
11287 {
11288 int size;
11289 if (max > left_size)
11290 size = left_size;
11291 else
11292 size = max;
11293 left_size -= size;
11294 next_fragP->tc_frag_data.length = size;
11295 }
11296 }
11297 else
11298 next_fragP->tc_frag_data.length = 0;
11299 }
11300
11301 return (fragP->tc_frag_data.length
11302 - fragP->tc_frag_data.last_length);
11303 }
11304 return relax_frag (segment, fragP, stretch);
11305}
11306
ee7fcc42
AM
11307/* md_estimate_size_before_relax()
11308
11309 Called just before relax() for rs_machine_dependent frags. The x86
11310 assembler uses these frags to handle variable size jump
11311 instructions.
11312
11313 Any symbol that is now undefined will not become defined.
11314 Return the correct fr_subtype in the frag.
11315 Return the initial "guess for variable size of frag" to caller.
11316 The guess is actually the growth beyond the fixed part. Whatever
11317 we do to grow the fixed or variable part contributes to our
11318 returned value. */
11319
252b5132 11320int
7016a5d5 11321md_estimate_size_before_relax (fragS *fragP, segT segment)
252b5132 11322{
e379e5f3
L
11323 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11324 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX
11325 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
11326 {
11327 i386_classify_machine_dependent_frag (fragP);
11328 return fragP->tc_frag_data.length;
11329 }
11330
252b5132 11331 /* We've already got fragP->fr_subtype right; all we have to do is
b98ef147
AM
11332 check for un-relaxable symbols. On an ELF system, we can't relax
11333 an externally visible symbol, because it may be overridden by a
11334 shared library. */
11335 if (S_GET_SEGMENT (fragP->fr_symbol) != segment
6d249963 11336#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 11337 || (IS_ELF
8dcea932
L
11338 && !elf_symbol_resolved_in_segment_p (fragP->fr_symbol,
11339 fragP->fr_var))
fbeb56a4
DK
11340#endif
11341#if defined (OBJ_COFF) && defined (TE_PE)
7ab9ffdd 11342 || (OUTPUT_FLAVOR == bfd_target_coff_flavour
fbeb56a4 11343 && S_IS_WEAK (fragP->fr_symbol))
b98ef147
AM
11344#endif
11345 )
252b5132 11346 {
b98ef147
AM
11347 /* Symbol is undefined in this segment, or we need to keep a
11348 reloc so that weak symbols can be overridden. */
11349 int size = (fragP->fr_subtype & CODE16) ? 2 : 4;
f86103b7 11350 enum bfd_reloc_code_real reloc_type;
ee7fcc42
AM
11351 unsigned char *opcode;
11352 int old_fr_fix;
f6af82bd 11353
ee7fcc42 11354 if (fragP->fr_var != NO_RELOC)
1e9cc1c2 11355 reloc_type = (enum bfd_reloc_code_real) fragP->fr_var;
b98ef147 11356 else if (size == 2)
f6af82bd 11357 reloc_type = BFD_RELOC_16_PCREL;
bd7ab16b
L
11358#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11359 else if (need_plt32_p (fragP->fr_symbol))
11360 reloc_type = BFD_RELOC_X86_64_PLT32;
11361#endif
f6af82bd
AM
11362 else
11363 reloc_type = BFD_RELOC_32_PCREL;
252b5132 11364
ee7fcc42
AM
11365 old_fr_fix = fragP->fr_fix;
11366 opcode = (unsigned char *) fragP->fr_opcode;
11367
fddf5b5b 11368 switch (TYPE_FROM_RELAX_STATE (fragP->fr_subtype))
252b5132 11369 {
fddf5b5b
AM
11370 case UNCOND_JUMP:
11371 /* Make jmp (0xeb) a (d)word displacement jump. */
47926f60 11372 opcode[0] = 0xe9;
252b5132 11373 fragP->fr_fix += size;
062cd5e7
AS
11374 fix_new (fragP, old_fr_fix, size,
11375 fragP->fr_symbol,
11376 fragP->fr_offset, 1,
11377 reloc_type);
252b5132
RH
11378 break;
11379
fddf5b5b 11380 case COND_JUMP86:
412167cb
AM
11381 if (size == 2
11382 && (!no_cond_jump_promotion || fragP->fr_var != NO_RELOC))
fddf5b5b
AM
11383 {
11384 /* Negate the condition, and branch past an
11385 unconditional jump. */
11386 opcode[0] ^= 1;
11387 opcode[1] = 3;
11388 /* Insert an unconditional jump. */
11389 opcode[2] = 0xe9;
11390 /* We added two extra opcode bytes, and have a two byte
11391 offset. */
11392 fragP->fr_fix += 2 + 2;
062cd5e7
AS
11393 fix_new (fragP, old_fr_fix + 2, 2,
11394 fragP->fr_symbol,
11395 fragP->fr_offset, 1,
11396 reloc_type);
fddf5b5b
AM
11397 break;
11398 }
11399 /* Fall through. */
11400
11401 case COND_JUMP:
412167cb
AM
11402 if (no_cond_jump_promotion && fragP->fr_var == NO_RELOC)
11403 {
3e02c1cc
AM
11404 fixS *fixP;
11405
412167cb 11406 fragP->fr_fix += 1;
3e02c1cc
AM
11407 fixP = fix_new (fragP, old_fr_fix, 1,
11408 fragP->fr_symbol,
11409 fragP->fr_offset, 1,
11410 BFD_RELOC_8_PCREL);
11411 fixP->fx_signed = 1;
412167cb
AM
11412 break;
11413 }
93c2a809 11414
24eab124 11415 /* This changes the byte-displacement jump 0x7N
fddf5b5b 11416 to the (d)word-displacement jump 0x0f,0x8N. */
252b5132 11417 opcode[1] = opcode[0] + 0x10;
f6af82bd 11418 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
47926f60
KH
11419 /* We've added an opcode byte. */
11420 fragP->fr_fix += 1 + size;
062cd5e7
AS
11421 fix_new (fragP, old_fr_fix + 1, size,
11422 fragP->fr_symbol,
11423 fragP->fr_offset, 1,
11424 reloc_type);
252b5132 11425 break;
fddf5b5b
AM
11426
11427 default:
11428 BAD_CASE (fragP->fr_subtype);
11429 break;
252b5132
RH
11430 }
11431 frag_wane (fragP);
ee7fcc42 11432 return fragP->fr_fix - old_fr_fix;
252b5132 11433 }
93c2a809 11434
93c2a809
AM
11435 /* Guess size depending on current relax state. Initially the relax
11436 state will correspond to a short jump and we return 1, because
11437 the variable part of the frag (the branch offset) is one byte
11438 long. However, we can relax a section more than once and in that
11439 case we must either set fr_subtype back to the unrelaxed state,
11440 or return the value for the appropriate branch. */
11441 return md_relax_table[fragP->fr_subtype].rlx_length;
ee7fcc42
AM
11442}
11443
47926f60
KH
11444/* Called after relax() is finished.
11445
11446 In: Address of frag.
11447 fr_type == rs_machine_dependent.
11448 fr_subtype is what the address relaxed to.
11449
11450 Out: Any fixSs and constants are set up.
11451 Caller will turn frag into a ".space 0". */
11452
252b5132 11453void
7016a5d5
TG
11454md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec ATTRIBUTE_UNUSED,
11455 fragS *fragP)
252b5132 11456{
29b0f896 11457 unsigned char *opcode;
252b5132 11458 unsigned char *where_to_put_displacement = NULL;
847f7ad4
AM
11459 offsetT target_address;
11460 offsetT opcode_address;
252b5132 11461 unsigned int extension = 0;
847f7ad4 11462 offsetT displacement_from_opcode_start;
252b5132 11463
e379e5f3
L
11464 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11465 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING
11466 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11467 {
11468 /* Generate nop padding. */
11469 unsigned int size = fragP->tc_frag_data.length;
11470 if (size)
11471 {
11472 if (size > fragP->tc_frag_data.max_bytes)
11473 abort ();
11474
11475 if (flag_debug)
11476 {
11477 const char *msg;
11478 const char *branch = "branch";
11479 const char *prefix = "";
11480 fragS *padding_fragP;
11481 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
11482 == BRANCH_PREFIX)
11483 {
11484 padding_fragP = fragP->tc_frag_data.u.padding_fragP;
11485 switch (fragP->tc_frag_data.default_prefix)
11486 {
11487 default:
11488 abort ();
11489 break;
11490 case CS_PREFIX_OPCODE:
11491 prefix = " cs";
11492 break;
11493 case DS_PREFIX_OPCODE:
11494 prefix = " ds";
11495 break;
11496 case ES_PREFIX_OPCODE:
11497 prefix = " es";
11498 break;
11499 case FS_PREFIX_OPCODE:
11500 prefix = " fs";
11501 break;
11502 case GS_PREFIX_OPCODE:
11503 prefix = " gs";
11504 break;
11505 case SS_PREFIX_OPCODE:
11506 prefix = " ss";
11507 break;
11508 }
11509 if (padding_fragP)
11510 msg = _("%s:%u: add %d%s at 0x%llx to align "
11511 "%s within %d-byte boundary\n");
11512 else
11513 msg = _("%s:%u: add additional %d%s at 0x%llx to "
11514 "align %s within %d-byte boundary\n");
11515 }
11516 else
11517 {
11518 padding_fragP = fragP;
11519 msg = _("%s:%u: add %d%s-byte nop at 0x%llx to align "
11520 "%s within %d-byte boundary\n");
11521 }
11522
11523 if (padding_fragP)
11524 switch (padding_fragP->tc_frag_data.branch_type)
11525 {
11526 case align_branch_jcc:
11527 branch = "jcc";
11528 break;
11529 case align_branch_fused:
11530 branch = "fused jcc";
11531 break;
11532 case align_branch_jmp:
11533 branch = "jmp";
11534 break;
11535 case align_branch_call:
11536 branch = "call";
11537 break;
11538 case align_branch_indirect:
11539 branch = "indiret branch";
11540 break;
11541 case align_branch_ret:
11542 branch = "ret";
11543 break;
11544 default:
11545 break;
11546 }
11547
11548 fprintf (stdout, msg,
11549 fragP->fr_file, fragP->fr_line, size, prefix,
11550 (long long) fragP->fr_address, branch,
11551 1 << align_branch_power);
11552 }
11553 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11554 memset (fragP->fr_opcode,
11555 fragP->tc_frag_data.default_prefix, size);
11556 else
11557 i386_generate_nops (fragP, (char *) fragP->fr_opcode,
11558 size, 0);
11559 fragP->fr_fix += size;
11560 }
11561 return;
11562 }
11563
252b5132
RH
11564 opcode = (unsigned char *) fragP->fr_opcode;
11565
47926f60 11566 /* Address we want to reach in file space. */
252b5132 11567 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
252b5132 11568
47926f60 11569 /* Address opcode resides at in file space. */
252b5132
RH
11570 opcode_address = fragP->fr_address + fragP->fr_fix;
11571
47926f60 11572 /* Displacement from opcode start to fill into instruction. */
252b5132
RH
11573 displacement_from_opcode_start = target_address - opcode_address;
11574
fddf5b5b 11575 if ((fragP->fr_subtype & BIG) == 0)
252b5132 11576 {
47926f60
KH
11577 /* Don't have to change opcode. */
11578 extension = 1; /* 1 opcode + 1 displacement */
252b5132 11579 where_to_put_displacement = &opcode[1];
fddf5b5b
AM
11580 }
11581 else
11582 {
11583 if (no_cond_jump_promotion
11584 && TYPE_FROM_RELAX_STATE (fragP->fr_subtype) != UNCOND_JUMP)
4eed87de
AM
11585 as_warn_where (fragP->fr_file, fragP->fr_line,
11586 _("long jump required"));
252b5132 11587
fddf5b5b
AM
11588 switch (fragP->fr_subtype)
11589 {
11590 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG):
11591 extension = 4; /* 1 opcode + 4 displacement */
11592 opcode[0] = 0xe9;
11593 where_to_put_displacement = &opcode[1];
11594 break;
252b5132 11595
fddf5b5b
AM
11596 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16):
11597 extension = 2; /* 1 opcode + 2 displacement */
11598 opcode[0] = 0xe9;
11599 where_to_put_displacement = &opcode[1];
11600 break;
252b5132 11601
fddf5b5b
AM
11602 case ENCODE_RELAX_STATE (COND_JUMP, BIG):
11603 case ENCODE_RELAX_STATE (COND_JUMP86, BIG):
11604 extension = 5; /* 2 opcode + 4 displacement */
11605 opcode[1] = opcode[0] + 0x10;
11606 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
11607 where_to_put_displacement = &opcode[2];
11608 break;
252b5132 11609
fddf5b5b
AM
11610 case ENCODE_RELAX_STATE (COND_JUMP, BIG16):
11611 extension = 3; /* 2 opcode + 2 displacement */
11612 opcode[1] = opcode[0] + 0x10;
11613 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
11614 where_to_put_displacement = &opcode[2];
11615 break;
252b5132 11616
fddf5b5b
AM
11617 case ENCODE_RELAX_STATE (COND_JUMP86, BIG16):
11618 extension = 4;
11619 opcode[0] ^= 1;
11620 opcode[1] = 3;
11621 opcode[2] = 0xe9;
11622 where_to_put_displacement = &opcode[3];
11623 break;
11624
11625 default:
11626 BAD_CASE (fragP->fr_subtype);
11627 break;
11628 }
252b5132 11629 }
fddf5b5b 11630
7b81dfbb
AJ
11631 /* If size if less then four we are sure that the operand fits,
11632 but if it's 4, then it could be that the displacement is larger
11633 then -/+ 2GB. */
11634 if (DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype) == 4
11635 && object_64bit
11636 && ((addressT) (displacement_from_opcode_start - extension
4eed87de
AM
11637 + ((addressT) 1 << 31))
11638 > (((addressT) 2 << 31) - 1)))
7b81dfbb
AJ
11639 {
11640 as_bad_where (fragP->fr_file, fragP->fr_line,
11641 _("jump target out of range"));
11642 /* Make us emit 0. */
11643 displacement_from_opcode_start = extension;
11644 }
47926f60 11645 /* Now put displacement after opcode. */
252b5132
RH
11646 md_number_to_chars ((char *) where_to_put_displacement,
11647 (valueT) (displacement_from_opcode_start - extension),
fddf5b5b 11648 DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
252b5132
RH
11649 fragP->fr_fix += extension;
11650}
11651\f
7016a5d5 11652/* Apply a fixup (fixP) to segment data, once it has been determined
252b5132
RH
11653 by our caller that we have all the info we need to fix it up.
11654
7016a5d5
TG
11655 Parameter valP is the pointer to the value of the bits.
11656
252b5132
RH
11657 On the 386, immediates, displacements, and data pointers are all in
11658 the same (little-endian) format, so we don't need to care about which
11659 we are handling. */
11660
94f592af 11661void
7016a5d5 11662md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 11663{
94f592af 11664 char *p = fixP->fx_where + fixP->fx_frag->fr_literal;
c6682705 11665 valueT value = *valP;
252b5132 11666
f86103b7 11667#if !defined (TE_Mach)
93382f6d
AM
11668 if (fixP->fx_pcrel)
11669 {
11670 switch (fixP->fx_r_type)
11671 {
5865bb77
ILT
11672 default:
11673 break;
11674
d6ab8113
JB
11675 case BFD_RELOC_64:
11676 fixP->fx_r_type = BFD_RELOC_64_PCREL;
11677 break;
93382f6d 11678 case BFD_RELOC_32:
ae8887b5 11679 case BFD_RELOC_X86_64_32S:
93382f6d
AM
11680 fixP->fx_r_type = BFD_RELOC_32_PCREL;
11681 break;
11682 case BFD_RELOC_16:
11683 fixP->fx_r_type = BFD_RELOC_16_PCREL;
11684 break;
11685 case BFD_RELOC_8:
11686 fixP->fx_r_type = BFD_RELOC_8_PCREL;
11687 break;
11688 }
11689 }
252b5132 11690
a161fe53 11691 if (fixP->fx_addsy != NULL
31312f95 11692 && (fixP->fx_r_type == BFD_RELOC_32_PCREL
d6ab8113 11693 || fixP->fx_r_type == BFD_RELOC_64_PCREL
31312f95 11694 || fixP->fx_r_type == BFD_RELOC_16_PCREL
d258b828 11695 || fixP->fx_r_type == BFD_RELOC_8_PCREL)
31312f95 11696 && !use_rela_relocations)
252b5132 11697 {
31312f95
AM
11698 /* This is a hack. There should be a better way to handle this.
11699 This covers for the fact that bfd_install_relocation will
11700 subtract the current location (for partial_inplace, PC relative
11701 relocations); see more below. */
252b5132 11702#ifndef OBJ_AOUT
718ddfc0 11703 if (IS_ELF
252b5132
RH
11704#ifdef TE_PE
11705 || OUTPUT_FLAVOR == bfd_target_coff_flavour
11706#endif
11707 )
11708 value += fixP->fx_where + fixP->fx_frag->fr_address;
11709#endif
11710#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 11711 if (IS_ELF)
252b5132 11712 {
6539b54b 11713 segT sym_seg = S_GET_SEGMENT (fixP->fx_addsy);
2f66722d 11714
6539b54b 11715 if ((sym_seg == seg
2f66722d 11716 || (symbol_section_p (fixP->fx_addsy)
6539b54b 11717 && sym_seg != absolute_section))
af65af87 11718 && !generic_force_reloc (fixP))
2f66722d
AM
11719 {
11720 /* Yes, we add the values in twice. This is because
6539b54b
AM
11721 bfd_install_relocation subtracts them out again. I think
11722 bfd_install_relocation is broken, but I don't dare change
2f66722d
AM
11723 it. FIXME. */
11724 value += fixP->fx_where + fixP->fx_frag->fr_address;
11725 }
252b5132
RH
11726 }
11727#endif
11728#if defined (OBJ_COFF) && defined (TE_PE)
977cdf5a
NC
11729 /* For some reason, the PE format does not store a
11730 section address offset for a PC relative symbol. */
11731 if (S_GET_SEGMENT (fixP->fx_addsy) != seg
7be1c489 11732 || S_IS_WEAK (fixP->fx_addsy))
252b5132
RH
11733 value += md_pcrel_from (fixP);
11734#endif
11735 }
fbeb56a4 11736#if defined (OBJ_COFF) && defined (TE_PE)
f01c1a09
NC
11737 if (fixP->fx_addsy != NULL
11738 && S_IS_WEAK (fixP->fx_addsy)
11739 /* PR 16858: Do not modify weak function references. */
11740 && ! fixP->fx_pcrel)
fbeb56a4 11741 {
296a8689
NC
11742#if !defined (TE_PEP)
11743 /* For x86 PE weak function symbols are neither PC-relative
11744 nor do they set S_IS_FUNCTION. So the only reliable way
11745 to detect them is to check the flags of their containing
11746 section. */
11747 if (S_GET_SEGMENT (fixP->fx_addsy) != NULL
11748 && S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_CODE)
11749 ;
11750 else
11751#endif
fbeb56a4
DK
11752 value -= S_GET_VALUE (fixP->fx_addsy);
11753 }
11754#endif
252b5132
RH
11755
11756 /* Fix a few things - the dynamic linker expects certain values here,
0234cb7c 11757 and we must not disappoint it. */
252b5132 11758#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 11759 if (IS_ELF && fixP->fx_addsy)
47926f60
KH
11760 switch (fixP->fx_r_type)
11761 {
11762 case BFD_RELOC_386_PLT32:
3e73aa7c 11763 case BFD_RELOC_X86_64_PLT32:
b9519cfe
L
11764 /* Make the jump instruction point to the address of the operand.
11765 At runtime we merely add the offset to the actual PLT entry.
11766 NB: Subtract the offset size only for jump instructions. */
11767 if (fixP->fx_pcrel)
11768 value = -4;
47926f60 11769 break;
31312f95 11770
13ae64f3
JJ
11771 case BFD_RELOC_386_TLS_GD:
11772 case BFD_RELOC_386_TLS_LDM:
13ae64f3 11773 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
11774 case BFD_RELOC_386_TLS_IE:
11775 case BFD_RELOC_386_TLS_GOTIE:
67a4f2b7 11776 case BFD_RELOC_386_TLS_GOTDESC:
bffbf940
JJ
11777 case BFD_RELOC_X86_64_TLSGD:
11778 case BFD_RELOC_X86_64_TLSLD:
11779 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7 11780 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
00f7efb6
JJ
11781 value = 0; /* Fully resolved at runtime. No addend. */
11782 /* Fallthrough */
11783 case BFD_RELOC_386_TLS_LE:
11784 case BFD_RELOC_386_TLS_LDO_32:
11785 case BFD_RELOC_386_TLS_LE_32:
11786 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 11787 case BFD_RELOC_X86_64_DTPOFF64:
00f7efb6 11788 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113 11789 case BFD_RELOC_X86_64_TPOFF64:
00f7efb6
JJ
11790 S_SET_THREAD_LOCAL (fixP->fx_addsy);
11791 break;
11792
67a4f2b7
AO
11793 case BFD_RELOC_386_TLS_DESC_CALL:
11794 case BFD_RELOC_X86_64_TLSDESC_CALL:
11795 value = 0; /* Fully resolved at runtime. No addend. */
11796 S_SET_THREAD_LOCAL (fixP->fx_addsy);
11797 fixP->fx_done = 0;
11798 return;
11799
47926f60
KH
11800 case BFD_RELOC_VTABLE_INHERIT:
11801 case BFD_RELOC_VTABLE_ENTRY:
11802 fixP->fx_done = 0;
94f592af 11803 return;
47926f60
KH
11804
11805 default:
11806 break;
11807 }
11808#endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) */
c6682705 11809 *valP = value;
f86103b7 11810#endif /* !defined (TE_Mach) */
3e73aa7c 11811
3e73aa7c 11812 /* Are we finished with this relocation now? */
c6682705 11813 if (fixP->fx_addsy == NULL)
3e73aa7c 11814 fixP->fx_done = 1;
fbeb56a4
DK
11815#if defined (OBJ_COFF) && defined (TE_PE)
11816 else if (fixP->fx_addsy != NULL && S_IS_WEAK (fixP->fx_addsy))
11817 {
11818 fixP->fx_done = 0;
11819 /* Remember value for tc_gen_reloc. */
11820 fixP->fx_addnumber = value;
11821 /* Clear out the frag for now. */
11822 value = 0;
11823 }
11824#endif
3e73aa7c
JH
11825 else if (use_rela_relocations)
11826 {
11827 fixP->fx_no_overflow = 1;
062cd5e7
AS
11828 /* Remember value for tc_gen_reloc. */
11829 fixP->fx_addnumber = value;
3e73aa7c
JH
11830 value = 0;
11831 }
f86103b7 11832
94f592af 11833 md_number_to_chars (p, value, fixP->fx_size);
252b5132 11834}
252b5132 11835\f
6d4af3c2 11836const char *
499ac353 11837md_atof (int type, char *litP, int *sizeP)
252b5132 11838{
499ac353
NC
11839 /* This outputs the LITTLENUMs in REVERSE order;
11840 in accord with the bigendian 386. */
11841 return ieee_md_atof (type, litP, sizeP, FALSE);
252b5132
RH
11842}
11843\f
2d545b82 11844static char output_invalid_buf[sizeof (unsigned char) * 2 + 6];
252b5132 11845
252b5132 11846static char *
e3bb37b5 11847output_invalid (int c)
252b5132 11848{
3882b010 11849 if (ISPRINT (c))
f9f21a03
L
11850 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
11851 "'%c'", c);
252b5132 11852 else
f9f21a03 11853 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
2d545b82 11854 "(0x%x)", (unsigned char) c);
252b5132
RH
11855 return output_invalid_buf;
11856}
11857
af6bdddf 11858/* REG_STRING starts *before* REGISTER_PREFIX. */
252b5132
RH
11859
11860static const reg_entry *
4d1bb795 11861parse_real_register (char *reg_string, char **end_op)
252b5132 11862{
af6bdddf
AM
11863 char *s = reg_string;
11864 char *p;
252b5132
RH
11865 char reg_name_given[MAX_REG_NAME_SIZE + 1];
11866 const reg_entry *r;
11867
11868 /* Skip possible REGISTER_PREFIX and possible whitespace. */
11869 if (*s == REGISTER_PREFIX)
11870 ++s;
11871
11872 if (is_space_char (*s))
11873 ++s;
11874
11875 p = reg_name_given;
af6bdddf 11876 while ((*p++ = register_chars[(unsigned char) *s]) != '\0')
252b5132
RH
11877 {
11878 if (p >= reg_name_given + MAX_REG_NAME_SIZE)
af6bdddf
AM
11879 return (const reg_entry *) NULL;
11880 s++;
252b5132
RH
11881 }
11882
6588847e
DN
11883 /* For naked regs, make sure that we are not dealing with an identifier.
11884 This prevents confusing an identifier like `eax_var' with register
11885 `eax'. */
11886 if (allow_naked_reg && identifier_chars[(unsigned char) *s])
11887 return (const reg_entry *) NULL;
11888
af6bdddf 11889 *end_op = s;
252b5132
RH
11890
11891 r = (const reg_entry *) hash_find (reg_hash, reg_name_given);
11892
5f47d35b 11893 /* Handle floating point regs, allowing spaces in the (i) part. */
47926f60 11894 if (r == i386_regtab /* %st is first entry of table */)
5f47d35b 11895 {
0e0eea78
JB
11896 if (!cpu_arch_flags.bitfield.cpu8087
11897 && !cpu_arch_flags.bitfield.cpu287
11898 && !cpu_arch_flags.bitfield.cpu387)
11899 return (const reg_entry *) NULL;
11900
5f47d35b
AM
11901 if (is_space_char (*s))
11902 ++s;
11903 if (*s == '(')
11904 {
af6bdddf 11905 ++s;
5f47d35b
AM
11906 if (is_space_char (*s))
11907 ++s;
11908 if (*s >= '0' && *s <= '7')
11909 {
db557034 11910 int fpr = *s - '0';
af6bdddf 11911 ++s;
5f47d35b
AM
11912 if (is_space_char (*s))
11913 ++s;
11914 if (*s == ')')
11915 {
11916 *end_op = s + 1;
1e9cc1c2 11917 r = (const reg_entry *) hash_find (reg_hash, "st(0)");
db557034
AM
11918 know (r);
11919 return r + fpr;
5f47d35b 11920 }
5f47d35b 11921 }
47926f60 11922 /* We have "%st(" then garbage. */
5f47d35b
AM
11923 return (const reg_entry *) NULL;
11924 }
11925 }
11926
a60de03c
JB
11927 if (r == NULL || allow_pseudo_reg)
11928 return r;
11929
0dfbf9d7 11930 if (operand_type_all_zero (&r->reg_type))
a60de03c
JB
11931 return (const reg_entry *) NULL;
11932
dc821c5f 11933 if ((r->reg_type.bitfield.dword
00cee14f 11934 || (r->reg_type.bitfield.class == SReg && r->reg_num > 3)
4a5c67ed
JB
11935 || r->reg_type.bitfield.class == RegCR
11936 || r->reg_type.bitfield.class == RegDR
11937 || r->reg_type.bitfield.class == RegTR)
192dc9c6
JB
11938 && !cpu_arch_flags.bitfield.cpui386)
11939 return (const reg_entry *) NULL;
11940
3528c362 11941 if (r->reg_type.bitfield.class == RegMMX && !cpu_arch_flags.bitfield.cpummx)
192dc9c6
JB
11942 return (const reg_entry *) NULL;
11943
6e041cf4
JB
11944 if (!cpu_arch_flags.bitfield.cpuavx512f)
11945 {
f74a6307
JB
11946 if (r->reg_type.bitfield.zmmword
11947 || r->reg_type.bitfield.class == RegMask)
6e041cf4 11948 return (const reg_entry *) NULL;
40f12533 11949
6e041cf4
JB
11950 if (!cpu_arch_flags.bitfield.cpuavx)
11951 {
11952 if (r->reg_type.bitfield.ymmword)
11953 return (const reg_entry *) NULL;
1848e567 11954
6e041cf4
JB
11955 if (!cpu_arch_flags.bitfield.cpusse && r->reg_type.bitfield.xmmword)
11956 return (const reg_entry *) NULL;
11957 }
11958 }
43234a1e 11959
f74a6307 11960 if (r->reg_type.bitfield.class == RegBND && !cpu_arch_flags.bitfield.cpumpx)
1adf7f56
JB
11961 return (const reg_entry *) NULL;
11962
db51cc60 11963 /* Don't allow fake index register unless allow_index_reg isn't 0. */
e968fc9b 11964 if (!allow_index_reg && r->reg_num == RegIZ)
db51cc60
L
11965 return (const reg_entry *) NULL;
11966
1d3f8286
JB
11967 /* Upper 16 vector registers are only available with VREX in 64bit
11968 mode, and require EVEX encoding. */
11969 if (r->reg_flags & RegVRex)
43234a1e 11970 {
e951d5ca 11971 if (!cpu_arch_flags.bitfield.cpuavx512f
43234a1e
L
11972 || flag_code != CODE_64BIT)
11973 return (const reg_entry *) NULL;
1d3f8286
JB
11974
11975 i.vec_encoding = vex_encoding_evex;
43234a1e
L
11976 }
11977
4787f4a5 11978 if (((r->reg_flags & (RegRex64 | RegRex)) || r->reg_type.bitfield.qword)
4a5c67ed 11979 && (!cpu_arch_flags.bitfield.cpulm || r->reg_type.bitfield.class != RegCR)
1ae00879 11980 && flag_code != CODE_64BIT)
20f0a1fc 11981 return (const reg_entry *) NULL;
1ae00879 11982
00cee14f
JB
11983 if (r->reg_type.bitfield.class == SReg && r->reg_num == RegFlat
11984 && !intel_syntax)
b7240065
JB
11985 return (const reg_entry *) NULL;
11986
252b5132
RH
11987 return r;
11988}
4d1bb795
JB
11989
11990/* REG_STRING starts *before* REGISTER_PREFIX. */
11991
11992static const reg_entry *
11993parse_register (char *reg_string, char **end_op)
11994{
11995 const reg_entry *r;
11996
11997 if (*reg_string == REGISTER_PREFIX || allow_naked_reg)
11998 r = parse_real_register (reg_string, end_op);
11999 else
12000 r = NULL;
12001 if (!r)
12002 {
12003 char *save = input_line_pointer;
12004 char c;
12005 symbolS *symbolP;
12006
12007 input_line_pointer = reg_string;
d02603dc 12008 c = get_symbol_name (&reg_string);
4d1bb795
JB
12009 symbolP = symbol_find (reg_string);
12010 if (symbolP && S_GET_SEGMENT (symbolP) == reg_section)
12011 {
12012 const expressionS *e = symbol_get_value_expression (symbolP);
12013
0398aac5 12014 know (e->X_op == O_register);
4eed87de 12015 know (e->X_add_number >= 0
c3fe08fa 12016 && (valueT) e->X_add_number < i386_regtab_size);
4d1bb795 12017 r = i386_regtab + e->X_add_number;
d3bb6b49 12018 if ((r->reg_flags & RegVRex))
86fa6981 12019 i.vec_encoding = vex_encoding_evex;
4d1bb795
JB
12020 *end_op = input_line_pointer;
12021 }
12022 *input_line_pointer = c;
12023 input_line_pointer = save;
12024 }
12025 return r;
12026}
12027
12028int
12029i386_parse_name (char *name, expressionS *e, char *nextcharP)
12030{
12031 const reg_entry *r;
12032 char *end = input_line_pointer;
12033
12034 *end = *nextcharP;
12035 r = parse_register (name, &input_line_pointer);
12036 if (r && end <= input_line_pointer)
12037 {
12038 *nextcharP = *input_line_pointer;
12039 *input_line_pointer = 0;
12040 e->X_op = O_register;
12041 e->X_add_number = r - i386_regtab;
12042 return 1;
12043 }
12044 input_line_pointer = end;
12045 *end = 0;
ee86248c 12046 return intel_syntax ? i386_intel_parse_name (name, e) : 0;
4d1bb795
JB
12047}
12048
12049void
12050md_operand (expressionS *e)
12051{
ee86248c
JB
12052 char *end;
12053 const reg_entry *r;
4d1bb795 12054
ee86248c
JB
12055 switch (*input_line_pointer)
12056 {
12057 case REGISTER_PREFIX:
12058 r = parse_real_register (input_line_pointer, &end);
4d1bb795
JB
12059 if (r)
12060 {
12061 e->X_op = O_register;
12062 e->X_add_number = r - i386_regtab;
12063 input_line_pointer = end;
12064 }
ee86248c
JB
12065 break;
12066
12067 case '[':
9c2799c2 12068 gas_assert (intel_syntax);
ee86248c
JB
12069 end = input_line_pointer++;
12070 expression (e);
12071 if (*input_line_pointer == ']')
12072 {
12073 ++input_line_pointer;
12074 e->X_op_symbol = make_expr_symbol (e);
12075 e->X_add_symbol = NULL;
12076 e->X_add_number = 0;
12077 e->X_op = O_index;
12078 }
12079 else
12080 {
12081 e->X_op = O_absent;
12082 input_line_pointer = end;
12083 }
12084 break;
4d1bb795
JB
12085 }
12086}
12087
252b5132 12088\f
4cc782b5 12089#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
b6f8c7c4 12090const char *md_shortopts = "kVQ:sqnO::";
252b5132 12091#else
b6f8c7c4 12092const char *md_shortopts = "qnO::";
252b5132 12093#endif
6e0b89ee 12094
3e73aa7c 12095#define OPTION_32 (OPTION_MD_BASE + 0)
b3b91714
AM
12096#define OPTION_64 (OPTION_MD_BASE + 1)
12097#define OPTION_DIVIDE (OPTION_MD_BASE + 2)
9103f4f4
L
12098#define OPTION_MARCH (OPTION_MD_BASE + 3)
12099#define OPTION_MTUNE (OPTION_MD_BASE + 4)
1efbbeb4
L
12100#define OPTION_MMNEMONIC (OPTION_MD_BASE + 5)
12101#define OPTION_MSYNTAX (OPTION_MD_BASE + 6)
12102#define OPTION_MINDEX_REG (OPTION_MD_BASE + 7)
12103#define OPTION_MNAKED_REG (OPTION_MD_BASE + 8)
bd5dea88 12104#define OPTION_MRELAX_RELOCATIONS (OPTION_MD_BASE + 9)
c0f3af97 12105#define OPTION_MSSE2AVX (OPTION_MD_BASE + 10)
daf50ae7 12106#define OPTION_MSSE_CHECK (OPTION_MD_BASE + 11)
7bab8ab5
JB
12107#define OPTION_MOPERAND_CHECK (OPTION_MD_BASE + 12)
12108#define OPTION_MAVXSCALAR (OPTION_MD_BASE + 13)
12109#define OPTION_X32 (OPTION_MD_BASE + 14)
7e8b059b 12110#define OPTION_MADD_BND_PREFIX (OPTION_MD_BASE + 15)
43234a1e
L
12111#define OPTION_MEVEXLIG (OPTION_MD_BASE + 16)
12112#define OPTION_MEVEXWIG (OPTION_MD_BASE + 17)
167ad85b 12113#define OPTION_MBIG_OBJ (OPTION_MD_BASE + 18)
d1982f93 12114#define OPTION_MOMIT_LOCK_PREFIX (OPTION_MD_BASE + 19)
d3d3c6db 12115#define OPTION_MEVEXRCIG (OPTION_MD_BASE + 20)
8dcea932 12116#define OPTION_MSHARED (OPTION_MD_BASE + 21)
5db04b09
L
12117#define OPTION_MAMD64 (OPTION_MD_BASE + 22)
12118#define OPTION_MINTEL64 (OPTION_MD_BASE + 23)
e4e00185 12119#define OPTION_MFENCE_AS_LOCK_ADD (OPTION_MD_BASE + 24)
b4a3a7b4 12120#define OPTION_X86_USED_NOTE (OPTION_MD_BASE + 25)
03751133 12121#define OPTION_MVEXWIG (OPTION_MD_BASE + 26)
e379e5f3
L
12122#define OPTION_MALIGN_BRANCH_BOUNDARY (OPTION_MD_BASE + 27)
12123#define OPTION_MALIGN_BRANCH_PREFIX_SIZE (OPTION_MD_BASE + 28)
12124#define OPTION_MALIGN_BRANCH (OPTION_MD_BASE + 29)
76cf450b 12125#define OPTION_MBRANCHES_WITH_32B_BOUNDARIES (OPTION_MD_BASE + 30)
b3b91714 12126
99ad8390
NC
12127struct option md_longopts[] =
12128{
3e73aa7c 12129 {"32", no_argument, NULL, OPTION_32},
321098a5 12130#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 12131 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c 12132 {"64", no_argument, NULL, OPTION_64},
351f65ca
L
12133#endif
12134#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 12135 {"x32", no_argument, NULL, OPTION_X32},
8dcea932 12136 {"mshared", no_argument, NULL, OPTION_MSHARED},
b4a3a7b4 12137 {"mx86-used-note", required_argument, NULL, OPTION_X86_USED_NOTE},
6e0b89ee 12138#endif
b3b91714 12139 {"divide", no_argument, NULL, OPTION_DIVIDE},
9103f4f4
L
12140 {"march", required_argument, NULL, OPTION_MARCH},
12141 {"mtune", required_argument, NULL, OPTION_MTUNE},
1efbbeb4
L
12142 {"mmnemonic", required_argument, NULL, OPTION_MMNEMONIC},
12143 {"msyntax", required_argument, NULL, OPTION_MSYNTAX},
12144 {"mindex-reg", no_argument, NULL, OPTION_MINDEX_REG},
12145 {"mnaked-reg", no_argument, NULL, OPTION_MNAKED_REG},
c0f3af97 12146 {"msse2avx", no_argument, NULL, OPTION_MSSE2AVX},
daf50ae7 12147 {"msse-check", required_argument, NULL, OPTION_MSSE_CHECK},
7bab8ab5 12148 {"moperand-check", required_argument, NULL, OPTION_MOPERAND_CHECK},
539f890d 12149 {"mavxscalar", required_argument, NULL, OPTION_MAVXSCALAR},
03751133 12150 {"mvexwig", required_argument, NULL, OPTION_MVEXWIG},
7e8b059b 12151 {"madd-bnd-prefix", no_argument, NULL, OPTION_MADD_BND_PREFIX},
43234a1e
L
12152 {"mevexlig", required_argument, NULL, OPTION_MEVEXLIG},
12153 {"mevexwig", required_argument, NULL, OPTION_MEVEXWIG},
167ad85b
TG
12154# if defined (TE_PE) || defined (TE_PEP)
12155 {"mbig-obj", no_argument, NULL, OPTION_MBIG_OBJ},
12156#endif
d1982f93 12157 {"momit-lock-prefix", required_argument, NULL, OPTION_MOMIT_LOCK_PREFIX},
e4e00185 12158 {"mfence-as-lock-add", required_argument, NULL, OPTION_MFENCE_AS_LOCK_ADD},
0cb4071e 12159 {"mrelax-relocations", required_argument, NULL, OPTION_MRELAX_RELOCATIONS},
d3d3c6db 12160 {"mevexrcig", required_argument, NULL, OPTION_MEVEXRCIG},
e379e5f3
L
12161 {"malign-branch-boundary", required_argument, NULL, OPTION_MALIGN_BRANCH_BOUNDARY},
12162 {"malign-branch-prefix-size", required_argument, NULL, OPTION_MALIGN_BRANCH_PREFIX_SIZE},
12163 {"malign-branch", required_argument, NULL, OPTION_MALIGN_BRANCH},
76cf450b 12164 {"mbranches-within-32B-boundaries", no_argument, NULL, OPTION_MBRANCHES_WITH_32B_BOUNDARIES},
5db04b09
L
12165 {"mamd64", no_argument, NULL, OPTION_MAMD64},
12166 {"mintel64", no_argument, NULL, OPTION_MINTEL64},
252b5132
RH
12167 {NULL, no_argument, NULL, 0}
12168};
12169size_t md_longopts_size = sizeof (md_longopts);
12170
12171int
17b9d67d 12172md_parse_option (int c, const char *arg)
252b5132 12173{
91d6fa6a 12174 unsigned int j;
e379e5f3 12175 char *arch, *next, *saved, *type;
9103f4f4 12176
252b5132
RH
12177 switch (c)
12178 {
12b55ccc
L
12179 case 'n':
12180 optimize_align_code = 0;
12181 break;
12182
a38cf1db
AM
12183 case 'q':
12184 quiet_warnings = 1;
252b5132
RH
12185 break;
12186
12187#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
a38cf1db
AM
12188 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
12189 should be emitted or not. FIXME: Not implemented. */
12190 case 'Q':
d4693039
JB
12191 if ((arg[0] != 'y' && arg[0] != 'n') || arg[1])
12192 return 0;
252b5132
RH
12193 break;
12194
12195 /* -V: SVR4 argument to print version ID. */
12196 case 'V':
12197 print_version_id ();
12198 break;
12199
a38cf1db
AM
12200 /* -k: Ignore for FreeBSD compatibility. */
12201 case 'k':
252b5132 12202 break;
4cc782b5
ILT
12203
12204 case 's':
12205 /* -s: On i386 Solaris, this tells the native assembler to use
29b0f896 12206 .stab instead of .stab.excl. We always use .stab anyhow. */
4cc782b5 12207 break;
8dcea932
L
12208
12209 case OPTION_MSHARED:
12210 shared = 1;
12211 break;
b4a3a7b4
L
12212
12213 case OPTION_X86_USED_NOTE:
12214 if (strcasecmp (arg, "yes") == 0)
12215 x86_used_note = 1;
12216 else if (strcasecmp (arg, "no") == 0)
12217 x86_used_note = 0;
12218 else
12219 as_fatal (_("invalid -mx86-used-note= option: `%s'"), arg);
12220 break;
12221
12222
99ad8390 12223#endif
321098a5 12224#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 12225 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c
JH
12226 case OPTION_64:
12227 {
12228 const char **list, **l;
12229
3e73aa7c
JH
12230 list = bfd_target_list ();
12231 for (l = list; *l != NULL; l++)
8620418b 12232 if (CONST_STRNEQ (*l, "elf64-x86-64")
99ad8390
NC
12233 || strcmp (*l, "coff-x86-64") == 0
12234 || strcmp (*l, "pe-x86-64") == 0
d382c579
TG
12235 || strcmp (*l, "pei-x86-64") == 0
12236 || strcmp (*l, "mach-o-x86-64") == 0)
6e0b89ee
AM
12237 {
12238 default_arch = "x86_64";
12239 break;
12240 }
3e73aa7c 12241 if (*l == NULL)
2b5d6a91 12242 as_fatal (_("no compiled in support for x86_64"));
3e73aa7c
JH
12243 free (list);
12244 }
12245 break;
12246#endif
252b5132 12247
351f65ca 12248#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 12249 case OPTION_X32:
351f65ca
L
12250 if (IS_ELF)
12251 {
12252 const char **list, **l;
12253
12254 list = bfd_target_list ();
12255 for (l = list; *l != NULL; l++)
12256 if (CONST_STRNEQ (*l, "elf32-x86-64"))
12257 {
12258 default_arch = "x86_64:32";
12259 break;
12260 }
12261 if (*l == NULL)
2b5d6a91 12262 as_fatal (_("no compiled in support for 32bit x86_64"));
351f65ca
L
12263 free (list);
12264 }
12265 else
12266 as_fatal (_("32bit x86_64 is only supported for ELF"));
12267 break;
12268#endif
12269
6e0b89ee
AM
12270 case OPTION_32:
12271 default_arch = "i386";
12272 break;
12273
b3b91714
AM
12274 case OPTION_DIVIDE:
12275#ifdef SVR4_COMMENT_CHARS
12276 {
12277 char *n, *t;
12278 const char *s;
12279
add39d23 12280 n = XNEWVEC (char, strlen (i386_comment_chars) + 1);
b3b91714
AM
12281 t = n;
12282 for (s = i386_comment_chars; *s != '\0'; s++)
12283 if (*s != '/')
12284 *t++ = *s;
12285 *t = '\0';
12286 i386_comment_chars = n;
12287 }
12288#endif
12289 break;
12290
9103f4f4 12291 case OPTION_MARCH:
293f5f65
L
12292 saved = xstrdup (arg);
12293 arch = saved;
12294 /* Allow -march=+nosse. */
12295 if (*arch == '+')
12296 arch++;
6305a203 12297 do
9103f4f4 12298 {
6305a203 12299 if (*arch == '.')
2b5d6a91 12300 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
12301 next = strchr (arch, '+');
12302 if (next)
12303 *next++ = '\0';
91d6fa6a 12304 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 12305 {
91d6fa6a 12306 if (strcmp (arch, cpu_arch [j].name) == 0)
ccc9c027 12307 {
6305a203 12308 /* Processor. */
1ded5609
JB
12309 if (! cpu_arch[j].flags.bitfield.cpui386)
12310 continue;
12311
91d6fa6a 12312 cpu_arch_name = cpu_arch[j].name;
6305a203 12313 cpu_sub_arch_name = NULL;
91d6fa6a
NC
12314 cpu_arch_flags = cpu_arch[j].flags;
12315 cpu_arch_isa = cpu_arch[j].type;
12316 cpu_arch_isa_flags = cpu_arch[j].flags;
6305a203
L
12317 if (!cpu_arch_tune_set)
12318 {
12319 cpu_arch_tune = cpu_arch_isa;
12320 cpu_arch_tune_flags = cpu_arch_isa_flags;
12321 }
12322 break;
12323 }
91d6fa6a
NC
12324 else if (*cpu_arch [j].name == '.'
12325 && strcmp (arch, cpu_arch [j].name + 1) == 0)
6305a203 12326 {
33eaf5de 12327 /* ISA extension. */
6305a203 12328 i386_cpu_flags flags;
309d3373 12329
293f5f65
L
12330 flags = cpu_flags_or (cpu_arch_flags,
12331 cpu_arch[j].flags);
81486035 12332
5b64d091 12333 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
6305a203
L
12334 {
12335 if (cpu_sub_arch_name)
12336 {
12337 char *name = cpu_sub_arch_name;
12338 cpu_sub_arch_name = concat (name,
91d6fa6a 12339 cpu_arch[j].name,
1bf57e9f 12340 (const char *) NULL);
6305a203
L
12341 free (name);
12342 }
12343 else
91d6fa6a 12344 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
6305a203 12345 cpu_arch_flags = flags;
a586129e 12346 cpu_arch_isa_flags = flags;
6305a203 12347 }
0089dace
L
12348 else
12349 cpu_arch_isa_flags
12350 = cpu_flags_or (cpu_arch_isa_flags,
12351 cpu_arch[j].flags);
6305a203 12352 break;
ccc9c027 12353 }
9103f4f4 12354 }
6305a203 12355
293f5f65
L
12356 if (j >= ARRAY_SIZE (cpu_arch))
12357 {
33eaf5de 12358 /* Disable an ISA extension. */
293f5f65
L
12359 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
12360 if (strcmp (arch, cpu_noarch [j].name) == 0)
12361 {
12362 i386_cpu_flags flags;
12363
12364 flags = cpu_flags_and_not (cpu_arch_flags,
12365 cpu_noarch[j].flags);
12366 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
12367 {
12368 if (cpu_sub_arch_name)
12369 {
12370 char *name = cpu_sub_arch_name;
12371 cpu_sub_arch_name = concat (arch,
12372 (const char *) NULL);
12373 free (name);
12374 }
12375 else
12376 cpu_sub_arch_name = xstrdup (arch);
12377 cpu_arch_flags = flags;
12378 cpu_arch_isa_flags = flags;
12379 }
12380 break;
12381 }
12382
12383 if (j >= ARRAY_SIZE (cpu_noarch))
12384 j = ARRAY_SIZE (cpu_arch);
12385 }
12386
91d6fa6a 12387 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 12388 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
12389
12390 arch = next;
9103f4f4 12391 }
293f5f65
L
12392 while (next != NULL);
12393 free (saved);
9103f4f4
L
12394 break;
12395
12396 case OPTION_MTUNE:
12397 if (*arg == '.')
2b5d6a91 12398 as_fatal (_("invalid -mtune= option: `%s'"), arg);
91d6fa6a 12399 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 12400 {
91d6fa6a 12401 if (strcmp (arg, cpu_arch [j].name) == 0)
9103f4f4 12402 {
ccc9c027 12403 cpu_arch_tune_set = 1;
91d6fa6a
NC
12404 cpu_arch_tune = cpu_arch [j].type;
12405 cpu_arch_tune_flags = cpu_arch[j].flags;
9103f4f4
L
12406 break;
12407 }
12408 }
91d6fa6a 12409 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 12410 as_fatal (_("invalid -mtune= option: `%s'"), arg);
9103f4f4
L
12411 break;
12412
1efbbeb4
L
12413 case OPTION_MMNEMONIC:
12414 if (strcasecmp (arg, "att") == 0)
12415 intel_mnemonic = 0;
12416 else if (strcasecmp (arg, "intel") == 0)
12417 intel_mnemonic = 1;
12418 else
2b5d6a91 12419 as_fatal (_("invalid -mmnemonic= option: `%s'"), arg);
1efbbeb4
L
12420 break;
12421
12422 case OPTION_MSYNTAX:
12423 if (strcasecmp (arg, "att") == 0)
12424 intel_syntax = 0;
12425 else if (strcasecmp (arg, "intel") == 0)
12426 intel_syntax = 1;
12427 else
2b5d6a91 12428 as_fatal (_("invalid -msyntax= option: `%s'"), arg);
1efbbeb4
L
12429 break;
12430
12431 case OPTION_MINDEX_REG:
12432 allow_index_reg = 1;
12433 break;
12434
12435 case OPTION_MNAKED_REG:
12436 allow_naked_reg = 1;
12437 break;
12438
c0f3af97
L
12439 case OPTION_MSSE2AVX:
12440 sse2avx = 1;
12441 break;
12442
daf50ae7
L
12443 case OPTION_MSSE_CHECK:
12444 if (strcasecmp (arg, "error") == 0)
7bab8ab5 12445 sse_check = check_error;
daf50ae7 12446 else if (strcasecmp (arg, "warning") == 0)
7bab8ab5 12447 sse_check = check_warning;
daf50ae7 12448 else if (strcasecmp (arg, "none") == 0)
7bab8ab5 12449 sse_check = check_none;
daf50ae7 12450 else
2b5d6a91 12451 as_fatal (_("invalid -msse-check= option: `%s'"), arg);
daf50ae7
L
12452 break;
12453
7bab8ab5
JB
12454 case OPTION_MOPERAND_CHECK:
12455 if (strcasecmp (arg, "error") == 0)
12456 operand_check = check_error;
12457 else if (strcasecmp (arg, "warning") == 0)
12458 operand_check = check_warning;
12459 else if (strcasecmp (arg, "none") == 0)
12460 operand_check = check_none;
12461 else
12462 as_fatal (_("invalid -moperand-check= option: `%s'"), arg);
12463 break;
12464
539f890d
L
12465 case OPTION_MAVXSCALAR:
12466 if (strcasecmp (arg, "128") == 0)
12467 avxscalar = vex128;
12468 else if (strcasecmp (arg, "256") == 0)
12469 avxscalar = vex256;
12470 else
2b5d6a91 12471 as_fatal (_("invalid -mavxscalar= option: `%s'"), arg);
539f890d
L
12472 break;
12473
03751133
L
12474 case OPTION_MVEXWIG:
12475 if (strcmp (arg, "0") == 0)
40c9c8de 12476 vexwig = vexw0;
03751133 12477 else if (strcmp (arg, "1") == 0)
40c9c8de 12478 vexwig = vexw1;
03751133
L
12479 else
12480 as_fatal (_("invalid -mvexwig= option: `%s'"), arg);
12481 break;
12482
7e8b059b
L
12483 case OPTION_MADD_BND_PREFIX:
12484 add_bnd_prefix = 1;
12485 break;
12486
43234a1e
L
12487 case OPTION_MEVEXLIG:
12488 if (strcmp (arg, "128") == 0)
12489 evexlig = evexl128;
12490 else if (strcmp (arg, "256") == 0)
12491 evexlig = evexl256;
12492 else if (strcmp (arg, "512") == 0)
12493 evexlig = evexl512;
12494 else
12495 as_fatal (_("invalid -mevexlig= option: `%s'"), arg);
12496 break;
12497
d3d3c6db
IT
12498 case OPTION_MEVEXRCIG:
12499 if (strcmp (arg, "rne") == 0)
12500 evexrcig = rne;
12501 else if (strcmp (arg, "rd") == 0)
12502 evexrcig = rd;
12503 else if (strcmp (arg, "ru") == 0)
12504 evexrcig = ru;
12505 else if (strcmp (arg, "rz") == 0)
12506 evexrcig = rz;
12507 else
12508 as_fatal (_("invalid -mevexrcig= option: `%s'"), arg);
12509 break;
12510
43234a1e
L
12511 case OPTION_MEVEXWIG:
12512 if (strcmp (arg, "0") == 0)
12513 evexwig = evexw0;
12514 else if (strcmp (arg, "1") == 0)
12515 evexwig = evexw1;
12516 else
12517 as_fatal (_("invalid -mevexwig= option: `%s'"), arg);
12518 break;
12519
167ad85b
TG
12520# if defined (TE_PE) || defined (TE_PEP)
12521 case OPTION_MBIG_OBJ:
12522 use_big_obj = 1;
12523 break;
12524#endif
12525
d1982f93 12526 case OPTION_MOMIT_LOCK_PREFIX:
d022bddd
IT
12527 if (strcasecmp (arg, "yes") == 0)
12528 omit_lock_prefix = 1;
12529 else if (strcasecmp (arg, "no") == 0)
12530 omit_lock_prefix = 0;
12531 else
12532 as_fatal (_("invalid -momit-lock-prefix= option: `%s'"), arg);
12533 break;
12534
e4e00185
AS
12535 case OPTION_MFENCE_AS_LOCK_ADD:
12536 if (strcasecmp (arg, "yes") == 0)
12537 avoid_fence = 1;
12538 else if (strcasecmp (arg, "no") == 0)
12539 avoid_fence = 0;
12540 else
12541 as_fatal (_("invalid -mfence-as-lock-add= option: `%s'"), arg);
12542 break;
12543
0cb4071e
L
12544 case OPTION_MRELAX_RELOCATIONS:
12545 if (strcasecmp (arg, "yes") == 0)
12546 generate_relax_relocations = 1;
12547 else if (strcasecmp (arg, "no") == 0)
12548 generate_relax_relocations = 0;
12549 else
12550 as_fatal (_("invalid -mrelax-relocations= option: `%s'"), arg);
12551 break;
12552
e379e5f3
L
12553 case OPTION_MALIGN_BRANCH_BOUNDARY:
12554 {
12555 char *end;
12556 long int align = strtoul (arg, &end, 0);
12557 if (*end == '\0')
12558 {
12559 if (align == 0)
12560 {
12561 align_branch_power = 0;
12562 break;
12563 }
12564 else if (align >= 16)
12565 {
12566 int align_power;
12567 for (align_power = 0;
12568 (align & 1) == 0;
12569 align >>= 1, align_power++)
12570 continue;
12571 /* Limit alignment power to 31. */
12572 if (align == 1 && align_power < 32)
12573 {
12574 align_branch_power = align_power;
12575 break;
12576 }
12577 }
12578 }
12579 as_fatal (_("invalid -malign-branch-boundary= value: %s"), arg);
12580 }
12581 break;
12582
12583 case OPTION_MALIGN_BRANCH_PREFIX_SIZE:
12584 {
12585 char *end;
12586 int align = strtoul (arg, &end, 0);
12587 /* Some processors only support 5 prefixes. */
12588 if (*end == '\0' && align >= 0 && align < 6)
12589 {
12590 align_branch_prefix_size = align;
12591 break;
12592 }
12593 as_fatal (_("invalid -malign-branch-prefix-size= value: %s"),
12594 arg);
12595 }
12596 break;
12597
12598 case OPTION_MALIGN_BRANCH:
12599 align_branch = 0;
12600 saved = xstrdup (arg);
12601 type = saved;
12602 do
12603 {
12604 next = strchr (type, '+');
12605 if (next)
12606 *next++ = '\0';
12607 if (strcasecmp (type, "jcc") == 0)
12608 align_branch |= align_branch_jcc_bit;
12609 else if (strcasecmp (type, "fused") == 0)
12610 align_branch |= align_branch_fused_bit;
12611 else if (strcasecmp (type, "jmp") == 0)
12612 align_branch |= align_branch_jmp_bit;
12613 else if (strcasecmp (type, "call") == 0)
12614 align_branch |= align_branch_call_bit;
12615 else if (strcasecmp (type, "ret") == 0)
12616 align_branch |= align_branch_ret_bit;
12617 else if (strcasecmp (type, "indirect") == 0)
12618 align_branch |= align_branch_indirect_bit;
12619 else
12620 as_fatal (_("invalid -malign-branch= option: `%s'"), arg);
12621 type = next;
12622 }
12623 while (next != NULL);
12624 free (saved);
12625 break;
12626
76cf450b
L
12627 case OPTION_MBRANCHES_WITH_32B_BOUNDARIES:
12628 align_branch_power = 5;
12629 align_branch_prefix_size = 5;
12630 align_branch = (align_branch_jcc_bit
12631 | align_branch_fused_bit
12632 | align_branch_jmp_bit);
12633 break;
12634
5db04b09 12635 case OPTION_MAMD64:
4b5aaf5f 12636 isa64 = amd64;
5db04b09
L
12637 break;
12638
12639 case OPTION_MINTEL64:
4b5aaf5f 12640 isa64 = intel64;
5db04b09
L
12641 break;
12642
b6f8c7c4
L
12643 case 'O':
12644 if (arg == NULL)
12645 {
12646 optimize = 1;
12647 /* Turn off -Os. */
12648 optimize_for_space = 0;
12649 }
12650 else if (*arg == 's')
12651 {
12652 optimize_for_space = 1;
12653 /* Turn on all encoding optimizations. */
41fd2579 12654 optimize = INT_MAX;
b6f8c7c4
L
12655 }
12656 else
12657 {
12658 optimize = atoi (arg);
12659 /* Turn off -Os. */
12660 optimize_for_space = 0;
12661 }
12662 break;
12663
252b5132
RH
12664 default:
12665 return 0;
12666 }
12667 return 1;
12668}
12669
8a2c8fef
L
12670#define MESSAGE_TEMPLATE \
12671" "
12672
293f5f65
L
12673static char *
12674output_message (FILE *stream, char *p, char *message, char *start,
12675 int *left_p, const char *name, int len)
12676{
12677 int size = sizeof (MESSAGE_TEMPLATE);
12678 int left = *left_p;
12679
12680 /* Reserve 2 spaces for ", " or ",\0" */
12681 left -= len + 2;
12682
12683 /* Check if there is any room. */
12684 if (left >= 0)
12685 {
12686 if (p != start)
12687 {
12688 *p++ = ',';
12689 *p++ = ' ';
12690 }
12691 p = mempcpy (p, name, len);
12692 }
12693 else
12694 {
12695 /* Output the current message now and start a new one. */
12696 *p++ = ',';
12697 *p = '\0';
12698 fprintf (stream, "%s\n", message);
12699 p = start;
12700 left = size - (start - message) - len - 2;
12701
12702 gas_assert (left >= 0);
12703
12704 p = mempcpy (p, name, len);
12705 }
12706
12707 *left_p = left;
12708 return p;
12709}
12710
8a2c8fef 12711static void
1ded5609 12712show_arch (FILE *stream, int ext, int check)
8a2c8fef
L
12713{
12714 static char message[] = MESSAGE_TEMPLATE;
12715 char *start = message + 27;
12716 char *p;
12717 int size = sizeof (MESSAGE_TEMPLATE);
12718 int left;
12719 const char *name;
12720 int len;
12721 unsigned int j;
12722
12723 p = start;
12724 left = size - (start - message);
12725 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
12726 {
12727 /* Should it be skipped? */
12728 if (cpu_arch [j].skip)
12729 continue;
12730
12731 name = cpu_arch [j].name;
12732 len = cpu_arch [j].len;
12733 if (*name == '.')
12734 {
12735 /* It is an extension. Skip if we aren't asked to show it. */
12736 if (ext)
12737 {
12738 name++;
12739 len--;
12740 }
12741 else
12742 continue;
12743 }
12744 else if (ext)
12745 {
12746 /* It is an processor. Skip if we show only extension. */
12747 continue;
12748 }
1ded5609
JB
12749 else if (check && ! cpu_arch[j].flags.bitfield.cpui386)
12750 {
12751 /* It is an impossible processor - skip. */
12752 continue;
12753 }
8a2c8fef 12754
293f5f65 12755 p = output_message (stream, p, message, start, &left, name, len);
8a2c8fef
L
12756 }
12757
293f5f65
L
12758 /* Display disabled extensions. */
12759 if (ext)
12760 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
12761 {
12762 name = cpu_noarch [j].name;
12763 len = cpu_noarch [j].len;
12764 p = output_message (stream, p, message, start, &left, name,
12765 len);
12766 }
12767
8a2c8fef
L
12768 *p = '\0';
12769 fprintf (stream, "%s\n", message);
12770}
12771
252b5132 12772void
8a2c8fef 12773md_show_usage (FILE *stream)
252b5132 12774{
4cc782b5
ILT
12775#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
12776 fprintf (stream, _("\
d4693039 12777 -Qy, -Qn ignored\n\
a38cf1db 12778 -V print assembler version number\n\
b3b91714
AM
12779 -k ignored\n"));
12780#endif
12781 fprintf (stream, _("\
12b55ccc 12782 -n Do not optimize code alignment\n\
b3b91714
AM
12783 -q quieten some warnings\n"));
12784#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
12785 fprintf (stream, _("\
a38cf1db 12786 -s ignored\n"));
b3b91714 12787#endif
d7f449c0
L
12788#if defined BFD64 && (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
12789 || defined (TE_PE) || defined (TE_PEP))
751d281c 12790 fprintf (stream, _("\
570561f7 12791 --32/--64/--x32 generate 32bit/64bit/x32 code\n"));
751d281c 12792#endif
b3b91714
AM
12793#ifdef SVR4_COMMENT_CHARS
12794 fprintf (stream, _("\
12795 --divide do not treat `/' as a comment character\n"));
a38cf1db
AM
12796#else
12797 fprintf (stream, _("\
b3b91714 12798 --divide ignored\n"));
4cc782b5 12799#endif
9103f4f4 12800 fprintf (stream, _("\
6305a203 12801 -march=CPU[,+EXTENSION...]\n\
8a2c8fef 12802 generate code for CPU and EXTENSION, CPU is one of:\n"));
1ded5609 12803 show_arch (stream, 0, 1);
8a2c8fef
L
12804 fprintf (stream, _("\
12805 EXTENSION is combination of:\n"));
1ded5609 12806 show_arch (stream, 1, 0);
6305a203 12807 fprintf (stream, _("\
8a2c8fef 12808 -mtune=CPU optimize for CPU, CPU is one of:\n"));
1ded5609 12809 show_arch (stream, 0, 0);
ba104c83 12810 fprintf (stream, _("\
c0f3af97
L
12811 -msse2avx encode SSE instructions with VEX prefix\n"));
12812 fprintf (stream, _("\
7c5c05ef 12813 -msse-check=[none|error|warning] (default: warning)\n\
daf50ae7
L
12814 check SSE instructions\n"));
12815 fprintf (stream, _("\
7c5c05ef 12816 -moperand-check=[none|error|warning] (default: warning)\n\
7bab8ab5
JB
12817 check operand combinations for validity\n"));
12818 fprintf (stream, _("\
7c5c05ef
L
12819 -mavxscalar=[128|256] (default: 128)\n\
12820 encode scalar AVX instructions with specific vector\n\
539f890d
L
12821 length\n"));
12822 fprintf (stream, _("\
03751133
L
12823 -mvexwig=[0|1] (default: 0)\n\
12824 encode VEX instructions with specific VEX.W value\n\
12825 for VEX.W bit ignored instructions\n"));
12826 fprintf (stream, _("\
7c5c05ef
L
12827 -mevexlig=[128|256|512] (default: 128)\n\
12828 encode scalar EVEX instructions with specific vector\n\
43234a1e
L
12829 length\n"));
12830 fprintf (stream, _("\
7c5c05ef
L
12831 -mevexwig=[0|1] (default: 0)\n\
12832 encode EVEX instructions with specific EVEX.W value\n\
43234a1e
L
12833 for EVEX.W bit ignored instructions\n"));
12834 fprintf (stream, _("\
7c5c05ef 12835 -mevexrcig=[rne|rd|ru|rz] (default: rne)\n\
d3d3c6db
IT
12836 encode EVEX instructions with specific EVEX.RC value\n\
12837 for SAE-only ignored instructions\n"));
12838 fprintf (stream, _("\
7c5c05ef
L
12839 -mmnemonic=[att|intel] "));
12840 if (SYSV386_COMPAT)
12841 fprintf (stream, _("(default: att)\n"));
12842 else
12843 fprintf (stream, _("(default: intel)\n"));
12844 fprintf (stream, _("\
12845 use AT&T/Intel mnemonic\n"));
ba104c83 12846 fprintf (stream, _("\
7c5c05ef
L
12847 -msyntax=[att|intel] (default: att)\n\
12848 use AT&T/Intel syntax\n"));
ba104c83
L
12849 fprintf (stream, _("\
12850 -mindex-reg support pseudo index registers\n"));
12851 fprintf (stream, _("\
12852 -mnaked-reg don't require `%%' prefix for registers\n"));
12853 fprintf (stream, _("\
7e8b059b 12854 -madd-bnd-prefix add BND prefix for all valid branches\n"));
b4a3a7b4 12855#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8dcea932
L
12856 fprintf (stream, _("\
12857 -mshared disable branch optimization for shared code\n"));
b4a3a7b4
L
12858 fprintf (stream, _("\
12859 -mx86-used-note=[no|yes] "));
12860 if (DEFAULT_X86_USED_NOTE)
12861 fprintf (stream, _("(default: yes)\n"));
12862 else
12863 fprintf (stream, _("(default: no)\n"));
12864 fprintf (stream, _("\
12865 generate x86 used ISA and feature properties\n"));
12866#endif
12867#if defined (TE_PE) || defined (TE_PEP)
167ad85b
TG
12868 fprintf (stream, _("\
12869 -mbig-obj generate big object files\n"));
12870#endif
d022bddd 12871 fprintf (stream, _("\
7c5c05ef 12872 -momit-lock-prefix=[no|yes] (default: no)\n\
d022bddd 12873 strip all lock prefixes\n"));
5db04b09 12874 fprintf (stream, _("\
7c5c05ef 12875 -mfence-as-lock-add=[no|yes] (default: no)\n\
e4e00185
AS
12876 encode lfence, mfence and sfence as\n\
12877 lock addl $0x0, (%%{re}sp)\n"));
12878 fprintf (stream, _("\
7c5c05ef
L
12879 -mrelax-relocations=[no|yes] "));
12880 if (DEFAULT_GENERATE_X86_RELAX_RELOCATIONS)
12881 fprintf (stream, _("(default: yes)\n"));
12882 else
12883 fprintf (stream, _("(default: no)\n"));
12884 fprintf (stream, _("\
0cb4071e
L
12885 generate relax relocations\n"));
12886 fprintf (stream, _("\
e379e5f3
L
12887 -malign-branch-boundary=NUM (default: 0)\n\
12888 align branches within NUM byte boundary\n"));
12889 fprintf (stream, _("\
12890 -malign-branch=TYPE[+TYPE...] (default: jcc+fused+jmp)\n\
12891 TYPE is combination of jcc, fused, jmp, call, ret,\n\
12892 indirect\n\
12893 specify types of branches to align\n"));
12894 fprintf (stream, _("\
12895 -malign-branch-prefix-size=NUM (default: 5)\n\
12896 align branches with NUM prefixes per instruction\n"));
12897 fprintf (stream, _("\
76cf450b
L
12898 -mbranches-within-32B-boundaries\n\
12899 align branches within 32 byte boundary\n"));
12900 fprintf (stream, _("\
7c5c05ef 12901 -mamd64 accept only AMD64 ISA [default]\n"));
5db04b09
L
12902 fprintf (stream, _("\
12903 -mintel64 accept only Intel64 ISA\n"));
252b5132
RH
12904}
12905
3e73aa7c 12906#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
321098a5 12907 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
e57f8c65 12908 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
252b5132
RH
12909
12910/* Pick the target format to use. */
12911
47926f60 12912const char *
e3bb37b5 12913i386_target_format (void)
252b5132 12914{
351f65ca
L
12915 if (!strncmp (default_arch, "x86_64", 6))
12916 {
12917 update_code_flag (CODE_64BIT, 1);
12918 if (default_arch[6] == '\0')
7f56bc95 12919 x86_elf_abi = X86_64_ABI;
351f65ca 12920 else
7f56bc95 12921 x86_elf_abi = X86_64_X32_ABI;
351f65ca 12922 }
3e73aa7c 12923 else if (!strcmp (default_arch, "i386"))
78f12dd3 12924 update_code_flag (CODE_32BIT, 1);
5197d474
L
12925 else if (!strcmp (default_arch, "iamcu"))
12926 {
12927 update_code_flag (CODE_32BIT, 1);
12928 if (cpu_arch_isa == PROCESSOR_UNKNOWN)
12929 {
12930 static const i386_cpu_flags iamcu_flags = CPU_IAMCU_FLAGS;
12931 cpu_arch_name = "iamcu";
12932 cpu_sub_arch_name = NULL;
12933 cpu_arch_flags = iamcu_flags;
12934 cpu_arch_isa = PROCESSOR_IAMCU;
12935 cpu_arch_isa_flags = iamcu_flags;
12936 if (!cpu_arch_tune_set)
12937 {
12938 cpu_arch_tune = cpu_arch_isa;
12939 cpu_arch_tune_flags = cpu_arch_isa_flags;
12940 }
12941 }
8d471ec1 12942 else if (cpu_arch_isa != PROCESSOR_IAMCU)
5197d474
L
12943 as_fatal (_("Intel MCU doesn't support `%s' architecture"),
12944 cpu_arch_name);
12945 }
3e73aa7c 12946 else
2b5d6a91 12947 as_fatal (_("unknown architecture"));
89507696
JB
12948
12949 if (cpu_flags_all_zero (&cpu_arch_isa_flags))
12950 cpu_arch_isa_flags = cpu_arch[flag_code == CODE_64BIT].flags;
12951 if (cpu_flags_all_zero (&cpu_arch_tune_flags))
12952 cpu_arch_tune_flags = cpu_arch[flag_code == CODE_64BIT].flags;
12953
252b5132
RH
12954 switch (OUTPUT_FLAVOR)
12955 {
9384f2ff 12956#if defined (OBJ_MAYBE_AOUT) || defined (OBJ_AOUT)
4c63da97 12957 case bfd_target_aout_flavour:
47926f60 12958 return AOUT_TARGET_FORMAT;
4c63da97 12959#endif
9384f2ff
AM
12960#if defined (OBJ_MAYBE_COFF) || defined (OBJ_COFF)
12961# if defined (TE_PE) || defined (TE_PEP)
12962 case bfd_target_coff_flavour:
167ad85b
TG
12963 if (flag_code == CODE_64BIT)
12964 return use_big_obj ? "pe-bigobj-x86-64" : "pe-x86-64";
12965 else
12966 return "pe-i386";
9384f2ff 12967# elif defined (TE_GO32)
0561d57c
JK
12968 case bfd_target_coff_flavour:
12969 return "coff-go32";
9384f2ff 12970# else
252b5132
RH
12971 case bfd_target_coff_flavour:
12972 return "coff-i386";
9384f2ff 12973# endif
4c63da97 12974#endif
3e73aa7c 12975#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
252b5132 12976 case bfd_target_elf_flavour:
3e73aa7c 12977 {
351f65ca
L
12978 const char *format;
12979
12980 switch (x86_elf_abi)
4fa24527 12981 {
351f65ca
L
12982 default:
12983 format = ELF_TARGET_FORMAT;
e379e5f3
L
12984#ifndef TE_SOLARIS
12985 tls_get_addr = "___tls_get_addr";
12986#endif
351f65ca 12987 break;
7f56bc95 12988 case X86_64_ABI:
351f65ca 12989 use_rela_relocations = 1;
4fa24527 12990 object_64bit = 1;
e379e5f3
L
12991#ifndef TE_SOLARIS
12992 tls_get_addr = "__tls_get_addr";
12993#endif
351f65ca
L
12994 format = ELF_TARGET_FORMAT64;
12995 break;
7f56bc95 12996 case X86_64_X32_ABI:
4fa24527 12997 use_rela_relocations = 1;
351f65ca 12998 object_64bit = 1;
e379e5f3
L
12999#ifndef TE_SOLARIS
13000 tls_get_addr = "__tls_get_addr";
13001#endif
862be3fb 13002 disallow_64bit_reloc = 1;
351f65ca
L
13003 format = ELF_TARGET_FORMAT32;
13004 break;
4fa24527 13005 }
3632d14b 13006 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 13007 {
7f56bc95 13008 if (x86_elf_abi != X86_64_ABI)
8a9036a4
L
13009 as_fatal (_("Intel L1OM is 64bit only"));
13010 return ELF_TARGET_L1OM_FORMAT;
13011 }
b49f93f6 13012 else if (cpu_arch_isa == PROCESSOR_K1OM)
7a9068fe
L
13013 {
13014 if (x86_elf_abi != X86_64_ABI)
13015 as_fatal (_("Intel K1OM is 64bit only"));
13016 return ELF_TARGET_K1OM_FORMAT;
13017 }
81486035
L
13018 else if (cpu_arch_isa == PROCESSOR_IAMCU)
13019 {
13020 if (x86_elf_abi != I386_ABI)
13021 as_fatal (_("Intel MCU is 32bit only"));
13022 return ELF_TARGET_IAMCU_FORMAT;
13023 }
8a9036a4 13024 else
351f65ca 13025 return format;
3e73aa7c 13026 }
e57f8c65
TG
13027#endif
13028#if defined (OBJ_MACH_O)
13029 case bfd_target_mach_o_flavour:
d382c579
TG
13030 if (flag_code == CODE_64BIT)
13031 {
13032 use_rela_relocations = 1;
13033 object_64bit = 1;
13034 return "mach-o-x86-64";
13035 }
13036 else
13037 return "mach-o-i386";
4c63da97 13038#endif
252b5132
RH
13039 default:
13040 abort ();
13041 return NULL;
13042 }
13043}
13044
47926f60 13045#endif /* OBJ_MAYBE_ more than one */
252b5132 13046\f
252b5132 13047symbolS *
7016a5d5 13048md_undefined_symbol (char *name)
252b5132 13049{
18dc2407
ILT
13050 if (name[0] == GLOBAL_OFFSET_TABLE_NAME[0]
13051 && name[1] == GLOBAL_OFFSET_TABLE_NAME[1]
13052 && name[2] == GLOBAL_OFFSET_TABLE_NAME[2]
13053 && strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0)
24eab124
AM
13054 {
13055 if (!GOT_symbol)
13056 {
13057 if (symbol_find (name))
13058 as_bad (_("GOT already in symbol table"));
13059 GOT_symbol = symbol_new (name, undefined_section,
13060 (valueT) 0, &zero_address_frag);
13061 };
13062 return GOT_symbol;
13063 }
252b5132
RH
13064 return 0;
13065}
13066
13067/* Round up a section size to the appropriate boundary. */
47926f60 13068
252b5132 13069valueT
7016a5d5 13070md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size)
252b5132 13071{
4c63da97
AM
13072#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
13073 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
13074 {
13075 /* For a.out, force the section size to be aligned. If we don't do
13076 this, BFD will align it for us, but it will not write out the
13077 final bytes of the section. This may be a bug in BFD, but it is
13078 easier to fix it here since that is how the other a.out targets
13079 work. */
13080 int align;
13081
fd361982 13082 align = bfd_section_alignment (segment);
8d3842cd 13083 size = ((size + (1 << align) - 1) & (-((valueT) 1 << align)));
4c63da97 13084 }
252b5132
RH
13085#endif
13086
13087 return size;
13088}
13089
13090/* On the i386, PC-relative offsets are relative to the start of the
13091 next instruction. That is, the address of the offset, plus its
13092 size, since the offset is always the last part of the insn. */
13093
13094long
e3bb37b5 13095md_pcrel_from (fixS *fixP)
252b5132
RH
13096{
13097 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
13098}
13099
13100#ifndef I386COFF
13101
13102static void
e3bb37b5 13103s_bss (int ignore ATTRIBUTE_UNUSED)
252b5132 13104{
29b0f896 13105 int temp;
252b5132 13106
8a75718c
JB
13107#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13108 if (IS_ELF)
13109 obj_elf_section_change_hook ();
13110#endif
252b5132
RH
13111 temp = get_absolute_expression ();
13112 subseg_set (bss_section, (subsegT) temp);
13113 demand_empty_rest_of_line ();
13114}
13115
13116#endif
13117
e379e5f3
L
13118/* Remember constant directive. */
13119
13120void
13121i386_cons_align (int ignore ATTRIBUTE_UNUSED)
13122{
13123 if (last_insn.kind != last_insn_directive
13124 && (bfd_section_flags (now_seg) & SEC_CODE))
13125 {
13126 last_insn.seg = now_seg;
13127 last_insn.kind = last_insn_directive;
13128 last_insn.name = "constant directive";
13129 last_insn.file = as_where (&last_insn.line);
13130 }
13131}
13132
252b5132 13133void
e3bb37b5 13134i386_validate_fix (fixS *fixp)
252b5132 13135{
02a86693 13136 if (fixp->fx_subsy)
252b5132 13137 {
02a86693 13138 if (fixp->fx_subsy == GOT_symbol)
23df1078 13139 {
02a86693
L
13140 if (fixp->fx_r_type == BFD_RELOC_32_PCREL)
13141 {
13142 if (!object_64bit)
13143 abort ();
13144#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13145 if (fixp->fx_tcbit2)
56ceb5b5
L
13146 fixp->fx_r_type = (fixp->fx_tcbit
13147 ? BFD_RELOC_X86_64_REX_GOTPCRELX
13148 : BFD_RELOC_X86_64_GOTPCRELX);
02a86693
L
13149 else
13150#endif
13151 fixp->fx_r_type = BFD_RELOC_X86_64_GOTPCREL;
13152 }
d6ab8113 13153 else
02a86693
L
13154 {
13155 if (!object_64bit)
13156 fixp->fx_r_type = BFD_RELOC_386_GOTOFF;
13157 else
13158 fixp->fx_r_type = BFD_RELOC_X86_64_GOTOFF64;
13159 }
13160 fixp->fx_subsy = 0;
23df1078 13161 }
252b5132 13162 }
02a86693
L
13163#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13164 else if (!object_64bit)
13165 {
13166 if (fixp->fx_r_type == BFD_RELOC_386_GOT32
13167 && fixp->fx_tcbit2)
13168 fixp->fx_r_type = BFD_RELOC_386_GOT32X;
13169 }
13170#endif
252b5132
RH
13171}
13172
252b5132 13173arelent *
7016a5d5 13174tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
13175{
13176 arelent *rel;
13177 bfd_reloc_code_real_type code;
13178
13179 switch (fixp->fx_r_type)
13180 {
8ce3d284 13181#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
13182 case BFD_RELOC_SIZE32:
13183 case BFD_RELOC_SIZE64:
13184 if (S_IS_DEFINED (fixp->fx_addsy)
13185 && !S_IS_EXTERNAL (fixp->fx_addsy))
13186 {
13187 /* Resolve size relocation against local symbol to size of
13188 the symbol plus addend. */
13189 valueT value = S_GET_SIZE (fixp->fx_addsy) + fixp->fx_offset;
13190 if (fixp->fx_r_type == BFD_RELOC_SIZE32
13191 && !fits_in_unsigned_long (value))
13192 as_bad_where (fixp->fx_file, fixp->fx_line,
13193 _("symbol size computation overflow"));
13194 fixp->fx_addsy = NULL;
13195 fixp->fx_subsy = NULL;
13196 md_apply_fix (fixp, (valueT *) &value, NULL);
13197 return NULL;
13198 }
8ce3d284 13199#endif
1a0670f3 13200 /* Fall through. */
8fd4256d 13201
3e73aa7c
JH
13202 case BFD_RELOC_X86_64_PLT32:
13203 case BFD_RELOC_X86_64_GOT32:
13204 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
13205 case BFD_RELOC_X86_64_GOTPCRELX:
13206 case BFD_RELOC_X86_64_REX_GOTPCRELX:
252b5132
RH
13207 case BFD_RELOC_386_PLT32:
13208 case BFD_RELOC_386_GOT32:
02a86693 13209 case BFD_RELOC_386_GOT32X:
252b5132
RH
13210 case BFD_RELOC_386_GOTOFF:
13211 case BFD_RELOC_386_GOTPC:
13ae64f3
JJ
13212 case BFD_RELOC_386_TLS_GD:
13213 case BFD_RELOC_386_TLS_LDM:
13214 case BFD_RELOC_386_TLS_LDO_32:
13215 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
13216 case BFD_RELOC_386_TLS_IE:
13217 case BFD_RELOC_386_TLS_GOTIE:
13ae64f3
JJ
13218 case BFD_RELOC_386_TLS_LE_32:
13219 case BFD_RELOC_386_TLS_LE:
67a4f2b7
AO
13220 case BFD_RELOC_386_TLS_GOTDESC:
13221 case BFD_RELOC_386_TLS_DESC_CALL:
bffbf940
JJ
13222 case BFD_RELOC_X86_64_TLSGD:
13223 case BFD_RELOC_X86_64_TLSLD:
13224 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 13225 case BFD_RELOC_X86_64_DTPOFF64:
bffbf940
JJ
13226 case BFD_RELOC_X86_64_GOTTPOFF:
13227 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113
JB
13228 case BFD_RELOC_X86_64_TPOFF64:
13229 case BFD_RELOC_X86_64_GOTOFF64:
13230 case BFD_RELOC_X86_64_GOTPC32:
7b81dfbb
AJ
13231 case BFD_RELOC_X86_64_GOT64:
13232 case BFD_RELOC_X86_64_GOTPCREL64:
13233 case BFD_RELOC_X86_64_GOTPC64:
13234 case BFD_RELOC_X86_64_GOTPLT64:
13235 case BFD_RELOC_X86_64_PLTOFF64:
67a4f2b7
AO
13236 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
13237 case BFD_RELOC_X86_64_TLSDESC_CALL:
252b5132
RH
13238 case BFD_RELOC_RVA:
13239 case BFD_RELOC_VTABLE_ENTRY:
13240 case BFD_RELOC_VTABLE_INHERIT:
6482c264
NC
13241#ifdef TE_PE
13242 case BFD_RELOC_32_SECREL:
13243#endif
252b5132
RH
13244 code = fixp->fx_r_type;
13245 break;
dbbaec26
L
13246 case BFD_RELOC_X86_64_32S:
13247 if (!fixp->fx_pcrel)
13248 {
13249 /* Don't turn BFD_RELOC_X86_64_32S into BFD_RELOC_32. */
13250 code = fixp->fx_r_type;
13251 break;
13252 }
1a0670f3 13253 /* Fall through. */
252b5132 13254 default:
93382f6d 13255 if (fixp->fx_pcrel)
252b5132 13256 {
93382f6d
AM
13257 switch (fixp->fx_size)
13258 {
13259 default:
b091f402
AM
13260 as_bad_where (fixp->fx_file, fixp->fx_line,
13261 _("can not do %d byte pc-relative relocation"),
13262 fixp->fx_size);
93382f6d
AM
13263 code = BFD_RELOC_32_PCREL;
13264 break;
13265 case 1: code = BFD_RELOC_8_PCREL; break;
13266 case 2: code = BFD_RELOC_16_PCREL; break;
d258b828 13267 case 4: code = BFD_RELOC_32_PCREL; break;
d6ab8113
JB
13268#ifdef BFD64
13269 case 8: code = BFD_RELOC_64_PCREL; break;
13270#endif
93382f6d
AM
13271 }
13272 }
13273 else
13274 {
13275 switch (fixp->fx_size)
13276 {
13277 default:
b091f402
AM
13278 as_bad_where (fixp->fx_file, fixp->fx_line,
13279 _("can not do %d byte relocation"),
13280 fixp->fx_size);
93382f6d
AM
13281 code = BFD_RELOC_32;
13282 break;
13283 case 1: code = BFD_RELOC_8; break;
13284 case 2: code = BFD_RELOC_16; break;
13285 case 4: code = BFD_RELOC_32; break;
937149dd 13286#ifdef BFD64
3e73aa7c 13287 case 8: code = BFD_RELOC_64; break;
937149dd 13288#endif
93382f6d 13289 }
252b5132
RH
13290 }
13291 break;
13292 }
252b5132 13293
d182319b
JB
13294 if ((code == BFD_RELOC_32
13295 || code == BFD_RELOC_32_PCREL
13296 || code == BFD_RELOC_X86_64_32S)
252b5132
RH
13297 && GOT_symbol
13298 && fixp->fx_addsy == GOT_symbol)
3e73aa7c 13299 {
4fa24527 13300 if (!object_64bit)
d6ab8113
JB
13301 code = BFD_RELOC_386_GOTPC;
13302 else
13303 code = BFD_RELOC_X86_64_GOTPC32;
3e73aa7c 13304 }
7b81dfbb
AJ
13305 if ((code == BFD_RELOC_64 || code == BFD_RELOC_64_PCREL)
13306 && GOT_symbol
13307 && fixp->fx_addsy == GOT_symbol)
13308 {
13309 code = BFD_RELOC_X86_64_GOTPC64;
13310 }
252b5132 13311
add39d23
TS
13312 rel = XNEW (arelent);
13313 rel->sym_ptr_ptr = XNEW (asymbol *);
49309057 13314 *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
13315
13316 rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
c87db184 13317
3e73aa7c
JH
13318 if (!use_rela_relocations)
13319 {
13320 /* HACK: Since i386 ELF uses Rel instead of Rela, encode the
13321 vtable entry to be used in the relocation's section offset. */
13322 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
13323 rel->address = fixp->fx_offset;
fbeb56a4
DK
13324#if defined (OBJ_COFF) && defined (TE_PE)
13325 else if (fixp->fx_addsy && S_IS_WEAK (fixp->fx_addsy))
13326 rel->addend = fixp->fx_addnumber - (S_GET_VALUE (fixp->fx_addsy) * 2);
13327 else
13328#endif
c6682705 13329 rel->addend = 0;
3e73aa7c
JH
13330 }
13331 /* Use the rela in 64bit mode. */
252b5132 13332 else
3e73aa7c 13333 {
862be3fb
L
13334 if (disallow_64bit_reloc)
13335 switch (code)
13336 {
862be3fb
L
13337 case BFD_RELOC_X86_64_DTPOFF64:
13338 case BFD_RELOC_X86_64_TPOFF64:
13339 case BFD_RELOC_64_PCREL:
13340 case BFD_RELOC_X86_64_GOTOFF64:
13341 case BFD_RELOC_X86_64_GOT64:
13342 case BFD_RELOC_X86_64_GOTPCREL64:
13343 case BFD_RELOC_X86_64_GOTPC64:
13344 case BFD_RELOC_X86_64_GOTPLT64:
13345 case BFD_RELOC_X86_64_PLTOFF64:
13346 as_bad_where (fixp->fx_file, fixp->fx_line,
13347 _("cannot represent relocation type %s in x32 mode"),
13348 bfd_get_reloc_code_name (code));
13349 break;
13350 default:
13351 break;
13352 }
13353
062cd5e7
AS
13354 if (!fixp->fx_pcrel)
13355 rel->addend = fixp->fx_offset;
13356 else
13357 switch (code)
13358 {
13359 case BFD_RELOC_X86_64_PLT32:
13360 case BFD_RELOC_X86_64_GOT32:
13361 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
13362 case BFD_RELOC_X86_64_GOTPCRELX:
13363 case BFD_RELOC_X86_64_REX_GOTPCRELX:
bffbf940
JJ
13364 case BFD_RELOC_X86_64_TLSGD:
13365 case BFD_RELOC_X86_64_TLSLD:
13366 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7
AO
13367 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
13368 case BFD_RELOC_X86_64_TLSDESC_CALL:
062cd5e7
AS
13369 rel->addend = fixp->fx_offset - fixp->fx_size;
13370 break;
13371 default:
13372 rel->addend = (section->vma
13373 - fixp->fx_size
13374 + fixp->fx_addnumber
13375 + md_pcrel_from (fixp));
13376 break;
13377 }
3e73aa7c
JH
13378 }
13379
252b5132
RH
13380 rel->howto = bfd_reloc_type_lookup (stdoutput, code);
13381 if (rel->howto == NULL)
13382 {
13383 as_bad_where (fixp->fx_file, fixp->fx_line,
d0b47220 13384 _("cannot represent relocation type %s"),
252b5132
RH
13385 bfd_get_reloc_code_name (code));
13386 /* Set howto to a garbage value so that we can keep going. */
13387 rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
9c2799c2 13388 gas_assert (rel->howto != NULL);
252b5132
RH
13389 }
13390
13391 return rel;
13392}
13393
ee86248c 13394#include "tc-i386-intel.c"
54cfded0 13395
a60de03c
JB
13396void
13397tc_x86_parse_to_dw2regnum (expressionS *exp)
54cfded0 13398{
a60de03c
JB
13399 int saved_naked_reg;
13400 char saved_register_dot;
54cfded0 13401
a60de03c
JB
13402 saved_naked_reg = allow_naked_reg;
13403 allow_naked_reg = 1;
13404 saved_register_dot = register_chars['.'];
13405 register_chars['.'] = '.';
13406 allow_pseudo_reg = 1;
13407 expression_and_evaluate (exp);
13408 allow_pseudo_reg = 0;
13409 register_chars['.'] = saved_register_dot;
13410 allow_naked_reg = saved_naked_reg;
13411
e96d56a1 13412 if (exp->X_op == O_register && exp->X_add_number >= 0)
54cfded0 13413 {
a60de03c
JB
13414 if ((addressT) exp->X_add_number < i386_regtab_size)
13415 {
13416 exp->X_op = O_constant;
13417 exp->X_add_number = i386_regtab[exp->X_add_number]
13418 .dw2_regnum[flag_code >> 1];
13419 }
13420 else
13421 exp->X_op = O_illegal;
54cfded0 13422 }
54cfded0
AM
13423}
13424
13425void
13426tc_x86_frame_initial_instructions (void)
13427{
a60de03c
JB
13428 static unsigned int sp_regno[2];
13429
13430 if (!sp_regno[flag_code >> 1])
13431 {
13432 char *saved_input = input_line_pointer;
13433 char sp[][4] = {"esp", "rsp"};
13434 expressionS exp;
a4447b93 13435
a60de03c
JB
13436 input_line_pointer = sp[flag_code >> 1];
13437 tc_x86_parse_to_dw2regnum (&exp);
9c2799c2 13438 gas_assert (exp.X_op == O_constant);
a60de03c
JB
13439 sp_regno[flag_code >> 1] = exp.X_add_number;
13440 input_line_pointer = saved_input;
13441 }
a4447b93 13442
61ff971f
L
13443 cfi_add_CFA_def_cfa (sp_regno[flag_code >> 1], -x86_cie_data_alignment);
13444 cfi_add_CFA_offset (x86_dwarf2_return_column, x86_cie_data_alignment);
54cfded0 13445}
d2b2c203 13446
d7921315
L
13447int
13448x86_dwarf2_addr_size (void)
13449{
13450#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
13451 if (x86_elf_abi == X86_64_X32_ABI)
13452 return 4;
13453#endif
13454 return bfd_arch_bits_per_address (stdoutput) / 8;
13455}
13456
d2b2c203
DJ
13457int
13458i386_elf_section_type (const char *str, size_t len)
13459{
13460 if (flag_code == CODE_64BIT
13461 && len == sizeof ("unwind") - 1
13462 && strncmp (str, "unwind", 6) == 0)
13463 return SHT_X86_64_UNWIND;
13464
13465 return -1;
13466}
bb41ade5 13467
ad5fec3b
EB
13468#ifdef TE_SOLARIS
13469void
13470i386_solaris_fix_up_eh_frame (segT sec)
13471{
13472 if (flag_code == CODE_64BIT)
13473 elf_section_type (sec) = SHT_X86_64_UNWIND;
13474}
13475#endif
13476
bb41ade5
AM
13477#ifdef TE_PE
13478void
13479tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
13480{
91d6fa6a 13481 expressionS exp;
bb41ade5 13482
91d6fa6a
NC
13483 exp.X_op = O_secrel;
13484 exp.X_add_symbol = symbol;
13485 exp.X_add_number = 0;
13486 emit_expr (&exp, size);
bb41ade5
AM
13487}
13488#endif
3b22753a
L
13489
13490#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13491/* For ELF on x86-64, add support for SHF_X86_64_LARGE. */
13492
01e1a5bc 13493bfd_vma
6d4af3c2 13494x86_64_section_letter (int letter, const char **ptr_msg)
3b22753a
L
13495{
13496 if (flag_code == CODE_64BIT)
13497 {
13498 if (letter == 'l')
13499 return SHF_X86_64_LARGE;
13500
8f3bae45 13501 *ptr_msg = _("bad .section directive: want a,l,w,x,M,S,G,T in string");
64e74474 13502 }
3b22753a 13503 else
8f3bae45 13504 *ptr_msg = _("bad .section directive: want a,w,x,M,S,G,T in string");
3b22753a
L
13505 return -1;
13506}
13507
01e1a5bc 13508bfd_vma
3b22753a
L
13509x86_64_section_word (char *str, size_t len)
13510{
8620418b 13511 if (len == 5 && flag_code == CODE_64BIT && CONST_STRNEQ (str, "large"))
3b22753a
L
13512 return SHF_X86_64_LARGE;
13513
13514 return -1;
13515}
13516
13517static void
13518handle_large_common (int small ATTRIBUTE_UNUSED)
13519{
13520 if (flag_code != CODE_64BIT)
13521 {
13522 s_comm_internal (0, elf_common_parse);
13523 as_warn (_(".largecomm supported only in 64bit mode, producing .comm"));
13524 }
13525 else
13526 {
13527 static segT lbss_section;
13528 asection *saved_com_section_ptr = elf_com_section_ptr;
13529 asection *saved_bss_section = bss_section;
13530
13531 if (lbss_section == NULL)
13532 {
13533 flagword applicable;
13534 segT seg = now_seg;
13535 subsegT subseg = now_subseg;
13536
13537 /* The .lbss section is for local .largecomm symbols. */
13538 lbss_section = subseg_new (".lbss", 0);
13539 applicable = bfd_applicable_section_flags (stdoutput);
fd361982 13540 bfd_set_section_flags (lbss_section, applicable & SEC_ALLOC);
3b22753a
L
13541 seg_info (lbss_section)->bss = 1;
13542
13543 subseg_set (seg, subseg);
13544 }
13545
13546 elf_com_section_ptr = &_bfd_elf_large_com_section;
13547 bss_section = lbss_section;
13548
13549 s_comm_internal (0, elf_common_parse);
13550
13551 elf_com_section_ptr = saved_com_section_ptr;
13552 bss_section = saved_bss_section;
13553 }
13554}
13555#endif /* OBJ_ELF || OBJ_MAYBE_ELF */