PR27647 PowerPC extended conditional branch mnemonics
[deliverable/binutils-gdb.git] / gas / config / tc-i386.c
CommitLineData
b534c6d3 1/* tc-i386.c -- Assemble code for the Intel 80386
250d07de 2 Copyright (C) 1989-2021 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20
47926f60
KH
21/* Intel 80386 machine specific gas.
22 Written by Eliot Dresselhaus (eliot@mgm.mit.edu).
3e73aa7c 23 x86_64 support by Jan Hubicka (jh@suse.cz)
0f10071e 24 VIA PadLock support by Michal Ludvig (mludvig@suse.cz)
47926f60
KH
25 Bugs & suggestions are completely welcome. This is free software.
26 Please help us make it better. */
252b5132 27
252b5132 28#include "as.h"
3882b010 29#include "safe-ctype.h"
252b5132 30#include "subsegs.h"
316e2c05 31#include "dwarf2dbg.h"
54cfded0 32#include "dw2gencfi.h"
d2b2c203 33#include "elf/x86-64.h"
40fb9820 34#include "opcodes/i386-init.h"
252b5132 35
41fd2579
L
36#ifdef HAVE_LIMITS_H
37#include <limits.h>
38#else
39#ifdef HAVE_SYS_PARAM_H
40#include <sys/param.h>
41#endif
42#ifndef INT_MAX
43#define INT_MAX (int) (((unsigned) (-1)) >> 1)
44#endif
45#endif
46
c3332e24 47#ifndef INFER_ADDR_PREFIX
eecb386c 48#define INFER_ADDR_PREFIX 1
c3332e24
AM
49#endif
50
29b0f896
AM
51#ifndef DEFAULT_ARCH
52#define DEFAULT_ARCH "i386"
246fcdee 53#endif
252b5132 54
edde18a5
AM
55#ifndef INLINE
56#if __GNUC__ >= 2
57#define INLINE __inline__
58#else
59#define INLINE
60#endif
61#endif
62
6305a203
L
63/* Prefixes will be emitted in the order defined below.
64 WAIT_PREFIX must be the first prefix since FWAIT is really is an
65 instruction, and so must come before any prefixes.
66 The preferred prefix order is SEG_PREFIX, ADDR_PREFIX, DATA_PREFIX,
42164a71 67 REP_PREFIX/HLE_PREFIX, LOCK_PREFIX. */
6305a203
L
68#define WAIT_PREFIX 0
69#define SEG_PREFIX 1
70#define ADDR_PREFIX 2
71#define DATA_PREFIX 3
c32fa91d 72#define REP_PREFIX 4
42164a71 73#define HLE_PREFIX REP_PREFIX
7e8b059b 74#define BND_PREFIX REP_PREFIX
c32fa91d 75#define LOCK_PREFIX 5
4e9ac44a
L
76#define REX_PREFIX 6 /* must come last. */
77#define MAX_PREFIXES 7 /* max prefixes per opcode */
6305a203
L
78
79/* we define the syntax here (modulo base,index,scale syntax) */
80#define REGISTER_PREFIX '%'
81#define IMMEDIATE_PREFIX '$'
82#define ABSOLUTE_PREFIX '*'
83
84/* these are the instruction mnemonic suffixes in AT&T syntax or
85 memory operand size in Intel syntax. */
86#define WORD_MNEM_SUFFIX 'w'
87#define BYTE_MNEM_SUFFIX 'b'
88#define SHORT_MNEM_SUFFIX 's'
89#define LONG_MNEM_SUFFIX 'l'
90#define QWORD_MNEM_SUFFIX 'q'
6305a203
L
91/* Intel Syntax. Use a non-ascii letter since since it never appears
92 in instructions. */
93#define LONG_DOUBLE_MNEM_SUFFIX '\1'
94
95#define END_OF_INSN '\0'
96
79dec6b7
JB
97/* This matches the C -> StaticRounding alias in the opcode table. */
98#define commutative staticrounding
99
6305a203
L
100/*
101 'templates' is for grouping together 'template' structures for opcodes
102 of the same name. This is only used for storing the insns in the grand
103 ole hash table of insns.
104 The templates themselves start at START and range up to (but not including)
105 END.
106 */
107typedef struct
108{
d3ce72d0
NC
109 const insn_template *start;
110 const insn_template *end;
6305a203
L
111}
112templates;
113
114/* 386 operand encoding bytes: see 386 book for details of this. */
115typedef struct
116{
117 unsigned int regmem; /* codes register or memory operand */
118 unsigned int reg; /* codes register operand (or extended opcode) */
119 unsigned int mode; /* how to interpret regmem & reg */
120}
121modrm_byte;
122
123/* x86-64 extension prefix. */
124typedef int rex_byte;
125
6305a203
L
126/* 386 opcode byte to code indirect addressing. */
127typedef struct
128{
129 unsigned base;
130 unsigned index;
131 unsigned scale;
132}
133sib_byte;
134
6305a203
L
135/* x86 arch names, types and features */
136typedef struct
137{
138 const char *name; /* arch name */
8a2c8fef 139 unsigned int len; /* arch string length */
6305a203
L
140 enum processor_type type; /* arch type */
141 i386_cpu_flags flags; /* cpu feature flags */
8a2c8fef 142 unsigned int skip; /* show_arch should skip this. */
6305a203
L
143}
144arch_entry;
145
293f5f65
L
146/* Used to turn off indicated flags. */
147typedef struct
148{
149 const char *name; /* arch name */
150 unsigned int len; /* arch string length */
151 i386_cpu_flags flags; /* cpu feature flags */
152}
153noarch_entry;
154
78f12dd3 155static void update_code_flag (int, int);
e3bb37b5
L
156static void set_code_flag (int);
157static void set_16bit_gcc_code_flag (int);
158static void set_intel_syntax (int);
1efbbeb4 159static void set_intel_mnemonic (int);
db51cc60 160static void set_allow_index_reg (int);
7bab8ab5 161static void set_check (int);
e3bb37b5 162static void set_cpu_arch (int);
6482c264 163#ifdef TE_PE
e3bb37b5 164static void pe_directive_secrel (int);
6482c264 165#endif
e3bb37b5
L
166static void signed_cons (int);
167static char *output_invalid (int c);
ee86248c
JB
168static int i386_finalize_immediate (segT, expressionS *, i386_operand_type,
169 const char *);
170static int i386_finalize_displacement (segT, expressionS *, i386_operand_type,
171 const char *);
a7619375 172static int i386_att_operand (char *);
e3bb37b5 173static int i386_intel_operand (char *, int);
ee86248c
JB
174static int i386_intel_simplify (expressionS *);
175static int i386_intel_parse_name (const char *, expressionS *);
e3bb37b5
L
176static const reg_entry *parse_register (char *, char **);
177static char *parse_insn (char *, char *);
178static char *parse_operands (char *, const char *);
179static void swap_operands (void);
4d456e3d 180static void swap_2_operands (int, int);
48bcea9f 181static enum flag_code i386_addressing_mode (void);
e3bb37b5
L
182static void optimize_imm (void);
183static void optimize_disp (void);
83b16ac6 184static const insn_template *match_template (char);
e3bb37b5
L
185static int check_string (void);
186static int process_suffix (void);
187static int check_byte_reg (void);
188static int check_long_reg (void);
189static int check_qword_reg (void);
190static int check_word_reg (void);
191static int finalize_imm (void);
192static int process_operands (void);
193static const seg_entry *build_modrm_byte (void);
194static void output_insn (void);
195static void output_imm (fragS *, offsetT);
196static void output_disp (fragS *, offsetT);
29b0f896 197#ifndef I386COFF
e3bb37b5 198static void s_bss (int);
252b5132 199#endif
17d4e2a2
L
200#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
201static void handle_large_common (int small ATTRIBUTE_UNUSED);
b4a3a7b4
L
202
203/* GNU_PROPERTY_X86_ISA_1_USED. */
204static unsigned int x86_isa_1_used;
205/* GNU_PROPERTY_X86_FEATURE_2_USED. */
206static unsigned int x86_feature_2_used;
207/* Generate x86 used ISA and feature properties. */
208static unsigned int x86_used_note = DEFAULT_X86_USED_NOTE;
17d4e2a2 209#endif
252b5132 210
a847613f 211static const char *default_arch = DEFAULT_ARCH;
3e73aa7c 212
8a6fb3f9
JB
213/* parse_register() returns this when a register alias cannot be used. */
214static const reg_entry bad_reg = { "<bad>", OPERAND_TYPE_NONE, 0, 0,
215 { Dw2Inval, Dw2Inval } };
216
43234a1e
L
217/* This struct describes rounding control and SAE in the instruction. */
218struct RC_Operation
219{
220 enum rc_type
221 {
222 rne = 0,
223 rd,
224 ru,
225 rz,
226 saeonly
227 } type;
228 int operand;
229};
230
231static struct RC_Operation rc_op;
232
233/* The struct describes masking, applied to OPERAND in the instruction.
234 MASK is a pointer to the corresponding mask register. ZEROING tells
235 whether merging or zeroing mask is used. */
236struct Mask_Operation
237{
238 const reg_entry *mask;
239 unsigned int zeroing;
240 /* The operand where this operation is associated. */
241 int operand;
242};
243
244static struct Mask_Operation mask_op;
245
246/* The struct describes broadcasting, applied to OPERAND. FACTOR is
247 broadcast factor. */
248struct Broadcast_Operation
249{
8e6e0792 250 /* Type of broadcast: {1to2}, {1to4}, {1to8}, or {1to16}. */
43234a1e
L
251 int type;
252
253 /* Index of broadcasted operand. */
254 int operand;
4a1b91ea
L
255
256 /* Number of bytes to broadcast. */
257 int bytes;
43234a1e
L
258};
259
260static struct Broadcast_Operation broadcast_op;
261
c0f3af97
L
262/* VEX prefix. */
263typedef struct
264{
43234a1e
L
265 /* VEX prefix is either 2 byte or 3 byte. EVEX is 4 byte. */
266 unsigned char bytes[4];
c0f3af97
L
267 unsigned int length;
268 /* Destination or source register specifier. */
269 const reg_entry *register_specifier;
270} vex_prefix;
271
252b5132 272/* 'md_assemble ()' gathers together information and puts it into a
47926f60 273 i386_insn. */
252b5132 274
520dc8e8
AM
275union i386_op
276 {
277 expressionS *disps;
278 expressionS *imms;
279 const reg_entry *regs;
280 };
281
a65babc9
L
282enum i386_error
283 {
86e026a4 284 operand_size_mismatch,
a65babc9
L
285 operand_type_mismatch,
286 register_type_mismatch,
287 number_of_operands_mismatch,
288 invalid_instruction_suffix,
289 bad_imm4,
a65babc9
L
290 unsupported_with_intel_mnemonic,
291 unsupported_syntax,
6c30d220 292 unsupported,
260cd341 293 invalid_sib_address,
6c30d220 294 invalid_vsib_address,
7bab8ab5 295 invalid_vector_register_set,
260cd341 296 invalid_tmm_register_set,
43234a1e
L
297 unsupported_vector_index_register,
298 unsupported_broadcast,
43234a1e
L
299 broadcast_needed,
300 unsupported_masking,
301 mask_not_on_destination,
302 no_default_mask,
303 unsupported_rc_sae,
304 rc_sae_operand_not_last_imm,
305 invalid_register_operand,
a65babc9
L
306 };
307
252b5132
RH
308struct _i386_insn
309 {
47926f60 310 /* TM holds the template for the insn were currently assembling. */
d3ce72d0 311 insn_template tm;
252b5132 312
7d5e4556
L
313 /* SUFFIX holds the instruction size suffix for byte, word, dword
314 or qword, if given. */
252b5132
RH
315 char suffix;
316
9a182d04
JB
317 /* OPCODE_LENGTH holds the number of base opcode bytes. */
318 unsigned char opcode_length;
319
47926f60 320 /* OPERANDS gives the number of given operands. */
252b5132
RH
321 unsigned int operands;
322
323 /* REG_OPERANDS, DISP_OPERANDS, MEM_OPERANDS, IMM_OPERANDS give the number
324 of given register, displacement, memory operands and immediate
47926f60 325 operands. */
252b5132
RH
326 unsigned int reg_operands, disp_operands, mem_operands, imm_operands;
327
328 /* TYPES [i] is the type (see above #defines) which tells us how to
520dc8e8 329 use OP[i] for the corresponding operand. */
40fb9820 330 i386_operand_type types[MAX_OPERANDS];
252b5132 331
520dc8e8
AM
332 /* Displacement expression, immediate expression, or register for each
333 operand. */
334 union i386_op op[MAX_OPERANDS];
252b5132 335
3e73aa7c
JH
336 /* Flags for operands. */
337 unsigned int flags[MAX_OPERANDS];
338#define Operand_PCrel 1
c48dadc9 339#define Operand_Mem 2
3e73aa7c 340
252b5132 341 /* Relocation type for operand */
f86103b7 342 enum bfd_reloc_code_real reloc[MAX_OPERANDS];
252b5132 343
252b5132
RH
344 /* BASE_REG, INDEX_REG, and LOG2_SCALE_FACTOR are used to encode
345 the base index byte below. */
346 const reg_entry *base_reg;
347 const reg_entry *index_reg;
348 unsigned int log2_scale_factor;
349
350 /* SEG gives the seg_entries of this insn. They are zero unless
47926f60 351 explicit segment overrides are given. */
ce8a8b2f 352 const seg_entry *seg[2];
252b5132 353
8325cc63
JB
354 /* Copied first memory operand string, for re-checking. */
355 char *memop1_string;
356
252b5132
RH
357 /* PREFIX holds all the given prefix opcodes (usually null).
358 PREFIXES is the number of prefix opcodes. */
359 unsigned int prefixes;
360 unsigned char prefix[MAX_PREFIXES];
361
50128d0c
JB
362 /* Register is in low 3 bits of opcode. */
363 bfd_boolean short_form;
364
6f2f06be
JB
365 /* The operand to a branch insn indicates an absolute branch. */
366 bfd_boolean jumpabsolute;
367
921eafea
L
368 /* Extended states. */
369 enum
370 {
371 /* Use MMX state. */
372 xstate_mmx = 1 << 0,
373 /* Use XMM state. */
374 xstate_xmm = 1 << 1,
375 /* Use YMM state. */
376 xstate_ymm = 1 << 2 | xstate_xmm,
377 /* Use ZMM state. */
378 xstate_zmm = 1 << 3 | xstate_ymm,
379 /* Use TMM state. */
32930e4e
L
380 xstate_tmm = 1 << 4,
381 /* Use MASK state. */
382 xstate_mask = 1 << 5
921eafea 383 } xstate;
260cd341 384
e379e5f3
L
385 /* Has GOTPC or TLS relocation. */
386 bfd_boolean has_gotpc_tls_reloc;
387
252b5132 388 /* RM and SIB are the modrm byte and the sib byte where the
c1e679ec 389 addressing modes of this insn are encoded. */
252b5132 390 modrm_byte rm;
3e73aa7c 391 rex_byte rex;
43234a1e 392 rex_byte vrex;
252b5132 393 sib_byte sib;
c0f3af97 394 vex_prefix vex;
b6169b20 395
43234a1e
L
396 /* Masking attributes. */
397 struct Mask_Operation *mask;
398
399 /* Rounding control and SAE attributes. */
400 struct RC_Operation *rounding;
401
402 /* Broadcasting attributes. */
403 struct Broadcast_Operation *broadcast;
404
405 /* Compressed disp8*N attribute. */
406 unsigned int memshift;
407
86fa6981
L
408 /* Prefer load or store in encoding. */
409 enum
410 {
411 dir_encoding_default = 0,
412 dir_encoding_load,
64c49ab3
JB
413 dir_encoding_store,
414 dir_encoding_swap
86fa6981 415 } dir_encoding;
891edac4 416
41eb8e88 417 /* Prefer 8bit, 16bit, 32bit displacement in encoding. */
a501d77e
L
418 enum
419 {
420 disp_encoding_default = 0,
421 disp_encoding_8bit,
41eb8e88 422 disp_encoding_16bit,
a501d77e
L
423 disp_encoding_32bit
424 } disp_encoding;
f8a5c266 425
6b6b6807
L
426 /* Prefer the REX byte in encoding. */
427 bfd_boolean rex_encoding;
428
b6f8c7c4
L
429 /* Disable instruction size optimization. */
430 bfd_boolean no_optimize;
431
86fa6981
L
432 /* How to encode vector instructions. */
433 enum
434 {
435 vex_encoding_default = 0,
42e04b36 436 vex_encoding_vex,
86fa6981 437 vex_encoding_vex3,
da4977e0
JB
438 vex_encoding_evex,
439 vex_encoding_error
86fa6981
L
440 } vec_encoding;
441
d5de92cf
L
442 /* REP prefix. */
443 const char *rep_prefix;
444
165de32a
L
445 /* HLE prefix. */
446 const char *hle_prefix;
42164a71 447
7e8b059b
L
448 /* Have BND prefix. */
449 const char *bnd_prefix;
450
04ef582a
L
451 /* Have NOTRACK prefix. */
452 const char *notrack_prefix;
453
891edac4 454 /* Error message. */
a65babc9 455 enum i386_error error;
252b5132
RH
456 };
457
458typedef struct _i386_insn i386_insn;
459
43234a1e
L
460/* Link RC type with corresponding string, that'll be looked for in
461 asm. */
462struct RC_name
463{
464 enum rc_type type;
465 const char *name;
466 unsigned int len;
467};
468
469static const struct RC_name RC_NamesTable[] =
470{
471 { rne, STRING_COMMA_LEN ("rn-sae") },
472 { rd, STRING_COMMA_LEN ("rd-sae") },
473 { ru, STRING_COMMA_LEN ("ru-sae") },
474 { rz, STRING_COMMA_LEN ("rz-sae") },
475 { saeonly, STRING_COMMA_LEN ("sae") },
476};
477
252b5132
RH
478/* List of chars besides those in app.c:symbol_chars that can start an
479 operand. Used to prevent the scrubber eating vital white-space. */
86fa6981 480const char extra_symbol_chars[] = "*%-([{}"
252b5132 481#ifdef LEX_AT
32137342
NC
482 "@"
483#endif
484#ifdef LEX_QM
485 "?"
252b5132 486#endif
32137342 487 ;
252b5132 488
b3983e5f
JB
489#if ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) \
490 && !defined (TE_GNU) \
491 && !defined (TE_LINUX) \
492 && !defined (TE_FreeBSD) \
493 && !defined (TE_DragonFly) \
494 && !defined (TE_NetBSD))
252b5132 495/* This array holds the chars that always start a comment. If the
b3b91714
AM
496 pre-processor is disabled, these aren't very useful. The option
497 --divide will remove '/' from this list. */
498const char *i386_comment_chars = "#/";
499#define SVR4_COMMENT_CHARS 1
252b5132 500#define PREFIX_SEPARATOR '\\'
252b5132 501
b3b91714
AM
502#else
503const char *i386_comment_chars = "#";
504#define PREFIX_SEPARATOR '/'
505#endif
506
252b5132
RH
507/* This array holds the chars that only start a comment at the beginning of
508 a line. If the line seems to have the form '# 123 filename'
ce8a8b2f
AM
509 .line and .file directives will appear in the pre-processed output.
510 Note that input_file.c hand checks for '#' at the beginning of the
252b5132 511 first line of the input file. This is because the compiler outputs
ce8a8b2f
AM
512 #NO_APP at the beginning of its output.
513 Also note that comments started like this one will always work if
252b5132 514 '/' isn't otherwise defined. */
b3b91714 515const char line_comment_chars[] = "#/";
252b5132 516
63a0b638 517const char line_separator_chars[] = ";";
252b5132 518
ce8a8b2f
AM
519/* Chars that can be used to separate mant from exp in floating point
520 nums. */
252b5132
RH
521const char EXP_CHARS[] = "eE";
522
ce8a8b2f
AM
523/* Chars that mean this number is a floating point constant
524 As in 0f12.456
525 or 0d1.2345e12. */
252b5132
RH
526const char FLT_CHARS[] = "fFdDxX";
527
ce8a8b2f 528/* Tables for lexical analysis. */
252b5132
RH
529static char mnemonic_chars[256];
530static char register_chars[256];
531static char operand_chars[256];
532static char identifier_chars[256];
533static char digit_chars[256];
534
ce8a8b2f 535/* Lexical macros. */
252b5132
RH
536#define is_mnemonic_char(x) (mnemonic_chars[(unsigned char) x])
537#define is_operand_char(x) (operand_chars[(unsigned char) x])
538#define is_register_char(x) (register_chars[(unsigned char) x])
539#define is_space_char(x) ((x) == ' ')
540#define is_identifier_char(x) (identifier_chars[(unsigned char) x])
541#define is_digit_char(x) (digit_chars[(unsigned char) x])
542
0234cb7c 543/* All non-digit non-letter characters that may occur in an operand. */
252b5132
RH
544static char operand_special_chars[] = "%$-+(,)*._~/<>|&^!:[@]";
545
546/* md_assemble() always leaves the strings it's passed unaltered. To
547 effect this we maintain a stack of saved characters that we've smashed
548 with '\0's (indicating end of strings for various sub-fields of the
47926f60 549 assembler instruction). */
252b5132 550static char save_stack[32];
ce8a8b2f 551static char *save_stack_p;
252b5132
RH
552#define END_STRING_AND_SAVE(s) \
553 do { *save_stack_p++ = *(s); *(s) = '\0'; } while (0)
554#define RESTORE_END_STRING(s) \
555 do { *(s) = *--save_stack_p; } while (0)
556
47926f60 557/* The instruction we're assembling. */
252b5132
RH
558static i386_insn i;
559
560/* Possible templates for current insn. */
561static const templates *current_templates;
562
31b2323c
L
563/* Per instruction expressionS buffers: max displacements & immediates. */
564static expressionS disp_expressions[MAX_MEMORY_OPERANDS];
565static expressionS im_expressions[MAX_IMMEDIATE_OPERANDS];
252b5132 566
47926f60 567/* Current operand we are working on. */
ee86248c 568static int this_operand = -1;
252b5132 569
3e73aa7c
JH
570/* We support four different modes. FLAG_CODE variable is used to distinguish
571 these. */
572
573enum flag_code {
574 CODE_32BIT,
575 CODE_16BIT,
576 CODE_64BIT };
577
578static enum flag_code flag_code;
4fa24527 579static unsigned int object_64bit;
862be3fb 580static unsigned int disallow_64bit_reloc;
3e73aa7c 581static int use_rela_relocations = 0;
e379e5f3
L
582/* __tls_get_addr/___tls_get_addr symbol for TLS. */
583static const char *tls_get_addr;
3e73aa7c 584
7af8ed2d
NC
585#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
586 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
587 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
588
351f65ca
L
589/* The ELF ABI to use. */
590enum x86_elf_abi
591{
592 I386_ABI,
7f56bc95
L
593 X86_64_ABI,
594 X86_64_X32_ABI
351f65ca
L
595};
596
597static enum x86_elf_abi x86_elf_abi = I386_ABI;
7af8ed2d 598#endif
351f65ca 599
167ad85b
TG
600#if defined (TE_PE) || defined (TE_PEP)
601/* Use big object file format. */
602static int use_big_obj = 0;
603#endif
604
8dcea932
L
605#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
606/* 1 if generating code for a shared library. */
607static int shared = 0;
608#endif
609
47926f60
KH
610/* 1 for intel syntax,
611 0 if att syntax. */
612static int intel_syntax = 0;
252b5132 613
4b5aaf5f
L
614static enum x86_64_isa
615{
616 amd64 = 1, /* AMD64 ISA. */
617 intel64 /* Intel64 ISA. */
618} isa64;
e89c5eaa 619
1efbbeb4
L
620/* 1 for intel mnemonic,
621 0 if att mnemonic. */
622static int intel_mnemonic = !SYSV386_COMPAT;
623
a60de03c
JB
624/* 1 if pseudo registers are permitted. */
625static int allow_pseudo_reg = 0;
626
47926f60
KH
627/* 1 if register prefix % not required. */
628static int allow_naked_reg = 0;
252b5132 629
33eaf5de 630/* 1 if the assembler should add BND prefix for all control-transferring
7e8b059b
L
631 instructions supporting it, even if this prefix wasn't specified
632 explicitly. */
633static int add_bnd_prefix = 0;
634
ba104c83 635/* 1 if pseudo index register, eiz/riz, is allowed . */
db51cc60
L
636static int allow_index_reg = 0;
637
d022bddd
IT
638/* 1 if the assembler should ignore LOCK prefix, even if it was
639 specified explicitly. */
640static int omit_lock_prefix = 0;
641
e4e00185
AS
642/* 1 if the assembler should encode lfence, mfence, and sfence as
643 "lock addl $0, (%{re}sp)". */
644static int avoid_fence = 0;
645
ae531041
L
646/* 1 if lfence should be inserted after every load. */
647static int lfence_after_load = 0;
648
649/* Non-zero if lfence should be inserted before indirect branch. */
650static enum lfence_before_indirect_branch_kind
651 {
652 lfence_branch_none = 0,
653 lfence_branch_register,
654 lfence_branch_memory,
655 lfence_branch_all
656 }
657lfence_before_indirect_branch;
658
659/* Non-zero if lfence should be inserted before ret. */
660static enum lfence_before_ret_kind
661 {
662 lfence_before_ret_none = 0,
663 lfence_before_ret_not,
a09f656b 664 lfence_before_ret_or,
665 lfence_before_ret_shl
ae531041
L
666 }
667lfence_before_ret;
668
669/* Types of previous instruction is .byte or prefix. */
e379e5f3
L
670static struct
671 {
672 segT seg;
673 const char *file;
674 const char *name;
675 unsigned int line;
676 enum last_insn_kind
677 {
678 last_insn_other = 0,
679 last_insn_directive,
680 last_insn_prefix
681 } kind;
682 } last_insn;
683
0cb4071e
L
684/* 1 if the assembler should generate relax relocations. */
685
686static int generate_relax_relocations
687 = DEFAULT_GENERATE_X86_RELAX_RELOCATIONS;
688
7bab8ab5 689static enum check_kind
daf50ae7 690 {
7bab8ab5
JB
691 check_none = 0,
692 check_warning,
693 check_error
daf50ae7 694 }
7bab8ab5 695sse_check, operand_check = check_warning;
daf50ae7 696
e379e5f3
L
697/* Non-zero if branches should be aligned within power of 2 boundary. */
698static int align_branch_power = 0;
699
700/* Types of branches to align. */
701enum align_branch_kind
702 {
703 align_branch_none = 0,
704 align_branch_jcc = 1,
705 align_branch_fused = 2,
706 align_branch_jmp = 3,
707 align_branch_call = 4,
708 align_branch_indirect = 5,
709 align_branch_ret = 6
710 };
711
712/* Type bits of branches to align. */
713enum align_branch_bit
714 {
715 align_branch_jcc_bit = 1 << align_branch_jcc,
716 align_branch_fused_bit = 1 << align_branch_fused,
717 align_branch_jmp_bit = 1 << align_branch_jmp,
718 align_branch_call_bit = 1 << align_branch_call,
719 align_branch_indirect_bit = 1 << align_branch_indirect,
720 align_branch_ret_bit = 1 << align_branch_ret
721 };
722
723static unsigned int align_branch = (align_branch_jcc_bit
724 | align_branch_fused_bit
725 | align_branch_jmp_bit);
726
79d72f45
HL
727/* Types of condition jump used by macro-fusion. */
728enum mf_jcc_kind
729 {
730 mf_jcc_jo = 0, /* base opcode 0x70 */
731 mf_jcc_jc, /* base opcode 0x72 */
732 mf_jcc_je, /* base opcode 0x74 */
733 mf_jcc_jna, /* base opcode 0x76 */
734 mf_jcc_js, /* base opcode 0x78 */
735 mf_jcc_jp, /* base opcode 0x7a */
736 mf_jcc_jl, /* base opcode 0x7c */
737 mf_jcc_jle, /* base opcode 0x7e */
738 };
739
740/* Types of compare flag-modifying insntructions used by macro-fusion. */
741enum mf_cmp_kind
742 {
743 mf_cmp_test_and, /* test/cmp */
744 mf_cmp_alu_cmp, /* add/sub/cmp */
745 mf_cmp_incdec /* inc/dec */
746 };
747
e379e5f3
L
748/* The maximum padding size for fused jcc. CMP like instruction can
749 be 9 bytes and jcc can be 6 bytes. Leave room just in case for
750 prefixes. */
751#define MAX_FUSED_JCC_PADDING_SIZE 20
752
753/* The maximum number of prefixes added for an instruction. */
754static unsigned int align_branch_prefix_size = 5;
755
b6f8c7c4
L
756/* Optimization:
757 1. Clear the REX_W bit with register operand if possible.
758 2. Above plus use 128bit vector instruction to clear the full vector
759 register.
760 */
761static int optimize = 0;
762
763/* Optimization:
764 1. Clear the REX_W bit with register operand if possible.
765 2. Above plus use 128bit vector instruction to clear the full vector
766 register.
767 3. Above plus optimize "test{q,l,w} $imm8,%r{64,32,16}" to
768 "testb $imm7,%r8".
769 */
770static int optimize_for_space = 0;
771
2ca3ace5
L
772/* Register prefix used for error message. */
773static const char *register_prefix = "%";
774
47926f60
KH
775/* Used in 16 bit gcc mode to add an l suffix to call, ret, enter,
776 leave, push, and pop instructions so that gcc has the same stack
777 frame as in 32 bit mode. */
778static char stackop_size = '\0';
eecb386c 779
12b55ccc
L
780/* Non-zero to optimize code alignment. */
781int optimize_align_code = 1;
782
47926f60
KH
783/* Non-zero to quieten some warnings. */
784static int quiet_warnings = 0;
a38cf1db 785
47926f60
KH
786/* CPU name. */
787static const char *cpu_arch_name = NULL;
6305a203 788static char *cpu_sub_arch_name = NULL;
a38cf1db 789
47926f60 790/* CPU feature flags. */
40fb9820
L
791static i386_cpu_flags cpu_arch_flags = CPU_UNKNOWN_FLAGS;
792
ccc9c027
L
793/* If we have selected a cpu we are generating instructions for. */
794static int cpu_arch_tune_set = 0;
795
9103f4f4 796/* Cpu we are generating instructions for. */
fbf3f584 797enum processor_type cpu_arch_tune = PROCESSOR_UNKNOWN;
9103f4f4
L
798
799/* CPU feature flags of cpu we are generating instructions for. */
40fb9820 800static i386_cpu_flags cpu_arch_tune_flags;
9103f4f4 801
ccc9c027 802/* CPU instruction set architecture used. */
fbf3f584 803enum processor_type cpu_arch_isa = PROCESSOR_UNKNOWN;
ccc9c027 804
9103f4f4 805/* CPU feature flags of instruction set architecture used. */
fbf3f584 806i386_cpu_flags cpu_arch_isa_flags;
9103f4f4 807
fddf5b5b
AM
808/* If set, conditional jumps are not automatically promoted to handle
809 larger than a byte offset. */
810static unsigned int no_cond_jump_promotion = 0;
811
c0f3af97
L
812/* Encode SSE instructions with VEX prefix. */
813static unsigned int sse2avx;
814
539f890d
L
815/* Encode scalar AVX instructions with specific vector length. */
816static enum
817 {
818 vex128 = 0,
819 vex256
820 } avxscalar;
821
03751133
L
822/* Encode VEX WIG instructions with specific vex.w. */
823static enum
824 {
825 vexw0 = 0,
826 vexw1
827 } vexwig;
828
43234a1e
L
829/* Encode scalar EVEX LIG instructions with specific vector length. */
830static enum
831 {
832 evexl128 = 0,
833 evexl256,
834 evexl512
835 } evexlig;
836
837/* Encode EVEX WIG instructions with specific evex.w. */
838static enum
839 {
840 evexw0 = 0,
841 evexw1
842 } evexwig;
843
d3d3c6db
IT
844/* Value to encode in EVEX RC bits, for SAE-only instructions. */
845static enum rc_type evexrcig = rne;
846
29b0f896 847/* Pre-defined "_GLOBAL_OFFSET_TABLE_". */
87c245cc 848static symbolS *GOT_symbol;
29b0f896 849
a4447b93
RH
850/* The dwarf2 return column, adjusted for 32 or 64 bit. */
851unsigned int x86_dwarf2_return_column;
852
853/* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
854int x86_cie_data_alignment;
855
252b5132 856/* Interface to relax_segment.
fddf5b5b
AM
857 There are 3 major relax states for 386 jump insns because the
858 different types of jumps add different sizes to frags when we're
e379e5f3
L
859 figuring out what sort of jump to choose to reach a given label.
860
861 BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING are used to align
862 branches which are handled by md_estimate_size_before_relax() and
863 i386_generic_table_relax_frag(). */
252b5132 864
47926f60 865/* Types. */
93c2a809
AM
866#define UNCOND_JUMP 0
867#define COND_JUMP 1
868#define COND_JUMP86 2
e379e5f3
L
869#define BRANCH_PADDING 3
870#define BRANCH_PREFIX 4
871#define FUSED_JCC_PADDING 5
fddf5b5b 872
47926f60 873/* Sizes. */
252b5132
RH
874#define CODE16 1
875#define SMALL 0
29b0f896 876#define SMALL16 (SMALL | CODE16)
252b5132 877#define BIG 2
29b0f896 878#define BIG16 (BIG | CODE16)
252b5132
RH
879
880#ifndef INLINE
881#ifdef __GNUC__
882#define INLINE __inline__
883#else
884#define INLINE
885#endif
886#endif
887
fddf5b5b
AM
888#define ENCODE_RELAX_STATE(type, size) \
889 ((relax_substateT) (((type) << 2) | (size)))
890#define TYPE_FROM_RELAX_STATE(s) \
891 ((s) >> 2)
892#define DISP_SIZE_FROM_RELAX_STATE(s) \
893 ((((s) & 3) == BIG ? 4 : (((s) & 3) == BIG16 ? 2 : 1)))
252b5132
RH
894
895/* This table is used by relax_frag to promote short jumps to long
896 ones where necessary. SMALL (short) jumps may be promoted to BIG
897 (32 bit long) ones, and SMALL16 jumps to BIG16 (16 bit long). We
898 don't allow a short jump in a 32 bit code segment to be promoted to
899 a 16 bit offset jump because it's slower (requires data size
900 prefix), and doesn't work, unless the destination is in the bottom
901 64k of the code segment (The top 16 bits of eip are zeroed). */
902
903const relax_typeS md_relax_table[] =
904{
24eab124
AM
905 /* The fields are:
906 1) most positive reach of this state,
907 2) most negative reach of this state,
93c2a809 908 3) how many bytes this mode will have in the variable part of the frag
ce8a8b2f 909 4) which index into the table to try if we can't fit into this one. */
252b5132 910
fddf5b5b 911 /* UNCOND_JUMP states. */
93c2a809
AM
912 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG)},
913 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16)},
914 /* dword jmp adds 4 bytes to frag:
915 0 extra opcode bytes, 4 displacement bytes. */
252b5132 916 {0, 0, 4, 0},
93c2a809
AM
917 /* word jmp adds 2 byte2 to frag:
918 0 extra opcode bytes, 2 displacement bytes. */
252b5132
RH
919 {0, 0, 2, 0},
920
93c2a809
AM
921 /* COND_JUMP states. */
922 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG)},
923 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG16)},
924 /* dword conditionals adds 5 bytes to frag:
925 1 extra opcode byte, 4 displacement bytes. */
926 {0, 0, 5, 0},
fddf5b5b 927 /* word conditionals add 3 bytes to frag:
93c2a809
AM
928 1 extra opcode byte, 2 displacement bytes. */
929 {0, 0, 3, 0},
930
931 /* COND_JUMP86 states. */
932 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG)},
933 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG16)},
934 /* dword conditionals adds 5 bytes to frag:
935 1 extra opcode byte, 4 displacement bytes. */
936 {0, 0, 5, 0},
937 /* word conditionals add 4 bytes to frag:
938 1 displacement byte and a 3 byte long branch insn. */
939 {0, 0, 4, 0}
252b5132
RH
940};
941
9103f4f4
L
942static const arch_entry cpu_arch[] =
943{
89507696
JB
944 /* Do not replace the first two entries - i386_target_format()
945 relies on them being there in this order. */
8a2c8fef 946 { STRING_COMMA_LEN ("generic32"), PROCESSOR_GENERIC32,
293f5f65 947 CPU_GENERIC32_FLAGS, 0 },
8a2c8fef 948 { STRING_COMMA_LEN ("generic64"), PROCESSOR_GENERIC64,
293f5f65 949 CPU_GENERIC64_FLAGS, 0 },
8a2c8fef 950 { STRING_COMMA_LEN ("i8086"), PROCESSOR_UNKNOWN,
293f5f65 951 CPU_NONE_FLAGS, 0 },
8a2c8fef 952 { STRING_COMMA_LEN ("i186"), PROCESSOR_UNKNOWN,
293f5f65 953 CPU_I186_FLAGS, 0 },
8a2c8fef 954 { STRING_COMMA_LEN ("i286"), PROCESSOR_UNKNOWN,
293f5f65 955 CPU_I286_FLAGS, 0 },
8a2c8fef 956 { STRING_COMMA_LEN ("i386"), PROCESSOR_I386,
293f5f65 957 CPU_I386_FLAGS, 0 },
8a2c8fef 958 { STRING_COMMA_LEN ("i486"), PROCESSOR_I486,
293f5f65 959 CPU_I486_FLAGS, 0 },
8a2c8fef 960 { STRING_COMMA_LEN ("i586"), PROCESSOR_PENTIUM,
293f5f65 961 CPU_I586_FLAGS, 0 },
8a2c8fef 962 { STRING_COMMA_LEN ("i686"), PROCESSOR_PENTIUMPRO,
293f5f65 963 CPU_I686_FLAGS, 0 },
8a2c8fef 964 { STRING_COMMA_LEN ("pentium"), PROCESSOR_PENTIUM,
293f5f65 965 CPU_I586_FLAGS, 0 },
8a2c8fef 966 { STRING_COMMA_LEN ("pentiumpro"), PROCESSOR_PENTIUMPRO,
293f5f65 967 CPU_PENTIUMPRO_FLAGS, 0 },
8a2c8fef 968 { STRING_COMMA_LEN ("pentiumii"), PROCESSOR_PENTIUMPRO,
293f5f65 969 CPU_P2_FLAGS, 0 },
8a2c8fef 970 { STRING_COMMA_LEN ("pentiumiii"),PROCESSOR_PENTIUMPRO,
293f5f65 971 CPU_P3_FLAGS, 0 },
8a2c8fef 972 { STRING_COMMA_LEN ("pentium4"), PROCESSOR_PENTIUM4,
293f5f65 973 CPU_P4_FLAGS, 0 },
8a2c8fef 974 { STRING_COMMA_LEN ("prescott"), PROCESSOR_NOCONA,
293f5f65 975 CPU_CORE_FLAGS, 0 },
8a2c8fef 976 { STRING_COMMA_LEN ("nocona"), PROCESSOR_NOCONA,
293f5f65 977 CPU_NOCONA_FLAGS, 0 },
8a2c8fef 978 { STRING_COMMA_LEN ("yonah"), PROCESSOR_CORE,
293f5f65 979 CPU_CORE_FLAGS, 1 },
8a2c8fef 980 { STRING_COMMA_LEN ("core"), PROCESSOR_CORE,
293f5f65 981 CPU_CORE_FLAGS, 0 },
8a2c8fef 982 { STRING_COMMA_LEN ("merom"), PROCESSOR_CORE2,
293f5f65 983 CPU_CORE2_FLAGS, 1 },
8a2c8fef 984 { STRING_COMMA_LEN ("core2"), PROCESSOR_CORE2,
293f5f65 985 CPU_CORE2_FLAGS, 0 },
8a2c8fef 986 { STRING_COMMA_LEN ("corei7"), PROCESSOR_COREI7,
293f5f65 987 CPU_COREI7_FLAGS, 0 },
8a2c8fef 988 { STRING_COMMA_LEN ("l1om"), PROCESSOR_L1OM,
293f5f65 989 CPU_L1OM_FLAGS, 0 },
7a9068fe 990 { STRING_COMMA_LEN ("k1om"), PROCESSOR_K1OM,
293f5f65 991 CPU_K1OM_FLAGS, 0 },
81486035 992 { STRING_COMMA_LEN ("iamcu"), PROCESSOR_IAMCU,
293f5f65 993 CPU_IAMCU_FLAGS, 0 },
8a2c8fef 994 { STRING_COMMA_LEN ("k6"), PROCESSOR_K6,
293f5f65 995 CPU_K6_FLAGS, 0 },
8a2c8fef 996 { STRING_COMMA_LEN ("k6_2"), PROCESSOR_K6,
293f5f65 997 CPU_K6_2_FLAGS, 0 },
8a2c8fef 998 { STRING_COMMA_LEN ("athlon"), PROCESSOR_ATHLON,
293f5f65 999 CPU_ATHLON_FLAGS, 0 },
8a2c8fef 1000 { STRING_COMMA_LEN ("sledgehammer"), PROCESSOR_K8,
293f5f65 1001 CPU_K8_FLAGS, 1 },
8a2c8fef 1002 { STRING_COMMA_LEN ("opteron"), PROCESSOR_K8,
293f5f65 1003 CPU_K8_FLAGS, 0 },
8a2c8fef 1004 { STRING_COMMA_LEN ("k8"), PROCESSOR_K8,
293f5f65 1005 CPU_K8_FLAGS, 0 },
8a2c8fef 1006 { STRING_COMMA_LEN ("amdfam10"), PROCESSOR_AMDFAM10,
293f5f65 1007 CPU_AMDFAM10_FLAGS, 0 },
8aedb9fe 1008 { STRING_COMMA_LEN ("bdver1"), PROCESSOR_BD,
293f5f65 1009 CPU_BDVER1_FLAGS, 0 },
8aedb9fe 1010 { STRING_COMMA_LEN ("bdver2"), PROCESSOR_BD,
293f5f65 1011 CPU_BDVER2_FLAGS, 0 },
5e5c50d3 1012 { STRING_COMMA_LEN ("bdver3"), PROCESSOR_BD,
293f5f65 1013 CPU_BDVER3_FLAGS, 0 },
c7b0bd56 1014 { STRING_COMMA_LEN ("bdver4"), PROCESSOR_BD,
293f5f65 1015 CPU_BDVER4_FLAGS, 0 },
029f3522 1016 { STRING_COMMA_LEN ("znver1"), PROCESSOR_ZNVER,
293f5f65 1017 CPU_ZNVER1_FLAGS, 0 },
a9660a6f
AP
1018 { STRING_COMMA_LEN ("znver2"), PROCESSOR_ZNVER,
1019 CPU_ZNVER2_FLAGS, 0 },
646cc3e0
GG
1020 { STRING_COMMA_LEN ("znver3"), PROCESSOR_ZNVER,
1021 CPU_ZNVER3_FLAGS, 0 },
7b458c12 1022 { STRING_COMMA_LEN ("btver1"), PROCESSOR_BT,
293f5f65 1023 CPU_BTVER1_FLAGS, 0 },
7b458c12 1024 { STRING_COMMA_LEN ("btver2"), PROCESSOR_BT,
293f5f65 1025 CPU_BTVER2_FLAGS, 0 },
8a2c8fef 1026 { STRING_COMMA_LEN (".8087"), PROCESSOR_UNKNOWN,
293f5f65 1027 CPU_8087_FLAGS, 0 },
8a2c8fef 1028 { STRING_COMMA_LEN (".287"), PROCESSOR_UNKNOWN,
293f5f65 1029 CPU_287_FLAGS, 0 },
8a2c8fef 1030 { STRING_COMMA_LEN (".387"), PROCESSOR_UNKNOWN,
293f5f65 1031 CPU_387_FLAGS, 0 },
1848e567
L
1032 { STRING_COMMA_LEN (".687"), PROCESSOR_UNKNOWN,
1033 CPU_687_FLAGS, 0 },
d871f3f4
L
1034 { STRING_COMMA_LEN (".cmov"), PROCESSOR_UNKNOWN,
1035 CPU_CMOV_FLAGS, 0 },
1036 { STRING_COMMA_LEN (".fxsr"), PROCESSOR_UNKNOWN,
1037 CPU_FXSR_FLAGS, 0 },
8a2c8fef 1038 { STRING_COMMA_LEN (".mmx"), PROCESSOR_UNKNOWN,
293f5f65 1039 CPU_MMX_FLAGS, 0 },
8a2c8fef 1040 { STRING_COMMA_LEN (".sse"), PROCESSOR_UNKNOWN,
293f5f65 1041 CPU_SSE_FLAGS, 0 },
8a2c8fef 1042 { STRING_COMMA_LEN (".sse2"), PROCESSOR_UNKNOWN,
293f5f65 1043 CPU_SSE2_FLAGS, 0 },
8a2c8fef 1044 { STRING_COMMA_LEN (".sse3"), PROCESSOR_UNKNOWN,
293f5f65 1045 CPU_SSE3_FLAGS, 0 },
af5c13b0
L
1046 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
1047 CPU_SSE4A_FLAGS, 0 },
8a2c8fef 1048 { STRING_COMMA_LEN (".ssse3"), PROCESSOR_UNKNOWN,
293f5f65 1049 CPU_SSSE3_FLAGS, 0 },
8a2c8fef 1050 { STRING_COMMA_LEN (".sse4.1"), PROCESSOR_UNKNOWN,
293f5f65 1051 CPU_SSE4_1_FLAGS, 0 },
8a2c8fef 1052 { STRING_COMMA_LEN (".sse4.2"), PROCESSOR_UNKNOWN,
293f5f65 1053 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 1054 { STRING_COMMA_LEN (".sse4"), PROCESSOR_UNKNOWN,
293f5f65 1055 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 1056 { STRING_COMMA_LEN (".avx"), PROCESSOR_UNKNOWN,
293f5f65 1057 CPU_AVX_FLAGS, 0 },
6c30d220 1058 { STRING_COMMA_LEN (".avx2"), PROCESSOR_UNKNOWN,
293f5f65 1059 CPU_AVX2_FLAGS, 0 },
43234a1e 1060 { STRING_COMMA_LEN (".avx512f"), PROCESSOR_UNKNOWN,
293f5f65 1061 CPU_AVX512F_FLAGS, 0 },
43234a1e 1062 { STRING_COMMA_LEN (".avx512cd"), PROCESSOR_UNKNOWN,
293f5f65 1063 CPU_AVX512CD_FLAGS, 0 },
43234a1e 1064 { STRING_COMMA_LEN (".avx512er"), PROCESSOR_UNKNOWN,
293f5f65 1065 CPU_AVX512ER_FLAGS, 0 },
43234a1e 1066 { STRING_COMMA_LEN (".avx512pf"), PROCESSOR_UNKNOWN,
293f5f65 1067 CPU_AVX512PF_FLAGS, 0 },
1dfc6506 1068 { STRING_COMMA_LEN (".avx512dq"), PROCESSOR_UNKNOWN,
293f5f65 1069 CPU_AVX512DQ_FLAGS, 0 },
1dfc6506 1070 { STRING_COMMA_LEN (".avx512bw"), PROCESSOR_UNKNOWN,
293f5f65 1071 CPU_AVX512BW_FLAGS, 0 },
1dfc6506 1072 { STRING_COMMA_LEN (".avx512vl"), PROCESSOR_UNKNOWN,
293f5f65 1073 CPU_AVX512VL_FLAGS, 0 },
8a2c8fef 1074 { STRING_COMMA_LEN (".vmx"), PROCESSOR_UNKNOWN,
293f5f65 1075 CPU_VMX_FLAGS, 0 },
8729a6f6 1076 { STRING_COMMA_LEN (".vmfunc"), PROCESSOR_UNKNOWN,
293f5f65 1077 CPU_VMFUNC_FLAGS, 0 },
8a2c8fef 1078 { STRING_COMMA_LEN (".smx"), PROCESSOR_UNKNOWN,
293f5f65 1079 CPU_SMX_FLAGS, 0 },
8a2c8fef 1080 { STRING_COMMA_LEN (".xsave"), PROCESSOR_UNKNOWN,
293f5f65 1081 CPU_XSAVE_FLAGS, 0 },
c7b8aa3a 1082 { STRING_COMMA_LEN (".xsaveopt"), PROCESSOR_UNKNOWN,
293f5f65 1083 CPU_XSAVEOPT_FLAGS, 0 },
1dfc6506 1084 { STRING_COMMA_LEN (".xsavec"), PROCESSOR_UNKNOWN,
293f5f65 1085 CPU_XSAVEC_FLAGS, 0 },
1dfc6506 1086 { STRING_COMMA_LEN (".xsaves"), PROCESSOR_UNKNOWN,
293f5f65 1087 CPU_XSAVES_FLAGS, 0 },
8a2c8fef 1088 { STRING_COMMA_LEN (".aes"), PROCESSOR_UNKNOWN,
293f5f65 1089 CPU_AES_FLAGS, 0 },
8a2c8fef 1090 { STRING_COMMA_LEN (".pclmul"), PROCESSOR_UNKNOWN,
293f5f65 1091 CPU_PCLMUL_FLAGS, 0 },
8a2c8fef 1092 { STRING_COMMA_LEN (".clmul"), PROCESSOR_UNKNOWN,
293f5f65 1093 CPU_PCLMUL_FLAGS, 1 },
c7b8aa3a 1094 { STRING_COMMA_LEN (".fsgsbase"), PROCESSOR_UNKNOWN,
293f5f65 1095 CPU_FSGSBASE_FLAGS, 0 },
c7b8aa3a 1096 { STRING_COMMA_LEN (".rdrnd"), PROCESSOR_UNKNOWN,
293f5f65 1097 CPU_RDRND_FLAGS, 0 },
c7b8aa3a 1098 { STRING_COMMA_LEN (".f16c"), PROCESSOR_UNKNOWN,
293f5f65 1099 CPU_F16C_FLAGS, 0 },
6c30d220 1100 { STRING_COMMA_LEN (".bmi2"), PROCESSOR_UNKNOWN,
293f5f65 1101 CPU_BMI2_FLAGS, 0 },
8a2c8fef 1102 { STRING_COMMA_LEN (".fma"), PROCESSOR_UNKNOWN,
293f5f65 1103 CPU_FMA_FLAGS, 0 },
8a2c8fef 1104 { STRING_COMMA_LEN (".fma4"), PROCESSOR_UNKNOWN,
293f5f65 1105 CPU_FMA4_FLAGS, 0 },
8a2c8fef 1106 { STRING_COMMA_LEN (".xop"), PROCESSOR_UNKNOWN,
293f5f65 1107 CPU_XOP_FLAGS, 0 },
8a2c8fef 1108 { STRING_COMMA_LEN (".lwp"), PROCESSOR_UNKNOWN,
293f5f65 1109 CPU_LWP_FLAGS, 0 },
8a2c8fef 1110 { STRING_COMMA_LEN (".movbe"), PROCESSOR_UNKNOWN,
293f5f65 1111 CPU_MOVBE_FLAGS, 0 },
60aa667e 1112 { STRING_COMMA_LEN (".cx16"), PROCESSOR_UNKNOWN,
293f5f65 1113 CPU_CX16_FLAGS, 0 },
8a2c8fef 1114 { STRING_COMMA_LEN (".ept"), PROCESSOR_UNKNOWN,
293f5f65 1115 CPU_EPT_FLAGS, 0 },
6c30d220 1116 { STRING_COMMA_LEN (".lzcnt"), PROCESSOR_UNKNOWN,
293f5f65 1117 CPU_LZCNT_FLAGS, 0 },
272a84b1
L
1118 { STRING_COMMA_LEN (".popcnt"), PROCESSOR_UNKNOWN,
1119 CPU_POPCNT_FLAGS, 0 },
42164a71 1120 { STRING_COMMA_LEN (".hle"), PROCESSOR_UNKNOWN,
293f5f65 1121 CPU_HLE_FLAGS, 0 },
42164a71 1122 { STRING_COMMA_LEN (".rtm"), PROCESSOR_UNKNOWN,
293f5f65 1123 CPU_RTM_FLAGS, 0 },
6c30d220 1124 { STRING_COMMA_LEN (".invpcid"), PROCESSOR_UNKNOWN,
293f5f65 1125 CPU_INVPCID_FLAGS, 0 },
8a2c8fef 1126 { STRING_COMMA_LEN (".clflush"), PROCESSOR_UNKNOWN,
293f5f65 1127 CPU_CLFLUSH_FLAGS, 0 },
22109423 1128 { STRING_COMMA_LEN (".nop"), PROCESSOR_UNKNOWN,
293f5f65 1129 CPU_NOP_FLAGS, 0 },
8a2c8fef 1130 { STRING_COMMA_LEN (".syscall"), PROCESSOR_UNKNOWN,
293f5f65 1131 CPU_SYSCALL_FLAGS, 0 },
8a2c8fef 1132 { STRING_COMMA_LEN (".rdtscp"), PROCESSOR_UNKNOWN,
293f5f65 1133 CPU_RDTSCP_FLAGS, 0 },
8a2c8fef 1134 { STRING_COMMA_LEN (".3dnow"), PROCESSOR_UNKNOWN,
293f5f65 1135 CPU_3DNOW_FLAGS, 0 },
8a2c8fef 1136 { STRING_COMMA_LEN (".3dnowa"), PROCESSOR_UNKNOWN,
293f5f65 1137 CPU_3DNOWA_FLAGS, 0 },
8a2c8fef 1138 { STRING_COMMA_LEN (".padlock"), PROCESSOR_UNKNOWN,
293f5f65 1139 CPU_PADLOCK_FLAGS, 0 },
8a2c8fef 1140 { STRING_COMMA_LEN (".pacifica"), PROCESSOR_UNKNOWN,
293f5f65 1141 CPU_SVME_FLAGS, 1 },
8a2c8fef 1142 { STRING_COMMA_LEN (".svme"), PROCESSOR_UNKNOWN,
293f5f65 1143 CPU_SVME_FLAGS, 0 },
8a2c8fef 1144 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
293f5f65 1145 CPU_SSE4A_FLAGS, 0 },
8a2c8fef 1146 { STRING_COMMA_LEN (".abm"), PROCESSOR_UNKNOWN,
293f5f65 1147 CPU_ABM_FLAGS, 0 },
87973e9f 1148 { STRING_COMMA_LEN (".bmi"), PROCESSOR_UNKNOWN,
293f5f65 1149 CPU_BMI_FLAGS, 0 },
2a2a0f38 1150 { STRING_COMMA_LEN (".tbm"), PROCESSOR_UNKNOWN,
293f5f65 1151 CPU_TBM_FLAGS, 0 },
e2e1fcde 1152 { STRING_COMMA_LEN (".adx"), PROCESSOR_UNKNOWN,
293f5f65 1153 CPU_ADX_FLAGS, 0 },
e2e1fcde 1154 { STRING_COMMA_LEN (".rdseed"), PROCESSOR_UNKNOWN,
293f5f65 1155 CPU_RDSEED_FLAGS, 0 },
e2e1fcde 1156 { STRING_COMMA_LEN (".prfchw"), PROCESSOR_UNKNOWN,
293f5f65 1157 CPU_PRFCHW_FLAGS, 0 },
5c111e37 1158 { STRING_COMMA_LEN (".smap"), PROCESSOR_UNKNOWN,
293f5f65 1159 CPU_SMAP_FLAGS, 0 },
7e8b059b 1160 { STRING_COMMA_LEN (".mpx"), PROCESSOR_UNKNOWN,
293f5f65 1161 CPU_MPX_FLAGS, 0 },
a0046408 1162 { STRING_COMMA_LEN (".sha"), PROCESSOR_UNKNOWN,
293f5f65 1163 CPU_SHA_FLAGS, 0 },
963f3586 1164 { STRING_COMMA_LEN (".clflushopt"), PROCESSOR_UNKNOWN,
293f5f65 1165 CPU_CLFLUSHOPT_FLAGS, 0 },
dcf893b5 1166 { STRING_COMMA_LEN (".prefetchwt1"), PROCESSOR_UNKNOWN,
293f5f65 1167 CPU_PREFETCHWT1_FLAGS, 0 },
2cf200a4 1168 { STRING_COMMA_LEN (".se1"), PROCESSOR_UNKNOWN,
293f5f65 1169 CPU_SE1_FLAGS, 0 },
c5e7287a 1170 { STRING_COMMA_LEN (".clwb"), PROCESSOR_UNKNOWN,
293f5f65 1171 CPU_CLWB_FLAGS, 0 },
2cc1b5aa 1172 { STRING_COMMA_LEN (".avx512ifma"), PROCESSOR_UNKNOWN,
293f5f65 1173 CPU_AVX512IFMA_FLAGS, 0 },
14f195c9 1174 { STRING_COMMA_LEN (".avx512vbmi"), PROCESSOR_UNKNOWN,
293f5f65 1175 CPU_AVX512VBMI_FLAGS, 0 },
920d2ddc
IT
1176 { STRING_COMMA_LEN (".avx512_4fmaps"), PROCESSOR_UNKNOWN,
1177 CPU_AVX512_4FMAPS_FLAGS, 0 },
47acf0bd
IT
1178 { STRING_COMMA_LEN (".avx512_4vnniw"), PROCESSOR_UNKNOWN,
1179 CPU_AVX512_4VNNIW_FLAGS, 0 },
620214f7
IT
1180 { STRING_COMMA_LEN (".avx512_vpopcntdq"), PROCESSOR_UNKNOWN,
1181 CPU_AVX512_VPOPCNTDQ_FLAGS, 0 },
53467f57
IT
1182 { STRING_COMMA_LEN (".avx512_vbmi2"), PROCESSOR_UNKNOWN,
1183 CPU_AVX512_VBMI2_FLAGS, 0 },
8cfcb765
IT
1184 { STRING_COMMA_LEN (".avx512_vnni"), PROCESSOR_UNKNOWN,
1185 CPU_AVX512_VNNI_FLAGS, 0 },
ee6872be
IT
1186 { STRING_COMMA_LEN (".avx512_bitalg"), PROCESSOR_UNKNOWN,
1187 CPU_AVX512_BITALG_FLAGS, 0 },
58bf9b6a
L
1188 { STRING_COMMA_LEN (".avx_vnni"), PROCESSOR_UNKNOWN,
1189 CPU_AVX_VNNI_FLAGS, 0 },
029f3522 1190 { STRING_COMMA_LEN (".clzero"), PROCESSOR_UNKNOWN,
293f5f65 1191 CPU_CLZERO_FLAGS, 0 },
9916071f 1192 { STRING_COMMA_LEN (".mwaitx"), PROCESSOR_UNKNOWN,
293f5f65 1193 CPU_MWAITX_FLAGS, 0 },
8eab4136 1194 { STRING_COMMA_LEN (".ospke"), PROCESSOR_UNKNOWN,
293f5f65 1195 CPU_OSPKE_FLAGS, 0 },
8bc52696 1196 { STRING_COMMA_LEN (".rdpid"), PROCESSOR_UNKNOWN,
293f5f65 1197 CPU_RDPID_FLAGS, 0 },
6b40c462
L
1198 { STRING_COMMA_LEN (".ptwrite"), PROCESSOR_UNKNOWN,
1199 CPU_PTWRITE_FLAGS, 0 },
d777820b
IT
1200 { STRING_COMMA_LEN (".ibt"), PROCESSOR_UNKNOWN,
1201 CPU_IBT_FLAGS, 0 },
1202 { STRING_COMMA_LEN (".shstk"), PROCESSOR_UNKNOWN,
1203 CPU_SHSTK_FLAGS, 0 },
48521003
IT
1204 { STRING_COMMA_LEN (".gfni"), PROCESSOR_UNKNOWN,
1205 CPU_GFNI_FLAGS, 0 },
8dcf1fad
IT
1206 { STRING_COMMA_LEN (".vaes"), PROCESSOR_UNKNOWN,
1207 CPU_VAES_FLAGS, 0 },
ff1982d5
IT
1208 { STRING_COMMA_LEN (".vpclmulqdq"), PROCESSOR_UNKNOWN,
1209 CPU_VPCLMULQDQ_FLAGS, 0 },
3233d7d0
IT
1210 { STRING_COMMA_LEN (".wbnoinvd"), PROCESSOR_UNKNOWN,
1211 CPU_WBNOINVD_FLAGS, 0 },
be3a8dca
IT
1212 { STRING_COMMA_LEN (".pconfig"), PROCESSOR_UNKNOWN,
1213 CPU_PCONFIG_FLAGS, 0 },
de89d0a3
IT
1214 { STRING_COMMA_LEN (".waitpkg"), PROCESSOR_UNKNOWN,
1215 CPU_WAITPKG_FLAGS, 0 },
c48935d7
IT
1216 { STRING_COMMA_LEN (".cldemote"), PROCESSOR_UNKNOWN,
1217 CPU_CLDEMOTE_FLAGS, 0 },
260cd341
LC
1218 { STRING_COMMA_LEN (".amx_int8"), PROCESSOR_UNKNOWN,
1219 CPU_AMX_INT8_FLAGS, 0 },
1220 { STRING_COMMA_LEN (".amx_bf16"), PROCESSOR_UNKNOWN,
1221 CPU_AMX_BF16_FLAGS, 0 },
1222 { STRING_COMMA_LEN (".amx_tile"), PROCESSOR_UNKNOWN,
1223 CPU_AMX_TILE_FLAGS, 0 },
c0a30a9f
L
1224 { STRING_COMMA_LEN (".movdiri"), PROCESSOR_UNKNOWN,
1225 CPU_MOVDIRI_FLAGS, 0 },
1226 { STRING_COMMA_LEN (".movdir64b"), PROCESSOR_UNKNOWN,
1227 CPU_MOVDIR64B_FLAGS, 0 },
d6aab7a1
XG
1228 { STRING_COMMA_LEN (".avx512_bf16"), PROCESSOR_UNKNOWN,
1229 CPU_AVX512_BF16_FLAGS, 0 },
9186c494
L
1230 { STRING_COMMA_LEN (".avx512_vp2intersect"), PROCESSOR_UNKNOWN,
1231 CPU_AVX512_VP2INTERSECT_FLAGS, 0 },
81d54bb7
CL
1232 { STRING_COMMA_LEN (".tdx"), PROCESSOR_UNKNOWN,
1233 CPU_TDX_FLAGS, 0 },
dd455cf5
L
1234 { STRING_COMMA_LEN (".enqcmd"), PROCESSOR_UNKNOWN,
1235 CPU_ENQCMD_FLAGS, 0 },
4b27d27c
L
1236 { STRING_COMMA_LEN (".serialize"), PROCESSOR_UNKNOWN,
1237 CPU_SERIALIZE_FLAGS, 0 },
142861df
JB
1238 { STRING_COMMA_LEN (".rdpru"), PROCESSOR_UNKNOWN,
1239 CPU_RDPRU_FLAGS, 0 },
1240 { STRING_COMMA_LEN (".mcommit"), PROCESSOR_UNKNOWN,
1241 CPU_MCOMMIT_FLAGS, 0 },
a847e322
JB
1242 { STRING_COMMA_LEN (".sev_es"), PROCESSOR_UNKNOWN,
1243 CPU_SEV_ES_FLAGS, 0 },
bb651e8b
CL
1244 { STRING_COMMA_LEN (".tsxldtrk"), PROCESSOR_UNKNOWN,
1245 CPU_TSXLDTRK_FLAGS, 0 },
c4694f17
TG
1246 { STRING_COMMA_LEN (".kl"), PROCESSOR_UNKNOWN,
1247 CPU_KL_FLAGS, 0 },
1248 { STRING_COMMA_LEN (".widekl"), PROCESSOR_UNKNOWN,
1249 CPU_WIDEKL_FLAGS, 0 },
f64c42a9
LC
1250 { STRING_COMMA_LEN (".uintr"), PROCESSOR_UNKNOWN,
1251 CPU_UINTR_FLAGS, 0 },
c1fa250a
LC
1252 { STRING_COMMA_LEN (".hreset"), PROCESSOR_UNKNOWN,
1253 CPU_HRESET_FLAGS, 0 },
293f5f65
L
1254};
1255
1256static const noarch_entry cpu_noarch[] =
1257{
1258 { STRING_COMMA_LEN ("no87"), CPU_ANY_X87_FLAGS },
1848e567
L
1259 { STRING_COMMA_LEN ("no287"), CPU_ANY_287_FLAGS },
1260 { STRING_COMMA_LEN ("no387"), CPU_ANY_387_FLAGS },
1261 { STRING_COMMA_LEN ("no687"), CPU_ANY_687_FLAGS },
d871f3f4
L
1262 { STRING_COMMA_LEN ("nocmov"), CPU_ANY_CMOV_FLAGS },
1263 { STRING_COMMA_LEN ("nofxsr"), CPU_ANY_FXSR_FLAGS },
293f5f65
L
1264 { STRING_COMMA_LEN ("nommx"), CPU_ANY_MMX_FLAGS },
1265 { STRING_COMMA_LEN ("nosse"), CPU_ANY_SSE_FLAGS },
1848e567
L
1266 { STRING_COMMA_LEN ("nosse2"), CPU_ANY_SSE2_FLAGS },
1267 { STRING_COMMA_LEN ("nosse3"), CPU_ANY_SSE3_FLAGS },
af5c13b0 1268 { STRING_COMMA_LEN ("nosse4a"), CPU_ANY_SSE4A_FLAGS },
1848e567
L
1269 { STRING_COMMA_LEN ("nossse3"), CPU_ANY_SSSE3_FLAGS },
1270 { STRING_COMMA_LEN ("nosse4.1"), CPU_ANY_SSE4_1_FLAGS },
1271 { STRING_COMMA_LEN ("nosse4.2"), CPU_ANY_SSE4_2_FLAGS },
af5c13b0 1272 { STRING_COMMA_LEN ("nosse4"), CPU_ANY_SSE4_1_FLAGS },
293f5f65 1273 { STRING_COMMA_LEN ("noavx"), CPU_ANY_AVX_FLAGS },
1848e567 1274 { STRING_COMMA_LEN ("noavx2"), CPU_ANY_AVX2_FLAGS },
144b71e2
L
1275 { STRING_COMMA_LEN ("noavx512f"), CPU_ANY_AVX512F_FLAGS },
1276 { STRING_COMMA_LEN ("noavx512cd"), CPU_ANY_AVX512CD_FLAGS },
1277 { STRING_COMMA_LEN ("noavx512er"), CPU_ANY_AVX512ER_FLAGS },
1278 { STRING_COMMA_LEN ("noavx512pf"), CPU_ANY_AVX512PF_FLAGS },
1279 { STRING_COMMA_LEN ("noavx512dq"), CPU_ANY_AVX512DQ_FLAGS },
1280 { STRING_COMMA_LEN ("noavx512bw"), CPU_ANY_AVX512BW_FLAGS },
1281 { STRING_COMMA_LEN ("noavx512vl"), CPU_ANY_AVX512VL_FLAGS },
1282 { STRING_COMMA_LEN ("noavx512ifma"), CPU_ANY_AVX512IFMA_FLAGS },
1283 { STRING_COMMA_LEN ("noavx512vbmi"), CPU_ANY_AVX512VBMI_FLAGS },
920d2ddc 1284 { STRING_COMMA_LEN ("noavx512_4fmaps"), CPU_ANY_AVX512_4FMAPS_FLAGS },
47acf0bd 1285 { STRING_COMMA_LEN ("noavx512_4vnniw"), CPU_ANY_AVX512_4VNNIW_FLAGS },
620214f7 1286 { STRING_COMMA_LEN ("noavx512_vpopcntdq"), CPU_ANY_AVX512_VPOPCNTDQ_FLAGS },
53467f57 1287 { STRING_COMMA_LEN ("noavx512_vbmi2"), CPU_ANY_AVX512_VBMI2_FLAGS },
8cfcb765 1288 { STRING_COMMA_LEN ("noavx512_vnni"), CPU_ANY_AVX512_VNNI_FLAGS },
ee6872be 1289 { STRING_COMMA_LEN ("noavx512_bitalg"), CPU_ANY_AVX512_BITALG_FLAGS },
58bf9b6a 1290 { STRING_COMMA_LEN ("noavx_vnni"), CPU_ANY_AVX_VNNI_FLAGS },
d777820b
IT
1291 { STRING_COMMA_LEN ("noibt"), CPU_ANY_IBT_FLAGS },
1292 { STRING_COMMA_LEN ("noshstk"), CPU_ANY_SHSTK_FLAGS },
260cd341
LC
1293 { STRING_COMMA_LEN ("noamx_int8"), CPU_ANY_AMX_INT8_FLAGS },
1294 { STRING_COMMA_LEN ("noamx_bf16"), CPU_ANY_AMX_BF16_FLAGS },
1295 { STRING_COMMA_LEN ("noamx_tile"), CPU_ANY_AMX_TILE_FLAGS },
c0a30a9f
L
1296 { STRING_COMMA_LEN ("nomovdiri"), CPU_ANY_MOVDIRI_FLAGS },
1297 { STRING_COMMA_LEN ("nomovdir64b"), CPU_ANY_MOVDIR64B_FLAGS },
d6aab7a1 1298 { STRING_COMMA_LEN ("noavx512_bf16"), CPU_ANY_AVX512_BF16_FLAGS },
708a2fff
CL
1299 { STRING_COMMA_LEN ("noavx512_vp2intersect"),
1300 CPU_ANY_AVX512_VP2INTERSECT_FLAGS },
81d54bb7 1301 { STRING_COMMA_LEN ("notdx"), CPU_ANY_TDX_FLAGS },
dd455cf5 1302 { STRING_COMMA_LEN ("noenqcmd"), CPU_ANY_ENQCMD_FLAGS },
4b27d27c 1303 { STRING_COMMA_LEN ("noserialize"), CPU_ANY_SERIALIZE_FLAGS },
bb651e8b 1304 { STRING_COMMA_LEN ("notsxldtrk"), CPU_ANY_TSXLDTRK_FLAGS },
c4694f17
TG
1305 { STRING_COMMA_LEN ("nokl"), CPU_ANY_KL_FLAGS },
1306 { STRING_COMMA_LEN ("nowidekl"), CPU_ANY_WIDEKL_FLAGS },
f64c42a9 1307 { STRING_COMMA_LEN ("nouintr"), CPU_ANY_UINTR_FLAGS },
c1fa250a 1308 { STRING_COMMA_LEN ("nohreset"), CPU_ANY_HRESET_FLAGS },
e413e4e9
AM
1309};
1310
704209c0 1311#ifdef I386COFF
a6c24e68
NC
1312/* Like s_lcomm_internal in gas/read.c but the alignment string
1313 is allowed to be optional. */
1314
1315static symbolS *
1316pe_lcomm_internal (int needs_align, symbolS *symbolP, addressT size)
1317{
1318 addressT align = 0;
1319
1320 SKIP_WHITESPACE ();
1321
7ab9ffdd 1322 if (needs_align
a6c24e68
NC
1323 && *input_line_pointer == ',')
1324 {
1325 align = parse_align (needs_align - 1);
7ab9ffdd 1326
a6c24e68
NC
1327 if (align == (addressT) -1)
1328 return NULL;
1329 }
1330 else
1331 {
1332 if (size >= 8)
1333 align = 3;
1334 else if (size >= 4)
1335 align = 2;
1336 else if (size >= 2)
1337 align = 1;
1338 else
1339 align = 0;
1340 }
1341
1342 bss_alloc (symbolP, size, align);
1343 return symbolP;
1344}
1345
704209c0 1346static void
a6c24e68
NC
1347pe_lcomm (int needs_align)
1348{
1349 s_comm_internal (needs_align * 2, pe_lcomm_internal);
1350}
704209c0 1351#endif
a6c24e68 1352
29b0f896
AM
1353const pseudo_typeS md_pseudo_table[] =
1354{
1355#if !defined(OBJ_AOUT) && !defined(USE_ALIGN_PTWO)
1356 {"align", s_align_bytes, 0},
1357#else
1358 {"align", s_align_ptwo, 0},
1359#endif
1360 {"arch", set_cpu_arch, 0},
1361#ifndef I386COFF
1362 {"bss", s_bss, 0},
a6c24e68
NC
1363#else
1364 {"lcomm", pe_lcomm, 1},
29b0f896
AM
1365#endif
1366 {"ffloat", float_cons, 'f'},
1367 {"dfloat", float_cons, 'd'},
1368 {"tfloat", float_cons, 'x'},
1369 {"value", cons, 2},
d182319b 1370 {"slong", signed_cons, 4},
29b0f896
AM
1371 {"noopt", s_ignore, 0},
1372 {"optim", s_ignore, 0},
1373 {"code16gcc", set_16bit_gcc_code_flag, CODE_16BIT},
1374 {"code16", set_code_flag, CODE_16BIT},
1375 {"code32", set_code_flag, CODE_32BIT},
da5f19a2 1376#ifdef BFD64
29b0f896 1377 {"code64", set_code_flag, CODE_64BIT},
da5f19a2 1378#endif
29b0f896
AM
1379 {"intel_syntax", set_intel_syntax, 1},
1380 {"att_syntax", set_intel_syntax, 0},
1efbbeb4
L
1381 {"intel_mnemonic", set_intel_mnemonic, 1},
1382 {"att_mnemonic", set_intel_mnemonic, 0},
db51cc60
L
1383 {"allow_index_reg", set_allow_index_reg, 1},
1384 {"disallow_index_reg", set_allow_index_reg, 0},
7bab8ab5
JB
1385 {"sse_check", set_check, 0},
1386 {"operand_check", set_check, 1},
3b22753a
L
1387#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
1388 {"largecomm", handle_large_common, 0},
07a53e5c 1389#else
68d20676 1390 {"file", dwarf2_directive_file, 0},
07a53e5c
RH
1391 {"loc", dwarf2_directive_loc, 0},
1392 {"loc_mark_labels", dwarf2_directive_loc_mark_labels, 0},
3b22753a 1393#endif
6482c264
NC
1394#ifdef TE_PE
1395 {"secrel32", pe_directive_secrel, 0},
1396#endif
29b0f896
AM
1397 {0, 0, 0}
1398};
1399
1400/* For interface with expression (). */
1401extern char *input_line_pointer;
1402
1403/* Hash table for instruction mnemonic lookup. */
629310ab 1404static htab_t op_hash;
29b0f896
AM
1405
1406/* Hash table for register lookup. */
629310ab 1407static htab_t reg_hash;
29b0f896 1408\f
ce8a8b2f
AM
1409 /* Various efficient no-op patterns for aligning code labels.
1410 Note: Don't try to assemble the instructions in the comments.
1411 0L and 0w are not legal. */
62a02d25
L
1412static const unsigned char f32_1[] =
1413 {0x90}; /* nop */
1414static const unsigned char f32_2[] =
1415 {0x66,0x90}; /* xchg %ax,%ax */
1416static const unsigned char f32_3[] =
1417 {0x8d,0x76,0x00}; /* leal 0(%esi),%esi */
1418static const unsigned char f32_4[] =
1419 {0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
62a02d25
L
1420static const unsigned char f32_6[] =
1421 {0x8d,0xb6,0x00,0x00,0x00,0x00}; /* leal 0L(%esi),%esi */
1422static const unsigned char f32_7[] =
1423 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
62a02d25 1424static const unsigned char f16_3[] =
3ae729d5 1425 {0x8d,0x74,0x00}; /* lea 0(%si),%si */
62a02d25 1426static const unsigned char f16_4[] =
3ae729d5
L
1427 {0x8d,0xb4,0x00,0x00}; /* lea 0W(%si),%si */
1428static const unsigned char jump_disp8[] =
1429 {0xeb}; /* jmp disp8 */
1430static const unsigned char jump32_disp32[] =
1431 {0xe9}; /* jmp disp32 */
1432static const unsigned char jump16_disp32[] =
1433 {0x66,0xe9}; /* jmp disp32 */
62a02d25
L
1434/* 32-bit NOPs patterns. */
1435static const unsigned char *const f32_patt[] = {
3ae729d5 1436 f32_1, f32_2, f32_3, f32_4, NULL, f32_6, f32_7
62a02d25
L
1437};
1438/* 16-bit NOPs patterns. */
1439static const unsigned char *const f16_patt[] = {
3ae729d5 1440 f32_1, f32_2, f16_3, f16_4
62a02d25
L
1441};
1442/* nopl (%[re]ax) */
1443static const unsigned char alt_3[] =
1444 {0x0f,0x1f,0x00};
1445/* nopl 0(%[re]ax) */
1446static const unsigned char alt_4[] =
1447 {0x0f,0x1f,0x40,0x00};
1448/* nopl 0(%[re]ax,%[re]ax,1) */
1449static const unsigned char alt_5[] =
1450 {0x0f,0x1f,0x44,0x00,0x00};
1451/* nopw 0(%[re]ax,%[re]ax,1) */
1452static const unsigned char alt_6[] =
1453 {0x66,0x0f,0x1f,0x44,0x00,0x00};
1454/* nopl 0L(%[re]ax) */
1455static const unsigned char alt_7[] =
1456 {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
1457/* nopl 0L(%[re]ax,%[re]ax,1) */
1458static const unsigned char alt_8[] =
1459 {0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1460/* nopw 0L(%[re]ax,%[re]ax,1) */
1461static const unsigned char alt_9[] =
1462 {0x66,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1463/* nopw %cs:0L(%[re]ax,%[re]ax,1) */
1464static const unsigned char alt_10[] =
1465 {0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
3ae729d5
L
1466/* data16 nopw %cs:0L(%eax,%eax,1) */
1467static const unsigned char alt_11[] =
1468 {0x66,0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
62a02d25
L
1469/* 32-bit and 64-bit NOPs patterns. */
1470static const unsigned char *const alt_patt[] = {
1471 f32_1, f32_2, alt_3, alt_4, alt_5, alt_6, alt_7, alt_8,
3ae729d5 1472 alt_9, alt_10, alt_11
62a02d25
L
1473};
1474
1475/* Genenerate COUNT bytes of NOPs to WHERE from PATT with the maximum
1476 size of a single NOP instruction MAX_SINGLE_NOP_SIZE. */
1477
1478static void
1479i386_output_nops (char *where, const unsigned char *const *patt,
1480 int count, int max_single_nop_size)
1481
1482{
3ae729d5
L
1483 /* Place the longer NOP first. */
1484 int last;
1485 int offset;
3076e594
NC
1486 const unsigned char *nops;
1487
1488 if (max_single_nop_size < 1)
1489 {
1490 as_fatal (_("i386_output_nops called to generate nops of at most %d bytes!"),
1491 max_single_nop_size);
1492 return;
1493 }
1494
1495 nops = patt[max_single_nop_size - 1];
3ae729d5
L
1496
1497 /* Use the smaller one if the requsted one isn't available. */
1498 if (nops == NULL)
62a02d25 1499 {
3ae729d5
L
1500 max_single_nop_size--;
1501 nops = patt[max_single_nop_size - 1];
62a02d25
L
1502 }
1503
3ae729d5
L
1504 last = count % max_single_nop_size;
1505
1506 count -= last;
1507 for (offset = 0; offset < count; offset += max_single_nop_size)
1508 memcpy (where + offset, nops, max_single_nop_size);
1509
1510 if (last)
1511 {
1512 nops = patt[last - 1];
1513 if (nops == NULL)
1514 {
1515 /* Use the smaller one plus one-byte NOP if the needed one
1516 isn't available. */
1517 last--;
1518 nops = patt[last - 1];
1519 memcpy (where + offset, nops, last);
1520 where[offset + last] = *patt[0];
1521 }
1522 else
1523 memcpy (where + offset, nops, last);
1524 }
62a02d25
L
1525}
1526
3ae729d5
L
1527static INLINE int
1528fits_in_imm7 (offsetT num)
1529{
1530 return (num & 0x7f) == num;
1531}
1532
1533static INLINE int
1534fits_in_imm31 (offsetT num)
1535{
1536 return (num & 0x7fffffff) == num;
1537}
62a02d25
L
1538
1539/* Genenerate COUNT bytes of NOPs to WHERE with the maximum size of a
1540 single NOP instruction LIMIT. */
1541
1542void
3ae729d5 1543i386_generate_nops (fragS *fragP, char *where, offsetT count, int limit)
62a02d25 1544{
3ae729d5 1545 const unsigned char *const *patt = NULL;
62a02d25 1546 int max_single_nop_size;
3ae729d5
L
1547 /* Maximum number of NOPs before switching to jump over NOPs. */
1548 int max_number_of_nops;
62a02d25 1549
3ae729d5 1550 switch (fragP->fr_type)
62a02d25 1551 {
3ae729d5
L
1552 case rs_fill_nop:
1553 case rs_align_code:
1554 break;
e379e5f3
L
1555 case rs_machine_dependent:
1556 /* Allow NOP padding for jumps and calls. */
1557 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
1558 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
1559 break;
1560 /* Fall through. */
3ae729d5 1561 default:
62a02d25
L
1562 return;
1563 }
1564
ccc9c027
L
1565 /* We need to decide which NOP sequence to use for 32bit and
1566 64bit. When -mtune= is used:
4eed87de 1567
76bc74dc
L
1568 1. For PROCESSOR_I386, PROCESSOR_I486, PROCESSOR_PENTIUM and
1569 PROCESSOR_GENERIC32, f32_patt will be used.
80b8656c
L
1570 2. For the rest, alt_patt will be used.
1571
1572 When -mtune= isn't used, alt_patt will be used if
22109423 1573 cpu_arch_isa_flags has CpuNop. Otherwise, f32_patt will
76bc74dc 1574 be used.
ccc9c027
L
1575
1576 When -march= or .arch is used, we can't use anything beyond
1577 cpu_arch_isa_flags. */
1578
1579 if (flag_code == CODE_16BIT)
1580 {
3ae729d5
L
1581 patt = f16_patt;
1582 max_single_nop_size = sizeof (f16_patt) / sizeof (f16_patt[0]);
1583 /* Limit number of NOPs to 2 in 16-bit mode. */
1584 max_number_of_nops = 2;
252b5132 1585 }
33fef721 1586 else
ccc9c027 1587 {
fbf3f584 1588 if (fragP->tc_frag_data.isa == PROCESSOR_UNKNOWN)
ccc9c027
L
1589 {
1590 /* PROCESSOR_UNKNOWN means that all ISAs may be used. */
1591 switch (cpu_arch_tune)
1592 {
1593 case PROCESSOR_UNKNOWN:
1594 /* We use cpu_arch_isa_flags to check if we SHOULD
22109423
L
1595 optimize with nops. */
1596 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1597 patt = alt_patt;
ccc9c027
L
1598 else
1599 patt = f32_patt;
1600 break;
ccc9c027
L
1601 case PROCESSOR_PENTIUM4:
1602 case PROCESSOR_NOCONA:
ef05d495 1603 case PROCESSOR_CORE:
76bc74dc 1604 case PROCESSOR_CORE2:
bd5295b2 1605 case PROCESSOR_COREI7:
3632d14b 1606 case PROCESSOR_L1OM:
7a9068fe 1607 case PROCESSOR_K1OM:
76bc74dc 1608 case PROCESSOR_GENERIC64:
ccc9c027
L
1609 case PROCESSOR_K6:
1610 case PROCESSOR_ATHLON:
1611 case PROCESSOR_K8:
4eed87de 1612 case PROCESSOR_AMDFAM10:
8aedb9fe 1613 case PROCESSOR_BD:
029f3522 1614 case PROCESSOR_ZNVER:
7b458c12 1615 case PROCESSOR_BT:
80b8656c 1616 patt = alt_patt;
ccc9c027 1617 break;
76bc74dc 1618 case PROCESSOR_I386:
ccc9c027
L
1619 case PROCESSOR_I486:
1620 case PROCESSOR_PENTIUM:
2dde1948 1621 case PROCESSOR_PENTIUMPRO:
81486035 1622 case PROCESSOR_IAMCU:
ccc9c027
L
1623 case PROCESSOR_GENERIC32:
1624 patt = f32_patt;
1625 break;
4eed87de 1626 }
ccc9c027
L
1627 }
1628 else
1629 {
fbf3f584 1630 switch (fragP->tc_frag_data.tune)
ccc9c027
L
1631 {
1632 case PROCESSOR_UNKNOWN:
e6a14101 1633 /* When cpu_arch_isa is set, cpu_arch_tune shouldn't be
ccc9c027
L
1634 PROCESSOR_UNKNOWN. */
1635 abort ();
1636 break;
1637
76bc74dc 1638 case PROCESSOR_I386:
ccc9c027
L
1639 case PROCESSOR_I486:
1640 case PROCESSOR_PENTIUM:
81486035 1641 case PROCESSOR_IAMCU:
ccc9c027
L
1642 case PROCESSOR_K6:
1643 case PROCESSOR_ATHLON:
1644 case PROCESSOR_K8:
4eed87de 1645 case PROCESSOR_AMDFAM10:
8aedb9fe 1646 case PROCESSOR_BD:
029f3522 1647 case PROCESSOR_ZNVER:
7b458c12 1648 case PROCESSOR_BT:
ccc9c027
L
1649 case PROCESSOR_GENERIC32:
1650 /* We use cpu_arch_isa_flags to check if we CAN optimize
22109423
L
1651 with nops. */
1652 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1653 patt = alt_patt;
ccc9c027
L
1654 else
1655 patt = f32_patt;
1656 break;
76bc74dc
L
1657 case PROCESSOR_PENTIUMPRO:
1658 case PROCESSOR_PENTIUM4:
1659 case PROCESSOR_NOCONA:
1660 case PROCESSOR_CORE:
ef05d495 1661 case PROCESSOR_CORE2:
bd5295b2 1662 case PROCESSOR_COREI7:
3632d14b 1663 case PROCESSOR_L1OM:
7a9068fe 1664 case PROCESSOR_K1OM:
22109423 1665 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1666 patt = alt_patt;
ccc9c027
L
1667 else
1668 patt = f32_patt;
1669 break;
1670 case PROCESSOR_GENERIC64:
80b8656c 1671 patt = alt_patt;
ccc9c027 1672 break;
4eed87de 1673 }
ccc9c027
L
1674 }
1675
76bc74dc
L
1676 if (patt == f32_patt)
1677 {
3ae729d5
L
1678 max_single_nop_size = sizeof (f32_patt) / sizeof (f32_patt[0]);
1679 /* Limit number of NOPs to 2 for older processors. */
1680 max_number_of_nops = 2;
76bc74dc
L
1681 }
1682 else
1683 {
3ae729d5
L
1684 max_single_nop_size = sizeof (alt_patt) / sizeof (alt_patt[0]);
1685 /* Limit number of NOPs to 7 for newer processors. */
1686 max_number_of_nops = 7;
1687 }
1688 }
1689
1690 if (limit == 0)
1691 limit = max_single_nop_size;
1692
1693 if (fragP->fr_type == rs_fill_nop)
1694 {
1695 /* Output NOPs for .nop directive. */
1696 if (limit > max_single_nop_size)
1697 {
1698 as_bad_where (fragP->fr_file, fragP->fr_line,
1699 _("invalid single nop size: %d "
1700 "(expect within [0, %d])"),
1701 limit, max_single_nop_size);
1702 return;
1703 }
1704 }
e379e5f3 1705 else if (fragP->fr_type != rs_machine_dependent)
3ae729d5
L
1706 fragP->fr_var = count;
1707
1708 if ((count / max_single_nop_size) > max_number_of_nops)
1709 {
1710 /* Generate jump over NOPs. */
1711 offsetT disp = count - 2;
1712 if (fits_in_imm7 (disp))
1713 {
1714 /* Use "jmp disp8" if possible. */
1715 count = disp;
1716 where[0] = jump_disp8[0];
1717 where[1] = count;
1718 where += 2;
1719 }
1720 else
1721 {
1722 unsigned int size_of_jump;
1723
1724 if (flag_code == CODE_16BIT)
1725 {
1726 where[0] = jump16_disp32[0];
1727 where[1] = jump16_disp32[1];
1728 size_of_jump = 2;
1729 }
1730 else
1731 {
1732 where[0] = jump32_disp32[0];
1733 size_of_jump = 1;
1734 }
1735
1736 count -= size_of_jump + 4;
1737 if (!fits_in_imm31 (count))
1738 {
1739 as_bad_where (fragP->fr_file, fragP->fr_line,
1740 _("jump over nop padding out of range"));
1741 return;
1742 }
1743
1744 md_number_to_chars (where + size_of_jump, count, 4);
1745 where += size_of_jump + 4;
76bc74dc 1746 }
ccc9c027 1747 }
3ae729d5
L
1748
1749 /* Generate multiple NOPs. */
1750 i386_output_nops (where, patt, count, limit);
252b5132
RH
1751}
1752
c6fb90c8 1753static INLINE int
0dfbf9d7 1754operand_type_all_zero (const union i386_operand_type *x)
40fb9820 1755{
0dfbf9d7 1756 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1757 {
1758 case 3:
0dfbf9d7 1759 if (x->array[2])
c6fb90c8 1760 return 0;
1a0670f3 1761 /* Fall through. */
c6fb90c8 1762 case 2:
0dfbf9d7 1763 if (x->array[1])
c6fb90c8 1764 return 0;
1a0670f3 1765 /* Fall through. */
c6fb90c8 1766 case 1:
0dfbf9d7 1767 return !x->array[0];
c6fb90c8
L
1768 default:
1769 abort ();
1770 }
40fb9820
L
1771}
1772
c6fb90c8 1773static INLINE void
0dfbf9d7 1774operand_type_set (union i386_operand_type *x, unsigned int v)
40fb9820 1775{
0dfbf9d7 1776 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1777 {
1778 case 3:
0dfbf9d7 1779 x->array[2] = v;
1a0670f3 1780 /* Fall through. */
c6fb90c8 1781 case 2:
0dfbf9d7 1782 x->array[1] = v;
1a0670f3 1783 /* Fall through. */
c6fb90c8 1784 case 1:
0dfbf9d7 1785 x->array[0] = v;
1a0670f3 1786 /* Fall through. */
c6fb90c8
L
1787 break;
1788 default:
1789 abort ();
1790 }
bab6aec1
JB
1791
1792 x->bitfield.class = ClassNone;
75e5731b 1793 x->bitfield.instance = InstanceNone;
c6fb90c8 1794}
40fb9820 1795
c6fb90c8 1796static INLINE int
0dfbf9d7
L
1797operand_type_equal (const union i386_operand_type *x,
1798 const union i386_operand_type *y)
c6fb90c8 1799{
0dfbf9d7 1800 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1801 {
1802 case 3:
0dfbf9d7 1803 if (x->array[2] != y->array[2])
c6fb90c8 1804 return 0;
1a0670f3 1805 /* Fall through. */
c6fb90c8 1806 case 2:
0dfbf9d7 1807 if (x->array[1] != y->array[1])
c6fb90c8 1808 return 0;
1a0670f3 1809 /* Fall through. */
c6fb90c8 1810 case 1:
0dfbf9d7 1811 return x->array[0] == y->array[0];
c6fb90c8
L
1812 break;
1813 default:
1814 abort ();
1815 }
1816}
40fb9820 1817
0dfbf9d7
L
1818static INLINE int
1819cpu_flags_all_zero (const union i386_cpu_flags *x)
1820{
1821 switch (ARRAY_SIZE(x->array))
1822 {
53467f57
IT
1823 case 4:
1824 if (x->array[3])
1825 return 0;
1826 /* Fall through. */
0dfbf9d7
L
1827 case 3:
1828 if (x->array[2])
1829 return 0;
1a0670f3 1830 /* Fall through. */
0dfbf9d7
L
1831 case 2:
1832 if (x->array[1])
1833 return 0;
1a0670f3 1834 /* Fall through. */
0dfbf9d7
L
1835 case 1:
1836 return !x->array[0];
1837 default:
1838 abort ();
1839 }
1840}
1841
0dfbf9d7
L
1842static INLINE int
1843cpu_flags_equal (const union i386_cpu_flags *x,
1844 const union i386_cpu_flags *y)
1845{
1846 switch (ARRAY_SIZE(x->array))
1847 {
53467f57
IT
1848 case 4:
1849 if (x->array[3] != y->array[3])
1850 return 0;
1851 /* Fall through. */
0dfbf9d7
L
1852 case 3:
1853 if (x->array[2] != y->array[2])
1854 return 0;
1a0670f3 1855 /* Fall through. */
0dfbf9d7
L
1856 case 2:
1857 if (x->array[1] != y->array[1])
1858 return 0;
1a0670f3 1859 /* Fall through. */
0dfbf9d7
L
1860 case 1:
1861 return x->array[0] == y->array[0];
1862 break;
1863 default:
1864 abort ();
1865 }
1866}
c6fb90c8
L
1867
1868static INLINE int
1869cpu_flags_check_cpu64 (i386_cpu_flags f)
1870{
1871 return !((flag_code == CODE_64BIT && f.bitfield.cpuno64)
1872 || (flag_code != CODE_64BIT && f.bitfield.cpu64));
40fb9820
L
1873}
1874
c6fb90c8
L
1875static INLINE i386_cpu_flags
1876cpu_flags_and (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1877{
c6fb90c8
L
1878 switch (ARRAY_SIZE (x.array))
1879 {
53467f57
IT
1880 case 4:
1881 x.array [3] &= y.array [3];
1882 /* Fall through. */
c6fb90c8
L
1883 case 3:
1884 x.array [2] &= y.array [2];
1a0670f3 1885 /* Fall through. */
c6fb90c8
L
1886 case 2:
1887 x.array [1] &= y.array [1];
1a0670f3 1888 /* Fall through. */
c6fb90c8
L
1889 case 1:
1890 x.array [0] &= y.array [0];
1891 break;
1892 default:
1893 abort ();
1894 }
1895 return x;
1896}
40fb9820 1897
c6fb90c8
L
1898static INLINE i386_cpu_flags
1899cpu_flags_or (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1900{
c6fb90c8 1901 switch (ARRAY_SIZE (x.array))
40fb9820 1902 {
53467f57
IT
1903 case 4:
1904 x.array [3] |= y.array [3];
1905 /* Fall through. */
c6fb90c8
L
1906 case 3:
1907 x.array [2] |= y.array [2];
1a0670f3 1908 /* Fall through. */
c6fb90c8
L
1909 case 2:
1910 x.array [1] |= y.array [1];
1a0670f3 1911 /* Fall through. */
c6fb90c8
L
1912 case 1:
1913 x.array [0] |= y.array [0];
40fb9820
L
1914 break;
1915 default:
1916 abort ();
1917 }
40fb9820
L
1918 return x;
1919}
1920
309d3373
JB
1921static INLINE i386_cpu_flags
1922cpu_flags_and_not (i386_cpu_flags x, i386_cpu_flags y)
1923{
1924 switch (ARRAY_SIZE (x.array))
1925 {
53467f57
IT
1926 case 4:
1927 x.array [3] &= ~y.array [3];
1928 /* Fall through. */
309d3373
JB
1929 case 3:
1930 x.array [2] &= ~y.array [2];
1a0670f3 1931 /* Fall through. */
309d3373
JB
1932 case 2:
1933 x.array [1] &= ~y.array [1];
1a0670f3 1934 /* Fall through. */
309d3373
JB
1935 case 1:
1936 x.array [0] &= ~y.array [0];
1937 break;
1938 default:
1939 abort ();
1940 }
1941 return x;
1942}
1943
6c0946d0
JB
1944static const i386_cpu_flags avx512 = CPU_ANY_AVX512F_FLAGS;
1945
c0f3af97
L
1946#define CPU_FLAGS_ARCH_MATCH 0x1
1947#define CPU_FLAGS_64BIT_MATCH 0x2
1948
c0f3af97 1949#define CPU_FLAGS_PERFECT_MATCH \
db12e14e 1950 (CPU_FLAGS_ARCH_MATCH | CPU_FLAGS_64BIT_MATCH)
c0f3af97
L
1951
1952/* Return CPU flags match bits. */
3629bb00 1953
40fb9820 1954static int
d3ce72d0 1955cpu_flags_match (const insn_template *t)
40fb9820 1956{
c0f3af97
L
1957 i386_cpu_flags x = t->cpu_flags;
1958 int match = cpu_flags_check_cpu64 (x) ? CPU_FLAGS_64BIT_MATCH : 0;
40fb9820
L
1959
1960 x.bitfield.cpu64 = 0;
1961 x.bitfield.cpuno64 = 0;
1962
0dfbf9d7 1963 if (cpu_flags_all_zero (&x))
c0f3af97
L
1964 {
1965 /* This instruction is available on all archs. */
db12e14e 1966 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 1967 }
3629bb00
L
1968 else
1969 {
c0f3af97 1970 /* This instruction is available only on some archs. */
3629bb00
L
1971 i386_cpu_flags cpu = cpu_arch_flags;
1972
ab592e75
JB
1973 /* AVX512VL is no standalone feature - match it and then strip it. */
1974 if (x.bitfield.cpuavx512vl && !cpu.bitfield.cpuavx512vl)
1975 return match;
1976 x.bitfield.cpuavx512vl = 0;
1977
3629bb00 1978 cpu = cpu_flags_and (x, cpu);
c0f3af97
L
1979 if (!cpu_flags_all_zero (&cpu))
1980 {
57392598 1981 if (x.bitfield.cpuavx)
a5ff0eb2 1982 {
929f69fa 1983 /* We need to check a few extra flags with AVX. */
b9d49817 1984 if (cpu.bitfield.cpuavx
40d231b4
JB
1985 && (!t->opcode_modifier.sse2avx
1986 || (sse2avx && !i.prefix[DATA_PREFIX]))
b9d49817 1987 && (!x.bitfield.cpuaes || cpu.bitfield.cpuaes)
929f69fa 1988 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
b9d49817
JB
1989 && (!x.bitfield.cpupclmul || cpu.bitfield.cpupclmul))
1990 match |= CPU_FLAGS_ARCH_MATCH;
a5ff0eb2 1991 }
929f69fa
JB
1992 else if (x.bitfield.cpuavx512f)
1993 {
1994 /* We need to check a few extra flags with AVX512F. */
1995 if (cpu.bitfield.cpuavx512f
1996 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
1997 && (!x.bitfield.cpuvaes || cpu.bitfield.cpuvaes)
1998 && (!x.bitfield.cpuvpclmulqdq || cpu.bitfield.cpuvpclmulqdq))
1999 match |= CPU_FLAGS_ARCH_MATCH;
2000 }
a5ff0eb2 2001 else
db12e14e 2002 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 2003 }
3629bb00 2004 }
c0f3af97 2005 return match;
40fb9820
L
2006}
2007
c6fb90c8
L
2008static INLINE i386_operand_type
2009operand_type_and (i386_operand_type x, i386_operand_type y)
40fb9820 2010{
bab6aec1
JB
2011 if (x.bitfield.class != y.bitfield.class)
2012 x.bitfield.class = ClassNone;
75e5731b
JB
2013 if (x.bitfield.instance != y.bitfield.instance)
2014 x.bitfield.instance = InstanceNone;
bab6aec1 2015
c6fb90c8
L
2016 switch (ARRAY_SIZE (x.array))
2017 {
2018 case 3:
2019 x.array [2] &= y.array [2];
1a0670f3 2020 /* Fall through. */
c6fb90c8
L
2021 case 2:
2022 x.array [1] &= y.array [1];
1a0670f3 2023 /* Fall through. */
c6fb90c8
L
2024 case 1:
2025 x.array [0] &= y.array [0];
2026 break;
2027 default:
2028 abort ();
2029 }
2030 return x;
40fb9820
L
2031}
2032
73053c1f
JB
2033static INLINE i386_operand_type
2034operand_type_and_not (i386_operand_type x, i386_operand_type y)
2035{
bab6aec1 2036 gas_assert (y.bitfield.class == ClassNone);
75e5731b 2037 gas_assert (y.bitfield.instance == InstanceNone);
bab6aec1 2038
73053c1f
JB
2039 switch (ARRAY_SIZE (x.array))
2040 {
2041 case 3:
2042 x.array [2] &= ~y.array [2];
2043 /* Fall through. */
2044 case 2:
2045 x.array [1] &= ~y.array [1];
2046 /* Fall through. */
2047 case 1:
2048 x.array [0] &= ~y.array [0];
2049 break;
2050 default:
2051 abort ();
2052 }
2053 return x;
2054}
2055
c6fb90c8
L
2056static INLINE i386_operand_type
2057operand_type_or (i386_operand_type x, i386_operand_type y)
40fb9820 2058{
bab6aec1
JB
2059 gas_assert (x.bitfield.class == ClassNone ||
2060 y.bitfield.class == ClassNone ||
2061 x.bitfield.class == y.bitfield.class);
75e5731b
JB
2062 gas_assert (x.bitfield.instance == InstanceNone ||
2063 y.bitfield.instance == InstanceNone ||
2064 x.bitfield.instance == y.bitfield.instance);
bab6aec1 2065
c6fb90c8 2066 switch (ARRAY_SIZE (x.array))
40fb9820 2067 {
c6fb90c8
L
2068 case 3:
2069 x.array [2] |= y.array [2];
1a0670f3 2070 /* Fall through. */
c6fb90c8
L
2071 case 2:
2072 x.array [1] |= y.array [1];
1a0670f3 2073 /* Fall through. */
c6fb90c8
L
2074 case 1:
2075 x.array [0] |= y.array [0];
40fb9820
L
2076 break;
2077 default:
2078 abort ();
2079 }
c6fb90c8
L
2080 return x;
2081}
40fb9820 2082
c6fb90c8
L
2083static INLINE i386_operand_type
2084operand_type_xor (i386_operand_type x, i386_operand_type y)
2085{
bab6aec1 2086 gas_assert (y.bitfield.class == ClassNone);
75e5731b 2087 gas_assert (y.bitfield.instance == InstanceNone);
bab6aec1 2088
c6fb90c8
L
2089 switch (ARRAY_SIZE (x.array))
2090 {
2091 case 3:
2092 x.array [2] ^= y.array [2];
1a0670f3 2093 /* Fall through. */
c6fb90c8
L
2094 case 2:
2095 x.array [1] ^= y.array [1];
1a0670f3 2096 /* Fall through. */
c6fb90c8
L
2097 case 1:
2098 x.array [0] ^= y.array [0];
2099 break;
2100 default:
2101 abort ();
2102 }
40fb9820
L
2103 return x;
2104}
2105
40fb9820
L
2106static const i386_operand_type disp16 = OPERAND_TYPE_DISP16;
2107static const i386_operand_type disp32 = OPERAND_TYPE_DISP32;
2108static const i386_operand_type disp32s = OPERAND_TYPE_DISP32S;
2109static const i386_operand_type disp16_32 = OPERAND_TYPE_DISP16_32;
bab6aec1
JB
2110static const i386_operand_type anydisp = OPERAND_TYPE_ANYDISP;
2111static const i386_operand_type anyimm = OPERAND_TYPE_ANYIMM;
40fb9820 2112static const i386_operand_type regxmm = OPERAND_TYPE_REGXMM;
43234a1e 2113static const i386_operand_type regmask = OPERAND_TYPE_REGMASK;
40fb9820
L
2114static const i386_operand_type imm8 = OPERAND_TYPE_IMM8;
2115static const i386_operand_type imm8s = OPERAND_TYPE_IMM8S;
2116static const i386_operand_type imm16 = OPERAND_TYPE_IMM16;
2117static const i386_operand_type imm32 = OPERAND_TYPE_IMM32;
2118static const i386_operand_type imm32s = OPERAND_TYPE_IMM32S;
2119static const i386_operand_type imm64 = OPERAND_TYPE_IMM64;
2120static const i386_operand_type imm16_32 = OPERAND_TYPE_IMM16_32;
2121static const i386_operand_type imm16_32s = OPERAND_TYPE_IMM16_32S;
2122static const i386_operand_type imm16_32_32s = OPERAND_TYPE_IMM16_32_32S;
2123
2124enum operand_type
2125{
2126 reg,
40fb9820
L
2127 imm,
2128 disp,
2129 anymem
2130};
2131
c6fb90c8 2132static INLINE int
40fb9820
L
2133operand_type_check (i386_operand_type t, enum operand_type c)
2134{
2135 switch (c)
2136 {
2137 case reg:
bab6aec1 2138 return t.bitfield.class == Reg;
40fb9820 2139
40fb9820
L
2140 case imm:
2141 return (t.bitfield.imm8
2142 || t.bitfield.imm8s
2143 || t.bitfield.imm16
2144 || t.bitfield.imm32
2145 || t.bitfield.imm32s
2146 || t.bitfield.imm64);
2147
2148 case disp:
2149 return (t.bitfield.disp8
2150 || t.bitfield.disp16
2151 || t.bitfield.disp32
2152 || t.bitfield.disp32s
2153 || t.bitfield.disp64);
2154
2155 case anymem:
2156 return (t.bitfield.disp8
2157 || t.bitfield.disp16
2158 || t.bitfield.disp32
2159 || t.bitfield.disp32s
2160 || t.bitfield.disp64
2161 || t.bitfield.baseindex);
2162
2163 default:
2164 abort ();
2165 }
2cfe26b6
AM
2166
2167 return 0;
40fb9820
L
2168}
2169
7a54636a
L
2170/* Return 1 if there is no conflict in 8bit/16bit/32bit/64bit/80bit size
2171 between operand GIVEN and opeand WANTED for instruction template T. */
5c07affc
L
2172
2173static INLINE int
7a54636a
L
2174match_operand_size (const insn_template *t, unsigned int wanted,
2175 unsigned int given)
5c07affc 2176{
3ac21baa
JB
2177 return !((i.types[given].bitfield.byte
2178 && !t->operand_types[wanted].bitfield.byte)
2179 || (i.types[given].bitfield.word
2180 && !t->operand_types[wanted].bitfield.word)
2181 || (i.types[given].bitfield.dword
2182 && !t->operand_types[wanted].bitfield.dword)
2183 || (i.types[given].bitfield.qword
2184 && !t->operand_types[wanted].bitfield.qword)
2185 || (i.types[given].bitfield.tbyte
2186 && !t->operand_types[wanted].bitfield.tbyte));
5c07affc
L
2187}
2188
dd40ce22
L
2189/* Return 1 if there is no conflict in SIMD register between operand
2190 GIVEN and opeand WANTED for instruction template T. */
1b54b8d7
JB
2191
2192static INLINE int
dd40ce22
L
2193match_simd_size (const insn_template *t, unsigned int wanted,
2194 unsigned int given)
1b54b8d7 2195{
3ac21baa
JB
2196 return !((i.types[given].bitfield.xmmword
2197 && !t->operand_types[wanted].bitfield.xmmword)
2198 || (i.types[given].bitfield.ymmword
2199 && !t->operand_types[wanted].bitfield.ymmword)
2200 || (i.types[given].bitfield.zmmword
260cd341
LC
2201 && !t->operand_types[wanted].bitfield.zmmword)
2202 || (i.types[given].bitfield.tmmword
2203 && !t->operand_types[wanted].bitfield.tmmword));
1b54b8d7
JB
2204}
2205
7a54636a
L
2206/* Return 1 if there is no conflict in any size between operand GIVEN
2207 and opeand WANTED for instruction template T. */
5c07affc
L
2208
2209static INLINE int
dd40ce22
L
2210match_mem_size (const insn_template *t, unsigned int wanted,
2211 unsigned int given)
5c07affc 2212{
7a54636a 2213 return (match_operand_size (t, wanted, given)
3ac21baa 2214 && !((i.types[given].bitfield.unspecified
af508cb9 2215 && !i.broadcast
3ac21baa
JB
2216 && !t->operand_types[wanted].bitfield.unspecified)
2217 || (i.types[given].bitfield.fword
2218 && !t->operand_types[wanted].bitfield.fword)
1b54b8d7
JB
2219 /* For scalar opcode templates to allow register and memory
2220 operands at the same time, some special casing is needed
d6793fa1
JB
2221 here. Also for v{,p}broadcast*, {,v}pmov{s,z}*, and
2222 down-conversion vpmov*. */
3528c362 2223 || ((t->operand_types[wanted].bitfield.class == RegSIMD
bc49bfd8
JB
2224 && t->operand_types[wanted].bitfield.byte
2225 + t->operand_types[wanted].bitfield.word
2226 + t->operand_types[wanted].bitfield.dword
2227 + t->operand_types[wanted].bitfield.qword
2228 > !!t->opcode_modifier.broadcast)
3ac21baa
JB
2229 ? (i.types[given].bitfield.xmmword
2230 || i.types[given].bitfield.ymmword
2231 || i.types[given].bitfield.zmmword)
2232 : !match_simd_size(t, wanted, given))));
5c07affc
L
2233}
2234
3ac21baa
JB
2235/* Return value has MATCH_STRAIGHT set if there is no size conflict on any
2236 operands for instruction template T, and it has MATCH_REVERSE set if there
2237 is no size conflict on any operands for the template with operands reversed
2238 (and the template allows for reversing in the first place). */
5c07affc 2239
3ac21baa
JB
2240#define MATCH_STRAIGHT 1
2241#define MATCH_REVERSE 2
2242
2243static INLINE unsigned int
d3ce72d0 2244operand_size_match (const insn_template *t)
5c07affc 2245{
3ac21baa 2246 unsigned int j, match = MATCH_STRAIGHT;
5c07affc 2247
0cfa3eb3 2248 /* Don't check non-absolute jump instructions. */
5c07affc 2249 if (t->opcode_modifier.jump
0cfa3eb3 2250 && t->opcode_modifier.jump != JUMP_ABSOLUTE)
5c07affc
L
2251 return match;
2252
2253 /* Check memory and accumulator operand size. */
2254 for (j = 0; j < i.operands; j++)
2255 {
3528c362
JB
2256 if (i.types[j].bitfield.class != Reg
2257 && i.types[j].bitfield.class != RegSIMD
601e8564 2258 && t->opcode_modifier.anysize)
5c07affc
L
2259 continue;
2260
bab6aec1 2261 if (t->operand_types[j].bitfield.class == Reg
7a54636a 2262 && !match_operand_size (t, j, j))
5c07affc
L
2263 {
2264 match = 0;
2265 break;
2266 }
2267
3528c362 2268 if (t->operand_types[j].bitfield.class == RegSIMD
3ac21baa 2269 && !match_simd_size (t, j, j))
1b54b8d7
JB
2270 {
2271 match = 0;
2272 break;
2273 }
2274
75e5731b 2275 if (t->operand_types[j].bitfield.instance == Accum
7a54636a 2276 && (!match_operand_size (t, j, j) || !match_simd_size (t, j, j)))
1b54b8d7
JB
2277 {
2278 match = 0;
2279 break;
2280 }
2281
c48dadc9 2282 if ((i.flags[j] & Operand_Mem) && !match_mem_size (t, j, j))
5c07affc
L
2283 {
2284 match = 0;
2285 break;
2286 }
2287 }
2288
3ac21baa 2289 if (!t->opcode_modifier.d)
891edac4 2290 {
dc1e8a47 2291 mismatch:
3ac21baa
JB
2292 if (!match)
2293 i.error = operand_size_mismatch;
2294 return match;
891edac4 2295 }
5c07affc
L
2296
2297 /* Check reverse. */
f5eb1d70 2298 gas_assert (i.operands >= 2 && i.operands <= 3);
5c07affc 2299
f5eb1d70 2300 for (j = 0; j < i.operands; j++)
5c07affc 2301 {
f5eb1d70
JB
2302 unsigned int given = i.operands - j - 1;
2303
bab6aec1 2304 if (t->operand_types[j].bitfield.class == Reg
f5eb1d70 2305 && !match_operand_size (t, j, given))
891edac4 2306 goto mismatch;
5c07affc 2307
3528c362 2308 if (t->operand_types[j].bitfield.class == RegSIMD
f5eb1d70 2309 && !match_simd_size (t, j, given))
dbbc8b7e
JB
2310 goto mismatch;
2311
75e5731b 2312 if (t->operand_types[j].bitfield.instance == Accum
f5eb1d70
JB
2313 && (!match_operand_size (t, j, given)
2314 || !match_simd_size (t, j, given)))
dbbc8b7e
JB
2315 goto mismatch;
2316
f5eb1d70 2317 if ((i.flags[given] & Operand_Mem) && !match_mem_size (t, j, given))
891edac4 2318 goto mismatch;
5c07affc
L
2319 }
2320
3ac21baa 2321 return match | MATCH_REVERSE;
5c07affc
L
2322}
2323
c6fb90c8 2324static INLINE int
40fb9820
L
2325operand_type_match (i386_operand_type overlap,
2326 i386_operand_type given)
2327{
2328 i386_operand_type temp = overlap;
2329
7d5e4556 2330 temp.bitfield.unspecified = 0;
5c07affc
L
2331 temp.bitfield.byte = 0;
2332 temp.bitfield.word = 0;
2333 temp.bitfield.dword = 0;
2334 temp.bitfield.fword = 0;
2335 temp.bitfield.qword = 0;
2336 temp.bitfield.tbyte = 0;
2337 temp.bitfield.xmmword = 0;
c0f3af97 2338 temp.bitfield.ymmword = 0;
43234a1e 2339 temp.bitfield.zmmword = 0;
260cd341 2340 temp.bitfield.tmmword = 0;
0dfbf9d7 2341 if (operand_type_all_zero (&temp))
891edac4 2342 goto mismatch;
40fb9820 2343
6f2f06be 2344 if (given.bitfield.baseindex == overlap.bitfield.baseindex)
891edac4
L
2345 return 1;
2346
dc1e8a47 2347 mismatch:
a65babc9 2348 i.error = operand_type_mismatch;
891edac4 2349 return 0;
40fb9820
L
2350}
2351
7d5e4556 2352/* If given types g0 and g1 are registers they must be of the same type
10c17abd 2353 unless the expected operand type register overlap is null.
5de4d9ef 2354 Some Intel syntax memory operand size checking also happens here. */
40fb9820 2355
c6fb90c8 2356static INLINE int
dc821c5f 2357operand_type_register_match (i386_operand_type g0,
40fb9820 2358 i386_operand_type t0,
40fb9820
L
2359 i386_operand_type g1,
2360 i386_operand_type t1)
2361{
bab6aec1 2362 if (g0.bitfield.class != Reg
3528c362 2363 && g0.bitfield.class != RegSIMD
10c17abd
JB
2364 && (!operand_type_check (g0, anymem)
2365 || g0.bitfield.unspecified
5de4d9ef
JB
2366 || (t0.bitfield.class != Reg
2367 && t0.bitfield.class != RegSIMD)))
40fb9820
L
2368 return 1;
2369
bab6aec1 2370 if (g1.bitfield.class != Reg
3528c362 2371 && g1.bitfield.class != RegSIMD
10c17abd
JB
2372 && (!operand_type_check (g1, anymem)
2373 || g1.bitfield.unspecified
5de4d9ef
JB
2374 || (t1.bitfield.class != Reg
2375 && t1.bitfield.class != RegSIMD)))
40fb9820
L
2376 return 1;
2377
dc821c5f
JB
2378 if (g0.bitfield.byte == g1.bitfield.byte
2379 && g0.bitfield.word == g1.bitfield.word
2380 && g0.bitfield.dword == g1.bitfield.dword
10c17abd
JB
2381 && g0.bitfield.qword == g1.bitfield.qword
2382 && g0.bitfield.xmmword == g1.bitfield.xmmword
2383 && g0.bitfield.ymmword == g1.bitfield.ymmword
2384 && g0.bitfield.zmmword == g1.bitfield.zmmword)
40fb9820
L
2385 return 1;
2386
dc821c5f
JB
2387 if (!(t0.bitfield.byte & t1.bitfield.byte)
2388 && !(t0.bitfield.word & t1.bitfield.word)
2389 && !(t0.bitfield.dword & t1.bitfield.dword)
10c17abd
JB
2390 && !(t0.bitfield.qword & t1.bitfield.qword)
2391 && !(t0.bitfield.xmmword & t1.bitfield.xmmword)
2392 && !(t0.bitfield.ymmword & t1.bitfield.ymmword)
2393 && !(t0.bitfield.zmmword & t1.bitfield.zmmword))
891edac4
L
2394 return 1;
2395
a65babc9 2396 i.error = register_type_mismatch;
891edac4
L
2397
2398 return 0;
40fb9820
L
2399}
2400
4c692bc7
JB
2401static INLINE unsigned int
2402register_number (const reg_entry *r)
2403{
2404 unsigned int nr = r->reg_num;
2405
2406 if (r->reg_flags & RegRex)
2407 nr += 8;
2408
200cbe0f
L
2409 if (r->reg_flags & RegVRex)
2410 nr += 16;
2411
4c692bc7
JB
2412 return nr;
2413}
2414
252b5132 2415static INLINE unsigned int
40fb9820 2416mode_from_disp_size (i386_operand_type t)
252b5132 2417{
b5014f7a 2418 if (t.bitfield.disp8)
40fb9820
L
2419 return 1;
2420 else if (t.bitfield.disp16
2421 || t.bitfield.disp32
2422 || t.bitfield.disp32s)
2423 return 2;
2424 else
2425 return 0;
252b5132
RH
2426}
2427
2428static INLINE int
65879393 2429fits_in_signed_byte (addressT num)
252b5132 2430{
65879393 2431 return num + 0x80 <= 0xff;
47926f60 2432}
252b5132
RH
2433
2434static INLINE int
65879393 2435fits_in_unsigned_byte (addressT num)
252b5132 2436{
65879393 2437 return num <= 0xff;
47926f60 2438}
252b5132
RH
2439
2440static INLINE int
65879393 2441fits_in_unsigned_word (addressT num)
252b5132 2442{
65879393 2443 return num <= 0xffff;
47926f60 2444}
252b5132
RH
2445
2446static INLINE int
65879393 2447fits_in_signed_word (addressT num)
252b5132 2448{
65879393 2449 return num + 0x8000 <= 0xffff;
47926f60 2450}
2a962e6d 2451
3e73aa7c 2452static INLINE int
65879393 2453fits_in_signed_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2454{
2455#ifndef BFD64
2456 return 1;
2457#else
65879393 2458 return num + 0x80000000 <= 0xffffffff;
3e73aa7c
JH
2459#endif
2460} /* fits_in_signed_long() */
2a962e6d 2461
3e73aa7c 2462static INLINE int
65879393 2463fits_in_unsigned_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2464{
2465#ifndef BFD64
2466 return 1;
2467#else
65879393 2468 return num <= 0xffffffff;
3e73aa7c
JH
2469#endif
2470} /* fits_in_unsigned_long() */
252b5132 2471
43234a1e 2472static INLINE int
b5014f7a 2473fits_in_disp8 (offsetT num)
43234a1e
L
2474{
2475 int shift = i.memshift;
2476 unsigned int mask;
2477
2478 if (shift == -1)
2479 abort ();
2480
2481 mask = (1 << shift) - 1;
2482
2483 /* Return 0 if NUM isn't properly aligned. */
2484 if ((num & mask))
2485 return 0;
2486
2487 /* Check if NUM will fit in 8bit after shift. */
2488 return fits_in_signed_byte (num >> shift);
2489}
2490
a683cc34
SP
2491static INLINE int
2492fits_in_imm4 (offsetT num)
2493{
2494 return (num & 0xf) == num;
2495}
2496
40fb9820 2497static i386_operand_type
e3bb37b5 2498smallest_imm_type (offsetT num)
252b5132 2499{
40fb9820 2500 i386_operand_type t;
7ab9ffdd 2501
0dfbf9d7 2502 operand_type_set (&t, 0);
40fb9820
L
2503 t.bitfield.imm64 = 1;
2504
2505 if (cpu_arch_tune != PROCESSOR_I486 && num == 1)
e413e4e9
AM
2506 {
2507 /* This code is disabled on the 486 because all the Imm1 forms
2508 in the opcode table are slower on the i486. They're the
2509 versions with the implicitly specified single-position
2510 displacement, which has another syntax if you really want to
2511 use that form. */
40fb9820
L
2512 t.bitfield.imm1 = 1;
2513 t.bitfield.imm8 = 1;
2514 t.bitfield.imm8s = 1;
2515 t.bitfield.imm16 = 1;
2516 t.bitfield.imm32 = 1;
2517 t.bitfield.imm32s = 1;
2518 }
2519 else if (fits_in_signed_byte (num))
2520 {
2521 t.bitfield.imm8 = 1;
2522 t.bitfield.imm8s = 1;
2523 t.bitfield.imm16 = 1;
2524 t.bitfield.imm32 = 1;
2525 t.bitfield.imm32s = 1;
2526 }
2527 else if (fits_in_unsigned_byte (num))
2528 {
2529 t.bitfield.imm8 = 1;
2530 t.bitfield.imm16 = 1;
2531 t.bitfield.imm32 = 1;
2532 t.bitfield.imm32s = 1;
2533 }
2534 else if (fits_in_signed_word (num) || fits_in_unsigned_word (num))
2535 {
2536 t.bitfield.imm16 = 1;
2537 t.bitfield.imm32 = 1;
2538 t.bitfield.imm32s = 1;
2539 }
2540 else if (fits_in_signed_long (num))
2541 {
2542 t.bitfield.imm32 = 1;
2543 t.bitfield.imm32s = 1;
2544 }
2545 else if (fits_in_unsigned_long (num))
2546 t.bitfield.imm32 = 1;
2547
2548 return t;
47926f60 2549}
252b5132 2550
847f7ad4 2551static offsetT
e3bb37b5 2552offset_in_range (offsetT val, int size)
847f7ad4 2553{
508866be 2554 addressT mask;
ba2adb93 2555
847f7ad4
AM
2556 switch (size)
2557 {
508866be
L
2558 case 1: mask = ((addressT) 1 << 8) - 1; break;
2559 case 2: mask = ((addressT) 1 << 16) - 1; break;
3b0ec529 2560 case 4: mask = ((addressT) 2 << 31) - 1; break;
3e73aa7c
JH
2561#ifdef BFD64
2562 case 8: mask = ((addressT) 2 << 63) - 1; break;
2563#endif
47926f60 2564 default: abort ();
847f7ad4
AM
2565 }
2566
47926f60 2567 if ((val & ~mask) != 0 && (val & ~mask) != ~mask)
847f7ad4
AM
2568 {
2569 char buf1[40], buf2[40];
2570
2571 sprint_value (buf1, val);
2572 sprint_value (buf2, val & mask);
2573 as_warn (_("%s shortened to %s"), buf1, buf2);
2574 }
2575 return val & mask;
2576}
2577
c32fa91d
L
2578enum PREFIX_GROUP
2579{
2580 PREFIX_EXIST = 0,
2581 PREFIX_LOCK,
2582 PREFIX_REP,
04ef582a 2583 PREFIX_DS,
c32fa91d
L
2584 PREFIX_OTHER
2585};
2586
2587/* Returns
2588 a. PREFIX_EXIST if attempting to add a prefix where one from the
2589 same class already exists.
2590 b. PREFIX_LOCK if lock prefix is added.
2591 c. PREFIX_REP if rep/repne prefix is added.
04ef582a
L
2592 d. PREFIX_DS if ds prefix is added.
2593 e. PREFIX_OTHER if other prefix is added.
c32fa91d
L
2594 */
2595
2596static enum PREFIX_GROUP
e3bb37b5 2597add_prefix (unsigned int prefix)
252b5132 2598{
c32fa91d 2599 enum PREFIX_GROUP ret = PREFIX_OTHER;
b1905489 2600 unsigned int q;
252b5132 2601
29b0f896
AM
2602 if (prefix >= REX_OPCODE && prefix < REX_OPCODE + 16
2603 && flag_code == CODE_64BIT)
b1905489 2604 {
161a04f6 2605 if ((i.prefix[REX_PREFIX] & prefix & REX_W)
44846f29
JB
2606 || (i.prefix[REX_PREFIX] & prefix & REX_R)
2607 || (i.prefix[REX_PREFIX] & prefix & REX_X)
2608 || (i.prefix[REX_PREFIX] & prefix & REX_B))
c32fa91d 2609 ret = PREFIX_EXIST;
b1905489
JB
2610 q = REX_PREFIX;
2611 }
3e73aa7c 2612 else
b1905489
JB
2613 {
2614 switch (prefix)
2615 {
2616 default:
2617 abort ();
2618
b1905489 2619 case DS_PREFIX_OPCODE:
04ef582a
L
2620 ret = PREFIX_DS;
2621 /* Fall through. */
2622 case CS_PREFIX_OPCODE:
b1905489
JB
2623 case ES_PREFIX_OPCODE:
2624 case FS_PREFIX_OPCODE:
2625 case GS_PREFIX_OPCODE:
2626 case SS_PREFIX_OPCODE:
2627 q = SEG_PREFIX;
2628 break;
2629
2630 case REPNE_PREFIX_OPCODE:
2631 case REPE_PREFIX_OPCODE:
c32fa91d
L
2632 q = REP_PREFIX;
2633 ret = PREFIX_REP;
2634 break;
2635
b1905489 2636 case LOCK_PREFIX_OPCODE:
c32fa91d
L
2637 q = LOCK_PREFIX;
2638 ret = PREFIX_LOCK;
b1905489
JB
2639 break;
2640
2641 case FWAIT_OPCODE:
2642 q = WAIT_PREFIX;
2643 break;
2644
2645 case ADDR_PREFIX_OPCODE:
2646 q = ADDR_PREFIX;
2647 break;
2648
2649 case DATA_PREFIX_OPCODE:
2650 q = DATA_PREFIX;
2651 break;
2652 }
2653 if (i.prefix[q] != 0)
c32fa91d 2654 ret = PREFIX_EXIST;
b1905489 2655 }
252b5132 2656
b1905489 2657 if (ret)
252b5132 2658 {
b1905489
JB
2659 if (!i.prefix[q])
2660 ++i.prefixes;
2661 i.prefix[q] |= prefix;
252b5132 2662 }
b1905489
JB
2663 else
2664 as_bad (_("same type of prefix used twice"));
252b5132 2665
252b5132
RH
2666 return ret;
2667}
2668
2669static void
78f12dd3 2670update_code_flag (int value, int check)
eecb386c 2671{
78f12dd3
L
2672 PRINTF_LIKE ((*as_error));
2673
1e9cc1c2 2674 flag_code = (enum flag_code) value;
40fb9820
L
2675 if (flag_code == CODE_64BIT)
2676 {
2677 cpu_arch_flags.bitfield.cpu64 = 1;
2678 cpu_arch_flags.bitfield.cpuno64 = 0;
40fb9820
L
2679 }
2680 else
2681 {
2682 cpu_arch_flags.bitfield.cpu64 = 0;
2683 cpu_arch_flags.bitfield.cpuno64 = 1;
40fb9820
L
2684 }
2685 if (value == CODE_64BIT && !cpu_arch_flags.bitfield.cpulm )
3e73aa7c 2686 {
78f12dd3
L
2687 if (check)
2688 as_error = as_fatal;
2689 else
2690 as_error = as_bad;
2691 (*as_error) (_("64bit mode not supported on `%s'."),
2692 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2693 }
40fb9820 2694 if (value == CODE_32BIT && !cpu_arch_flags.bitfield.cpui386)
3e73aa7c 2695 {
78f12dd3
L
2696 if (check)
2697 as_error = as_fatal;
2698 else
2699 as_error = as_bad;
2700 (*as_error) (_("32bit mode not supported on `%s'."),
2701 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2702 }
eecb386c
AM
2703 stackop_size = '\0';
2704}
2705
78f12dd3
L
2706static void
2707set_code_flag (int value)
2708{
2709 update_code_flag (value, 0);
2710}
2711
eecb386c 2712static void
e3bb37b5 2713set_16bit_gcc_code_flag (int new_code_flag)
252b5132 2714{
1e9cc1c2 2715 flag_code = (enum flag_code) new_code_flag;
40fb9820
L
2716 if (flag_code != CODE_16BIT)
2717 abort ();
2718 cpu_arch_flags.bitfield.cpu64 = 0;
2719 cpu_arch_flags.bitfield.cpuno64 = 1;
9306ca4a 2720 stackop_size = LONG_MNEM_SUFFIX;
252b5132
RH
2721}
2722
2723static void
e3bb37b5 2724set_intel_syntax (int syntax_flag)
252b5132
RH
2725{
2726 /* Find out if register prefixing is specified. */
2727 int ask_naked_reg = 0;
2728
2729 SKIP_WHITESPACE ();
29b0f896 2730 if (!is_end_of_line[(unsigned char) *input_line_pointer])
252b5132 2731 {
d02603dc
NC
2732 char *string;
2733 int e = get_symbol_name (&string);
252b5132 2734
47926f60 2735 if (strcmp (string, "prefix") == 0)
252b5132 2736 ask_naked_reg = 1;
47926f60 2737 else if (strcmp (string, "noprefix") == 0)
252b5132
RH
2738 ask_naked_reg = -1;
2739 else
d0b47220 2740 as_bad (_("bad argument to syntax directive."));
d02603dc 2741 (void) restore_line_pointer (e);
252b5132
RH
2742 }
2743 demand_empty_rest_of_line ();
c3332e24 2744
252b5132
RH
2745 intel_syntax = syntax_flag;
2746
2747 if (ask_naked_reg == 0)
f86103b7
AM
2748 allow_naked_reg = (intel_syntax
2749 && (bfd_get_symbol_leading_char (stdoutput) != '\0'));
252b5132
RH
2750 else
2751 allow_naked_reg = (ask_naked_reg < 0);
9306ca4a 2752
ee86248c 2753 expr_set_rank (O_full_ptr, syntax_flag ? 10 : 0);
7ab9ffdd 2754
e4a3b5a4 2755 identifier_chars['%'] = intel_syntax && allow_naked_reg ? '%' : 0;
9306ca4a 2756 identifier_chars['$'] = intel_syntax ? '$' : 0;
e4a3b5a4 2757 register_prefix = allow_naked_reg ? "" : "%";
252b5132
RH
2758}
2759
1efbbeb4
L
2760static void
2761set_intel_mnemonic (int mnemonic_flag)
2762{
e1d4d893 2763 intel_mnemonic = mnemonic_flag;
1efbbeb4
L
2764}
2765
db51cc60
L
2766static void
2767set_allow_index_reg (int flag)
2768{
2769 allow_index_reg = flag;
2770}
2771
cb19c032 2772static void
7bab8ab5 2773set_check (int what)
cb19c032 2774{
7bab8ab5
JB
2775 enum check_kind *kind;
2776 const char *str;
2777
2778 if (what)
2779 {
2780 kind = &operand_check;
2781 str = "operand";
2782 }
2783 else
2784 {
2785 kind = &sse_check;
2786 str = "sse";
2787 }
2788
cb19c032
L
2789 SKIP_WHITESPACE ();
2790
2791 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2792 {
d02603dc
NC
2793 char *string;
2794 int e = get_symbol_name (&string);
cb19c032
L
2795
2796 if (strcmp (string, "none") == 0)
7bab8ab5 2797 *kind = check_none;
cb19c032 2798 else if (strcmp (string, "warning") == 0)
7bab8ab5 2799 *kind = check_warning;
cb19c032 2800 else if (strcmp (string, "error") == 0)
7bab8ab5 2801 *kind = check_error;
cb19c032 2802 else
7bab8ab5 2803 as_bad (_("bad argument to %s_check directive."), str);
d02603dc 2804 (void) restore_line_pointer (e);
cb19c032
L
2805 }
2806 else
7bab8ab5 2807 as_bad (_("missing argument for %s_check directive"), str);
cb19c032
L
2808
2809 demand_empty_rest_of_line ();
2810}
2811
8a9036a4
L
2812static void
2813check_cpu_arch_compatible (const char *name ATTRIBUTE_UNUSED,
1e9cc1c2 2814 i386_cpu_flags new_flag ATTRIBUTE_UNUSED)
8a9036a4
L
2815{
2816#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2817 static const char *arch;
2818
2819 /* Intel LIOM is only supported on ELF. */
2820 if (!IS_ELF)
2821 return;
2822
2823 if (!arch)
2824 {
2825 /* Use cpu_arch_name if it is set in md_parse_option. Otherwise
2826 use default_arch. */
2827 arch = cpu_arch_name;
2828 if (!arch)
2829 arch = default_arch;
2830 }
2831
81486035
L
2832 /* If we are targeting Intel MCU, we must enable it. */
2833 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_IAMCU
2834 || new_flag.bitfield.cpuiamcu)
2835 return;
2836
3632d14b 2837 /* If we are targeting Intel L1OM, we must enable it. */
8a9036a4 2838 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_L1OM
1e9cc1c2 2839 || new_flag.bitfield.cpul1om)
8a9036a4 2840 return;
76ba9986 2841
7a9068fe
L
2842 /* If we are targeting Intel K1OM, we must enable it. */
2843 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_K1OM
2844 || new_flag.bitfield.cpuk1om)
2845 return;
2846
8a9036a4
L
2847 as_bad (_("`%s' is not supported on `%s'"), name, arch);
2848#endif
2849}
2850
e413e4e9 2851static void
e3bb37b5 2852set_cpu_arch (int dummy ATTRIBUTE_UNUSED)
e413e4e9 2853{
47926f60 2854 SKIP_WHITESPACE ();
e413e4e9 2855
29b0f896 2856 if (!is_end_of_line[(unsigned char) *input_line_pointer])
e413e4e9 2857 {
d02603dc
NC
2858 char *string;
2859 int e = get_symbol_name (&string);
91d6fa6a 2860 unsigned int j;
40fb9820 2861 i386_cpu_flags flags;
e413e4e9 2862
91d6fa6a 2863 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
e413e4e9 2864 {
91d6fa6a 2865 if (strcmp (string, cpu_arch[j].name) == 0)
e413e4e9 2866 {
91d6fa6a 2867 check_cpu_arch_compatible (string, cpu_arch[j].flags);
8a9036a4 2868
5c6af06e
JB
2869 if (*string != '.')
2870 {
91d6fa6a 2871 cpu_arch_name = cpu_arch[j].name;
5c6af06e 2872 cpu_sub_arch_name = NULL;
91d6fa6a 2873 cpu_arch_flags = cpu_arch[j].flags;
40fb9820
L
2874 if (flag_code == CODE_64BIT)
2875 {
2876 cpu_arch_flags.bitfield.cpu64 = 1;
2877 cpu_arch_flags.bitfield.cpuno64 = 0;
2878 }
2879 else
2880 {
2881 cpu_arch_flags.bitfield.cpu64 = 0;
2882 cpu_arch_flags.bitfield.cpuno64 = 1;
2883 }
91d6fa6a
NC
2884 cpu_arch_isa = cpu_arch[j].type;
2885 cpu_arch_isa_flags = cpu_arch[j].flags;
ccc9c027
L
2886 if (!cpu_arch_tune_set)
2887 {
2888 cpu_arch_tune = cpu_arch_isa;
2889 cpu_arch_tune_flags = cpu_arch_isa_flags;
2890 }
5c6af06e
JB
2891 break;
2892 }
40fb9820 2893
293f5f65
L
2894 flags = cpu_flags_or (cpu_arch_flags,
2895 cpu_arch[j].flags);
81486035 2896
5b64d091 2897 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
5c6af06e 2898 {
6305a203
L
2899 if (cpu_sub_arch_name)
2900 {
2901 char *name = cpu_sub_arch_name;
2902 cpu_sub_arch_name = concat (name,
91d6fa6a 2903 cpu_arch[j].name,
1bf57e9f 2904 (const char *) NULL);
6305a203
L
2905 free (name);
2906 }
2907 else
91d6fa6a 2908 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
40fb9820 2909 cpu_arch_flags = flags;
a586129e 2910 cpu_arch_isa_flags = flags;
5c6af06e 2911 }
0089dace
L
2912 else
2913 cpu_arch_isa_flags
2914 = cpu_flags_or (cpu_arch_isa_flags,
2915 cpu_arch[j].flags);
d02603dc 2916 (void) restore_line_pointer (e);
5c6af06e
JB
2917 demand_empty_rest_of_line ();
2918 return;
e413e4e9
AM
2919 }
2920 }
293f5f65
L
2921
2922 if (*string == '.' && j >= ARRAY_SIZE (cpu_arch))
2923 {
33eaf5de 2924 /* Disable an ISA extension. */
293f5f65
L
2925 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
2926 if (strcmp (string + 1, cpu_noarch [j].name) == 0)
2927 {
2928 flags = cpu_flags_and_not (cpu_arch_flags,
2929 cpu_noarch[j].flags);
2930 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
2931 {
2932 if (cpu_sub_arch_name)
2933 {
2934 char *name = cpu_sub_arch_name;
2935 cpu_sub_arch_name = concat (name, string,
2936 (const char *) NULL);
2937 free (name);
2938 }
2939 else
2940 cpu_sub_arch_name = xstrdup (string);
2941 cpu_arch_flags = flags;
2942 cpu_arch_isa_flags = flags;
2943 }
2944 (void) restore_line_pointer (e);
2945 demand_empty_rest_of_line ();
2946 return;
2947 }
2948
2949 j = ARRAY_SIZE (cpu_arch);
2950 }
2951
91d6fa6a 2952 if (j >= ARRAY_SIZE (cpu_arch))
e413e4e9
AM
2953 as_bad (_("no such architecture: `%s'"), string);
2954
2955 *input_line_pointer = e;
2956 }
2957 else
2958 as_bad (_("missing cpu architecture"));
2959
fddf5b5b
AM
2960 no_cond_jump_promotion = 0;
2961 if (*input_line_pointer == ','
29b0f896 2962 && !is_end_of_line[(unsigned char) input_line_pointer[1]])
fddf5b5b 2963 {
d02603dc
NC
2964 char *string;
2965 char e;
2966
2967 ++input_line_pointer;
2968 e = get_symbol_name (&string);
fddf5b5b
AM
2969
2970 if (strcmp (string, "nojumps") == 0)
2971 no_cond_jump_promotion = 1;
2972 else if (strcmp (string, "jumps") == 0)
2973 ;
2974 else
2975 as_bad (_("no such architecture modifier: `%s'"), string);
2976
d02603dc 2977 (void) restore_line_pointer (e);
fddf5b5b
AM
2978 }
2979
e413e4e9
AM
2980 demand_empty_rest_of_line ();
2981}
2982
8a9036a4
L
2983enum bfd_architecture
2984i386_arch (void)
2985{
3632d14b 2986 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4
L
2987 {
2988 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2989 || flag_code != CODE_64BIT)
2990 as_fatal (_("Intel L1OM is 64bit ELF only"));
2991 return bfd_arch_l1om;
2992 }
7a9068fe
L
2993 else if (cpu_arch_isa == PROCESSOR_K1OM)
2994 {
2995 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2996 || flag_code != CODE_64BIT)
2997 as_fatal (_("Intel K1OM is 64bit ELF only"));
2998 return bfd_arch_k1om;
2999 }
81486035
L
3000 else if (cpu_arch_isa == PROCESSOR_IAMCU)
3001 {
3002 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
3003 || flag_code == CODE_64BIT)
3004 as_fatal (_("Intel MCU is 32bit ELF only"));
3005 return bfd_arch_iamcu;
3006 }
8a9036a4
L
3007 else
3008 return bfd_arch_i386;
3009}
3010
b9d79e03 3011unsigned long
7016a5d5 3012i386_mach (void)
b9d79e03 3013{
351f65ca 3014 if (!strncmp (default_arch, "x86_64", 6))
8a9036a4 3015 {
3632d14b 3016 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 3017 {
351f65ca
L
3018 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
3019 || default_arch[6] != '\0')
8a9036a4
L
3020 as_fatal (_("Intel L1OM is 64bit ELF only"));
3021 return bfd_mach_l1om;
3022 }
7a9068fe
L
3023 else if (cpu_arch_isa == PROCESSOR_K1OM)
3024 {
3025 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
3026 || default_arch[6] != '\0')
3027 as_fatal (_("Intel K1OM is 64bit ELF only"));
3028 return bfd_mach_k1om;
3029 }
351f65ca 3030 else if (default_arch[6] == '\0')
8a9036a4 3031 return bfd_mach_x86_64;
351f65ca
L
3032 else
3033 return bfd_mach_x64_32;
8a9036a4 3034 }
5197d474
L
3035 else if (!strcmp (default_arch, "i386")
3036 || !strcmp (default_arch, "iamcu"))
81486035
L
3037 {
3038 if (cpu_arch_isa == PROCESSOR_IAMCU)
3039 {
3040 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
3041 as_fatal (_("Intel MCU is 32bit ELF only"));
3042 return bfd_mach_i386_iamcu;
3043 }
3044 else
3045 return bfd_mach_i386_i386;
3046 }
b9d79e03 3047 else
2b5d6a91 3048 as_fatal (_("unknown architecture"));
b9d79e03 3049}
b9d79e03 3050\f
252b5132 3051void
7016a5d5 3052md_begin (void)
252b5132 3053{
86fa6981
L
3054 /* Support pseudo prefixes like {disp32}. */
3055 lex_type ['{'] = LEX_BEGIN_NAME;
3056
47926f60 3057 /* Initialize op_hash hash table. */
629310ab 3058 op_hash = str_htab_create ();
252b5132
RH
3059
3060 {
d3ce72d0 3061 const insn_template *optab;
29b0f896 3062 templates *core_optab;
252b5132 3063
47926f60
KH
3064 /* Setup for loop. */
3065 optab = i386_optab;
add39d23 3066 core_optab = XNEW (templates);
252b5132
RH
3067 core_optab->start = optab;
3068
3069 while (1)
3070 {
3071 ++optab;
3072 if (optab->name == NULL
3073 || strcmp (optab->name, (optab - 1)->name) != 0)
3074 {
3075 /* different name --> ship out current template list;
47926f60 3076 add to hash table; & begin anew. */
252b5132 3077 core_optab->end = optab;
fe0e921f
AM
3078 if (str_hash_insert (op_hash, (optab - 1)->name, core_optab, 0))
3079 as_fatal (_("duplicate %s"), (optab - 1)->name);
3080
252b5132
RH
3081 if (optab->name == NULL)
3082 break;
add39d23 3083 core_optab = XNEW (templates);
252b5132
RH
3084 core_optab->start = optab;
3085 }
3086 }
3087 }
3088
47926f60 3089 /* Initialize reg_hash hash table. */
629310ab 3090 reg_hash = str_htab_create ();
252b5132 3091 {
29b0f896 3092 const reg_entry *regtab;
c3fe08fa 3093 unsigned int regtab_size = i386_regtab_size;
252b5132 3094
c3fe08fa 3095 for (regtab = i386_regtab; regtab_size--; regtab++)
fe0e921f
AM
3096 if (str_hash_insert (reg_hash, regtab->reg_name, regtab, 0) != NULL)
3097 as_fatal (_("duplicate %s"), regtab->reg_name);
252b5132
RH
3098 }
3099
47926f60 3100 /* Fill in lexical tables: mnemonic_chars, operand_chars. */
252b5132 3101 {
29b0f896
AM
3102 int c;
3103 char *p;
252b5132
RH
3104
3105 for (c = 0; c < 256; c++)
3106 {
3882b010 3107 if (ISDIGIT (c))
252b5132
RH
3108 {
3109 digit_chars[c] = c;
3110 mnemonic_chars[c] = c;
3111 register_chars[c] = c;
3112 operand_chars[c] = c;
3113 }
3882b010 3114 else if (ISLOWER (c))
252b5132
RH
3115 {
3116 mnemonic_chars[c] = c;
3117 register_chars[c] = c;
3118 operand_chars[c] = c;
3119 }
3882b010 3120 else if (ISUPPER (c))
252b5132 3121 {
3882b010 3122 mnemonic_chars[c] = TOLOWER (c);
252b5132
RH
3123 register_chars[c] = mnemonic_chars[c];
3124 operand_chars[c] = c;
3125 }
43234a1e 3126 else if (c == '{' || c == '}')
86fa6981
L
3127 {
3128 mnemonic_chars[c] = c;
3129 operand_chars[c] = c;
3130 }
b3983e5f
JB
3131#ifdef SVR4_COMMENT_CHARS
3132 else if (c == '\\' && strchr (i386_comment_chars, '/'))
3133 operand_chars[c] = c;
3134#endif
252b5132 3135
3882b010 3136 if (ISALPHA (c) || ISDIGIT (c))
252b5132
RH
3137 identifier_chars[c] = c;
3138 else if (c >= 128)
3139 {
3140 identifier_chars[c] = c;
3141 operand_chars[c] = c;
3142 }
3143 }
3144
3145#ifdef LEX_AT
3146 identifier_chars['@'] = '@';
32137342
NC
3147#endif
3148#ifdef LEX_QM
3149 identifier_chars['?'] = '?';
3150 operand_chars['?'] = '?';
252b5132 3151#endif
252b5132 3152 digit_chars['-'] = '-';
c0f3af97 3153 mnemonic_chars['_'] = '_';
791fe849 3154 mnemonic_chars['-'] = '-';
0003779b 3155 mnemonic_chars['.'] = '.';
252b5132
RH
3156 identifier_chars['_'] = '_';
3157 identifier_chars['.'] = '.';
3158
3159 for (p = operand_special_chars; *p != '\0'; p++)
3160 operand_chars[(unsigned char) *p] = *p;
3161 }
3162
a4447b93
RH
3163 if (flag_code == CODE_64BIT)
3164 {
ca19b261
KT
3165#if defined (OBJ_COFF) && defined (TE_PE)
3166 x86_dwarf2_return_column = (OUTPUT_FLAVOR == bfd_target_coff_flavour
3167 ? 32 : 16);
3168#else
a4447b93 3169 x86_dwarf2_return_column = 16;
ca19b261 3170#endif
61ff971f 3171 x86_cie_data_alignment = -8;
a4447b93
RH
3172 }
3173 else
3174 {
3175 x86_dwarf2_return_column = 8;
3176 x86_cie_data_alignment = -4;
3177 }
e379e5f3
L
3178
3179 /* NB: FUSED_JCC_PADDING frag must have sufficient room so that it
3180 can be turned into BRANCH_PREFIX frag. */
3181 if (align_branch_prefix_size > MAX_FUSED_JCC_PADDING_SIZE)
3182 abort ();
252b5132
RH
3183}
3184
3185void
e3bb37b5 3186i386_print_statistics (FILE *file)
252b5132 3187{
629310ab
ML
3188 htab_print_statistics (file, "i386 opcode", op_hash);
3189 htab_print_statistics (file, "i386 register", reg_hash);
252b5132
RH
3190}
3191\f
252b5132
RH
3192#ifdef DEBUG386
3193
ce8a8b2f 3194/* Debugging routines for md_assemble. */
d3ce72d0 3195static void pte (insn_template *);
40fb9820 3196static void pt (i386_operand_type);
e3bb37b5
L
3197static void pe (expressionS *);
3198static void ps (symbolS *);
252b5132
RH
3199
3200static void
2c703856 3201pi (const char *line, i386_insn *x)
252b5132 3202{
09137c09 3203 unsigned int j;
252b5132
RH
3204
3205 fprintf (stdout, "%s: template ", line);
3206 pte (&x->tm);
09f131f2
JH
3207 fprintf (stdout, " address: base %s index %s scale %x\n",
3208 x->base_reg ? x->base_reg->reg_name : "none",
3209 x->index_reg ? x->index_reg->reg_name : "none",
3210 x->log2_scale_factor);
3211 fprintf (stdout, " modrm: mode %x reg %x reg/mem %x\n",
252b5132 3212 x->rm.mode, x->rm.reg, x->rm.regmem);
09f131f2
JH
3213 fprintf (stdout, " sib: base %x index %x scale %x\n",
3214 x->sib.base, x->sib.index, x->sib.scale);
3215 fprintf (stdout, " rex: 64bit %x extX %x extY %x extZ %x\n",
161a04f6
L
3216 (x->rex & REX_W) != 0,
3217 (x->rex & REX_R) != 0,
3218 (x->rex & REX_X) != 0,
3219 (x->rex & REX_B) != 0);
09137c09 3220 for (j = 0; j < x->operands; j++)
252b5132 3221 {
09137c09
SP
3222 fprintf (stdout, " #%d: ", j + 1);
3223 pt (x->types[j]);
252b5132 3224 fprintf (stdout, "\n");
bab6aec1 3225 if (x->types[j].bitfield.class == Reg
3528c362
JB
3226 || x->types[j].bitfield.class == RegMMX
3227 || x->types[j].bitfield.class == RegSIMD
dd6b8a0b 3228 || x->types[j].bitfield.class == RegMask
00cee14f 3229 || x->types[j].bitfield.class == SReg
4a5c67ed
JB
3230 || x->types[j].bitfield.class == RegCR
3231 || x->types[j].bitfield.class == RegDR
dd6b8a0b
JB
3232 || x->types[j].bitfield.class == RegTR
3233 || x->types[j].bitfield.class == RegBND)
09137c09
SP
3234 fprintf (stdout, "%s\n", x->op[j].regs->reg_name);
3235 if (operand_type_check (x->types[j], imm))
3236 pe (x->op[j].imms);
3237 if (operand_type_check (x->types[j], disp))
3238 pe (x->op[j].disps);
252b5132
RH
3239 }
3240}
3241
3242static void
d3ce72d0 3243pte (insn_template *t)
252b5132 3244{
b933fa4b 3245 static const unsigned char opc_pfx[] = { 0, 0x66, 0xf3, 0xf2 };
441f6aca
JB
3246 static const char *const opc_spc[] = {
3247 NULL, "0f", "0f38", "0f3a", NULL, NULL, NULL, NULL,
3248 "XOP08", "XOP09", "XOP0A",
3249 };
09137c09 3250 unsigned int j;
441f6aca 3251
252b5132 3252 fprintf (stdout, " %d operands ", t->operands);
441f6aca
JB
3253 if (opc_pfx[t->opcode_modifier.opcodeprefix])
3254 fprintf (stdout, "pfx %x ", opc_pfx[t->opcode_modifier.opcodeprefix]);
3255 if (opc_spc[t->opcode_modifier.opcodespace])
3256 fprintf (stdout, "space %s ", opc_spc[t->opcode_modifier.opcodespace]);
47926f60 3257 fprintf (stdout, "opcode %x ", t->base_opcode);
252b5132
RH
3258 if (t->extension_opcode != None)
3259 fprintf (stdout, "ext %x ", t->extension_opcode);
40fb9820 3260 if (t->opcode_modifier.d)
252b5132 3261 fprintf (stdout, "D");
40fb9820 3262 if (t->opcode_modifier.w)
252b5132
RH
3263 fprintf (stdout, "W");
3264 fprintf (stdout, "\n");
09137c09 3265 for (j = 0; j < t->operands; j++)
252b5132 3266 {
09137c09
SP
3267 fprintf (stdout, " #%d type ", j + 1);
3268 pt (t->operand_types[j]);
252b5132
RH
3269 fprintf (stdout, "\n");
3270 }
3271}
3272
3273static void
e3bb37b5 3274pe (expressionS *e)
252b5132 3275{
24eab124 3276 fprintf (stdout, " operation %d\n", e->X_op);
b77ad1d4
AM
3277 fprintf (stdout, " add_number %ld (%lx)\n",
3278 (long) e->X_add_number, (long) e->X_add_number);
252b5132
RH
3279 if (e->X_add_symbol)
3280 {
3281 fprintf (stdout, " add_symbol ");
3282 ps (e->X_add_symbol);
3283 fprintf (stdout, "\n");
3284 }
3285 if (e->X_op_symbol)
3286 {
3287 fprintf (stdout, " op_symbol ");
3288 ps (e->X_op_symbol);
3289 fprintf (stdout, "\n");
3290 }
3291}
3292
3293static void
e3bb37b5 3294ps (symbolS *s)
252b5132
RH
3295{
3296 fprintf (stdout, "%s type %s%s",
3297 S_GET_NAME (s),
3298 S_IS_EXTERNAL (s) ? "EXTERNAL " : "",
3299 segment_name (S_GET_SEGMENT (s)));
3300}
3301
7b81dfbb 3302static struct type_name
252b5132 3303 {
40fb9820
L
3304 i386_operand_type mask;
3305 const char *name;
252b5132 3306 }
7b81dfbb 3307const type_names[] =
252b5132 3308{
40fb9820
L
3309 { OPERAND_TYPE_REG8, "r8" },
3310 { OPERAND_TYPE_REG16, "r16" },
3311 { OPERAND_TYPE_REG32, "r32" },
3312 { OPERAND_TYPE_REG64, "r64" },
2c703856
JB
3313 { OPERAND_TYPE_ACC8, "acc8" },
3314 { OPERAND_TYPE_ACC16, "acc16" },
3315 { OPERAND_TYPE_ACC32, "acc32" },
3316 { OPERAND_TYPE_ACC64, "acc64" },
40fb9820
L
3317 { OPERAND_TYPE_IMM8, "i8" },
3318 { OPERAND_TYPE_IMM8, "i8s" },
3319 { OPERAND_TYPE_IMM16, "i16" },
3320 { OPERAND_TYPE_IMM32, "i32" },
3321 { OPERAND_TYPE_IMM32S, "i32s" },
3322 { OPERAND_TYPE_IMM64, "i64" },
3323 { OPERAND_TYPE_IMM1, "i1" },
3324 { OPERAND_TYPE_BASEINDEX, "BaseIndex" },
3325 { OPERAND_TYPE_DISP8, "d8" },
3326 { OPERAND_TYPE_DISP16, "d16" },
3327 { OPERAND_TYPE_DISP32, "d32" },
3328 { OPERAND_TYPE_DISP32S, "d32s" },
3329 { OPERAND_TYPE_DISP64, "d64" },
3330 { OPERAND_TYPE_INOUTPORTREG, "InOutPortReg" },
3331 { OPERAND_TYPE_SHIFTCOUNT, "ShiftCount" },
3332 { OPERAND_TYPE_CONTROL, "control reg" },
3333 { OPERAND_TYPE_TEST, "test reg" },
3334 { OPERAND_TYPE_DEBUG, "debug reg" },
3335 { OPERAND_TYPE_FLOATREG, "FReg" },
3336 { OPERAND_TYPE_FLOATACC, "FAcc" },
21df382b 3337 { OPERAND_TYPE_SREG, "SReg" },
40fb9820
L
3338 { OPERAND_TYPE_REGMMX, "rMMX" },
3339 { OPERAND_TYPE_REGXMM, "rXMM" },
0349dc08 3340 { OPERAND_TYPE_REGYMM, "rYMM" },
43234a1e 3341 { OPERAND_TYPE_REGZMM, "rZMM" },
260cd341 3342 { OPERAND_TYPE_REGTMM, "rTMM" },
43234a1e 3343 { OPERAND_TYPE_REGMASK, "Mask reg" },
252b5132
RH
3344};
3345
3346static void
40fb9820 3347pt (i386_operand_type t)
252b5132 3348{
40fb9820 3349 unsigned int j;
c6fb90c8 3350 i386_operand_type a;
252b5132 3351
40fb9820 3352 for (j = 0; j < ARRAY_SIZE (type_names); j++)
c6fb90c8
L
3353 {
3354 a = operand_type_and (t, type_names[j].mask);
2c703856 3355 if (operand_type_equal (&a, &type_names[j].mask))
c6fb90c8
L
3356 fprintf (stdout, "%s, ", type_names[j].name);
3357 }
252b5132
RH
3358 fflush (stdout);
3359}
3360
3361#endif /* DEBUG386 */
3362\f
252b5132 3363static bfd_reloc_code_real_type
3956db08 3364reloc (unsigned int size,
64e74474
AM
3365 int pcrel,
3366 int sign,
3367 bfd_reloc_code_real_type other)
252b5132 3368{
47926f60 3369 if (other != NO_RELOC)
3956db08 3370 {
91d6fa6a 3371 reloc_howto_type *rel;
3956db08
JB
3372
3373 if (size == 8)
3374 switch (other)
3375 {
64e74474
AM
3376 case BFD_RELOC_X86_64_GOT32:
3377 return BFD_RELOC_X86_64_GOT64;
3378 break;
553d1284
L
3379 case BFD_RELOC_X86_64_GOTPLT64:
3380 return BFD_RELOC_X86_64_GOTPLT64;
3381 break;
64e74474
AM
3382 case BFD_RELOC_X86_64_PLTOFF64:
3383 return BFD_RELOC_X86_64_PLTOFF64;
3384 break;
3385 case BFD_RELOC_X86_64_GOTPC32:
3386 other = BFD_RELOC_X86_64_GOTPC64;
3387 break;
3388 case BFD_RELOC_X86_64_GOTPCREL:
3389 other = BFD_RELOC_X86_64_GOTPCREL64;
3390 break;
3391 case BFD_RELOC_X86_64_TPOFF32:
3392 other = BFD_RELOC_X86_64_TPOFF64;
3393 break;
3394 case BFD_RELOC_X86_64_DTPOFF32:
3395 other = BFD_RELOC_X86_64_DTPOFF64;
3396 break;
3397 default:
3398 break;
3956db08 3399 }
e05278af 3400
8ce3d284 3401#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
3402 if (other == BFD_RELOC_SIZE32)
3403 {
3404 if (size == 8)
1ab668bf 3405 other = BFD_RELOC_SIZE64;
8fd4256d 3406 if (pcrel)
1ab668bf
AM
3407 {
3408 as_bad (_("there are no pc-relative size relocations"));
3409 return NO_RELOC;
3410 }
8fd4256d 3411 }
8ce3d284 3412#endif
8fd4256d 3413
e05278af 3414 /* Sign-checking 4-byte relocations in 16-/32-bit code is pointless. */
f2d8a97c 3415 if (size == 4 && (flag_code != CODE_64BIT || disallow_64bit_reloc))
e05278af
JB
3416 sign = -1;
3417
91d6fa6a
NC
3418 rel = bfd_reloc_type_lookup (stdoutput, other);
3419 if (!rel)
3956db08 3420 as_bad (_("unknown relocation (%u)"), other);
91d6fa6a 3421 else if (size != bfd_get_reloc_size (rel))
3956db08 3422 as_bad (_("%u-byte relocation cannot be applied to %u-byte field"),
91d6fa6a 3423 bfd_get_reloc_size (rel),
3956db08 3424 size);
91d6fa6a 3425 else if (pcrel && !rel->pc_relative)
3956db08 3426 as_bad (_("non-pc-relative relocation for pc-relative field"));
91d6fa6a 3427 else if ((rel->complain_on_overflow == complain_overflow_signed
3956db08 3428 && !sign)
91d6fa6a 3429 || (rel->complain_on_overflow == complain_overflow_unsigned
64e74474 3430 && sign > 0))
3956db08
JB
3431 as_bad (_("relocated field and relocation type differ in signedness"));
3432 else
3433 return other;
3434 return NO_RELOC;
3435 }
252b5132
RH
3436
3437 if (pcrel)
3438 {
3e73aa7c 3439 if (!sign)
3956db08 3440 as_bad (_("there are no unsigned pc-relative relocations"));
252b5132
RH
3441 switch (size)
3442 {
3443 case 1: return BFD_RELOC_8_PCREL;
3444 case 2: return BFD_RELOC_16_PCREL;
d258b828 3445 case 4: return BFD_RELOC_32_PCREL;
d6ab8113 3446 case 8: return BFD_RELOC_64_PCREL;
252b5132 3447 }
3956db08 3448 as_bad (_("cannot do %u byte pc-relative relocation"), size);
252b5132
RH
3449 }
3450 else
3451 {
3956db08 3452 if (sign > 0)
e5cb08ac 3453 switch (size)
3e73aa7c
JH
3454 {
3455 case 4: return BFD_RELOC_X86_64_32S;
3456 }
3457 else
3458 switch (size)
3459 {
3460 case 1: return BFD_RELOC_8;
3461 case 2: return BFD_RELOC_16;
3462 case 4: return BFD_RELOC_32;
3463 case 8: return BFD_RELOC_64;
3464 }
3956db08
JB
3465 as_bad (_("cannot do %s %u byte relocation"),
3466 sign > 0 ? "signed" : "unsigned", size);
252b5132
RH
3467 }
3468
0cc9e1d3 3469 return NO_RELOC;
252b5132
RH
3470}
3471
47926f60
KH
3472/* Here we decide which fixups can be adjusted to make them relative to
3473 the beginning of the section instead of the symbol. Basically we need
3474 to make sure that the dynamic relocations are done correctly, so in
3475 some cases we force the original symbol to be used. */
3476
252b5132 3477int
e3bb37b5 3478tc_i386_fix_adjustable (fixS *fixP ATTRIBUTE_UNUSED)
252b5132 3479{
6d249963 3480#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 3481 if (!IS_ELF)
31312f95
AM
3482 return 1;
3483
a161fe53
AM
3484 /* Don't adjust pc-relative references to merge sections in 64-bit
3485 mode. */
3486 if (use_rela_relocations
3487 && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0
3488 && fixP->fx_pcrel)
252b5132 3489 return 0;
31312f95 3490
8d01d9a9
AJ
3491 /* The x86_64 GOTPCREL are represented as 32bit PCrel relocations
3492 and changed later by validate_fix. */
3493 if (GOT_symbol && fixP->fx_subsy == GOT_symbol
3494 && fixP->fx_r_type == BFD_RELOC_32_PCREL)
3495 return 0;
3496
8fd4256d
L
3497 /* Adjust_reloc_syms doesn't know about the GOT. Need to keep symbol
3498 for size relocations. */
3499 if (fixP->fx_r_type == BFD_RELOC_SIZE32
3500 || fixP->fx_r_type == BFD_RELOC_SIZE64
3501 || fixP->fx_r_type == BFD_RELOC_386_GOTOFF
252b5132 3502 || fixP->fx_r_type == BFD_RELOC_386_GOT32
02a86693 3503 || fixP->fx_r_type == BFD_RELOC_386_GOT32X
13ae64f3
JJ
3504 || fixP->fx_r_type == BFD_RELOC_386_TLS_GD
3505 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDM
3506 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDO_32
3507 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE_32
37e55690
JJ
3508 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE
3509 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTIE
13ae64f3
JJ
3510 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE_32
3511 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE
67a4f2b7
AO
3512 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTDESC
3513 || fixP->fx_r_type == BFD_RELOC_386_TLS_DESC_CALL
3e73aa7c 3514 || fixP->fx_r_type == BFD_RELOC_X86_64_GOT32
80b3ee89 3515 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCREL
56ceb5b5
L
3516 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCRELX
3517 || fixP->fx_r_type == BFD_RELOC_X86_64_REX_GOTPCRELX
bffbf940
JJ
3518 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSGD
3519 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSLD
3520 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF32
d6ab8113 3521 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF64
bffbf940
JJ
3522 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTTPOFF
3523 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF32
d6ab8113
JB
3524 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF64
3525 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTOFF64
67a4f2b7
AO
3526 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPC32_TLSDESC
3527 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSDESC_CALL
252b5132
RH
3528 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
3529 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
3530 return 0;
31312f95 3531#endif
252b5132
RH
3532 return 1;
3533}
252b5132 3534
b4cac588 3535static int
e3bb37b5 3536intel_float_operand (const char *mnemonic)
252b5132 3537{
9306ca4a
JB
3538 /* Note that the value returned is meaningful only for opcodes with (memory)
3539 operands, hence the code here is free to improperly handle opcodes that
3540 have no operands (for better performance and smaller code). */
3541
3542 if (mnemonic[0] != 'f')
3543 return 0; /* non-math */
3544
3545 switch (mnemonic[1])
3546 {
3547 /* fclex, fdecstp, fdisi, femms, feni, fincstp, finit, fsetpm, and
3548 the fs segment override prefix not currently handled because no
3549 call path can make opcodes without operands get here */
3550 case 'i':
3551 return 2 /* integer op */;
3552 case 'l':
3553 if (mnemonic[2] == 'd' && (mnemonic[3] == 'c' || mnemonic[3] == 'e'))
3554 return 3; /* fldcw/fldenv */
3555 break;
3556 case 'n':
3557 if (mnemonic[2] != 'o' /* fnop */)
3558 return 3; /* non-waiting control op */
3559 break;
3560 case 'r':
3561 if (mnemonic[2] == 's')
3562 return 3; /* frstor/frstpm */
3563 break;
3564 case 's':
3565 if (mnemonic[2] == 'a')
3566 return 3; /* fsave */
3567 if (mnemonic[2] == 't')
3568 {
3569 switch (mnemonic[3])
3570 {
3571 case 'c': /* fstcw */
3572 case 'd': /* fstdw */
3573 case 'e': /* fstenv */
3574 case 's': /* fsts[gw] */
3575 return 3;
3576 }
3577 }
3578 break;
3579 case 'x':
3580 if (mnemonic[2] == 'r' || mnemonic[2] == 's')
3581 return 0; /* fxsave/fxrstor are not really math ops */
3582 break;
3583 }
252b5132 3584
9306ca4a 3585 return 1;
252b5132
RH
3586}
3587
9a182d04
JB
3588static INLINE void
3589install_template (const insn_template *t)
3590{
3591 unsigned int l;
3592
3593 i.tm = *t;
3594
3595 /* Note that for pseudo prefixes this produces a length of 1. But for them
3596 the length isn't interesting at all. */
3597 for (l = 1; l < 4; ++l)
3598 if (!(t->base_opcode >> (8 * l)))
3599 break;
3600
3601 i.opcode_length = l;
3602}
3603
c0f3af97
L
3604/* Build the VEX prefix. */
3605
3606static void
d3ce72d0 3607build_vex_prefix (const insn_template *t)
c0f3af97
L
3608{
3609 unsigned int register_specifier;
c0f3af97 3610 unsigned int vector_length;
03751133 3611 unsigned int w;
c0f3af97
L
3612
3613 /* Check register specifier. */
3614 if (i.vex.register_specifier)
43234a1e
L
3615 {
3616 register_specifier =
3617 ~register_number (i.vex.register_specifier) & 0xf;
3618 gas_assert ((i.vex.register_specifier->reg_flags & RegVRex) == 0);
3619 }
c0f3af97
L
3620 else
3621 register_specifier = 0xf;
3622
79f0fa25
L
3623 /* Use 2-byte VEX prefix by swapping destination and source operand
3624 if there are more than 1 register operand. */
3625 if (i.reg_operands > 1
3626 && i.vec_encoding != vex_encoding_vex3
86fa6981 3627 && i.dir_encoding == dir_encoding_default
fa99fab2 3628 && i.operands == i.reg_operands
dbbc8b7e 3629 && operand_type_equal (&i.types[0], &i.types[i.operands - 1])
441f6aca 3630 && i.tm.opcode_modifier.opcodespace == SPACE_0F
dbbc8b7e 3631 && (i.tm.opcode_modifier.load || i.tm.opcode_modifier.d)
fa99fab2
L
3632 && i.rex == REX_B)
3633 {
3634 unsigned int xchg = i.operands - 1;
3635 union i386_op temp_op;
3636 i386_operand_type temp_type;
3637
3638 temp_type = i.types[xchg];
3639 i.types[xchg] = i.types[0];
3640 i.types[0] = temp_type;
3641 temp_op = i.op[xchg];
3642 i.op[xchg] = i.op[0];
3643 i.op[0] = temp_op;
3644
9c2799c2 3645 gas_assert (i.rm.mode == 3);
fa99fab2
L
3646
3647 i.rex = REX_R;
3648 xchg = i.rm.regmem;
3649 i.rm.regmem = i.rm.reg;
3650 i.rm.reg = xchg;
3651
dbbc8b7e
JB
3652 if (i.tm.opcode_modifier.d)
3653 i.tm.base_opcode ^= (i.tm.base_opcode & 0xee) != 0x6e
3654 ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD;
3655 else /* Use the next insn. */
9a182d04 3656 install_template (&t[1]);
fa99fab2
L
3657 }
3658
79dec6b7
JB
3659 /* Use 2-byte VEX prefix by swapping commutative source operands if there
3660 are no memory operands and at least 3 register ones. */
3661 if (i.reg_operands >= 3
3662 && i.vec_encoding != vex_encoding_vex3
3663 && i.reg_operands == i.operands - i.imm_operands
3664 && i.tm.opcode_modifier.vex
3665 && i.tm.opcode_modifier.commutative
3666 && (i.tm.opcode_modifier.sse2avx || optimize > 1)
3667 && i.rex == REX_B
3668 && i.vex.register_specifier
3669 && !(i.vex.register_specifier->reg_flags & RegRex))
3670 {
3671 unsigned int xchg = i.operands - i.reg_operands;
3672 union i386_op temp_op;
3673 i386_operand_type temp_type;
3674
441f6aca 3675 gas_assert (i.tm.opcode_modifier.opcodespace == SPACE_0F);
79dec6b7
JB
3676 gas_assert (!i.tm.opcode_modifier.sae);
3677 gas_assert (operand_type_equal (&i.types[i.operands - 2],
3678 &i.types[i.operands - 3]));
3679 gas_assert (i.rm.mode == 3);
3680
3681 temp_type = i.types[xchg];
3682 i.types[xchg] = i.types[xchg + 1];
3683 i.types[xchg + 1] = temp_type;
3684 temp_op = i.op[xchg];
3685 i.op[xchg] = i.op[xchg + 1];
3686 i.op[xchg + 1] = temp_op;
3687
3688 i.rex = 0;
3689 xchg = i.rm.regmem | 8;
3690 i.rm.regmem = ~register_specifier & 0xf;
3691 gas_assert (!(i.rm.regmem & 8));
3692 i.vex.register_specifier += xchg - i.rm.regmem;
3693 register_specifier = ~xchg & 0xf;
3694 }
3695
539f890d
L
3696 if (i.tm.opcode_modifier.vex == VEXScalar)
3697 vector_length = avxscalar;
10c17abd
JB
3698 else if (i.tm.opcode_modifier.vex == VEX256)
3699 vector_length = 1;
539f890d 3700 else
10c17abd 3701 {
56522fc5 3702 unsigned int op;
10c17abd 3703
c7213af9
L
3704 /* Determine vector length from the last multi-length vector
3705 operand. */
10c17abd 3706 vector_length = 0;
56522fc5 3707 for (op = t->operands; op--;)
10c17abd
JB
3708 if (t->operand_types[op].bitfield.xmmword
3709 && t->operand_types[op].bitfield.ymmword
3710 && i.types[op].bitfield.ymmword)
3711 {
3712 vector_length = 1;
3713 break;
3714 }
3715 }
c0f3af97 3716
03751133
L
3717 /* Check the REX.W bit and VEXW. */
3718 if (i.tm.opcode_modifier.vexw == VEXWIG)
3719 w = (vexwig == vexw1 || (i.rex & REX_W)) ? 1 : 0;
3720 else if (i.tm.opcode_modifier.vexw)
3721 w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0;
3722 else
931d03b7 3723 w = (flag_code == CODE_64BIT ? i.rex & REX_W : vexwig == vexw1) ? 1 : 0;
03751133 3724
c0f3af97 3725 /* Use 2-byte VEX prefix if possible. */
03751133
L
3726 if (w == 0
3727 && i.vec_encoding != vex_encoding_vex3
441f6aca 3728 && i.tm.opcode_modifier.opcodespace == SPACE_0F
c0f3af97
L
3729 && (i.rex & (REX_W | REX_X | REX_B)) == 0)
3730 {
3731 /* 2-byte VEX prefix. */
3732 unsigned int r;
3733
3734 i.vex.length = 2;
3735 i.vex.bytes[0] = 0xc5;
3736
3737 /* Check the REX.R bit. */
3738 r = (i.rex & REX_R) ? 0 : 1;
3739 i.vex.bytes[1] = (r << 7
3740 | register_specifier << 3
3741 | vector_length << 2
35648716 3742 | i.tm.opcode_modifier.opcodeprefix);
c0f3af97
L
3743 }
3744 else
3745 {
3746 /* 3-byte VEX prefix. */
f88c9eb0 3747 i.vex.length = 3;
f88c9eb0 3748
441f6aca 3749 switch (i.tm.opcode_modifier.opcodespace)
5dd85c99 3750 {
441f6aca
JB
3751 case SPACE_0F:
3752 case SPACE_0F38:
3753 case SPACE_0F3A:
80de6e00 3754 i.vex.bytes[0] = 0xc4;
7f399153 3755 break;
441f6aca
JB
3756 case SPACE_XOP08:
3757 case SPACE_XOP09:
3758 case SPACE_XOP0A:
f88c9eb0 3759 i.vex.bytes[0] = 0x8f;
7f399153
L
3760 break;
3761 default:
3762 abort ();
f88c9eb0 3763 }
c0f3af97 3764
c0f3af97
L
3765 /* The high 3 bits of the second VEX byte are 1's compliment
3766 of RXB bits from REX. */
441f6aca 3767 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | i.tm.opcode_modifier.opcodespace;
c0f3af97 3768
c0f3af97
L
3769 i.vex.bytes[2] = (w << 7
3770 | register_specifier << 3
3771 | vector_length << 2
35648716 3772 | i.tm.opcode_modifier.opcodeprefix);
c0f3af97
L
3773 }
3774}
3775
e771e7c9
JB
3776static INLINE bfd_boolean
3777is_evex_encoding (const insn_template *t)
3778{
7091c612 3779 return t->opcode_modifier.evex || t->opcode_modifier.disp8memshift
e771e7c9 3780 || t->opcode_modifier.broadcast || t->opcode_modifier.masking
a80195f1 3781 || t->opcode_modifier.sae;
e771e7c9
JB
3782}
3783
7a8655d2
JB
3784static INLINE bfd_boolean
3785is_any_vex_encoding (const insn_template *t)
3786{
7b47a312 3787 return t->opcode_modifier.vex || is_evex_encoding (t);
7a8655d2
JB
3788}
3789
43234a1e
L
3790/* Build the EVEX prefix. */
3791
3792static void
3793build_evex_prefix (void)
3794{
35648716 3795 unsigned int register_specifier, w;
43234a1e
L
3796 rex_byte vrex_used = 0;
3797
3798 /* Check register specifier. */
3799 if (i.vex.register_specifier)
3800 {
3801 gas_assert ((i.vrex & REX_X) == 0);
3802
3803 register_specifier = i.vex.register_specifier->reg_num;
3804 if ((i.vex.register_specifier->reg_flags & RegRex))
3805 register_specifier += 8;
3806 /* The upper 16 registers are encoded in the fourth byte of the
3807 EVEX prefix. */
3808 if (!(i.vex.register_specifier->reg_flags & RegVRex))
3809 i.vex.bytes[3] = 0x8;
3810 register_specifier = ~register_specifier & 0xf;
3811 }
3812 else
3813 {
3814 register_specifier = 0xf;
3815
3816 /* Encode upper 16 vector index register in the fourth byte of
3817 the EVEX prefix. */
3818 if (!(i.vrex & REX_X))
3819 i.vex.bytes[3] = 0x8;
3820 else
3821 vrex_used |= REX_X;
3822 }
3823
43234a1e
L
3824 /* 4 byte EVEX prefix. */
3825 i.vex.length = 4;
3826 i.vex.bytes[0] = 0x62;
3827
43234a1e
L
3828 /* The high 3 bits of the second EVEX byte are 1's compliment of RXB
3829 bits from REX. */
441f6aca
JB
3830 gas_assert (i.tm.opcode_modifier.opcodespace >= SPACE_0F);
3831 gas_assert (i.tm.opcode_modifier.opcodespace <= SPACE_0F3A);
3832 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | i.tm.opcode_modifier.opcodespace;
43234a1e
L
3833
3834 /* The fifth bit of the second EVEX byte is 1's compliment of the
3835 REX_R bit in VREX. */
3836 if (!(i.vrex & REX_R))
3837 i.vex.bytes[1] |= 0x10;
3838 else
3839 vrex_used |= REX_R;
3840
3841 if ((i.reg_operands + i.imm_operands) == i.operands)
3842 {
3843 /* When all operands are registers, the REX_X bit in REX is not
3844 used. We reuse it to encode the upper 16 registers, which is
3845 indicated by the REX_B bit in VREX. The REX_X bit is encoded
3846 as 1's compliment. */
3847 if ((i.vrex & REX_B))
3848 {
3849 vrex_used |= REX_B;
3850 i.vex.bytes[1] &= ~0x40;
3851 }
3852 }
3853
3854 /* EVEX instructions shouldn't need the REX prefix. */
3855 i.vrex &= ~vrex_used;
3856 gas_assert (i.vrex == 0);
3857
6865c043
L
3858 /* Check the REX.W bit and VEXW. */
3859 if (i.tm.opcode_modifier.vexw == VEXWIG)
3860 w = (evexwig == evexw1 || (i.rex & REX_W)) ? 1 : 0;
3861 else if (i.tm.opcode_modifier.vexw)
3862 w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0;
3863 else
931d03b7 3864 w = (flag_code == CODE_64BIT ? i.rex & REX_W : evexwig == evexw1) ? 1 : 0;
43234a1e 3865
43234a1e 3866 /* The third byte of the EVEX prefix. */
35648716
JB
3867 i.vex.bytes[2] = ((w << 7)
3868 | (register_specifier << 3)
3869 | 4 /* Encode the U bit. */
3870 | i.tm.opcode_modifier.opcodeprefix);
43234a1e
L
3871
3872 /* The fourth byte of the EVEX prefix. */
3873 /* The zeroing-masking bit. */
3874 if (i.mask && i.mask->zeroing)
3875 i.vex.bytes[3] |= 0x80;
3876
3877 /* Don't always set the broadcast bit if there is no RC. */
3878 if (!i.rounding)
3879 {
3880 /* Encode the vector length. */
3881 unsigned int vec_length;
3882
e771e7c9
JB
3883 if (!i.tm.opcode_modifier.evex
3884 || i.tm.opcode_modifier.evex == EVEXDYN)
3885 {
56522fc5 3886 unsigned int op;
e771e7c9 3887
c7213af9
L
3888 /* Determine vector length from the last multi-length vector
3889 operand. */
56522fc5 3890 for (op = i.operands; op--;)
e771e7c9
JB
3891 if (i.tm.operand_types[op].bitfield.xmmword
3892 + i.tm.operand_types[op].bitfield.ymmword
3893 + i.tm.operand_types[op].bitfield.zmmword > 1)
3894 {
3895 if (i.types[op].bitfield.zmmword)
c7213af9
L
3896 {
3897 i.tm.opcode_modifier.evex = EVEX512;
3898 break;
3899 }
e771e7c9 3900 else if (i.types[op].bitfield.ymmword)
c7213af9
L
3901 {
3902 i.tm.opcode_modifier.evex = EVEX256;
3903 break;
3904 }
e771e7c9 3905 else if (i.types[op].bitfield.xmmword)
c7213af9
L
3906 {
3907 i.tm.opcode_modifier.evex = EVEX128;
3908 break;
3909 }
625cbd7a
JB
3910 else if (i.broadcast && (int) op == i.broadcast->operand)
3911 {
4a1b91ea 3912 switch (i.broadcast->bytes)
625cbd7a
JB
3913 {
3914 case 64:
3915 i.tm.opcode_modifier.evex = EVEX512;
3916 break;
3917 case 32:
3918 i.tm.opcode_modifier.evex = EVEX256;
3919 break;
3920 case 16:
3921 i.tm.opcode_modifier.evex = EVEX128;
3922 break;
3923 default:
c7213af9 3924 abort ();
625cbd7a 3925 }
c7213af9 3926 break;
625cbd7a 3927 }
e771e7c9 3928 }
c7213af9 3929
56522fc5 3930 if (op >= MAX_OPERANDS)
c7213af9 3931 abort ();
e771e7c9
JB
3932 }
3933
43234a1e
L
3934 switch (i.tm.opcode_modifier.evex)
3935 {
3936 case EVEXLIG: /* LL' is ignored */
3937 vec_length = evexlig << 5;
3938 break;
3939 case EVEX128:
3940 vec_length = 0 << 5;
3941 break;
3942 case EVEX256:
3943 vec_length = 1 << 5;
3944 break;
3945 case EVEX512:
3946 vec_length = 2 << 5;
3947 break;
3948 default:
3949 abort ();
3950 break;
3951 }
3952 i.vex.bytes[3] |= vec_length;
3953 /* Encode the broadcast bit. */
3954 if (i.broadcast)
3955 i.vex.bytes[3] |= 0x10;
3956 }
3957 else
3958 {
3959 if (i.rounding->type != saeonly)
3960 i.vex.bytes[3] |= 0x10 | (i.rounding->type << 5);
3961 else
d3d3c6db 3962 i.vex.bytes[3] |= 0x10 | (evexrcig << 5);
43234a1e
L
3963 }
3964
3965 if (i.mask && i.mask->mask)
3966 i.vex.bytes[3] |= i.mask->mask->reg_num;
3967}
3968
65da13b5
L
3969static void
3970process_immext (void)
3971{
3972 expressionS *exp;
3973
c0f3af97 3974 /* These AMD 3DNow! and SSE2 instructions have an opcode suffix
65da13b5
L
3975 which is coded in the same place as an 8-bit immediate field
3976 would be. Here we fake an 8-bit immediate operand from the
3977 opcode suffix stored in tm.extension_opcode.
3978
c1e679ec 3979 AVX instructions also use this encoding, for some of
c0f3af97 3980 3 argument instructions. */
65da13b5 3981
43234a1e 3982 gas_assert (i.imm_operands <= 1
7ab9ffdd 3983 && (i.operands <= 2
7a8655d2 3984 || (is_any_vex_encoding (&i.tm)
7ab9ffdd 3985 && i.operands <= 4)));
65da13b5
L
3986
3987 exp = &im_expressions[i.imm_operands++];
3988 i.op[i.operands].imms = exp;
3989 i.types[i.operands] = imm8;
3990 i.operands++;
3991 exp->X_op = O_constant;
3992 exp->X_add_number = i.tm.extension_opcode;
3993 i.tm.extension_opcode = None;
3994}
3995
42164a71
L
3996
3997static int
3998check_hle (void)
3999{
742732c7 4000 switch (i.tm.opcode_modifier.prefixok)
42164a71
L
4001 {
4002 default:
4003 abort ();
742732c7
JB
4004 case PrefixLock:
4005 case PrefixNone:
4006 case PrefixNoTrack:
4007 case PrefixRep:
165de32a
L
4008 as_bad (_("invalid instruction `%s' after `%s'"),
4009 i.tm.name, i.hle_prefix);
42164a71 4010 return 0;
742732c7 4011 case PrefixHLELock:
42164a71
L
4012 if (i.prefix[LOCK_PREFIX])
4013 return 1;
165de32a 4014 as_bad (_("missing `lock' with `%s'"), i.hle_prefix);
42164a71 4015 return 0;
742732c7 4016 case PrefixHLEAny:
42164a71 4017 return 1;
742732c7 4018 case PrefixHLERelease:
42164a71
L
4019 if (i.prefix[HLE_PREFIX] != XRELEASE_PREFIX_OPCODE)
4020 {
4021 as_bad (_("instruction `%s' after `xacquire' not allowed"),
4022 i.tm.name);
4023 return 0;
4024 }
8dc0818e 4025 if (i.mem_operands == 0 || !(i.flags[i.operands - 1] & Operand_Mem))
42164a71
L
4026 {
4027 as_bad (_("memory destination needed for instruction `%s'"
4028 " after `xrelease'"), i.tm.name);
4029 return 0;
4030 }
4031 return 1;
4032 }
4033}
4034
b6f8c7c4
L
4035/* Try the shortest encoding by shortening operand size. */
4036
4037static void
4038optimize_encoding (void)
4039{
a0a1771e 4040 unsigned int j;
b6f8c7c4
L
4041
4042 if (optimize_for_space
72aea328 4043 && !is_any_vex_encoding (&i.tm)
b6f8c7c4
L
4044 && i.reg_operands == 1
4045 && i.imm_operands == 1
4046 && !i.types[1].bitfield.byte
4047 && i.op[0].imms->X_op == O_constant
4048 && fits_in_imm7 (i.op[0].imms->X_add_number)
72aea328 4049 && (i.tm.base_opcode == 0xa8
b6f8c7c4
L
4050 || (i.tm.base_opcode == 0xf6
4051 && i.tm.extension_opcode == 0x0)))
4052 {
4053 /* Optimize: -Os:
4054 test $imm7, %r64/%r32/%r16 -> test $imm7, %r8
4055 */
4056 unsigned int base_regnum = i.op[1].regs->reg_num;
4057 if (flag_code == CODE_64BIT || base_regnum < 4)
4058 {
4059 i.types[1].bitfield.byte = 1;
4060 /* Ignore the suffix. */
4061 i.suffix = 0;
7697afb6
JB
4062 /* Convert to byte registers. */
4063 if (i.types[1].bitfield.word)
4064 j = 16;
4065 else if (i.types[1].bitfield.dword)
4066 j = 32;
4067 else
4068 j = 48;
4069 if (!(i.op[1].regs->reg_flags & RegRex) && base_regnum < 4)
4070 j += 8;
4071 i.op[1].regs -= j;
b6f8c7c4
L
4072 }
4073 }
4074 else if (flag_code == CODE_64BIT
72aea328 4075 && !is_any_vex_encoding (&i.tm)
d3d50934
L
4076 && ((i.types[1].bitfield.qword
4077 && i.reg_operands == 1
b6f8c7c4
L
4078 && i.imm_operands == 1
4079 && i.op[0].imms->X_op == O_constant
507916b8 4080 && ((i.tm.base_opcode == 0xb8
b6f8c7c4
L
4081 && i.tm.extension_opcode == None
4082 && fits_in_unsigned_long (i.op[0].imms->X_add_number))
4083 || (fits_in_imm31 (i.op[0].imms->X_add_number)
72aea328
JB
4084 && ((i.tm.base_opcode == 0x24
4085 || i.tm.base_opcode == 0xa8)
b6f8c7c4
L
4086 || (i.tm.base_opcode == 0x80
4087 && i.tm.extension_opcode == 0x4)
4088 || ((i.tm.base_opcode == 0xf6
507916b8 4089 || (i.tm.base_opcode | 1) == 0xc7)
b8364fa7
JB
4090 && i.tm.extension_opcode == 0x0)))
4091 || (fits_in_imm7 (i.op[0].imms->X_add_number)
4092 && i.tm.base_opcode == 0x83
4093 && i.tm.extension_opcode == 0x4)))
d3d50934
L
4094 || (i.types[0].bitfield.qword
4095 && ((i.reg_operands == 2
4096 && i.op[0].regs == i.op[1].regs
72aea328
JB
4097 && (i.tm.base_opcode == 0x30
4098 || i.tm.base_opcode == 0x28))
d3d50934
L
4099 || (i.reg_operands == 1
4100 && i.operands == 1
72aea328 4101 && i.tm.base_opcode == 0x30)))))
b6f8c7c4
L
4102 {
4103 /* Optimize: -O:
4104 andq $imm31, %r64 -> andl $imm31, %r32
b8364fa7 4105 andq $imm7, %r64 -> andl $imm7, %r32
b6f8c7c4
L
4106 testq $imm31, %r64 -> testl $imm31, %r32
4107 xorq %r64, %r64 -> xorl %r32, %r32
4108 subq %r64, %r64 -> subl %r32, %r32
4109 movq $imm31, %r64 -> movl $imm31, %r32
4110 movq $imm32, %r64 -> movl $imm32, %r32
4111 */
4112 i.tm.opcode_modifier.norex64 = 1;
507916b8 4113 if (i.tm.base_opcode == 0xb8 || (i.tm.base_opcode | 1) == 0xc7)
b6f8c7c4
L
4114 {
4115 /* Handle
4116 movq $imm31, %r64 -> movl $imm31, %r32
4117 movq $imm32, %r64 -> movl $imm32, %r32
4118 */
4119 i.tm.operand_types[0].bitfield.imm32 = 1;
4120 i.tm.operand_types[0].bitfield.imm32s = 0;
4121 i.tm.operand_types[0].bitfield.imm64 = 0;
4122 i.types[0].bitfield.imm32 = 1;
4123 i.types[0].bitfield.imm32s = 0;
4124 i.types[0].bitfield.imm64 = 0;
4125 i.types[1].bitfield.dword = 1;
4126 i.types[1].bitfield.qword = 0;
507916b8 4127 if ((i.tm.base_opcode | 1) == 0xc7)
b6f8c7c4
L
4128 {
4129 /* Handle
4130 movq $imm31, %r64 -> movl $imm31, %r32
4131 */
507916b8 4132 i.tm.base_opcode = 0xb8;
b6f8c7c4 4133 i.tm.extension_opcode = None;
507916b8 4134 i.tm.opcode_modifier.w = 0;
b6f8c7c4
L
4135 i.tm.opcode_modifier.modrm = 0;
4136 }
4137 }
4138 }
5641ec01
JB
4139 else if (optimize > 1
4140 && !optimize_for_space
72aea328 4141 && !is_any_vex_encoding (&i.tm)
5641ec01
JB
4142 && i.reg_operands == 2
4143 && i.op[0].regs == i.op[1].regs
4144 && ((i.tm.base_opcode & ~(Opcode_D | 1)) == 0x8
4145 || (i.tm.base_opcode & ~(Opcode_D | 1)) == 0x20)
4146 && (flag_code != CODE_64BIT || !i.types[0].bitfield.dword))
4147 {
4148 /* Optimize: -O2:
4149 andb %rN, %rN -> testb %rN, %rN
4150 andw %rN, %rN -> testw %rN, %rN
4151 andq %rN, %rN -> testq %rN, %rN
4152 orb %rN, %rN -> testb %rN, %rN
4153 orw %rN, %rN -> testw %rN, %rN
4154 orq %rN, %rN -> testq %rN, %rN
4155
4156 and outside of 64-bit mode
4157
4158 andl %rN, %rN -> testl %rN, %rN
4159 orl %rN, %rN -> testl %rN, %rN
4160 */
4161 i.tm.base_opcode = 0x84 | (i.tm.base_opcode & 1);
4162 }
99112332 4163 else if (i.reg_operands == 3
b6f8c7c4
L
4164 && i.op[0].regs == i.op[1].regs
4165 && !i.types[2].bitfield.xmmword
4166 && (i.tm.opcode_modifier.vex
7a69eac3 4167 || ((!i.mask || i.mask->zeroing)
b6f8c7c4 4168 && !i.rounding
e771e7c9 4169 && is_evex_encoding (&i.tm)
80c34c38 4170 && (i.vec_encoding != vex_encoding_evex
dd22218c 4171 || cpu_arch_isa_flags.bitfield.cpuavx512vl
80c34c38 4172 || i.tm.cpu_flags.bitfield.cpuavx512vl
7091c612 4173 || (i.tm.operand_types[2].bitfield.zmmword
dd22218c 4174 && i.types[2].bitfield.ymmword))))
b6f8c7c4 4175 && ((i.tm.base_opcode == 0x55
b6f8c7c4 4176 || i.tm.base_opcode == 0x57
35648716
JB
4177 || i.tm.base_opcode == 0xdf
4178 || i.tm.base_opcode == 0xef
4179 || i.tm.base_opcode == 0xf8
4180 || i.tm.base_opcode == 0xf9
4181 || i.tm.base_opcode == 0xfa
4182 || i.tm.base_opcode == 0xfb
1424ad86 4183 || i.tm.base_opcode == 0x42
35648716 4184 || i.tm.base_opcode == 0x47)
b6f8c7c4
L
4185 && i.tm.extension_opcode == None))
4186 {
99112332 4187 /* Optimize: -O1:
8305403a
L
4188 VOP, one of vandnps, vandnpd, vxorps, vxorpd, vpsubb, vpsubd,
4189 vpsubq and vpsubw:
b6f8c7c4
L
4190 EVEX VOP %zmmM, %zmmM, %zmmN
4191 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4192 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4193 EVEX VOP %ymmM, %ymmM, %ymmN
4194 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4195 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4196 VEX VOP %ymmM, %ymmM, %ymmN
4197 -> VEX VOP %xmmM, %xmmM, %xmmN
4198 VOP, one of vpandn and vpxor:
4199 VEX VOP %ymmM, %ymmM, %ymmN
4200 -> VEX VOP %xmmM, %xmmM, %xmmN
4201 VOP, one of vpandnd and vpandnq:
4202 EVEX VOP %zmmM, %zmmM, %zmmN
4203 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4204 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4205 EVEX VOP %ymmM, %ymmM, %ymmN
4206 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4207 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4208 VOP, one of vpxord and vpxorq:
4209 EVEX VOP %zmmM, %zmmM, %zmmN
4210 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4211 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4212 EVEX VOP %ymmM, %ymmM, %ymmN
4213 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4214 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
1424ad86
JB
4215 VOP, one of kxord and kxorq:
4216 VEX VOP %kM, %kM, %kN
4217 -> VEX kxorw %kM, %kM, %kN
4218 VOP, one of kandnd and kandnq:
4219 VEX VOP %kM, %kM, %kN
4220 -> VEX kandnw %kM, %kM, %kN
b6f8c7c4 4221 */
e771e7c9 4222 if (is_evex_encoding (&i.tm))
b6f8c7c4 4223 {
7b1d7ca1 4224 if (i.vec_encoding != vex_encoding_evex)
b6f8c7c4
L
4225 {
4226 i.tm.opcode_modifier.vex = VEX128;
4227 i.tm.opcode_modifier.vexw = VEXW0;
4228 i.tm.opcode_modifier.evex = 0;
4229 }
7b1d7ca1 4230 else if (optimize > 1)
dd22218c
L
4231 i.tm.opcode_modifier.evex = EVEX128;
4232 else
4233 return;
b6f8c7c4 4234 }
f74a6307 4235 else if (i.tm.operand_types[0].bitfield.class == RegMask)
1424ad86 4236 {
35648716 4237 i.tm.opcode_modifier.opcodeprefix = PREFIX_NONE;
1424ad86
JB
4238 i.tm.opcode_modifier.vexw = VEXW0;
4239 }
b6f8c7c4
L
4240 else
4241 i.tm.opcode_modifier.vex = VEX128;
4242
4243 if (i.tm.opcode_modifier.vex)
4244 for (j = 0; j < 3; j++)
4245 {
4246 i.types[j].bitfield.xmmword = 1;
4247 i.types[j].bitfield.ymmword = 0;
4248 }
4249 }
392a5972 4250 else if (i.vec_encoding != vex_encoding_evex
97ed31ae 4251 && !i.types[0].bitfield.zmmword
392a5972 4252 && !i.types[1].bitfield.zmmword
97ed31ae 4253 && !i.mask
a0a1771e 4254 && !i.broadcast
97ed31ae 4255 && is_evex_encoding (&i.tm)
35648716
JB
4256 && ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0x6f
4257 || (i.tm.base_opcode & ~4) == 0xdb
4258 || (i.tm.base_opcode & ~4) == 0xeb)
97ed31ae
L
4259 && i.tm.extension_opcode == None)
4260 {
4261 /* Optimize: -O1:
4262 VOP, one of vmovdqa32, vmovdqa64, vmovdqu8, vmovdqu16,
4263 vmovdqu32 and vmovdqu64:
4264 EVEX VOP %xmmM, %xmmN
4265 -> VEX vmovdqa|vmovdqu %xmmM, %xmmN (M and N < 16)
4266 EVEX VOP %ymmM, %ymmN
4267 -> VEX vmovdqa|vmovdqu %ymmM, %ymmN (M and N < 16)
4268 EVEX VOP %xmmM, mem
4269 -> VEX vmovdqa|vmovdqu %xmmM, mem (M < 16)
4270 EVEX VOP %ymmM, mem
4271 -> VEX vmovdqa|vmovdqu %ymmM, mem (M < 16)
4272 EVEX VOP mem, %xmmN
4273 -> VEX mvmovdqa|vmovdquem, %xmmN (N < 16)
4274 EVEX VOP mem, %ymmN
4275 -> VEX vmovdqa|vmovdqu mem, %ymmN (N < 16)
a0a1771e
JB
4276 VOP, one of vpand, vpandn, vpor, vpxor:
4277 EVEX VOP{d,q} %xmmL, %xmmM, %xmmN
4278 -> VEX VOP %xmmL, %xmmM, %xmmN (L, M, and N < 16)
4279 EVEX VOP{d,q} %ymmL, %ymmM, %ymmN
4280 -> VEX VOP %ymmL, %ymmM, %ymmN (L, M, and N < 16)
4281 EVEX VOP{d,q} mem, %xmmM, %xmmN
4282 -> VEX VOP mem, %xmmM, %xmmN (M and N < 16)
4283 EVEX VOP{d,q} mem, %ymmM, %ymmN
4284 -> VEX VOP mem, %ymmM, %ymmN (M and N < 16)
97ed31ae 4285 */
a0a1771e 4286 for (j = 0; j < i.operands; j++)
392a5972
L
4287 if (operand_type_check (i.types[j], disp)
4288 && i.op[j].disps->X_op == O_constant)
4289 {
4290 /* Since the VEX prefix has 2 or 3 bytes, the EVEX prefix
4291 has 4 bytes, EVEX Disp8 has 1 byte and VEX Disp32 has 4
4292 bytes, we choose EVEX Disp8 over VEX Disp32. */
4293 int evex_disp8, vex_disp8;
4294 unsigned int memshift = i.memshift;
4295 offsetT n = i.op[j].disps->X_add_number;
4296
4297 evex_disp8 = fits_in_disp8 (n);
4298 i.memshift = 0;
4299 vex_disp8 = fits_in_disp8 (n);
4300 if (evex_disp8 != vex_disp8)
4301 {
4302 i.memshift = memshift;
4303 return;
4304 }
4305
4306 i.types[j].bitfield.disp8 = vex_disp8;
4307 break;
4308 }
35648716
JB
4309 if ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0x6f
4310 && i.tm.opcode_modifier.opcodeprefix == PREFIX_0XF2)
4311 i.tm.opcode_modifier.opcodeprefix = PREFIX_0XF3;
97ed31ae
L
4312 i.tm.opcode_modifier.vex
4313 = i.types[0].bitfield.ymmword ? VEX256 : VEX128;
4314 i.tm.opcode_modifier.vexw = VEXW0;
79dec6b7 4315 /* VPAND, VPOR, and VPXOR are commutative. */
35648716 4316 if (i.reg_operands == 3 && i.tm.base_opcode != 0xdf)
79dec6b7 4317 i.tm.opcode_modifier.commutative = 1;
97ed31ae
L
4318 i.tm.opcode_modifier.evex = 0;
4319 i.tm.opcode_modifier.masking = 0;
a0a1771e 4320 i.tm.opcode_modifier.broadcast = 0;
97ed31ae
L
4321 i.tm.opcode_modifier.disp8memshift = 0;
4322 i.memshift = 0;
a0a1771e
JB
4323 if (j < i.operands)
4324 i.types[j].bitfield.disp8
4325 = fits_in_disp8 (i.op[j].disps->X_add_number);
97ed31ae 4326 }
b6f8c7c4
L
4327}
4328
ae531041
L
4329/* Return non-zero for load instruction. */
4330
4331static int
4332load_insn_p (void)
4333{
4334 unsigned int dest;
4335 int any_vex_p = is_any_vex_encoding (&i.tm);
4336 unsigned int base_opcode = i.tm.base_opcode | 1;
4337
4338 if (!any_vex_p)
4339 {
a09f656b 4340 /* Anysize insns: lea, invlpg, clflush, prefetchnta, prefetcht0,
4341 prefetcht1, prefetcht2, prefetchtw, bndmk, bndcl, bndcu, bndcn,
4342 bndstx, bndldx, prefetchwt1, clflushopt, clwb, cldemote. */
4343 if (i.tm.opcode_modifier.anysize)
ae531041
L
4344 return 0;
4345
a09f656b 4346 /* pop, popf, popa. */
4347 if (strcmp (i.tm.name, "pop") == 0
4348 || i.tm.base_opcode == 0x9d
4349 || i.tm.base_opcode == 0x61)
ae531041
L
4350 return 1;
4351
4352 /* movs, cmps, lods, scas. */
4353 if ((i.tm.base_opcode | 0xb) == 0xaf)
4354 return 1;
4355
a09f656b 4356 /* outs, xlatb. */
4357 if (base_opcode == 0x6f
4358 || i.tm.base_opcode == 0xd7)
ae531041 4359 return 1;
a09f656b 4360 /* NB: For AMD-specific insns with implicit memory operands,
4361 they're intentionally not covered. */
ae531041
L
4362 }
4363
4364 /* No memory operand. */
4365 if (!i.mem_operands)
4366 return 0;
4367
4368 if (any_vex_p)
4369 {
4370 /* vldmxcsr. */
4371 if (i.tm.base_opcode == 0xae
4372 && i.tm.opcode_modifier.vex
441f6aca 4373 && i.tm.opcode_modifier.opcodespace == SPACE_0F
35648716 4374 && i.tm.opcode_modifier.opcodeprefix == PREFIX_NONE
ae531041
L
4375 && i.tm.extension_opcode == 2)
4376 return 1;
4377 }
4378 else
4379 {
4380 /* test, not, neg, mul, imul, div, idiv. */
4381 if ((i.tm.base_opcode == 0xf6 || i.tm.base_opcode == 0xf7)
4382 && i.tm.extension_opcode != 1)
4383 return 1;
4384
4385 /* inc, dec. */
4386 if (base_opcode == 0xff && i.tm.extension_opcode <= 1)
4387 return 1;
4388
4389 /* add, or, adc, sbb, and, sub, xor, cmp. */
4390 if (i.tm.base_opcode >= 0x80 && i.tm.base_opcode <= 0x83)
4391 return 1;
4392
4393 /* bt, bts, btr, btc. */
4394 if (i.tm.base_opcode == 0xfba
4395 && (i.tm.extension_opcode >= 4 && i.tm.extension_opcode <= 7))
4396 return 1;
4397
4398 /* rol, ror, rcl, rcr, shl/sal, shr, sar. */
4399 if ((base_opcode == 0xc1
4400 || (i.tm.base_opcode >= 0xd0 && i.tm.base_opcode <= 0xd3))
4401 && i.tm.extension_opcode != 6)
4402 return 1;
4403
70e95837 4404 /* cmpxchg8b, cmpxchg16b, xrstors, vmptrld. */
ae531041 4405 if (i.tm.base_opcode == 0xfc7
70e95837
JB
4406 && i.tm.opcode_modifier.opcodeprefix == PREFIX_NONE
4407 && (i.tm.extension_opcode == 1 || i.tm.extension_opcode == 3
4408 || i.tm.extension_opcode == 6))
ae531041
L
4409 return 1;
4410
4411 /* fxrstor, ldmxcsr, xrstor. */
4412 if (i.tm.base_opcode == 0xfae
4413 && (i.tm.extension_opcode == 1
4414 || i.tm.extension_opcode == 2
4415 || i.tm.extension_opcode == 5))
4416 return 1;
4417
4418 /* lgdt, lidt, lmsw. */
4419 if (i.tm.base_opcode == 0xf01
4420 && (i.tm.extension_opcode == 2
4421 || i.tm.extension_opcode == 3
4422 || i.tm.extension_opcode == 6))
4423 return 1;
4424
ae531041
L
4425 /* Check for x87 instructions. */
4426 if (i.tm.base_opcode >= 0xd8 && i.tm.base_opcode <= 0xdf)
4427 {
4428 /* Skip fst, fstp, fstenv, fstcw. */
4429 if (i.tm.base_opcode == 0xd9
4430 && (i.tm.extension_opcode == 2
4431 || i.tm.extension_opcode == 3
4432 || i.tm.extension_opcode == 6
4433 || i.tm.extension_opcode == 7))
4434 return 0;
4435
4436 /* Skip fisttp, fist, fistp, fstp. */
4437 if (i.tm.base_opcode == 0xdb
4438 && (i.tm.extension_opcode == 1
4439 || i.tm.extension_opcode == 2
4440 || i.tm.extension_opcode == 3
4441 || i.tm.extension_opcode == 7))
4442 return 0;
4443
4444 /* Skip fisttp, fst, fstp, fsave, fstsw. */
4445 if (i.tm.base_opcode == 0xdd
4446 && (i.tm.extension_opcode == 1
4447 || i.tm.extension_opcode == 2
4448 || i.tm.extension_opcode == 3
4449 || i.tm.extension_opcode == 6
4450 || i.tm.extension_opcode == 7))
4451 return 0;
4452
4453 /* Skip fisttp, fist, fistp, fbstp, fistp. */
4454 if (i.tm.base_opcode == 0xdf
4455 && (i.tm.extension_opcode == 1
4456 || i.tm.extension_opcode == 2
4457 || i.tm.extension_opcode == 3
4458 || i.tm.extension_opcode == 6
4459 || i.tm.extension_opcode == 7))
4460 return 0;
4461
4462 return 1;
4463 }
4464 }
4465
4466 dest = i.operands - 1;
4467
4468 /* Check fake imm8 operand and 3 source operands. */
4469 if ((i.tm.opcode_modifier.immext
4470 || i.tm.opcode_modifier.vexsources == VEX3SOURCES)
4471 && i.types[dest].bitfield.imm8)
4472 dest--;
4473
4474 /* add, or, adc, sbb, and, sub, xor, cmp, test, xchg, xadd */
4475 if (!any_vex_p
4476 && (base_opcode == 0x1
4477 || base_opcode == 0x9
4478 || base_opcode == 0x11
4479 || base_opcode == 0x19
4480 || base_opcode == 0x21
4481 || base_opcode == 0x29
4482 || base_opcode == 0x31
4483 || base_opcode == 0x39
4484 || (i.tm.base_opcode >= 0x84 && i.tm.base_opcode <= 0x87)
4485 || base_opcode == 0xfc1))
4486 return 1;
4487
4488 /* Check for load instruction. */
4489 return (i.types[dest].bitfield.class != ClassNone
4490 || i.types[dest].bitfield.instance == Accum);
4491}
4492
4493/* Output lfence, 0xfaee8, after instruction. */
4494
4495static void
4496insert_lfence_after (void)
4497{
4498 if (lfence_after_load && load_insn_p ())
4499 {
a09f656b 4500 /* There are also two REP string instructions that require
4501 special treatment. Specifically, the compare string (CMPS)
4502 and scan string (SCAS) instructions set EFLAGS in a manner
4503 that depends on the data being compared/scanned. When used
4504 with a REP prefix, the number of iterations may therefore
4505 vary depending on this data. If the data is a program secret
4506 chosen by the adversary using an LVI method,
4507 then this data-dependent behavior may leak some aspect
4508 of the secret. */
4509 if (((i.tm.base_opcode | 0x1) == 0xa7
4510 || (i.tm.base_opcode | 0x1) == 0xaf)
4511 && i.prefix[REP_PREFIX])
4512 {
4513 as_warn (_("`%s` changes flags which would affect control flow behavior"),
4514 i.tm.name);
4515 }
ae531041
L
4516 char *p = frag_more (3);
4517 *p++ = 0xf;
4518 *p++ = 0xae;
4519 *p = 0xe8;
4520 }
4521}
4522
4523/* Output lfence, 0xfaee8, before instruction. */
4524
4525static void
4526insert_lfence_before (void)
4527{
4528 char *p;
4529
4530 if (is_any_vex_encoding (&i.tm))
4531 return;
4532
4533 if (i.tm.base_opcode == 0xff
4534 && (i.tm.extension_opcode == 2 || i.tm.extension_opcode == 4))
4535 {
4536 /* Insert lfence before indirect branch if needed. */
4537
4538 if (lfence_before_indirect_branch == lfence_branch_none)
4539 return;
4540
4541 if (i.operands != 1)
4542 abort ();
4543
4544 if (i.reg_operands == 1)
4545 {
4546 /* Indirect branch via register. Don't insert lfence with
4547 -mlfence-after-load=yes. */
4548 if (lfence_after_load
4549 || lfence_before_indirect_branch == lfence_branch_memory)
4550 return;
4551 }
4552 else if (i.mem_operands == 1
4553 && lfence_before_indirect_branch != lfence_branch_register)
4554 {
4555 as_warn (_("indirect `%s` with memory operand should be avoided"),
4556 i.tm.name);
4557 return;
4558 }
4559 else
4560 return;
4561
4562 if (last_insn.kind != last_insn_other
4563 && last_insn.seg == now_seg)
4564 {
4565 as_warn_where (last_insn.file, last_insn.line,
4566 _("`%s` skips -mlfence-before-indirect-branch on `%s`"),
4567 last_insn.name, i.tm.name);
4568 return;
4569 }
4570
4571 p = frag_more (3);
4572 *p++ = 0xf;
4573 *p++ = 0xae;
4574 *p = 0xe8;
4575 return;
4576 }
4577
503648e4 4578 /* Output or/not/shl and lfence before near ret. */
ae531041
L
4579 if (lfence_before_ret != lfence_before_ret_none
4580 && (i.tm.base_opcode == 0xc2
503648e4 4581 || i.tm.base_opcode == 0xc3))
ae531041
L
4582 {
4583 if (last_insn.kind != last_insn_other
4584 && last_insn.seg == now_seg)
4585 {
4586 as_warn_where (last_insn.file, last_insn.line,
4587 _("`%s` skips -mlfence-before-ret on `%s`"),
4588 last_insn.name, i.tm.name);
4589 return;
4590 }
a09f656b 4591
a09f656b 4592 /* Near ret ingore operand size override under CPU64. */
503648e4 4593 char prefix = flag_code == CODE_64BIT
4594 ? 0x48
4595 : i.prefix[DATA_PREFIX] ? 0x66 : 0x0;
a09f656b 4596
4597 if (lfence_before_ret == lfence_before_ret_not)
4598 {
4599 /* not: 0xf71424, may add prefix
4600 for operand size override or 64-bit code. */
4601 p = frag_more ((prefix ? 2 : 0) + 6 + 3);
4602 if (prefix)
4603 *p++ = prefix;
ae531041
L
4604 *p++ = 0xf7;
4605 *p++ = 0x14;
4606 *p++ = 0x24;
a09f656b 4607 if (prefix)
4608 *p++ = prefix;
ae531041
L
4609 *p++ = 0xf7;
4610 *p++ = 0x14;
4611 *p++ = 0x24;
4612 }
a09f656b 4613 else
4614 {
4615 p = frag_more ((prefix ? 1 : 0) + 4 + 3);
4616 if (prefix)
4617 *p++ = prefix;
4618 if (lfence_before_ret == lfence_before_ret_or)
4619 {
4620 /* or: 0x830c2400, may add prefix
4621 for operand size override or 64-bit code. */
4622 *p++ = 0x83;
4623 *p++ = 0x0c;
4624 }
4625 else
4626 {
4627 /* shl: 0xc1242400, may add prefix
4628 for operand size override or 64-bit code. */
4629 *p++ = 0xc1;
4630 *p++ = 0x24;
4631 }
4632
4633 *p++ = 0x24;
4634 *p++ = 0x0;
4635 }
4636
ae531041
L
4637 *p++ = 0xf;
4638 *p++ = 0xae;
4639 *p = 0xe8;
4640 }
4641}
4642
252b5132
RH
4643/* This is the guts of the machine-dependent assembler. LINE points to a
4644 machine dependent instruction. This function is supposed to emit
4645 the frags/bytes it assembles to. */
4646
4647void
65da13b5 4648md_assemble (char *line)
252b5132 4649{
40fb9820 4650 unsigned int j;
83b16ac6 4651 char mnemonic[MAX_MNEM_SIZE], mnem_suffix;
d3ce72d0 4652 const insn_template *t;
252b5132 4653
47926f60 4654 /* Initialize globals. */
252b5132
RH
4655 memset (&i, '\0', sizeof (i));
4656 for (j = 0; j < MAX_OPERANDS; j++)
1ae12ab7 4657 i.reloc[j] = NO_RELOC;
252b5132
RH
4658 memset (disp_expressions, '\0', sizeof (disp_expressions));
4659 memset (im_expressions, '\0', sizeof (im_expressions));
ce8a8b2f 4660 save_stack_p = save_stack;
252b5132
RH
4661
4662 /* First parse an instruction mnemonic & call i386_operand for the operands.
4663 We assume that the scrubber has arranged it so that line[0] is the valid
47926f60 4664 start of a (possibly prefixed) mnemonic. */
252b5132 4665
29b0f896
AM
4666 line = parse_insn (line, mnemonic);
4667 if (line == NULL)
4668 return;
83b16ac6 4669 mnem_suffix = i.suffix;
252b5132 4670
29b0f896 4671 line = parse_operands (line, mnemonic);
ee86248c 4672 this_operand = -1;
8325cc63
JB
4673 xfree (i.memop1_string);
4674 i.memop1_string = NULL;
29b0f896
AM
4675 if (line == NULL)
4676 return;
252b5132 4677
29b0f896
AM
4678 /* Now we've parsed the mnemonic into a set of templates, and have the
4679 operands at hand. */
4680
b630c145
JB
4681 /* All Intel opcodes have reversed operands except for "bound", "enter",
4682 "monitor*", "mwait*", "tpause", and "umwait". We also don't reverse
4683 intersegment "jmp" and "call" instructions with 2 immediate operands so
4684 that the immediate segment precedes the offset, as it does when in AT&T
4685 mode. */
4d456e3d
L
4686 if (intel_syntax
4687 && i.operands > 1
29b0f896 4688 && (strcmp (mnemonic, "bound") != 0)
30123838 4689 && (strcmp (mnemonic, "invlpga") != 0)
eedb0f2c
JB
4690 && (strncmp (mnemonic, "monitor", 7) != 0)
4691 && (strncmp (mnemonic, "mwait", 5) != 0)
b630c145
JB
4692 && (strcmp (mnemonic, "tpause") != 0)
4693 && (strcmp (mnemonic, "umwait") != 0)
40fb9820
L
4694 && !(operand_type_check (i.types[0], imm)
4695 && operand_type_check (i.types[1], imm)))
29b0f896
AM
4696 swap_operands ();
4697
ec56d5c0
JB
4698 /* The order of the immediates should be reversed
4699 for 2 immediates extrq and insertq instructions */
4700 if (i.imm_operands == 2
4701 && (strcmp (mnemonic, "extrq") == 0
4702 || strcmp (mnemonic, "insertq") == 0))
4703 swap_2_operands (0, 1);
4704
29b0f896
AM
4705 if (i.imm_operands)
4706 optimize_imm ();
4707
b300c311
L
4708 /* Don't optimize displacement for movabs since it only takes 64bit
4709 displacement. */
4710 if (i.disp_operands
a501d77e 4711 && i.disp_encoding != disp_encoding_32bit
862be3fb
L
4712 && (flag_code != CODE_64BIT
4713 || strcmp (mnemonic, "movabs") != 0))
4714 optimize_disp ();
29b0f896
AM
4715
4716 /* Next, we find a template that matches the given insn,
4717 making sure the overlap of the given operands types is consistent
4718 with the template operand types. */
252b5132 4719
83b16ac6 4720 if (!(t = match_template (mnem_suffix)))
29b0f896 4721 return;
252b5132 4722
7bab8ab5 4723 if (sse_check != check_none
81f8a913 4724 && !i.tm.opcode_modifier.noavx
6e3e5c9e 4725 && !i.tm.cpu_flags.bitfield.cpuavx
569d50f1 4726 && !i.tm.cpu_flags.bitfield.cpuavx512f
daf50ae7
L
4727 && (i.tm.cpu_flags.bitfield.cpusse
4728 || i.tm.cpu_flags.bitfield.cpusse2
4729 || i.tm.cpu_flags.bitfield.cpusse3
4730 || i.tm.cpu_flags.bitfield.cpussse3
4731 || i.tm.cpu_flags.bitfield.cpusse4_1
6e3e5c9e
JB
4732 || i.tm.cpu_flags.bitfield.cpusse4_2
4733 || i.tm.cpu_flags.bitfield.cpupclmul
4734 || i.tm.cpu_flags.bitfield.cpuaes
569d50f1 4735 || i.tm.cpu_flags.bitfield.cpusha
6e3e5c9e 4736 || i.tm.cpu_flags.bitfield.cpugfni))
daf50ae7 4737 {
7bab8ab5 4738 (sse_check == check_warning
daf50ae7
L
4739 ? as_warn
4740 : as_bad) (_("SSE instruction `%s' is used"), i.tm.name);
4741 }
4742
40fb9820 4743 if (i.tm.opcode_modifier.fwait)
29b0f896
AM
4744 if (!add_prefix (FWAIT_OPCODE))
4745 return;
252b5132 4746
d5de92cf 4747 /* Check if REP prefix is OK. */
742732c7 4748 if (i.rep_prefix && i.tm.opcode_modifier.prefixok != PrefixRep)
d5de92cf
L
4749 {
4750 as_bad (_("invalid instruction `%s' after `%s'"),
4751 i.tm.name, i.rep_prefix);
4752 return;
4753 }
4754
c1ba0266
L
4755 /* Check for lock without a lockable instruction. Destination operand
4756 must be memory unless it is xchg (0x86). */
c32fa91d 4757 if (i.prefix[LOCK_PREFIX]
742732c7 4758 && (i.tm.opcode_modifier.prefixok < PrefixLock
c1ba0266
L
4759 || i.mem_operands == 0
4760 || (i.tm.base_opcode != 0x86
8dc0818e 4761 && !(i.flags[i.operands - 1] & Operand_Mem))))
c32fa91d
L
4762 {
4763 as_bad (_("expecting lockable instruction after `lock'"));
4764 return;
4765 }
4766
40d231b4
JB
4767 /* Check for data size prefix on VEX/XOP/EVEX encoded and SIMD insns. */
4768 if (i.prefix[DATA_PREFIX]
4769 && (is_any_vex_encoding (&i.tm)
4770 || i.tm.operand_types[i.imm_operands].bitfield.class >= RegMMX
4771 || i.tm.operand_types[i.imm_operands + 1].bitfield.class >= RegMMX))
7a8655d2
JB
4772 {
4773 as_bad (_("data size prefix invalid with `%s'"), i.tm.name);
4774 return;
4775 }
4776
42164a71 4777 /* Check if HLE prefix is OK. */
165de32a 4778 if (i.hle_prefix && !check_hle ())
42164a71
L
4779 return;
4780
7e8b059b
L
4781 /* Check BND prefix. */
4782 if (i.bnd_prefix && !i.tm.opcode_modifier.bndprefixok)
4783 as_bad (_("expecting valid branch instruction after `bnd'"));
4784
04ef582a 4785 /* Check NOTRACK prefix. */
742732c7 4786 if (i.notrack_prefix && i.tm.opcode_modifier.prefixok != PrefixNoTrack)
9fef80d6 4787 as_bad (_("expecting indirect branch instruction after `notrack'"));
04ef582a 4788
327e8c42
JB
4789 if (i.tm.cpu_flags.bitfield.cpumpx)
4790 {
4791 if (flag_code == CODE_64BIT && i.prefix[ADDR_PREFIX])
4792 as_bad (_("32-bit address isn't allowed in 64-bit MPX instructions."));
4793 else if (flag_code != CODE_16BIT
4794 ? i.prefix[ADDR_PREFIX]
4795 : i.mem_operands && !i.prefix[ADDR_PREFIX])
4796 as_bad (_("16-bit address isn't allowed in MPX instructions"));
4797 }
7e8b059b
L
4798
4799 /* Insert BND prefix. */
76d3a78a
JB
4800 if (add_bnd_prefix && i.tm.opcode_modifier.bndprefixok)
4801 {
4802 if (!i.prefix[BND_PREFIX])
4803 add_prefix (BND_PREFIX_OPCODE);
4804 else if (i.prefix[BND_PREFIX] != BND_PREFIX_OPCODE)
4805 {
4806 as_warn (_("replacing `rep'/`repe' prefix by `bnd'"));
4807 i.prefix[BND_PREFIX] = BND_PREFIX_OPCODE;
4808 }
4809 }
7e8b059b 4810
29b0f896 4811 /* Check string instruction segment overrides. */
51c8edf6 4812 if (i.tm.opcode_modifier.isstring >= IS_STRING_ES_OP0)
29b0f896 4813 {
51c8edf6 4814 gas_assert (i.mem_operands);
29b0f896 4815 if (!check_string ())
5dd0794d 4816 return;
fc0763e6 4817 i.disp_operands = 0;
29b0f896 4818 }
5dd0794d 4819
b6f8c7c4
L
4820 if (optimize && !i.no_optimize && i.tm.opcode_modifier.optimize)
4821 optimize_encoding ();
4822
29b0f896
AM
4823 if (!process_suffix ())
4824 return;
e413e4e9 4825
921eafea 4826 /* Update operand types and check extended states. */
bc0844ae 4827 for (j = 0; j < i.operands; j++)
921eafea
L
4828 {
4829 i.types[j] = operand_type_and (i.types[j], i.tm.operand_types[j]);
3d70986f 4830 switch (i.tm.operand_types[j].bitfield.class)
921eafea
L
4831 {
4832 default:
4833 break;
4834 case RegMMX:
4835 i.xstate |= xstate_mmx;
4836 break;
4837 case RegMask:
32930e4e 4838 i.xstate |= xstate_mask;
921eafea
L
4839 break;
4840 case RegSIMD:
3d70986f 4841 if (i.tm.operand_types[j].bitfield.tmmword)
921eafea 4842 i.xstate |= xstate_tmm;
3d70986f 4843 else if (i.tm.operand_types[j].bitfield.zmmword)
921eafea 4844 i.xstate |= xstate_zmm;
3d70986f 4845 else if (i.tm.operand_types[j].bitfield.ymmword)
921eafea 4846 i.xstate |= xstate_ymm;
3d70986f 4847 else if (i.tm.operand_types[j].bitfield.xmmword)
921eafea
L
4848 i.xstate |= xstate_xmm;
4849 break;
4850 }
4851 }
bc0844ae 4852
29b0f896
AM
4853 /* Make still unresolved immediate matches conform to size of immediate
4854 given in i.suffix. */
4855 if (!finalize_imm ())
4856 return;
252b5132 4857
40fb9820 4858 if (i.types[0].bitfield.imm1)
29b0f896 4859 i.imm_operands = 0; /* kludge for shift insns. */
252b5132 4860
9afe6eb8
L
4861 /* We only need to check those implicit registers for instructions
4862 with 3 operands or less. */
4863 if (i.operands <= 3)
4864 for (j = 0; j < i.operands; j++)
75e5731b
JB
4865 if (i.types[j].bitfield.instance != InstanceNone
4866 && !i.types[j].bitfield.xmmword)
9afe6eb8 4867 i.reg_operands--;
40fb9820 4868
29b0f896
AM
4869 /* For insns with operands there are more diddles to do to the opcode. */
4870 if (i.operands)
4871 {
4872 if (!process_operands ())
4873 return;
4874 }
8c190ce0 4875 else if (!quiet_warnings && i.tm.opcode_modifier.ugh)
29b0f896
AM
4876 {
4877 /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. */
4878 as_warn (_("translating to `%sp'"), i.tm.name);
4879 }
252b5132 4880
7a8655d2 4881 if (is_any_vex_encoding (&i.tm))
9e5e5283 4882 {
c1dc7af5 4883 if (!cpu_arch_flags.bitfield.cpui286)
9e5e5283 4884 {
c1dc7af5 4885 as_bad (_("instruction `%s' isn't supported outside of protected mode."),
9e5e5283
L
4886 i.tm.name);
4887 return;
4888 }
c0f3af97 4889
0b9404fd
JB
4890 /* Check for explicit REX prefix. */
4891 if (i.prefix[REX_PREFIX] || i.rex_encoding)
4892 {
4893 as_bad (_("REX prefix invalid with `%s'"), i.tm.name);
4894 return;
4895 }
4896
9e5e5283
L
4897 if (i.tm.opcode_modifier.vex)
4898 build_vex_prefix (t);
4899 else
4900 build_evex_prefix ();
0b9404fd
JB
4901
4902 /* The individual REX.RXBW bits got consumed. */
4903 i.rex &= REX_OPCODE;
9e5e5283 4904 }
43234a1e 4905
5dd85c99
SP
4906 /* Handle conversion of 'int $3' --> special int3 insn. XOP or FMA4
4907 instructions may define INT_OPCODE as well, so avoid this corner
4908 case for those instructions that use MODRM. */
4909 if (i.tm.base_opcode == INT_OPCODE
a6461c02
SP
4910 && !i.tm.opcode_modifier.modrm
4911 && i.op[0].imms->X_add_number == 3)
29b0f896
AM
4912 {
4913 i.tm.base_opcode = INT3_OPCODE;
4914 i.imm_operands = 0;
4915 }
252b5132 4916
0cfa3eb3
JB
4917 if ((i.tm.opcode_modifier.jump == JUMP
4918 || i.tm.opcode_modifier.jump == JUMP_BYTE
4919 || i.tm.opcode_modifier.jump == JUMP_DWORD)
29b0f896
AM
4920 && i.op[0].disps->X_op == O_constant)
4921 {
4922 /* Convert "jmp constant" (and "call constant") to a jump (call) to
4923 the absolute address given by the constant. Since ix86 jumps and
4924 calls are pc relative, we need to generate a reloc. */
4925 i.op[0].disps->X_add_symbol = &abs_symbol;
4926 i.op[0].disps->X_op = O_symbol;
4927 }
252b5132 4928
29b0f896
AM
4929 /* For 8 bit registers we need an empty rex prefix. Also if the
4930 instruction already has a prefix, we need to convert old
4931 registers to new ones. */
773f551c 4932
bab6aec1 4933 if ((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte
29b0f896 4934 && (i.op[0].regs->reg_flags & RegRex64) != 0)
bab6aec1 4935 || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte
29b0f896 4936 && (i.op[1].regs->reg_flags & RegRex64) != 0)
bab6aec1
JB
4937 || (((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte)
4938 || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte))
29b0f896
AM
4939 && i.rex != 0))
4940 {
4941 int x;
726c5dcd 4942
29b0f896
AM
4943 i.rex |= REX_OPCODE;
4944 for (x = 0; x < 2; x++)
4945 {
4946 /* Look for 8 bit operand that uses old registers. */
bab6aec1 4947 if (i.types[x].bitfield.class == Reg && i.types[x].bitfield.byte
29b0f896 4948 && (i.op[x].regs->reg_flags & RegRex64) == 0)
773f551c 4949 {
3f93af61 4950 gas_assert (!(i.op[x].regs->reg_flags & RegRex));
29b0f896
AM
4951 /* In case it is "hi" register, give up. */
4952 if (i.op[x].regs->reg_num > 3)
a540244d 4953 as_bad (_("can't encode register '%s%s' in an "
4eed87de 4954 "instruction requiring REX prefix."),
a540244d 4955 register_prefix, i.op[x].regs->reg_name);
773f551c 4956
29b0f896
AM
4957 /* Otherwise it is equivalent to the extended register.
4958 Since the encoding doesn't change this is merely
4959 cosmetic cleanup for debug output. */
4960
4961 i.op[x].regs = i.op[x].regs + 8;
773f551c 4962 }
29b0f896
AM
4963 }
4964 }
773f551c 4965
6b6b6807
L
4966 if (i.rex == 0 && i.rex_encoding)
4967 {
4968 /* Check if we can add a REX_OPCODE byte. Look for 8 bit operand
3f93af61 4969 that uses legacy register. If it is "hi" register, don't add
6b6b6807
L
4970 the REX_OPCODE byte. */
4971 int x;
4972 for (x = 0; x < 2; x++)
bab6aec1 4973 if (i.types[x].bitfield.class == Reg
6b6b6807
L
4974 && i.types[x].bitfield.byte
4975 && (i.op[x].regs->reg_flags & RegRex64) == 0
4976 && i.op[x].regs->reg_num > 3)
4977 {
3f93af61 4978 gas_assert (!(i.op[x].regs->reg_flags & RegRex));
6b6b6807
L
4979 i.rex_encoding = FALSE;
4980 break;
4981 }
4982
4983 if (i.rex_encoding)
4984 i.rex = REX_OPCODE;
4985 }
4986
7ab9ffdd 4987 if (i.rex != 0)
29b0f896
AM
4988 add_prefix (REX_OPCODE | i.rex);
4989
ae531041
L
4990 insert_lfence_before ();
4991
29b0f896
AM
4992 /* We are ready to output the insn. */
4993 output_insn ();
e379e5f3 4994
ae531041
L
4995 insert_lfence_after ();
4996
e379e5f3
L
4997 last_insn.seg = now_seg;
4998
4999 if (i.tm.opcode_modifier.isprefix)
5000 {
5001 last_insn.kind = last_insn_prefix;
5002 last_insn.name = i.tm.name;
5003 last_insn.file = as_where (&last_insn.line);
5004 }
5005 else
5006 last_insn.kind = last_insn_other;
29b0f896
AM
5007}
5008
5009static char *
e3bb37b5 5010parse_insn (char *line, char *mnemonic)
29b0f896
AM
5011{
5012 char *l = line;
5013 char *token_start = l;
5014 char *mnem_p;
5c6af06e 5015 int supported;
d3ce72d0 5016 const insn_template *t;
b6169b20 5017 char *dot_p = NULL;
29b0f896 5018
29b0f896
AM
5019 while (1)
5020 {
5021 mnem_p = mnemonic;
5022 while ((*mnem_p = mnemonic_chars[(unsigned char) *l]) != 0)
5023 {
b6169b20
L
5024 if (*mnem_p == '.')
5025 dot_p = mnem_p;
29b0f896
AM
5026 mnem_p++;
5027 if (mnem_p >= mnemonic + MAX_MNEM_SIZE)
45288df1 5028 {
29b0f896
AM
5029 as_bad (_("no such instruction: `%s'"), token_start);
5030 return NULL;
5031 }
5032 l++;
5033 }
5034 if (!is_space_char (*l)
5035 && *l != END_OF_INSN
e44823cf
JB
5036 && (intel_syntax
5037 || (*l != PREFIX_SEPARATOR
5038 && *l != ',')))
29b0f896
AM
5039 {
5040 as_bad (_("invalid character %s in mnemonic"),
5041 output_invalid (*l));
5042 return NULL;
5043 }
5044 if (token_start == l)
5045 {
e44823cf 5046 if (!intel_syntax && *l == PREFIX_SEPARATOR)
29b0f896
AM
5047 as_bad (_("expecting prefix; got nothing"));
5048 else
5049 as_bad (_("expecting mnemonic; got nothing"));
5050 return NULL;
5051 }
45288df1 5052
29b0f896 5053 /* Look up instruction (or prefix) via hash table. */
629310ab 5054 current_templates = (const templates *) str_hash_find (op_hash, mnemonic);
47926f60 5055
29b0f896
AM
5056 if (*l != END_OF_INSN
5057 && (!is_space_char (*l) || l[1] != END_OF_INSN)
5058 && current_templates
40fb9820 5059 && current_templates->start->opcode_modifier.isprefix)
29b0f896 5060 {
c6fb90c8 5061 if (!cpu_flags_check_cpu64 (current_templates->start->cpu_flags))
2dd88dca
JB
5062 {
5063 as_bad ((flag_code != CODE_64BIT
5064 ? _("`%s' is only supported in 64-bit mode")
5065 : _("`%s' is not supported in 64-bit mode")),
5066 current_templates->start->name);
5067 return NULL;
5068 }
29b0f896
AM
5069 /* If we are in 16-bit mode, do not allow addr16 or data16.
5070 Similarly, in 32-bit mode, do not allow addr32 or data32. */
673fe0f0
JB
5071 if ((current_templates->start->opcode_modifier.size == SIZE16
5072 || current_templates->start->opcode_modifier.size == SIZE32)
29b0f896 5073 && flag_code != CODE_64BIT
673fe0f0 5074 && ((current_templates->start->opcode_modifier.size == SIZE32)
29b0f896
AM
5075 ^ (flag_code == CODE_16BIT)))
5076 {
5077 as_bad (_("redundant %s prefix"),
5078 current_templates->start->name);
5079 return NULL;
45288df1 5080 }
31184569
JB
5081
5082 if (current_templates->start->base_opcode == PSEUDO_PREFIX)
29b0f896 5083 {
86fa6981 5084 /* Handle pseudo prefixes. */
31184569 5085 switch (current_templates->start->extension_opcode)
86fa6981 5086 {
41eb8e88 5087 case Prefix_Disp8:
86fa6981
L
5088 /* {disp8} */
5089 i.disp_encoding = disp_encoding_8bit;
5090 break;
41eb8e88
L
5091 case Prefix_Disp16:
5092 /* {disp16} */
5093 i.disp_encoding = disp_encoding_16bit;
5094 break;
5095 case Prefix_Disp32:
86fa6981
L
5096 /* {disp32} */
5097 i.disp_encoding = disp_encoding_32bit;
5098 break;
41eb8e88 5099 case Prefix_Load:
86fa6981
L
5100 /* {load} */
5101 i.dir_encoding = dir_encoding_load;
5102 break;
41eb8e88 5103 case Prefix_Store:
86fa6981
L
5104 /* {store} */
5105 i.dir_encoding = dir_encoding_store;
5106 break;
41eb8e88 5107 case Prefix_VEX:
42e04b36
L
5108 /* {vex} */
5109 i.vec_encoding = vex_encoding_vex;
86fa6981 5110 break;
41eb8e88 5111 case Prefix_VEX3:
86fa6981
L
5112 /* {vex3} */
5113 i.vec_encoding = vex_encoding_vex3;
5114 break;
41eb8e88 5115 case Prefix_EVEX:
86fa6981
L
5116 /* {evex} */
5117 i.vec_encoding = vex_encoding_evex;
5118 break;
41eb8e88 5119 case Prefix_REX:
6b6b6807
L
5120 /* {rex} */
5121 i.rex_encoding = TRUE;
5122 break;
41eb8e88 5123 case Prefix_NoOptimize:
b6f8c7c4
L
5124 /* {nooptimize} */
5125 i.no_optimize = TRUE;
5126 break;
86fa6981
L
5127 default:
5128 abort ();
5129 }
5130 }
5131 else
5132 {
5133 /* Add prefix, checking for repeated prefixes. */
4e9ac44a 5134 switch (add_prefix (current_templates->start->base_opcode))
86fa6981 5135 {
4e9ac44a
L
5136 case PREFIX_EXIST:
5137 return NULL;
5138 case PREFIX_DS:
d777820b 5139 if (current_templates->start->cpu_flags.bitfield.cpuibt)
4e9ac44a
L
5140 i.notrack_prefix = current_templates->start->name;
5141 break;
5142 case PREFIX_REP:
5143 if (current_templates->start->cpu_flags.bitfield.cpuhle)
5144 i.hle_prefix = current_templates->start->name;
5145 else if (current_templates->start->cpu_flags.bitfield.cpumpx)
5146 i.bnd_prefix = current_templates->start->name;
5147 else
5148 i.rep_prefix = current_templates->start->name;
5149 break;
5150 default:
5151 break;
86fa6981 5152 }
29b0f896
AM
5153 }
5154 /* Skip past PREFIX_SEPARATOR and reset token_start. */
5155 token_start = ++l;
5156 }
5157 else
5158 break;
5159 }
45288df1 5160
30a55f88 5161 if (!current_templates)
b6169b20 5162 {
07d5e953
JB
5163 /* Deprecated functionality (new code should use pseudo-prefixes instead):
5164 Check if we should swap operand or force 32bit displacement in
f8a5c266 5165 encoding. */
30a55f88 5166 if (mnem_p - 2 == dot_p && dot_p[1] == 's')
64c49ab3 5167 i.dir_encoding = dir_encoding_swap;
8d63c93e 5168 else if (mnem_p - 3 == dot_p
a501d77e
L
5169 && dot_p[1] == 'd'
5170 && dot_p[2] == '8')
5171 i.disp_encoding = disp_encoding_8bit;
8d63c93e 5172 else if (mnem_p - 4 == dot_p
f8a5c266
L
5173 && dot_p[1] == 'd'
5174 && dot_p[2] == '3'
5175 && dot_p[3] == '2')
a501d77e 5176 i.disp_encoding = disp_encoding_32bit;
30a55f88
L
5177 else
5178 goto check_suffix;
5179 mnem_p = dot_p;
5180 *dot_p = '\0';
629310ab 5181 current_templates = (const templates *) str_hash_find (op_hash, mnemonic);
b6169b20
L
5182 }
5183
29b0f896
AM
5184 if (!current_templates)
5185 {
dc1e8a47 5186 check_suffix:
1c529385 5187 if (mnem_p > mnemonic)
29b0f896 5188 {
1c529385
LH
5189 /* See if we can get a match by trimming off a suffix. */
5190 switch (mnem_p[-1])
29b0f896 5191 {
1c529385
LH
5192 case WORD_MNEM_SUFFIX:
5193 if (intel_syntax && (intel_float_operand (mnemonic) & 2))
29b0f896
AM
5194 i.suffix = SHORT_MNEM_SUFFIX;
5195 else
1c529385
LH
5196 /* Fall through. */
5197 case BYTE_MNEM_SUFFIX:
5198 case QWORD_MNEM_SUFFIX:
5199 i.suffix = mnem_p[-1];
29b0f896 5200 mnem_p[-1] = '\0';
fe0e921f
AM
5201 current_templates
5202 = (const templates *) str_hash_find (op_hash, mnemonic);
1c529385
LH
5203 break;
5204 case SHORT_MNEM_SUFFIX:
5205 case LONG_MNEM_SUFFIX:
5206 if (!intel_syntax)
5207 {
5208 i.suffix = mnem_p[-1];
5209 mnem_p[-1] = '\0';
fe0e921f
AM
5210 current_templates
5211 = (const templates *) str_hash_find (op_hash, mnemonic);
1c529385
LH
5212 }
5213 break;
5214
5215 /* Intel Syntax. */
5216 case 'd':
5217 if (intel_syntax)
5218 {
5219 if (intel_float_operand (mnemonic) == 1)
5220 i.suffix = SHORT_MNEM_SUFFIX;
5221 else
5222 i.suffix = LONG_MNEM_SUFFIX;
5223 mnem_p[-1] = '\0';
fe0e921f
AM
5224 current_templates
5225 = (const templates *) str_hash_find (op_hash, mnemonic);
1c529385
LH
5226 }
5227 break;
29b0f896 5228 }
29b0f896 5229 }
1c529385 5230
29b0f896
AM
5231 if (!current_templates)
5232 {
5233 as_bad (_("no such instruction: `%s'"), token_start);
5234 return NULL;
5235 }
5236 }
252b5132 5237
0cfa3eb3
JB
5238 if (current_templates->start->opcode_modifier.jump == JUMP
5239 || current_templates->start->opcode_modifier.jump == JUMP_BYTE)
29b0f896
AM
5240 {
5241 /* Check for a branch hint. We allow ",pt" and ",pn" for
5242 predict taken and predict not taken respectively.
5243 I'm not sure that branch hints actually do anything on loop
5244 and jcxz insns (JumpByte) for current Pentium4 chips. They
5245 may work in the future and it doesn't hurt to accept them
5246 now. */
5247 if (l[0] == ',' && l[1] == 'p')
5248 {
5249 if (l[2] == 't')
5250 {
5251 if (!add_prefix (DS_PREFIX_OPCODE))
5252 return NULL;
5253 l += 3;
5254 }
5255 else if (l[2] == 'n')
5256 {
5257 if (!add_prefix (CS_PREFIX_OPCODE))
5258 return NULL;
5259 l += 3;
5260 }
5261 }
5262 }
5263 /* Any other comma loses. */
5264 if (*l == ',')
5265 {
5266 as_bad (_("invalid character %s in mnemonic"),
5267 output_invalid (*l));
5268 return NULL;
5269 }
252b5132 5270
29b0f896 5271 /* Check if instruction is supported on specified architecture. */
5c6af06e
JB
5272 supported = 0;
5273 for (t = current_templates->start; t < current_templates->end; ++t)
5274 {
c0f3af97
L
5275 supported |= cpu_flags_match (t);
5276 if (supported == CPU_FLAGS_PERFECT_MATCH)
548d0ee6
JB
5277 {
5278 if (!cpu_arch_flags.bitfield.cpui386 && (flag_code != CODE_16BIT))
5279 as_warn (_("use .code16 to ensure correct addressing mode"));
3629bb00 5280
548d0ee6
JB
5281 return l;
5282 }
29b0f896 5283 }
3629bb00 5284
548d0ee6
JB
5285 if (!(supported & CPU_FLAGS_64BIT_MATCH))
5286 as_bad (flag_code == CODE_64BIT
5287 ? _("`%s' is not supported in 64-bit mode")
5288 : _("`%s' is only supported in 64-bit mode"),
5289 current_templates->start->name);
5290 else
5291 as_bad (_("`%s' is not supported on `%s%s'"),
5292 current_templates->start->name,
5293 cpu_arch_name ? cpu_arch_name : default_arch,
5294 cpu_sub_arch_name ? cpu_sub_arch_name : "");
252b5132 5295
548d0ee6 5296 return NULL;
29b0f896 5297}
252b5132 5298
29b0f896 5299static char *
e3bb37b5 5300parse_operands (char *l, const char *mnemonic)
29b0f896
AM
5301{
5302 char *token_start;
3138f287 5303
29b0f896
AM
5304 /* 1 if operand is pending after ','. */
5305 unsigned int expecting_operand = 0;
252b5132 5306
29b0f896
AM
5307 /* Non-zero if operand parens not balanced. */
5308 unsigned int paren_not_balanced;
5309
5310 while (*l != END_OF_INSN)
5311 {
5312 /* Skip optional white space before operand. */
5313 if (is_space_char (*l))
5314 ++l;
d02603dc 5315 if (!is_operand_char (*l) && *l != END_OF_INSN && *l != '"')
29b0f896
AM
5316 {
5317 as_bad (_("invalid character %s before operand %d"),
5318 output_invalid (*l),
5319 i.operands + 1);
5320 return NULL;
5321 }
d02603dc 5322 token_start = l; /* After white space. */
29b0f896
AM
5323 paren_not_balanced = 0;
5324 while (paren_not_balanced || *l != ',')
5325 {
5326 if (*l == END_OF_INSN)
5327 {
5328 if (paren_not_balanced)
5329 {
5330 if (!intel_syntax)
5331 as_bad (_("unbalanced parenthesis in operand %d."),
5332 i.operands + 1);
5333 else
5334 as_bad (_("unbalanced brackets in operand %d."),
5335 i.operands + 1);
5336 return NULL;
5337 }
5338 else
5339 break; /* we are done */
5340 }
d02603dc 5341 else if (!is_operand_char (*l) && !is_space_char (*l) && *l != '"')
29b0f896
AM
5342 {
5343 as_bad (_("invalid character %s in operand %d"),
5344 output_invalid (*l),
5345 i.operands + 1);
5346 return NULL;
5347 }
5348 if (!intel_syntax)
5349 {
5350 if (*l == '(')
5351 ++paren_not_balanced;
5352 if (*l == ')')
5353 --paren_not_balanced;
5354 }
5355 else
5356 {
5357 if (*l == '[')
5358 ++paren_not_balanced;
5359 if (*l == ']')
5360 --paren_not_balanced;
5361 }
5362 l++;
5363 }
5364 if (l != token_start)
5365 { /* Yes, we've read in another operand. */
5366 unsigned int operand_ok;
5367 this_operand = i.operands++;
5368 if (i.operands > MAX_OPERANDS)
5369 {
5370 as_bad (_("spurious operands; (%d operands/instruction max)"),
5371 MAX_OPERANDS);
5372 return NULL;
5373 }
9d46ce34 5374 i.types[this_operand].bitfield.unspecified = 1;
29b0f896
AM
5375 /* Now parse operand adding info to 'i' as we go along. */
5376 END_STRING_AND_SAVE (l);
5377
1286ab78
L
5378 if (i.mem_operands > 1)
5379 {
5380 as_bad (_("too many memory references for `%s'"),
5381 mnemonic);
5382 return 0;
5383 }
5384
29b0f896
AM
5385 if (intel_syntax)
5386 operand_ok =
5387 i386_intel_operand (token_start,
5388 intel_float_operand (mnemonic));
5389 else
a7619375 5390 operand_ok = i386_att_operand (token_start);
29b0f896
AM
5391
5392 RESTORE_END_STRING (l);
5393 if (!operand_ok)
5394 return NULL;
5395 }
5396 else
5397 {
5398 if (expecting_operand)
5399 {
5400 expecting_operand_after_comma:
5401 as_bad (_("expecting operand after ','; got nothing"));
5402 return NULL;
5403 }
5404 if (*l == ',')
5405 {
5406 as_bad (_("expecting operand before ','; got nothing"));
5407 return NULL;
5408 }
5409 }
7f3f1ea2 5410
29b0f896
AM
5411 /* Now *l must be either ',' or END_OF_INSN. */
5412 if (*l == ',')
5413 {
5414 if (*++l == END_OF_INSN)
5415 {
5416 /* Just skip it, if it's \n complain. */
5417 goto expecting_operand_after_comma;
5418 }
5419 expecting_operand = 1;
5420 }
5421 }
5422 return l;
5423}
7f3f1ea2 5424
050dfa73 5425static void
4d456e3d 5426swap_2_operands (int xchg1, int xchg2)
050dfa73
MM
5427{
5428 union i386_op temp_op;
40fb9820 5429 i386_operand_type temp_type;
c48dadc9 5430 unsigned int temp_flags;
050dfa73 5431 enum bfd_reloc_code_real temp_reloc;
4eed87de 5432
050dfa73
MM
5433 temp_type = i.types[xchg2];
5434 i.types[xchg2] = i.types[xchg1];
5435 i.types[xchg1] = temp_type;
c48dadc9
JB
5436
5437 temp_flags = i.flags[xchg2];
5438 i.flags[xchg2] = i.flags[xchg1];
5439 i.flags[xchg1] = temp_flags;
5440
050dfa73
MM
5441 temp_op = i.op[xchg2];
5442 i.op[xchg2] = i.op[xchg1];
5443 i.op[xchg1] = temp_op;
c48dadc9 5444
050dfa73
MM
5445 temp_reloc = i.reloc[xchg2];
5446 i.reloc[xchg2] = i.reloc[xchg1];
5447 i.reloc[xchg1] = temp_reloc;
43234a1e
L
5448
5449 if (i.mask)
5450 {
5451 if (i.mask->operand == xchg1)
5452 i.mask->operand = xchg2;
5453 else if (i.mask->operand == xchg2)
5454 i.mask->operand = xchg1;
5455 }
5456 if (i.broadcast)
5457 {
5458 if (i.broadcast->operand == xchg1)
5459 i.broadcast->operand = xchg2;
5460 else if (i.broadcast->operand == xchg2)
5461 i.broadcast->operand = xchg1;
5462 }
5463 if (i.rounding)
5464 {
5465 if (i.rounding->operand == xchg1)
5466 i.rounding->operand = xchg2;
5467 else if (i.rounding->operand == xchg2)
5468 i.rounding->operand = xchg1;
5469 }
050dfa73
MM
5470}
5471
29b0f896 5472static void
e3bb37b5 5473swap_operands (void)
29b0f896 5474{
b7c61d9a 5475 switch (i.operands)
050dfa73 5476 {
c0f3af97 5477 case 5:
b7c61d9a 5478 case 4:
4d456e3d 5479 swap_2_operands (1, i.operands - 2);
1a0670f3 5480 /* Fall through. */
b7c61d9a
L
5481 case 3:
5482 case 2:
4d456e3d 5483 swap_2_operands (0, i.operands - 1);
b7c61d9a
L
5484 break;
5485 default:
5486 abort ();
29b0f896 5487 }
29b0f896
AM
5488
5489 if (i.mem_operands == 2)
5490 {
5491 const seg_entry *temp_seg;
5492 temp_seg = i.seg[0];
5493 i.seg[0] = i.seg[1];
5494 i.seg[1] = temp_seg;
5495 }
5496}
252b5132 5497
29b0f896
AM
5498/* Try to ensure constant immediates are represented in the smallest
5499 opcode possible. */
5500static void
e3bb37b5 5501optimize_imm (void)
29b0f896
AM
5502{
5503 char guess_suffix = 0;
5504 int op;
252b5132 5505
29b0f896
AM
5506 if (i.suffix)
5507 guess_suffix = i.suffix;
5508 else if (i.reg_operands)
5509 {
5510 /* Figure out a suffix from the last register operand specified.
75e5731b
JB
5511 We can't do this properly yet, i.e. excluding special register
5512 instances, but the following works for instructions with
5513 immediates. In any case, we can't set i.suffix yet. */
29b0f896 5514 for (op = i.operands; --op >= 0;)
bab6aec1
JB
5515 if (i.types[op].bitfield.class != Reg)
5516 continue;
5517 else if (i.types[op].bitfield.byte)
7ab9ffdd 5518 {
40fb9820
L
5519 guess_suffix = BYTE_MNEM_SUFFIX;
5520 break;
5521 }
bab6aec1 5522 else if (i.types[op].bitfield.word)
252b5132 5523 {
40fb9820
L
5524 guess_suffix = WORD_MNEM_SUFFIX;
5525 break;
5526 }
bab6aec1 5527 else if (i.types[op].bitfield.dword)
40fb9820
L
5528 {
5529 guess_suffix = LONG_MNEM_SUFFIX;
5530 break;
5531 }
bab6aec1 5532 else if (i.types[op].bitfield.qword)
40fb9820
L
5533 {
5534 guess_suffix = QWORD_MNEM_SUFFIX;
29b0f896 5535 break;
252b5132 5536 }
29b0f896
AM
5537 }
5538 else if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
5539 guess_suffix = WORD_MNEM_SUFFIX;
5540
5541 for (op = i.operands; --op >= 0;)
40fb9820 5542 if (operand_type_check (i.types[op], imm))
29b0f896
AM
5543 {
5544 switch (i.op[op].imms->X_op)
252b5132 5545 {
29b0f896
AM
5546 case O_constant:
5547 /* If a suffix is given, this operand may be shortened. */
5548 switch (guess_suffix)
252b5132 5549 {
29b0f896 5550 case LONG_MNEM_SUFFIX:
40fb9820
L
5551 i.types[op].bitfield.imm32 = 1;
5552 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
5553 break;
5554 case WORD_MNEM_SUFFIX:
40fb9820
L
5555 i.types[op].bitfield.imm16 = 1;
5556 i.types[op].bitfield.imm32 = 1;
5557 i.types[op].bitfield.imm32s = 1;
5558 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
5559 break;
5560 case BYTE_MNEM_SUFFIX:
40fb9820
L
5561 i.types[op].bitfield.imm8 = 1;
5562 i.types[op].bitfield.imm8s = 1;
5563 i.types[op].bitfield.imm16 = 1;
5564 i.types[op].bitfield.imm32 = 1;
5565 i.types[op].bitfield.imm32s = 1;
5566 i.types[op].bitfield.imm64 = 1;
29b0f896 5567 break;
252b5132 5568 }
252b5132 5569
29b0f896
AM
5570 /* If this operand is at most 16 bits, convert it
5571 to a signed 16 bit number before trying to see
5572 whether it will fit in an even smaller size.
5573 This allows a 16-bit operand such as $0xffe0 to
5574 be recognised as within Imm8S range. */
40fb9820 5575 if ((i.types[op].bitfield.imm16)
29b0f896 5576 && (i.op[op].imms->X_add_number & ~(offsetT) 0xffff) == 0)
252b5132 5577 {
29b0f896
AM
5578 i.op[op].imms->X_add_number =
5579 (((i.op[op].imms->X_add_number & 0xffff) ^ 0x8000) - 0x8000);
5580 }
a28def75
L
5581#ifdef BFD64
5582 /* Store 32-bit immediate in 64-bit for 64-bit BFD. */
40fb9820 5583 if ((i.types[op].bitfield.imm32)
29b0f896
AM
5584 && ((i.op[op].imms->X_add_number & ~(((offsetT) 2 << 31) - 1))
5585 == 0))
5586 {
5587 i.op[op].imms->X_add_number = ((i.op[op].imms->X_add_number
5588 ^ ((offsetT) 1 << 31))
5589 - ((offsetT) 1 << 31));
5590 }
a28def75 5591#endif
40fb9820 5592 i.types[op]
c6fb90c8
L
5593 = operand_type_or (i.types[op],
5594 smallest_imm_type (i.op[op].imms->X_add_number));
252b5132 5595
29b0f896
AM
5596 /* We must avoid matching of Imm32 templates when 64bit
5597 only immediate is available. */
5598 if (guess_suffix == QWORD_MNEM_SUFFIX)
40fb9820 5599 i.types[op].bitfield.imm32 = 0;
29b0f896 5600 break;
252b5132 5601
29b0f896
AM
5602 case O_absent:
5603 case O_register:
5604 abort ();
5605
5606 /* Symbols and expressions. */
5607 default:
9cd96992
JB
5608 /* Convert symbolic operand to proper sizes for matching, but don't
5609 prevent matching a set of insns that only supports sizes other
5610 than those matching the insn suffix. */
5611 {
40fb9820 5612 i386_operand_type mask, allowed;
d3ce72d0 5613 const insn_template *t;
9cd96992 5614
0dfbf9d7
L
5615 operand_type_set (&mask, 0);
5616 operand_type_set (&allowed, 0);
40fb9820 5617
4eed87de
AM
5618 for (t = current_templates->start;
5619 t < current_templates->end;
5620 ++t)
bab6aec1
JB
5621 {
5622 allowed = operand_type_or (allowed, t->operand_types[op]);
5623 allowed = operand_type_and (allowed, anyimm);
5624 }
9cd96992
JB
5625 switch (guess_suffix)
5626 {
5627 case QWORD_MNEM_SUFFIX:
40fb9820
L
5628 mask.bitfield.imm64 = 1;
5629 mask.bitfield.imm32s = 1;
9cd96992
JB
5630 break;
5631 case LONG_MNEM_SUFFIX:
40fb9820 5632 mask.bitfield.imm32 = 1;
9cd96992
JB
5633 break;
5634 case WORD_MNEM_SUFFIX:
40fb9820 5635 mask.bitfield.imm16 = 1;
9cd96992
JB
5636 break;
5637 case BYTE_MNEM_SUFFIX:
40fb9820 5638 mask.bitfield.imm8 = 1;
9cd96992
JB
5639 break;
5640 default:
9cd96992
JB
5641 break;
5642 }
c6fb90c8 5643 allowed = operand_type_and (mask, allowed);
0dfbf9d7 5644 if (!operand_type_all_zero (&allowed))
c6fb90c8 5645 i.types[op] = operand_type_and (i.types[op], mask);
9cd96992 5646 }
29b0f896 5647 break;
252b5132 5648 }
29b0f896
AM
5649 }
5650}
47926f60 5651
29b0f896
AM
5652/* Try to use the smallest displacement type too. */
5653static void
e3bb37b5 5654optimize_disp (void)
29b0f896
AM
5655{
5656 int op;
3e73aa7c 5657
29b0f896 5658 for (op = i.operands; --op >= 0;)
40fb9820 5659 if (operand_type_check (i.types[op], disp))
252b5132 5660 {
b300c311 5661 if (i.op[op].disps->X_op == O_constant)
252b5132 5662 {
91d6fa6a 5663 offsetT op_disp = i.op[op].disps->X_add_number;
29b0f896 5664
40fb9820 5665 if (i.types[op].bitfield.disp16
91d6fa6a 5666 && (op_disp & ~(offsetT) 0xffff) == 0)
b300c311
L
5667 {
5668 /* If this operand is at most 16 bits, convert
5669 to a signed 16 bit number and don't use 64bit
5670 displacement. */
91d6fa6a 5671 op_disp = (((op_disp & 0xffff) ^ 0x8000) - 0x8000);
40fb9820 5672 i.types[op].bitfield.disp64 = 0;
b300c311 5673 }
a28def75
L
5674#ifdef BFD64
5675 /* Optimize 64-bit displacement to 32-bit for 64-bit BFD. */
40fb9820 5676 if (i.types[op].bitfield.disp32
91d6fa6a 5677 && (op_disp & ~(((offsetT) 2 << 31) - 1)) == 0)
b300c311
L
5678 {
5679 /* If this operand is at most 32 bits, convert
5680 to a signed 32 bit number and don't use 64bit
5681 displacement. */
91d6fa6a
NC
5682 op_disp &= (((offsetT) 2 << 31) - 1);
5683 op_disp = (op_disp ^ ((offsetT) 1 << 31)) - ((addressT) 1 << 31);
40fb9820 5684 i.types[op].bitfield.disp64 = 0;
b300c311 5685 }
a28def75 5686#endif
91d6fa6a 5687 if (!op_disp && i.types[op].bitfield.baseindex)
b300c311 5688 {
40fb9820
L
5689 i.types[op].bitfield.disp8 = 0;
5690 i.types[op].bitfield.disp16 = 0;
5691 i.types[op].bitfield.disp32 = 0;
5692 i.types[op].bitfield.disp32s = 0;
5693 i.types[op].bitfield.disp64 = 0;
b300c311
L
5694 i.op[op].disps = 0;
5695 i.disp_operands--;
5696 }
5697 else if (flag_code == CODE_64BIT)
5698 {
91d6fa6a 5699 if (fits_in_signed_long (op_disp))
28a9d8f5 5700 {
40fb9820
L
5701 i.types[op].bitfield.disp64 = 0;
5702 i.types[op].bitfield.disp32s = 1;
28a9d8f5 5703 }
0e1147d9 5704 if (i.prefix[ADDR_PREFIX]
91d6fa6a 5705 && fits_in_unsigned_long (op_disp))
40fb9820 5706 i.types[op].bitfield.disp32 = 1;
b300c311 5707 }
40fb9820
L
5708 if ((i.types[op].bitfield.disp32
5709 || i.types[op].bitfield.disp32s
5710 || i.types[op].bitfield.disp16)
b5014f7a 5711 && fits_in_disp8 (op_disp))
40fb9820 5712 i.types[op].bitfield.disp8 = 1;
252b5132 5713 }
67a4f2b7
AO
5714 else if (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
5715 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL)
5716 {
5717 fix_new_exp (frag_now, frag_more (0) - frag_now->fr_literal, 0,
5718 i.op[op].disps, 0, i.reloc[op]);
40fb9820
L
5719 i.types[op].bitfield.disp8 = 0;
5720 i.types[op].bitfield.disp16 = 0;
5721 i.types[op].bitfield.disp32 = 0;
5722 i.types[op].bitfield.disp32s = 0;
5723 i.types[op].bitfield.disp64 = 0;
67a4f2b7
AO
5724 }
5725 else
b300c311 5726 /* We only support 64bit displacement on constants. */
40fb9820 5727 i.types[op].bitfield.disp64 = 0;
252b5132 5728 }
29b0f896
AM
5729}
5730
4a1b91ea
L
5731/* Return 1 if there is a match in broadcast bytes between operand
5732 GIVEN and instruction template T. */
5733
5734static INLINE int
5735match_broadcast_size (const insn_template *t, unsigned int given)
5736{
5737 return ((t->opcode_modifier.broadcast == BYTE_BROADCAST
5738 && i.types[given].bitfield.byte)
5739 || (t->opcode_modifier.broadcast == WORD_BROADCAST
5740 && i.types[given].bitfield.word)
5741 || (t->opcode_modifier.broadcast == DWORD_BROADCAST
5742 && i.types[given].bitfield.dword)
5743 || (t->opcode_modifier.broadcast == QWORD_BROADCAST
5744 && i.types[given].bitfield.qword));
5745}
5746
6c30d220
L
5747/* Check if operands are valid for the instruction. */
5748
5749static int
5750check_VecOperands (const insn_template *t)
5751{
43234a1e 5752 unsigned int op;
e2195274 5753 i386_cpu_flags cpu;
e2195274
JB
5754
5755 /* Templates allowing for ZMMword as well as YMMword and/or XMMword for
5756 any one operand are implicity requiring AVX512VL support if the actual
5757 operand size is YMMword or XMMword. Since this function runs after
5758 template matching, there's no need to check for YMMword/XMMword in
5759 the template. */
5760 cpu = cpu_flags_and (t->cpu_flags, avx512);
5761 if (!cpu_flags_all_zero (&cpu)
5762 && !t->cpu_flags.bitfield.cpuavx512vl
5763 && !cpu_arch_flags.bitfield.cpuavx512vl)
5764 {
5765 for (op = 0; op < t->operands; ++op)
5766 {
5767 if (t->operand_types[op].bitfield.zmmword
5768 && (i.types[op].bitfield.ymmword
5769 || i.types[op].bitfield.xmmword))
5770 {
5771 i.error = unsupported;
5772 return 1;
5773 }
5774 }
5775 }
43234a1e 5776
6c30d220 5777 /* Without VSIB byte, we can't have a vector register for index. */
63112cd6 5778 if (!t->opcode_modifier.sib
6c30d220 5779 && i.index_reg
1b54b8d7
JB
5780 && (i.index_reg->reg_type.bitfield.xmmword
5781 || i.index_reg->reg_type.bitfield.ymmword
5782 || i.index_reg->reg_type.bitfield.zmmword))
6c30d220
L
5783 {
5784 i.error = unsupported_vector_index_register;
5785 return 1;
5786 }
5787
ad8ecc81
MZ
5788 /* Check if default mask is allowed. */
5789 if (t->opcode_modifier.nodefmask
5790 && (!i.mask || i.mask->mask->reg_num == 0))
5791 {
5792 i.error = no_default_mask;
5793 return 1;
5794 }
5795
7bab8ab5
JB
5796 /* For VSIB byte, we need a vector register for index, and all vector
5797 registers must be distinct. */
260cd341 5798 if (t->opcode_modifier.sib && t->opcode_modifier.sib != SIBMEM)
7bab8ab5
JB
5799 {
5800 if (!i.index_reg
63112cd6 5801 || !((t->opcode_modifier.sib == VECSIB128
1b54b8d7 5802 && i.index_reg->reg_type.bitfield.xmmword)
63112cd6 5803 || (t->opcode_modifier.sib == VECSIB256
1b54b8d7 5804 && i.index_reg->reg_type.bitfield.ymmword)
63112cd6 5805 || (t->opcode_modifier.sib == VECSIB512
1b54b8d7 5806 && i.index_reg->reg_type.bitfield.zmmword)))
7bab8ab5
JB
5807 {
5808 i.error = invalid_vsib_address;
5809 return 1;
5810 }
5811
43234a1e
L
5812 gas_assert (i.reg_operands == 2 || i.mask);
5813 if (i.reg_operands == 2 && !i.mask)
5814 {
3528c362 5815 gas_assert (i.types[0].bitfield.class == RegSIMD);
1b54b8d7
JB
5816 gas_assert (i.types[0].bitfield.xmmword
5817 || i.types[0].bitfield.ymmword);
3528c362 5818 gas_assert (i.types[2].bitfield.class == RegSIMD);
1b54b8d7
JB
5819 gas_assert (i.types[2].bitfield.xmmword
5820 || i.types[2].bitfield.ymmword);
43234a1e
L
5821 if (operand_check == check_none)
5822 return 0;
5823 if (register_number (i.op[0].regs)
5824 != register_number (i.index_reg)
5825 && register_number (i.op[2].regs)
5826 != register_number (i.index_reg)
5827 && register_number (i.op[0].regs)
5828 != register_number (i.op[2].regs))
5829 return 0;
5830 if (operand_check == check_error)
5831 {
5832 i.error = invalid_vector_register_set;
5833 return 1;
5834 }
5835 as_warn (_("mask, index, and destination registers should be distinct"));
5836 }
8444f82a
MZ
5837 else if (i.reg_operands == 1 && i.mask)
5838 {
3528c362 5839 if (i.types[1].bitfield.class == RegSIMD
1b54b8d7
JB
5840 && (i.types[1].bitfield.xmmword
5841 || i.types[1].bitfield.ymmword
5842 || i.types[1].bitfield.zmmword)
8444f82a
MZ
5843 && (register_number (i.op[1].regs)
5844 == register_number (i.index_reg)))
5845 {
5846 if (operand_check == check_error)
5847 {
5848 i.error = invalid_vector_register_set;
5849 return 1;
5850 }
5851 if (operand_check != check_none)
5852 as_warn (_("index and destination registers should be distinct"));
5853 }
5854 }
43234a1e 5855 }
7bab8ab5 5856
260cd341
LC
5857 /* For AMX instructions with three tmmword operands, all tmmword operand must be
5858 distinct */
5859 if (t->operand_types[0].bitfield.tmmword
5860 && i.reg_operands == 3)
5861 {
5862 if (register_number (i.op[0].regs)
5863 == register_number (i.op[1].regs)
5864 || register_number (i.op[0].regs)
5865 == register_number (i.op[2].regs)
5866 || register_number (i.op[1].regs)
5867 == register_number (i.op[2].regs))
5868 {
5869 i.error = invalid_tmm_register_set;
5870 return 1;
5871 }
5872 }
5873
43234a1e
L
5874 /* Check if broadcast is supported by the instruction and is applied
5875 to the memory operand. */
5876 if (i.broadcast)
5877 {
8e6e0792 5878 i386_operand_type type, overlap;
43234a1e
L
5879
5880 /* Check if specified broadcast is supported in this instruction,
4a1b91ea 5881 and its broadcast bytes match the memory operand. */
32546502 5882 op = i.broadcast->operand;
8e6e0792 5883 if (!t->opcode_modifier.broadcast
c48dadc9 5884 || !(i.flags[op] & Operand_Mem)
c39e5b26 5885 || (!i.types[op].bitfield.unspecified
4a1b91ea 5886 && !match_broadcast_size (t, op)))
43234a1e
L
5887 {
5888 bad_broadcast:
5889 i.error = unsupported_broadcast;
5890 return 1;
5891 }
8e6e0792 5892
4a1b91ea
L
5893 i.broadcast->bytes = ((1 << (t->opcode_modifier.broadcast - 1))
5894 * i.broadcast->type);
8e6e0792 5895 operand_type_set (&type, 0);
4a1b91ea 5896 switch (i.broadcast->bytes)
8e6e0792 5897 {
4a1b91ea
L
5898 case 2:
5899 type.bitfield.word = 1;
5900 break;
5901 case 4:
5902 type.bitfield.dword = 1;
5903 break;
8e6e0792
JB
5904 case 8:
5905 type.bitfield.qword = 1;
5906 break;
5907 case 16:
5908 type.bitfield.xmmword = 1;
5909 break;
5910 case 32:
5911 type.bitfield.ymmword = 1;
5912 break;
5913 case 64:
5914 type.bitfield.zmmword = 1;
5915 break;
5916 default:
5917 goto bad_broadcast;
5918 }
5919
5920 overlap = operand_type_and (type, t->operand_types[op]);
bc49bfd8
JB
5921 if (t->operand_types[op].bitfield.class == RegSIMD
5922 && t->operand_types[op].bitfield.byte
5923 + t->operand_types[op].bitfield.word
5924 + t->operand_types[op].bitfield.dword
5925 + t->operand_types[op].bitfield.qword > 1)
5926 {
5927 overlap.bitfield.xmmword = 0;
5928 overlap.bitfield.ymmword = 0;
5929 overlap.bitfield.zmmword = 0;
5930 }
8e6e0792
JB
5931 if (operand_type_all_zero (&overlap))
5932 goto bad_broadcast;
5933
5934 if (t->opcode_modifier.checkregsize)
5935 {
5936 unsigned int j;
5937
e2195274 5938 type.bitfield.baseindex = 1;
8e6e0792
JB
5939 for (j = 0; j < i.operands; ++j)
5940 {
5941 if (j != op
5942 && !operand_type_register_match(i.types[j],
5943 t->operand_types[j],
5944 type,
5945 t->operand_types[op]))
5946 goto bad_broadcast;
5947 }
5948 }
43234a1e
L
5949 }
5950 /* If broadcast is supported in this instruction, we need to check if
5951 operand of one-element size isn't specified without broadcast. */
5952 else if (t->opcode_modifier.broadcast && i.mem_operands)
5953 {
5954 /* Find memory operand. */
5955 for (op = 0; op < i.operands; op++)
8dc0818e 5956 if (i.flags[op] & Operand_Mem)
43234a1e
L
5957 break;
5958 gas_assert (op < i.operands);
5959 /* Check size of the memory operand. */
4a1b91ea 5960 if (match_broadcast_size (t, op))
43234a1e
L
5961 {
5962 i.error = broadcast_needed;
5963 return 1;
5964 }
5965 }
c39e5b26
JB
5966 else
5967 op = MAX_OPERANDS - 1; /* Avoid uninitialized variable warning. */
43234a1e
L
5968
5969 /* Check if requested masking is supported. */
ae2387fe 5970 if (i.mask)
43234a1e 5971 {
ae2387fe
JB
5972 switch (t->opcode_modifier.masking)
5973 {
5974 case BOTH_MASKING:
5975 break;
5976 case MERGING_MASKING:
5977 if (i.mask->zeroing)
5978 {
5979 case 0:
5980 i.error = unsupported_masking;
5981 return 1;
5982 }
5983 break;
5984 case DYNAMIC_MASKING:
5985 /* Memory destinations allow only merging masking. */
5986 if (i.mask->zeroing && i.mem_operands)
5987 {
5988 /* Find memory operand. */
5989 for (op = 0; op < i.operands; op++)
c48dadc9 5990 if (i.flags[op] & Operand_Mem)
ae2387fe
JB
5991 break;
5992 gas_assert (op < i.operands);
5993 if (op == i.operands - 1)
5994 {
5995 i.error = unsupported_masking;
5996 return 1;
5997 }
5998 }
5999 break;
6000 default:
6001 abort ();
6002 }
43234a1e
L
6003 }
6004
6005 /* Check if masking is applied to dest operand. */
6006 if (i.mask && (i.mask->operand != (int) (i.operands - 1)))
6007 {
6008 i.error = mask_not_on_destination;
6009 return 1;
6010 }
6011
43234a1e
L
6012 /* Check RC/SAE. */
6013 if (i.rounding)
6014 {
a80195f1
JB
6015 if (!t->opcode_modifier.sae
6016 || (i.rounding->type != saeonly && !t->opcode_modifier.staticrounding))
43234a1e
L
6017 {
6018 i.error = unsupported_rc_sae;
6019 return 1;
6020 }
6021 /* If the instruction has several immediate operands and one of
6022 them is rounding, the rounding operand should be the last
6023 immediate operand. */
6024 if (i.imm_operands > 1
6025 && i.rounding->operand != (int) (i.imm_operands - 1))
7bab8ab5 6026 {
43234a1e 6027 i.error = rc_sae_operand_not_last_imm;
7bab8ab5
JB
6028 return 1;
6029 }
6c30d220
L
6030 }
6031
da4977e0
JB
6032 /* Check the special Imm4 cases; must be the first operand. */
6033 if (t->cpu_flags.bitfield.cpuxop && t->operands == 5)
6034 {
6035 if (i.op[0].imms->X_op != O_constant
6036 || !fits_in_imm4 (i.op[0].imms->X_add_number))
6037 {
6038 i.error = bad_imm4;
6039 return 1;
6040 }
6041
6042 /* Turn off Imm<N> so that update_imm won't complain. */
6043 operand_type_set (&i.types[0], 0);
6044 }
6045
43234a1e 6046 /* Check vector Disp8 operand. */
b5014f7a
JB
6047 if (t->opcode_modifier.disp8memshift
6048 && i.disp_encoding != disp_encoding_32bit)
43234a1e
L
6049 {
6050 if (i.broadcast)
4a1b91ea 6051 i.memshift = t->opcode_modifier.broadcast - 1;
7091c612 6052 else if (t->opcode_modifier.disp8memshift != DISP8_SHIFT_VL)
43234a1e 6053 i.memshift = t->opcode_modifier.disp8memshift;
7091c612
JB
6054 else
6055 {
6056 const i386_operand_type *type = NULL;
6057
6058 i.memshift = 0;
6059 for (op = 0; op < i.operands; op++)
8dc0818e 6060 if (i.flags[op] & Operand_Mem)
7091c612 6061 {
4174bfff
JB
6062 if (t->opcode_modifier.evex == EVEXLIG)
6063 i.memshift = 2 + (i.suffix == QWORD_MNEM_SUFFIX);
6064 else if (t->operand_types[op].bitfield.xmmword
6065 + t->operand_types[op].bitfield.ymmword
6066 + t->operand_types[op].bitfield.zmmword <= 1)
7091c612
JB
6067 type = &t->operand_types[op];
6068 else if (!i.types[op].bitfield.unspecified)
6069 type = &i.types[op];
6070 }
3528c362 6071 else if (i.types[op].bitfield.class == RegSIMD
4174bfff 6072 && t->opcode_modifier.evex != EVEXLIG)
7091c612
JB
6073 {
6074 if (i.types[op].bitfield.zmmword)
6075 i.memshift = 6;
6076 else if (i.types[op].bitfield.ymmword && i.memshift < 5)
6077 i.memshift = 5;
6078 else if (i.types[op].bitfield.xmmword && i.memshift < 4)
6079 i.memshift = 4;
6080 }
6081
6082 if (type)
6083 {
6084 if (type->bitfield.zmmword)
6085 i.memshift = 6;
6086 else if (type->bitfield.ymmword)
6087 i.memshift = 5;
6088 else if (type->bitfield.xmmword)
6089 i.memshift = 4;
6090 }
6091
6092 /* For the check in fits_in_disp8(). */
6093 if (i.memshift == 0)
6094 i.memshift = -1;
6095 }
43234a1e
L
6096
6097 for (op = 0; op < i.operands; op++)
6098 if (operand_type_check (i.types[op], disp)
6099 && i.op[op].disps->X_op == O_constant)
6100 {
b5014f7a 6101 if (fits_in_disp8 (i.op[op].disps->X_add_number))
43234a1e 6102 {
b5014f7a
JB
6103 i.types[op].bitfield.disp8 = 1;
6104 return 0;
43234a1e 6105 }
b5014f7a 6106 i.types[op].bitfield.disp8 = 0;
43234a1e
L
6107 }
6108 }
b5014f7a
JB
6109
6110 i.memshift = 0;
43234a1e 6111
6c30d220
L
6112 return 0;
6113}
6114
da4977e0 6115/* Check if encoding requirements are met by the instruction. */
a683cc34
SP
6116
6117static int
da4977e0 6118VEX_check_encoding (const insn_template *t)
a683cc34 6119{
da4977e0
JB
6120 if (i.vec_encoding == vex_encoding_error)
6121 {
6122 i.error = unsupported;
6123 return 1;
6124 }
6125
86fa6981 6126 if (i.vec_encoding == vex_encoding_evex)
43234a1e 6127 {
86fa6981 6128 /* This instruction must be encoded with EVEX prefix. */
e771e7c9 6129 if (!is_evex_encoding (t))
86fa6981
L
6130 {
6131 i.error = unsupported;
6132 return 1;
6133 }
6134 return 0;
43234a1e
L
6135 }
6136
a683cc34 6137 if (!t->opcode_modifier.vex)
86fa6981
L
6138 {
6139 /* This instruction template doesn't have VEX prefix. */
6140 if (i.vec_encoding != vex_encoding_default)
6141 {
6142 i.error = unsupported;
6143 return 1;
6144 }
6145 return 0;
6146 }
a683cc34 6147
a683cc34
SP
6148 return 0;
6149}
6150
d3ce72d0 6151static const insn_template *
83b16ac6 6152match_template (char mnem_suffix)
29b0f896
AM
6153{
6154 /* Points to template once we've found it. */
d3ce72d0 6155 const insn_template *t;
40fb9820 6156 i386_operand_type overlap0, overlap1, overlap2, overlap3;
c0f3af97 6157 i386_operand_type overlap4;
29b0f896 6158 unsigned int found_reverse_match;
dc2be329 6159 i386_opcode_modifier suffix_check;
40fb9820 6160 i386_operand_type operand_types [MAX_OPERANDS];
539e75ad 6161 int addr_prefix_disp;
45a4bb20 6162 unsigned int j, size_match, check_register;
5614d22c 6163 enum i386_error specific_error = 0;
29b0f896 6164
c0f3af97
L
6165#if MAX_OPERANDS != 5
6166# error "MAX_OPERANDS must be 5."
f48ff2ae
L
6167#endif
6168
29b0f896 6169 found_reverse_match = 0;
539e75ad 6170 addr_prefix_disp = -1;
40fb9820 6171
dc2be329 6172 /* Prepare for mnemonic suffix check. */
40fb9820 6173 memset (&suffix_check, 0, sizeof (suffix_check));
dc2be329
L
6174 switch (mnem_suffix)
6175 {
6176 case BYTE_MNEM_SUFFIX:
6177 suffix_check.no_bsuf = 1;
6178 break;
6179 case WORD_MNEM_SUFFIX:
6180 suffix_check.no_wsuf = 1;
6181 break;
6182 case SHORT_MNEM_SUFFIX:
6183 suffix_check.no_ssuf = 1;
6184 break;
6185 case LONG_MNEM_SUFFIX:
6186 suffix_check.no_lsuf = 1;
6187 break;
6188 case QWORD_MNEM_SUFFIX:
6189 suffix_check.no_qsuf = 1;
6190 break;
6191 default:
6192 /* NB: In Intel syntax, normally we can check for memory operand
6193 size when there is no mnemonic suffix. But jmp and call have
6194 2 different encodings with Dword memory operand size, one with
6195 No_ldSuf and the other without. i.suffix is set to
6196 LONG_DOUBLE_MNEM_SUFFIX to skip the one with No_ldSuf. */
6197 if (i.suffix == LONG_DOUBLE_MNEM_SUFFIX)
6198 suffix_check.no_ldsuf = 1;
83b16ac6
JB
6199 }
6200
01559ecc
L
6201 /* Must have right number of operands. */
6202 i.error = number_of_operands_mismatch;
6203
45aa61fe 6204 for (t = current_templates->start; t < current_templates->end; t++)
29b0f896 6205 {
539e75ad 6206 addr_prefix_disp = -1;
dbbc8b7e 6207 found_reverse_match = 0;
539e75ad 6208
29b0f896
AM
6209 if (i.operands != t->operands)
6210 continue;
6211
50aecf8c 6212 /* Check processor support. */
a65babc9 6213 i.error = unsupported;
45a4bb20 6214 if (cpu_flags_match (t) != CPU_FLAGS_PERFECT_MATCH)
50aecf8c
L
6215 continue;
6216
57392598
CL
6217 /* Check Pseudo Prefix. */
6218 i.error = unsupported;
6219 if (t->opcode_modifier.pseudovexprefix
6220 && !(i.vec_encoding == vex_encoding_vex
6221 || i.vec_encoding == vex_encoding_vex3))
6222 continue;
6223
e1d4d893 6224 /* Check AT&T mnemonic. */
a65babc9 6225 i.error = unsupported_with_intel_mnemonic;
e1d4d893 6226 if (intel_mnemonic && t->opcode_modifier.attmnemonic)
1efbbeb4
L
6227 continue;
6228
4b5aaf5f 6229 /* Check AT&T/Intel syntax. */
a65babc9 6230 i.error = unsupported_syntax;
5c07affc 6231 if ((intel_syntax && t->opcode_modifier.attsyntax)
4b5aaf5f 6232 || (!intel_syntax && t->opcode_modifier.intelsyntax))
1efbbeb4
L
6233 continue;
6234
4b5aaf5f
L
6235 /* Check Intel64/AMD64 ISA. */
6236 switch (isa64)
6237 {
6238 default:
6239 /* Default: Don't accept Intel64. */
6240 if (t->opcode_modifier.isa64 == INTEL64)
6241 continue;
6242 break;
6243 case amd64:
6244 /* -mamd64: Don't accept Intel64 and Intel64 only. */
6245 if (t->opcode_modifier.isa64 >= INTEL64)
6246 continue;
6247 break;
6248 case intel64:
6249 /* -mintel64: Don't accept AMD64. */
5990e377 6250 if (t->opcode_modifier.isa64 == AMD64 && flag_code == CODE_64BIT)
4b5aaf5f
L
6251 continue;
6252 break;
6253 }
6254
dc2be329 6255 /* Check the suffix. */
a65babc9 6256 i.error = invalid_instruction_suffix;
dc2be329
L
6257 if ((t->opcode_modifier.no_bsuf && suffix_check.no_bsuf)
6258 || (t->opcode_modifier.no_wsuf && suffix_check.no_wsuf)
6259 || (t->opcode_modifier.no_lsuf && suffix_check.no_lsuf)
6260 || (t->opcode_modifier.no_ssuf && suffix_check.no_ssuf)
6261 || (t->opcode_modifier.no_qsuf && suffix_check.no_qsuf)
6262 || (t->opcode_modifier.no_ldsuf && suffix_check.no_ldsuf))
83b16ac6 6263 continue;
29b0f896 6264
3ac21baa
JB
6265 size_match = operand_size_match (t);
6266 if (!size_match)
7d5e4556 6267 continue;
539e75ad 6268
6f2f06be
JB
6269 /* This is intentionally not
6270
0cfa3eb3 6271 if (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE))
6f2f06be
JB
6272
6273 as the case of a missing * on the operand is accepted (perhaps with
6274 a warning, issued further down). */
0cfa3eb3 6275 if (i.jumpabsolute && t->opcode_modifier.jump != JUMP_ABSOLUTE)
6f2f06be
JB
6276 {
6277 i.error = operand_type_mismatch;
6278 continue;
6279 }
6280
5c07affc
L
6281 for (j = 0; j < MAX_OPERANDS; j++)
6282 operand_types[j] = t->operand_types[j];
6283
e365e234
JB
6284 /* In general, don't allow
6285 - 64-bit operands outside of 64-bit mode,
6286 - 32-bit operands on pre-386. */
4873e243 6287 j = i.imm_operands + (t->operands > i.imm_operands + 1);
e365e234
JB
6288 if (((i.suffix == QWORD_MNEM_SUFFIX
6289 && flag_code != CODE_64BIT
8b65b895 6290 && !(t->base_opcode == 0xfc7
70e95837 6291 && i.tm.opcode_modifier.opcodeprefix == PREFIX_NONE
8b65b895 6292 && t->extension_opcode == 1) /* cmpxchg8b */)
e365e234
JB
6293 || (i.suffix == LONG_MNEM_SUFFIX
6294 && !cpu_arch_flags.bitfield.cpui386))
45aa61fe 6295 && (intel_syntax
3cd7f3e3 6296 ? (t->opcode_modifier.mnemonicsize != IGNORESIZE
45aa61fe
AM
6297 && !intel_float_operand (t->name))
6298 : intel_float_operand (t->name) != 2)
4873e243
JB
6299 && (t->operands == i.imm_operands
6300 || (operand_types[i.imm_operands].bitfield.class != RegMMX
6301 && operand_types[i.imm_operands].bitfield.class != RegSIMD
6302 && operand_types[i.imm_operands].bitfield.class != RegMask)
6303 || (operand_types[j].bitfield.class != RegMMX
6304 && operand_types[j].bitfield.class != RegSIMD
6305 && operand_types[j].bitfield.class != RegMask))
63112cd6 6306 && !t->opcode_modifier.sib)
192dc9c6
JB
6307 continue;
6308
29b0f896 6309 /* Do not verify operands when there are none. */
e365e234 6310 if (!t->operands)
da4977e0
JB
6311 {
6312 if (VEX_check_encoding (t))
6313 {
6314 specific_error = i.error;
6315 continue;
6316 }
6317
6318 /* We've found a match; break out of loop. */
6319 break;
6320 }
252b5132 6321
48bcea9f
JB
6322 if (!t->opcode_modifier.jump
6323 || t->opcode_modifier.jump == JUMP_ABSOLUTE)
6324 {
6325 /* There should be only one Disp operand. */
6326 for (j = 0; j < MAX_OPERANDS; j++)
6327 if (operand_type_check (operand_types[j], disp))
539e75ad 6328 break;
48bcea9f
JB
6329 if (j < MAX_OPERANDS)
6330 {
6331 bfd_boolean override = (i.prefix[ADDR_PREFIX] != 0);
6332
6333 addr_prefix_disp = j;
6334
6335 /* Address size prefix will turn Disp64/Disp32S/Disp32/Disp16
6336 operand into Disp32/Disp32/Disp16/Disp32 operand. */
6337 switch (flag_code)
40fb9820 6338 {
48bcea9f
JB
6339 case CODE_16BIT:
6340 override = !override;
6341 /* Fall through. */
6342 case CODE_32BIT:
6343 if (operand_types[j].bitfield.disp32
6344 && operand_types[j].bitfield.disp16)
40fb9820 6345 {
48bcea9f
JB
6346 operand_types[j].bitfield.disp16 = override;
6347 operand_types[j].bitfield.disp32 = !override;
40fb9820 6348 }
48bcea9f
JB
6349 operand_types[j].bitfield.disp32s = 0;
6350 operand_types[j].bitfield.disp64 = 0;
6351 break;
6352
6353 case CODE_64BIT:
6354 if (operand_types[j].bitfield.disp32s
6355 || operand_types[j].bitfield.disp64)
40fb9820 6356 {
48bcea9f
JB
6357 operand_types[j].bitfield.disp64 &= !override;
6358 operand_types[j].bitfield.disp32s &= !override;
6359 operand_types[j].bitfield.disp32 = override;
40fb9820 6360 }
48bcea9f
JB
6361 operand_types[j].bitfield.disp16 = 0;
6362 break;
40fb9820 6363 }
539e75ad 6364 }
48bcea9f 6365 }
539e75ad 6366
02a86693 6367 /* Force 0x8b encoding for "mov foo@GOT, %eax". */
35648716
JB
6368 if (i.reloc[0] == BFD_RELOC_386_GOT32
6369 && t->base_opcode == 0xa0
6370 && t->opcode_modifier.opcodespace == SPACE_BASE)
02a86693
L
6371 continue;
6372
56ffb741 6373 /* We check register size if needed. */
e2195274
JB
6374 if (t->opcode_modifier.checkregsize)
6375 {
6376 check_register = (1 << t->operands) - 1;
6377 if (i.broadcast)
6378 check_register &= ~(1 << i.broadcast->operand);
6379 }
6380 else
6381 check_register = 0;
6382
c6fb90c8 6383 overlap0 = operand_type_and (i.types[0], operand_types[0]);
29b0f896
AM
6384 switch (t->operands)
6385 {
6386 case 1:
40fb9820 6387 if (!operand_type_match (overlap0, i.types[0]))
29b0f896
AM
6388 continue;
6389 break;
6390 case 2:
33eaf5de 6391 /* xchg %eax, %eax is a special case. It is an alias for nop
8b38ad71
L
6392 only in 32bit mode and we can use opcode 0x90. In 64bit
6393 mode, we can't use 0x90 for xchg %eax, %eax since it should
6394 zero-extend %eax to %rax. */
6395 if (flag_code == CODE_64BIT
6396 && t->base_opcode == 0x90
35648716 6397 && t->opcode_modifier.opcodespace == SPACE_BASE
75e5731b
JB
6398 && i.types[0].bitfield.instance == Accum
6399 && i.types[0].bitfield.dword
6400 && i.types[1].bitfield.instance == Accum
6401 && i.types[1].bitfield.dword)
8b38ad71 6402 continue;
1212781b
JB
6403 /* xrelease mov %eax, <disp> is another special case. It must not
6404 match the accumulator-only encoding of mov. */
6405 if (flag_code != CODE_64BIT
6406 && i.hle_prefix
6407 && t->base_opcode == 0xa0
35648716 6408 && t->opcode_modifier.opcodespace == SPACE_BASE
75e5731b 6409 && i.types[0].bitfield.instance == Accum
8dc0818e 6410 && (i.flags[1] & Operand_Mem))
1212781b 6411 continue;
f5eb1d70
JB
6412 /* Fall through. */
6413
6414 case 3:
3ac21baa
JB
6415 if (!(size_match & MATCH_STRAIGHT))
6416 goto check_reverse;
64c49ab3
JB
6417 /* Reverse direction of operands if swapping is possible in the first
6418 place (operands need to be symmetric) and
6419 - the load form is requested, and the template is a store form,
6420 - the store form is requested, and the template is a load form,
6421 - the non-default (swapped) form is requested. */
6422 overlap1 = operand_type_and (operand_types[0], operand_types[1]);
f5eb1d70 6423 if (t->opcode_modifier.d && i.reg_operands == i.operands
64c49ab3
JB
6424 && !operand_type_all_zero (&overlap1))
6425 switch (i.dir_encoding)
6426 {
6427 case dir_encoding_load:
6428 if (operand_type_check (operand_types[i.operands - 1], anymem)
dfd69174 6429 || t->opcode_modifier.regmem)
64c49ab3
JB
6430 goto check_reverse;
6431 break;
6432
6433 case dir_encoding_store:
6434 if (!operand_type_check (operand_types[i.operands - 1], anymem)
dfd69174 6435 && !t->opcode_modifier.regmem)
64c49ab3
JB
6436 goto check_reverse;
6437 break;
6438
6439 case dir_encoding_swap:
6440 goto check_reverse;
6441
6442 case dir_encoding_default:
6443 break;
6444 }
86fa6981 6445 /* If we want store form, we skip the current load. */
64c49ab3
JB
6446 if ((i.dir_encoding == dir_encoding_store
6447 || i.dir_encoding == dir_encoding_swap)
86fa6981
L
6448 && i.mem_operands == 0
6449 && t->opcode_modifier.load)
fa99fab2 6450 continue;
1a0670f3 6451 /* Fall through. */
f48ff2ae 6452 case 4:
c0f3af97 6453 case 5:
c6fb90c8 6454 overlap1 = operand_type_and (i.types[1], operand_types[1]);
40fb9820
L
6455 if (!operand_type_match (overlap0, i.types[0])
6456 || !operand_type_match (overlap1, i.types[1])
e2195274 6457 || ((check_register & 3) == 3
dc821c5f 6458 && !operand_type_register_match (i.types[0],
40fb9820 6459 operand_types[0],
dc821c5f 6460 i.types[1],
40fb9820 6461 operand_types[1])))
29b0f896
AM
6462 {
6463 /* Check if other direction is valid ... */
38e314eb 6464 if (!t->opcode_modifier.d)
29b0f896
AM
6465 continue;
6466
dc1e8a47 6467 check_reverse:
3ac21baa
JB
6468 if (!(size_match & MATCH_REVERSE))
6469 continue;
29b0f896 6470 /* Try reversing direction of operands. */
f5eb1d70
JB
6471 overlap0 = operand_type_and (i.types[0], operand_types[i.operands - 1]);
6472 overlap1 = operand_type_and (i.types[i.operands - 1], operand_types[0]);
40fb9820 6473 if (!operand_type_match (overlap0, i.types[0])
f5eb1d70 6474 || !operand_type_match (overlap1, i.types[i.operands - 1])
45664ddb 6475 || (check_register
dc821c5f 6476 && !operand_type_register_match (i.types[0],
f5eb1d70
JB
6477 operand_types[i.operands - 1],
6478 i.types[i.operands - 1],
45664ddb 6479 operand_types[0])))
29b0f896
AM
6480 {
6481 /* Does not match either direction. */
6482 continue;
6483 }
38e314eb 6484 /* found_reverse_match holds which of D or FloatR
29b0f896 6485 we've found. */
38e314eb
JB
6486 if (!t->opcode_modifier.d)
6487 found_reverse_match = 0;
6488 else if (operand_types[0].bitfield.tbyte)
8a2ed489 6489 found_reverse_match = Opcode_FloatD;
dbbc8b7e 6490 else if (operand_types[0].bitfield.xmmword
f5eb1d70 6491 || operand_types[i.operands - 1].bitfield.xmmword
3528c362
JB
6492 || operand_types[0].bitfield.class == RegMMX
6493 || operand_types[i.operands - 1].bitfield.class == RegMMX
dbbc8b7e
JB
6494 || is_any_vex_encoding(t))
6495 found_reverse_match = (t->base_opcode & 0xee) != 0x6e
6496 ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD;
8a2ed489 6497 else
38e314eb 6498 found_reverse_match = Opcode_D;
40fb9820 6499 if (t->opcode_modifier.floatr)
8a2ed489 6500 found_reverse_match |= Opcode_FloatR;
29b0f896 6501 }
f48ff2ae 6502 else
29b0f896 6503 {
f48ff2ae 6504 /* Found a forward 2 operand match here. */
d1cbb4db
L
6505 switch (t->operands)
6506 {
c0f3af97
L
6507 case 5:
6508 overlap4 = operand_type_and (i.types[4],
6509 operand_types[4]);
1a0670f3 6510 /* Fall through. */
d1cbb4db 6511 case 4:
c6fb90c8
L
6512 overlap3 = operand_type_and (i.types[3],
6513 operand_types[3]);
1a0670f3 6514 /* Fall through. */
d1cbb4db 6515 case 3:
c6fb90c8
L
6516 overlap2 = operand_type_and (i.types[2],
6517 operand_types[2]);
d1cbb4db
L
6518 break;
6519 }
29b0f896 6520
f48ff2ae
L
6521 switch (t->operands)
6522 {
c0f3af97
L
6523 case 5:
6524 if (!operand_type_match (overlap4, i.types[4])
dc821c5f 6525 || !operand_type_register_match (i.types[3],
c0f3af97 6526 operand_types[3],
c0f3af97
L
6527 i.types[4],
6528 operand_types[4]))
6529 continue;
1a0670f3 6530 /* Fall through. */
f48ff2ae 6531 case 4:
40fb9820 6532 if (!operand_type_match (overlap3, i.types[3])
e2195274
JB
6533 || ((check_register & 0xa) == 0xa
6534 && !operand_type_register_match (i.types[1],
f7768225
JB
6535 operand_types[1],
6536 i.types[3],
e2195274
JB
6537 operand_types[3]))
6538 || ((check_register & 0xc) == 0xc
6539 && !operand_type_register_match (i.types[2],
6540 operand_types[2],
6541 i.types[3],
6542 operand_types[3])))
f48ff2ae 6543 continue;
1a0670f3 6544 /* Fall through. */
f48ff2ae
L
6545 case 3:
6546 /* Here we make use of the fact that there are no
23e42951 6547 reverse match 3 operand instructions. */
40fb9820 6548 if (!operand_type_match (overlap2, i.types[2])
e2195274
JB
6549 || ((check_register & 5) == 5
6550 && !operand_type_register_match (i.types[0],
23e42951
JB
6551 operand_types[0],
6552 i.types[2],
e2195274
JB
6553 operand_types[2]))
6554 || ((check_register & 6) == 6
6555 && !operand_type_register_match (i.types[1],
6556 operand_types[1],
6557 i.types[2],
6558 operand_types[2])))
f48ff2ae
L
6559 continue;
6560 break;
6561 }
29b0f896 6562 }
f48ff2ae 6563 /* Found either forward/reverse 2, 3 or 4 operand match here:
29b0f896
AM
6564 slip through to break. */
6565 }
c0f3af97 6566
da4977e0
JB
6567 /* Check if vector operands are valid. */
6568 if (check_VecOperands (t))
6569 {
6570 specific_error = i.error;
6571 continue;
6572 }
6573
6574 /* Check if VEX/EVEX encoding requirements can be satisfied. */
6575 if (VEX_check_encoding (t))
5614d22c
JB
6576 {
6577 specific_error = i.error;
6578 continue;
6579 }
a683cc34 6580
29b0f896
AM
6581 /* We've found a match; break out of loop. */
6582 break;
6583 }
6584
6585 if (t == current_templates->end)
6586 {
6587 /* We found no match. */
a65babc9 6588 const char *err_msg;
5614d22c 6589 switch (specific_error ? specific_error : i.error)
a65babc9
L
6590 {
6591 default:
6592 abort ();
86e026a4 6593 case operand_size_mismatch:
a65babc9
L
6594 err_msg = _("operand size mismatch");
6595 break;
6596 case operand_type_mismatch:
6597 err_msg = _("operand type mismatch");
6598 break;
6599 case register_type_mismatch:
6600 err_msg = _("register type mismatch");
6601 break;
6602 case number_of_operands_mismatch:
6603 err_msg = _("number of operands mismatch");
6604 break;
6605 case invalid_instruction_suffix:
6606 err_msg = _("invalid instruction suffix");
6607 break;
6608 case bad_imm4:
4a2608e3 6609 err_msg = _("constant doesn't fit in 4 bits");
a65babc9 6610 break;
a65babc9
L
6611 case unsupported_with_intel_mnemonic:
6612 err_msg = _("unsupported with Intel mnemonic");
6613 break;
6614 case unsupported_syntax:
6615 err_msg = _("unsupported syntax");
6616 break;
6617 case unsupported:
35262a23 6618 as_bad (_("unsupported instruction `%s'"),
10efe3f6
L
6619 current_templates->start->name);
6620 return NULL;
260cd341
LC
6621 case invalid_sib_address:
6622 err_msg = _("invalid SIB address");
6623 break;
6c30d220
L
6624 case invalid_vsib_address:
6625 err_msg = _("invalid VSIB address");
6626 break;
7bab8ab5
JB
6627 case invalid_vector_register_set:
6628 err_msg = _("mask, index, and destination registers must be distinct");
6629 break;
260cd341
LC
6630 case invalid_tmm_register_set:
6631 err_msg = _("all tmm registers must be distinct");
6632 break;
6c30d220
L
6633 case unsupported_vector_index_register:
6634 err_msg = _("unsupported vector index register");
6635 break;
43234a1e
L
6636 case unsupported_broadcast:
6637 err_msg = _("unsupported broadcast");
6638 break;
43234a1e
L
6639 case broadcast_needed:
6640 err_msg = _("broadcast is needed for operand of such type");
6641 break;
6642 case unsupported_masking:
6643 err_msg = _("unsupported masking");
6644 break;
6645 case mask_not_on_destination:
6646 err_msg = _("mask not on destination operand");
6647 break;
6648 case no_default_mask:
6649 err_msg = _("default mask isn't allowed");
6650 break;
6651 case unsupported_rc_sae:
6652 err_msg = _("unsupported static rounding/sae");
6653 break;
6654 case rc_sae_operand_not_last_imm:
6655 if (intel_syntax)
6656 err_msg = _("RC/SAE operand must precede immediate operands");
6657 else
6658 err_msg = _("RC/SAE operand must follow immediate operands");
6659 break;
6660 case invalid_register_operand:
6661 err_msg = _("invalid register operand");
6662 break;
a65babc9
L
6663 }
6664 as_bad (_("%s for `%s'"), err_msg,
891edac4 6665 current_templates->start->name);
fa99fab2 6666 return NULL;
29b0f896 6667 }
252b5132 6668
29b0f896
AM
6669 if (!quiet_warnings)
6670 {
6671 if (!intel_syntax
0cfa3eb3 6672 && (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE)))
6f2f06be 6673 as_warn (_("indirect %s without `*'"), t->name);
29b0f896 6674
40fb9820 6675 if (t->opcode_modifier.isprefix
3cd7f3e3 6676 && t->opcode_modifier.mnemonicsize == IGNORESIZE)
29b0f896
AM
6677 {
6678 /* Warn them that a data or address size prefix doesn't
6679 affect assembly of the next line of code. */
6680 as_warn (_("stand-alone `%s' prefix"), t->name);
6681 }
6682 }
6683
6684 /* Copy the template we found. */
9a182d04 6685 install_template (t);
539e75ad
L
6686
6687 if (addr_prefix_disp != -1)
6688 i.tm.operand_types[addr_prefix_disp]
6689 = operand_types[addr_prefix_disp];
6690
29b0f896
AM
6691 if (found_reverse_match)
6692 {
dfd69174
JB
6693 /* If we found a reverse match we must alter the opcode direction
6694 bit and clear/flip the regmem modifier one. found_reverse_match
6695 holds bits to change (different for int & float insns). */
29b0f896
AM
6696
6697 i.tm.base_opcode ^= found_reverse_match;
6698
f5eb1d70
JB
6699 i.tm.operand_types[0] = operand_types[i.operands - 1];
6700 i.tm.operand_types[i.operands - 1] = operand_types[0];
dfd69174
JB
6701
6702 /* Certain SIMD insns have their load forms specified in the opcode
6703 table, and hence we need to _set_ RegMem instead of clearing it.
6704 We need to avoid setting the bit though on insns like KMOVW. */
6705 i.tm.opcode_modifier.regmem
6706 = i.tm.opcode_modifier.modrm && i.tm.opcode_modifier.d
6707 && i.tm.operands > 2U - i.tm.opcode_modifier.sse2avx
6708 && !i.tm.opcode_modifier.regmem;
29b0f896
AM
6709 }
6710
fa99fab2 6711 return t;
29b0f896
AM
6712}
6713
6714static int
e3bb37b5 6715check_string (void)
29b0f896 6716{
51c8edf6
JB
6717 unsigned int es_op = i.tm.opcode_modifier.isstring - IS_STRING_ES_OP0;
6718 unsigned int op = i.tm.operand_types[0].bitfield.baseindex ? es_op : 0;
8dc0818e 6719
51c8edf6 6720 if (i.seg[op] != NULL && i.seg[op] != &es)
29b0f896 6721 {
51c8edf6
JB
6722 as_bad (_("`%s' operand %u must use `%ses' segment"),
6723 i.tm.name,
6724 intel_syntax ? i.tm.operands - es_op : es_op + 1,
6725 register_prefix);
6726 return 0;
29b0f896 6727 }
51c8edf6
JB
6728
6729 /* There's only ever one segment override allowed per instruction.
6730 This instruction possibly has a legal segment override on the
6731 second operand, so copy the segment to where non-string
6732 instructions store it, allowing common code. */
6733 i.seg[op] = i.seg[1];
6734
29b0f896
AM
6735 return 1;
6736}
6737
6738static int
543613e9 6739process_suffix (void)
29b0f896 6740{
8b65b895
L
6741 bfd_boolean is_crc32 = FALSE;
6742
29b0f896
AM
6743 /* If matched instruction specifies an explicit instruction mnemonic
6744 suffix, use it. */
673fe0f0 6745 if (i.tm.opcode_modifier.size == SIZE16)
40fb9820 6746 i.suffix = WORD_MNEM_SUFFIX;
673fe0f0 6747 else if (i.tm.opcode_modifier.size == SIZE32)
40fb9820 6748 i.suffix = LONG_MNEM_SUFFIX;
673fe0f0 6749 else if (i.tm.opcode_modifier.size == SIZE64)
40fb9820 6750 i.suffix = QWORD_MNEM_SUFFIX;
13e600d0 6751 else if (i.reg_operands
c8f8eebc
JB
6752 && (i.operands > 1 || i.types[0].bitfield.class == Reg)
6753 && !i.tm.opcode_modifier.addrprefixopreg)
29b0f896 6754 {
65fca059 6755 unsigned int numop = i.operands;
8b65b895
L
6756 /* CRC32 */
6757 is_crc32 = (i.tm.base_opcode == 0xf38f0
6758 && i.tm.opcode_modifier.opcodeprefix == PREFIX_0XF2);
65fca059
JB
6759
6760 /* movsx/movzx want only their source operand considered here, for the
6761 ambiguity checking below. The suffix will be replaced afterwards
6762 to represent the destination (register). */
6763 if (((i.tm.base_opcode | 8) == 0xfbe && i.tm.opcode_modifier.w)
35648716
JB
6764 || (i.tm.base_opcode == 0x63
6765 && i.tm.opcode_modifier.opcodespace == SPACE_BASE
6766 && i.tm.cpu_flags.bitfield.cpu64))
65fca059
JB
6767 --i.operands;
6768
643bb870 6769 /* crc32 needs REX.W set regardless of suffix / source operand size. */
8b65b895 6770 if (is_crc32 && i.tm.operand_types[1].bitfield.qword)
643bb870
JB
6771 i.rex |= REX_W;
6772
29b0f896 6773 /* If there's no instruction mnemonic suffix we try to invent one
13e600d0 6774 based on GPR operands. */
29b0f896
AM
6775 if (!i.suffix)
6776 {
6777 /* We take i.suffix from the last register operand specified,
6778 Destination register type is more significant than source
381d071f
L
6779 register type. crc32 in SSE4.2 prefers source register
6780 type. */
8b65b895 6781 unsigned int op = is_crc32 ? 1 : i.operands;
20592a94 6782
1a035124
JB
6783 while (op--)
6784 if (i.tm.operand_types[op].bitfield.instance == InstanceNone
6785 || i.tm.operand_types[op].bitfield.instance == Accum)
6786 {
6787 if (i.types[op].bitfield.class != Reg)
6788 continue;
6789 if (i.types[op].bitfield.byte)
6790 i.suffix = BYTE_MNEM_SUFFIX;
6791 else if (i.types[op].bitfield.word)
6792 i.suffix = WORD_MNEM_SUFFIX;
6793 else if (i.types[op].bitfield.dword)
6794 i.suffix = LONG_MNEM_SUFFIX;
6795 else if (i.types[op].bitfield.qword)
6796 i.suffix = QWORD_MNEM_SUFFIX;
6797 else
6798 continue;
6799 break;
6800 }
65fca059
JB
6801
6802 /* As an exception, movsx/movzx silently default to a byte source
6803 in AT&T mode. */
6804 if ((i.tm.base_opcode | 8) == 0xfbe && i.tm.opcode_modifier.w
6805 && !i.suffix && !intel_syntax)
6806 i.suffix = BYTE_MNEM_SUFFIX;
29b0f896
AM
6807 }
6808 else if (i.suffix == BYTE_MNEM_SUFFIX)
6809 {
2eb952a4 6810 if (intel_syntax
3cd7f3e3 6811 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
2eb952a4
L
6812 && i.tm.opcode_modifier.no_bsuf)
6813 i.suffix = 0;
6814 else if (!check_byte_reg ())
29b0f896
AM
6815 return 0;
6816 }
6817 else if (i.suffix == LONG_MNEM_SUFFIX)
6818 {
2eb952a4 6819 if (intel_syntax
3cd7f3e3 6820 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
9f123b91
JB
6821 && i.tm.opcode_modifier.no_lsuf
6822 && !i.tm.opcode_modifier.todword
6823 && !i.tm.opcode_modifier.toqword)
2eb952a4
L
6824 i.suffix = 0;
6825 else if (!check_long_reg ())
29b0f896
AM
6826 return 0;
6827 }
6828 else if (i.suffix == QWORD_MNEM_SUFFIX)
6829 {
955e1e6a 6830 if (intel_syntax
3cd7f3e3 6831 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
9f123b91
JB
6832 && i.tm.opcode_modifier.no_qsuf
6833 && !i.tm.opcode_modifier.todword
6834 && !i.tm.opcode_modifier.toqword)
955e1e6a
L
6835 i.suffix = 0;
6836 else if (!check_qword_reg ())
29b0f896
AM
6837 return 0;
6838 }
6839 else if (i.suffix == WORD_MNEM_SUFFIX)
6840 {
2eb952a4 6841 if (intel_syntax
3cd7f3e3 6842 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE
2eb952a4
L
6843 && i.tm.opcode_modifier.no_wsuf)
6844 i.suffix = 0;
6845 else if (!check_word_reg ())
29b0f896
AM
6846 return 0;
6847 }
3cd7f3e3
L
6848 else if (intel_syntax
6849 && i.tm.opcode_modifier.mnemonicsize == IGNORESIZE)
29b0f896
AM
6850 /* Do nothing if the instruction is going to ignore the prefix. */
6851 ;
6852 else
6853 abort ();
65fca059
JB
6854
6855 /* Undo the movsx/movzx change done above. */
6856 i.operands = numop;
29b0f896 6857 }
3cd7f3e3
L
6858 else if (i.tm.opcode_modifier.mnemonicsize == DEFAULTSIZE
6859 && !i.suffix)
29b0f896 6860 {
13e600d0
JB
6861 i.suffix = stackop_size;
6862 if (stackop_size == LONG_MNEM_SUFFIX)
06f74c5c
L
6863 {
6864 /* stackop_size is set to LONG_MNEM_SUFFIX for the
6865 .code16gcc directive to support 16-bit mode with
6866 32-bit address. For IRET without a suffix, generate
6867 16-bit IRET (opcode 0xcf) to return from an interrupt
6868 handler. */
13e600d0
JB
6869 if (i.tm.base_opcode == 0xcf)
6870 {
6871 i.suffix = WORD_MNEM_SUFFIX;
6872 as_warn (_("generating 16-bit `iret' for .code16gcc directive"));
6873 }
6874 /* Warn about changed behavior for segment register push/pop. */
6875 else if ((i.tm.base_opcode | 1) == 0x07)
6876 as_warn (_("generating 32-bit `%s', unlike earlier gas versions"),
6877 i.tm.name);
06f74c5c 6878 }
29b0f896 6879 }
c006a730 6880 else if (!i.suffix
0cfa3eb3
JB
6881 && (i.tm.opcode_modifier.jump == JUMP_ABSOLUTE
6882 || i.tm.opcode_modifier.jump == JUMP_BYTE
6883 || i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT
64e74474
AM
6884 || (i.tm.base_opcode == 0x0f01 /* [ls][gi]dt */
6885 && i.tm.extension_opcode <= 3)))
9306ca4a
JB
6886 {
6887 switch (flag_code)
6888 {
6889 case CODE_64BIT:
40fb9820 6890 if (!i.tm.opcode_modifier.no_qsuf)
9306ca4a 6891 {
828c2a25
JB
6892 if (i.tm.opcode_modifier.jump == JUMP_BYTE
6893 || i.tm.opcode_modifier.no_lsuf)
6894 i.suffix = QWORD_MNEM_SUFFIX;
9306ca4a
JB
6895 break;
6896 }
1a0670f3 6897 /* Fall through. */
9306ca4a 6898 case CODE_32BIT:
40fb9820 6899 if (!i.tm.opcode_modifier.no_lsuf)
9306ca4a
JB
6900 i.suffix = LONG_MNEM_SUFFIX;
6901 break;
6902 case CODE_16BIT:
40fb9820 6903 if (!i.tm.opcode_modifier.no_wsuf)
9306ca4a
JB
6904 i.suffix = WORD_MNEM_SUFFIX;
6905 break;
6906 }
6907 }
252b5132 6908
c006a730 6909 if (!i.suffix
3cd7f3e3 6910 && (i.tm.opcode_modifier.mnemonicsize != DEFAULTSIZE
873494c8
JB
6911 /* Also cover lret/retf/iret in 64-bit mode. */
6912 || (flag_code == CODE_64BIT
6913 && !i.tm.opcode_modifier.no_lsuf
6914 && !i.tm.opcode_modifier.no_qsuf))
3cd7f3e3 6915 && i.tm.opcode_modifier.mnemonicsize != IGNORESIZE
8bbb3ad8
JB
6916 /* Explicit sizing prefixes are assumed to disambiguate insns. */
6917 && !i.prefix[DATA_PREFIX] && !(i.prefix[REX_PREFIX] & REX_W)
62b3f548
JB
6918 /* Accept FLDENV et al without suffix. */
6919 && (i.tm.opcode_modifier.no_ssuf || i.tm.opcode_modifier.floatmf))
29b0f896 6920 {
6c0946d0 6921 unsigned int suffixes, evex = 0;
c006a730
JB
6922
6923 suffixes = !i.tm.opcode_modifier.no_bsuf;
6924 if (!i.tm.opcode_modifier.no_wsuf)
6925 suffixes |= 1 << 1;
6926 if (!i.tm.opcode_modifier.no_lsuf)
6927 suffixes |= 1 << 2;
6928 if (!i.tm.opcode_modifier.no_ldsuf)
6929 suffixes |= 1 << 3;
6930 if (!i.tm.opcode_modifier.no_ssuf)
6931 suffixes |= 1 << 4;
6932 if (flag_code == CODE_64BIT && !i.tm.opcode_modifier.no_qsuf)
6933 suffixes |= 1 << 5;
6934
6c0946d0
JB
6935 /* For [XYZ]MMWORD operands inspect operand sizes. While generally
6936 also suitable for AT&T syntax mode, it was requested that this be
6937 restricted to just Intel syntax. */
b9915cbc 6938 if (intel_syntax && is_any_vex_encoding (&i.tm) && !i.broadcast)
6c0946d0 6939 {
b9915cbc 6940 unsigned int op;
6c0946d0 6941
b9915cbc 6942 for (op = 0; op < i.tm.operands; ++op)
6c0946d0 6943 {
b9915cbc
JB
6944 if (is_evex_encoding (&i.tm)
6945 && !cpu_arch_flags.bitfield.cpuavx512vl)
6c0946d0 6946 {
b9915cbc
JB
6947 if (i.tm.operand_types[op].bitfield.ymmword)
6948 i.tm.operand_types[op].bitfield.xmmword = 0;
6949 if (i.tm.operand_types[op].bitfield.zmmword)
6950 i.tm.operand_types[op].bitfield.ymmword = 0;
6951 if (!i.tm.opcode_modifier.evex
6952 || i.tm.opcode_modifier.evex == EVEXDYN)
6953 i.tm.opcode_modifier.evex = EVEX512;
6954 }
6c0946d0 6955
b9915cbc
JB
6956 if (i.tm.operand_types[op].bitfield.xmmword
6957 + i.tm.operand_types[op].bitfield.ymmword
6958 + i.tm.operand_types[op].bitfield.zmmword < 2)
6959 continue;
6c0946d0 6960
b9915cbc
JB
6961 /* Any properly sized operand disambiguates the insn. */
6962 if (i.types[op].bitfield.xmmword
6963 || i.types[op].bitfield.ymmword
6964 || i.types[op].bitfield.zmmword)
6965 {
6966 suffixes &= ~(7 << 6);
6967 evex = 0;
6968 break;
6969 }
6c0946d0 6970
b9915cbc
JB
6971 if ((i.flags[op] & Operand_Mem)
6972 && i.tm.operand_types[op].bitfield.unspecified)
6973 {
6974 if (i.tm.operand_types[op].bitfield.xmmword)
6975 suffixes |= 1 << 6;
6976 if (i.tm.operand_types[op].bitfield.ymmword)
6977 suffixes |= 1 << 7;
6978 if (i.tm.operand_types[op].bitfield.zmmword)
6979 suffixes |= 1 << 8;
6980 if (is_evex_encoding (&i.tm))
6981 evex = EVEX512;
6c0946d0
JB
6982 }
6983 }
6984 }
6985
6986 /* Are multiple suffixes / operand sizes allowed? */
c006a730 6987 if (suffixes & (suffixes - 1))
9306ca4a 6988 {
873494c8 6989 if (intel_syntax
3cd7f3e3 6990 && (i.tm.opcode_modifier.mnemonicsize != DEFAULTSIZE
873494c8 6991 || operand_check == check_error))
9306ca4a 6992 {
c006a730 6993 as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
9306ca4a
JB
6994 return 0;
6995 }
c006a730 6996 if (operand_check == check_error)
9306ca4a 6997 {
c006a730
JB
6998 as_bad (_("no instruction mnemonic suffix given and "
6999 "no register operands; can't size `%s'"), i.tm.name);
9306ca4a
JB
7000 return 0;
7001 }
c006a730 7002 if (operand_check == check_warning)
873494c8
JB
7003 as_warn (_("%s; using default for `%s'"),
7004 intel_syntax
7005 ? _("ambiguous operand size")
7006 : _("no instruction mnemonic suffix given and "
7007 "no register operands"),
7008 i.tm.name);
c006a730
JB
7009
7010 if (i.tm.opcode_modifier.floatmf)
7011 i.suffix = SHORT_MNEM_SUFFIX;
65fca059
JB
7012 else if ((i.tm.base_opcode | 8) == 0xfbe
7013 || (i.tm.base_opcode == 0x63
35648716 7014 && i.tm.opcode_modifier.opcodespace == SPACE_BASE
65fca059
JB
7015 && i.tm.cpu_flags.bitfield.cpu64))
7016 /* handled below */;
6c0946d0
JB
7017 else if (evex)
7018 i.tm.opcode_modifier.evex = evex;
c006a730
JB
7019 else if (flag_code == CODE_16BIT)
7020 i.suffix = WORD_MNEM_SUFFIX;
1a035124 7021 else if (!i.tm.opcode_modifier.no_lsuf)
c006a730 7022 i.suffix = LONG_MNEM_SUFFIX;
1a035124
JB
7023 else
7024 i.suffix = QWORD_MNEM_SUFFIX;
9306ca4a 7025 }
29b0f896 7026 }
252b5132 7027
65fca059 7028 if ((i.tm.base_opcode | 8) == 0xfbe
35648716
JB
7029 || (i.tm.base_opcode == 0x63
7030 && i.tm.opcode_modifier.opcodespace == SPACE_BASE
7031 && i.tm.cpu_flags.bitfield.cpu64))
65fca059
JB
7032 {
7033 /* In Intel syntax, movsx/movzx must have a "suffix" (checked above).
7034 In AT&T syntax, if there is no suffix (warned about above), the default
7035 will be byte extension. */
7036 if (i.tm.opcode_modifier.w && i.suffix && i.suffix != BYTE_MNEM_SUFFIX)
7037 i.tm.base_opcode |= 1;
7038
7039 /* For further processing, the suffix should represent the destination
7040 (register). This is already the case when one was used with
7041 mov[sz][bw]*, but we need to replace it for mov[sz]x, or if there was
7042 no suffix to begin with. */
7043 if (i.tm.opcode_modifier.w || i.tm.base_opcode == 0x63 || !i.suffix)
7044 {
7045 if (i.types[1].bitfield.word)
7046 i.suffix = WORD_MNEM_SUFFIX;
7047 else if (i.types[1].bitfield.qword)
7048 i.suffix = QWORD_MNEM_SUFFIX;
7049 else
7050 i.suffix = LONG_MNEM_SUFFIX;
7051
7052 i.tm.opcode_modifier.w = 0;
7053 }
7054 }
7055
50128d0c
JB
7056 if (!i.tm.opcode_modifier.modrm && i.reg_operands && i.tm.operands < 3)
7057 i.short_form = (i.tm.operand_types[0].bitfield.class == Reg)
7058 != (i.tm.operand_types[1].bitfield.class == Reg);
7059
d2224064
JB
7060 /* Change the opcode based on the operand size given by i.suffix. */
7061 switch (i.suffix)
29b0f896 7062 {
d2224064
JB
7063 /* Size floating point instruction. */
7064 case LONG_MNEM_SUFFIX:
7065 if (i.tm.opcode_modifier.floatmf)
7066 {
7067 i.tm.base_opcode ^= 4;
7068 break;
7069 }
7070 /* fall through */
7071 case WORD_MNEM_SUFFIX:
7072 case QWORD_MNEM_SUFFIX:
29b0f896 7073 /* It's not a byte, select word/dword operation. */
40fb9820 7074 if (i.tm.opcode_modifier.w)
29b0f896 7075 {
50128d0c 7076 if (i.short_form)
29b0f896
AM
7077 i.tm.base_opcode |= 8;
7078 else
7079 i.tm.base_opcode |= 1;
7080 }
d2224064
JB
7081 /* fall through */
7082 case SHORT_MNEM_SUFFIX:
29b0f896
AM
7083 /* Now select between word & dword operations via the operand
7084 size prefix, except for instructions that will ignore this
7085 prefix anyway. */
c8f8eebc 7086 if (i.suffix != QWORD_MNEM_SUFFIX
3cd7f3e3 7087 && i.tm.opcode_modifier.mnemonicsize != IGNORESIZE
c8f8eebc
JB
7088 && !i.tm.opcode_modifier.floatmf
7089 && !is_any_vex_encoding (&i.tm)
7090 && ((i.suffix == LONG_MNEM_SUFFIX) == (flag_code == CODE_16BIT)
7091 || (flag_code == CODE_64BIT
7092 && i.tm.opcode_modifier.jump == JUMP_BYTE)))
24eab124
AM
7093 {
7094 unsigned int prefix = DATA_PREFIX_OPCODE;
543613e9 7095
0cfa3eb3 7096 if (i.tm.opcode_modifier.jump == JUMP_BYTE) /* jcxz, loop */
29b0f896 7097 prefix = ADDR_PREFIX_OPCODE;
252b5132 7098
29b0f896
AM
7099 if (!add_prefix (prefix))
7100 return 0;
24eab124 7101 }
252b5132 7102
29b0f896
AM
7103 /* Set mode64 for an operand. */
7104 if (i.suffix == QWORD_MNEM_SUFFIX
9146926a 7105 && flag_code == CODE_64BIT
d2224064 7106 && !i.tm.opcode_modifier.norex64
4ed21b58 7107 && !i.tm.opcode_modifier.vexw
46e883c5 7108 /* Special case for xchg %rax,%rax. It is NOP and doesn't
d2224064
JB
7109 need rex64. */
7110 && ! (i.operands == 2
7111 && i.tm.base_opcode == 0x90
7112 && i.tm.extension_opcode == None
75e5731b
JB
7113 && i.types[0].bitfield.instance == Accum
7114 && i.types[0].bitfield.qword
7115 && i.types[1].bitfield.instance == Accum
7116 && i.types[1].bitfield.qword))
d2224064 7117 i.rex |= REX_W;
3e73aa7c 7118
d2224064 7119 break;
8bbb3ad8
JB
7120
7121 case 0:
f9a6a8f0 7122 /* Select word/dword/qword operation with explicit data sizing prefix
8bbb3ad8
JB
7123 when there are no suitable register operands. */
7124 if (i.tm.opcode_modifier.w
7125 && (i.prefix[DATA_PREFIX] || (i.prefix[REX_PREFIX] & REX_W))
7126 && (!i.reg_operands
7127 || (i.reg_operands == 1
7128 /* ShiftCount */
7129 && (i.tm.operand_types[0].bitfield.instance == RegC
7130 /* InOutPortReg */
7131 || i.tm.operand_types[0].bitfield.instance == RegD
7132 || i.tm.operand_types[1].bitfield.instance == RegD
7133 /* CRC32 */
8b65b895 7134 || is_crc32))))
8bbb3ad8
JB
7135 i.tm.base_opcode |= 1;
7136 break;
29b0f896 7137 }
7ecd2f8b 7138
c8f8eebc 7139 if (i.tm.opcode_modifier.addrprefixopreg)
c0a30a9f 7140 {
c8f8eebc
JB
7141 gas_assert (!i.suffix);
7142 gas_assert (i.reg_operands);
c0a30a9f 7143
c8f8eebc
JB
7144 if (i.tm.operand_types[0].bitfield.instance == Accum
7145 || i.operands == 1)
7146 {
7147 /* The address size override prefix changes the size of the
7148 first operand. */
7149 if (flag_code == CODE_64BIT
7150 && i.op[0].regs->reg_type.bitfield.word)
7151 {
7152 as_bad (_("16-bit addressing unavailable for `%s'"),
7153 i.tm.name);
7154 return 0;
7155 }
7156
7157 if ((flag_code == CODE_32BIT
7158 ? i.op[0].regs->reg_type.bitfield.word
7159 : i.op[0].regs->reg_type.bitfield.dword)
7160 && !add_prefix (ADDR_PREFIX_OPCODE))
7161 return 0;
7162 }
c0a30a9f
L
7163 else
7164 {
c8f8eebc
JB
7165 /* Check invalid register operand when the address size override
7166 prefix changes the size of register operands. */
7167 unsigned int op;
7168 enum { need_word, need_dword, need_qword } need;
7169
27f13469 7170 /* Check the register operand for the address size prefix if
b3a3496f
L
7171 the memory operand has no real registers, like symbol, DISP
7172 or symbol(%rip). */
27f13469
L
7173 if (i.mem_operands == 1
7174 && i.reg_operands == 1
7175 && i.operands == 2
27f13469 7176 && i.types[1].bitfield.class == Reg
b3a3496f
L
7177 && (flag_code == CODE_32BIT
7178 ? i.op[1].regs->reg_type.bitfield.word
7179 : i.op[1].regs->reg_type.bitfield.dword)
7180 && ((i.base_reg == NULL && i.index_reg == NULL)
7181 || (i.base_reg
7182 && i.base_reg->reg_num == RegIP
7183 && i.base_reg->reg_type.bitfield.qword))
27f13469
L
7184 && !add_prefix (ADDR_PREFIX_OPCODE))
7185 return 0;
7186
c8f8eebc
JB
7187 if (flag_code == CODE_32BIT)
7188 need = i.prefix[ADDR_PREFIX] ? need_word : need_dword;
7189 else if (i.prefix[ADDR_PREFIX])
c0a30a9f
L
7190 need = need_dword;
7191 else
7192 need = flag_code == CODE_64BIT ? need_qword : need_word;
c0a30a9f 7193
c8f8eebc
JB
7194 for (op = 0; op < i.operands; op++)
7195 {
7196 if (i.types[op].bitfield.class != Reg)
7197 continue;
7198
7199 switch (need)
7200 {
7201 case need_word:
7202 if (i.op[op].regs->reg_type.bitfield.word)
7203 continue;
7204 break;
7205 case need_dword:
7206 if (i.op[op].regs->reg_type.bitfield.dword)
7207 continue;
7208 break;
7209 case need_qword:
7210 if (i.op[op].regs->reg_type.bitfield.qword)
7211 continue;
7212 break;
7213 }
7214
7215 as_bad (_("invalid register operand size for `%s'"),
7216 i.tm.name);
7217 return 0;
7218 }
7219 }
c0a30a9f
L
7220 }
7221
29b0f896
AM
7222 return 1;
7223}
3e73aa7c 7224
29b0f896 7225static int
543613e9 7226check_byte_reg (void)
29b0f896
AM
7227{
7228 int op;
543613e9 7229
29b0f896
AM
7230 for (op = i.operands; --op >= 0;)
7231 {
dc821c5f 7232 /* Skip non-register operands. */
bab6aec1 7233 if (i.types[op].bitfield.class != Reg)
dc821c5f
JB
7234 continue;
7235
29b0f896
AM
7236 /* If this is an eight bit register, it's OK. If it's the 16 or
7237 32 bit version of an eight bit register, we will just use the
7238 low portion, and that's OK too. */
dc821c5f 7239 if (i.types[op].bitfield.byte)
29b0f896
AM
7240 continue;
7241
5a819eb9 7242 /* I/O port address operands are OK too. */
75e5731b
JB
7243 if (i.tm.operand_types[op].bitfield.instance == RegD
7244 && i.tm.operand_types[op].bitfield.word)
5a819eb9
JB
7245 continue;
7246
9706160a 7247 /* crc32 only wants its source operand checked here. */
8b65b895
L
7248 if (i.tm.base_opcode == 0xf38f0
7249 && i.tm.opcode_modifier.opcodeprefix == PREFIX_0XF2
7250 && op != 0)
9344ff29
L
7251 continue;
7252
29b0f896 7253 /* Any other register is bad. */
73c76375
JB
7254 as_bad (_("`%s%s' not allowed with `%s%c'"),
7255 register_prefix, i.op[op].regs->reg_name,
7256 i.tm.name, i.suffix);
7257 return 0;
29b0f896
AM
7258 }
7259 return 1;
7260}
7261
7262static int
e3bb37b5 7263check_long_reg (void)
29b0f896
AM
7264{
7265 int op;
7266
7267 for (op = i.operands; --op >= 0;)
dc821c5f 7268 /* Skip non-register operands. */
bab6aec1 7269 if (i.types[op].bitfield.class != Reg)
dc821c5f 7270 continue;
29b0f896
AM
7271 /* Reject eight bit registers, except where the template requires
7272 them. (eg. movzb) */
dc821c5f 7273 else if (i.types[op].bitfield.byte
bab6aec1 7274 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7275 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
7276 && (i.tm.operand_types[op].bitfield.word
7277 || i.tm.operand_types[op].bitfield.dword))
29b0f896 7278 {
a540244d
L
7279 as_bad (_("`%s%s' not allowed with `%s%c'"),
7280 register_prefix,
29b0f896
AM
7281 i.op[op].regs->reg_name,
7282 i.tm.name,
7283 i.suffix);
7284 return 0;
7285 }
be4c5e58
L
7286 /* Error if the e prefix on a general reg is missing. */
7287 else if (i.types[op].bitfield.word
bab6aec1 7288 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7289 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7290 && i.tm.operand_types[op].bitfield.dword)
29b0f896 7291 {
be4c5e58
L
7292 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
7293 register_prefix, i.op[op].regs->reg_name,
7294 i.suffix);
7295 return 0;
252b5132 7296 }
e4630f71 7297 /* Warn if the r prefix on a general reg is present. */
dc821c5f 7298 else if (i.types[op].bitfield.qword
bab6aec1 7299 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7300 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7301 && i.tm.operand_types[op].bitfield.dword)
252b5132 7302 {
34828aad 7303 if (intel_syntax
65fca059 7304 && i.tm.opcode_modifier.toqword
3528c362 7305 && i.types[0].bitfield.class != RegSIMD)
34828aad 7306 {
ca61edf2 7307 /* Convert to QWORD. We want REX byte. */
34828aad
L
7308 i.suffix = QWORD_MNEM_SUFFIX;
7309 }
7310 else
7311 {
2b5d6a91 7312 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
7313 register_prefix, i.op[op].regs->reg_name,
7314 i.suffix);
7315 return 0;
7316 }
29b0f896
AM
7317 }
7318 return 1;
7319}
252b5132 7320
29b0f896 7321static int
e3bb37b5 7322check_qword_reg (void)
29b0f896
AM
7323{
7324 int op;
252b5132 7325
29b0f896 7326 for (op = i.operands; --op >= 0; )
dc821c5f 7327 /* Skip non-register operands. */
bab6aec1 7328 if (i.types[op].bitfield.class != Reg)
dc821c5f 7329 continue;
29b0f896
AM
7330 /* Reject eight bit registers, except where the template requires
7331 them. (eg. movzb) */
dc821c5f 7332 else if (i.types[op].bitfield.byte
bab6aec1 7333 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7334 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
7335 && (i.tm.operand_types[op].bitfield.word
7336 || i.tm.operand_types[op].bitfield.dword))
29b0f896 7337 {
a540244d
L
7338 as_bad (_("`%s%s' not allowed with `%s%c'"),
7339 register_prefix,
29b0f896
AM
7340 i.op[op].regs->reg_name,
7341 i.tm.name,
7342 i.suffix);
7343 return 0;
7344 }
e4630f71 7345 /* Warn if the r prefix on a general reg is missing. */
dc821c5f
JB
7346 else if ((i.types[op].bitfield.word
7347 || i.types[op].bitfield.dword)
bab6aec1 7348 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7349 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7350 && i.tm.operand_types[op].bitfield.qword)
29b0f896
AM
7351 {
7352 /* Prohibit these changes in the 64bit mode, since the
7353 lowering is more complicated. */
34828aad 7354 if (intel_syntax
ca61edf2 7355 && i.tm.opcode_modifier.todword
3528c362 7356 && i.types[0].bitfield.class != RegSIMD)
34828aad 7357 {
ca61edf2 7358 /* Convert to DWORD. We don't want REX byte. */
34828aad
L
7359 i.suffix = LONG_MNEM_SUFFIX;
7360 }
7361 else
7362 {
2b5d6a91 7363 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
7364 register_prefix, i.op[op].regs->reg_name,
7365 i.suffix);
7366 return 0;
7367 }
252b5132 7368 }
29b0f896
AM
7369 return 1;
7370}
252b5132 7371
29b0f896 7372static int
e3bb37b5 7373check_word_reg (void)
29b0f896
AM
7374{
7375 int op;
7376 for (op = i.operands; --op >= 0;)
dc821c5f 7377 /* Skip non-register operands. */
bab6aec1 7378 if (i.types[op].bitfield.class != Reg)
dc821c5f 7379 continue;
29b0f896
AM
7380 /* Reject eight bit registers, except where the template requires
7381 them. (eg. movzb) */
dc821c5f 7382 else if (i.types[op].bitfield.byte
bab6aec1 7383 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7384 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
7385 && (i.tm.operand_types[op].bitfield.word
7386 || i.tm.operand_types[op].bitfield.dword))
29b0f896 7387 {
a540244d
L
7388 as_bad (_("`%s%s' not allowed with `%s%c'"),
7389 register_prefix,
29b0f896
AM
7390 i.op[op].regs->reg_name,
7391 i.tm.name,
7392 i.suffix);
7393 return 0;
7394 }
9706160a
JB
7395 /* Error if the e or r prefix on a general reg is present. */
7396 else if ((i.types[op].bitfield.dword
dc821c5f 7397 || i.types[op].bitfield.qword)
bab6aec1 7398 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 7399 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 7400 && i.tm.operand_types[op].bitfield.word)
252b5132 7401 {
9706160a
JB
7402 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
7403 register_prefix, i.op[op].regs->reg_name,
7404 i.suffix);
7405 return 0;
29b0f896
AM
7406 }
7407 return 1;
7408}
252b5132 7409
29b0f896 7410static int
40fb9820 7411update_imm (unsigned int j)
29b0f896 7412{
bc0844ae 7413 i386_operand_type overlap = i.types[j];
40fb9820
L
7414 if ((overlap.bitfield.imm8
7415 || overlap.bitfield.imm8s
7416 || overlap.bitfield.imm16
7417 || overlap.bitfield.imm32
7418 || overlap.bitfield.imm32s
7419 || overlap.bitfield.imm64)
0dfbf9d7
L
7420 && !operand_type_equal (&overlap, &imm8)
7421 && !operand_type_equal (&overlap, &imm8s)
7422 && !operand_type_equal (&overlap, &imm16)
7423 && !operand_type_equal (&overlap, &imm32)
7424 && !operand_type_equal (&overlap, &imm32s)
7425 && !operand_type_equal (&overlap, &imm64))
29b0f896
AM
7426 {
7427 if (i.suffix)
7428 {
40fb9820
L
7429 i386_operand_type temp;
7430
0dfbf9d7 7431 operand_type_set (&temp, 0);
7ab9ffdd 7432 if (i.suffix == BYTE_MNEM_SUFFIX)
40fb9820
L
7433 {
7434 temp.bitfield.imm8 = overlap.bitfield.imm8;
7435 temp.bitfield.imm8s = overlap.bitfield.imm8s;
7436 }
7437 else if (i.suffix == WORD_MNEM_SUFFIX)
7438 temp.bitfield.imm16 = overlap.bitfield.imm16;
7439 else if (i.suffix == QWORD_MNEM_SUFFIX)
7440 {
7441 temp.bitfield.imm64 = overlap.bitfield.imm64;
7442 temp.bitfield.imm32s = overlap.bitfield.imm32s;
7443 }
7444 else
7445 temp.bitfield.imm32 = overlap.bitfield.imm32;
7446 overlap = temp;
29b0f896 7447 }
0dfbf9d7
L
7448 else if (operand_type_equal (&overlap, &imm16_32_32s)
7449 || operand_type_equal (&overlap, &imm16_32)
7450 || operand_type_equal (&overlap, &imm16_32s))
29b0f896 7451 {
40fb9820 7452 if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
65da13b5 7453 overlap = imm16;
40fb9820 7454 else
65da13b5 7455 overlap = imm32s;
29b0f896 7456 }
8bbb3ad8
JB
7457 else if (i.prefix[REX_PREFIX] & REX_W)
7458 overlap = operand_type_and (overlap, imm32s);
7459 else if (i.prefix[DATA_PREFIX])
7460 overlap = operand_type_and (overlap,
7461 flag_code != CODE_16BIT ? imm16 : imm32);
0dfbf9d7
L
7462 if (!operand_type_equal (&overlap, &imm8)
7463 && !operand_type_equal (&overlap, &imm8s)
7464 && !operand_type_equal (&overlap, &imm16)
7465 && !operand_type_equal (&overlap, &imm32)
7466 && !operand_type_equal (&overlap, &imm32s)
7467 && !operand_type_equal (&overlap, &imm64))
29b0f896 7468 {
4eed87de
AM
7469 as_bad (_("no instruction mnemonic suffix given; "
7470 "can't determine immediate size"));
29b0f896
AM
7471 return 0;
7472 }
7473 }
40fb9820 7474 i.types[j] = overlap;
29b0f896 7475
40fb9820
L
7476 return 1;
7477}
7478
7479static int
7480finalize_imm (void)
7481{
bc0844ae 7482 unsigned int j, n;
29b0f896 7483
bc0844ae
L
7484 /* Update the first 2 immediate operands. */
7485 n = i.operands > 2 ? 2 : i.operands;
7486 if (n)
7487 {
7488 for (j = 0; j < n; j++)
7489 if (update_imm (j) == 0)
7490 return 0;
40fb9820 7491
bc0844ae
L
7492 /* The 3rd operand can't be immediate operand. */
7493 gas_assert (operand_type_check (i.types[2], imm) == 0);
7494 }
29b0f896
AM
7495
7496 return 1;
7497}
7498
7499static int
e3bb37b5 7500process_operands (void)
29b0f896
AM
7501{
7502 /* Default segment register this instruction will use for memory
7503 accesses. 0 means unknown. This is only for optimizing out
7504 unnecessary segment overrides. */
7505 const seg_entry *default_seg = 0;
7506
a5aeccd9
JB
7507 if (i.tm.opcode_modifier.sse2avx)
7508 {
7509 /* Legacy encoded insns allow explicit REX prefixes, so these prefixes
7510 need converting. */
7511 i.rex |= i.prefix[REX_PREFIX] & (REX_W | REX_R | REX_X | REX_B);
7512 i.prefix[REX_PREFIX] = 0;
7513 i.rex_encoding = 0;
7514 }
c423d21a
JB
7515 /* ImmExt should be processed after SSE2AVX. */
7516 else if (i.tm.opcode_modifier.immext)
7517 process_immext ();
a5aeccd9 7518
2426c15f 7519 if (i.tm.opcode_modifier.sse2avx && i.tm.opcode_modifier.vexvvvv)
29b0f896 7520 {
91d6fa6a
NC
7521 unsigned int dupl = i.operands;
7522 unsigned int dest = dupl - 1;
9fcfb3d7
L
7523 unsigned int j;
7524
c0f3af97 7525 /* The destination must be an xmm register. */
9c2799c2 7526 gas_assert (i.reg_operands
91d6fa6a 7527 && MAX_OPERANDS > dupl
7ab9ffdd 7528 && operand_type_equal (&i.types[dest], &regxmm));
c0f3af97 7529
75e5731b 7530 if (i.tm.operand_types[0].bitfield.instance == Accum
1b54b8d7 7531 && i.tm.operand_types[0].bitfield.xmmword)
e2ec9d29 7532 {
8cd7925b 7533 if (i.tm.opcode_modifier.vexsources == VEX3SOURCES)
c0f3af97
L
7534 {
7535 /* Keep xmm0 for instructions with VEX prefix and 3
7536 sources. */
75e5731b 7537 i.tm.operand_types[0].bitfield.instance = InstanceNone;
3528c362 7538 i.tm.operand_types[0].bitfield.class = RegSIMD;
c0f3af97
L
7539 goto duplicate;
7540 }
e2ec9d29 7541 else
c0f3af97
L
7542 {
7543 /* We remove the first xmm0 and keep the number of
7544 operands unchanged, which in fact duplicates the
7545 destination. */
7546 for (j = 1; j < i.operands; j++)
7547 {
7548 i.op[j - 1] = i.op[j];
7549 i.types[j - 1] = i.types[j];
7550 i.tm.operand_types[j - 1] = i.tm.operand_types[j];
8dc0818e 7551 i.flags[j - 1] = i.flags[j];
c0f3af97
L
7552 }
7553 }
7554 }
7555 else if (i.tm.opcode_modifier.implicit1stxmm0)
7ab9ffdd 7556 {
91d6fa6a 7557 gas_assert ((MAX_OPERANDS - 1) > dupl
8cd7925b
L
7558 && (i.tm.opcode_modifier.vexsources
7559 == VEX3SOURCES));
c0f3af97
L
7560
7561 /* Add the implicit xmm0 for instructions with VEX prefix
7562 and 3 sources. */
7563 for (j = i.operands; j > 0; j--)
7564 {
7565 i.op[j] = i.op[j - 1];
7566 i.types[j] = i.types[j - 1];
7567 i.tm.operand_types[j] = i.tm.operand_types[j - 1];
8dc0818e 7568 i.flags[j] = i.flags[j - 1];
c0f3af97
L
7569 }
7570 i.op[0].regs
629310ab 7571 = (const reg_entry *) str_hash_find (reg_hash, "xmm0");
7ab9ffdd 7572 i.types[0] = regxmm;
c0f3af97
L
7573 i.tm.operand_types[0] = regxmm;
7574
7575 i.operands += 2;
7576 i.reg_operands += 2;
7577 i.tm.operands += 2;
7578
91d6fa6a 7579 dupl++;
c0f3af97 7580 dest++;
91d6fa6a
NC
7581 i.op[dupl] = i.op[dest];
7582 i.types[dupl] = i.types[dest];
7583 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
8dc0818e 7584 i.flags[dupl] = i.flags[dest];
e2ec9d29 7585 }
c0f3af97
L
7586 else
7587 {
dc1e8a47 7588 duplicate:
c0f3af97
L
7589 i.operands++;
7590 i.reg_operands++;
7591 i.tm.operands++;
7592
91d6fa6a
NC
7593 i.op[dupl] = i.op[dest];
7594 i.types[dupl] = i.types[dest];
7595 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
8dc0818e 7596 i.flags[dupl] = i.flags[dest];
c0f3af97
L
7597 }
7598
7599 if (i.tm.opcode_modifier.immext)
7600 process_immext ();
7601 }
75e5731b 7602 else if (i.tm.operand_types[0].bitfield.instance == Accum
1b54b8d7 7603 && i.tm.operand_types[0].bitfield.xmmword)
c0f3af97
L
7604 {
7605 unsigned int j;
7606
9fcfb3d7
L
7607 for (j = 1; j < i.operands; j++)
7608 {
7609 i.op[j - 1] = i.op[j];
7610 i.types[j - 1] = i.types[j];
7611
7612 /* We need to adjust fields in i.tm since they are used by
7613 build_modrm_byte. */
7614 i.tm.operand_types [j - 1] = i.tm.operand_types [j];
8dc0818e
JB
7615
7616 i.flags[j - 1] = i.flags[j];
9fcfb3d7
L
7617 }
7618
e2ec9d29
L
7619 i.operands--;
7620 i.reg_operands--;
e2ec9d29
L
7621 i.tm.operands--;
7622 }
920d2ddc
IT
7623 else if (i.tm.opcode_modifier.implicitquadgroup)
7624 {
a477a8c4
JB
7625 unsigned int regnum, first_reg_in_group, last_reg_in_group;
7626
920d2ddc 7627 /* The second operand must be {x,y,z}mmN, where N is a multiple of 4. */
3528c362 7628 gas_assert (i.operands >= 2 && i.types[1].bitfield.class == RegSIMD);
a477a8c4
JB
7629 regnum = register_number (i.op[1].regs);
7630 first_reg_in_group = regnum & ~3;
7631 last_reg_in_group = first_reg_in_group + 3;
7632 if (regnum != first_reg_in_group)
7633 as_warn (_("source register `%s%s' implicitly denotes"
7634 " `%s%.3s%u' to `%s%.3s%u' source group in `%s'"),
7635 register_prefix, i.op[1].regs->reg_name,
7636 register_prefix, i.op[1].regs->reg_name, first_reg_in_group,
7637 register_prefix, i.op[1].regs->reg_name, last_reg_in_group,
7638 i.tm.name);
7639 }
e2ec9d29
L
7640 else if (i.tm.opcode_modifier.regkludge)
7641 {
7642 /* The imul $imm, %reg instruction is converted into
7643 imul $imm, %reg, %reg, and the clr %reg instruction
7644 is converted into xor %reg, %reg. */
7645
7646 unsigned int first_reg_op;
7647
7648 if (operand_type_check (i.types[0], reg))
7649 first_reg_op = 0;
7650 else
7651 first_reg_op = 1;
7652 /* Pretend we saw the extra register operand. */
9c2799c2 7653 gas_assert (i.reg_operands == 1
7ab9ffdd 7654 && i.op[first_reg_op + 1].regs == 0);
e2ec9d29
L
7655 i.op[first_reg_op + 1].regs = i.op[first_reg_op].regs;
7656 i.types[first_reg_op + 1] = i.types[first_reg_op];
7657 i.operands++;
7658 i.reg_operands++;
29b0f896
AM
7659 }
7660
85b80b0f 7661 if (i.tm.opcode_modifier.modrm)
29b0f896
AM
7662 {
7663 /* The opcode is completed (modulo i.tm.extension_opcode which
52271982
AM
7664 must be put into the modrm byte). Now, we make the modrm and
7665 index base bytes based on all the info we've collected. */
29b0f896
AM
7666
7667 default_seg = build_modrm_byte ();
7668 }
00cee14f 7669 else if (i.types[0].bitfield.class == SReg)
85b80b0f
JB
7670 {
7671 if (flag_code != CODE_64BIT
7672 ? i.tm.base_opcode == POP_SEG_SHORT
7673 && i.op[0].regs->reg_num == 1
7674 : (i.tm.base_opcode | 1) == POP_SEG386_SHORT
7675 && i.op[0].regs->reg_num < 4)
7676 {
7677 as_bad (_("you can't `%s %s%s'"),
7678 i.tm.name, register_prefix, i.op[0].regs->reg_name);
7679 return 0;
7680 }
9a182d04 7681 if ( i.op[0].regs->reg_num > 3 && i.opcode_length == 1 )
85b80b0f
JB
7682 {
7683 i.tm.base_opcode ^= POP_SEG_SHORT ^ POP_SEG386_SHORT;
9a182d04 7684 i.opcode_length = 2;
85b80b0f
JB
7685 }
7686 i.tm.base_opcode |= (i.op[0].regs->reg_num << 3);
7687 }
8a2ed489 7688 else if ((i.tm.base_opcode & ~0x3) == MOV_AX_DISP32)
29b0f896
AM
7689 {
7690 default_seg = &ds;
7691 }
40fb9820 7692 else if (i.tm.opcode_modifier.isstring)
29b0f896
AM
7693 {
7694 /* For the string instructions that allow a segment override
7695 on one of their operands, the default segment is ds. */
7696 default_seg = &ds;
7697 }
50128d0c 7698 else if (i.short_form)
85b80b0f
JB
7699 {
7700 /* The register or float register operand is in operand
7701 0 or 1. */
bab6aec1 7702 unsigned int op = i.tm.operand_types[0].bitfield.class != Reg;
85b80b0f
JB
7703
7704 /* Register goes in low 3 bits of opcode. */
7705 i.tm.base_opcode |= i.op[op].regs->reg_num;
7706 if ((i.op[op].regs->reg_flags & RegRex) != 0)
7707 i.rex |= REX_B;
7708 if (!quiet_warnings && i.tm.opcode_modifier.ugh)
7709 {
7710 /* Warn about some common errors, but press on regardless.
7711 The first case can be generated by gcc (<= 2.8.1). */
7712 if (i.operands == 2)
7713 {
7714 /* Reversed arguments on faddp, fsubp, etc. */
7715 as_warn (_("translating to `%s %s%s,%s%s'"), i.tm.name,
7716 register_prefix, i.op[!intel_syntax].regs->reg_name,
7717 register_prefix, i.op[intel_syntax].regs->reg_name);
7718 }
7719 else
7720 {
7721 /* Extraneous `l' suffix on fp insn. */
7722 as_warn (_("translating to `%s %s%s'"), i.tm.name,
7723 register_prefix, i.op[0].regs->reg_name);
7724 }
7725 }
7726 }
29b0f896 7727
514a8bb0 7728 if ((i.seg[0] || i.prefix[SEG_PREFIX])
514a8bb0 7729 && i.tm.base_opcode == 0x8d /* lea */
35648716 7730 && i.tm.opcode_modifier.opcodespace == SPACE_BASE
514a8bb0 7731 && !is_any_vex_encoding(&i.tm))
92334ad2
JB
7732 {
7733 if (!quiet_warnings)
7734 as_warn (_("segment override on `%s' is ineffectual"), i.tm.name);
7735 if (optimize)
7736 {
7737 i.seg[0] = NULL;
7738 i.prefix[SEG_PREFIX] = 0;
7739 }
7740 }
52271982
AM
7741
7742 /* If a segment was explicitly specified, and the specified segment
b6773884
JB
7743 is neither the default nor the one already recorded from a prefix,
7744 use an opcode prefix to select it. If we never figured out what
7745 the default segment is, then default_seg will be zero at this
7746 point, and the specified segment prefix will always be used. */
7747 if (i.seg[0]
7748 && i.seg[0] != default_seg
7749 && i.seg[0]->seg_prefix != i.prefix[SEG_PREFIX])
29b0f896
AM
7750 {
7751 if (!add_prefix (i.seg[0]->seg_prefix))
7752 return 0;
7753 }
7754 return 1;
7755}
7756
a5aeccd9
JB
7757static INLINE void set_rex_vrex (const reg_entry *r, unsigned int rex_bit,
7758 bfd_boolean do_sse2avx)
7759{
7760 if (r->reg_flags & RegRex)
7761 {
7762 if (i.rex & rex_bit)
7763 as_bad (_("same type of prefix used twice"));
7764 i.rex |= rex_bit;
7765 }
7766 else if (do_sse2avx && (i.rex & rex_bit) && i.vex.register_specifier)
7767 {
7768 gas_assert (i.vex.register_specifier == r);
7769 i.vex.register_specifier += 8;
7770 }
7771
7772 if (r->reg_flags & RegVRex)
7773 i.vrex |= rex_bit;
7774}
7775
29b0f896 7776static const seg_entry *
e3bb37b5 7777build_modrm_byte (void)
29b0f896
AM
7778{
7779 const seg_entry *default_seg = 0;
c0f3af97 7780 unsigned int source, dest;
8cd7925b 7781 int vex_3_sources;
c0f3af97 7782
8cd7925b 7783 vex_3_sources = i.tm.opcode_modifier.vexsources == VEX3SOURCES;
c0f3af97
L
7784 if (vex_3_sources)
7785 {
91d6fa6a 7786 unsigned int nds, reg_slot;
4c2c6516 7787 expressionS *exp;
c0f3af97 7788
6b8d3588 7789 dest = i.operands - 1;
c0f3af97 7790 nds = dest - 1;
922d8de8 7791
a683cc34 7792 /* There are 2 kinds of instructions:
bed3d976 7793 1. 5 operands: 4 register operands or 3 register operands
9d3bf266 7794 plus 1 memory operand plus one Imm4 operand, VexXDS, and
bed3d976 7795 VexW0 or VexW1. The destination must be either XMM, YMM or
43234a1e 7796 ZMM register.
bed3d976 7797 2. 4 operands: 4 register operands or 3 register operands
2f1bada2 7798 plus 1 memory operand, with VexXDS. */
922d8de8 7799 gas_assert ((i.reg_operands == 4
bed3d976
JB
7800 || (i.reg_operands == 3 && i.mem_operands == 1))
7801 && i.tm.opcode_modifier.vexvvvv == VEXXDS
dcd7e323 7802 && i.tm.opcode_modifier.vexw
3528c362 7803 && i.tm.operand_types[dest].bitfield.class == RegSIMD);
a683cc34 7804
48db9223
JB
7805 /* If VexW1 is set, the first non-immediate operand is the source and
7806 the second non-immediate one is encoded in the immediate operand. */
7807 if (i.tm.opcode_modifier.vexw == VEXW1)
7808 {
7809 source = i.imm_operands;
7810 reg_slot = i.imm_operands + 1;
7811 }
7812 else
7813 {
7814 source = i.imm_operands + 1;
7815 reg_slot = i.imm_operands;
7816 }
7817
a683cc34 7818 if (i.imm_operands == 0)
bed3d976
JB
7819 {
7820 /* When there is no immediate operand, generate an 8bit
7821 immediate operand to encode the first operand. */
7822 exp = &im_expressions[i.imm_operands++];
7823 i.op[i.operands].imms = exp;
7824 i.types[i.operands] = imm8;
7825 i.operands++;
7826
3528c362 7827 gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD);
bed3d976
JB
7828 exp->X_op = O_constant;
7829 exp->X_add_number = register_number (i.op[reg_slot].regs) << 4;
43234a1e
L
7830 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
7831 }
922d8de8 7832 else
bed3d976 7833 {
9d3bf266
JB
7834 gas_assert (i.imm_operands == 1);
7835 gas_assert (fits_in_imm4 (i.op[0].imms->X_add_number));
7836 gas_assert (!i.tm.opcode_modifier.immext);
a683cc34 7837
9d3bf266
JB
7838 /* Turn on Imm8 again so that output_imm will generate it. */
7839 i.types[0].bitfield.imm8 = 1;
bed3d976 7840
3528c362 7841 gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD);
9d3bf266 7842 i.op[0].imms->X_add_number
bed3d976 7843 |= register_number (i.op[reg_slot].regs) << 4;
43234a1e 7844 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
bed3d976 7845 }
a683cc34 7846
3528c362 7847 gas_assert (i.tm.operand_types[nds].bitfield.class == RegSIMD);
dae39acc 7848 i.vex.register_specifier = i.op[nds].regs;
c0f3af97
L
7849 }
7850 else
7851 source = dest = 0;
29b0f896
AM
7852
7853 /* i.reg_operands MUST be the number of real register operands;
c0f3af97
L
7854 implicit registers do not count. If there are 3 register
7855 operands, it must be a instruction with VexNDS. For a
7856 instruction with VexNDD, the destination register is encoded
7857 in VEX prefix. If there are 4 register operands, it must be
7858 a instruction with VEX prefix and 3 sources. */
7ab9ffdd
L
7859 if (i.mem_operands == 0
7860 && ((i.reg_operands == 2
2426c15f 7861 && i.tm.opcode_modifier.vexvvvv <= VEXXDS)
7ab9ffdd 7862 || (i.reg_operands == 3
2426c15f 7863 && i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd 7864 || (i.reg_operands == 4 && vex_3_sources)))
29b0f896 7865 {
cab737b9
L
7866 switch (i.operands)
7867 {
7868 case 2:
7869 source = 0;
7870 break;
7871 case 3:
c81128dc
L
7872 /* When there are 3 operands, one of them may be immediate,
7873 which may be the first or the last operand. Otherwise,
c0f3af97
L
7874 the first operand must be shift count register (cl) or it
7875 is an instruction with VexNDS. */
9c2799c2 7876 gas_assert (i.imm_operands == 1
7ab9ffdd 7877 || (i.imm_operands == 0
2426c15f 7878 && (i.tm.opcode_modifier.vexvvvv == VEXXDS
75e5731b
JB
7879 || (i.types[0].bitfield.instance == RegC
7880 && i.types[0].bitfield.byte))));
40fb9820 7881 if (operand_type_check (i.types[0], imm)
75e5731b
JB
7882 || (i.types[0].bitfield.instance == RegC
7883 && i.types[0].bitfield.byte))
40fb9820
L
7884 source = 1;
7885 else
7886 source = 0;
cab737b9
L
7887 break;
7888 case 4:
368d64cc
L
7889 /* When there are 4 operands, the first two must be 8bit
7890 immediate operands. The source operand will be the 3rd
c0f3af97
L
7891 one.
7892
7893 For instructions with VexNDS, if the first operand
7894 an imm8, the source operand is the 2nd one. If the last
7895 operand is imm8, the source operand is the first one. */
9c2799c2 7896 gas_assert ((i.imm_operands == 2
7ab9ffdd
L
7897 && i.types[0].bitfield.imm8
7898 && i.types[1].bitfield.imm8)
2426c15f 7899 || (i.tm.opcode_modifier.vexvvvv == VEXXDS
7ab9ffdd
L
7900 && i.imm_operands == 1
7901 && (i.types[0].bitfield.imm8
43234a1e
L
7902 || i.types[i.operands - 1].bitfield.imm8
7903 || i.rounding)));
9f2670f2
L
7904 if (i.imm_operands == 2)
7905 source = 2;
7906 else
c0f3af97
L
7907 {
7908 if (i.types[0].bitfield.imm8)
7909 source = 1;
7910 else
7911 source = 0;
7912 }
c0f3af97
L
7913 break;
7914 case 5:
e771e7c9 7915 if (is_evex_encoding (&i.tm))
43234a1e
L
7916 {
7917 /* For EVEX instructions, when there are 5 operands, the
7918 first one must be immediate operand. If the second one
7919 is immediate operand, the source operand is the 3th
7920 one. If the last one is immediate operand, the source
7921 operand is the 2nd one. */
7922 gas_assert (i.imm_operands == 2
7923 && i.tm.opcode_modifier.sae
7924 && operand_type_check (i.types[0], imm));
7925 if (operand_type_check (i.types[1], imm))
7926 source = 2;
7927 else if (operand_type_check (i.types[4], imm))
7928 source = 1;
7929 else
7930 abort ();
7931 }
cab737b9
L
7932 break;
7933 default:
7934 abort ();
7935 }
7936
c0f3af97
L
7937 if (!vex_3_sources)
7938 {
7939 dest = source + 1;
7940
43234a1e
L
7941 /* RC/SAE operand could be between DEST and SRC. That happens
7942 when one operand is GPR and the other one is XMM/YMM/ZMM
7943 register. */
7944 if (i.rounding && i.rounding->operand == (int) dest)
7945 dest++;
7946
2426c15f 7947 if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
c0f3af97 7948 {
43234a1e 7949 /* For instructions with VexNDS, the register-only source
c5d0745b 7950 operand must be a 32/64bit integer, XMM, YMM, ZMM, or mask
dfd69174 7951 register. It is encoded in VEX prefix. */
f12dc422
L
7952
7953 i386_operand_type op;
7954 unsigned int vvvv;
7955
c2ecccb3
L
7956 /* Swap two source operands if needed. */
7957 if (i.tm.opcode_modifier.swapsources)
f12dc422
L
7958 {
7959 vvvv = source;
7960 source = dest;
7961 }
7962 else
7963 vvvv = dest;
7964
7965 op = i.tm.operand_types[vvvv];
c0f3af97 7966 if ((dest + 1) >= i.operands
bab6aec1 7967 || ((op.bitfield.class != Reg
dc821c5f 7968 || (!op.bitfield.dword && !op.bitfield.qword))
3528c362 7969 && op.bitfield.class != RegSIMD
43234a1e 7970 && !operand_type_equal (&op, &regmask)))
c0f3af97 7971 abort ();
f12dc422 7972 i.vex.register_specifier = i.op[vvvv].regs;
c0f3af97
L
7973 dest++;
7974 }
7975 }
29b0f896
AM
7976
7977 i.rm.mode = 3;
dfd69174
JB
7978 /* One of the register operands will be encoded in the i.rm.reg
7979 field, the other in the combined i.rm.mode and i.rm.regmem
29b0f896
AM
7980 fields. If no form of this instruction supports a memory
7981 destination operand, then we assume the source operand may
7982 sometimes be a memory operand and so we need to store the
7983 destination in the i.rm.reg field. */
dfd69174 7984 if (!i.tm.opcode_modifier.regmem
40fb9820 7985 && operand_type_check (i.tm.operand_types[dest], anymem) == 0)
29b0f896
AM
7986 {
7987 i.rm.reg = i.op[dest].regs->reg_num;
7988 i.rm.regmem = i.op[source].regs->reg_num;
a5aeccd9
JB
7989 set_rex_vrex (i.op[dest].regs, REX_R, i.tm.opcode_modifier.sse2avx);
7990 set_rex_vrex (i.op[source].regs, REX_B, FALSE);
29b0f896
AM
7991 }
7992 else
7993 {
7994 i.rm.reg = i.op[source].regs->reg_num;
7995 i.rm.regmem = i.op[dest].regs->reg_num;
a5aeccd9
JB
7996 set_rex_vrex (i.op[dest].regs, REX_B, i.tm.opcode_modifier.sse2avx);
7997 set_rex_vrex (i.op[source].regs, REX_R, FALSE);
29b0f896 7998 }
e0c7f900 7999 if (flag_code != CODE_64BIT && (i.rex & REX_R))
c4a530c5 8000 {
4a5c67ed 8001 if (i.types[!i.tm.opcode_modifier.regmem].bitfield.class != RegCR)
c4a530c5 8002 abort ();
e0c7f900 8003 i.rex &= ~REX_R;
c4a530c5
JB
8004 add_prefix (LOCK_PREFIX_OPCODE);
8005 }
29b0f896
AM
8006 }
8007 else
8008 { /* If it's not 2 reg operands... */
c0f3af97
L
8009 unsigned int mem;
8010
29b0f896
AM
8011 if (i.mem_operands)
8012 {
8013 unsigned int fake_zero_displacement = 0;
99018f42 8014 unsigned int op;
4eed87de 8015
7ab9ffdd 8016 for (op = 0; op < i.operands; op++)
8dc0818e 8017 if (i.flags[op] & Operand_Mem)
7ab9ffdd 8018 break;
7ab9ffdd 8019 gas_assert (op < i.operands);
29b0f896 8020
63112cd6 8021 if (i.tm.opcode_modifier.sib)
6c30d220 8022 {
260cd341
LC
8023 /* The index register of VSIB shouldn't be RegIZ. */
8024 if (i.tm.opcode_modifier.sib != SIBMEM
8025 && i.index_reg->reg_num == RegIZ)
6c30d220
L
8026 abort ();
8027
8028 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
8029 if (!i.base_reg)
8030 {
8031 i.sib.base = NO_BASE_REGISTER;
8032 i.sib.scale = i.log2_scale_factor;
8033 i.types[op].bitfield.disp8 = 0;
8034 i.types[op].bitfield.disp16 = 0;
8035 i.types[op].bitfield.disp64 = 0;
43083a50 8036 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
6c30d220
L
8037 {
8038 /* Must be 32 bit */
8039 i.types[op].bitfield.disp32 = 1;
8040 i.types[op].bitfield.disp32s = 0;
8041 }
8042 else
8043 {
8044 i.types[op].bitfield.disp32 = 0;
8045 i.types[op].bitfield.disp32s = 1;
8046 }
8047 }
260cd341
LC
8048
8049 /* Since the mandatory SIB always has index register, so
8050 the code logic remains unchanged. The non-mandatory SIB
8051 without index register is allowed and will be handled
8052 later. */
8053 if (i.index_reg)
8054 {
8055 if (i.index_reg->reg_num == RegIZ)
8056 i.sib.index = NO_INDEX_REGISTER;
8057 else
8058 i.sib.index = i.index_reg->reg_num;
8059 set_rex_vrex (i.index_reg, REX_X, FALSE);
8060 }
6c30d220
L
8061 }
8062
29b0f896
AM
8063 default_seg = &ds;
8064
8065 if (i.base_reg == 0)
8066 {
8067 i.rm.mode = 0;
8068 if (!i.disp_operands)
9bb129e8 8069 fake_zero_displacement = 1;
29b0f896
AM
8070 if (i.index_reg == 0)
8071 {
73053c1f
JB
8072 i386_operand_type newdisp;
8073
260cd341
LC
8074 /* Both check for VSIB and mandatory non-vector SIB. */
8075 gas_assert (!i.tm.opcode_modifier.sib
8076 || i.tm.opcode_modifier.sib == SIBMEM);
29b0f896 8077 /* Operand is just <disp> */
20f0a1fc 8078 if (flag_code == CODE_64BIT)
29b0f896
AM
8079 {
8080 /* 64bit mode overwrites the 32bit absolute
8081 addressing by RIP relative addressing and
8082 absolute addressing is encoded by one of the
8083 redundant SIB forms. */
8084 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
8085 i.sib.base = NO_BASE_REGISTER;
8086 i.sib.index = NO_INDEX_REGISTER;
73053c1f 8087 newdisp = (!i.prefix[ADDR_PREFIX] ? disp32s : disp32);
20f0a1fc 8088 }
fc225355
L
8089 else if ((flag_code == CODE_16BIT)
8090 ^ (i.prefix[ADDR_PREFIX] != 0))
20f0a1fc
NC
8091 {
8092 i.rm.regmem = NO_BASE_REGISTER_16;
73053c1f 8093 newdisp = disp16;
20f0a1fc
NC
8094 }
8095 else
8096 {
8097 i.rm.regmem = NO_BASE_REGISTER;
73053c1f 8098 newdisp = disp32;
29b0f896 8099 }
73053c1f
JB
8100 i.types[op] = operand_type_and_not (i.types[op], anydisp);
8101 i.types[op] = operand_type_or (i.types[op], newdisp);
29b0f896 8102 }
63112cd6 8103 else if (!i.tm.opcode_modifier.sib)
29b0f896 8104 {
6c30d220 8105 /* !i.base_reg && i.index_reg */
e968fc9b 8106 if (i.index_reg->reg_num == RegIZ)
db51cc60
L
8107 i.sib.index = NO_INDEX_REGISTER;
8108 else
8109 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
8110 i.sib.base = NO_BASE_REGISTER;
8111 i.sib.scale = i.log2_scale_factor;
8112 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
40fb9820
L
8113 i.types[op].bitfield.disp8 = 0;
8114 i.types[op].bitfield.disp16 = 0;
8115 i.types[op].bitfield.disp64 = 0;
43083a50 8116 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
40fb9820
L
8117 {
8118 /* Must be 32 bit */
8119 i.types[op].bitfield.disp32 = 1;
8120 i.types[op].bitfield.disp32s = 0;
8121 }
29b0f896 8122 else
40fb9820
L
8123 {
8124 i.types[op].bitfield.disp32 = 0;
8125 i.types[op].bitfield.disp32s = 1;
8126 }
29b0f896 8127 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 8128 i.rex |= REX_X;
29b0f896
AM
8129 }
8130 }
8131 /* RIP addressing for 64bit mode. */
e968fc9b 8132 else if (i.base_reg->reg_num == RegIP)
29b0f896 8133 {
63112cd6 8134 gas_assert (!i.tm.opcode_modifier.sib);
29b0f896 8135 i.rm.regmem = NO_BASE_REGISTER;
40fb9820
L
8136 i.types[op].bitfield.disp8 = 0;
8137 i.types[op].bitfield.disp16 = 0;
8138 i.types[op].bitfield.disp32 = 0;
8139 i.types[op].bitfield.disp32s = 1;
8140 i.types[op].bitfield.disp64 = 0;
71903a11 8141 i.flags[op] |= Operand_PCrel;
20f0a1fc
NC
8142 if (! i.disp_operands)
8143 fake_zero_displacement = 1;
29b0f896 8144 }
dc821c5f 8145 else if (i.base_reg->reg_type.bitfield.word)
29b0f896 8146 {
63112cd6 8147 gas_assert (!i.tm.opcode_modifier.sib);
29b0f896
AM
8148 switch (i.base_reg->reg_num)
8149 {
8150 case 3: /* (%bx) */
8151 if (i.index_reg == 0)
8152 i.rm.regmem = 7;
8153 else /* (%bx,%si) -> 0, or (%bx,%di) -> 1 */
8154 i.rm.regmem = i.index_reg->reg_num - 6;
8155 break;
8156 case 5: /* (%bp) */
8157 default_seg = &ss;
8158 if (i.index_reg == 0)
8159 {
8160 i.rm.regmem = 6;
40fb9820 8161 if (operand_type_check (i.types[op], disp) == 0)
29b0f896
AM
8162 {
8163 /* fake (%bp) into 0(%bp) */
41eb8e88 8164 if (i.disp_encoding == disp_encoding_16bit)
1a02d6b0
L
8165 i.types[op].bitfield.disp16 = 1;
8166 else
8167 i.types[op].bitfield.disp8 = 1;
252b5132 8168 fake_zero_displacement = 1;
29b0f896
AM
8169 }
8170 }
8171 else /* (%bp,%si) -> 2, or (%bp,%di) -> 3 */
8172 i.rm.regmem = i.index_reg->reg_num - 6 + 2;
8173 break;
8174 default: /* (%si) -> 4 or (%di) -> 5 */
8175 i.rm.regmem = i.base_reg->reg_num - 6 + 4;
8176 }
41eb8e88
L
8177 if (!fake_zero_displacement
8178 && !i.disp_operands
8179 && i.disp_encoding)
8180 {
8181 fake_zero_displacement = 1;
8182 if (i.disp_encoding == disp_encoding_8bit)
8183 i.types[op].bitfield.disp8 = 1;
8184 else
8185 i.types[op].bitfield.disp16 = 1;
8186 }
29b0f896
AM
8187 i.rm.mode = mode_from_disp_size (i.types[op]);
8188 }
8189 else /* i.base_reg and 32/64 bit mode */
8190 {
8191 if (flag_code == CODE_64BIT
40fb9820
L
8192 && operand_type_check (i.types[op], disp))
8193 {
73053c1f
JB
8194 i.types[op].bitfield.disp16 = 0;
8195 i.types[op].bitfield.disp64 = 0;
40fb9820 8196 if (i.prefix[ADDR_PREFIX] == 0)
73053c1f
JB
8197 {
8198 i.types[op].bitfield.disp32 = 0;
8199 i.types[op].bitfield.disp32s = 1;
8200 }
40fb9820 8201 else
73053c1f
JB
8202 {
8203 i.types[op].bitfield.disp32 = 1;
8204 i.types[op].bitfield.disp32s = 0;
8205 }
40fb9820 8206 }
20f0a1fc 8207
63112cd6 8208 if (!i.tm.opcode_modifier.sib)
6c30d220 8209 i.rm.regmem = i.base_reg->reg_num;
29b0f896 8210 if ((i.base_reg->reg_flags & RegRex) != 0)
161a04f6 8211 i.rex |= REX_B;
29b0f896
AM
8212 i.sib.base = i.base_reg->reg_num;
8213 /* x86-64 ignores REX prefix bit here to avoid decoder
8214 complications. */
848930b2
JB
8215 if (!(i.base_reg->reg_flags & RegRex)
8216 && (i.base_reg->reg_num == EBP_REG_NUM
8217 || i.base_reg->reg_num == ESP_REG_NUM))
29b0f896 8218 default_seg = &ss;
848930b2 8219 if (i.base_reg->reg_num == 5 && i.disp_operands == 0)
29b0f896 8220 {
848930b2 8221 fake_zero_displacement = 1;
1a02d6b0
L
8222 if (i.disp_encoding == disp_encoding_32bit)
8223 i.types[op].bitfield.disp32 = 1;
8224 else
8225 i.types[op].bitfield.disp8 = 1;
29b0f896
AM
8226 }
8227 i.sib.scale = i.log2_scale_factor;
8228 if (i.index_reg == 0)
8229 {
260cd341
LC
8230 /* Only check for VSIB. */
8231 gas_assert (i.tm.opcode_modifier.sib != VECSIB128
8232 && i.tm.opcode_modifier.sib != VECSIB256
8233 && i.tm.opcode_modifier.sib != VECSIB512);
8234
29b0f896
AM
8235 /* <disp>(%esp) becomes two byte modrm with no index
8236 register. We've already stored the code for esp
8237 in i.rm.regmem ie. ESCAPE_TO_TWO_BYTE_ADDRESSING.
8238 Any base register besides %esp will not use the
8239 extra modrm byte. */
8240 i.sib.index = NO_INDEX_REGISTER;
29b0f896 8241 }
63112cd6 8242 else if (!i.tm.opcode_modifier.sib)
29b0f896 8243 {
e968fc9b 8244 if (i.index_reg->reg_num == RegIZ)
db51cc60
L
8245 i.sib.index = NO_INDEX_REGISTER;
8246 else
8247 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
8248 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
8249 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 8250 i.rex |= REX_X;
29b0f896 8251 }
67a4f2b7
AO
8252
8253 if (i.disp_operands
8254 && (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
8255 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL))
8256 i.rm.mode = 0;
8257 else
a501d77e
L
8258 {
8259 if (!fake_zero_displacement
8260 && !i.disp_operands
8261 && i.disp_encoding)
8262 {
8263 fake_zero_displacement = 1;
8264 if (i.disp_encoding == disp_encoding_8bit)
8265 i.types[op].bitfield.disp8 = 1;
8266 else
8267 i.types[op].bitfield.disp32 = 1;
8268 }
8269 i.rm.mode = mode_from_disp_size (i.types[op]);
8270 }
29b0f896 8271 }
252b5132 8272
29b0f896
AM
8273 if (fake_zero_displacement)
8274 {
8275 /* Fakes a zero displacement assuming that i.types[op]
8276 holds the correct displacement size. */
8277 expressionS *exp;
8278
9c2799c2 8279 gas_assert (i.op[op].disps == 0);
29b0f896
AM
8280 exp = &disp_expressions[i.disp_operands++];
8281 i.op[op].disps = exp;
8282 exp->X_op = O_constant;
8283 exp->X_add_number = 0;
8284 exp->X_add_symbol = (symbolS *) 0;
8285 exp->X_op_symbol = (symbolS *) 0;
8286 }
c0f3af97
L
8287
8288 mem = op;
29b0f896 8289 }
c0f3af97
L
8290 else
8291 mem = ~0;
252b5132 8292
8c43a48b 8293 if (i.tm.opcode_modifier.vexsources == XOP2SOURCES)
5dd85c99
SP
8294 {
8295 if (operand_type_check (i.types[0], imm))
8296 i.vex.register_specifier = NULL;
8297 else
8298 {
8299 /* VEX.vvvv encodes one of the sources when the first
8300 operand is not an immediate. */
1ef99a7b 8301 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
8302 i.vex.register_specifier = i.op[0].regs;
8303 else
8304 i.vex.register_specifier = i.op[1].regs;
8305 }
8306
8307 /* Destination is a XMM register encoded in the ModRM.reg
8308 and VEX.R bit. */
8309 i.rm.reg = i.op[2].regs->reg_num;
8310 if ((i.op[2].regs->reg_flags & RegRex) != 0)
8311 i.rex |= REX_R;
8312
8313 /* ModRM.rm and VEX.B encodes the other source. */
8314 if (!i.mem_operands)
8315 {
8316 i.rm.mode = 3;
8317
1ef99a7b 8318 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
8319 i.rm.regmem = i.op[1].regs->reg_num;
8320 else
8321 i.rm.regmem = i.op[0].regs->reg_num;
8322
8323 if ((i.op[1].regs->reg_flags & RegRex) != 0)
8324 i.rex |= REX_B;
8325 }
8326 }
2426c15f 8327 else if (i.tm.opcode_modifier.vexvvvv == VEXLWP)
f88c9eb0
SP
8328 {
8329 i.vex.register_specifier = i.op[2].regs;
8330 if (!i.mem_operands)
8331 {
8332 i.rm.mode = 3;
8333 i.rm.regmem = i.op[1].regs->reg_num;
8334 if ((i.op[1].regs->reg_flags & RegRex) != 0)
8335 i.rex |= REX_B;
8336 }
8337 }
29b0f896
AM
8338 /* Fill in i.rm.reg or i.rm.regmem field with register operand
8339 (if any) based on i.tm.extension_opcode. Again, we must be
8340 careful to make sure that segment/control/debug/test/MMX
8341 registers are coded into the i.rm.reg field. */
f88c9eb0 8342 else if (i.reg_operands)
29b0f896 8343 {
99018f42 8344 unsigned int op;
7ab9ffdd
L
8345 unsigned int vex_reg = ~0;
8346
8347 for (op = 0; op < i.operands; op++)
921eafea
L
8348 if (i.types[op].bitfield.class == Reg
8349 || i.types[op].bitfield.class == RegBND
8350 || i.types[op].bitfield.class == RegMask
8351 || i.types[op].bitfield.class == SReg
8352 || i.types[op].bitfield.class == RegCR
8353 || i.types[op].bitfield.class == RegDR
8354 || i.types[op].bitfield.class == RegTR
8355 || i.types[op].bitfield.class == RegSIMD
8356 || i.types[op].bitfield.class == RegMMX)
8357 break;
c0209578 8358
7ab9ffdd
L
8359 if (vex_3_sources)
8360 op = dest;
2426c15f 8361 else if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd
L
8362 {
8363 /* For instructions with VexNDS, the register-only
8364 source operand is encoded in VEX prefix. */
8365 gas_assert (mem != (unsigned int) ~0);
c0f3af97 8366
7ab9ffdd 8367 if (op > mem)
c0f3af97 8368 {
7ab9ffdd
L
8369 vex_reg = op++;
8370 gas_assert (op < i.operands);
c0f3af97
L
8371 }
8372 else
c0f3af97 8373 {
f12dc422
L
8374 /* Check register-only source operand when two source
8375 operands are swapped. */
8376 if (!i.tm.operand_types[op].bitfield.baseindex
8377 && i.tm.operand_types[op + 1].bitfield.baseindex)
8378 {
8379 vex_reg = op;
8380 op += 2;
8381 gas_assert (mem == (vex_reg + 1)
8382 && op < i.operands);
8383 }
8384 else
8385 {
8386 vex_reg = op + 1;
8387 gas_assert (vex_reg < i.operands);
8388 }
c0f3af97 8389 }
7ab9ffdd 8390 }
2426c15f 8391 else if (i.tm.opcode_modifier.vexvvvv == VEXNDD)
7ab9ffdd 8392 {
f12dc422 8393 /* For instructions with VexNDD, the register destination
7ab9ffdd 8394 is encoded in VEX prefix. */
f12dc422
L
8395 if (i.mem_operands == 0)
8396 {
8397 /* There is no memory operand. */
8398 gas_assert ((op + 2) == i.operands);
8399 vex_reg = op + 1;
8400 }
8401 else
8d63c93e 8402 {
ed438a93
JB
8403 /* There are only 2 non-immediate operands. */
8404 gas_assert (op < i.imm_operands + 2
8405 && i.operands == i.imm_operands + 2);
8406 vex_reg = i.imm_operands + 1;
f12dc422 8407 }
7ab9ffdd
L
8408 }
8409 else
8410 gas_assert (op < i.operands);
99018f42 8411
7ab9ffdd
L
8412 if (vex_reg != (unsigned int) ~0)
8413 {
f12dc422 8414 i386_operand_type *type = &i.tm.operand_types[vex_reg];
7ab9ffdd 8415
bab6aec1 8416 if ((type->bitfield.class != Reg
dc821c5f 8417 || (!type->bitfield.dword && !type->bitfield.qword))
3528c362 8418 && type->bitfield.class != RegSIMD
43234a1e 8419 && !operand_type_equal (type, &regmask))
7ab9ffdd 8420 abort ();
f88c9eb0 8421
7ab9ffdd
L
8422 i.vex.register_specifier = i.op[vex_reg].regs;
8423 }
8424
1b9f0c97
L
8425 /* Don't set OP operand twice. */
8426 if (vex_reg != op)
7ab9ffdd 8427 {
1b9f0c97
L
8428 /* If there is an extension opcode to put here, the
8429 register number must be put into the regmem field. */
8430 if (i.tm.extension_opcode != None)
8431 {
8432 i.rm.regmem = i.op[op].regs->reg_num;
a5aeccd9
JB
8433 set_rex_vrex (i.op[op].regs, REX_B,
8434 i.tm.opcode_modifier.sse2avx);
1b9f0c97
L
8435 }
8436 else
8437 {
8438 i.rm.reg = i.op[op].regs->reg_num;
a5aeccd9
JB
8439 set_rex_vrex (i.op[op].regs, REX_R,
8440 i.tm.opcode_modifier.sse2avx);
1b9f0c97 8441 }
7ab9ffdd 8442 }
252b5132 8443
29b0f896
AM
8444 /* Now, if no memory operand has set i.rm.mode = 0, 1, 2 we
8445 must set it to 3 to indicate this is a register operand
8446 in the regmem field. */
8447 if (!i.mem_operands)
8448 i.rm.mode = 3;
8449 }
252b5132 8450
29b0f896 8451 /* Fill in i.rm.reg field with extension opcode (if any). */
c1e679ec 8452 if (i.tm.extension_opcode != None)
29b0f896
AM
8453 i.rm.reg = i.tm.extension_opcode;
8454 }
8455 return default_seg;
8456}
252b5132 8457
48ef937e
JB
8458static INLINE void
8459frag_opcode_byte (unsigned char byte)
8460{
8461 if (now_seg != absolute_section)
8462 FRAG_APPEND_1_CHAR (byte);
8463 else
8464 ++abs_section_offset;
8465}
8466
376cd056
JB
8467static unsigned int
8468flip_code16 (unsigned int code16)
8469{
8470 gas_assert (i.tm.operands == 1);
8471
8472 return !(i.prefix[REX_PREFIX] & REX_W)
8473 && (code16 ? i.tm.operand_types[0].bitfield.disp32
8474 || i.tm.operand_types[0].bitfield.disp32s
8475 : i.tm.operand_types[0].bitfield.disp16)
8476 ? CODE16 : 0;
8477}
8478
29b0f896 8479static void
e3bb37b5 8480output_branch (void)
29b0f896
AM
8481{
8482 char *p;
f8a5c266 8483 int size;
29b0f896
AM
8484 int code16;
8485 int prefix;
8486 relax_substateT subtype;
8487 symbolS *sym;
8488 offsetT off;
8489
48ef937e
JB
8490 if (now_seg == absolute_section)
8491 {
8492 as_bad (_("relaxable branches not supported in absolute section"));
8493 return;
8494 }
8495
f8a5c266 8496 code16 = flag_code == CODE_16BIT ? CODE16 : 0;
a501d77e 8497 size = i.disp_encoding == disp_encoding_32bit ? BIG : SMALL;
29b0f896
AM
8498
8499 prefix = 0;
8500 if (i.prefix[DATA_PREFIX] != 0)
252b5132 8501 {
29b0f896
AM
8502 prefix = 1;
8503 i.prefixes -= 1;
376cd056 8504 code16 ^= flip_code16(code16);
252b5132 8505 }
29b0f896
AM
8506 /* Pentium4 branch hints. */
8507 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
8508 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
2f66722d 8509 {
29b0f896
AM
8510 prefix++;
8511 i.prefixes--;
8512 }
8513 if (i.prefix[REX_PREFIX] != 0)
8514 {
8515 prefix++;
8516 i.prefixes--;
2f66722d
AM
8517 }
8518
7e8b059b
L
8519 /* BND prefixed jump. */
8520 if (i.prefix[BND_PREFIX] != 0)
8521 {
6cb0a70e
JB
8522 prefix++;
8523 i.prefixes--;
7e8b059b
L
8524 }
8525
f2810fe0
JB
8526 if (i.prefixes != 0)
8527 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
29b0f896
AM
8528
8529 /* It's always a symbol; End frag & setup for relax.
8530 Make sure there is enough room in this frag for the largest
8531 instruction we may generate in md_convert_frag. This is 2
8532 bytes for the opcode and room for the prefix and largest
8533 displacement. */
8534 frag_grow (prefix + 2 + 4);
8535 /* Prefix and 1 opcode byte go in fr_fix. */
8536 p = frag_more (prefix + 1);
8537 if (i.prefix[DATA_PREFIX] != 0)
8538 *p++ = DATA_PREFIX_OPCODE;
8539 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE
8540 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE)
8541 *p++ = i.prefix[SEG_PREFIX];
6cb0a70e
JB
8542 if (i.prefix[BND_PREFIX] != 0)
8543 *p++ = BND_PREFIX_OPCODE;
29b0f896
AM
8544 if (i.prefix[REX_PREFIX] != 0)
8545 *p++ = i.prefix[REX_PREFIX];
8546 *p = i.tm.base_opcode;
8547
8548 if ((unsigned char) *p == JUMP_PC_RELATIVE)
f8a5c266 8549 subtype = ENCODE_RELAX_STATE (UNCOND_JUMP, size);
40fb9820 8550 else if (cpu_arch_flags.bitfield.cpui386)
f8a5c266 8551 subtype = ENCODE_RELAX_STATE (COND_JUMP, size);
29b0f896 8552 else
f8a5c266 8553 subtype = ENCODE_RELAX_STATE (COND_JUMP86, size);
29b0f896 8554 subtype |= code16;
3e73aa7c 8555
29b0f896
AM
8556 sym = i.op[0].disps->X_add_symbol;
8557 off = i.op[0].disps->X_add_number;
3e73aa7c 8558
29b0f896
AM
8559 if (i.op[0].disps->X_op != O_constant
8560 && i.op[0].disps->X_op != O_symbol)
3e73aa7c 8561 {
29b0f896
AM
8562 /* Handle complex expressions. */
8563 sym = make_expr_symbol (i.op[0].disps);
8564 off = 0;
8565 }
3e73aa7c 8566
29b0f896
AM
8567 /* 1 possible extra opcode + 4 byte displacement go in var part.
8568 Pass reloc in fr_var. */
d258b828 8569 frag_var (rs_machine_dependent, 5, i.reloc[0], subtype, sym, off, p);
29b0f896 8570}
3e73aa7c 8571
bd7ab16b
L
8572#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8573/* Return TRUE iff PLT32 relocation should be used for branching to
8574 symbol S. */
8575
8576static bfd_boolean
8577need_plt32_p (symbolS *s)
8578{
8579 /* PLT32 relocation is ELF only. */
8580 if (!IS_ELF)
8581 return FALSE;
8582
a5def729
RO
8583#ifdef TE_SOLARIS
8584 /* Don't emit PLT32 relocation on Solaris: neither native linker nor
8585 krtld support it. */
8586 return FALSE;
8587#endif
8588
bd7ab16b
L
8589 /* Since there is no need to prepare for PLT branch on x86-64, we
8590 can generate R_X86_64_PLT32, instead of R_X86_64_PC32, which can
8591 be used as a marker for 32-bit PC-relative branches. */
8592 if (!object_64bit)
8593 return FALSE;
8594
44365e88
AM
8595 if (s == NULL)
8596 return FALSE;
8597
bd7ab16b
L
8598 /* Weak or undefined symbol need PLT32 relocation. */
8599 if (S_IS_WEAK (s) || !S_IS_DEFINED (s))
8600 return TRUE;
8601
8602 /* Non-global symbol doesn't need PLT32 relocation. */
8603 if (! S_IS_EXTERNAL (s))
8604 return FALSE;
8605
8606 /* Other global symbols need PLT32 relocation. NB: Symbol with
8607 non-default visibilities are treated as normal global symbol
8608 so that PLT32 relocation can be used as a marker for 32-bit
8609 PC-relative branches. It is useful for linker relaxation. */
8610 return TRUE;
8611}
8612#endif
8613
29b0f896 8614static void
e3bb37b5 8615output_jump (void)
29b0f896
AM
8616{
8617 char *p;
8618 int size;
3e02c1cc 8619 fixS *fixP;
bd7ab16b 8620 bfd_reloc_code_real_type jump_reloc = i.reloc[0];
29b0f896 8621
0cfa3eb3 8622 if (i.tm.opcode_modifier.jump == JUMP_BYTE)
29b0f896
AM
8623 {
8624 /* This is a loop or jecxz type instruction. */
8625 size = 1;
8626 if (i.prefix[ADDR_PREFIX] != 0)
8627 {
48ef937e 8628 frag_opcode_byte (ADDR_PREFIX_OPCODE);
29b0f896
AM
8629 i.prefixes -= 1;
8630 }
8631 /* Pentium4 branch hints. */
8632 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
8633 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
8634 {
48ef937e 8635 frag_opcode_byte (i.prefix[SEG_PREFIX]);
29b0f896 8636 i.prefixes--;
3e73aa7c
JH
8637 }
8638 }
29b0f896
AM
8639 else
8640 {
8641 int code16;
3e73aa7c 8642
29b0f896
AM
8643 code16 = 0;
8644 if (flag_code == CODE_16BIT)
8645 code16 = CODE16;
3e73aa7c 8646
29b0f896
AM
8647 if (i.prefix[DATA_PREFIX] != 0)
8648 {
48ef937e 8649 frag_opcode_byte (DATA_PREFIX_OPCODE);
29b0f896 8650 i.prefixes -= 1;
376cd056 8651 code16 ^= flip_code16(code16);
29b0f896 8652 }
252b5132 8653
29b0f896
AM
8654 size = 4;
8655 if (code16)
8656 size = 2;
8657 }
9fcc94b6 8658
6cb0a70e
JB
8659 /* BND prefixed jump. */
8660 if (i.prefix[BND_PREFIX] != 0)
29b0f896 8661 {
48ef937e 8662 frag_opcode_byte (i.prefix[BND_PREFIX]);
29b0f896
AM
8663 i.prefixes -= 1;
8664 }
252b5132 8665
6cb0a70e 8666 if (i.prefix[REX_PREFIX] != 0)
7e8b059b 8667 {
48ef937e 8668 frag_opcode_byte (i.prefix[REX_PREFIX]);
7e8b059b
L
8669 i.prefixes -= 1;
8670 }
8671
f2810fe0
JB
8672 if (i.prefixes != 0)
8673 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
e0890092 8674
48ef937e
JB
8675 if (now_seg == absolute_section)
8676 {
9a182d04 8677 abs_section_offset += i.opcode_length + size;
48ef937e
JB
8678 return;
8679 }
8680
9a182d04
JB
8681 p = frag_more (i.opcode_length + size);
8682 switch (i.opcode_length)
42164a71
L
8683 {
8684 case 2:
8685 *p++ = i.tm.base_opcode >> 8;
1a0670f3 8686 /* Fall through. */
42164a71
L
8687 case 1:
8688 *p++ = i.tm.base_opcode;
8689 break;
8690 default:
8691 abort ();
8692 }
e0890092 8693
bd7ab16b
L
8694#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8695 if (size == 4
8696 && jump_reloc == NO_RELOC
8697 && need_plt32_p (i.op[0].disps->X_add_symbol))
8698 jump_reloc = BFD_RELOC_X86_64_PLT32;
8699#endif
8700
8701 jump_reloc = reloc (size, 1, 1, jump_reloc);
8702
3e02c1cc 8703 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal, size,
bd7ab16b 8704 i.op[0].disps, 1, jump_reloc);
3e02c1cc
AM
8705
8706 /* All jumps handled here are signed, but don't use a signed limit
8707 check for 32 and 16 bit jumps as we want to allow wrap around at
8708 4G and 64k respectively. */
8709 if (size == 1)
8710 fixP->fx_signed = 1;
29b0f896 8711}
e0890092 8712
29b0f896 8713static void
e3bb37b5 8714output_interseg_jump (void)
29b0f896
AM
8715{
8716 char *p;
8717 int size;
8718 int prefix;
8719 int code16;
252b5132 8720
29b0f896
AM
8721 code16 = 0;
8722 if (flag_code == CODE_16BIT)
8723 code16 = CODE16;
a217f122 8724
29b0f896
AM
8725 prefix = 0;
8726 if (i.prefix[DATA_PREFIX] != 0)
8727 {
8728 prefix = 1;
8729 i.prefixes -= 1;
8730 code16 ^= CODE16;
8731 }
6cb0a70e
JB
8732
8733 gas_assert (!i.prefix[REX_PREFIX]);
252b5132 8734
29b0f896
AM
8735 size = 4;
8736 if (code16)
8737 size = 2;
252b5132 8738
f2810fe0
JB
8739 if (i.prefixes != 0)
8740 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
252b5132 8741
48ef937e
JB
8742 if (now_seg == absolute_section)
8743 {
8744 abs_section_offset += prefix + 1 + 2 + size;
8745 return;
8746 }
8747
29b0f896
AM
8748 /* 1 opcode; 2 segment; offset */
8749 p = frag_more (prefix + 1 + 2 + size);
3e73aa7c 8750
29b0f896
AM
8751 if (i.prefix[DATA_PREFIX] != 0)
8752 *p++ = DATA_PREFIX_OPCODE;
252b5132 8753
29b0f896
AM
8754 if (i.prefix[REX_PREFIX] != 0)
8755 *p++ = i.prefix[REX_PREFIX];
252b5132 8756
29b0f896
AM
8757 *p++ = i.tm.base_opcode;
8758 if (i.op[1].imms->X_op == O_constant)
8759 {
8760 offsetT n = i.op[1].imms->X_add_number;
252b5132 8761
29b0f896
AM
8762 if (size == 2
8763 && !fits_in_unsigned_word (n)
8764 && !fits_in_signed_word (n))
8765 {
8766 as_bad (_("16-bit jump out of range"));
8767 return;
8768 }
8769 md_number_to_chars (p, n, size);
8770 }
8771 else
8772 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
d258b828 8773 i.op[1].imms, 0, reloc (size, 0, 0, i.reloc[1]));
6d96a594
C
8774
8775 p += size;
8776 if (i.op[0].imms->X_op == O_constant)
8777 md_number_to_chars (p, (valueT) i.op[0].imms->X_add_number, 2);
8778 else
8779 fix_new_exp (frag_now, p - frag_now->fr_literal, 2,
8780 i.op[0].imms, 0, reloc (2, 0, 0, i.reloc[0]));
29b0f896 8781}
a217f122 8782
b4a3a7b4
L
8783#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8784void
8785x86_cleanup (void)
8786{
8787 char *p;
8788 asection *seg = now_seg;
8789 subsegT subseg = now_subseg;
8790 asection *sec;
8791 unsigned int alignment, align_size_1;
8792 unsigned int isa_1_descsz, feature_2_descsz, descsz;
8793 unsigned int isa_1_descsz_raw, feature_2_descsz_raw;
8794 unsigned int padding;
8795
8796 if (!IS_ELF || !x86_used_note)
8797 return;
8798
b4a3a7b4
L
8799 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X86;
8800
8801 /* The .note.gnu.property section layout:
8802
8803 Field Length Contents
8804 ---- ---- ----
8805 n_namsz 4 4
8806 n_descsz 4 The note descriptor size
8807 n_type 4 NT_GNU_PROPERTY_TYPE_0
8808 n_name 4 "GNU"
8809 n_desc n_descsz The program property array
8810 .... .... ....
8811 */
8812
8813 /* Create the .note.gnu.property section. */
8814 sec = subseg_new (NOTE_GNU_PROPERTY_SECTION_NAME, 0);
fd361982 8815 bfd_set_section_flags (sec,
b4a3a7b4
L
8816 (SEC_ALLOC
8817 | SEC_LOAD
8818 | SEC_DATA
8819 | SEC_HAS_CONTENTS
8820 | SEC_READONLY));
8821
8822 if (get_elf_backend_data (stdoutput)->s->elfclass == ELFCLASS64)
8823 {
8824 align_size_1 = 7;
8825 alignment = 3;
8826 }
8827 else
8828 {
8829 align_size_1 = 3;
8830 alignment = 2;
8831 }
8832
fd361982 8833 bfd_set_section_alignment (sec, alignment);
b4a3a7b4
L
8834 elf_section_type (sec) = SHT_NOTE;
8835
8836 /* GNU_PROPERTY_X86_ISA_1_USED: 4-byte type + 4-byte data size
8837 + 4-byte data */
8838 isa_1_descsz_raw = 4 + 4 + 4;
8839 /* Align GNU_PROPERTY_X86_ISA_1_USED. */
8840 isa_1_descsz = (isa_1_descsz_raw + align_size_1) & ~align_size_1;
8841
8842 feature_2_descsz_raw = isa_1_descsz;
8843 /* GNU_PROPERTY_X86_FEATURE_2_USED: 4-byte type + 4-byte data size
8844 + 4-byte data */
8845 feature_2_descsz_raw += 4 + 4 + 4;
8846 /* Align GNU_PROPERTY_X86_FEATURE_2_USED. */
8847 feature_2_descsz = ((feature_2_descsz_raw + align_size_1)
8848 & ~align_size_1);
8849
8850 descsz = feature_2_descsz;
8851 /* Section size: n_namsz + n_descsz + n_type + n_name + n_descsz. */
8852 p = frag_more (4 + 4 + 4 + 4 + descsz);
8853
8854 /* Write n_namsz. */
8855 md_number_to_chars (p, (valueT) 4, 4);
8856
8857 /* Write n_descsz. */
8858 md_number_to_chars (p + 4, (valueT) descsz, 4);
8859
8860 /* Write n_type. */
8861 md_number_to_chars (p + 4 * 2, (valueT) NT_GNU_PROPERTY_TYPE_0, 4);
8862
8863 /* Write n_name. */
8864 memcpy (p + 4 * 3, "GNU", 4);
8865
8866 /* Write 4-byte type. */
8867 md_number_to_chars (p + 4 * 4,
8868 (valueT) GNU_PROPERTY_X86_ISA_1_USED, 4);
8869
8870 /* Write 4-byte data size. */
8871 md_number_to_chars (p + 4 * 5, (valueT) 4, 4);
8872
8873 /* Write 4-byte data. */
8874 md_number_to_chars (p + 4 * 6, (valueT) x86_isa_1_used, 4);
8875
8876 /* Zero out paddings. */
8877 padding = isa_1_descsz - isa_1_descsz_raw;
8878 if (padding)
8879 memset (p + 4 * 7, 0, padding);
8880
8881 /* Write 4-byte type. */
8882 md_number_to_chars (p + isa_1_descsz + 4 * 4,
8883 (valueT) GNU_PROPERTY_X86_FEATURE_2_USED, 4);
8884
8885 /* Write 4-byte data size. */
8886 md_number_to_chars (p + isa_1_descsz + 4 * 5, (valueT) 4, 4);
8887
8888 /* Write 4-byte data. */
8889 md_number_to_chars (p + isa_1_descsz + 4 * 6,
8890 (valueT) x86_feature_2_used, 4);
8891
8892 /* Zero out paddings. */
8893 padding = feature_2_descsz - feature_2_descsz_raw;
8894 if (padding)
8895 memset (p + isa_1_descsz + 4 * 7, 0, padding);
8896
8897 /* We probably can't restore the current segment, for there likely
8898 isn't one yet... */
8899 if (seg && subseg)
8900 subseg_set (seg, subseg);
8901}
8902#endif
8903
9c33702b
JB
8904static unsigned int
8905encoding_length (const fragS *start_frag, offsetT start_off,
8906 const char *frag_now_ptr)
8907{
8908 unsigned int len = 0;
8909
8910 if (start_frag != frag_now)
8911 {
8912 const fragS *fr = start_frag;
8913
8914 do {
8915 len += fr->fr_fix;
8916 fr = fr->fr_next;
8917 } while (fr && fr != frag_now);
8918 }
8919
8920 return len - start_off + (frag_now_ptr - frag_now->fr_literal);
8921}
8922
e379e5f3 8923/* Return 1 for test, and, cmp, add, sub, inc and dec which may
79d72f45
HL
8924 be macro-fused with conditional jumps.
8925 NB: If TEST/AND/CMP/ADD/SUB/INC/DEC is of RIP relative address,
8926 or is one of the following format:
8927
8928 cmp m, imm
8929 add m, imm
8930 sub m, imm
8931 test m, imm
8932 and m, imm
8933 inc m
8934 dec m
8935
8936 it is unfusible. */
e379e5f3
L
8937
8938static int
79d72f45 8939maybe_fused_with_jcc_p (enum mf_cmp_kind* mf_cmp_p)
e379e5f3
L
8940{
8941 /* No RIP address. */
8942 if (i.base_reg && i.base_reg->reg_num == RegIP)
8943 return 0;
8944
8945 /* No VEX/EVEX encoding. */
8946 if (is_any_vex_encoding (&i.tm))
8947 return 0;
8948
79d72f45
HL
8949 /* add, sub without add/sub m, imm. */
8950 if (i.tm.base_opcode <= 5
e379e5f3
L
8951 || (i.tm.base_opcode >= 0x28 && i.tm.base_opcode <= 0x2d)
8952 || ((i.tm.base_opcode | 3) == 0x83
79d72f45 8953 && (i.tm.extension_opcode == 0x5
e379e5f3 8954 || i.tm.extension_opcode == 0x0)))
79d72f45
HL
8955 {
8956 *mf_cmp_p = mf_cmp_alu_cmp;
8957 return !(i.mem_operands && i.imm_operands);
8958 }
e379e5f3 8959
79d72f45
HL
8960 /* and without and m, imm. */
8961 if ((i.tm.base_opcode >= 0x20 && i.tm.base_opcode <= 0x25)
8962 || ((i.tm.base_opcode | 3) == 0x83
8963 && i.tm.extension_opcode == 0x4))
8964 {
8965 *mf_cmp_p = mf_cmp_test_and;
8966 return !(i.mem_operands && i.imm_operands);
8967 }
8968
8969 /* test without test m imm. */
e379e5f3
L
8970 if ((i.tm.base_opcode | 1) == 0x85
8971 || (i.tm.base_opcode | 1) == 0xa9
8972 || ((i.tm.base_opcode | 1) == 0xf7
79d72f45
HL
8973 && i.tm.extension_opcode == 0))
8974 {
8975 *mf_cmp_p = mf_cmp_test_and;
8976 return !(i.mem_operands && i.imm_operands);
8977 }
8978
8979 /* cmp without cmp m, imm. */
8980 if ((i.tm.base_opcode >= 0x38 && i.tm.base_opcode <= 0x3d)
e379e5f3
L
8981 || ((i.tm.base_opcode | 3) == 0x83
8982 && (i.tm.extension_opcode == 0x7)))
79d72f45
HL
8983 {
8984 *mf_cmp_p = mf_cmp_alu_cmp;
8985 return !(i.mem_operands && i.imm_operands);
8986 }
e379e5f3 8987
79d72f45 8988 /* inc, dec without inc/dec m. */
e379e5f3
L
8989 if ((i.tm.cpu_flags.bitfield.cpuno64
8990 && (i.tm.base_opcode | 0xf) == 0x4f)
8991 || ((i.tm.base_opcode | 1) == 0xff
8992 && i.tm.extension_opcode <= 0x1))
79d72f45
HL
8993 {
8994 *mf_cmp_p = mf_cmp_incdec;
8995 return !i.mem_operands;
8996 }
e379e5f3
L
8997
8998 return 0;
8999}
9000
9001/* Return 1 if a FUSED_JCC_PADDING frag should be generated. */
9002
9003static int
79d72f45 9004add_fused_jcc_padding_frag_p (enum mf_cmp_kind* mf_cmp_p)
e379e5f3
L
9005{
9006 /* NB: Don't work with COND_JUMP86 without i386. */
9007 if (!align_branch_power
9008 || now_seg == absolute_section
9009 || !cpu_arch_flags.bitfield.cpui386
9010 || !(align_branch & align_branch_fused_bit))
9011 return 0;
9012
79d72f45 9013 if (maybe_fused_with_jcc_p (mf_cmp_p))
e379e5f3
L
9014 {
9015 if (last_insn.kind == last_insn_other
9016 || last_insn.seg != now_seg)
9017 return 1;
9018 if (flag_debug)
9019 as_warn_where (last_insn.file, last_insn.line,
9020 _("`%s` skips -malign-branch-boundary on `%s`"),
9021 last_insn.name, i.tm.name);
9022 }
9023
9024 return 0;
9025}
9026
9027/* Return 1 if a BRANCH_PREFIX frag should be generated. */
9028
9029static int
9030add_branch_prefix_frag_p (void)
9031{
9032 /* NB: Don't work with COND_JUMP86 without i386. Don't add prefix
9033 to PadLock instructions since they include prefixes in opcode. */
9034 if (!align_branch_power
9035 || !align_branch_prefix_size
9036 || now_seg == absolute_section
9037 || i.tm.cpu_flags.bitfield.cpupadlock
9038 || !cpu_arch_flags.bitfield.cpui386)
9039 return 0;
9040
9041 /* Don't add prefix if it is a prefix or there is no operand in case
9042 that segment prefix is special. */
9043 if (!i.operands || i.tm.opcode_modifier.isprefix)
9044 return 0;
9045
9046 if (last_insn.kind == last_insn_other
9047 || last_insn.seg != now_seg)
9048 return 1;
9049
9050 if (flag_debug)
9051 as_warn_where (last_insn.file, last_insn.line,
9052 _("`%s` skips -malign-branch-boundary on `%s`"),
9053 last_insn.name, i.tm.name);
9054
9055 return 0;
9056}
9057
9058/* Return 1 if a BRANCH_PADDING frag should be generated. */
9059
9060static int
79d72f45
HL
9061add_branch_padding_frag_p (enum align_branch_kind *branch_p,
9062 enum mf_jcc_kind *mf_jcc_p)
e379e5f3
L
9063{
9064 int add_padding;
9065
9066 /* NB: Don't work with COND_JUMP86 without i386. */
9067 if (!align_branch_power
9068 || now_seg == absolute_section
9069 || !cpu_arch_flags.bitfield.cpui386)
9070 return 0;
9071
9072 add_padding = 0;
9073
9074 /* Check for jcc and direct jmp. */
9075 if (i.tm.opcode_modifier.jump == JUMP)
9076 {
9077 if (i.tm.base_opcode == JUMP_PC_RELATIVE)
9078 {
9079 *branch_p = align_branch_jmp;
9080 add_padding = align_branch & align_branch_jmp_bit;
9081 }
9082 else
9083 {
79d72f45
HL
9084 /* Because J<cc> and JN<cc> share same group in macro-fusible table,
9085 igore the lowest bit. */
9086 *mf_jcc_p = (i.tm.base_opcode & 0x0e) >> 1;
e379e5f3
L
9087 *branch_p = align_branch_jcc;
9088 if ((align_branch & align_branch_jcc_bit))
9089 add_padding = 1;
9090 }
9091 }
9092 else if (is_any_vex_encoding (&i.tm))
9093 return 0;
9094 else if ((i.tm.base_opcode | 1) == 0xc3)
9095 {
9096 /* Near ret. */
9097 *branch_p = align_branch_ret;
9098 if ((align_branch & align_branch_ret_bit))
9099 add_padding = 1;
9100 }
9101 else
9102 {
9103 /* Check for indirect jmp, direct and indirect calls. */
9104 if (i.tm.base_opcode == 0xe8)
9105 {
9106 /* Direct call. */
9107 *branch_p = align_branch_call;
9108 if ((align_branch & align_branch_call_bit))
9109 add_padding = 1;
9110 }
9111 else if (i.tm.base_opcode == 0xff
9112 && (i.tm.extension_opcode == 2
9113 || i.tm.extension_opcode == 4))
9114 {
9115 /* Indirect call and jmp. */
9116 *branch_p = align_branch_indirect;
9117 if ((align_branch & align_branch_indirect_bit))
9118 add_padding = 1;
9119 }
9120
9121 if (add_padding
9122 && i.disp_operands
9123 && tls_get_addr
9124 && (i.op[0].disps->X_op == O_symbol
9125 || (i.op[0].disps->X_op == O_subtract
9126 && i.op[0].disps->X_op_symbol == GOT_symbol)))
9127 {
9128 symbolS *s = i.op[0].disps->X_add_symbol;
9129 /* No padding to call to global or undefined tls_get_addr. */
9130 if ((S_IS_EXTERNAL (s) || !S_IS_DEFINED (s))
9131 && strcmp (S_GET_NAME (s), tls_get_addr) == 0)
9132 return 0;
9133 }
9134 }
9135
9136 if (add_padding
9137 && last_insn.kind != last_insn_other
9138 && last_insn.seg == now_seg)
9139 {
9140 if (flag_debug)
9141 as_warn_where (last_insn.file, last_insn.line,
9142 _("`%s` skips -malign-branch-boundary on `%s`"),
9143 last_insn.name, i.tm.name);
9144 return 0;
9145 }
9146
9147 return add_padding;
9148}
9149
29b0f896 9150static void
e3bb37b5 9151output_insn (void)
29b0f896 9152{
2bbd9c25
JJ
9153 fragS *insn_start_frag;
9154 offsetT insn_start_off;
e379e5f3
L
9155 fragS *fragP = NULL;
9156 enum align_branch_kind branch = align_branch_none;
79d72f45
HL
9157 /* The initializer is arbitrary just to avoid uninitialized error.
9158 it's actually either assigned in add_branch_padding_frag_p
9159 or never be used. */
9160 enum mf_jcc_kind mf_jcc = mf_jcc_jo;
2bbd9c25 9161
b4a3a7b4 9162#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
48ef937e 9163 if (IS_ELF && x86_used_note && now_seg != absolute_section)
b4a3a7b4 9164 {
32930e4e
L
9165 if ((i.xstate & xstate_tmm) == xstate_tmm
9166 || i.tm.cpu_flags.bitfield.cpuamx_tile)
9167 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_TMM;
9168
b4a3a7b4
L
9169 if (i.tm.cpu_flags.bitfield.cpu8087
9170 || i.tm.cpu_flags.bitfield.cpu287
9171 || i.tm.cpu_flags.bitfield.cpu387
9172 || i.tm.cpu_flags.bitfield.cpu687
9173 || i.tm.cpu_flags.bitfield.cpufisttp)
9174 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X87;
014d61ea 9175
921eafea 9176 if ((i.xstate & xstate_mmx)
319ff62c 9177 || i.tm.base_opcode == 0xf77 /* emms */
921eafea 9178 || i.tm.base_opcode == 0xf0e /* femms */)
b4a3a7b4 9179 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_MMX;
014d61ea 9180
32930e4e
L
9181 if (i.index_reg)
9182 {
9183 if (i.index_reg->reg_type.bitfield.zmmword)
9184 i.xstate |= xstate_zmm;
9185 else if (i.index_reg->reg_type.bitfield.ymmword)
9186 i.xstate |= xstate_ymm;
9187 else if (i.index_reg->reg_type.bitfield.xmmword)
9188 i.xstate |= xstate_xmm;
9189 }
014d61ea
JB
9190
9191 /* vzeroall / vzeroupper */
9192 if (i.tm.base_opcode == 0x77 && i.tm.cpu_flags.bitfield.cpuavx)
9193 i.xstate |= xstate_ymm;
9194
c4694f17 9195 if ((i.xstate & xstate_xmm)
014d61ea
JB
9196 /* ldmxcsr / stmxcsr */
9197 || (i.tm.base_opcode == 0xfae && i.tm.cpu_flags.bitfield.cpusse)
9198 /* vldmxcsr / vstmxcsr */
9199 || (i.tm.base_opcode == 0xae && i.tm.cpu_flags.bitfield.cpuavx)
c4694f17
TG
9200 || i.tm.cpu_flags.bitfield.cpuwidekl
9201 || i.tm.cpu_flags.bitfield.cpukl)
b4a3a7b4 9202 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XMM;
014d61ea 9203
921eafea 9204 if ((i.xstate & xstate_ymm) == xstate_ymm)
b4a3a7b4 9205 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_YMM;
921eafea 9206 if ((i.xstate & xstate_zmm) == xstate_zmm)
b4a3a7b4 9207 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_ZMM;
32930e4e
L
9208 if (i.mask || (i.xstate & xstate_mask) == xstate_mask)
9209 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_MASK;
b4a3a7b4
L
9210 if (i.tm.cpu_flags.bitfield.cpufxsr)
9211 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_FXSR;
9212 if (i.tm.cpu_flags.bitfield.cpuxsave)
9213 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVE;
9214 if (i.tm.cpu_flags.bitfield.cpuxsaveopt)
9215 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT;
9216 if (i.tm.cpu_flags.bitfield.cpuxsavec)
9217 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEC;
b0ab0693
L
9218
9219 if (x86_feature_2_used
9220 || i.tm.cpu_flags.bitfield.cpucmov
9221 || i.tm.cpu_flags.bitfield.cpusyscall
9222 || (i.tm.base_opcode == 0xfc7
70e95837 9223 && i.tm.opcode_modifier.opcodeprefix == PREFIX_NONE
b0ab0693
L
9224 && i.tm.extension_opcode == 1) /* cmpxchg8b */)
9225 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_BASELINE;
9226 if (i.tm.cpu_flags.bitfield.cpusse3
9227 || i.tm.cpu_flags.bitfield.cpussse3
9228 || i.tm.cpu_flags.bitfield.cpusse4_1
9229 || i.tm.cpu_flags.bitfield.cpusse4_2
9230 || i.tm.cpu_flags.bitfield.cpucx16
9231 || i.tm.cpu_flags.bitfield.cpupopcnt
9232 /* LAHF-SAHF insns in 64-bit mode. */
9233 || (flag_code == CODE_64BIT
35648716
JB
9234 && (i.tm.base_opcode | 1) == 0x9f
9235 && i.tm.opcode_modifier.opcodespace == SPACE_BASE))
b0ab0693
L
9236 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_V2;
9237 if (i.tm.cpu_flags.bitfield.cpuavx
9238 || i.tm.cpu_flags.bitfield.cpuavx2
9239 /* Any VEX encoded insns execpt for CpuAVX512F, CpuAVX512BW,
9240 CpuAVX512DQ, LPW, TBM and AMX. */
9241 || (i.tm.opcode_modifier.vex
9242 && !i.tm.cpu_flags.bitfield.cpuavx512f
9243 && !i.tm.cpu_flags.bitfield.cpuavx512bw
9244 && !i.tm.cpu_flags.bitfield.cpuavx512dq
9245 && !i.tm.cpu_flags.bitfield.cpulwp
9246 && !i.tm.cpu_flags.bitfield.cputbm
9247 && !(x86_feature_2_used & GNU_PROPERTY_X86_FEATURE_2_TMM))
9248 || i.tm.cpu_flags.bitfield.cpuf16c
9249 || i.tm.cpu_flags.bitfield.cpufma
9250 || i.tm.cpu_flags.bitfield.cpulzcnt
9251 || i.tm.cpu_flags.bitfield.cpumovbe
9252 || i.tm.cpu_flags.bitfield.cpuxsaves
9253 || (x86_feature_2_used
9254 & (GNU_PROPERTY_X86_FEATURE_2_XSAVE
9255 | GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT
9256 | GNU_PROPERTY_X86_FEATURE_2_XSAVEC)) != 0)
9257 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_V3;
9258 if (i.tm.cpu_flags.bitfield.cpuavx512f
9259 || i.tm.cpu_flags.bitfield.cpuavx512bw
9260 || i.tm.cpu_flags.bitfield.cpuavx512dq
9261 || i.tm.cpu_flags.bitfield.cpuavx512vl
9262 /* Any EVEX encoded insns except for AVX512ER, AVX512PF and
9263 VNNIW. */
9264 || (i.tm.opcode_modifier.evex
9265 && !i.tm.cpu_flags.bitfield.cpuavx512er
9266 && !i.tm.cpu_flags.bitfield.cpuavx512pf
9267 && !i.tm.cpu_flags.bitfield.cpuavx512_4vnniw))
9268 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_V4;
b4a3a7b4
L
9269 }
9270#endif
9271
29b0f896
AM
9272 /* Tie dwarf2 debug info to the address at the start of the insn.
9273 We can't do this after the insn has been output as the current
9274 frag may have been closed off. eg. by frag_var. */
9275 dwarf2_emit_insn (0);
9276
2bbd9c25
JJ
9277 insn_start_frag = frag_now;
9278 insn_start_off = frag_now_fix ();
9279
79d72f45 9280 if (add_branch_padding_frag_p (&branch, &mf_jcc))
e379e5f3
L
9281 {
9282 char *p;
9283 /* Branch can be 8 bytes. Leave some room for prefixes. */
9284 unsigned int max_branch_padding_size = 14;
9285
9286 /* Align section to boundary. */
9287 record_alignment (now_seg, align_branch_power);
9288
9289 /* Make room for padding. */
9290 frag_grow (max_branch_padding_size);
9291
9292 /* Start of the padding. */
9293 p = frag_more (0);
9294
9295 fragP = frag_now;
9296
9297 frag_var (rs_machine_dependent, max_branch_padding_size, 0,
9298 ENCODE_RELAX_STATE (BRANCH_PADDING, 0),
9299 NULL, 0, p);
9300
79d72f45 9301 fragP->tc_frag_data.mf_type = mf_jcc;
e379e5f3
L
9302 fragP->tc_frag_data.branch_type = branch;
9303 fragP->tc_frag_data.max_bytes = max_branch_padding_size;
9304 }
9305
29b0f896 9306 /* Output jumps. */
0cfa3eb3 9307 if (i.tm.opcode_modifier.jump == JUMP)
29b0f896 9308 output_branch ();
0cfa3eb3
JB
9309 else if (i.tm.opcode_modifier.jump == JUMP_BYTE
9310 || i.tm.opcode_modifier.jump == JUMP_DWORD)
29b0f896 9311 output_jump ();
0cfa3eb3 9312 else if (i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT)
29b0f896
AM
9313 output_interseg_jump ();
9314 else
9315 {
9316 /* Output normal instructions here. */
9317 char *p;
9318 unsigned char *q;
47465058 9319 unsigned int j;
79d72f45 9320 enum mf_cmp_kind mf_cmp;
4dffcebc 9321
e4e00185 9322 if (avoid_fence
c3949f43
JB
9323 && (i.tm.base_opcode == 0xfaee8
9324 || i.tm.base_opcode == 0xfaef0
9325 || i.tm.base_opcode == 0xfaef8))
48ef937e
JB
9326 {
9327 /* Encode lfence, mfence, and sfence as
9328 f0 83 04 24 00 lock addl $0x0, (%{re}sp). */
9329 if (now_seg != absolute_section)
9330 {
9331 offsetT val = 0x240483f0ULL;
9332
9333 p = frag_more (5);
9334 md_number_to_chars (p, val, 5);
9335 }
9336 else
9337 abs_section_offset += 5;
9338 return;
9339 }
e4e00185 9340
d022bddd
IT
9341 /* Some processors fail on LOCK prefix. This options makes
9342 assembler ignore LOCK prefix and serves as a workaround. */
9343 if (omit_lock_prefix)
9344 {
35648716
JB
9345 if (i.tm.base_opcode == LOCK_PREFIX_OPCODE
9346 && i.tm.opcode_modifier.isprefix)
d022bddd
IT
9347 return;
9348 i.prefix[LOCK_PREFIX] = 0;
9349 }
9350
e379e5f3
L
9351 if (branch)
9352 /* Skip if this is a branch. */
9353 ;
79d72f45 9354 else if (add_fused_jcc_padding_frag_p (&mf_cmp))
e379e5f3
L
9355 {
9356 /* Make room for padding. */
9357 frag_grow (MAX_FUSED_JCC_PADDING_SIZE);
9358 p = frag_more (0);
9359
9360 fragP = frag_now;
9361
9362 frag_var (rs_machine_dependent, MAX_FUSED_JCC_PADDING_SIZE, 0,
9363 ENCODE_RELAX_STATE (FUSED_JCC_PADDING, 0),
9364 NULL, 0, p);
9365
79d72f45 9366 fragP->tc_frag_data.mf_type = mf_cmp;
e379e5f3
L
9367 fragP->tc_frag_data.branch_type = align_branch_fused;
9368 fragP->tc_frag_data.max_bytes = MAX_FUSED_JCC_PADDING_SIZE;
9369 }
9370 else if (add_branch_prefix_frag_p ())
9371 {
9372 unsigned int max_prefix_size = align_branch_prefix_size;
9373
9374 /* Make room for padding. */
9375 frag_grow (max_prefix_size);
9376 p = frag_more (0);
9377
9378 fragP = frag_now;
9379
9380 frag_var (rs_machine_dependent, max_prefix_size, 0,
9381 ENCODE_RELAX_STATE (BRANCH_PREFIX, 0),
9382 NULL, 0, p);
9383
9384 fragP->tc_frag_data.max_bytes = max_prefix_size;
9385 }
9386
43234a1e
L
9387 /* Since the VEX/EVEX prefix contains the implicit prefix, we
9388 don't need the explicit prefix. */
9389 if (!i.tm.opcode_modifier.vex && !i.tm.opcode_modifier.evex)
bc4bd9ab 9390 {
7b47a312 9391 switch (i.tm.opcode_modifier.opcodeprefix)
bc4bd9ab 9392 {
7b47a312
L
9393 case PREFIX_0X66:
9394 add_prefix (0x66);
9395 break;
9396 case PREFIX_0XF2:
9397 add_prefix (0xf2);
9398 break;
9399 case PREFIX_0XF3:
8b65b895
L
9400 if (!i.tm.cpu_flags.bitfield.cpupadlock
9401 || (i.prefix[REP_PREFIX] != 0xf3))
9402 add_prefix (0xf3);
c0f3af97 9403 break;
7b47a312 9404 case PREFIX_NONE:
9a182d04 9405 switch (i.opcode_length)
c0f3af97 9406 {
7b47a312 9407 case 3:
7b47a312 9408 case 2:
7b47a312 9409 break;
9a182d04 9410 case 1:
7b47a312 9411 /* Check for pseudo prefixes. */
9a182d04
JB
9412 if (!i.tm.opcode_modifier.isprefix || i.tm.base_opcode)
9413 break;
7b47a312
L
9414 as_bad_where (insn_start_frag->fr_file,
9415 insn_start_frag->fr_line,
9416 _("pseudo prefix without instruction"));
9417 return;
9418 default:
9419 abort ();
4dffcebc 9420 }
c0f3af97 9421 break;
c0f3af97
L
9422 default:
9423 abort ();
bc4bd9ab 9424 }
c0f3af97 9425
6d19a37a 9426#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
cf61b747
L
9427 /* For x32, add a dummy REX_OPCODE prefix for mov/add with
9428 R_X86_64_GOTTPOFF relocation so that linker can safely
14470f07
L
9429 perform IE->LE optimization. A dummy REX_OPCODE prefix
9430 is also needed for lea with R_X86_64_GOTPC32_TLSDESC
9431 relocation for GDesc -> IE/LE optimization. */
cf61b747
L
9432 if (x86_elf_abi == X86_64_X32_ABI
9433 && i.operands == 2
14470f07
L
9434 && (i.reloc[0] == BFD_RELOC_X86_64_GOTTPOFF
9435 || i.reloc[0] == BFD_RELOC_X86_64_GOTPC32_TLSDESC)
cf61b747
L
9436 && i.prefix[REX_PREFIX] == 0)
9437 add_prefix (REX_OPCODE);
6d19a37a 9438#endif
cf61b747 9439
c0f3af97
L
9440 /* The prefix bytes. */
9441 for (j = ARRAY_SIZE (i.prefix), q = i.prefix; j > 0; j--, q++)
9442 if (*q)
48ef937e 9443 frag_opcode_byte (*q);
0f10071e 9444 }
ae5c1c7b 9445 else
c0f3af97
L
9446 {
9447 for (j = 0, q = i.prefix; j < ARRAY_SIZE (i.prefix); j++, q++)
9448 if (*q)
9449 switch (j)
9450 {
c0f3af97
L
9451 case SEG_PREFIX:
9452 case ADDR_PREFIX:
48ef937e 9453 frag_opcode_byte (*q);
c0f3af97
L
9454 break;
9455 default:
9456 /* There should be no other prefixes for instructions
9457 with VEX prefix. */
9458 abort ();
9459 }
9460
43234a1e
L
9461 /* For EVEX instructions i.vrex should become 0 after
9462 build_evex_prefix. For VEX instructions upper 16 registers
9463 aren't available, so VREX should be 0. */
9464 if (i.vrex)
9465 abort ();
c0f3af97 9466 /* Now the VEX prefix. */
48ef937e
JB
9467 if (now_seg != absolute_section)
9468 {
9469 p = frag_more (i.vex.length);
9470 for (j = 0; j < i.vex.length; j++)
9471 p[j] = i.vex.bytes[j];
9472 }
9473 else
9474 abs_section_offset += i.vex.length;
c0f3af97 9475 }
252b5132 9476
29b0f896 9477 /* Now the opcode; be careful about word order here! */
48ef937e 9478 if (now_seg == absolute_section)
9a182d04
JB
9479 abs_section_offset += i.opcode_length;
9480 else if (i.opcode_length == 1)
29b0f896
AM
9481 {
9482 FRAG_APPEND_1_CHAR (i.tm.base_opcode);
9483 }
9484 else
9485 {
9a182d04 9486 switch (i.opcode_length)
331d2d0d 9487 {
43234a1e
L
9488 case 4:
9489 p = frag_more (4);
9490 *p++ = (i.tm.base_opcode >> 24) & 0xff;
9491 *p++ = (i.tm.base_opcode >> 16) & 0xff;
9492 break;
4dffcebc 9493 case 3:
331d2d0d
L
9494 p = frag_more (3);
9495 *p++ = (i.tm.base_opcode >> 16) & 0xff;
4dffcebc
L
9496 break;
9497 case 2:
9498 p = frag_more (2);
9499 break;
9500 default:
9501 abort ();
9502 break;
331d2d0d 9503 }
0f10071e 9504
29b0f896
AM
9505 /* Put out high byte first: can't use md_number_to_chars! */
9506 *p++ = (i.tm.base_opcode >> 8) & 0xff;
9507 *p = i.tm.base_opcode & 0xff;
9508 }
3e73aa7c 9509
29b0f896 9510 /* Now the modrm byte and sib byte (if present). */
40fb9820 9511 if (i.tm.opcode_modifier.modrm)
29b0f896 9512 {
48ef937e
JB
9513 frag_opcode_byte ((i.rm.regmem << 0)
9514 | (i.rm.reg << 3)
9515 | (i.rm.mode << 6));
29b0f896
AM
9516 /* If i.rm.regmem == ESP (4)
9517 && i.rm.mode != (Register mode)
9518 && not 16 bit
9519 ==> need second modrm byte. */
9520 if (i.rm.regmem == ESCAPE_TO_TWO_BYTE_ADDRESSING
9521 && i.rm.mode != 3
dc821c5f 9522 && !(i.base_reg && i.base_reg->reg_type.bitfield.word))
48ef937e
JB
9523 frag_opcode_byte ((i.sib.base << 0)
9524 | (i.sib.index << 3)
9525 | (i.sib.scale << 6));
29b0f896 9526 }
3e73aa7c 9527
29b0f896 9528 if (i.disp_operands)
2bbd9c25 9529 output_disp (insn_start_frag, insn_start_off);
3e73aa7c 9530
29b0f896 9531 if (i.imm_operands)
2bbd9c25 9532 output_imm (insn_start_frag, insn_start_off);
9c33702b
JB
9533
9534 /*
9535 * frag_now_fix () returning plain abs_section_offset when we're in the
9536 * absolute section, and abs_section_offset not getting updated as data
9537 * gets added to the frag breaks the logic below.
9538 */
9539 if (now_seg != absolute_section)
9540 {
9541 j = encoding_length (insn_start_frag, insn_start_off, frag_more (0));
9542 if (j > 15)
9543 as_warn (_("instruction length of %u bytes exceeds the limit of 15"),
9544 j);
e379e5f3
L
9545 else if (fragP)
9546 {
9547 /* NB: Don't add prefix with GOTPC relocation since
9548 output_disp() above depends on the fixed encoding
9549 length. Can't add prefix with TLS relocation since
9550 it breaks TLS linker optimization. */
9551 unsigned int max = i.has_gotpc_tls_reloc ? 0 : 15 - j;
9552 /* Prefix count on the current instruction. */
9553 unsigned int count = i.vex.length;
9554 unsigned int k;
9555 for (k = 0; k < ARRAY_SIZE (i.prefix); k++)
9556 /* REX byte is encoded in VEX/EVEX prefix. */
9557 if (i.prefix[k] && (k != REX_PREFIX || !i.vex.length))
9558 count++;
9559
9560 /* Count prefixes for extended opcode maps. */
9561 if (!i.vex.length)
9a182d04 9562 switch (i.opcode_length)
e379e5f3
L
9563 {
9564 case 3:
9565 if (((i.tm.base_opcode >> 16) & 0xff) == 0xf)
9566 {
9567 count++;
9568 switch ((i.tm.base_opcode >> 8) & 0xff)
9569 {
9570 case 0x38:
9571 case 0x3a:
9572 count++;
9573 break;
9574 default:
9575 break;
9576 }
9577 }
9578 break;
9579 case 2:
9580 if (((i.tm.base_opcode >> 8) & 0xff) == 0xf)
9581 count++;
9582 break;
9583 case 1:
9584 break;
9585 default:
9586 abort ();
9587 }
9588
9589 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
9590 == BRANCH_PREFIX)
9591 {
9592 /* Set the maximum prefix size in BRANCH_PREFIX
9593 frag. */
9594 if (fragP->tc_frag_data.max_bytes > max)
9595 fragP->tc_frag_data.max_bytes = max;
9596 if (fragP->tc_frag_data.max_bytes > count)
9597 fragP->tc_frag_data.max_bytes -= count;
9598 else
9599 fragP->tc_frag_data.max_bytes = 0;
9600 }
9601 else
9602 {
9603 /* Remember the maximum prefix size in FUSED_JCC_PADDING
9604 frag. */
9605 unsigned int max_prefix_size;
9606 if (align_branch_prefix_size > max)
9607 max_prefix_size = max;
9608 else
9609 max_prefix_size = align_branch_prefix_size;
9610 if (max_prefix_size > count)
9611 fragP->tc_frag_data.max_prefix_length
9612 = max_prefix_size - count;
9613 }
9614
9615 /* Use existing segment prefix if possible. Use CS
9616 segment prefix in 64-bit mode. In 32-bit mode, use SS
9617 segment prefix with ESP/EBP base register and use DS
9618 segment prefix without ESP/EBP base register. */
9619 if (i.prefix[SEG_PREFIX])
9620 fragP->tc_frag_data.default_prefix = i.prefix[SEG_PREFIX];
9621 else if (flag_code == CODE_64BIT)
9622 fragP->tc_frag_data.default_prefix = CS_PREFIX_OPCODE;
9623 else if (i.base_reg
9624 && (i.base_reg->reg_num == 4
9625 || i.base_reg->reg_num == 5))
9626 fragP->tc_frag_data.default_prefix = SS_PREFIX_OPCODE;
9627 else
9628 fragP->tc_frag_data.default_prefix = DS_PREFIX_OPCODE;
9629 }
9c33702b 9630 }
29b0f896 9631 }
252b5132 9632
e379e5f3
L
9633 /* NB: Don't work with COND_JUMP86 without i386. */
9634 if (align_branch_power
9635 && now_seg != absolute_section
9636 && cpu_arch_flags.bitfield.cpui386)
9637 {
9638 /* Terminate each frag so that we can add prefix and check for
9639 fused jcc. */
9640 frag_wane (frag_now);
9641 frag_new (0);
9642 }
9643
29b0f896
AM
9644#ifdef DEBUG386
9645 if (flag_debug)
9646 {
7b81dfbb 9647 pi ("" /*line*/, &i);
29b0f896
AM
9648 }
9649#endif /* DEBUG386 */
9650}
252b5132 9651
e205caa7
L
9652/* Return the size of the displacement operand N. */
9653
9654static int
9655disp_size (unsigned int n)
9656{
9657 int size = 4;
43234a1e 9658
b5014f7a 9659 if (i.types[n].bitfield.disp64)
40fb9820
L
9660 size = 8;
9661 else if (i.types[n].bitfield.disp8)
9662 size = 1;
9663 else if (i.types[n].bitfield.disp16)
9664 size = 2;
e205caa7
L
9665 return size;
9666}
9667
9668/* Return the size of the immediate operand N. */
9669
9670static int
9671imm_size (unsigned int n)
9672{
9673 int size = 4;
40fb9820
L
9674 if (i.types[n].bitfield.imm64)
9675 size = 8;
9676 else if (i.types[n].bitfield.imm8 || i.types[n].bitfield.imm8s)
9677 size = 1;
9678 else if (i.types[n].bitfield.imm16)
9679 size = 2;
e205caa7
L
9680 return size;
9681}
9682
29b0f896 9683static void
64e74474 9684output_disp (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
9685{
9686 char *p;
9687 unsigned int n;
252b5132 9688
29b0f896
AM
9689 for (n = 0; n < i.operands; n++)
9690 {
b5014f7a 9691 if (operand_type_check (i.types[n], disp))
29b0f896 9692 {
48ef937e
JB
9693 int size = disp_size (n);
9694
9695 if (now_seg == absolute_section)
9696 abs_section_offset += size;
9697 else if (i.op[n].disps->X_op == O_constant)
29b0f896 9698 {
43234a1e 9699 offsetT val = i.op[n].disps->X_add_number;
252b5132 9700
629cfaf1
JB
9701 val = offset_in_range (val >> (size == 1 ? i.memshift : 0),
9702 size);
29b0f896
AM
9703 p = frag_more (size);
9704 md_number_to_chars (p, val, size);
9705 }
9706 else
9707 {
f86103b7 9708 enum bfd_reloc_code_real reloc_type;
40fb9820 9709 int sign = i.types[n].bitfield.disp32s;
29b0f896 9710 int pcrel = (i.flags[n] & Operand_PCrel) != 0;
02a86693 9711 fixS *fixP;
29b0f896 9712
e205caa7 9713 /* We can't have 8 bit displacement here. */
9c2799c2 9714 gas_assert (!i.types[n].bitfield.disp8);
e205caa7 9715
29b0f896
AM
9716 /* The PC relative address is computed relative
9717 to the instruction boundary, so in case immediate
9718 fields follows, we need to adjust the value. */
9719 if (pcrel && i.imm_operands)
9720 {
29b0f896 9721 unsigned int n1;
e205caa7 9722 int sz = 0;
252b5132 9723
29b0f896 9724 for (n1 = 0; n1 < i.operands; n1++)
40fb9820 9725 if (operand_type_check (i.types[n1], imm))
252b5132 9726 {
e205caa7
L
9727 /* Only one immediate is allowed for PC
9728 relative address. */
9c2799c2 9729 gas_assert (sz == 0);
e205caa7
L
9730 sz = imm_size (n1);
9731 i.op[n].disps->X_add_number -= sz;
252b5132 9732 }
29b0f896 9733 /* We should find the immediate. */
9c2799c2 9734 gas_assert (sz != 0);
29b0f896 9735 }
520dc8e8 9736
29b0f896 9737 p = frag_more (size);
d258b828 9738 reloc_type = reloc (size, pcrel, sign, i.reloc[n]);
d6ab8113 9739 if (GOT_symbol
2bbd9c25 9740 && GOT_symbol == i.op[n].disps->X_add_symbol
d6ab8113 9741 && (((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
9742 || reloc_type == BFD_RELOC_X86_64_32S
9743 || (reloc_type == BFD_RELOC_64
9744 && object_64bit))
d6ab8113
JB
9745 && (i.op[n].disps->X_op == O_symbol
9746 || (i.op[n].disps->X_op == O_add
9747 && ((symbol_get_value_expression
9748 (i.op[n].disps->X_op_symbol)->X_op)
9749 == O_subtract))))
9750 || reloc_type == BFD_RELOC_32_PCREL))
2bbd9c25 9751 {
4fa24527 9752 if (!object_64bit)
7b81dfbb
AJ
9753 {
9754 reloc_type = BFD_RELOC_386_GOTPC;
e379e5f3 9755 i.has_gotpc_tls_reloc = TRUE;
d583596c
JB
9756 i.op[n].imms->X_add_number +=
9757 encoding_length (insn_start_frag, insn_start_off, p);
7b81dfbb
AJ
9758 }
9759 else if (reloc_type == BFD_RELOC_64)
9760 reloc_type = BFD_RELOC_X86_64_GOTPC64;
d6ab8113 9761 else
7b81dfbb
AJ
9762 /* Don't do the adjustment for x86-64, as there
9763 the pcrel addressing is relative to the _next_
9764 insn, and that is taken care of in other code. */
d6ab8113 9765 reloc_type = BFD_RELOC_X86_64_GOTPC32;
2bbd9c25 9766 }
e379e5f3
L
9767 else if (align_branch_power)
9768 {
9769 switch (reloc_type)
9770 {
9771 case BFD_RELOC_386_TLS_GD:
9772 case BFD_RELOC_386_TLS_LDM:
9773 case BFD_RELOC_386_TLS_IE:
9774 case BFD_RELOC_386_TLS_IE_32:
9775 case BFD_RELOC_386_TLS_GOTIE:
9776 case BFD_RELOC_386_TLS_GOTDESC:
9777 case BFD_RELOC_386_TLS_DESC_CALL:
9778 case BFD_RELOC_X86_64_TLSGD:
9779 case BFD_RELOC_X86_64_TLSLD:
9780 case BFD_RELOC_X86_64_GOTTPOFF:
9781 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
9782 case BFD_RELOC_X86_64_TLSDESC_CALL:
9783 i.has_gotpc_tls_reloc = TRUE;
9784 default:
9785 break;
9786 }
9787 }
02a86693
L
9788 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal,
9789 size, i.op[n].disps, pcrel,
9790 reloc_type);
9791 /* Check for "call/jmp *mem", "mov mem, %reg",
9792 "test %reg, mem" and "binop mem, %reg" where binop
9793 is one of adc, add, and, cmp, or, sbb, sub, xor
e60f4d3b
L
9794 instructions without data prefix. Always generate
9795 R_386_GOT32X for "sym*GOT" operand in 32-bit mode. */
9796 if (i.prefix[DATA_PREFIX] == 0
9797 && (generate_relax_relocations
9798 || (!object_64bit
9799 && i.rm.mode == 0
9800 && i.rm.regmem == 5))
0cb4071e
L
9801 && (i.rm.mode == 2
9802 || (i.rm.mode == 0 && i.rm.regmem == 5))
2ae4c703 9803 && !is_any_vex_encoding(&i.tm)
02a86693
L
9804 && ((i.operands == 1
9805 && i.tm.base_opcode == 0xff
9806 && (i.rm.reg == 2 || i.rm.reg == 4))
9807 || (i.operands == 2
9808 && (i.tm.base_opcode == 0x8b
9809 || i.tm.base_opcode == 0x85
2ae4c703 9810 || (i.tm.base_opcode & ~0x38) == 0x03))))
02a86693
L
9811 {
9812 if (object_64bit)
9813 {
9814 fixP->fx_tcbit = i.rex != 0;
9815 if (i.base_reg
e968fc9b 9816 && (i.base_reg->reg_num == RegIP))
02a86693
L
9817 fixP->fx_tcbit2 = 1;
9818 }
9819 else
9820 fixP->fx_tcbit2 = 1;
9821 }
29b0f896
AM
9822 }
9823 }
9824 }
9825}
252b5132 9826
29b0f896 9827static void
64e74474 9828output_imm (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
9829{
9830 char *p;
9831 unsigned int n;
252b5132 9832
29b0f896
AM
9833 for (n = 0; n < i.operands; n++)
9834 {
43234a1e
L
9835 /* Skip SAE/RC Imm operand in EVEX. They are already handled. */
9836 if (i.rounding && (int) n == i.rounding->operand)
9837 continue;
9838
40fb9820 9839 if (operand_type_check (i.types[n], imm))
29b0f896 9840 {
48ef937e
JB
9841 int size = imm_size (n);
9842
9843 if (now_seg == absolute_section)
9844 abs_section_offset += size;
9845 else if (i.op[n].imms->X_op == O_constant)
29b0f896 9846 {
29b0f896 9847 offsetT val;
b4cac588 9848
29b0f896
AM
9849 val = offset_in_range (i.op[n].imms->X_add_number,
9850 size);
9851 p = frag_more (size);
9852 md_number_to_chars (p, val, size);
9853 }
9854 else
9855 {
9856 /* Not absolute_section.
9857 Need a 32-bit fixup (don't support 8bit
9858 non-absolute imms). Try to support other
9859 sizes ... */
f86103b7 9860 enum bfd_reloc_code_real reloc_type;
e205caa7 9861 int sign;
29b0f896 9862
40fb9820 9863 if (i.types[n].bitfield.imm32s
a7d61044 9864 && (i.suffix == QWORD_MNEM_SUFFIX
40fb9820 9865 || (!i.suffix && i.tm.opcode_modifier.no_lsuf)))
29b0f896 9866 sign = 1;
e205caa7
L
9867 else
9868 sign = 0;
520dc8e8 9869
29b0f896 9870 p = frag_more (size);
d258b828 9871 reloc_type = reloc (size, 0, sign, i.reloc[n]);
f86103b7 9872
2bbd9c25
JJ
9873 /* This is tough to explain. We end up with this one if we
9874 * have operands that look like
9875 * "_GLOBAL_OFFSET_TABLE_+[.-.L284]". The goal here is to
9876 * obtain the absolute address of the GOT, and it is strongly
9877 * preferable from a performance point of view to avoid using
9878 * a runtime relocation for this. The actual sequence of
9879 * instructions often look something like:
9880 *
9881 * call .L66
9882 * .L66:
9883 * popl %ebx
9884 * addl $_GLOBAL_OFFSET_TABLE_+[.-.L66],%ebx
9885 *
9886 * The call and pop essentially return the absolute address
9887 * of the label .L66 and store it in %ebx. The linker itself
9888 * will ultimately change the first operand of the addl so
9889 * that %ebx points to the GOT, but to keep things simple, the
9890 * .o file must have this operand set so that it generates not
9891 * the absolute address of .L66, but the absolute address of
9892 * itself. This allows the linker itself simply treat a GOTPC
9893 * relocation as asking for a pcrel offset to the GOT to be
9894 * added in, and the addend of the relocation is stored in the
9895 * operand field for the instruction itself.
9896 *
9897 * Our job here is to fix the operand so that it would add
9898 * the correct offset so that %ebx would point to itself. The
9899 * thing that is tricky is that .-.L66 will point to the
9900 * beginning of the instruction, so we need to further modify
9901 * the operand so that it will point to itself. There are
9902 * other cases where you have something like:
9903 *
9904 * .long $_GLOBAL_OFFSET_TABLE_+[.-.L66]
9905 *
9906 * and here no correction would be required. Internally in
9907 * the assembler we treat operands of this form as not being
9908 * pcrel since the '.' is explicitly mentioned, and I wonder
9909 * whether it would simplify matters to do it this way. Who
9910 * knows. In earlier versions of the PIC patches, the
9911 * pcrel_adjust field was used to store the correction, but
9912 * since the expression is not pcrel, I felt it would be
9913 * confusing to do it this way. */
9914
d6ab8113 9915 if ((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
9916 || reloc_type == BFD_RELOC_X86_64_32S
9917 || reloc_type == BFD_RELOC_64)
29b0f896
AM
9918 && GOT_symbol
9919 && GOT_symbol == i.op[n].imms->X_add_symbol
9920 && (i.op[n].imms->X_op == O_symbol
9921 || (i.op[n].imms->X_op == O_add
9922 && ((symbol_get_value_expression
9923 (i.op[n].imms->X_op_symbol)->X_op)
9924 == O_subtract))))
9925 {
4fa24527 9926 if (!object_64bit)
d6ab8113 9927 reloc_type = BFD_RELOC_386_GOTPC;
7b81dfbb 9928 else if (size == 4)
d6ab8113 9929 reloc_type = BFD_RELOC_X86_64_GOTPC32;
7b81dfbb
AJ
9930 else if (size == 8)
9931 reloc_type = BFD_RELOC_X86_64_GOTPC64;
e379e5f3 9932 i.has_gotpc_tls_reloc = TRUE;
d583596c
JB
9933 i.op[n].imms->X_add_number +=
9934 encoding_length (insn_start_frag, insn_start_off, p);
29b0f896 9935 }
29b0f896
AM
9936 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
9937 i.op[n].imms, 0, reloc_type);
9938 }
9939 }
9940 }
252b5132
RH
9941}
9942\f
d182319b
JB
9943/* x86_cons_fix_new is called via the expression parsing code when a
9944 reloc is needed. We use this hook to get the correct .got reloc. */
d182319b
JB
9945static int cons_sign = -1;
9946
9947void
e3bb37b5 9948x86_cons_fix_new (fragS *frag, unsigned int off, unsigned int len,
62ebcb5c 9949 expressionS *exp, bfd_reloc_code_real_type r)
d182319b 9950{
d258b828 9951 r = reloc (len, 0, cons_sign, r);
d182319b
JB
9952
9953#ifdef TE_PE
9954 if (exp->X_op == O_secrel)
9955 {
9956 exp->X_op = O_symbol;
9957 r = BFD_RELOC_32_SECREL;
9958 }
9959#endif
9960
9961 fix_new_exp (frag, off, len, exp, 0, r);
9962}
9963
357d1bd8
L
9964/* Export the ABI address size for use by TC_ADDRESS_BYTES for the
9965 purpose of the `.dc.a' internal pseudo-op. */
9966
9967int
9968x86_address_bytes (void)
9969{
9970 if ((stdoutput->arch_info->mach & bfd_mach_x64_32))
9971 return 4;
9972 return stdoutput->arch_info->bits_per_address / 8;
9973}
9974
d382c579
TG
9975#if !(defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined (OBJ_MACH_O)) \
9976 || defined (LEX_AT)
d258b828 9977# define lex_got(reloc, adjust, types) NULL
718ddfc0 9978#else
f3c180ae
AM
9979/* Parse operands of the form
9980 <symbol>@GOTOFF+<nnn>
9981 and similar .plt or .got references.
9982
9983 If we find one, set up the correct relocation in RELOC and copy the
9984 input string, minus the `@GOTOFF' into a malloc'd buffer for
9985 parsing by the calling routine. Return this buffer, and if ADJUST
9986 is non-null set it to the length of the string we removed from the
9987 input line. Otherwise return NULL. */
9988static char *
91d6fa6a 9989lex_got (enum bfd_reloc_code_real *rel,
64e74474 9990 int *adjust,
d258b828 9991 i386_operand_type *types)
f3c180ae 9992{
7b81dfbb
AJ
9993 /* Some of the relocations depend on the size of what field is to
9994 be relocated. But in our callers i386_immediate and i386_displacement
9995 we don't yet know the operand size (this will be set by insn
9996 matching). Hence we record the word32 relocation here,
9997 and adjust the reloc according to the real size in reloc(). */
f3c180ae
AM
9998 static const struct {
9999 const char *str;
cff8d58a 10000 int len;
4fa24527 10001 const enum bfd_reloc_code_real rel[2];
40fb9820 10002 const i386_operand_type types64;
844bf810 10003 bfd_boolean need_GOT_symbol;
f3c180ae 10004 } gotrel[] = {
8ce3d284 10005#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
10006 { STRING_COMMA_LEN ("SIZE"), { BFD_RELOC_SIZE32,
10007 BFD_RELOC_SIZE32 },
844bf810 10008 OPERAND_TYPE_IMM32_64, FALSE },
8ce3d284 10009#endif
cff8d58a
L
10010 { STRING_COMMA_LEN ("PLTOFF"), { _dummy_first_bfd_reloc_code_real,
10011 BFD_RELOC_X86_64_PLTOFF64 },
844bf810 10012 OPERAND_TYPE_IMM64, TRUE },
cff8d58a
L
10013 { STRING_COMMA_LEN ("PLT"), { BFD_RELOC_386_PLT32,
10014 BFD_RELOC_X86_64_PLT32 },
844bf810 10015 OPERAND_TYPE_IMM32_32S_DISP32, FALSE },
cff8d58a
L
10016 { STRING_COMMA_LEN ("GOTPLT"), { _dummy_first_bfd_reloc_code_real,
10017 BFD_RELOC_X86_64_GOTPLT64 },
844bf810 10018 OPERAND_TYPE_IMM64_DISP64, TRUE },
cff8d58a
L
10019 { STRING_COMMA_LEN ("GOTOFF"), { BFD_RELOC_386_GOTOFF,
10020 BFD_RELOC_X86_64_GOTOFF64 },
844bf810 10021 OPERAND_TYPE_IMM64_DISP64, TRUE },
cff8d58a
L
10022 { STRING_COMMA_LEN ("GOTPCREL"), { _dummy_first_bfd_reloc_code_real,
10023 BFD_RELOC_X86_64_GOTPCREL },
844bf810 10024 OPERAND_TYPE_IMM32_32S_DISP32, TRUE },
cff8d58a
L
10025 { STRING_COMMA_LEN ("TLSGD"), { BFD_RELOC_386_TLS_GD,
10026 BFD_RELOC_X86_64_TLSGD },
844bf810 10027 OPERAND_TYPE_IMM32_32S_DISP32, TRUE },
cff8d58a
L
10028 { STRING_COMMA_LEN ("TLSLDM"), { BFD_RELOC_386_TLS_LDM,
10029 _dummy_first_bfd_reloc_code_real },
844bf810 10030 OPERAND_TYPE_NONE, TRUE },
cff8d58a
L
10031 { STRING_COMMA_LEN ("TLSLD"), { _dummy_first_bfd_reloc_code_real,
10032 BFD_RELOC_X86_64_TLSLD },
844bf810 10033 OPERAND_TYPE_IMM32_32S_DISP32, TRUE },
cff8d58a
L
10034 { STRING_COMMA_LEN ("GOTTPOFF"), { BFD_RELOC_386_TLS_IE_32,
10035 BFD_RELOC_X86_64_GOTTPOFF },
844bf810 10036 OPERAND_TYPE_IMM32_32S_DISP32, TRUE },
cff8d58a
L
10037 { STRING_COMMA_LEN ("TPOFF"), { BFD_RELOC_386_TLS_LE_32,
10038 BFD_RELOC_X86_64_TPOFF32 },
844bf810 10039 OPERAND_TYPE_IMM32_32S_64_DISP32_64, TRUE },
cff8d58a
L
10040 { STRING_COMMA_LEN ("NTPOFF"), { BFD_RELOC_386_TLS_LE,
10041 _dummy_first_bfd_reloc_code_real },
844bf810 10042 OPERAND_TYPE_NONE, TRUE },
cff8d58a
L
10043 { STRING_COMMA_LEN ("DTPOFF"), { BFD_RELOC_386_TLS_LDO_32,
10044 BFD_RELOC_X86_64_DTPOFF32 },
844bf810 10045 OPERAND_TYPE_IMM32_32S_64_DISP32_64, TRUE },
cff8d58a
L
10046 { STRING_COMMA_LEN ("GOTNTPOFF"),{ BFD_RELOC_386_TLS_GOTIE,
10047 _dummy_first_bfd_reloc_code_real },
844bf810 10048 OPERAND_TYPE_NONE, TRUE },
cff8d58a
L
10049 { STRING_COMMA_LEN ("INDNTPOFF"),{ BFD_RELOC_386_TLS_IE,
10050 _dummy_first_bfd_reloc_code_real },
844bf810 10051 OPERAND_TYPE_NONE, TRUE },
cff8d58a
L
10052 { STRING_COMMA_LEN ("GOT"), { BFD_RELOC_386_GOT32,
10053 BFD_RELOC_X86_64_GOT32 },
844bf810 10054 OPERAND_TYPE_IMM32_32S_64_DISP32, TRUE },
cff8d58a
L
10055 { STRING_COMMA_LEN ("TLSDESC"), { BFD_RELOC_386_TLS_GOTDESC,
10056 BFD_RELOC_X86_64_GOTPC32_TLSDESC },
844bf810 10057 OPERAND_TYPE_IMM32_32S_DISP32, TRUE },
cff8d58a
L
10058 { STRING_COMMA_LEN ("TLSCALL"), { BFD_RELOC_386_TLS_DESC_CALL,
10059 BFD_RELOC_X86_64_TLSDESC_CALL },
844bf810 10060 OPERAND_TYPE_IMM32_32S_DISP32, TRUE },
f3c180ae
AM
10061 };
10062 char *cp;
10063 unsigned int j;
10064
d382c579 10065#if defined (OBJ_MAYBE_ELF)
718ddfc0
JB
10066 if (!IS_ELF)
10067 return NULL;
d382c579 10068#endif
718ddfc0 10069
f3c180ae 10070 for (cp = input_line_pointer; *cp != '@'; cp++)
67c11a9b 10071 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
f3c180ae
AM
10072 return NULL;
10073
47465058 10074 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
f3c180ae 10075 {
cff8d58a 10076 int len = gotrel[j].len;
28f81592 10077 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
f3c180ae 10078 {
4fa24527 10079 if (gotrel[j].rel[object_64bit] != 0)
f3c180ae 10080 {
28f81592
AM
10081 int first, second;
10082 char *tmpbuf, *past_reloc;
f3c180ae 10083
91d6fa6a 10084 *rel = gotrel[j].rel[object_64bit];
f3c180ae 10085
3956db08
JB
10086 if (types)
10087 {
10088 if (flag_code != CODE_64BIT)
40fb9820
L
10089 {
10090 types->bitfield.imm32 = 1;
10091 types->bitfield.disp32 = 1;
10092 }
3956db08
JB
10093 else
10094 *types = gotrel[j].types64;
10095 }
10096
844bf810 10097 if (gotrel[j].need_GOT_symbol && GOT_symbol == NULL)
f3c180ae
AM
10098 GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
10099
28f81592 10100 /* The length of the first part of our input line. */
f3c180ae 10101 first = cp - input_line_pointer;
28f81592
AM
10102
10103 /* The second part goes from after the reloc token until
67c11a9b 10104 (and including) an end_of_line char or comma. */
28f81592 10105 past_reloc = cp + 1 + len;
67c11a9b
AM
10106 cp = past_reloc;
10107 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
10108 ++cp;
10109 second = cp + 1 - past_reloc;
28f81592
AM
10110
10111 /* Allocate and copy string. The trailing NUL shouldn't
10112 be necessary, but be safe. */
add39d23 10113 tmpbuf = XNEWVEC (char, first + second + 2);
f3c180ae 10114 memcpy (tmpbuf, input_line_pointer, first);
0787a12d
AM
10115 if (second != 0 && *past_reloc != ' ')
10116 /* Replace the relocation token with ' ', so that
10117 errors like foo@GOTOFF1 will be detected. */
10118 tmpbuf[first++] = ' ';
af89796a
L
10119 else
10120 /* Increment length by 1 if the relocation token is
10121 removed. */
10122 len++;
10123 if (adjust)
10124 *adjust = len;
0787a12d
AM
10125 memcpy (tmpbuf + first, past_reloc, second);
10126 tmpbuf[first + second] = '\0';
f3c180ae
AM
10127 return tmpbuf;
10128 }
10129
4fa24527
JB
10130 as_bad (_("@%s reloc is not supported with %d-bit output format"),
10131 gotrel[j].str, 1 << (5 + object_64bit));
f3c180ae
AM
10132 return NULL;
10133 }
10134 }
10135
10136 /* Might be a symbol version string. Don't as_bad here. */
10137 return NULL;
10138}
4e4f7c87 10139#endif
f3c180ae 10140
a988325c
NC
10141#ifdef TE_PE
10142#ifdef lex_got
10143#undef lex_got
10144#endif
10145/* Parse operands of the form
10146 <symbol>@SECREL32+<nnn>
10147
10148 If we find one, set up the correct relocation in RELOC and copy the
10149 input string, minus the `@SECREL32' into a malloc'd buffer for
10150 parsing by the calling routine. Return this buffer, and if ADJUST
10151 is non-null set it to the length of the string we removed from the
34bca508
L
10152 input line. Otherwise return NULL.
10153
a988325c
NC
10154 This function is copied from the ELF version above adjusted for PE targets. */
10155
10156static char *
10157lex_got (enum bfd_reloc_code_real *rel ATTRIBUTE_UNUSED,
10158 int *adjust ATTRIBUTE_UNUSED,
d258b828 10159 i386_operand_type *types)
a988325c
NC
10160{
10161 static const struct
10162 {
10163 const char *str;
10164 int len;
10165 const enum bfd_reloc_code_real rel[2];
10166 const i386_operand_type types64;
10167 }
10168 gotrel[] =
10169 {
10170 { STRING_COMMA_LEN ("SECREL32"), { BFD_RELOC_32_SECREL,
10171 BFD_RELOC_32_SECREL },
10172 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
10173 };
10174
10175 char *cp;
10176 unsigned j;
10177
10178 for (cp = input_line_pointer; *cp != '@'; cp++)
10179 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
10180 return NULL;
10181
10182 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
10183 {
10184 int len = gotrel[j].len;
10185
10186 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
10187 {
10188 if (gotrel[j].rel[object_64bit] != 0)
10189 {
10190 int first, second;
10191 char *tmpbuf, *past_reloc;
10192
10193 *rel = gotrel[j].rel[object_64bit];
10194 if (adjust)
10195 *adjust = len;
10196
10197 if (types)
10198 {
10199 if (flag_code != CODE_64BIT)
10200 {
10201 types->bitfield.imm32 = 1;
10202 types->bitfield.disp32 = 1;
10203 }
10204 else
10205 *types = gotrel[j].types64;
10206 }
10207
10208 /* The length of the first part of our input line. */
10209 first = cp - input_line_pointer;
10210
10211 /* The second part goes from after the reloc token until
10212 (and including) an end_of_line char or comma. */
10213 past_reloc = cp + 1 + len;
10214 cp = past_reloc;
10215 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
10216 ++cp;
10217 second = cp + 1 - past_reloc;
10218
10219 /* Allocate and copy string. The trailing NUL shouldn't
10220 be necessary, but be safe. */
add39d23 10221 tmpbuf = XNEWVEC (char, first + second + 2);
a988325c
NC
10222 memcpy (tmpbuf, input_line_pointer, first);
10223 if (second != 0 && *past_reloc != ' ')
10224 /* Replace the relocation token with ' ', so that
10225 errors like foo@SECLREL321 will be detected. */
10226 tmpbuf[first++] = ' ';
10227 memcpy (tmpbuf + first, past_reloc, second);
10228 tmpbuf[first + second] = '\0';
10229 return tmpbuf;
10230 }
10231
10232 as_bad (_("@%s reloc is not supported with %d-bit output format"),
10233 gotrel[j].str, 1 << (5 + object_64bit));
10234 return NULL;
10235 }
10236 }
10237
10238 /* Might be a symbol version string. Don't as_bad here. */
10239 return NULL;
10240}
10241
10242#endif /* TE_PE */
10243
62ebcb5c 10244bfd_reloc_code_real_type
e3bb37b5 10245x86_cons (expressionS *exp, int size)
f3c180ae 10246{
62ebcb5c
AM
10247 bfd_reloc_code_real_type got_reloc = NO_RELOC;
10248
ee86248c
JB
10249 intel_syntax = -intel_syntax;
10250
3c7b9c2c 10251 exp->X_md = 0;
4fa24527 10252 if (size == 4 || (object_64bit && size == 8))
f3c180ae
AM
10253 {
10254 /* Handle @GOTOFF and the like in an expression. */
10255 char *save;
10256 char *gotfree_input_line;
4a57f2cf 10257 int adjust = 0;
f3c180ae
AM
10258
10259 save = input_line_pointer;
d258b828 10260 gotfree_input_line = lex_got (&got_reloc, &adjust, NULL);
f3c180ae
AM
10261 if (gotfree_input_line)
10262 input_line_pointer = gotfree_input_line;
10263
10264 expression (exp);
10265
10266 if (gotfree_input_line)
10267 {
10268 /* expression () has merrily parsed up to the end of line,
10269 or a comma - in the wrong buffer. Transfer how far
10270 input_line_pointer has moved to the right buffer. */
10271 input_line_pointer = (save
10272 + (input_line_pointer - gotfree_input_line)
10273 + adjust);
10274 free (gotfree_input_line);
3992d3b7
AM
10275 if (exp->X_op == O_constant
10276 || exp->X_op == O_absent
10277 || exp->X_op == O_illegal
0398aac5 10278 || exp->X_op == O_register
3992d3b7
AM
10279 || exp->X_op == O_big)
10280 {
10281 char c = *input_line_pointer;
10282 *input_line_pointer = 0;
10283 as_bad (_("missing or invalid expression `%s'"), save);
10284 *input_line_pointer = c;
10285 }
b9519cfe
L
10286 else if ((got_reloc == BFD_RELOC_386_PLT32
10287 || got_reloc == BFD_RELOC_X86_64_PLT32)
10288 && exp->X_op != O_symbol)
10289 {
10290 char c = *input_line_pointer;
10291 *input_line_pointer = 0;
10292 as_bad (_("invalid PLT expression `%s'"), save);
10293 *input_line_pointer = c;
10294 }
f3c180ae
AM
10295 }
10296 }
10297 else
10298 expression (exp);
ee86248c
JB
10299
10300 intel_syntax = -intel_syntax;
10301
10302 if (intel_syntax)
10303 i386_intel_simplify (exp);
62ebcb5c
AM
10304
10305 return got_reloc;
f3c180ae 10306}
f3c180ae 10307
9f32dd5b
L
10308static void
10309signed_cons (int size)
6482c264 10310{
d182319b
JB
10311 if (flag_code == CODE_64BIT)
10312 cons_sign = 1;
10313 cons (size);
10314 cons_sign = -1;
6482c264
NC
10315}
10316
d182319b 10317#ifdef TE_PE
6482c264 10318static void
7016a5d5 10319pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
6482c264
NC
10320{
10321 expressionS exp;
10322
10323 do
10324 {
10325 expression (&exp);
10326 if (exp.X_op == O_symbol)
10327 exp.X_op = O_secrel;
10328
10329 emit_expr (&exp, 4);
10330 }
10331 while (*input_line_pointer++ == ',');
10332
10333 input_line_pointer--;
10334 demand_empty_rest_of_line ();
10335}
6482c264
NC
10336#endif
10337
43234a1e
L
10338/* Handle Vector operations. */
10339
10340static char *
10341check_VecOperations (char *op_string, char *op_end)
10342{
10343 const reg_entry *mask;
10344 const char *saved;
10345 char *end_op;
10346
10347 while (*op_string
10348 && (op_end == NULL || op_string < op_end))
10349 {
10350 saved = op_string;
10351 if (*op_string == '{')
10352 {
10353 op_string++;
10354
10355 /* Check broadcasts. */
10356 if (strncmp (op_string, "1to", 3) == 0)
10357 {
10358 int bcst_type;
10359
10360 if (i.broadcast)
10361 goto duplicated_vec_op;
10362
10363 op_string += 3;
10364 if (*op_string == '8')
8e6e0792 10365 bcst_type = 8;
b28d1bda 10366 else if (*op_string == '4')
8e6e0792 10367 bcst_type = 4;
b28d1bda 10368 else if (*op_string == '2')
8e6e0792 10369 bcst_type = 2;
43234a1e
L
10370 else if (*op_string == '1'
10371 && *(op_string+1) == '6')
10372 {
8e6e0792 10373 bcst_type = 16;
43234a1e
L
10374 op_string++;
10375 }
10376 else
10377 {
10378 as_bad (_("Unsupported broadcast: `%s'"), saved);
10379 return NULL;
10380 }
10381 op_string++;
10382
10383 broadcast_op.type = bcst_type;
10384 broadcast_op.operand = this_operand;
1f75763a 10385 broadcast_op.bytes = 0;
43234a1e
L
10386 i.broadcast = &broadcast_op;
10387 }
10388 /* Check masking operation. */
10389 else if ((mask = parse_register (op_string, &end_op)) != NULL)
10390 {
8a6fb3f9
JB
10391 if (mask == &bad_reg)
10392 return NULL;
10393
43234a1e 10394 /* k0 can't be used for write mask. */
f74a6307 10395 if (mask->reg_type.bitfield.class != RegMask || !mask->reg_num)
43234a1e 10396 {
6d2cd6b2
JB
10397 as_bad (_("`%s%s' can't be used for write mask"),
10398 register_prefix, mask->reg_name);
43234a1e
L
10399 return NULL;
10400 }
10401
10402 if (!i.mask)
10403 {
10404 mask_op.mask = mask;
10405 mask_op.zeroing = 0;
10406 mask_op.operand = this_operand;
10407 i.mask = &mask_op;
10408 }
10409 else
10410 {
10411 if (i.mask->mask)
10412 goto duplicated_vec_op;
10413
10414 i.mask->mask = mask;
10415
10416 /* Only "{z}" is allowed here. No need to check
10417 zeroing mask explicitly. */
10418 if (i.mask->operand != this_operand)
10419 {
10420 as_bad (_("invalid write mask `%s'"), saved);
10421 return NULL;
10422 }
10423 }
10424
10425 op_string = end_op;
10426 }
10427 /* Check zeroing-flag for masking operation. */
10428 else if (*op_string == 'z')
10429 {
10430 if (!i.mask)
10431 {
10432 mask_op.mask = NULL;
10433 mask_op.zeroing = 1;
10434 mask_op.operand = this_operand;
10435 i.mask = &mask_op;
10436 }
10437 else
10438 {
10439 if (i.mask->zeroing)
10440 {
10441 duplicated_vec_op:
10442 as_bad (_("duplicated `%s'"), saved);
10443 return NULL;
10444 }
10445
10446 i.mask->zeroing = 1;
10447
10448 /* Only "{%k}" is allowed here. No need to check mask
10449 register explicitly. */
10450 if (i.mask->operand != this_operand)
10451 {
10452 as_bad (_("invalid zeroing-masking `%s'"),
10453 saved);
10454 return NULL;
10455 }
10456 }
10457
10458 op_string++;
10459 }
10460 else
10461 goto unknown_vec_op;
10462
10463 if (*op_string != '}')
10464 {
10465 as_bad (_("missing `}' in `%s'"), saved);
10466 return NULL;
10467 }
10468 op_string++;
0ba3a731
L
10469
10470 /* Strip whitespace since the addition of pseudo prefixes
10471 changed how the scrubber treats '{'. */
10472 if (is_space_char (*op_string))
10473 ++op_string;
10474
43234a1e
L
10475 continue;
10476 }
10477 unknown_vec_op:
10478 /* We don't know this one. */
10479 as_bad (_("unknown vector operation: `%s'"), saved);
10480 return NULL;
10481 }
10482
6d2cd6b2
JB
10483 if (i.mask && i.mask->zeroing && !i.mask->mask)
10484 {
10485 as_bad (_("zeroing-masking only allowed with write mask"));
10486 return NULL;
10487 }
10488
43234a1e
L
10489 return op_string;
10490}
10491
252b5132 10492static int
70e41ade 10493i386_immediate (char *imm_start)
252b5132
RH
10494{
10495 char *save_input_line_pointer;
f3c180ae 10496 char *gotfree_input_line;
252b5132 10497 segT exp_seg = 0;
47926f60 10498 expressionS *exp;
40fb9820
L
10499 i386_operand_type types;
10500
0dfbf9d7 10501 operand_type_set (&types, ~0);
252b5132
RH
10502
10503 if (i.imm_operands == MAX_IMMEDIATE_OPERANDS)
10504 {
31b2323c
L
10505 as_bad (_("at most %d immediate operands are allowed"),
10506 MAX_IMMEDIATE_OPERANDS);
252b5132
RH
10507 return 0;
10508 }
10509
10510 exp = &im_expressions[i.imm_operands++];
520dc8e8 10511 i.op[this_operand].imms = exp;
252b5132
RH
10512
10513 if (is_space_char (*imm_start))
10514 ++imm_start;
10515
10516 save_input_line_pointer = input_line_pointer;
10517 input_line_pointer = imm_start;
10518
d258b828 10519 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
10520 if (gotfree_input_line)
10521 input_line_pointer = gotfree_input_line;
252b5132
RH
10522
10523 exp_seg = expression (exp);
10524
83183c0c 10525 SKIP_WHITESPACE ();
43234a1e
L
10526
10527 /* Handle vector operations. */
10528 if (*input_line_pointer == '{')
10529 {
10530 input_line_pointer = check_VecOperations (input_line_pointer,
10531 NULL);
10532 if (input_line_pointer == NULL)
10533 return 0;
10534 }
10535
252b5132 10536 if (*input_line_pointer)
f3c180ae 10537 as_bad (_("junk `%s' after expression"), input_line_pointer);
252b5132
RH
10538
10539 input_line_pointer = save_input_line_pointer;
f3c180ae 10540 if (gotfree_input_line)
ee86248c
JB
10541 {
10542 free (gotfree_input_line);
10543
10544 if (exp->X_op == O_constant || exp->X_op == O_register)
10545 exp->X_op = O_illegal;
10546 }
10547
10548 return i386_finalize_immediate (exp_seg, exp, types, imm_start);
10549}
252b5132 10550
ee86248c
JB
10551static int
10552i386_finalize_immediate (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
10553 i386_operand_type types, const char *imm_start)
10554{
10555 if (exp->X_op == O_absent || exp->X_op == O_illegal || exp->X_op == O_big)
252b5132 10556 {
313c53d1
L
10557 if (imm_start)
10558 as_bad (_("missing or invalid immediate expression `%s'"),
10559 imm_start);
3992d3b7 10560 return 0;
252b5132 10561 }
3e73aa7c 10562 else if (exp->X_op == O_constant)
252b5132 10563 {
47926f60 10564 /* Size it properly later. */
40fb9820 10565 i.types[this_operand].bitfield.imm64 = 1;
13f864ae
L
10566 /* If not 64bit, sign extend val. */
10567 if (flag_code != CODE_64BIT
4eed87de
AM
10568 && (exp->X_add_number & ~(((addressT) 2 << 31) - 1)) == 0)
10569 exp->X_add_number
10570 = (exp->X_add_number ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
252b5132 10571 }
4c63da97 10572#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
f86103b7 10573 else if (OUTPUT_FLAVOR == bfd_target_aout_flavour
31312f95 10574 && exp_seg != absolute_section
47926f60 10575 && exp_seg != text_section
24eab124
AM
10576 && exp_seg != data_section
10577 && exp_seg != bss_section
10578 && exp_seg != undefined_section
f86103b7 10579 && !bfd_is_com_section (exp_seg))
252b5132 10580 {
d0b47220 10581 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
252b5132
RH
10582 return 0;
10583 }
10584#endif
a841bdf5 10585 else if (!intel_syntax && exp_seg == reg_section)
bb8f5920 10586 {
313c53d1
L
10587 if (imm_start)
10588 as_bad (_("illegal immediate register operand %s"), imm_start);
bb8f5920
L
10589 return 0;
10590 }
252b5132
RH
10591 else
10592 {
10593 /* This is an address. The size of the address will be
24eab124 10594 determined later, depending on destination register,
3e73aa7c 10595 suffix, or the default for the section. */
40fb9820
L
10596 i.types[this_operand].bitfield.imm8 = 1;
10597 i.types[this_operand].bitfield.imm16 = 1;
10598 i.types[this_operand].bitfield.imm32 = 1;
10599 i.types[this_operand].bitfield.imm32s = 1;
10600 i.types[this_operand].bitfield.imm64 = 1;
c6fb90c8
L
10601 i.types[this_operand] = operand_type_and (i.types[this_operand],
10602 types);
252b5132
RH
10603 }
10604
10605 return 1;
10606}
10607
551c1ca1 10608static char *
e3bb37b5 10609i386_scale (char *scale)
252b5132 10610{
551c1ca1
AM
10611 offsetT val;
10612 char *save = input_line_pointer;
252b5132 10613
551c1ca1
AM
10614 input_line_pointer = scale;
10615 val = get_absolute_expression ();
10616
10617 switch (val)
252b5132 10618 {
551c1ca1 10619 case 1:
252b5132
RH
10620 i.log2_scale_factor = 0;
10621 break;
551c1ca1 10622 case 2:
252b5132
RH
10623 i.log2_scale_factor = 1;
10624 break;
551c1ca1 10625 case 4:
252b5132
RH
10626 i.log2_scale_factor = 2;
10627 break;
551c1ca1 10628 case 8:
252b5132
RH
10629 i.log2_scale_factor = 3;
10630 break;
10631 default:
a724f0f4
JB
10632 {
10633 char sep = *input_line_pointer;
10634
10635 *input_line_pointer = '\0';
10636 as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
10637 scale);
10638 *input_line_pointer = sep;
10639 input_line_pointer = save;
10640 return NULL;
10641 }
252b5132 10642 }
29b0f896 10643 if (i.log2_scale_factor != 0 && i.index_reg == 0)
252b5132
RH
10644 {
10645 as_warn (_("scale factor of %d without an index register"),
24eab124 10646 1 << i.log2_scale_factor);
252b5132 10647 i.log2_scale_factor = 0;
252b5132 10648 }
551c1ca1
AM
10649 scale = input_line_pointer;
10650 input_line_pointer = save;
10651 return scale;
252b5132
RH
10652}
10653
252b5132 10654static int
e3bb37b5 10655i386_displacement (char *disp_start, char *disp_end)
252b5132 10656{
29b0f896 10657 expressionS *exp;
252b5132
RH
10658 segT exp_seg = 0;
10659 char *save_input_line_pointer;
f3c180ae 10660 char *gotfree_input_line;
40fb9820
L
10661 int override;
10662 i386_operand_type bigdisp, types = anydisp;
3992d3b7 10663 int ret;
252b5132 10664
31b2323c
L
10665 if (i.disp_operands == MAX_MEMORY_OPERANDS)
10666 {
10667 as_bad (_("at most %d displacement operands are allowed"),
10668 MAX_MEMORY_OPERANDS);
10669 return 0;
10670 }
10671
0dfbf9d7 10672 operand_type_set (&bigdisp, 0);
6f2f06be 10673 if (i.jumpabsolute
48bcea9f 10674 || i.types[this_operand].bitfield.baseindex
0cfa3eb3
JB
10675 || (current_templates->start->opcode_modifier.jump != JUMP
10676 && current_templates->start->opcode_modifier.jump != JUMP_DWORD))
e05278af 10677 {
48bcea9f 10678 i386_addressing_mode ();
e05278af 10679 override = (i.prefix[ADDR_PREFIX] != 0);
40fb9820
L
10680 if (flag_code == CODE_64BIT)
10681 {
10682 if (!override)
10683 {
10684 bigdisp.bitfield.disp32s = 1;
10685 bigdisp.bitfield.disp64 = 1;
10686 }
48bcea9f
JB
10687 else
10688 bigdisp.bitfield.disp32 = 1;
40fb9820
L
10689 }
10690 else if ((flag_code == CODE_16BIT) ^ override)
40fb9820 10691 bigdisp.bitfield.disp16 = 1;
48bcea9f
JB
10692 else
10693 bigdisp.bitfield.disp32 = 1;
e05278af
JB
10694 }
10695 else
10696 {
376cd056
JB
10697 /* For PC-relative branches, the width of the displacement may be
10698 dependent upon data size, but is never dependent upon address size.
10699 Also make sure to not unintentionally match against a non-PC-relative
10700 branch template. */
10701 static templates aux_templates;
10702 const insn_template *t = current_templates->start;
10703 bfd_boolean has_intel64 = FALSE;
10704
10705 aux_templates.start = t;
10706 while (++t < current_templates->end)
10707 {
10708 if (t->opcode_modifier.jump
10709 != current_templates->start->opcode_modifier.jump)
10710 break;
4b5aaf5f 10711 if ((t->opcode_modifier.isa64 >= INTEL64))
376cd056
JB
10712 has_intel64 = TRUE;
10713 }
10714 if (t < current_templates->end)
10715 {
10716 aux_templates.end = t;
10717 current_templates = &aux_templates;
10718 }
10719
e05278af 10720 override = (i.prefix[DATA_PREFIX] != 0);
40fb9820
L
10721 if (flag_code == CODE_64BIT)
10722 {
376cd056
JB
10723 if ((override || i.suffix == WORD_MNEM_SUFFIX)
10724 && (!intel64 || !has_intel64))
40fb9820
L
10725 bigdisp.bitfield.disp16 = 1;
10726 else
48bcea9f 10727 bigdisp.bitfield.disp32s = 1;
40fb9820
L
10728 }
10729 else
e05278af
JB
10730 {
10731 if (!override)
10732 override = (i.suffix == (flag_code != CODE_16BIT
10733 ? WORD_MNEM_SUFFIX
10734 : LONG_MNEM_SUFFIX));
40fb9820
L
10735 bigdisp.bitfield.disp32 = 1;
10736 if ((flag_code == CODE_16BIT) ^ override)
10737 {
10738 bigdisp.bitfield.disp32 = 0;
10739 bigdisp.bitfield.disp16 = 1;
10740 }
e05278af 10741 }
e05278af 10742 }
c6fb90c8
L
10743 i.types[this_operand] = operand_type_or (i.types[this_operand],
10744 bigdisp);
252b5132
RH
10745
10746 exp = &disp_expressions[i.disp_operands];
520dc8e8 10747 i.op[this_operand].disps = exp;
252b5132
RH
10748 i.disp_operands++;
10749 save_input_line_pointer = input_line_pointer;
10750 input_line_pointer = disp_start;
10751 END_STRING_AND_SAVE (disp_end);
10752
10753#ifndef GCC_ASM_O_HACK
10754#define GCC_ASM_O_HACK 0
10755#endif
10756#if GCC_ASM_O_HACK
10757 END_STRING_AND_SAVE (disp_end + 1);
40fb9820 10758 if (i.types[this_operand].bitfield.baseIndex
24eab124 10759 && displacement_string_end[-1] == '+')
252b5132
RH
10760 {
10761 /* This hack is to avoid a warning when using the "o"
24eab124
AM
10762 constraint within gcc asm statements.
10763 For instance:
10764
10765 #define _set_tssldt_desc(n,addr,limit,type) \
10766 __asm__ __volatile__ ( \
10767 "movw %w2,%0\n\t" \
10768 "movw %w1,2+%0\n\t" \
10769 "rorl $16,%1\n\t" \
10770 "movb %b1,4+%0\n\t" \
10771 "movb %4,5+%0\n\t" \
10772 "movb $0,6+%0\n\t" \
10773 "movb %h1,7+%0\n\t" \
10774 "rorl $16,%1" \
10775 : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type))
10776
10777 This works great except that the output assembler ends
10778 up looking a bit weird if it turns out that there is
10779 no offset. You end up producing code that looks like:
10780
10781 #APP
10782 movw $235,(%eax)
10783 movw %dx,2+(%eax)
10784 rorl $16,%edx
10785 movb %dl,4+(%eax)
10786 movb $137,5+(%eax)
10787 movb $0,6+(%eax)
10788 movb %dh,7+(%eax)
10789 rorl $16,%edx
10790 #NO_APP
10791
47926f60 10792 So here we provide the missing zero. */
24eab124
AM
10793
10794 *displacement_string_end = '0';
252b5132
RH
10795 }
10796#endif
d258b828 10797 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
10798 if (gotfree_input_line)
10799 input_line_pointer = gotfree_input_line;
252b5132 10800
24eab124 10801 exp_seg = expression (exp);
252b5132 10802
636c26b0
AM
10803 SKIP_WHITESPACE ();
10804 if (*input_line_pointer)
10805 as_bad (_("junk `%s' after expression"), input_line_pointer);
10806#if GCC_ASM_O_HACK
10807 RESTORE_END_STRING (disp_end + 1);
10808#endif
636c26b0 10809 input_line_pointer = save_input_line_pointer;
636c26b0 10810 if (gotfree_input_line)
ee86248c
JB
10811 {
10812 free (gotfree_input_line);
10813
10814 if (exp->X_op == O_constant || exp->X_op == O_register)
10815 exp->X_op = O_illegal;
10816 }
10817
10818 ret = i386_finalize_displacement (exp_seg, exp, types, disp_start);
10819
10820 RESTORE_END_STRING (disp_end);
10821
10822 return ret;
10823}
10824
10825static int
10826i386_finalize_displacement (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
10827 i386_operand_type types, const char *disp_start)
10828{
10829 i386_operand_type bigdisp;
10830 int ret = 1;
636c26b0 10831
24eab124
AM
10832 /* We do this to make sure that the section symbol is in
10833 the symbol table. We will ultimately change the relocation
47926f60 10834 to be relative to the beginning of the section. */
1ae12ab7 10835 if (i.reloc[this_operand] == BFD_RELOC_386_GOTOFF
d6ab8113
JB
10836 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL
10837 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
24eab124 10838 {
636c26b0 10839 if (exp->X_op != O_symbol)
3992d3b7 10840 goto inv_disp;
636c26b0 10841
e5cb08ac 10842 if (S_IS_LOCAL (exp->X_add_symbol)
c64efb4b
L
10843 && S_GET_SEGMENT (exp->X_add_symbol) != undefined_section
10844 && S_GET_SEGMENT (exp->X_add_symbol) != expr_section)
24eab124 10845 section_symbol (S_GET_SEGMENT (exp->X_add_symbol));
24eab124
AM
10846 exp->X_op = O_subtract;
10847 exp->X_op_symbol = GOT_symbol;
1ae12ab7 10848 if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL)
29b0f896 10849 i.reloc[this_operand] = BFD_RELOC_32_PCREL;
d6ab8113
JB
10850 else if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
10851 i.reloc[this_operand] = BFD_RELOC_64;
23df1078 10852 else
29b0f896 10853 i.reloc[this_operand] = BFD_RELOC_32;
24eab124 10854 }
252b5132 10855
3992d3b7
AM
10856 else if (exp->X_op == O_absent
10857 || exp->X_op == O_illegal
ee86248c 10858 || exp->X_op == O_big)
2daf4fd8 10859 {
3992d3b7
AM
10860 inv_disp:
10861 as_bad (_("missing or invalid displacement expression `%s'"),
2daf4fd8 10862 disp_start);
3992d3b7 10863 ret = 0;
2daf4fd8
AM
10864 }
10865
0e1147d9
L
10866 else if (flag_code == CODE_64BIT
10867 && !i.prefix[ADDR_PREFIX]
10868 && exp->X_op == O_constant)
10869 {
10870 /* Since displacement is signed extended to 64bit, don't allow
10871 disp32 and turn off disp32s if they are out of range. */
10872 i.types[this_operand].bitfield.disp32 = 0;
10873 if (!fits_in_signed_long (exp->X_add_number))
10874 {
10875 i.types[this_operand].bitfield.disp32s = 0;
10876 if (i.types[this_operand].bitfield.baseindex)
10877 {
10878 as_bad (_("0x%lx out range of signed 32bit displacement"),
10879 (long) exp->X_add_number);
10880 ret = 0;
10881 }
10882 }
10883 }
10884
4c63da97 10885#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
3992d3b7
AM
10886 else if (exp->X_op != O_constant
10887 && OUTPUT_FLAVOR == bfd_target_aout_flavour
10888 && exp_seg != absolute_section
10889 && exp_seg != text_section
10890 && exp_seg != data_section
10891 && exp_seg != bss_section
10892 && exp_seg != undefined_section
10893 && !bfd_is_com_section (exp_seg))
24eab124 10894 {
d0b47220 10895 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
3992d3b7 10896 ret = 0;
24eab124 10897 }
252b5132 10898#endif
3956db08 10899
48bcea9f
JB
10900 if (current_templates->start->opcode_modifier.jump == JUMP_BYTE
10901 /* Constants get taken care of by optimize_disp(). */
10902 && exp->X_op != O_constant)
10903 i.types[this_operand].bitfield.disp8 = 1;
10904
40fb9820
L
10905 /* Check if this is a displacement only operand. */
10906 bigdisp = i.types[this_operand];
10907 bigdisp.bitfield.disp8 = 0;
10908 bigdisp.bitfield.disp16 = 0;
10909 bigdisp.bitfield.disp32 = 0;
10910 bigdisp.bitfield.disp32s = 0;
10911 bigdisp.bitfield.disp64 = 0;
0dfbf9d7 10912 if (operand_type_all_zero (&bigdisp))
c6fb90c8
L
10913 i.types[this_operand] = operand_type_and (i.types[this_operand],
10914 types);
3956db08 10915
3992d3b7 10916 return ret;
252b5132
RH
10917}
10918
2abc2bec
JB
10919/* Return the active addressing mode, taking address override and
10920 registers forming the address into consideration. Update the
10921 address override prefix if necessary. */
47926f60 10922
2abc2bec
JB
10923static enum flag_code
10924i386_addressing_mode (void)
252b5132 10925{
be05d201
L
10926 enum flag_code addr_mode;
10927
10928 if (i.prefix[ADDR_PREFIX])
10929 addr_mode = flag_code == CODE_32BIT ? CODE_16BIT : CODE_32BIT;
a23b33b3
JB
10930 else if (flag_code == CODE_16BIT
10931 && current_templates->start->cpu_flags.bitfield.cpumpx
10932 /* Avoid replacing the "16-bit addressing not allowed" diagnostic
10933 from md_assemble() by "is not a valid base/index expression"
10934 when there is a base and/or index. */
10935 && !i.types[this_operand].bitfield.baseindex)
10936 {
10937 /* MPX insn memory operands with neither base nor index must be forced
10938 to use 32-bit addressing in 16-bit mode. */
10939 addr_mode = CODE_32BIT;
10940 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
10941 ++i.prefixes;
10942 gas_assert (!i.types[this_operand].bitfield.disp16);
10943 gas_assert (!i.types[this_operand].bitfield.disp32);
10944 }
be05d201
L
10945 else
10946 {
10947 addr_mode = flag_code;
10948
24eab124 10949#if INFER_ADDR_PREFIX
be05d201
L
10950 if (i.mem_operands == 0)
10951 {
10952 /* Infer address prefix from the first memory operand. */
10953 const reg_entry *addr_reg = i.base_reg;
10954
10955 if (addr_reg == NULL)
10956 addr_reg = i.index_reg;
eecb386c 10957
be05d201
L
10958 if (addr_reg)
10959 {
e968fc9b 10960 if (addr_reg->reg_type.bitfield.dword)
be05d201
L
10961 addr_mode = CODE_32BIT;
10962 else if (flag_code != CODE_64BIT
dc821c5f 10963 && addr_reg->reg_type.bitfield.word)
be05d201
L
10964 addr_mode = CODE_16BIT;
10965
10966 if (addr_mode != flag_code)
10967 {
10968 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
10969 i.prefixes += 1;
10970 /* Change the size of any displacement too. At most one
10971 of Disp16 or Disp32 is set.
10972 FIXME. There doesn't seem to be any real need for
10973 separate Disp16 and Disp32 flags. The same goes for
10974 Imm16 and Imm32. Removing them would probably clean
10975 up the code quite a lot. */
10976 if (flag_code != CODE_64BIT
10977 && (i.types[this_operand].bitfield.disp16
10978 || i.types[this_operand].bitfield.disp32))
10979 i.types[this_operand]
10980 = operand_type_xor (i.types[this_operand], disp16_32);
10981 }
10982 }
10983 }
24eab124 10984#endif
be05d201
L
10985 }
10986
2abc2bec
JB
10987 return addr_mode;
10988}
10989
10990/* Make sure the memory operand we've been dealt is valid.
10991 Return 1 on success, 0 on a failure. */
10992
10993static int
10994i386_index_check (const char *operand_string)
10995{
10996 const char *kind = "base/index";
10997 enum flag_code addr_mode = i386_addressing_mode ();
a152332d 10998 const insn_template *t = current_templates->start;
2abc2bec 10999
a152332d
JB
11000 if (t->opcode_modifier.isstring
11001 && !t->cpu_flags.bitfield.cpupadlock
fc0763e6
JB
11002 && (current_templates->end[-1].opcode_modifier.isstring
11003 || i.mem_operands))
11004 {
11005 /* Memory operands of string insns are special in that they only allow
11006 a single register (rDI, rSI, or rBX) as their memory address. */
be05d201
L
11007 const reg_entry *expected_reg;
11008 static const char *di_si[][2] =
11009 {
11010 { "esi", "edi" },
11011 { "si", "di" },
11012 { "rsi", "rdi" }
11013 };
11014 static const char *bx[] = { "ebx", "bx", "rbx" };
fc0763e6
JB
11015
11016 kind = "string address";
11017
a152332d 11018 if (t->opcode_modifier.prefixok == PrefixRep)
fc0763e6 11019 {
51c8edf6
JB
11020 int es_op = current_templates->end[-1].opcode_modifier.isstring
11021 - IS_STRING_ES_OP0;
11022 int op = 0;
fc0763e6 11023
51c8edf6 11024 if (!current_templates->end[-1].operand_types[0].bitfield.baseindex
fc0763e6
JB
11025 || ((!i.mem_operands != !intel_syntax)
11026 && current_templates->end[-1].operand_types[1]
11027 .bitfield.baseindex))
51c8edf6 11028 op = 1;
fe0e921f
AM
11029 expected_reg
11030 = (const reg_entry *) str_hash_find (reg_hash,
11031 di_si[addr_mode][op == es_op]);
fc0763e6
JB
11032 }
11033 else
fe0e921f
AM
11034 expected_reg
11035 = (const reg_entry *)str_hash_find (reg_hash, bx[addr_mode]);
fc0763e6 11036
be05d201
L
11037 if (i.base_reg != expected_reg
11038 || i.index_reg
fc0763e6 11039 || operand_type_check (i.types[this_operand], disp))
fc0763e6 11040 {
be05d201
L
11041 /* The second memory operand must have the same size as
11042 the first one. */
11043 if (i.mem_operands
11044 && i.base_reg
11045 && !((addr_mode == CODE_64BIT
dc821c5f 11046 && i.base_reg->reg_type.bitfield.qword)
be05d201 11047 || (addr_mode == CODE_32BIT
dc821c5f
JB
11048 ? i.base_reg->reg_type.bitfield.dword
11049 : i.base_reg->reg_type.bitfield.word)))
be05d201
L
11050 goto bad_address;
11051
fc0763e6
JB
11052 as_warn (_("`%s' is not valid here (expected `%c%s%s%c')"),
11053 operand_string,
11054 intel_syntax ? '[' : '(',
11055 register_prefix,
be05d201 11056 expected_reg->reg_name,
fc0763e6 11057 intel_syntax ? ']' : ')');
be05d201 11058 return 1;
fc0763e6 11059 }
be05d201
L
11060 else
11061 return 1;
11062
dc1e8a47 11063 bad_address:
be05d201
L
11064 as_bad (_("`%s' is not a valid %s expression"),
11065 operand_string, kind);
11066 return 0;
3e73aa7c
JH
11067 }
11068 else
11069 {
be05d201
L
11070 if (addr_mode != CODE_16BIT)
11071 {
11072 /* 32-bit/64-bit checks. */
41eb8e88
L
11073 if (i.disp_encoding == disp_encoding_16bit)
11074 {
11075 bad_disp:
11076 as_bad (_("invalid `%s' prefix"),
11077 addr_mode == CODE_16BIT ? "{disp32}" : "{disp16}");
11078 return 0;
11079 }
11080
be05d201 11081 if ((i.base_reg
e968fc9b
JB
11082 && ((addr_mode == CODE_64BIT
11083 ? !i.base_reg->reg_type.bitfield.qword
11084 : !i.base_reg->reg_type.bitfield.dword)
11085 || (i.index_reg && i.base_reg->reg_num == RegIP)
11086 || i.base_reg->reg_num == RegIZ))
be05d201 11087 || (i.index_reg
1b54b8d7
JB
11088 && !i.index_reg->reg_type.bitfield.xmmword
11089 && !i.index_reg->reg_type.bitfield.ymmword
11090 && !i.index_reg->reg_type.bitfield.zmmword
be05d201 11091 && ((addr_mode == CODE_64BIT
e968fc9b
JB
11092 ? !i.index_reg->reg_type.bitfield.qword
11093 : !i.index_reg->reg_type.bitfield.dword)
be05d201
L
11094 || !i.index_reg->reg_type.bitfield.baseindex)))
11095 goto bad_address;
8178be5b 11096
260cd341 11097 /* bndmk, bndldx, bndstx and mandatory non-vector SIB have special restrictions. */
a152332d
JB
11098 if ((t->opcode_modifier.opcodeprefix == PREFIX_0XF3
11099 && t->base_opcode == 0x0f1b)
11100 || (t->opcode_modifier.opcodeprefix == PREFIX_NONE
11101 && (t->base_opcode & ~1) == 0x0f1a)
11102 || t->opcode_modifier.sib == SIBMEM)
8178be5b
JB
11103 {
11104 /* They cannot use RIP-relative addressing. */
e968fc9b 11105 if (i.base_reg && i.base_reg->reg_num == RegIP)
8178be5b
JB
11106 {
11107 as_bad (_("`%s' cannot be used here"), operand_string);
11108 return 0;
11109 }
11110
11111 /* bndldx and bndstx ignore their scale factor. */
a152332d
JB
11112 if (t->opcode_modifier.opcodeprefix == PREFIX_NONE
11113 && (t->base_opcode & ~1) == 0x0f1a
8178be5b
JB
11114 && i.log2_scale_factor)
11115 as_warn (_("register scaling is being ignored here"));
11116 }
be05d201
L
11117 }
11118 else
3e73aa7c 11119 {
be05d201 11120 /* 16-bit checks. */
41eb8e88
L
11121 if (i.disp_encoding == disp_encoding_32bit)
11122 goto bad_disp;
11123
3e73aa7c 11124 if ((i.base_reg
dc821c5f 11125 && (!i.base_reg->reg_type.bitfield.word
40fb9820 11126 || !i.base_reg->reg_type.bitfield.baseindex))
3e73aa7c 11127 || (i.index_reg
dc821c5f 11128 && (!i.index_reg->reg_type.bitfield.word
40fb9820 11129 || !i.index_reg->reg_type.bitfield.baseindex
29b0f896
AM
11130 || !(i.base_reg
11131 && i.base_reg->reg_num < 6
11132 && i.index_reg->reg_num >= 6
11133 && i.log2_scale_factor == 0))))
be05d201 11134 goto bad_address;
3e73aa7c
JH
11135 }
11136 }
be05d201 11137 return 1;
24eab124 11138}
252b5132 11139
43234a1e
L
11140/* Handle vector immediates. */
11141
11142static int
11143RC_SAE_immediate (const char *imm_start)
11144{
11145 unsigned int match_found, j;
11146 const char *pstr = imm_start;
11147 expressionS *exp;
11148
11149 if (*pstr != '{')
11150 return 0;
11151
11152 pstr++;
11153 match_found = 0;
11154 for (j = 0; j < ARRAY_SIZE (RC_NamesTable); j++)
11155 {
11156 if (!strncmp (pstr, RC_NamesTable[j].name, RC_NamesTable[j].len))
11157 {
11158 if (!i.rounding)
11159 {
11160 rc_op.type = RC_NamesTable[j].type;
11161 rc_op.operand = this_operand;
11162 i.rounding = &rc_op;
11163 }
11164 else
11165 {
11166 as_bad (_("duplicated `%s'"), imm_start);
11167 return 0;
11168 }
11169 pstr += RC_NamesTable[j].len;
11170 match_found = 1;
11171 break;
11172 }
11173 }
11174 if (!match_found)
11175 return 0;
11176
11177 if (*pstr++ != '}')
11178 {
11179 as_bad (_("Missing '}': '%s'"), imm_start);
11180 return 0;
11181 }
11182 /* RC/SAE immediate string should contain nothing more. */;
11183 if (*pstr != 0)
11184 {
11185 as_bad (_("Junk after '}': '%s'"), imm_start);
11186 return 0;
11187 }
11188
11189 exp = &im_expressions[i.imm_operands++];
11190 i.op[this_operand].imms = exp;
11191
11192 exp->X_op = O_constant;
11193 exp->X_add_number = 0;
11194 exp->X_add_symbol = (symbolS *) 0;
11195 exp->X_op_symbol = (symbolS *) 0;
11196
11197 i.types[this_operand].bitfield.imm8 = 1;
11198 return 1;
11199}
11200
8325cc63
JB
11201/* Only string instructions can have a second memory operand, so
11202 reduce current_templates to just those if it contains any. */
11203static int
11204maybe_adjust_templates (void)
11205{
11206 const insn_template *t;
11207
11208 gas_assert (i.mem_operands == 1);
11209
11210 for (t = current_templates->start; t < current_templates->end; ++t)
11211 if (t->opcode_modifier.isstring)
11212 break;
11213
11214 if (t < current_templates->end)
11215 {
11216 static templates aux_templates;
11217 bfd_boolean recheck;
11218
11219 aux_templates.start = t;
11220 for (; t < current_templates->end; ++t)
11221 if (!t->opcode_modifier.isstring)
11222 break;
11223 aux_templates.end = t;
11224
11225 /* Determine whether to re-check the first memory operand. */
11226 recheck = (aux_templates.start != current_templates->start
11227 || t != current_templates->end);
11228
11229 current_templates = &aux_templates;
11230
11231 if (recheck)
11232 {
11233 i.mem_operands = 0;
11234 if (i.memop1_string != NULL
11235 && i386_index_check (i.memop1_string) == 0)
11236 return 0;
11237 i.mem_operands = 1;
11238 }
11239 }
11240
11241 return 1;
11242}
11243
fc0763e6 11244/* Parse OPERAND_STRING into the i386_insn structure I. Returns zero
47926f60 11245 on error. */
252b5132 11246
252b5132 11247static int
a7619375 11248i386_att_operand (char *operand_string)
252b5132 11249{
af6bdddf
AM
11250 const reg_entry *r;
11251 char *end_op;
24eab124 11252 char *op_string = operand_string;
252b5132 11253
24eab124 11254 if (is_space_char (*op_string))
252b5132
RH
11255 ++op_string;
11256
24eab124 11257 /* We check for an absolute prefix (differentiating,
47926f60 11258 for example, 'jmp pc_relative_label' from 'jmp *absolute_label'. */
24eab124
AM
11259 if (*op_string == ABSOLUTE_PREFIX)
11260 {
11261 ++op_string;
11262 if (is_space_char (*op_string))
11263 ++op_string;
6f2f06be 11264 i.jumpabsolute = TRUE;
24eab124 11265 }
252b5132 11266
47926f60 11267 /* Check if operand is a register. */
4d1bb795 11268 if ((r = parse_register (op_string, &end_op)) != NULL)
24eab124 11269 {
40fb9820
L
11270 i386_operand_type temp;
11271
8a6fb3f9
JB
11272 if (r == &bad_reg)
11273 return 0;
11274
24eab124
AM
11275 /* Check for a segment override by searching for ':' after a
11276 segment register. */
11277 op_string = end_op;
11278 if (is_space_char (*op_string))
11279 ++op_string;
00cee14f 11280 if (*op_string == ':' && r->reg_type.bitfield.class == SReg)
24eab124
AM
11281 {
11282 switch (r->reg_num)
11283 {
11284 case 0:
11285 i.seg[i.mem_operands] = &es;
11286 break;
11287 case 1:
11288 i.seg[i.mem_operands] = &cs;
11289 break;
11290 case 2:
11291 i.seg[i.mem_operands] = &ss;
11292 break;
11293 case 3:
11294 i.seg[i.mem_operands] = &ds;
11295 break;
11296 case 4:
11297 i.seg[i.mem_operands] = &fs;
11298 break;
11299 case 5:
11300 i.seg[i.mem_operands] = &gs;
11301 break;
11302 }
252b5132 11303
24eab124 11304 /* Skip the ':' and whitespace. */
252b5132
RH
11305 ++op_string;
11306 if (is_space_char (*op_string))
24eab124 11307 ++op_string;
252b5132 11308
24eab124
AM
11309 if (!is_digit_char (*op_string)
11310 && !is_identifier_char (*op_string)
11311 && *op_string != '('
11312 && *op_string != ABSOLUTE_PREFIX)
11313 {
11314 as_bad (_("bad memory operand `%s'"), op_string);
11315 return 0;
11316 }
47926f60 11317 /* Handle case of %es:*foo. */
24eab124
AM
11318 if (*op_string == ABSOLUTE_PREFIX)
11319 {
11320 ++op_string;
11321 if (is_space_char (*op_string))
11322 ++op_string;
6f2f06be 11323 i.jumpabsolute = TRUE;
24eab124
AM
11324 }
11325 goto do_memory_reference;
11326 }
43234a1e
L
11327
11328 /* Handle vector operations. */
11329 if (*op_string == '{')
11330 {
11331 op_string = check_VecOperations (op_string, NULL);
11332 if (op_string == NULL)
11333 return 0;
11334 }
11335
24eab124
AM
11336 if (*op_string)
11337 {
d0b47220 11338 as_bad (_("junk `%s' after register"), op_string);
24eab124
AM
11339 return 0;
11340 }
40fb9820
L
11341 temp = r->reg_type;
11342 temp.bitfield.baseindex = 0;
c6fb90c8
L
11343 i.types[this_operand] = operand_type_or (i.types[this_operand],
11344 temp);
7d5e4556 11345 i.types[this_operand].bitfield.unspecified = 0;
520dc8e8 11346 i.op[this_operand].regs = r;
24eab124
AM
11347 i.reg_operands++;
11348 }
af6bdddf
AM
11349 else if (*op_string == REGISTER_PREFIX)
11350 {
11351 as_bad (_("bad register name `%s'"), op_string);
11352 return 0;
11353 }
24eab124 11354 else if (*op_string == IMMEDIATE_PREFIX)
ce8a8b2f 11355 {
24eab124 11356 ++op_string;
6f2f06be 11357 if (i.jumpabsolute)
24eab124 11358 {
d0b47220 11359 as_bad (_("immediate operand illegal with absolute jump"));
24eab124
AM
11360 return 0;
11361 }
11362 if (!i386_immediate (op_string))
11363 return 0;
11364 }
43234a1e
L
11365 else if (RC_SAE_immediate (operand_string))
11366 {
11367 /* If it is a RC or SAE immediate, do nothing. */
11368 ;
11369 }
24eab124
AM
11370 else if (is_digit_char (*op_string)
11371 || is_identifier_char (*op_string)
d02603dc 11372 || *op_string == '"'
e5cb08ac 11373 || *op_string == '(')
24eab124 11374 {
47926f60 11375 /* This is a memory reference of some sort. */
af6bdddf 11376 char *base_string;
252b5132 11377
47926f60 11378 /* Start and end of displacement string expression (if found). */
eecb386c
AM
11379 char *displacement_string_start;
11380 char *displacement_string_end;
43234a1e 11381 char *vop_start;
252b5132 11382
24eab124 11383 do_memory_reference:
8325cc63
JB
11384 if (i.mem_operands == 1 && !maybe_adjust_templates ())
11385 return 0;
24eab124 11386 if ((i.mem_operands == 1
40fb9820 11387 && !current_templates->start->opcode_modifier.isstring)
24eab124
AM
11388 || i.mem_operands == 2)
11389 {
11390 as_bad (_("too many memory references for `%s'"),
11391 current_templates->start->name);
11392 return 0;
11393 }
252b5132 11394
24eab124
AM
11395 /* Check for base index form. We detect the base index form by
11396 looking for an ')' at the end of the operand, searching
11397 for the '(' matching it, and finding a REGISTER_PREFIX or ','
11398 after the '('. */
af6bdddf 11399 base_string = op_string + strlen (op_string);
c3332e24 11400
43234a1e
L
11401 /* Handle vector operations. */
11402 vop_start = strchr (op_string, '{');
11403 if (vop_start && vop_start < base_string)
11404 {
11405 if (check_VecOperations (vop_start, base_string) == NULL)
11406 return 0;
11407 base_string = vop_start;
11408 }
11409
af6bdddf
AM
11410 --base_string;
11411 if (is_space_char (*base_string))
11412 --base_string;
252b5132 11413
47926f60 11414 /* If we only have a displacement, set-up for it to be parsed later. */
af6bdddf
AM
11415 displacement_string_start = op_string;
11416 displacement_string_end = base_string + 1;
252b5132 11417
24eab124
AM
11418 if (*base_string == ')')
11419 {
af6bdddf 11420 char *temp_string;
24eab124
AM
11421 unsigned int parens_balanced = 1;
11422 /* We've already checked that the number of left & right ()'s are
47926f60 11423 equal, so this loop will not be infinite. */
24eab124
AM
11424 do
11425 {
11426 base_string--;
11427 if (*base_string == ')')
11428 parens_balanced++;
11429 if (*base_string == '(')
11430 parens_balanced--;
11431 }
11432 while (parens_balanced);
c3332e24 11433
af6bdddf 11434 temp_string = base_string;
c3332e24 11435
24eab124 11436 /* Skip past '(' and whitespace. */
252b5132
RH
11437 ++base_string;
11438 if (is_space_char (*base_string))
24eab124 11439 ++base_string;
252b5132 11440
af6bdddf 11441 if (*base_string == ','
4eed87de
AM
11442 || ((i.base_reg = parse_register (base_string, &end_op))
11443 != NULL))
252b5132 11444 {
af6bdddf 11445 displacement_string_end = temp_string;
252b5132 11446
40fb9820 11447 i.types[this_operand].bitfield.baseindex = 1;
252b5132 11448
af6bdddf 11449 if (i.base_reg)
24eab124 11450 {
8a6fb3f9
JB
11451 if (i.base_reg == &bad_reg)
11452 return 0;
24eab124
AM
11453 base_string = end_op;
11454 if (is_space_char (*base_string))
11455 ++base_string;
af6bdddf
AM
11456 }
11457
11458 /* There may be an index reg or scale factor here. */
11459 if (*base_string == ',')
11460 {
11461 ++base_string;
11462 if (is_space_char (*base_string))
11463 ++base_string;
11464
4eed87de
AM
11465 if ((i.index_reg = parse_register (base_string, &end_op))
11466 != NULL)
24eab124 11467 {
8a6fb3f9
JB
11468 if (i.index_reg == &bad_reg)
11469 return 0;
af6bdddf 11470 base_string = end_op;
24eab124
AM
11471 if (is_space_char (*base_string))
11472 ++base_string;
af6bdddf
AM
11473 if (*base_string == ',')
11474 {
11475 ++base_string;
11476 if (is_space_char (*base_string))
11477 ++base_string;
11478 }
e5cb08ac 11479 else if (*base_string != ')')
af6bdddf 11480 {
4eed87de
AM
11481 as_bad (_("expecting `,' or `)' "
11482 "after index register in `%s'"),
af6bdddf
AM
11483 operand_string);
11484 return 0;
11485 }
24eab124 11486 }
af6bdddf 11487 else if (*base_string == REGISTER_PREFIX)
24eab124 11488 {
f76bf5e0
L
11489 end_op = strchr (base_string, ',');
11490 if (end_op)
11491 *end_op = '\0';
af6bdddf 11492 as_bad (_("bad register name `%s'"), base_string);
24eab124
AM
11493 return 0;
11494 }
252b5132 11495
47926f60 11496 /* Check for scale factor. */
551c1ca1 11497 if (*base_string != ')')
af6bdddf 11498 {
551c1ca1
AM
11499 char *end_scale = i386_scale (base_string);
11500
11501 if (!end_scale)
af6bdddf 11502 return 0;
24eab124 11503
551c1ca1 11504 base_string = end_scale;
af6bdddf
AM
11505 if (is_space_char (*base_string))
11506 ++base_string;
11507 if (*base_string != ')')
11508 {
4eed87de
AM
11509 as_bad (_("expecting `)' "
11510 "after scale factor in `%s'"),
af6bdddf
AM
11511 operand_string);
11512 return 0;
11513 }
11514 }
11515 else if (!i.index_reg)
24eab124 11516 {
4eed87de
AM
11517 as_bad (_("expecting index register or scale factor "
11518 "after `,'; got '%c'"),
af6bdddf 11519 *base_string);
24eab124
AM
11520 return 0;
11521 }
11522 }
af6bdddf 11523 else if (*base_string != ')')
24eab124 11524 {
4eed87de
AM
11525 as_bad (_("expecting `,' or `)' "
11526 "after base register in `%s'"),
af6bdddf 11527 operand_string);
24eab124
AM
11528 return 0;
11529 }
c3332e24 11530 }
af6bdddf 11531 else if (*base_string == REGISTER_PREFIX)
c3332e24 11532 {
f76bf5e0
L
11533 end_op = strchr (base_string, ',');
11534 if (end_op)
11535 *end_op = '\0';
af6bdddf 11536 as_bad (_("bad register name `%s'"), base_string);
24eab124 11537 return 0;
c3332e24 11538 }
24eab124
AM
11539 }
11540
11541 /* If there's an expression beginning the operand, parse it,
11542 assuming displacement_string_start and
11543 displacement_string_end are meaningful. */
11544 if (displacement_string_start != displacement_string_end)
11545 {
11546 if (!i386_displacement (displacement_string_start,
11547 displacement_string_end))
11548 return 0;
11549 }
11550
11551 /* Special case for (%dx) while doing input/output op. */
11552 if (i.base_reg
75e5731b
JB
11553 && i.base_reg->reg_type.bitfield.instance == RegD
11554 && i.base_reg->reg_type.bitfield.word
24eab124
AM
11555 && i.index_reg == 0
11556 && i.log2_scale_factor == 0
11557 && i.seg[i.mem_operands] == 0
40fb9820 11558 && !operand_type_check (i.types[this_operand], disp))
24eab124 11559 {
2fb5be8d 11560 i.types[this_operand] = i.base_reg->reg_type;
24eab124
AM
11561 return 1;
11562 }
11563
eecb386c
AM
11564 if (i386_index_check (operand_string) == 0)
11565 return 0;
c48dadc9 11566 i.flags[this_operand] |= Operand_Mem;
8325cc63
JB
11567 if (i.mem_operands == 0)
11568 i.memop1_string = xstrdup (operand_string);
24eab124
AM
11569 i.mem_operands++;
11570 }
11571 else
ce8a8b2f
AM
11572 {
11573 /* It's not a memory operand; argh! */
24eab124
AM
11574 as_bad (_("invalid char %s beginning operand %d `%s'"),
11575 output_invalid (*op_string),
11576 this_operand + 1,
11577 op_string);
11578 return 0;
11579 }
47926f60 11580 return 1; /* Normal return. */
252b5132
RH
11581}
11582\f
fa94de6b
RM
11583/* Calculate the maximum variable size (i.e., excluding fr_fix)
11584 that an rs_machine_dependent frag may reach. */
11585
11586unsigned int
11587i386_frag_max_var (fragS *frag)
11588{
11589 /* The only relaxable frags are for jumps.
11590 Unconditional jumps can grow by 4 bytes and others by 5 bytes. */
11591 gas_assert (frag->fr_type == rs_machine_dependent);
11592 return TYPE_FROM_RELAX_STATE (frag->fr_subtype) == UNCOND_JUMP ? 4 : 5;
11593}
11594
b084df0b
L
11595#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11596static int
8dcea932 11597elf_symbol_resolved_in_segment_p (symbolS *fr_symbol, offsetT fr_var)
b084df0b
L
11598{
11599 /* STT_GNU_IFUNC symbol must go through PLT. */
11600 if ((symbol_get_bfdsym (fr_symbol)->flags
11601 & BSF_GNU_INDIRECT_FUNCTION) != 0)
11602 return 0;
11603
11604 if (!S_IS_EXTERNAL (fr_symbol))
11605 /* Symbol may be weak or local. */
11606 return !S_IS_WEAK (fr_symbol);
11607
8dcea932
L
11608 /* Global symbols with non-default visibility can't be preempted. */
11609 if (ELF_ST_VISIBILITY (S_GET_OTHER (fr_symbol)) != STV_DEFAULT)
11610 return 1;
11611
11612 if (fr_var != NO_RELOC)
11613 switch ((enum bfd_reloc_code_real) fr_var)
11614 {
11615 case BFD_RELOC_386_PLT32:
11616 case BFD_RELOC_X86_64_PLT32:
33eaf5de 11617 /* Symbol with PLT relocation may be preempted. */
8dcea932
L
11618 return 0;
11619 default:
11620 abort ();
11621 }
11622
b084df0b
L
11623 /* Global symbols with default visibility in a shared library may be
11624 preempted by another definition. */
8dcea932 11625 return !shared;
b084df0b
L
11626}
11627#endif
11628
79d72f45
HL
11629/* Table 3-2. Macro-Fusible Instructions in Haswell Microarchitecture
11630 Note also work for Skylake and Cascadelake.
11631---------------------------------------------------------------------
11632| JCC | ADD/SUB/CMP | INC/DEC | TEST/AND |
11633| ------ | ----------- | ------- | -------- |
11634| Jo | N | N | Y |
11635| Jno | N | N | Y |
11636| Jc/Jb | Y | N | Y |
11637| Jae/Jnb | Y | N | Y |
11638| Je/Jz | Y | Y | Y |
11639| Jne/Jnz | Y | Y | Y |
11640| Jna/Jbe | Y | N | Y |
11641| Ja/Jnbe | Y | N | Y |
11642| Js | N | N | Y |
11643| Jns | N | N | Y |
11644| Jp/Jpe | N | N | Y |
11645| Jnp/Jpo | N | N | Y |
11646| Jl/Jnge | Y | Y | Y |
11647| Jge/Jnl | Y | Y | Y |
11648| Jle/Jng | Y | Y | Y |
11649| Jg/Jnle | Y | Y | Y |
11650--------------------------------------------------------------------- */
11651static int
11652i386_macro_fusible_p (enum mf_cmp_kind mf_cmp, enum mf_jcc_kind mf_jcc)
11653{
11654 if (mf_cmp == mf_cmp_alu_cmp)
11655 return ((mf_jcc >= mf_jcc_jc && mf_jcc <= mf_jcc_jna)
11656 || mf_jcc == mf_jcc_jl || mf_jcc == mf_jcc_jle);
11657 if (mf_cmp == mf_cmp_incdec)
11658 return (mf_jcc == mf_jcc_je || mf_jcc == mf_jcc_jl
11659 || mf_jcc == mf_jcc_jle);
11660 if (mf_cmp == mf_cmp_test_and)
11661 return 1;
11662 return 0;
11663}
11664
e379e5f3
L
11665/* Return the next non-empty frag. */
11666
11667static fragS *
11668i386_next_non_empty_frag (fragS *fragP)
11669{
11670 /* There may be a frag with a ".fill 0" when there is no room in
11671 the current frag for frag_grow in output_insn. */
11672 for (fragP = fragP->fr_next;
11673 (fragP != NULL
11674 && fragP->fr_type == rs_fill
11675 && fragP->fr_fix == 0);
11676 fragP = fragP->fr_next)
11677 ;
11678 return fragP;
11679}
11680
11681/* Return the next jcc frag after BRANCH_PADDING. */
11682
11683static fragS *
79d72f45 11684i386_next_fusible_jcc_frag (fragS *maybe_cmp_fragP, fragS *pad_fragP)
e379e5f3 11685{
79d72f45
HL
11686 fragS *branch_fragP;
11687 if (!pad_fragP)
e379e5f3
L
11688 return NULL;
11689
79d72f45
HL
11690 if (pad_fragP->fr_type == rs_machine_dependent
11691 && (TYPE_FROM_RELAX_STATE (pad_fragP->fr_subtype)
e379e5f3
L
11692 == BRANCH_PADDING))
11693 {
79d72f45
HL
11694 branch_fragP = i386_next_non_empty_frag (pad_fragP);
11695 if (branch_fragP->fr_type != rs_machine_dependent)
e379e5f3 11696 return NULL;
79d72f45
HL
11697 if (TYPE_FROM_RELAX_STATE (branch_fragP->fr_subtype) == COND_JUMP
11698 && i386_macro_fusible_p (maybe_cmp_fragP->tc_frag_data.mf_type,
11699 pad_fragP->tc_frag_data.mf_type))
11700 return branch_fragP;
e379e5f3
L
11701 }
11702
11703 return NULL;
11704}
11705
11706/* Classify BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags. */
11707
11708static void
11709i386_classify_machine_dependent_frag (fragS *fragP)
11710{
11711 fragS *cmp_fragP;
11712 fragS *pad_fragP;
11713 fragS *branch_fragP;
11714 fragS *next_fragP;
11715 unsigned int max_prefix_length;
11716
11717 if (fragP->tc_frag_data.classified)
11718 return;
11719
11720 /* First scan for BRANCH_PADDING and FUSED_JCC_PADDING. Convert
11721 FUSED_JCC_PADDING and merge BRANCH_PADDING. */
11722 for (next_fragP = fragP;
11723 next_fragP != NULL;
11724 next_fragP = next_fragP->fr_next)
11725 {
11726 next_fragP->tc_frag_data.classified = 1;
11727 if (next_fragP->fr_type == rs_machine_dependent)
11728 switch (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype))
11729 {
11730 case BRANCH_PADDING:
11731 /* The BRANCH_PADDING frag must be followed by a branch
11732 frag. */
11733 branch_fragP = i386_next_non_empty_frag (next_fragP);
11734 next_fragP->tc_frag_data.u.branch_fragP = branch_fragP;
11735 break;
11736 case FUSED_JCC_PADDING:
11737 /* Check if this is a fused jcc:
11738 FUSED_JCC_PADDING
11739 CMP like instruction
11740 BRANCH_PADDING
11741 COND_JUMP
11742 */
11743 cmp_fragP = i386_next_non_empty_frag (next_fragP);
11744 pad_fragP = i386_next_non_empty_frag (cmp_fragP);
79d72f45 11745 branch_fragP = i386_next_fusible_jcc_frag (next_fragP, pad_fragP);
e379e5f3
L
11746 if (branch_fragP)
11747 {
11748 /* The BRANCH_PADDING frag is merged with the
11749 FUSED_JCC_PADDING frag. */
11750 next_fragP->tc_frag_data.u.branch_fragP = branch_fragP;
11751 /* CMP like instruction size. */
11752 next_fragP->tc_frag_data.cmp_size = cmp_fragP->fr_fix;
11753 frag_wane (pad_fragP);
11754 /* Skip to branch_fragP. */
11755 next_fragP = branch_fragP;
11756 }
11757 else if (next_fragP->tc_frag_data.max_prefix_length)
11758 {
11759 /* Turn FUSED_JCC_PADDING into BRANCH_PREFIX if it isn't
11760 a fused jcc. */
11761 next_fragP->fr_subtype
11762 = ENCODE_RELAX_STATE (BRANCH_PREFIX, 0);
11763 next_fragP->tc_frag_data.max_bytes
11764 = next_fragP->tc_frag_data.max_prefix_length;
11765 /* This will be updated in the BRANCH_PREFIX scan. */
11766 next_fragP->tc_frag_data.max_prefix_length = 0;
11767 }
11768 else
11769 frag_wane (next_fragP);
11770 break;
11771 }
11772 }
11773
11774 /* Stop if there is no BRANCH_PREFIX. */
11775 if (!align_branch_prefix_size)
11776 return;
11777
11778 /* Scan for BRANCH_PREFIX. */
11779 for (; fragP != NULL; fragP = fragP->fr_next)
11780 {
11781 if (fragP->fr_type != rs_machine_dependent
11782 || (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
11783 != BRANCH_PREFIX))
11784 continue;
11785
11786 /* Count all BRANCH_PREFIX frags before BRANCH_PADDING and
11787 COND_JUMP_PREFIX. */
11788 max_prefix_length = 0;
11789 for (next_fragP = fragP;
11790 next_fragP != NULL;
11791 next_fragP = next_fragP->fr_next)
11792 {
11793 if (next_fragP->fr_type == rs_fill)
11794 /* Skip rs_fill frags. */
11795 continue;
11796 else if (next_fragP->fr_type != rs_machine_dependent)
11797 /* Stop for all other frags. */
11798 break;
11799
11800 /* rs_machine_dependent frags. */
11801 if (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11802 == BRANCH_PREFIX)
11803 {
11804 /* Count BRANCH_PREFIX frags. */
11805 if (max_prefix_length >= MAX_FUSED_JCC_PADDING_SIZE)
11806 {
11807 max_prefix_length = MAX_FUSED_JCC_PADDING_SIZE;
11808 frag_wane (next_fragP);
11809 }
11810 else
11811 max_prefix_length
11812 += next_fragP->tc_frag_data.max_bytes;
11813 }
11814 else if ((TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11815 == BRANCH_PADDING)
11816 || (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11817 == FUSED_JCC_PADDING))
11818 {
11819 /* Stop at BRANCH_PADDING and FUSED_JCC_PADDING. */
11820 fragP->tc_frag_data.u.padding_fragP = next_fragP;
11821 break;
11822 }
11823 else
11824 /* Stop for other rs_machine_dependent frags. */
11825 break;
11826 }
11827
11828 fragP->tc_frag_data.max_prefix_length = max_prefix_length;
11829
11830 /* Skip to the next frag. */
11831 fragP = next_fragP;
11832 }
11833}
11834
11835/* Compute padding size for
11836
11837 FUSED_JCC_PADDING
11838 CMP like instruction
11839 BRANCH_PADDING
11840 COND_JUMP/UNCOND_JUMP
11841
11842 or
11843
11844 BRANCH_PADDING
11845 COND_JUMP/UNCOND_JUMP
11846 */
11847
11848static int
11849i386_branch_padding_size (fragS *fragP, offsetT address)
11850{
11851 unsigned int offset, size, padding_size;
11852 fragS *branch_fragP = fragP->tc_frag_data.u.branch_fragP;
11853
11854 /* The start address of the BRANCH_PADDING or FUSED_JCC_PADDING frag. */
11855 if (!address)
11856 address = fragP->fr_address;
11857 address += fragP->fr_fix;
11858
11859 /* CMP like instrunction size. */
11860 size = fragP->tc_frag_data.cmp_size;
11861
11862 /* The base size of the branch frag. */
11863 size += branch_fragP->fr_fix;
11864
11865 /* Add opcode and displacement bytes for the rs_machine_dependent
11866 branch frag. */
11867 if (branch_fragP->fr_type == rs_machine_dependent)
11868 size += md_relax_table[branch_fragP->fr_subtype].rlx_length;
11869
11870 /* Check if branch is within boundary and doesn't end at the last
11871 byte. */
11872 offset = address & ((1U << align_branch_power) - 1);
11873 if ((offset + size) >= (1U << align_branch_power))
11874 /* Padding needed to avoid crossing boundary. */
11875 padding_size = (1U << align_branch_power) - offset;
11876 else
11877 /* No padding needed. */
11878 padding_size = 0;
11879
11880 /* The return value may be saved in tc_frag_data.length which is
11881 unsigned byte. */
11882 if (!fits_in_unsigned_byte (padding_size))
11883 abort ();
11884
11885 return padding_size;
11886}
11887
11888/* i386_generic_table_relax_frag()
11889
11890 Handle BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags to
11891 grow/shrink padding to align branch frags. Hand others to
11892 relax_frag(). */
11893
11894long
11895i386_generic_table_relax_frag (segT segment, fragS *fragP, long stretch)
11896{
11897 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11898 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
11899 {
11900 long padding_size = i386_branch_padding_size (fragP, 0);
11901 long grow = padding_size - fragP->tc_frag_data.length;
11902
11903 /* When the BRANCH_PREFIX frag is used, the computed address
11904 must match the actual address and there should be no padding. */
11905 if (fragP->tc_frag_data.padding_address
11906 && (fragP->tc_frag_data.padding_address != fragP->fr_address
11907 || padding_size))
11908 abort ();
11909
11910 /* Update the padding size. */
11911 if (grow)
11912 fragP->tc_frag_data.length = padding_size;
11913
11914 return grow;
11915 }
11916 else if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11917 {
11918 fragS *padding_fragP, *next_fragP;
11919 long padding_size, left_size, last_size;
11920
11921 padding_fragP = fragP->tc_frag_data.u.padding_fragP;
11922 if (!padding_fragP)
11923 /* Use the padding set by the leading BRANCH_PREFIX frag. */
11924 return (fragP->tc_frag_data.length
11925 - fragP->tc_frag_data.last_length);
11926
11927 /* Compute the relative address of the padding frag in the very
11928 first time where the BRANCH_PREFIX frag sizes are zero. */
11929 if (!fragP->tc_frag_data.padding_address)
11930 fragP->tc_frag_data.padding_address
11931 = padding_fragP->fr_address - (fragP->fr_address - stretch);
11932
11933 /* First update the last length from the previous interation. */
11934 left_size = fragP->tc_frag_data.prefix_length;
11935 for (next_fragP = fragP;
11936 next_fragP != padding_fragP;
11937 next_fragP = next_fragP->fr_next)
11938 if (next_fragP->fr_type == rs_machine_dependent
11939 && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11940 == BRANCH_PREFIX))
11941 {
11942 if (left_size)
11943 {
11944 int max = next_fragP->tc_frag_data.max_bytes;
11945 if (max)
11946 {
11947 int size;
11948 if (max > left_size)
11949 size = left_size;
11950 else
11951 size = max;
11952 left_size -= size;
11953 next_fragP->tc_frag_data.last_length = size;
11954 }
11955 }
11956 else
11957 next_fragP->tc_frag_data.last_length = 0;
11958 }
11959
11960 /* Check the padding size for the padding frag. */
11961 padding_size = i386_branch_padding_size
11962 (padding_fragP, (fragP->fr_address
11963 + fragP->tc_frag_data.padding_address));
11964
11965 last_size = fragP->tc_frag_data.prefix_length;
11966 /* Check if there is change from the last interation. */
11967 if (padding_size == last_size)
11968 {
11969 /* Update the expected address of the padding frag. */
11970 padding_fragP->tc_frag_data.padding_address
11971 = (fragP->fr_address + padding_size
11972 + fragP->tc_frag_data.padding_address);
11973 return 0;
11974 }
11975
11976 if (padding_size > fragP->tc_frag_data.max_prefix_length)
11977 {
11978 /* No padding if there is no sufficient room. Clear the
11979 expected address of the padding frag. */
11980 padding_fragP->tc_frag_data.padding_address = 0;
11981 padding_size = 0;
11982 }
11983 else
11984 /* Store the expected address of the padding frag. */
11985 padding_fragP->tc_frag_data.padding_address
11986 = (fragP->fr_address + padding_size
11987 + fragP->tc_frag_data.padding_address);
11988
11989 fragP->tc_frag_data.prefix_length = padding_size;
11990
11991 /* Update the length for the current interation. */
11992 left_size = padding_size;
11993 for (next_fragP = fragP;
11994 next_fragP != padding_fragP;
11995 next_fragP = next_fragP->fr_next)
11996 if (next_fragP->fr_type == rs_machine_dependent
11997 && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11998 == BRANCH_PREFIX))
11999 {
12000 if (left_size)
12001 {
12002 int max = next_fragP->tc_frag_data.max_bytes;
12003 if (max)
12004 {
12005 int size;
12006 if (max > left_size)
12007 size = left_size;
12008 else
12009 size = max;
12010 left_size -= size;
12011 next_fragP->tc_frag_data.length = size;
12012 }
12013 }
12014 else
12015 next_fragP->tc_frag_data.length = 0;
12016 }
12017
12018 return (fragP->tc_frag_data.length
12019 - fragP->tc_frag_data.last_length);
12020 }
12021 return relax_frag (segment, fragP, stretch);
12022}
12023
ee7fcc42
AM
12024/* md_estimate_size_before_relax()
12025
12026 Called just before relax() for rs_machine_dependent frags. The x86
12027 assembler uses these frags to handle variable size jump
12028 instructions.
12029
12030 Any symbol that is now undefined will not become defined.
12031 Return the correct fr_subtype in the frag.
12032 Return the initial "guess for variable size of frag" to caller.
12033 The guess is actually the growth beyond the fixed part. Whatever
12034 we do to grow the fixed or variable part contributes to our
12035 returned value. */
12036
252b5132 12037int
7016a5d5 12038md_estimate_size_before_relax (fragS *fragP, segT segment)
252b5132 12039{
e379e5f3
L
12040 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
12041 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX
12042 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
12043 {
12044 i386_classify_machine_dependent_frag (fragP);
12045 return fragP->tc_frag_data.length;
12046 }
12047
252b5132 12048 /* We've already got fragP->fr_subtype right; all we have to do is
b98ef147
AM
12049 check for un-relaxable symbols. On an ELF system, we can't relax
12050 an externally visible symbol, because it may be overridden by a
12051 shared library. */
12052 if (S_GET_SEGMENT (fragP->fr_symbol) != segment
6d249963 12053#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 12054 || (IS_ELF
8dcea932
L
12055 && !elf_symbol_resolved_in_segment_p (fragP->fr_symbol,
12056 fragP->fr_var))
fbeb56a4
DK
12057#endif
12058#if defined (OBJ_COFF) && defined (TE_PE)
7ab9ffdd 12059 || (OUTPUT_FLAVOR == bfd_target_coff_flavour
fbeb56a4 12060 && S_IS_WEAK (fragP->fr_symbol))
b98ef147
AM
12061#endif
12062 )
252b5132 12063 {
b98ef147
AM
12064 /* Symbol is undefined in this segment, or we need to keep a
12065 reloc so that weak symbols can be overridden. */
12066 int size = (fragP->fr_subtype & CODE16) ? 2 : 4;
f86103b7 12067 enum bfd_reloc_code_real reloc_type;
ee7fcc42
AM
12068 unsigned char *opcode;
12069 int old_fr_fix;
f6af82bd 12070
ee7fcc42 12071 if (fragP->fr_var != NO_RELOC)
1e9cc1c2 12072 reloc_type = (enum bfd_reloc_code_real) fragP->fr_var;
b98ef147 12073 else if (size == 2)
f6af82bd 12074 reloc_type = BFD_RELOC_16_PCREL;
bd7ab16b
L
12075#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
12076 else if (need_plt32_p (fragP->fr_symbol))
12077 reloc_type = BFD_RELOC_X86_64_PLT32;
12078#endif
f6af82bd
AM
12079 else
12080 reloc_type = BFD_RELOC_32_PCREL;
252b5132 12081
ee7fcc42
AM
12082 old_fr_fix = fragP->fr_fix;
12083 opcode = (unsigned char *) fragP->fr_opcode;
12084
fddf5b5b 12085 switch (TYPE_FROM_RELAX_STATE (fragP->fr_subtype))
252b5132 12086 {
fddf5b5b
AM
12087 case UNCOND_JUMP:
12088 /* Make jmp (0xeb) a (d)word displacement jump. */
47926f60 12089 opcode[0] = 0xe9;
252b5132 12090 fragP->fr_fix += size;
062cd5e7
AS
12091 fix_new (fragP, old_fr_fix, size,
12092 fragP->fr_symbol,
12093 fragP->fr_offset, 1,
12094 reloc_type);
252b5132
RH
12095 break;
12096
fddf5b5b 12097 case COND_JUMP86:
412167cb
AM
12098 if (size == 2
12099 && (!no_cond_jump_promotion || fragP->fr_var != NO_RELOC))
fddf5b5b
AM
12100 {
12101 /* Negate the condition, and branch past an
12102 unconditional jump. */
12103 opcode[0] ^= 1;
12104 opcode[1] = 3;
12105 /* Insert an unconditional jump. */
12106 opcode[2] = 0xe9;
12107 /* We added two extra opcode bytes, and have a two byte
12108 offset. */
12109 fragP->fr_fix += 2 + 2;
062cd5e7
AS
12110 fix_new (fragP, old_fr_fix + 2, 2,
12111 fragP->fr_symbol,
12112 fragP->fr_offset, 1,
12113 reloc_type);
fddf5b5b
AM
12114 break;
12115 }
12116 /* Fall through. */
12117
12118 case COND_JUMP:
412167cb
AM
12119 if (no_cond_jump_promotion && fragP->fr_var == NO_RELOC)
12120 {
3e02c1cc
AM
12121 fixS *fixP;
12122
412167cb 12123 fragP->fr_fix += 1;
3e02c1cc
AM
12124 fixP = fix_new (fragP, old_fr_fix, 1,
12125 fragP->fr_symbol,
12126 fragP->fr_offset, 1,
12127 BFD_RELOC_8_PCREL);
12128 fixP->fx_signed = 1;
412167cb
AM
12129 break;
12130 }
93c2a809 12131
24eab124 12132 /* This changes the byte-displacement jump 0x7N
fddf5b5b 12133 to the (d)word-displacement jump 0x0f,0x8N. */
252b5132 12134 opcode[1] = opcode[0] + 0x10;
f6af82bd 12135 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
47926f60
KH
12136 /* We've added an opcode byte. */
12137 fragP->fr_fix += 1 + size;
062cd5e7
AS
12138 fix_new (fragP, old_fr_fix + 1, size,
12139 fragP->fr_symbol,
12140 fragP->fr_offset, 1,
12141 reloc_type);
252b5132 12142 break;
fddf5b5b
AM
12143
12144 default:
12145 BAD_CASE (fragP->fr_subtype);
12146 break;
252b5132
RH
12147 }
12148 frag_wane (fragP);
ee7fcc42 12149 return fragP->fr_fix - old_fr_fix;
252b5132 12150 }
93c2a809 12151
93c2a809
AM
12152 /* Guess size depending on current relax state. Initially the relax
12153 state will correspond to a short jump and we return 1, because
12154 the variable part of the frag (the branch offset) is one byte
12155 long. However, we can relax a section more than once and in that
12156 case we must either set fr_subtype back to the unrelaxed state,
12157 or return the value for the appropriate branch. */
12158 return md_relax_table[fragP->fr_subtype].rlx_length;
ee7fcc42
AM
12159}
12160
47926f60
KH
12161/* Called after relax() is finished.
12162
12163 In: Address of frag.
12164 fr_type == rs_machine_dependent.
12165 fr_subtype is what the address relaxed to.
12166
12167 Out: Any fixSs and constants are set up.
12168 Caller will turn frag into a ".space 0". */
12169
252b5132 12170void
7016a5d5
TG
12171md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec ATTRIBUTE_UNUSED,
12172 fragS *fragP)
252b5132 12173{
29b0f896 12174 unsigned char *opcode;
252b5132 12175 unsigned char *where_to_put_displacement = NULL;
847f7ad4
AM
12176 offsetT target_address;
12177 offsetT opcode_address;
252b5132 12178 unsigned int extension = 0;
847f7ad4 12179 offsetT displacement_from_opcode_start;
252b5132 12180
e379e5f3
L
12181 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
12182 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING
12183 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
12184 {
12185 /* Generate nop padding. */
12186 unsigned int size = fragP->tc_frag_data.length;
12187 if (size)
12188 {
12189 if (size > fragP->tc_frag_data.max_bytes)
12190 abort ();
12191
12192 if (flag_debug)
12193 {
12194 const char *msg;
12195 const char *branch = "branch";
12196 const char *prefix = "";
12197 fragS *padding_fragP;
12198 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
12199 == BRANCH_PREFIX)
12200 {
12201 padding_fragP = fragP->tc_frag_data.u.padding_fragP;
12202 switch (fragP->tc_frag_data.default_prefix)
12203 {
12204 default:
12205 abort ();
12206 break;
12207 case CS_PREFIX_OPCODE:
12208 prefix = " cs";
12209 break;
12210 case DS_PREFIX_OPCODE:
12211 prefix = " ds";
12212 break;
12213 case ES_PREFIX_OPCODE:
12214 prefix = " es";
12215 break;
12216 case FS_PREFIX_OPCODE:
12217 prefix = " fs";
12218 break;
12219 case GS_PREFIX_OPCODE:
12220 prefix = " gs";
12221 break;
12222 case SS_PREFIX_OPCODE:
12223 prefix = " ss";
12224 break;
12225 }
12226 if (padding_fragP)
12227 msg = _("%s:%u: add %d%s at 0x%llx to align "
12228 "%s within %d-byte boundary\n");
12229 else
12230 msg = _("%s:%u: add additional %d%s at 0x%llx to "
12231 "align %s within %d-byte boundary\n");
12232 }
12233 else
12234 {
12235 padding_fragP = fragP;
12236 msg = _("%s:%u: add %d%s-byte nop at 0x%llx to align "
12237 "%s within %d-byte boundary\n");
12238 }
12239
12240 if (padding_fragP)
12241 switch (padding_fragP->tc_frag_data.branch_type)
12242 {
12243 case align_branch_jcc:
12244 branch = "jcc";
12245 break;
12246 case align_branch_fused:
12247 branch = "fused jcc";
12248 break;
12249 case align_branch_jmp:
12250 branch = "jmp";
12251 break;
12252 case align_branch_call:
12253 branch = "call";
12254 break;
12255 case align_branch_indirect:
12256 branch = "indiret branch";
12257 break;
12258 case align_branch_ret:
12259 branch = "ret";
12260 break;
12261 default:
12262 break;
12263 }
12264
12265 fprintf (stdout, msg,
12266 fragP->fr_file, fragP->fr_line, size, prefix,
12267 (long long) fragP->fr_address, branch,
12268 1 << align_branch_power);
12269 }
12270 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
12271 memset (fragP->fr_opcode,
12272 fragP->tc_frag_data.default_prefix, size);
12273 else
12274 i386_generate_nops (fragP, (char *) fragP->fr_opcode,
12275 size, 0);
12276 fragP->fr_fix += size;
12277 }
12278 return;
12279 }
12280
252b5132
RH
12281 opcode = (unsigned char *) fragP->fr_opcode;
12282
47926f60 12283 /* Address we want to reach in file space. */
252b5132 12284 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
252b5132 12285
47926f60 12286 /* Address opcode resides at in file space. */
252b5132
RH
12287 opcode_address = fragP->fr_address + fragP->fr_fix;
12288
47926f60 12289 /* Displacement from opcode start to fill into instruction. */
252b5132
RH
12290 displacement_from_opcode_start = target_address - opcode_address;
12291
fddf5b5b 12292 if ((fragP->fr_subtype & BIG) == 0)
252b5132 12293 {
47926f60
KH
12294 /* Don't have to change opcode. */
12295 extension = 1; /* 1 opcode + 1 displacement */
252b5132 12296 where_to_put_displacement = &opcode[1];
fddf5b5b
AM
12297 }
12298 else
12299 {
12300 if (no_cond_jump_promotion
12301 && TYPE_FROM_RELAX_STATE (fragP->fr_subtype) != UNCOND_JUMP)
4eed87de
AM
12302 as_warn_where (fragP->fr_file, fragP->fr_line,
12303 _("long jump required"));
252b5132 12304
fddf5b5b
AM
12305 switch (fragP->fr_subtype)
12306 {
12307 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG):
12308 extension = 4; /* 1 opcode + 4 displacement */
12309 opcode[0] = 0xe9;
12310 where_to_put_displacement = &opcode[1];
12311 break;
252b5132 12312
fddf5b5b
AM
12313 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16):
12314 extension = 2; /* 1 opcode + 2 displacement */
12315 opcode[0] = 0xe9;
12316 where_to_put_displacement = &opcode[1];
12317 break;
252b5132 12318
fddf5b5b
AM
12319 case ENCODE_RELAX_STATE (COND_JUMP, BIG):
12320 case ENCODE_RELAX_STATE (COND_JUMP86, BIG):
12321 extension = 5; /* 2 opcode + 4 displacement */
12322 opcode[1] = opcode[0] + 0x10;
12323 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
12324 where_to_put_displacement = &opcode[2];
12325 break;
252b5132 12326
fddf5b5b
AM
12327 case ENCODE_RELAX_STATE (COND_JUMP, BIG16):
12328 extension = 3; /* 2 opcode + 2 displacement */
12329 opcode[1] = opcode[0] + 0x10;
12330 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
12331 where_to_put_displacement = &opcode[2];
12332 break;
252b5132 12333
fddf5b5b
AM
12334 case ENCODE_RELAX_STATE (COND_JUMP86, BIG16):
12335 extension = 4;
12336 opcode[0] ^= 1;
12337 opcode[1] = 3;
12338 opcode[2] = 0xe9;
12339 where_to_put_displacement = &opcode[3];
12340 break;
12341
12342 default:
12343 BAD_CASE (fragP->fr_subtype);
12344 break;
12345 }
252b5132 12346 }
fddf5b5b 12347
7b81dfbb
AJ
12348 /* If size if less then four we are sure that the operand fits,
12349 but if it's 4, then it could be that the displacement is larger
12350 then -/+ 2GB. */
12351 if (DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype) == 4
12352 && object_64bit
12353 && ((addressT) (displacement_from_opcode_start - extension
4eed87de
AM
12354 + ((addressT) 1 << 31))
12355 > (((addressT) 2 << 31) - 1)))
7b81dfbb
AJ
12356 {
12357 as_bad_where (fragP->fr_file, fragP->fr_line,
12358 _("jump target out of range"));
12359 /* Make us emit 0. */
12360 displacement_from_opcode_start = extension;
12361 }
47926f60 12362 /* Now put displacement after opcode. */
252b5132
RH
12363 md_number_to_chars ((char *) where_to_put_displacement,
12364 (valueT) (displacement_from_opcode_start - extension),
fddf5b5b 12365 DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
252b5132
RH
12366 fragP->fr_fix += extension;
12367}
12368\f
7016a5d5 12369/* Apply a fixup (fixP) to segment data, once it has been determined
252b5132
RH
12370 by our caller that we have all the info we need to fix it up.
12371
7016a5d5
TG
12372 Parameter valP is the pointer to the value of the bits.
12373
252b5132
RH
12374 On the 386, immediates, displacements, and data pointers are all in
12375 the same (little-endian) format, so we don't need to care about which
12376 we are handling. */
12377
94f592af 12378void
7016a5d5 12379md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 12380{
94f592af 12381 char *p = fixP->fx_where + fixP->fx_frag->fr_literal;
c6682705 12382 valueT value = *valP;
252b5132 12383
f86103b7 12384#if !defined (TE_Mach)
93382f6d
AM
12385 if (fixP->fx_pcrel)
12386 {
12387 switch (fixP->fx_r_type)
12388 {
5865bb77
ILT
12389 default:
12390 break;
12391
d6ab8113
JB
12392 case BFD_RELOC_64:
12393 fixP->fx_r_type = BFD_RELOC_64_PCREL;
12394 break;
93382f6d 12395 case BFD_RELOC_32:
ae8887b5 12396 case BFD_RELOC_X86_64_32S:
93382f6d
AM
12397 fixP->fx_r_type = BFD_RELOC_32_PCREL;
12398 break;
12399 case BFD_RELOC_16:
12400 fixP->fx_r_type = BFD_RELOC_16_PCREL;
12401 break;
12402 case BFD_RELOC_8:
12403 fixP->fx_r_type = BFD_RELOC_8_PCREL;
12404 break;
12405 }
12406 }
252b5132 12407
a161fe53 12408 if (fixP->fx_addsy != NULL
31312f95 12409 && (fixP->fx_r_type == BFD_RELOC_32_PCREL
d6ab8113 12410 || fixP->fx_r_type == BFD_RELOC_64_PCREL
31312f95 12411 || fixP->fx_r_type == BFD_RELOC_16_PCREL
d258b828 12412 || fixP->fx_r_type == BFD_RELOC_8_PCREL)
31312f95 12413 && !use_rela_relocations)
252b5132 12414 {
31312f95
AM
12415 /* This is a hack. There should be a better way to handle this.
12416 This covers for the fact that bfd_install_relocation will
12417 subtract the current location (for partial_inplace, PC relative
12418 relocations); see more below. */
252b5132 12419#ifndef OBJ_AOUT
718ddfc0 12420 if (IS_ELF
252b5132
RH
12421#ifdef TE_PE
12422 || OUTPUT_FLAVOR == bfd_target_coff_flavour
12423#endif
12424 )
12425 value += fixP->fx_where + fixP->fx_frag->fr_address;
12426#endif
12427#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 12428 if (IS_ELF)
252b5132 12429 {
6539b54b 12430 segT sym_seg = S_GET_SEGMENT (fixP->fx_addsy);
2f66722d 12431
6539b54b 12432 if ((sym_seg == seg
2f66722d 12433 || (symbol_section_p (fixP->fx_addsy)
6539b54b 12434 && sym_seg != absolute_section))
af65af87 12435 && !generic_force_reloc (fixP))
2f66722d
AM
12436 {
12437 /* Yes, we add the values in twice. This is because
6539b54b
AM
12438 bfd_install_relocation subtracts them out again. I think
12439 bfd_install_relocation is broken, but I don't dare change
2f66722d
AM
12440 it. FIXME. */
12441 value += fixP->fx_where + fixP->fx_frag->fr_address;
12442 }
252b5132
RH
12443 }
12444#endif
12445#if defined (OBJ_COFF) && defined (TE_PE)
977cdf5a
NC
12446 /* For some reason, the PE format does not store a
12447 section address offset for a PC relative symbol. */
12448 if (S_GET_SEGMENT (fixP->fx_addsy) != seg
7be1c489 12449 || S_IS_WEAK (fixP->fx_addsy))
252b5132
RH
12450 value += md_pcrel_from (fixP);
12451#endif
12452 }
fbeb56a4 12453#if defined (OBJ_COFF) && defined (TE_PE)
f01c1a09
NC
12454 if (fixP->fx_addsy != NULL
12455 && S_IS_WEAK (fixP->fx_addsy)
12456 /* PR 16858: Do not modify weak function references. */
12457 && ! fixP->fx_pcrel)
fbeb56a4 12458 {
296a8689
NC
12459#if !defined (TE_PEP)
12460 /* For x86 PE weak function symbols are neither PC-relative
12461 nor do they set S_IS_FUNCTION. So the only reliable way
12462 to detect them is to check the flags of their containing
12463 section. */
12464 if (S_GET_SEGMENT (fixP->fx_addsy) != NULL
12465 && S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_CODE)
12466 ;
12467 else
12468#endif
fbeb56a4
DK
12469 value -= S_GET_VALUE (fixP->fx_addsy);
12470 }
12471#endif
252b5132
RH
12472
12473 /* Fix a few things - the dynamic linker expects certain values here,
0234cb7c 12474 and we must not disappoint it. */
252b5132 12475#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 12476 if (IS_ELF && fixP->fx_addsy)
47926f60
KH
12477 switch (fixP->fx_r_type)
12478 {
12479 case BFD_RELOC_386_PLT32:
3e73aa7c 12480 case BFD_RELOC_X86_64_PLT32:
b9519cfe
L
12481 /* Make the jump instruction point to the address of the operand.
12482 At runtime we merely add the offset to the actual PLT entry.
12483 NB: Subtract the offset size only for jump instructions. */
12484 if (fixP->fx_pcrel)
12485 value = -4;
47926f60 12486 break;
31312f95 12487
13ae64f3
JJ
12488 case BFD_RELOC_386_TLS_GD:
12489 case BFD_RELOC_386_TLS_LDM:
13ae64f3 12490 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
12491 case BFD_RELOC_386_TLS_IE:
12492 case BFD_RELOC_386_TLS_GOTIE:
67a4f2b7 12493 case BFD_RELOC_386_TLS_GOTDESC:
bffbf940
JJ
12494 case BFD_RELOC_X86_64_TLSGD:
12495 case BFD_RELOC_X86_64_TLSLD:
12496 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7 12497 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
00f7efb6
JJ
12498 value = 0; /* Fully resolved at runtime. No addend. */
12499 /* Fallthrough */
12500 case BFD_RELOC_386_TLS_LE:
12501 case BFD_RELOC_386_TLS_LDO_32:
12502 case BFD_RELOC_386_TLS_LE_32:
12503 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 12504 case BFD_RELOC_X86_64_DTPOFF64:
00f7efb6 12505 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113 12506 case BFD_RELOC_X86_64_TPOFF64:
00f7efb6
JJ
12507 S_SET_THREAD_LOCAL (fixP->fx_addsy);
12508 break;
12509
67a4f2b7
AO
12510 case BFD_RELOC_386_TLS_DESC_CALL:
12511 case BFD_RELOC_X86_64_TLSDESC_CALL:
12512 value = 0; /* Fully resolved at runtime. No addend. */
12513 S_SET_THREAD_LOCAL (fixP->fx_addsy);
12514 fixP->fx_done = 0;
12515 return;
12516
47926f60
KH
12517 case BFD_RELOC_VTABLE_INHERIT:
12518 case BFD_RELOC_VTABLE_ENTRY:
12519 fixP->fx_done = 0;
94f592af 12520 return;
47926f60
KH
12521
12522 default:
12523 break;
12524 }
12525#endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) */
c6682705 12526 *valP = value;
f86103b7 12527#endif /* !defined (TE_Mach) */
3e73aa7c 12528
3e73aa7c 12529 /* Are we finished with this relocation now? */
c6682705 12530 if (fixP->fx_addsy == NULL)
3e73aa7c 12531 fixP->fx_done = 1;
fbeb56a4
DK
12532#if defined (OBJ_COFF) && defined (TE_PE)
12533 else if (fixP->fx_addsy != NULL && S_IS_WEAK (fixP->fx_addsy))
12534 {
12535 fixP->fx_done = 0;
12536 /* Remember value for tc_gen_reloc. */
12537 fixP->fx_addnumber = value;
12538 /* Clear out the frag for now. */
12539 value = 0;
12540 }
12541#endif
3e73aa7c
JH
12542 else if (use_rela_relocations)
12543 {
12544 fixP->fx_no_overflow = 1;
062cd5e7
AS
12545 /* Remember value for tc_gen_reloc. */
12546 fixP->fx_addnumber = value;
3e73aa7c
JH
12547 value = 0;
12548 }
f86103b7 12549
94f592af 12550 md_number_to_chars (p, value, fixP->fx_size);
252b5132 12551}
252b5132 12552\f
6d4af3c2 12553const char *
499ac353 12554md_atof (int type, char *litP, int *sizeP)
252b5132 12555{
499ac353
NC
12556 /* This outputs the LITTLENUMs in REVERSE order;
12557 in accord with the bigendian 386. */
12558 return ieee_md_atof (type, litP, sizeP, FALSE);
252b5132
RH
12559}
12560\f
2d545b82 12561static char output_invalid_buf[sizeof (unsigned char) * 2 + 6];
252b5132 12562
252b5132 12563static char *
e3bb37b5 12564output_invalid (int c)
252b5132 12565{
3882b010 12566 if (ISPRINT (c))
f9f21a03
L
12567 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
12568 "'%c'", c);
252b5132 12569 else
f9f21a03 12570 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
2d545b82 12571 "(0x%x)", (unsigned char) c);
252b5132
RH
12572 return output_invalid_buf;
12573}
12574
8a6fb3f9
JB
12575/* Verify that @r can be used in the current context. */
12576
12577static bfd_boolean check_register (const reg_entry *r)
12578{
12579 if (allow_pseudo_reg)
12580 return TRUE;
12581
12582 if (operand_type_all_zero (&r->reg_type))
12583 return FALSE;
12584
12585 if ((r->reg_type.bitfield.dword
12586 || (r->reg_type.bitfield.class == SReg && r->reg_num > 3)
12587 || r->reg_type.bitfield.class == RegCR
22e00a3f 12588 || r->reg_type.bitfield.class == RegDR)
8a6fb3f9
JB
12589 && !cpu_arch_flags.bitfield.cpui386)
12590 return FALSE;
12591
22e00a3f
JB
12592 if (r->reg_type.bitfield.class == RegTR
12593 && (flag_code == CODE_64BIT
12594 || !cpu_arch_flags.bitfield.cpui386
12595 || cpu_arch_isa_flags.bitfield.cpui586
12596 || cpu_arch_isa_flags.bitfield.cpui686))
12597 return FALSE;
12598
8a6fb3f9
JB
12599 if (r->reg_type.bitfield.class == RegMMX && !cpu_arch_flags.bitfield.cpummx)
12600 return FALSE;
12601
12602 if (!cpu_arch_flags.bitfield.cpuavx512f)
12603 {
12604 if (r->reg_type.bitfield.zmmword
12605 || r->reg_type.bitfield.class == RegMask)
12606 return FALSE;
12607
12608 if (!cpu_arch_flags.bitfield.cpuavx)
12609 {
12610 if (r->reg_type.bitfield.ymmword)
12611 return FALSE;
12612
12613 if (!cpu_arch_flags.bitfield.cpusse && r->reg_type.bitfield.xmmword)
12614 return FALSE;
12615 }
12616 }
12617
260cd341
LC
12618 if (r->reg_type.bitfield.tmmword
12619 && (!cpu_arch_flags.bitfield.cpuamx_tile
12620 || flag_code != CODE_64BIT))
12621 return FALSE;
12622
8a6fb3f9
JB
12623 if (r->reg_type.bitfield.class == RegBND && !cpu_arch_flags.bitfield.cpumpx)
12624 return FALSE;
12625
12626 /* Don't allow fake index register unless allow_index_reg isn't 0. */
12627 if (!allow_index_reg && r->reg_num == RegIZ)
12628 return FALSE;
12629
12630 /* Upper 16 vector registers are only available with VREX in 64bit
12631 mode, and require EVEX encoding. */
12632 if (r->reg_flags & RegVRex)
12633 {
12634 if (!cpu_arch_flags.bitfield.cpuavx512f
12635 || flag_code != CODE_64BIT)
12636 return FALSE;
12637
da4977e0
JB
12638 if (i.vec_encoding == vex_encoding_default)
12639 i.vec_encoding = vex_encoding_evex;
12640 else if (i.vec_encoding != vex_encoding_evex)
12641 i.vec_encoding = vex_encoding_error;
8a6fb3f9
JB
12642 }
12643
12644 if (((r->reg_flags & (RegRex64 | RegRex)) || r->reg_type.bitfield.qword)
12645 && (!cpu_arch_flags.bitfield.cpulm || r->reg_type.bitfield.class != RegCR)
12646 && flag_code != CODE_64BIT)
12647 return FALSE;
12648
12649 if (r->reg_type.bitfield.class == SReg && r->reg_num == RegFlat
12650 && !intel_syntax)
12651 return FALSE;
12652
12653 return TRUE;
12654}
12655
af6bdddf 12656/* REG_STRING starts *before* REGISTER_PREFIX. */
252b5132
RH
12657
12658static const reg_entry *
4d1bb795 12659parse_real_register (char *reg_string, char **end_op)
252b5132 12660{
af6bdddf
AM
12661 char *s = reg_string;
12662 char *p;
252b5132
RH
12663 char reg_name_given[MAX_REG_NAME_SIZE + 1];
12664 const reg_entry *r;
12665
12666 /* Skip possible REGISTER_PREFIX and possible whitespace. */
12667 if (*s == REGISTER_PREFIX)
12668 ++s;
12669
12670 if (is_space_char (*s))
12671 ++s;
12672
12673 p = reg_name_given;
af6bdddf 12674 while ((*p++ = register_chars[(unsigned char) *s]) != '\0')
252b5132
RH
12675 {
12676 if (p >= reg_name_given + MAX_REG_NAME_SIZE)
af6bdddf
AM
12677 return (const reg_entry *) NULL;
12678 s++;
252b5132
RH
12679 }
12680
6588847e
DN
12681 /* For naked regs, make sure that we are not dealing with an identifier.
12682 This prevents confusing an identifier like `eax_var' with register
12683 `eax'. */
12684 if (allow_naked_reg && identifier_chars[(unsigned char) *s])
12685 return (const reg_entry *) NULL;
12686
af6bdddf 12687 *end_op = s;
252b5132 12688
629310ab 12689 r = (const reg_entry *) str_hash_find (reg_hash, reg_name_given);
252b5132 12690
5f47d35b 12691 /* Handle floating point regs, allowing spaces in the (i) part. */
47926f60 12692 if (r == i386_regtab /* %st is first entry of table */)
5f47d35b 12693 {
0e0eea78
JB
12694 if (!cpu_arch_flags.bitfield.cpu8087
12695 && !cpu_arch_flags.bitfield.cpu287
af32b722
JB
12696 && !cpu_arch_flags.bitfield.cpu387
12697 && !allow_pseudo_reg)
0e0eea78
JB
12698 return (const reg_entry *) NULL;
12699
5f47d35b
AM
12700 if (is_space_char (*s))
12701 ++s;
12702 if (*s == '(')
12703 {
af6bdddf 12704 ++s;
5f47d35b
AM
12705 if (is_space_char (*s))
12706 ++s;
12707 if (*s >= '0' && *s <= '7')
12708 {
db557034 12709 int fpr = *s - '0';
af6bdddf 12710 ++s;
5f47d35b
AM
12711 if (is_space_char (*s))
12712 ++s;
12713 if (*s == ')')
12714 {
12715 *end_op = s + 1;
629310ab 12716 r = (const reg_entry *) str_hash_find (reg_hash, "st(0)");
db557034
AM
12717 know (r);
12718 return r + fpr;
5f47d35b 12719 }
5f47d35b 12720 }
47926f60 12721 /* We have "%st(" then garbage. */
5f47d35b
AM
12722 return (const reg_entry *) NULL;
12723 }
12724 }
12725
8a6fb3f9 12726 return r && check_register (r) ? r : NULL;
252b5132 12727}
4d1bb795
JB
12728
12729/* REG_STRING starts *before* REGISTER_PREFIX. */
12730
12731static const reg_entry *
12732parse_register (char *reg_string, char **end_op)
12733{
12734 const reg_entry *r;
12735
12736 if (*reg_string == REGISTER_PREFIX || allow_naked_reg)
12737 r = parse_real_register (reg_string, end_op);
12738 else
12739 r = NULL;
12740 if (!r)
12741 {
12742 char *save = input_line_pointer;
12743 char c;
12744 symbolS *symbolP;
12745
12746 input_line_pointer = reg_string;
d02603dc 12747 c = get_symbol_name (&reg_string);
4d1bb795
JB
12748 symbolP = symbol_find (reg_string);
12749 if (symbolP && S_GET_SEGMENT (symbolP) == reg_section)
12750 {
12751 const expressionS *e = symbol_get_value_expression (symbolP);
12752
0398aac5 12753 know (e->X_op == O_register);
4eed87de 12754 know (e->X_add_number >= 0
c3fe08fa 12755 && (valueT) e->X_add_number < i386_regtab_size);
4d1bb795 12756 r = i386_regtab + e->X_add_number;
8a6fb3f9
JB
12757 if (!check_register (r))
12758 {
12759 as_bad (_("register '%s%s' cannot be used here"),
12760 register_prefix, r->reg_name);
12761 r = &bad_reg;
12762 }
4d1bb795
JB
12763 *end_op = input_line_pointer;
12764 }
12765 *input_line_pointer = c;
12766 input_line_pointer = save;
12767 }
12768 return r;
12769}
12770
12771int
12772i386_parse_name (char *name, expressionS *e, char *nextcharP)
12773{
12774 const reg_entry *r;
12775 char *end = input_line_pointer;
12776
12777 *end = *nextcharP;
12778 r = parse_register (name, &input_line_pointer);
12779 if (r && end <= input_line_pointer)
12780 {
12781 *nextcharP = *input_line_pointer;
12782 *input_line_pointer = 0;
8a6fb3f9
JB
12783 if (r != &bad_reg)
12784 {
12785 e->X_op = O_register;
12786 e->X_add_number = r - i386_regtab;
12787 }
12788 else
12789 e->X_op = O_illegal;
4d1bb795
JB
12790 return 1;
12791 }
12792 input_line_pointer = end;
12793 *end = 0;
ee86248c 12794 return intel_syntax ? i386_intel_parse_name (name, e) : 0;
4d1bb795
JB
12795}
12796
12797void
12798md_operand (expressionS *e)
12799{
ee86248c
JB
12800 char *end;
12801 const reg_entry *r;
4d1bb795 12802
ee86248c
JB
12803 switch (*input_line_pointer)
12804 {
12805 case REGISTER_PREFIX:
12806 r = parse_real_register (input_line_pointer, &end);
4d1bb795
JB
12807 if (r)
12808 {
12809 e->X_op = O_register;
12810 e->X_add_number = r - i386_regtab;
12811 input_line_pointer = end;
12812 }
ee86248c
JB
12813 break;
12814
12815 case '[':
9c2799c2 12816 gas_assert (intel_syntax);
ee86248c
JB
12817 end = input_line_pointer++;
12818 expression (e);
12819 if (*input_line_pointer == ']')
12820 {
12821 ++input_line_pointer;
12822 e->X_op_symbol = make_expr_symbol (e);
12823 e->X_add_symbol = NULL;
12824 e->X_add_number = 0;
12825 e->X_op = O_index;
12826 }
12827 else
12828 {
12829 e->X_op = O_absent;
12830 input_line_pointer = end;
12831 }
12832 break;
4d1bb795
JB
12833 }
12834}
12835
252b5132 12836\f
4cc782b5 12837#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
b6f8c7c4 12838const char *md_shortopts = "kVQ:sqnO::";
252b5132 12839#else
b6f8c7c4 12840const char *md_shortopts = "qnO::";
252b5132 12841#endif
6e0b89ee 12842
3e73aa7c 12843#define OPTION_32 (OPTION_MD_BASE + 0)
b3b91714
AM
12844#define OPTION_64 (OPTION_MD_BASE + 1)
12845#define OPTION_DIVIDE (OPTION_MD_BASE + 2)
9103f4f4
L
12846#define OPTION_MARCH (OPTION_MD_BASE + 3)
12847#define OPTION_MTUNE (OPTION_MD_BASE + 4)
1efbbeb4
L
12848#define OPTION_MMNEMONIC (OPTION_MD_BASE + 5)
12849#define OPTION_MSYNTAX (OPTION_MD_BASE + 6)
12850#define OPTION_MINDEX_REG (OPTION_MD_BASE + 7)
12851#define OPTION_MNAKED_REG (OPTION_MD_BASE + 8)
bd5dea88 12852#define OPTION_MRELAX_RELOCATIONS (OPTION_MD_BASE + 9)
c0f3af97 12853#define OPTION_MSSE2AVX (OPTION_MD_BASE + 10)
daf50ae7 12854#define OPTION_MSSE_CHECK (OPTION_MD_BASE + 11)
7bab8ab5
JB
12855#define OPTION_MOPERAND_CHECK (OPTION_MD_BASE + 12)
12856#define OPTION_MAVXSCALAR (OPTION_MD_BASE + 13)
12857#define OPTION_X32 (OPTION_MD_BASE + 14)
7e8b059b 12858#define OPTION_MADD_BND_PREFIX (OPTION_MD_BASE + 15)
43234a1e
L
12859#define OPTION_MEVEXLIG (OPTION_MD_BASE + 16)
12860#define OPTION_MEVEXWIG (OPTION_MD_BASE + 17)
167ad85b 12861#define OPTION_MBIG_OBJ (OPTION_MD_BASE + 18)
d1982f93 12862#define OPTION_MOMIT_LOCK_PREFIX (OPTION_MD_BASE + 19)
d3d3c6db 12863#define OPTION_MEVEXRCIG (OPTION_MD_BASE + 20)
8dcea932 12864#define OPTION_MSHARED (OPTION_MD_BASE + 21)
5db04b09
L
12865#define OPTION_MAMD64 (OPTION_MD_BASE + 22)
12866#define OPTION_MINTEL64 (OPTION_MD_BASE + 23)
e4e00185 12867#define OPTION_MFENCE_AS_LOCK_ADD (OPTION_MD_BASE + 24)
b4a3a7b4 12868#define OPTION_X86_USED_NOTE (OPTION_MD_BASE + 25)
03751133 12869#define OPTION_MVEXWIG (OPTION_MD_BASE + 26)
e379e5f3
L
12870#define OPTION_MALIGN_BRANCH_BOUNDARY (OPTION_MD_BASE + 27)
12871#define OPTION_MALIGN_BRANCH_PREFIX_SIZE (OPTION_MD_BASE + 28)
12872#define OPTION_MALIGN_BRANCH (OPTION_MD_BASE + 29)
76cf450b 12873#define OPTION_MBRANCHES_WITH_32B_BOUNDARIES (OPTION_MD_BASE + 30)
ae531041
L
12874#define OPTION_MLFENCE_AFTER_LOAD (OPTION_MD_BASE + 31)
12875#define OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH (OPTION_MD_BASE + 32)
12876#define OPTION_MLFENCE_BEFORE_RET (OPTION_MD_BASE + 33)
b3b91714 12877
99ad8390
NC
12878struct option md_longopts[] =
12879{
3e73aa7c 12880 {"32", no_argument, NULL, OPTION_32},
321098a5 12881#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 12882 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c 12883 {"64", no_argument, NULL, OPTION_64},
351f65ca
L
12884#endif
12885#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 12886 {"x32", no_argument, NULL, OPTION_X32},
8dcea932 12887 {"mshared", no_argument, NULL, OPTION_MSHARED},
b4a3a7b4 12888 {"mx86-used-note", required_argument, NULL, OPTION_X86_USED_NOTE},
6e0b89ee 12889#endif
b3b91714 12890 {"divide", no_argument, NULL, OPTION_DIVIDE},
9103f4f4
L
12891 {"march", required_argument, NULL, OPTION_MARCH},
12892 {"mtune", required_argument, NULL, OPTION_MTUNE},
1efbbeb4
L
12893 {"mmnemonic", required_argument, NULL, OPTION_MMNEMONIC},
12894 {"msyntax", required_argument, NULL, OPTION_MSYNTAX},
12895 {"mindex-reg", no_argument, NULL, OPTION_MINDEX_REG},
12896 {"mnaked-reg", no_argument, NULL, OPTION_MNAKED_REG},
c0f3af97 12897 {"msse2avx", no_argument, NULL, OPTION_MSSE2AVX},
daf50ae7 12898 {"msse-check", required_argument, NULL, OPTION_MSSE_CHECK},
7bab8ab5 12899 {"moperand-check", required_argument, NULL, OPTION_MOPERAND_CHECK},
539f890d 12900 {"mavxscalar", required_argument, NULL, OPTION_MAVXSCALAR},
03751133 12901 {"mvexwig", required_argument, NULL, OPTION_MVEXWIG},
7e8b059b 12902 {"madd-bnd-prefix", no_argument, NULL, OPTION_MADD_BND_PREFIX},
43234a1e
L
12903 {"mevexlig", required_argument, NULL, OPTION_MEVEXLIG},
12904 {"mevexwig", required_argument, NULL, OPTION_MEVEXWIG},
167ad85b
TG
12905# if defined (TE_PE) || defined (TE_PEP)
12906 {"mbig-obj", no_argument, NULL, OPTION_MBIG_OBJ},
12907#endif
d1982f93 12908 {"momit-lock-prefix", required_argument, NULL, OPTION_MOMIT_LOCK_PREFIX},
e4e00185 12909 {"mfence-as-lock-add", required_argument, NULL, OPTION_MFENCE_AS_LOCK_ADD},
0cb4071e 12910 {"mrelax-relocations", required_argument, NULL, OPTION_MRELAX_RELOCATIONS},
d3d3c6db 12911 {"mevexrcig", required_argument, NULL, OPTION_MEVEXRCIG},
e379e5f3
L
12912 {"malign-branch-boundary", required_argument, NULL, OPTION_MALIGN_BRANCH_BOUNDARY},
12913 {"malign-branch-prefix-size", required_argument, NULL, OPTION_MALIGN_BRANCH_PREFIX_SIZE},
12914 {"malign-branch", required_argument, NULL, OPTION_MALIGN_BRANCH},
76cf450b 12915 {"mbranches-within-32B-boundaries", no_argument, NULL, OPTION_MBRANCHES_WITH_32B_BOUNDARIES},
ae531041
L
12916 {"mlfence-after-load", required_argument, NULL, OPTION_MLFENCE_AFTER_LOAD},
12917 {"mlfence-before-indirect-branch", required_argument, NULL,
12918 OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH},
12919 {"mlfence-before-ret", required_argument, NULL, OPTION_MLFENCE_BEFORE_RET},
5db04b09
L
12920 {"mamd64", no_argument, NULL, OPTION_MAMD64},
12921 {"mintel64", no_argument, NULL, OPTION_MINTEL64},
252b5132
RH
12922 {NULL, no_argument, NULL, 0}
12923};
12924size_t md_longopts_size = sizeof (md_longopts);
12925
12926int
17b9d67d 12927md_parse_option (int c, const char *arg)
252b5132 12928{
91d6fa6a 12929 unsigned int j;
e379e5f3 12930 char *arch, *next, *saved, *type;
9103f4f4 12931
252b5132
RH
12932 switch (c)
12933 {
12b55ccc
L
12934 case 'n':
12935 optimize_align_code = 0;
12936 break;
12937
a38cf1db
AM
12938 case 'q':
12939 quiet_warnings = 1;
252b5132
RH
12940 break;
12941
12942#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
a38cf1db
AM
12943 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
12944 should be emitted or not. FIXME: Not implemented. */
12945 case 'Q':
d4693039
JB
12946 if ((arg[0] != 'y' && arg[0] != 'n') || arg[1])
12947 return 0;
252b5132
RH
12948 break;
12949
12950 /* -V: SVR4 argument to print version ID. */
12951 case 'V':
12952 print_version_id ();
12953 break;
12954
a38cf1db
AM
12955 /* -k: Ignore for FreeBSD compatibility. */
12956 case 'k':
252b5132 12957 break;
4cc782b5
ILT
12958
12959 case 's':
12960 /* -s: On i386 Solaris, this tells the native assembler to use
29b0f896 12961 .stab instead of .stab.excl. We always use .stab anyhow. */
4cc782b5 12962 break;
8dcea932
L
12963
12964 case OPTION_MSHARED:
12965 shared = 1;
12966 break;
b4a3a7b4
L
12967
12968 case OPTION_X86_USED_NOTE:
12969 if (strcasecmp (arg, "yes") == 0)
12970 x86_used_note = 1;
12971 else if (strcasecmp (arg, "no") == 0)
12972 x86_used_note = 0;
12973 else
12974 as_fatal (_("invalid -mx86-used-note= option: `%s'"), arg);
12975 break;
12976
12977
99ad8390 12978#endif
321098a5 12979#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 12980 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c
JH
12981 case OPTION_64:
12982 {
12983 const char **list, **l;
12984
3e73aa7c
JH
12985 list = bfd_target_list ();
12986 for (l = list; *l != NULL; l++)
08dedd66 12987 if (startswith (*l, "elf64-x86-64")
99ad8390
NC
12988 || strcmp (*l, "coff-x86-64") == 0
12989 || strcmp (*l, "pe-x86-64") == 0
d382c579
TG
12990 || strcmp (*l, "pei-x86-64") == 0
12991 || strcmp (*l, "mach-o-x86-64") == 0)
6e0b89ee
AM
12992 {
12993 default_arch = "x86_64";
12994 break;
12995 }
3e73aa7c 12996 if (*l == NULL)
2b5d6a91 12997 as_fatal (_("no compiled in support for x86_64"));
3e73aa7c
JH
12998 free (list);
12999 }
13000 break;
13001#endif
252b5132 13002
351f65ca 13003#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 13004 case OPTION_X32:
351f65ca
L
13005 if (IS_ELF)
13006 {
13007 const char **list, **l;
13008
13009 list = bfd_target_list ();
13010 for (l = list; *l != NULL; l++)
08dedd66 13011 if (startswith (*l, "elf32-x86-64"))
351f65ca
L
13012 {
13013 default_arch = "x86_64:32";
13014 break;
13015 }
13016 if (*l == NULL)
2b5d6a91 13017 as_fatal (_("no compiled in support for 32bit x86_64"));
351f65ca
L
13018 free (list);
13019 }
13020 else
13021 as_fatal (_("32bit x86_64 is only supported for ELF"));
13022 break;
13023#endif
13024
6e0b89ee
AM
13025 case OPTION_32:
13026 default_arch = "i386";
13027 break;
13028
b3b91714
AM
13029 case OPTION_DIVIDE:
13030#ifdef SVR4_COMMENT_CHARS
13031 {
13032 char *n, *t;
13033 const char *s;
13034
add39d23 13035 n = XNEWVEC (char, strlen (i386_comment_chars) + 1);
b3b91714
AM
13036 t = n;
13037 for (s = i386_comment_chars; *s != '\0'; s++)
13038 if (*s != '/')
13039 *t++ = *s;
13040 *t = '\0';
13041 i386_comment_chars = n;
13042 }
13043#endif
13044 break;
13045
9103f4f4 13046 case OPTION_MARCH:
293f5f65
L
13047 saved = xstrdup (arg);
13048 arch = saved;
13049 /* Allow -march=+nosse. */
13050 if (*arch == '+')
13051 arch++;
6305a203 13052 do
9103f4f4 13053 {
6305a203 13054 if (*arch == '.')
2b5d6a91 13055 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
13056 next = strchr (arch, '+');
13057 if (next)
13058 *next++ = '\0';
91d6fa6a 13059 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 13060 {
91d6fa6a 13061 if (strcmp (arch, cpu_arch [j].name) == 0)
ccc9c027 13062 {
6305a203 13063 /* Processor. */
1ded5609
JB
13064 if (! cpu_arch[j].flags.bitfield.cpui386)
13065 continue;
13066
91d6fa6a 13067 cpu_arch_name = cpu_arch[j].name;
6305a203 13068 cpu_sub_arch_name = NULL;
91d6fa6a
NC
13069 cpu_arch_flags = cpu_arch[j].flags;
13070 cpu_arch_isa = cpu_arch[j].type;
13071 cpu_arch_isa_flags = cpu_arch[j].flags;
6305a203
L
13072 if (!cpu_arch_tune_set)
13073 {
13074 cpu_arch_tune = cpu_arch_isa;
13075 cpu_arch_tune_flags = cpu_arch_isa_flags;
13076 }
13077 break;
13078 }
91d6fa6a
NC
13079 else if (*cpu_arch [j].name == '.'
13080 && strcmp (arch, cpu_arch [j].name + 1) == 0)
6305a203 13081 {
33eaf5de 13082 /* ISA extension. */
6305a203 13083 i386_cpu_flags flags;
309d3373 13084
293f5f65
L
13085 flags = cpu_flags_or (cpu_arch_flags,
13086 cpu_arch[j].flags);
81486035 13087
5b64d091 13088 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
6305a203
L
13089 {
13090 if (cpu_sub_arch_name)
13091 {
13092 char *name = cpu_sub_arch_name;
13093 cpu_sub_arch_name = concat (name,
91d6fa6a 13094 cpu_arch[j].name,
1bf57e9f 13095 (const char *) NULL);
6305a203
L
13096 free (name);
13097 }
13098 else
91d6fa6a 13099 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
6305a203 13100 cpu_arch_flags = flags;
a586129e 13101 cpu_arch_isa_flags = flags;
6305a203 13102 }
0089dace
L
13103 else
13104 cpu_arch_isa_flags
13105 = cpu_flags_or (cpu_arch_isa_flags,
13106 cpu_arch[j].flags);
6305a203 13107 break;
ccc9c027 13108 }
9103f4f4 13109 }
6305a203 13110
293f5f65
L
13111 if (j >= ARRAY_SIZE (cpu_arch))
13112 {
33eaf5de 13113 /* Disable an ISA extension. */
293f5f65
L
13114 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
13115 if (strcmp (arch, cpu_noarch [j].name) == 0)
13116 {
13117 i386_cpu_flags flags;
13118
13119 flags = cpu_flags_and_not (cpu_arch_flags,
13120 cpu_noarch[j].flags);
13121 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
13122 {
13123 if (cpu_sub_arch_name)
13124 {
13125 char *name = cpu_sub_arch_name;
13126 cpu_sub_arch_name = concat (arch,
13127 (const char *) NULL);
13128 free (name);
13129 }
13130 else
13131 cpu_sub_arch_name = xstrdup (arch);
13132 cpu_arch_flags = flags;
13133 cpu_arch_isa_flags = flags;
13134 }
13135 break;
13136 }
13137
13138 if (j >= ARRAY_SIZE (cpu_noarch))
13139 j = ARRAY_SIZE (cpu_arch);
13140 }
13141
91d6fa6a 13142 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 13143 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
13144
13145 arch = next;
9103f4f4 13146 }
293f5f65
L
13147 while (next != NULL);
13148 free (saved);
9103f4f4
L
13149 break;
13150
13151 case OPTION_MTUNE:
13152 if (*arg == '.')
2b5d6a91 13153 as_fatal (_("invalid -mtune= option: `%s'"), arg);
91d6fa6a 13154 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 13155 {
91d6fa6a 13156 if (strcmp (arg, cpu_arch [j].name) == 0)
9103f4f4 13157 {
ccc9c027 13158 cpu_arch_tune_set = 1;
91d6fa6a
NC
13159 cpu_arch_tune = cpu_arch [j].type;
13160 cpu_arch_tune_flags = cpu_arch[j].flags;
9103f4f4
L
13161 break;
13162 }
13163 }
91d6fa6a 13164 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 13165 as_fatal (_("invalid -mtune= option: `%s'"), arg);
9103f4f4
L
13166 break;
13167
1efbbeb4
L
13168 case OPTION_MMNEMONIC:
13169 if (strcasecmp (arg, "att") == 0)
13170 intel_mnemonic = 0;
13171 else if (strcasecmp (arg, "intel") == 0)
13172 intel_mnemonic = 1;
13173 else
2b5d6a91 13174 as_fatal (_("invalid -mmnemonic= option: `%s'"), arg);
1efbbeb4
L
13175 break;
13176
13177 case OPTION_MSYNTAX:
13178 if (strcasecmp (arg, "att") == 0)
13179 intel_syntax = 0;
13180 else if (strcasecmp (arg, "intel") == 0)
13181 intel_syntax = 1;
13182 else
2b5d6a91 13183 as_fatal (_("invalid -msyntax= option: `%s'"), arg);
1efbbeb4
L
13184 break;
13185
13186 case OPTION_MINDEX_REG:
13187 allow_index_reg = 1;
13188 break;
13189
13190 case OPTION_MNAKED_REG:
13191 allow_naked_reg = 1;
13192 break;
13193
c0f3af97
L
13194 case OPTION_MSSE2AVX:
13195 sse2avx = 1;
13196 break;
13197
daf50ae7
L
13198 case OPTION_MSSE_CHECK:
13199 if (strcasecmp (arg, "error") == 0)
7bab8ab5 13200 sse_check = check_error;
daf50ae7 13201 else if (strcasecmp (arg, "warning") == 0)
7bab8ab5 13202 sse_check = check_warning;
daf50ae7 13203 else if (strcasecmp (arg, "none") == 0)
7bab8ab5 13204 sse_check = check_none;
daf50ae7 13205 else
2b5d6a91 13206 as_fatal (_("invalid -msse-check= option: `%s'"), arg);
daf50ae7
L
13207 break;
13208
7bab8ab5
JB
13209 case OPTION_MOPERAND_CHECK:
13210 if (strcasecmp (arg, "error") == 0)
13211 operand_check = check_error;
13212 else if (strcasecmp (arg, "warning") == 0)
13213 operand_check = check_warning;
13214 else if (strcasecmp (arg, "none") == 0)
13215 operand_check = check_none;
13216 else
13217 as_fatal (_("invalid -moperand-check= option: `%s'"), arg);
13218 break;
13219
539f890d
L
13220 case OPTION_MAVXSCALAR:
13221 if (strcasecmp (arg, "128") == 0)
13222 avxscalar = vex128;
13223 else if (strcasecmp (arg, "256") == 0)
13224 avxscalar = vex256;
13225 else
2b5d6a91 13226 as_fatal (_("invalid -mavxscalar= option: `%s'"), arg);
539f890d
L
13227 break;
13228
03751133
L
13229 case OPTION_MVEXWIG:
13230 if (strcmp (arg, "0") == 0)
40c9c8de 13231 vexwig = vexw0;
03751133 13232 else if (strcmp (arg, "1") == 0)
40c9c8de 13233 vexwig = vexw1;
03751133
L
13234 else
13235 as_fatal (_("invalid -mvexwig= option: `%s'"), arg);
13236 break;
13237
7e8b059b
L
13238 case OPTION_MADD_BND_PREFIX:
13239 add_bnd_prefix = 1;
13240 break;
13241
43234a1e
L
13242 case OPTION_MEVEXLIG:
13243 if (strcmp (arg, "128") == 0)
13244 evexlig = evexl128;
13245 else if (strcmp (arg, "256") == 0)
13246 evexlig = evexl256;
13247 else if (strcmp (arg, "512") == 0)
13248 evexlig = evexl512;
13249 else
13250 as_fatal (_("invalid -mevexlig= option: `%s'"), arg);
13251 break;
13252
d3d3c6db
IT
13253 case OPTION_MEVEXRCIG:
13254 if (strcmp (arg, "rne") == 0)
13255 evexrcig = rne;
13256 else if (strcmp (arg, "rd") == 0)
13257 evexrcig = rd;
13258 else if (strcmp (arg, "ru") == 0)
13259 evexrcig = ru;
13260 else if (strcmp (arg, "rz") == 0)
13261 evexrcig = rz;
13262 else
13263 as_fatal (_("invalid -mevexrcig= option: `%s'"), arg);
13264 break;
13265
43234a1e
L
13266 case OPTION_MEVEXWIG:
13267 if (strcmp (arg, "0") == 0)
13268 evexwig = evexw0;
13269 else if (strcmp (arg, "1") == 0)
13270 evexwig = evexw1;
13271 else
13272 as_fatal (_("invalid -mevexwig= option: `%s'"), arg);
13273 break;
13274
167ad85b
TG
13275# if defined (TE_PE) || defined (TE_PEP)
13276 case OPTION_MBIG_OBJ:
13277 use_big_obj = 1;
13278 break;
13279#endif
13280
d1982f93 13281 case OPTION_MOMIT_LOCK_PREFIX:
d022bddd
IT
13282 if (strcasecmp (arg, "yes") == 0)
13283 omit_lock_prefix = 1;
13284 else if (strcasecmp (arg, "no") == 0)
13285 omit_lock_prefix = 0;
13286 else
13287 as_fatal (_("invalid -momit-lock-prefix= option: `%s'"), arg);
13288 break;
13289
e4e00185
AS
13290 case OPTION_MFENCE_AS_LOCK_ADD:
13291 if (strcasecmp (arg, "yes") == 0)
13292 avoid_fence = 1;
13293 else if (strcasecmp (arg, "no") == 0)
13294 avoid_fence = 0;
13295 else
13296 as_fatal (_("invalid -mfence-as-lock-add= option: `%s'"), arg);
13297 break;
13298
ae531041
L
13299 case OPTION_MLFENCE_AFTER_LOAD:
13300 if (strcasecmp (arg, "yes") == 0)
13301 lfence_after_load = 1;
13302 else if (strcasecmp (arg, "no") == 0)
13303 lfence_after_load = 0;
13304 else
13305 as_fatal (_("invalid -mlfence-after-load= option: `%s'"), arg);
13306 break;
13307
13308 case OPTION_MLFENCE_BEFORE_INDIRECT_BRANCH:
13309 if (strcasecmp (arg, "all") == 0)
a09f656b 13310 {
13311 lfence_before_indirect_branch = lfence_branch_all;
13312 if (lfence_before_ret == lfence_before_ret_none)
13313 lfence_before_ret = lfence_before_ret_shl;
13314 }
ae531041
L
13315 else if (strcasecmp (arg, "memory") == 0)
13316 lfence_before_indirect_branch = lfence_branch_memory;
13317 else if (strcasecmp (arg, "register") == 0)
13318 lfence_before_indirect_branch = lfence_branch_register;
13319 else if (strcasecmp (arg, "none") == 0)
13320 lfence_before_indirect_branch = lfence_branch_none;
13321 else
13322 as_fatal (_("invalid -mlfence-before-indirect-branch= option: `%s'"),
13323 arg);
13324 break;
13325
13326 case OPTION_MLFENCE_BEFORE_RET:
13327 if (strcasecmp (arg, "or") == 0)
13328 lfence_before_ret = lfence_before_ret_or;
13329 else if (strcasecmp (arg, "not") == 0)
13330 lfence_before_ret = lfence_before_ret_not;
a09f656b 13331 else if (strcasecmp (arg, "shl") == 0 || strcasecmp (arg, "yes") == 0)
13332 lfence_before_ret = lfence_before_ret_shl;
ae531041
L
13333 else if (strcasecmp (arg, "none") == 0)
13334 lfence_before_ret = lfence_before_ret_none;
13335 else
13336 as_fatal (_("invalid -mlfence-before-ret= option: `%s'"),
13337 arg);
13338 break;
13339
0cb4071e
L
13340 case OPTION_MRELAX_RELOCATIONS:
13341 if (strcasecmp (arg, "yes") == 0)
13342 generate_relax_relocations = 1;
13343 else if (strcasecmp (arg, "no") == 0)
13344 generate_relax_relocations = 0;
13345 else
13346 as_fatal (_("invalid -mrelax-relocations= option: `%s'"), arg);
13347 break;
13348
e379e5f3
L
13349 case OPTION_MALIGN_BRANCH_BOUNDARY:
13350 {
13351 char *end;
13352 long int align = strtoul (arg, &end, 0);
13353 if (*end == '\0')
13354 {
13355 if (align == 0)
13356 {
13357 align_branch_power = 0;
13358 break;
13359 }
13360 else if (align >= 16)
13361 {
13362 int align_power;
13363 for (align_power = 0;
13364 (align & 1) == 0;
13365 align >>= 1, align_power++)
13366 continue;
13367 /* Limit alignment power to 31. */
13368 if (align == 1 && align_power < 32)
13369 {
13370 align_branch_power = align_power;
13371 break;
13372 }
13373 }
13374 }
13375 as_fatal (_("invalid -malign-branch-boundary= value: %s"), arg);
13376 }
13377 break;
13378
13379 case OPTION_MALIGN_BRANCH_PREFIX_SIZE:
13380 {
13381 char *end;
13382 int align = strtoul (arg, &end, 0);
13383 /* Some processors only support 5 prefixes. */
13384 if (*end == '\0' && align >= 0 && align < 6)
13385 {
13386 align_branch_prefix_size = align;
13387 break;
13388 }
13389 as_fatal (_("invalid -malign-branch-prefix-size= value: %s"),
13390 arg);
13391 }
13392 break;
13393
13394 case OPTION_MALIGN_BRANCH:
13395 align_branch = 0;
13396 saved = xstrdup (arg);
13397 type = saved;
13398 do
13399 {
13400 next = strchr (type, '+');
13401 if (next)
13402 *next++ = '\0';
13403 if (strcasecmp (type, "jcc") == 0)
13404 align_branch |= align_branch_jcc_bit;
13405 else if (strcasecmp (type, "fused") == 0)
13406 align_branch |= align_branch_fused_bit;
13407 else if (strcasecmp (type, "jmp") == 0)
13408 align_branch |= align_branch_jmp_bit;
13409 else if (strcasecmp (type, "call") == 0)
13410 align_branch |= align_branch_call_bit;
13411 else if (strcasecmp (type, "ret") == 0)
13412 align_branch |= align_branch_ret_bit;
13413 else if (strcasecmp (type, "indirect") == 0)
13414 align_branch |= align_branch_indirect_bit;
13415 else
13416 as_fatal (_("invalid -malign-branch= option: `%s'"), arg);
13417 type = next;
13418 }
13419 while (next != NULL);
13420 free (saved);
13421 break;
13422
76cf450b
L
13423 case OPTION_MBRANCHES_WITH_32B_BOUNDARIES:
13424 align_branch_power = 5;
13425 align_branch_prefix_size = 5;
13426 align_branch = (align_branch_jcc_bit
13427 | align_branch_fused_bit
13428 | align_branch_jmp_bit);
13429 break;
13430
5db04b09 13431 case OPTION_MAMD64:
4b5aaf5f 13432 isa64 = amd64;
5db04b09
L
13433 break;
13434
13435 case OPTION_MINTEL64:
4b5aaf5f 13436 isa64 = intel64;
5db04b09
L
13437 break;
13438
b6f8c7c4
L
13439 case 'O':
13440 if (arg == NULL)
13441 {
13442 optimize = 1;
13443 /* Turn off -Os. */
13444 optimize_for_space = 0;
13445 }
13446 else if (*arg == 's')
13447 {
13448 optimize_for_space = 1;
13449 /* Turn on all encoding optimizations. */
41fd2579 13450 optimize = INT_MAX;
b6f8c7c4
L
13451 }
13452 else
13453 {
13454 optimize = atoi (arg);
13455 /* Turn off -Os. */
13456 optimize_for_space = 0;
13457 }
13458 break;
13459
252b5132
RH
13460 default:
13461 return 0;
13462 }
13463 return 1;
13464}
13465
8a2c8fef
L
13466#define MESSAGE_TEMPLATE \
13467" "
13468
293f5f65
L
13469static char *
13470output_message (FILE *stream, char *p, char *message, char *start,
13471 int *left_p, const char *name, int len)
13472{
13473 int size = sizeof (MESSAGE_TEMPLATE);
13474 int left = *left_p;
13475
13476 /* Reserve 2 spaces for ", " or ",\0" */
13477 left -= len + 2;
13478
13479 /* Check if there is any room. */
13480 if (left >= 0)
13481 {
13482 if (p != start)
13483 {
13484 *p++ = ',';
13485 *p++ = ' ';
13486 }
13487 p = mempcpy (p, name, len);
13488 }
13489 else
13490 {
13491 /* Output the current message now and start a new one. */
13492 *p++ = ',';
13493 *p = '\0';
13494 fprintf (stream, "%s\n", message);
13495 p = start;
13496 left = size - (start - message) - len - 2;
13497
13498 gas_assert (left >= 0);
13499
13500 p = mempcpy (p, name, len);
13501 }
13502
13503 *left_p = left;
13504 return p;
13505}
13506
8a2c8fef 13507static void
1ded5609 13508show_arch (FILE *stream, int ext, int check)
8a2c8fef
L
13509{
13510 static char message[] = MESSAGE_TEMPLATE;
13511 char *start = message + 27;
13512 char *p;
13513 int size = sizeof (MESSAGE_TEMPLATE);
13514 int left;
13515 const char *name;
13516 int len;
13517 unsigned int j;
13518
13519 p = start;
13520 left = size - (start - message);
13521 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
13522 {
13523 /* Should it be skipped? */
13524 if (cpu_arch [j].skip)
13525 continue;
13526
13527 name = cpu_arch [j].name;
13528 len = cpu_arch [j].len;
13529 if (*name == '.')
13530 {
13531 /* It is an extension. Skip if we aren't asked to show it. */
13532 if (ext)
13533 {
13534 name++;
13535 len--;
13536 }
13537 else
13538 continue;
13539 }
13540 else if (ext)
13541 {
13542 /* It is an processor. Skip if we show only extension. */
13543 continue;
13544 }
1ded5609
JB
13545 else if (check && ! cpu_arch[j].flags.bitfield.cpui386)
13546 {
13547 /* It is an impossible processor - skip. */
13548 continue;
13549 }
8a2c8fef 13550
293f5f65 13551 p = output_message (stream, p, message, start, &left, name, len);
8a2c8fef
L
13552 }
13553
293f5f65
L
13554 /* Display disabled extensions. */
13555 if (ext)
13556 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
13557 {
13558 name = cpu_noarch [j].name;
13559 len = cpu_noarch [j].len;
13560 p = output_message (stream, p, message, start, &left, name,
13561 len);
13562 }
13563
8a2c8fef
L
13564 *p = '\0';
13565 fprintf (stream, "%s\n", message);
13566}
13567
252b5132 13568void
8a2c8fef 13569md_show_usage (FILE *stream)
252b5132 13570{
4cc782b5
ILT
13571#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13572 fprintf (stream, _("\
d4693039 13573 -Qy, -Qn ignored\n\
a38cf1db 13574 -V print assembler version number\n\
b3b91714
AM
13575 -k ignored\n"));
13576#endif
13577 fprintf (stream, _("\
12b55ccc 13578 -n Do not optimize code alignment\n\
b3b91714
AM
13579 -q quieten some warnings\n"));
13580#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13581 fprintf (stream, _("\
a38cf1db 13582 -s ignored\n"));
b3b91714 13583#endif
d7f449c0
L
13584#if defined BFD64 && (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
13585 || defined (TE_PE) || defined (TE_PEP))
751d281c 13586 fprintf (stream, _("\
570561f7 13587 --32/--64/--x32 generate 32bit/64bit/x32 code\n"));
751d281c 13588#endif
b3b91714
AM
13589#ifdef SVR4_COMMENT_CHARS
13590 fprintf (stream, _("\
13591 --divide do not treat `/' as a comment character\n"));
a38cf1db
AM
13592#else
13593 fprintf (stream, _("\
b3b91714 13594 --divide ignored\n"));
4cc782b5 13595#endif
9103f4f4 13596 fprintf (stream, _("\
6305a203 13597 -march=CPU[,+EXTENSION...]\n\
8a2c8fef 13598 generate code for CPU and EXTENSION, CPU is one of:\n"));
1ded5609 13599 show_arch (stream, 0, 1);
8a2c8fef
L
13600 fprintf (stream, _("\
13601 EXTENSION is combination of:\n"));
1ded5609 13602 show_arch (stream, 1, 0);
6305a203 13603 fprintf (stream, _("\
8a2c8fef 13604 -mtune=CPU optimize for CPU, CPU is one of:\n"));
1ded5609 13605 show_arch (stream, 0, 0);
ba104c83 13606 fprintf (stream, _("\
c0f3af97
L
13607 -msse2avx encode SSE instructions with VEX prefix\n"));
13608 fprintf (stream, _("\
7c5c05ef 13609 -msse-check=[none|error|warning] (default: warning)\n\
daf50ae7
L
13610 check SSE instructions\n"));
13611 fprintf (stream, _("\
7c5c05ef 13612 -moperand-check=[none|error|warning] (default: warning)\n\
7bab8ab5
JB
13613 check operand combinations for validity\n"));
13614 fprintf (stream, _("\
7c5c05ef
L
13615 -mavxscalar=[128|256] (default: 128)\n\
13616 encode scalar AVX instructions with specific vector\n\
539f890d
L
13617 length\n"));
13618 fprintf (stream, _("\
03751133
L
13619 -mvexwig=[0|1] (default: 0)\n\
13620 encode VEX instructions with specific VEX.W value\n\
13621 for VEX.W bit ignored instructions\n"));
13622 fprintf (stream, _("\
7c5c05ef
L
13623 -mevexlig=[128|256|512] (default: 128)\n\
13624 encode scalar EVEX instructions with specific vector\n\
43234a1e
L
13625 length\n"));
13626 fprintf (stream, _("\
7c5c05ef
L
13627 -mevexwig=[0|1] (default: 0)\n\
13628 encode EVEX instructions with specific EVEX.W value\n\
43234a1e
L
13629 for EVEX.W bit ignored instructions\n"));
13630 fprintf (stream, _("\
7c5c05ef 13631 -mevexrcig=[rne|rd|ru|rz] (default: rne)\n\
d3d3c6db
IT
13632 encode EVEX instructions with specific EVEX.RC value\n\
13633 for SAE-only ignored instructions\n"));
13634 fprintf (stream, _("\
7c5c05ef
L
13635 -mmnemonic=[att|intel] "));
13636 if (SYSV386_COMPAT)
13637 fprintf (stream, _("(default: att)\n"));
13638 else
13639 fprintf (stream, _("(default: intel)\n"));
13640 fprintf (stream, _("\
13641 use AT&T/Intel mnemonic\n"));
ba104c83 13642 fprintf (stream, _("\
7c5c05ef
L
13643 -msyntax=[att|intel] (default: att)\n\
13644 use AT&T/Intel syntax\n"));
ba104c83
L
13645 fprintf (stream, _("\
13646 -mindex-reg support pseudo index registers\n"));
13647 fprintf (stream, _("\
13648 -mnaked-reg don't require `%%' prefix for registers\n"));
13649 fprintf (stream, _("\
7e8b059b 13650 -madd-bnd-prefix add BND prefix for all valid branches\n"));
b4a3a7b4 13651#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8dcea932
L
13652 fprintf (stream, _("\
13653 -mshared disable branch optimization for shared code\n"));
b4a3a7b4
L
13654 fprintf (stream, _("\
13655 -mx86-used-note=[no|yes] "));
13656 if (DEFAULT_X86_USED_NOTE)
13657 fprintf (stream, _("(default: yes)\n"));
13658 else
13659 fprintf (stream, _("(default: no)\n"));
13660 fprintf (stream, _("\
13661 generate x86 used ISA and feature properties\n"));
13662#endif
13663#if defined (TE_PE) || defined (TE_PEP)
167ad85b
TG
13664 fprintf (stream, _("\
13665 -mbig-obj generate big object files\n"));
13666#endif
d022bddd 13667 fprintf (stream, _("\
7c5c05ef 13668 -momit-lock-prefix=[no|yes] (default: no)\n\
d022bddd 13669 strip all lock prefixes\n"));
5db04b09 13670 fprintf (stream, _("\
7c5c05ef 13671 -mfence-as-lock-add=[no|yes] (default: no)\n\
e4e00185
AS
13672 encode lfence, mfence and sfence as\n\
13673 lock addl $0x0, (%%{re}sp)\n"));
13674 fprintf (stream, _("\
7c5c05ef
L
13675 -mrelax-relocations=[no|yes] "));
13676 if (DEFAULT_GENERATE_X86_RELAX_RELOCATIONS)
13677 fprintf (stream, _("(default: yes)\n"));
13678 else
13679 fprintf (stream, _("(default: no)\n"));
13680 fprintf (stream, _("\
0cb4071e
L
13681 generate relax relocations\n"));
13682 fprintf (stream, _("\
e379e5f3
L
13683 -malign-branch-boundary=NUM (default: 0)\n\
13684 align branches within NUM byte boundary\n"));
13685 fprintf (stream, _("\
13686 -malign-branch=TYPE[+TYPE...] (default: jcc+fused+jmp)\n\
13687 TYPE is combination of jcc, fused, jmp, call, ret,\n\
13688 indirect\n\
13689 specify types of branches to align\n"));
13690 fprintf (stream, _("\
13691 -malign-branch-prefix-size=NUM (default: 5)\n\
13692 align branches with NUM prefixes per instruction\n"));
13693 fprintf (stream, _("\
76cf450b
L
13694 -mbranches-within-32B-boundaries\n\
13695 align branches within 32 byte boundary\n"));
13696 fprintf (stream, _("\
ae531041
L
13697 -mlfence-after-load=[no|yes] (default: no)\n\
13698 generate lfence after load\n"));
13699 fprintf (stream, _("\
13700 -mlfence-before-indirect-branch=[none|all|register|memory] (default: none)\n\
13701 generate lfence before indirect near branch\n"));
13702 fprintf (stream, _("\
a09f656b 13703 -mlfence-before-ret=[none|or|not|shl|yes] (default: none)\n\
ae531041
L
13704 generate lfence before ret\n"));
13705 fprintf (stream, _("\
7c5c05ef 13706 -mamd64 accept only AMD64 ISA [default]\n"));
5db04b09
L
13707 fprintf (stream, _("\
13708 -mintel64 accept only Intel64 ISA\n"));
252b5132
RH
13709}
13710
3e73aa7c 13711#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
321098a5 13712 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
e57f8c65 13713 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
252b5132
RH
13714
13715/* Pick the target format to use. */
13716
47926f60 13717const char *
e3bb37b5 13718i386_target_format (void)
252b5132 13719{
351f65ca
L
13720 if (!strncmp (default_arch, "x86_64", 6))
13721 {
13722 update_code_flag (CODE_64BIT, 1);
13723 if (default_arch[6] == '\0')
7f56bc95 13724 x86_elf_abi = X86_64_ABI;
351f65ca 13725 else
7f56bc95 13726 x86_elf_abi = X86_64_X32_ABI;
351f65ca 13727 }
3e73aa7c 13728 else if (!strcmp (default_arch, "i386"))
78f12dd3 13729 update_code_flag (CODE_32BIT, 1);
5197d474
L
13730 else if (!strcmp (default_arch, "iamcu"))
13731 {
13732 update_code_flag (CODE_32BIT, 1);
13733 if (cpu_arch_isa == PROCESSOR_UNKNOWN)
13734 {
13735 static const i386_cpu_flags iamcu_flags = CPU_IAMCU_FLAGS;
13736 cpu_arch_name = "iamcu";
13737 cpu_sub_arch_name = NULL;
13738 cpu_arch_flags = iamcu_flags;
13739 cpu_arch_isa = PROCESSOR_IAMCU;
13740 cpu_arch_isa_flags = iamcu_flags;
13741 if (!cpu_arch_tune_set)
13742 {
13743 cpu_arch_tune = cpu_arch_isa;
13744 cpu_arch_tune_flags = cpu_arch_isa_flags;
13745 }
13746 }
8d471ec1 13747 else if (cpu_arch_isa != PROCESSOR_IAMCU)
5197d474
L
13748 as_fatal (_("Intel MCU doesn't support `%s' architecture"),
13749 cpu_arch_name);
13750 }
3e73aa7c 13751 else
2b5d6a91 13752 as_fatal (_("unknown architecture"));
89507696
JB
13753
13754 if (cpu_flags_all_zero (&cpu_arch_isa_flags))
13755 cpu_arch_isa_flags = cpu_arch[flag_code == CODE_64BIT].flags;
13756 if (cpu_flags_all_zero (&cpu_arch_tune_flags))
13757 cpu_arch_tune_flags = cpu_arch[flag_code == CODE_64BIT].flags;
13758
252b5132
RH
13759 switch (OUTPUT_FLAVOR)
13760 {
9384f2ff 13761#if defined (OBJ_MAYBE_AOUT) || defined (OBJ_AOUT)
4c63da97 13762 case bfd_target_aout_flavour:
47926f60 13763 return AOUT_TARGET_FORMAT;
4c63da97 13764#endif
9384f2ff
AM
13765#if defined (OBJ_MAYBE_COFF) || defined (OBJ_COFF)
13766# if defined (TE_PE) || defined (TE_PEP)
13767 case bfd_target_coff_flavour:
167ad85b
TG
13768 if (flag_code == CODE_64BIT)
13769 return use_big_obj ? "pe-bigobj-x86-64" : "pe-x86-64";
13770 else
251dae91 13771 return use_big_obj ? "pe-bigobj-i386" : "pe-i386";
9384f2ff 13772# elif defined (TE_GO32)
0561d57c
JK
13773 case bfd_target_coff_flavour:
13774 return "coff-go32";
9384f2ff 13775# else
252b5132
RH
13776 case bfd_target_coff_flavour:
13777 return "coff-i386";
9384f2ff 13778# endif
4c63da97 13779#endif
3e73aa7c 13780#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
252b5132 13781 case bfd_target_elf_flavour:
3e73aa7c 13782 {
351f65ca
L
13783 const char *format;
13784
13785 switch (x86_elf_abi)
4fa24527 13786 {
351f65ca
L
13787 default:
13788 format = ELF_TARGET_FORMAT;
e379e5f3
L
13789#ifndef TE_SOLARIS
13790 tls_get_addr = "___tls_get_addr";
13791#endif
351f65ca 13792 break;
7f56bc95 13793 case X86_64_ABI:
351f65ca 13794 use_rela_relocations = 1;
4fa24527 13795 object_64bit = 1;
e379e5f3
L
13796#ifndef TE_SOLARIS
13797 tls_get_addr = "__tls_get_addr";
13798#endif
351f65ca
L
13799 format = ELF_TARGET_FORMAT64;
13800 break;
7f56bc95 13801 case X86_64_X32_ABI:
4fa24527 13802 use_rela_relocations = 1;
351f65ca 13803 object_64bit = 1;
e379e5f3
L
13804#ifndef TE_SOLARIS
13805 tls_get_addr = "__tls_get_addr";
13806#endif
862be3fb 13807 disallow_64bit_reloc = 1;
351f65ca
L
13808 format = ELF_TARGET_FORMAT32;
13809 break;
4fa24527 13810 }
3632d14b 13811 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 13812 {
7f56bc95 13813 if (x86_elf_abi != X86_64_ABI)
8a9036a4
L
13814 as_fatal (_("Intel L1OM is 64bit only"));
13815 return ELF_TARGET_L1OM_FORMAT;
13816 }
b49f93f6 13817 else if (cpu_arch_isa == PROCESSOR_K1OM)
7a9068fe
L
13818 {
13819 if (x86_elf_abi != X86_64_ABI)
13820 as_fatal (_("Intel K1OM is 64bit only"));
13821 return ELF_TARGET_K1OM_FORMAT;
13822 }
81486035
L
13823 else if (cpu_arch_isa == PROCESSOR_IAMCU)
13824 {
13825 if (x86_elf_abi != I386_ABI)
13826 as_fatal (_("Intel MCU is 32bit only"));
13827 return ELF_TARGET_IAMCU_FORMAT;
13828 }
8a9036a4 13829 else
351f65ca 13830 return format;
3e73aa7c 13831 }
e57f8c65
TG
13832#endif
13833#if defined (OBJ_MACH_O)
13834 case bfd_target_mach_o_flavour:
d382c579
TG
13835 if (flag_code == CODE_64BIT)
13836 {
13837 use_rela_relocations = 1;
13838 object_64bit = 1;
13839 return "mach-o-x86-64";
13840 }
13841 else
13842 return "mach-o-i386";
4c63da97 13843#endif
252b5132
RH
13844 default:
13845 abort ();
13846 return NULL;
13847 }
13848}
13849
47926f60 13850#endif /* OBJ_MAYBE_ more than one */
252b5132 13851\f
252b5132 13852symbolS *
7016a5d5 13853md_undefined_symbol (char *name)
252b5132 13854{
18dc2407
ILT
13855 if (name[0] == GLOBAL_OFFSET_TABLE_NAME[0]
13856 && name[1] == GLOBAL_OFFSET_TABLE_NAME[1]
13857 && name[2] == GLOBAL_OFFSET_TABLE_NAME[2]
13858 && strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0)
24eab124
AM
13859 {
13860 if (!GOT_symbol)
13861 {
13862 if (symbol_find (name))
13863 as_bad (_("GOT already in symbol table"));
13864 GOT_symbol = symbol_new (name, undefined_section,
e01e1cee 13865 &zero_address_frag, 0);
24eab124
AM
13866 };
13867 return GOT_symbol;
13868 }
252b5132
RH
13869 return 0;
13870}
13871
13872/* Round up a section size to the appropriate boundary. */
47926f60 13873
252b5132 13874valueT
7016a5d5 13875md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size)
252b5132 13876{
4c63da97
AM
13877#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
13878 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
13879 {
13880 /* For a.out, force the section size to be aligned. If we don't do
13881 this, BFD will align it for us, but it will not write out the
13882 final bytes of the section. This may be a bug in BFD, but it is
13883 easier to fix it here since that is how the other a.out targets
13884 work. */
13885 int align;
13886
fd361982 13887 align = bfd_section_alignment (segment);
8d3842cd 13888 size = ((size + (1 << align) - 1) & (-((valueT) 1 << align)));
4c63da97 13889 }
252b5132
RH
13890#endif
13891
13892 return size;
13893}
13894
13895/* On the i386, PC-relative offsets are relative to the start of the
13896 next instruction. That is, the address of the offset, plus its
13897 size, since the offset is always the last part of the insn. */
13898
13899long
e3bb37b5 13900md_pcrel_from (fixS *fixP)
252b5132
RH
13901{
13902 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
13903}
13904
13905#ifndef I386COFF
13906
13907static void
e3bb37b5 13908s_bss (int ignore ATTRIBUTE_UNUSED)
252b5132 13909{
29b0f896 13910 int temp;
252b5132 13911
8a75718c
JB
13912#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13913 if (IS_ELF)
13914 obj_elf_section_change_hook ();
13915#endif
252b5132
RH
13916 temp = get_absolute_expression ();
13917 subseg_set (bss_section, (subsegT) temp);
13918 demand_empty_rest_of_line ();
13919}
13920
13921#endif
13922
e379e5f3
L
13923/* Remember constant directive. */
13924
13925void
13926i386_cons_align (int ignore ATTRIBUTE_UNUSED)
13927{
13928 if (last_insn.kind != last_insn_directive
13929 && (bfd_section_flags (now_seg) & SEC_CODE))
13930 {
13931 last_insn.seg = now_seg;
13932 last_insn.kind = last_insn_directive;
13933 last_insn.name = "constant directive";
13934 last_insn.file = as_where (&last_insn.line);
ae531041
L
13935 if (lfence_before_ret != lfence_before_ret_none)
13936 {
13937 if (lfence_before_indirect_branch != lfence_branch_none)
13938 as_warn (_("constant directive skips -mlfence-before-ret "
13939 "and -mlfence-before-indirect-branch"));
13940 else
13941 as_warn (_("constant directive skips -mlfence-before-ret"));
13942 }
13943 else if (lfence_before_indirect_branch != lfence_branch_none)
13944 as_warn (_("constant directive skips -mlfence-before-indirect-branch"));
e379e5f3
L
13945 }
13946}
13947
252b5132 13948void
e3bb37b5 13949i386_validate_fix (fixS *fixp)
252b5132 13950{
02a86693 13951 if (fixp->fx_subsy)
252b5132 13952 {
02a86693 13953 if (fixp->fx_subsy == GOT_symbol)
23df1078 13954 {
02a86693
L
13955 if (fixp->fx_r_type == BFD_RELOC_32_PCREL)
13956 {
13957 if (!object_64bit)
13958 abort ();
13959#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13960 if (fixp->fx_tcbit2)
56ceb5b5
L
13961 fixp->fx_r_type = (fixp->fx_tcbit
13962 ? BFD_RELOC_X86_64_REX_GOTPCRELX
13963 : BFD_RELOC_X86_64_GOTPCRELX);
02a86693
L
13964 else
13965#endif
13966 fixp->fx_r_type = BFD_RELOC_X86_64_GOTPCREL;
13967 }
d6ab8113 13968 else
02a86693
L
13969 {
13970 if (!object_64bit)
13971 fixp->fx_r_type = BFD_RELOC_386_GOTOFF;
13972 else
13973 fixp->fx_r_type = BFD_RELOC_X86_64_GOTOFF64;
13974 }
13975 fixp->fx_subsy = 0;
23df1078 13976 }
252b5132 13977 }
02a86693 13978#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2585b7a5 13979 else
02a86693 13980 {
2585b7a5
L
13981 /* NB: Commit 292676c1 resolved PLT32 reloc aganst local symbol
13982 to section. Since PLT32 relocation must be against symbols,
13983 turn such PLT32 relocation into PC32 relocation. */
13984 if (fixp->fx_addsy
13985 && (fixp->fx_r_type == BFD_RELOC_386_PLT32
13986 || fixp->fx_r_type == BFD_RELOC_X86_64_PLT32)
13987 && symbol_section_p (fixp->fx_addsy))
13988 fixp->fx_r_type = BFD_RELOC_32_PCREL;
13989 if (!object_64bit)
13990 {
13991 if (fixp->fx_r_type == BFD_RELOC_386_GOT32
13992 && fixp->fx_tcbit2)
13993 fixp->fx_r_type = BFD_RELOC_386_GOT32X;
13994 }
02a86693
L
13995 }
13996#endif
252b5132
RH
13997}
13998
252b5132 13999arelent *
7016a5d5 14000tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
14001{
14002 arelent *rel;
14003 bfd_reloc_code_real_type code;
14004
14005 switch (fixp->fx_r_type)
14006 {
8ce3d284 14007#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
14008 case BFD_RELOC_SIZE32:
14009 case BFD_RELOC_SIZE64:
14010 if (S_IS_DEFINED (fixp->fx_addsy)
14011 && !S_IS_EXTERNAL (fixp->fx_addsy))
14012 {
14013 /* Resolve size relocation against local symbol to size of
14014 the symbol plus addend. */
14015 valueT value = S_GET_SIZE (fixp->fx_addsy) + fixp->fx_offset;
14016 if (fixp->fx_r_type == BFD_RELOC_SIZE32
14017 && !fits_in_unsigned_long (value))
14018 as_bad_where (fixp->fx_file, fixp->fx_line,
14019 _("symbol size computation overflow"));
14020 fixp->fx_addsy = NULL;
14021 fixp->fx_subsy = NULL;
14022 md_apply_fix (fixp, (valueT *) &value, NULL);
14023 return NULL;
14024 }
8ce3d284 14025#endif
1a0670f3 14026 /* Fall through. */
8fd4256d 14027
3e73aa7c
JH
14028 case BFD_RELOC_X86_64_PLT32:
14029 case BFD_RELOC_X86_64_GOT32:
14030 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
14031 case BFD_RELOC_X86_64_GOTPCRELX:
14032 case BFD_RELOC_X86_64_REX_GOTPCRELX:
252b5132
RH
14033 case BFD_RELOC_386_PLT32:
14034 case BFD_RELOC_386_GOT32:
02a86693 14035 case BFD_RELOC_386_GOT32X:
252b5132
RH
14036 case BFD_RELOC_386_GOTOFF:
14037 case BFD_RELOC_386_GOTPC:
13ae64f3
JJ
14038 case BFD_RELOC_386_TLS_GD:
14039 case BFD_RELOC_386_TLS_LDM:
14040 case BFD_RELOC_386_TLS_LDO_32:
14041 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
14042 case BFD_RELOC_386_TLS_IE:
14043 case BFD_RELOC_386_TLS_GOTIE:
13ae64f3
JJ
14044 case BFD_RELOC_386_TLS_LE_32:
14045 case BFD_RELOC_386_TLS_LE:
67a4f2b7
AO
14046 case BFD_RELOC_386_TLS_GOTDESC:
14047 case BFD_RELOC_386_TLS_DESC_CALL:
bffbf940
JJ
14048 case BFD_RELOC_X86_64_TLSGD:
14049 case BFD_RELOC_X86_64_TLSLD:
14050 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 14051 case BFD_RELOC_X86_64_DTPOFF64:
bffbf940
JJ
14052 case BFD_RELOC_X86_64_GOTTPOFF:
14053 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113
JB
14054 case BFD_RELOC_X86_64_TPOFF64:
14055 case BFD_RELOC_X86_64_GOTOFF64:
14056 case BFD_RELOC_X86_64_GOTPC32:
7b81dfbb
AJ
14057 case BFD_RELOC_X86_64_GOT64:
14058 case BFD_RELOC_X86_64_GOTPCREL64:
14059 case BFD_RELOC_X86_64_GOTPC64:
14060 case BFD_RELOC_X86_64_GOTPLT64:
14061 case BFD_RELOC_X86_64_PLTOFF64:
67a4f2b7
AO
14062 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
14063 case BFD_RELOC_X86_64_TLSDESC_CALL:
252b5132
RH
14064 case BFD_RELOC_RVA:
14065 case BFD_RELOC_VTABLE_ENTRY:
14066 case BFD_RELOC_VTABLE_INHERIT:
6482c264
NC
14067#ifdef TE_PE
14068 case BFD_RELOC_32_SECREL:
14069#endif
252b5132
RH
14070 code = fixp->fx_r_type;
14071 break;
dbbaec26
L
14072 case BFD_RELOC_X86_64_32S:
14073 if (!fixp->fx_pcrel)
14074 {
14075 /* Don't turn BFD_RELOC_X86_64_32S into BFD_RELOC_32. */
14076 code = fixp->fx_r_type;
14077 break;
14078 }
1a0670f3 14079 /* Fall through. */
252b5132 14080 default:
93382f6d 14081 if (fixp->fx_pcrel)
252b5132 14082 {
93382f6d
AM
14083 switch (fixp->fx_size)
14084 {
14085 default:
b091f402
AM
14086 as_bad_where (fixp->fx_file, fixp->fx_line,
14087 _("can not do %d byte pc-relative relocation"),
14088 fixp->fx_size);
93382f6d
AM
14089 code = BFD_RELOC_32_PCREL;
14090 break;
14091 case 1: code = BFD_RELOC_8_PCREL; break;
14092 case 2: code = BFD_RELOC_16_PCREL; break;
d258b828 14093 case 4: code = BFD_RELOC_32_PCREL; break;
d6ab8113
JB
14094#ifdef BFD64
14095 case 8: code = BFD_RELOC_64_PCREL; break;
14096#endif
93382f6d
AM
14097 }
14098 }
14099 else
14100 {
14101 switch (fixp->fx_size)
14102 {
14103 default:
b091f402
AM
14104 as_bad_where (fixp->fx_file, fixp->fx_line,
14105 _("can not do %d byte relocation"),
14106 fixp->fx_size);
93382f6d
AM
14107 code = BFD_RELOC_32;
14108 break;
14109 case 1: code = BFD_RELOC_8; break;
14110 case 2: code = BFD_RELOC_16; break;
14111 case 4: code = BFD_RELOC_32; break;
937149dd 14112#ifdef BFD64
3e73aa7c 14113 case 8: code = BFD_RELOC_64; break;
937149dd 14114#endif
93382f6d 14115 }
252b5132
RH
14116 }
14117 break;
14118 }
252b5132 14119
d182319b
JB
14120 if ((code == BFD_RELOC_32
14121 || code == BFD_RELOC_32_PCREL
14122 || code == BFD_RELOC_X86_64_32S)
252b5132
RH
14123 && GOT_symbol
14124 && fixp->fx_addsy == GOT_symbol)
3e73aa7c 14125 {
4fa24527 14126 if (!object_64bit)
d6ab8113
JB
14127 code = BFD_RELOC_386_GOTPC;
14128 else
14129 code = BFD_RELOC_X86_64_GOTPC32;
3e73aa7c 14130 }
7b81dfbb
AJ
14131 if ((code == BFD_RELOC_64 || code == BFD_RELOC_64_PCREL)
14132 && GOT_symbol
14133 && fixp->fx_addsy == GOT_symbol)
14134 {
14135 code = BFD_RELOC_X86_64_GOTPC64;
14136 }
252b5132 14137
add39d23
TS
14138 rel = XNEW (arelent);
14139 rel->sym_ptr_ptr = XNEW (asymbol *);
49309057 14140 *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
14141
14142 rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
c87db184 14143
3e73aa7c
JH
14144 if (!use_rela_relocations)
14145 {
14146 /* HACK: Since i386 ELF uses Rel instead of Rela, encode the
14147 vtable entry to be used in the relocation's section offset. */
14148 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
14149 rel->address = fixp->fx_offset;
fbeb56a4
DK
14150#if defined (OBJ_COFF) && defined (TE_PE)
14151 else if (fixp->fx_addsy && S_IS_WEAK (fixp->fx_addsy))
14152 rel->addend = fixp->fx_addnumber - (S_GET_VALUE (fixp->fx_addsy) * 2);
14153 else
14154#endif
c6682705 14155 rel->addend = 0;
3e73aa7c
JH
14156 }
14157 /* Use the rela in 64bit mode. */
252b5132 14158 else
3e73aa7c 14159 {
862be3fb
L
14160 if (disallow_64bit_reloc)
14161 switch (code)
14162 {
862be3fb
L
14163 case BFD_RELOC_X86_64_DTPOFF64:
14164 case BFD_RELOC_X86_64_TPOFF64:
14165 case BFD_RELOC_64_PCREL:
14166 case BFD_RELOC_X86_64_GOTOFF64:
14167 case BFD_RELOC_X86_64_GOT64:
14168 case BFD_RELOC_X86_64_GOTPCREL64:
14169 case BFD_RELOC_X86_64_GOTPC64:
14170 case BFD_RELOC_X86_64_GOTPLT64:
14171 case BFD_RELOC_X86_64_PLTOFF64:
14172 as_bad_where (fixp->fx_file, fixp->fx_line,
14173 _("cannot represent relocation type %s in x32 mode"),
14174 bfd_get_reloc_code_name (code));
14175 break;
14176 default:
14177 break;
14178 }
14179
062cd5e7
AS
14180 if (!fixp->fx_pcrel)
14181 rel->addend = fixp->fx_offset;
14182 else
14183 switch (code)
14184 {
14185 case BFD_RELOC_X86_64_PLT32:
14186 case BFD_RELOC_X86_64_GOT32:
14187 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
14188 case BFD_RELOC_X86_64_GOTPCRELX:
14189 case BFD_RELOC_X86_64_REX_GOTPCRELX:
bffbf940
JJ
14190 case BFD_RELOC_X86_64_TLSGD:
14191 case BFD_RELOC_X86_64_TLSLD:
14192 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7
AO
14193 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
14194 case BFD_RELOC_X86_64_TLSDESC_CALL:
062cd5e7
AS
14195 rel->addend = fixp->fx_offset - fixp->fx_size;
14196 break;
14197 default:
14198 rel->addend = (section->vma
14199 - fixp->fx_size
14200 + fixp->fx_addnumber
14201 + md_pcrel_from (fixp));
14202 break;
14203 }
3e73aa7c
JH
14204 }
14205
252b5132
RH
14206 rel->howto = bfd_reloc_type_lookup (stdoutput, code);
14207 if (rel->howto == NULL)
14208 {
14209 as_bad_where (fixp->fx_file, fixp->fx_line,
d0b47220 14210 _("cannot represent relocation type %s"),
252b5132
RH
14211 bfd_get_reloc_code_name (code));
14212 /* Set howto to a garbage value so that we can keep going. */
14213 rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
9c2799c2 14214 gas_assert (rel->howto != NULL);
252b5132
RH
14215 }
14216
14217 return rel;
14218}
14219
ee86248c 14220#include "tc-i386-intel.c"
54cfded0 14221
a60de03c
JB
14222void
14223tc_x86_parse_to_dw2regnum (expressionS *exp)
54cfded0 14224{
a60de03c
JB
14225 int saved_naked_reg;
14226 char saved_register_dot;
54cfded0 14227
a60de03c
JB
14228 saved_naked_reg = allow_naked_reg;
14229 allow_naked_reg = 1;
14230 saved_register_dot = register_chars['.'];
14231 register_chars['.'] = '.';
14232 allow_pseudo_reg = 1;
14233 expression_and_evaluate (exp);
14234 allow_pseudo_reg = 0;
14235 register_chars['.'] = saved_register_dot;
14236 allow_naked_reg = saved_naked_reg;
14237
e96d56a1 14238 if (exp->X_op == O_register && exp->X_add_number >= 0)
54cfded0 14239 {
a60de03c
JB
14240 if ((addressT) exp->X_add_number < i386_regtab_size)
14241 {
14242 exp->X_op = O_constant;
14243 exp->X_add_number = i386_regtab[exp->X_add_number]
14244 .dw2_regnum[flag_code >> 1];
14245 }
14246 else
14247 exp->X_op = O_illegal;
54cfded0 14248 }
54cfded0
AM
14249}
14250
14251void
14252tc_x86_frame_initial_instructions (void)
14253{
a60de03c
JB
14254 static unsigned int sp_regno[2];
14255
14256 if (!sp_regno[flag_code >> 1])
14257 {
14258 char *saved_input = input_line_pointer;
14259 char sp[][4] = {"esp", "rsp"};
14260 expressionS exp;
a4447b93 14261
a60de03c
JB
14262 input_line_pointer = sp[flag_code >> 1];
14263 tc_x86_parse_to_dw2regnum (&exp);
9c2799c2 14264 gas_assert (exp.X_op == O_constant);
a60de03c
JB
14265 sp_regno[flag_code >> 1] = exp.X_add_number;
14266 input_line_pointer = saved_input;
14267 }
a4447b93 14268
61ff971f
L
14269 cfi_add_CFA_def_cfa (sp_regno[flag_code >> 1], -x86_cie_data_alignment);
14270 cfi_add_CFA_offset (x86_dwarf2_return_column, x86_cie_data_alignment);
54cfded0 14271}
d2b2c203 14272
d7921315
L
14273int
14274x86_dwarf2_addr_size (void)
14275{
14276#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
14277 if (x86_elf_abi == X86_64_X32_ABI)
14278 return 4;
14279#endif
14280 return bfd_arch_bits_per_address (stdoutput) / 8;
14281}
14282
d2b2c203
DJ
14283int
14284i386_elf_section_type (const char *str, size_t len)
14285{
14286 if (flag_code == CODE_64BIT
14287 && len == sizeof ("unwind") - 1
14288 && strncmp (str, "unwind", 6) == 0)
14289 return SHT_X86_64_UNWIND;
14290
14291 return -1;
14292}
bb41ade5 14293
ad5fec3b
EB
14294#ifdef TE_SOLARIS
14295void
14296i386_solaris_fix_up_eh_frame (segT sec)
14297{
14298 if (flag_code == CODE_64BIT)
14299 elf_section_type (sec) = SHT_X86_64_UNWIND;
14300}
14301#endif
14302
bb41ade5
AM
14303#ifdef TE_PE
14304void
14305tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
14306{
91d6fa6a 14307 expressionS exp;
bb41ade5 14308
91d6fa6a
NC
14309 exp.X_op = O_secrel;
14310 exp.X_add_symbol = symbol;
14311 exp.X_add_number = 0;
14312 emit_expr (&exp, size);
bb41ade5
AM
14313}
14314#endif
3b22753a
L
14315
14316#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
14317/* For ELF on x86-64, add support for SHF_X86_64_LARGE. */
14318
01e1a5bc 14319bfd_vma
6d4af3c2 14320x86_64_section_letter (int letter, const char **ptr_msg)
3b22753a
L
14321{
14322 if (flag_code == CODE_64BIT)
14323 {
14324 if (letter == 'l')
14325 return SHF_X86_64_LARGE;
14326
8f3bae45 14327 *ptr_msg = _("bad .section directive: want a,l,w,x,M,S,G,T in string");
64e74474 14328 }
3b22753a 14329 else
8f3bae45 14330 *ptr_msg = _("bad .section directive: want a,w,x,M,S,G,T in string");
3b22753a
L
14331 return -1;
14332}
14333
01e1a5bc 14334bfd_vma
3b22753a
L
14335x86_64_section_word (char *str, size_t len)
14336{
08dedd66 14337 if (len == 5 && flag_code == CODE_64BIT && startswith (str, "large"))
3b22753a
L
14338 return SHF_X86_64_LARGE;
14339
14340 return -1;
14341}
14342
14343static void
14344handle_large_common (int small ATTRIBUTE_UNUSED)
14345{
14346 if (flag_code != CODE_64BIT)
14347 {
14348 s_comm_internal (0, elf_common_parse);
14349 as_warn (_(".largecomm supported only in 64bit mode, producing .comm"));
14350 }
14351 else
14352 {
14353 static segT lbss_section;
14354 asection *saved_com_section_ptr = elf_com_section_ptr;
14355 asection *saved_bss_section = bss_section;
14356
14357 if (lbss_section == NULL)
14358 {
14359 flagword applicable;
14360 segT seg = now_seg;
14361 subsegT subseg = now_subseg;
14362
14363 /* The .lbss section is for local .largecomm symbols. */
14364 lbss_section = subseg_new (".lbss", 0);
14365 applicable = bfd_applicable_section_flags (stdoutput);
fd361982 14366 bfd_set_section_flags (lbss_section, applicable & SEC_ALLOC);
3b22753a
L
14367 seg_info (lbss_section)->bss = 1;
14368
14369 subseg_set (seg, subseg);
14370 }
14371
14372 elf_com_section_ptr = &_bfd_elf_large_com_section;
14373 bss_section = lbss_section;
14374
14375 s_comm_internal (0, elf_common_parse);
14376
14377 elf_com_section_ptr = saved_com_section_ptr;
14378 bss_section = saved_bss_section;
14379 }
14380}
14381#endif /* OBJ_ELF || OBJ_MAYBE_ELF */
This page took 2.643399 seconds and 4 git commands to generate.