x86/Intel: improve diagnostics
[deliverable/binutils-gdb.git] / gas / config / tc-i386.c
CommitLineData
b534c6d3 1/* tc-i386.c -- Assemble code for the Intel 80386
b3adc24a 2 Copyright (C) 1989-2020 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20
47926f60
KH
21/* Intel 80386 machine specific gas.
22 Written by Eliot Dresselhaus (eliot@mgm.mit.edu).
3e73aa7c 23 x86_64 support by Jan Hubicka (jh@suse.cz)
0f10071e 24 VIA PadLock support by Michal Ludvig (mludvig@suse.cz)
47926f60
KH
25 Bugs & suggestions are completely welcome. This is free software.
26 Please help us make it better. */
252b5132 27
252b5132 28#include "as.h"
3882b010 29#include "safe-ctype.h"
252b5132 30#include "subsegs.h"
316e2c05 31#include "dwarf2dbg.h"
54cfded0 32#include "dw2gencfi.h"
d2b2c203 33#include "elf/x86-64.h"
40fb9820 34#include "opcodes/i386-init.h"
252b5132 35
41fd2579
L
36#ifdef HAVE_LIMITS_H
37#include <limits.h>
38#else
39#ifdef HAVE_SYS_PARAM_H
40#include <sys/param.h>
41#endif
42#ifndef INT_MAX
43#define INT_MAX (int) (((unsigned) (-1)) >> 1)
44#endif
45#endif
46
252b5132
RH
47#ifndef REGISTER_WARNINGS
48#define REGISTER_WARNINGS 1
49#endif
50
c3332e24 51#ifndef INFER_ADDR_PREFIX
eecb386c 52#define INFER_ADDR_PREFIX 1
c3332e24
AM
53#endif
54
29b0f896
AM
55#ifndef DEFAULT_ARCH
56#define DEFAULT_ARCH "i386"
246fcdee 57#endif
252b5132 58
edde18a5
AM
59#ifndef INLINE
60#if __GNUC__ >= 2
61#define INLINE __inline__
62#else
63#define INLINE
64#endif
65#endif
66
6305a203
L
67/* Prefixes will be emitted in the order defined below.
68 WAIT_PREFIX must be the first prefix since FWAIT is really is an
69 instruction, and so must come before any prefixes.
70 The preferred prefix order is SEG_PREFIX, ADDR_PREFIX, DATA_PREFIX,
42164a71 71 REP_PREFIX/HLE_PREFIX, LOCK_PREFIX. */
6305a203
L
72#define WAIT_PREFIX 0
73#define SEG_PREFIX 1
74#define ADDR_PREFIX 2
75#define DATA_PREFIX 3
c32fa91d 76#define REP_PREFIX 4
42164a71 77#define HLE_PREFIX REP_PREFIX
7e8b059b 78#define BND_PREFIX REP_PREFIX
c32fa91d 79#define LOCK_PREFIX 5
4e9ac44a
L
80#define REX_PREFIX 6 /* must come last. */
81#define MAX_PREFIXES 7 /* max prefixes per opcode */
6305a203
L
82
83/* we define the syntax here (modulo base,index,scale syntax) */
84#define REGISTER_PREFIX '%'
85#define IMMEDIATE_PREFIX '$'
86#define ABSOLUTE_PREFIX '*'
87
88/* these are the instruction mnemonic suffixes in AT&T syntax or
89 memory operand size in Intel syntax. */
90#define WORD_MNEM_SUFFIX 'w'
91#define BYTE_MNEM_SUFFIX 'b'
92#define SHORT_MNEM_SUFFIX 's'
93#define LONG_MNEM_SUFFIX 'l'
94#define QWORD_MNEM_SUFFIX 'q'
6305a203
L
95/* Intel Syntax. Use a non-ascii letter since since it never appears
96 in instructions. */
97#define LONG_DOUBLE_MNEM_SUFFIX '\1'
98
99#define END_OF_INSN '\0'
100
79dec6b7
JB
101/* This matches the C -> StaticRounding alias in the opcode table. */
102#define commutative staticrounding
103
6305a203
L
104/*
105 'templates' is for grouping together 'template' structures for opcodes
106 of the same name. This is only used for storing the insns in the grand
107 ole hash table of insns.
108 The templates themselves start at START and range up to (but not including)
109 END.
110 */
111typedef struct
112{
d3ce72d0
NC
113 const insn_template *start;
114 const insn_template *end;
6305a203
L
115}
116templates;
117
118/* 386 operand encoding bytes: see 386 book for details of this. */
119typedef struct
120{
121 unsigned int regmem; /* codes register or memory operand */
122 unsigned int reg; /* codes register operand (or extended opcode) */
123 unsigned int mode; /* how to interpret regmem & reg */
124}
125modrm_byte;
126
127/* x86-64 extension prefix. */
128typedef int rex_byte;
129
6305a203
L
130/* 386 opcode byte to code indirect addressing. */
131typedef struct
132{
133 unsigned base;
134 unsigned index;
135 unsigned scale;
136}
137sib_byte;
138
6305a203
L
139/* x86 arch names, types and features */
140typedef struct
141{
142 const char *name; /* arch name */
8a2c8fef 143 unsigned int len; /* arch string length */
6305a203
L
144 enum processor_type type; /* arch type */
145 i386_cpu_flags flags; /* cpu feature flags */
8a2c8fef 146 unsigned int skip; /* show_arch should skip this. */
6305a203
L
147}
148arch_entry;
149
293f5f65
L
150/* Used to turn off indicated flags. */
151typedef struct
152{
153 const char *name; /* arch name */
154 unsigned int len; /* arch string length */
155 i386_cpu_flags flags; /* cpu feature flags */
156}
157noarch_entry;
158
78f12dd3 159static void update_code_flag (int, int);
e3bb37b5
L
160static void set_code_flag (int);
161static void set_16bit_gcc_code_flag (int);
162static void set_intel_syntax (int);
1efbbeb4 163static void set_intel_mnemonic (int);
db51cc60 164static void set_allow_index_reg (int);
7bab8ab5 165static void set_check (int);
e3bb37b5 166static void set_cpu_arch (int);
6482c264 167#ifdef TE_PE
e3bb37b5 168static void pe_directive_secrel (int);
6482c264 169#endif
e3bb37b5
L
170static void signed_cons (int);
171static char *output_invalid (int c);
ee86248c
JB
172static int i386_finalize_immediate (segT, expressionS *, i386_operand_type,
173 const char *);
174static int i386_finalize_displacement (segT, expressionS *, i386_operand_type,
175 const char *);
a7619375 176static int i386_att_operand (char *);
e3bb37b5 177static int i386_intel_operand (char *, int);
ee86248c
JB
178static int i386_intel_simplify (expressionS *);
179static int i386_intel_parse_name (const char *, expressionS *);
e3bb37b5
L
180static const reg_entry *parse_register (char *, char **);
181static char *parse_insn (char *, char *);
182static char *parse_operands (char *, const char *);
183static void swap_operands (void);
4d456e3d 184static void swap_2_operands (int, int);
48bcea9f 185static enum flag_code i386_addressing_mode (void);
e3bb37b5
L
186static void optimize_imm (void);
187static void optimize_disp (void);
83b16ac6 188static const insn_template *match_template (char);
e3bb37b5
L
189static int check_string (void);
190static int process_suffix (void);
191static int check_byte_reg (void);
192static int check_long_reg (void);
193static int check_qword_reg (void);
194static int check_word_reg (void);
195static int finalize_imm (void);
196static int process_operands (void);
197static const seg_entry *build_modrm_byte (void);
198static void output_insn (void);
199static void output_imm (fragS *, offsetT);
200static void output_disp (fragS *, offsetT);
29b0f896 201#ifndef I386COFF
e3bb37b5 202static void s_bss (int);
252b5132 203#endif
17d4e2a2
L
204#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
205static void handle_large_common (int small ATTRIBUTE_UNUSED);
b4a3a7b4
L
206
207/* GNU_PROPERTY_X86_ISA_1_USED. */
208static unsigned int x86_isa_1_used;
209/* GNU_PROPERTY_X86_FEATURE_2_USED. */
210static unsigned int x86_feature_2_used;
211/* Generate x86 used ISA and feature properties. */
212static unsigned int x86_used_note = DEFAULT_X86_USED_NOTE;
17d4e2a2 213#endif
252b5132 214
a847613f 215static const char *default_arch = DEFAULT_ARCH;
3e73aa7c 216
43234a1e
L
217/* This struct describes rounding control and SAE in the instruction. */
218struct RC_Operation
219{
220 enum rc_type
221 {
222 rne = 0,
223 rd,
224 ru,
225 rz,
226 saeonly
227 } type;
228 int operand;
229};
230
231static struct RC_Operation rc_op;
232
233/* The struct describes masking, applied to OPERAND in the instruction.
234 MASK is a pointer to the corresponding mask register. ZEROING tells
235 whether merging or zeroing mask is used. */
236struct Mask_Operation
237{
238 const reg_entry *mask;
239 unsigned int zeroing;
240 /* The operand where this operation is associated. */
241 int operand;
242};
243
244static struct Mask_Operation mask_op;
245
246/* The struct describes broadcasting, applied to OPERAND. FACTOR is
247 broadcast factor. */
248struct Broadcast_Operation
249{
8e6e0792 250 /* Type of broadcast: {1to2}, {1to4}, {1to8}, or {1to16}. */
43234a1e
L
251 int type;
252
253 /* Index of broadcasted operand. */
254 int operand;
4a1b91ea
L
255
256 /* Number of bytes to broadcast. */
257 int bytes;
43234a1e
L
258};
259
260static struct Broadcast_Operation broadcast_op;
261
c0f3af97
L
262/* VEX prefix. */
263typedef struct
264{
43234a1e
L
265 /* VEX prefix is either 2 byte or 3 byte. EVEX is 4 byte. */
266 unsigned char bytes[4];
c0f3af97
L
267 unsigned int length;
268 /* Destination or source register specifier. */
269 const reg_entry *register_specifier;
270} vex_prefix;
271
252b5132 272/* 'md_assemble ()' gathers together information and puts it into a
47926f60 273 i386_insn. */
252b5132 274
520dc8e8
AM
275union i386_op
276 {
277 expressionS *disps;
278 expressionS *imms;
279 const reg_entry *regs;
280 };
281
a65babc9
L
282enum i386_error
283 {
86e026a4 284 operand_size_mismatch,
a65babc9
L
285 operand_type_mismatch,
286 register_type_mismatch,
287 number_of_operands_mismatch,
288 invalid_instruction_suffix,
289 bad_imm4,
a65babc9
L
290 unsupported_with_intel_mnemonic,
291 unsupported_syntax,
6c30d220
L
292 unsupported,
293 invalid_vsib_address,
7bab8ab5 294 invalid_vector_register_set,
43234a1e
L
295 unsupported_vector_index_register,
296 unsupported_broadcast,
43234a1e
L
297 broadcast_needed,
298 unsupported_masking,
299 mask_not_on_destination,
300 no_default_mask,
301 unsupported_rc_sae,
302 rc_sae_operand_not_last_imm,
303 invalid_register_operand,
a65babc9
L
304 };
305
252b5132
RH
306struct _i386_insn
307 {
47926f60 308 /* TM holds the template for the insn were currently assembling. */
d3ce72d0 309 insn_template tm;
252b5132 310
7d5e4556
L
311 /* SUFFIX holds the instruction size suffix for byte, word, dword
312 or qword, if given. */
252b5132
RH
313 char suffix;
314
47926f60 315 /* OPERANDS gives the number of given operands. */
252b5132
RH
316 unsigned int operands;
317
318 /* REG_OPERANDS, DISP_OPERANDS, MEM_OPERANDS, IMM_OPERANDS give the number
319 of given register, displacement, memory operands and immediate
47926f60 320 operands. */
252b5132
RH
321 unsigned int reg_operands, disp_operands, mem_operands, imm_operands;
322
323 /* TYPES [i] is the type (see above #defines) which tells us how to
520dc8e8 324 use OP[i] for the corresponding operand. */
40fb9820 325 i386_operand_type types[MAX_OPERANDS];
252b5132 326
520dc8e8
AM
327 /* Displacement expression, immediate expression, or register for each
328 operand. */
329 union i386_op op[MAX_OPERANDS];
252b5132 330
3e73aa7c
JH
331 /* Flags for operands. */
332 unsigned int flags[MAX_OPERANDS];
333#define Operand_PCrel 1
c48dadc9 334#define Operand_Mem 2
3e73aa7c 335
252b5132 336 /* Relocation type for operand */
f86103b7 337 enum bfd_reloc_code_real reloc[MAX_OPERANDS];
252b5132 338
252b5132
RH
339 /* BASE_REG, INDEX_REG, and LOG2_SCALE_FACTOR are used to encode
340 the base index byte below. */
341 const reg_entry *base_reg;
342 const reg_entry *index_reg;
343 unsigned int log2_scale_factor;
344
345 /* SEG gives the seg_entries of this insn. They are zero unless
47926f60 346 explicit segment overrides are given. */
ce8a8b2f 347 const seg_entry *seg[2];
252b5132 348
8325cc63
JB
349 /* Copied first memory operand string, for re-checking. */
350 char *memop1_string;
351
252b5132
RH
352 /* PREFIX holds all the given prefix opcodes (usually null).
353 PREFIXES is the number of prefix opcodes. */
354 unsigned int prefixes;
355 unsigned char prefix[MAX_PREFIXES];
356
50128d0c
JB
357 /* Register is in low 3 bits of opcode. */
358 bfd_boolean short_form;
359
6f2f06be
JB
360 /* The operand to a branch insn indicates an absolute branch. */
361 bfd_boolean jumpabsolute;
362
b4a3a7b4
L
363 /* Has MMX register operands. */
364 bfd_boolean has_regmmx;
365
366 /* Has XMM register operands. */
367 bfd_boolean has_regxmm;
368
369 /* Has YMM register operands. */
370 bfd_boolean has_regymm;
371
372 /* Has ZMM register operands. */
373 bfd_boolean has_regzmm;
374
e379e5f3
L
375 /* Has GOTPC or TLS relocation. */
376 bfd_boolean has_gotpc_tls_reloc;
377
252b5132 378 /* RM and SIB are the modrm byte and the sib byte where the
c1e679ec 379 addressing modes of this insn are encoded. */
252b5132 380 modrm_byte rm;
3e73aa7c 381 rex_byte rex;
43234a1e 382 rex_byte vrex;
252b5132 383 sib_byte sib;
c0f3af97 384 vex_prefix vex;
b6169b20 385
43234a1e
L
386 /* Masking attributes. */
387 struct Mask_Operation *mask;
388
389 /* Rounding control and SAE attributes. */
390 struct RC_Operation *rounding;
391
392 /* Broadcasting attributes. */
393 struct Broadcast_Operation *broadcast;
394
395 /* Compressed disp8*N attribute. */
396 unsigned int memshift;
397
86fa6981
L
398 /* Prefer load or store in encoding. */
399 enum
400 {
401 dir_encoding_default = 0,
402 dir_encoding_load,
64c49ab3
JB
403 dir_encoding_store,
404 dir_encoding_swap
86fa6981 405 } dir_encoding;
891edac4 406
a501d77e
L
407 /* Prefer 8bit or 32bit displacement in encoding. */
408 enum
409 {
410 disp_encoding_default = 0,
411 disp_encoding_8bit,
412 disp_encoding_32bit
413 } disp_encoding;
f8a5c266 414
6b6b6807
L
415 /* Prefer the REX byte in encoding. */
416 bfd_boolean rex_encoding;
417
b6f8c7c4
L
418 /* Disable instruction size optimization. */
419 bfd_boolean no_optimize;
420
86fa6981
L
421 /* How to encode vector instructions. */
422 enum
423 {
424 vex_encoding_default = 0,
42e04b36 425 vex_encoding_vex,
86fa6981
L
426 vex_encoding_vex3,
427 vex_encoding_evex
428 } vec_encoding;
429
d5de92cf
L
430 /* REP prefix. */
431 const char *rep_prefix;
432
165de32a
L
433 /* HLE prefix. */
434 const char *hle_prefix;
42164a71 435
7e8b059b
L
436 /* Have BND prefix. */
437 const char *bnd_prefix;
438
04ef582a
L
439 /* Have NOTRACK prefix. */
440 const char *notrack_prefix;
441
891edac4 442 /* Error message. */
a65babc9 443 enum i386_error error;
252b5132
RH
444 };
445
446typedef struct _i386_insn i386_insn;
447
43234a1e
L
448/* Link RC type with corresponding string, that'll be looked for in
449 asm. */
450struct RC_name
451{
452 enum rc_type type;
453 const char *name;
454 unsigned int len;
455};
456
457static const struct RC_name RC_NamesTable[] =
458{
459 { rne, STRING_COMMA_LEN ("rn-sae") },
460 { rd, STRING_COMMA_LEN ("rd-sae") },
461 { ru, STRING_COMMA_LEN ("ru-sae") },
462 { rz, STRING_COMMA_LEN ("rz-sae") },
463 { saeonly, STRING_COMMA_LEN ("sae") },
464};
465
252b5132
RH
466/* List of chars besides those in app.c:symbol_chars that can start an
467 operand. Used to prevent the scrubber eating vital white-space. */
86fa6981 468const char extra_symbol_chars[] = "*%-([{}"
252b5132 469#ifdef LEX_AT
32137342
NC
470 "@"
471#endif
472#ifdef LEX_QM
473 "?"
252b5132 474#endif
32137342 475 ;
252b5132 476
29b0f896
AM
477#if (defined (TE_I386AIX) \
478 || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) \
3896cfd5 479 && !defined (TE_GNU) \
29b0f896 480 && !defined (TE_LINUX) \
8d63c93e 481 && !defined (TE_NACL) \
29b0f896 482 && !defined (TE_FreeBSD) \
5b806d27 483 && !defined (TE_DragonFly) \
29b0f896 484 && !defined (TE_NetBSD)))
252b5132 485/* This array holds the chars that always start a comment. If the
b3b91714
AM
486 pre-processor is disabled, these aren't very useful. The option
487 --divide will remove '/' from this list. */
488const char *i386_comment_chars = "#/";
489#define SVR4_COMMENT_CHARS 1
252b5132 490#define PREFIX_SEPARATOR '\\'
252b5132 491
b3b91714
AM
492#else
493const char *i386_comment_chars = "#";
494#define PREFIX_SEPARATOR '/'
495#endif
496
252b5132
RH
497/* This array holds the chars that only start a comment at the beginning of
498 a line. If the line seems to have the form '# 123 filename'
ce8a8b2f
AM
499 .line and .file directives will appear in the pre-processed output.
500 Note that input_file.c hand checks for '#' at the beginning of the
252b5132 501 first line of the input file. This is because the compiler outputs
ce8a8b2f
AM
502 #NO_APP at the beginning of its output.
503 Also note that comments started like this one will always work if
252b5132 504 '/' isn't otherwise defined. */
b3b91714 505const char line_comment_chars[] = "#/";
252b5132 506
63a0b638 507const char line_separator_chars[] = ";";
252b5132 508
ce8a8b2f
AM
509/* Chars that can be used to separate mant from exp in floating point
510 nums. */
252b5132
RH
511const char EXP_CHARS[] = "eE";
512
ce8a8b2f
AM
513/* Chars that mean this number is a floating point constant
514 As in 0f12.456
515 or 0d1.2345e12. */
252b5132
RH
516const char FLT_CHARS[] = "fFdDxX";
517
ce8a8b2f 518/* Tables for lexical analysis. */
252b5132
RH
519static char mnemonic_chars[256];
520static char register_chars[256];
521static char operand_chars[256];
522static char identifier_chars[256];
523static char digit_chars[256];
524
ce8a8b2f 525/* Lexical macros. */
252b5132
RH
526#define is_mnemonic_char(x) (mnemonic_chars[(unsigned char) x])
527#define is_operand_char(x) (operand_chars[(unsigned char) x])
528#define is_register_char(x) (register_chars[(unsigned char) x])
529#define is_space_char(x) ((x) == ' ')
530#define is_identifier_char(x) (identifier_chars[(unsigned char) x])
531#define is_digit_char(x) (digit_chars[(unsigned char) x])
532
0234cb7c 533/* All non-digit non-letter characters that may occur in an operand. */
252b5132
RH
534static char operand_special_chars[] = "%$-+(,)*._~/<>|&^!:[@]";
535
536/* md_assemble() always leaves the strings it's passed unaltered. To
537 effect this we maintain a stack of saved characters that we've smashed
538 with '\0's (indicating end of strings for various sub-fields of the
47926f60 539 assembler instruction). */
252b5132 540static char save_stack[32];
ce8a8b2f 541static char *save_stack_p;
252b5132
RH
542#define END_STRING_AND_SAVE(s) \
543 do { *save_stack_p++ = *(s); *(s) = '\0'; } while (0)
544#define RESTORE_END_STRING(s) \
545 do { *(s) = *--save_stack_p; } while (0)
546
47926f60 547/* The instruction we're assembling. */
252b5132
RH
548static i386_insn i;
549
550/* Possible templates for current insn. */
551static const templates *current_templates;
552
31b2323c
L
553/* Per instruction expressionS buffers: max displacements & immediates. */
554static expressionS disp_expressions[MAX_MEMORY_OPERANDS];
555static expressionS im_expressions[MAX_IMMEDIATE_OPERANDS];
252b5132 556
47926f60 557/* Current operand we are working on. */
ee86248c 558static int this_operand = -1;
252b5132 559
3e73aa7c
JH
560/* We support four different modes. FLAG_CODE variable is used to distinguish
561 these. */
562
563enum flag_code {
564 CODE_32BIT,
565 CODE_16BIT,
566 CODE_64BIT };
567
568static enum flag_code flag_code;
4fa24527 569static unsigned int object_64bit;
862be3fb 570static unsigned int disallow_64bit_reloc;
3e73aa7c 571static int use_rela_relocations = 0;
e379e5f3
L
572/* __tls_get_addr/___tls_get_addr symbol for TLS. */
573static const char *tls_get_addr;
3e73aa7c 574
7af8ed2d
NC
575#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
576 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
577 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
578
351f65ca
L
579/* The ELF ABI to use. */
580enum x86_elf_abi
581{
582 I386_ABI,
7f56bc95
L
583 X86_64_ABI,
584 X86_64_X32_ABI
351f65ca
L
585};
586
587static enum x86_elf_abi x86_elf_abi = I386_ABI;
7af8ed2d 588#endif
351f65ca 589
167ad85b
TG
590#if defined (TE_PE) || defined (TE_PEP)
591/* Use big object file format. */
592static int use_big_obj = 0;
593#endif
594
8dcea932
L
595#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
596/* 1 if generating code for a shared library. */
597static int shared = 0;
598#endif
599
47926f60
KH
600/* 1 for intel syntax,
601 0 if att syntax. */
602static int intel_syntax = 0;
252b5132 603
4b5aaf5f
L
604static enum x86_64_isa
605{
606 amd64 = 1, /* AMD64 ISA. */
607 intel64 /* Intel64 ISA. */
608} isa64;
e89c5eaa 609
1efbbeb4
L
610/* 1 for intel mnemonic,
611 0 if att mnemonic. */
612static int intel_mnemonic = !SYSV386_COMPAT;
613
a60de03c
JB
614/* 1 if pseudo registers are permitted. */
615static int allow_pseudo_reg = 0;
616
47926f60
KH
617/* 1 if register prefix % not required. */
618static int allow_naked_reg = 0;
252b5132 619
33eaf5de 620/* 1 if the assembler should add BND prefix for all control-transferring
7e8b059b
L
621 instructions supporting it, even if this prefix wasn't specified
622 explicitly. */
623static int add_bnd_prefix = 0;
624
ba104c83 625/* 1 if pseudo index register, eiz/riz, is allowed . */
db51cc60
L
626static int allow_index_reg = 0;
627
d022bddd
IT
628/* 1 if the assembler should ignore LOCK prefix, even if it was
629 specified explicitly. */
630static int omit_lock_prefix = 0;
631
e4e00185
AS
632/* 1 if the assembler should encode lfence, mfence, and sfence as
633 "lock addl $0, (%{re}sp)". */
634static int avoid_fence = 0;
635
e379e5f3
L
636/* Type of the previous instruction. */
637static struct
638 {
639 segT seg;
640 const char *file;
641 const char *name;
642 unsigned int line;
643 enum last_insn_kind
644 {
645 last_insn_other = 0,
646 last_insn_directive,
647 last_insn_prefix
648 } kind;
649 } last_insn;
650
0cb4071e
L
651/* 1 if the assembler should generate relax relocations. */
652
653static int generate_relax_relocations
654 = DEFAULT_GENERATE_X86_RELAX_RELOCATIONS;
655
7bab8ab5 656static enum check_kind
daf50ae7 657 {
7bab8ab5
JB
658 check_none = 0,
659 check_warning,
660 check_error
daf50ae7 661 }
7bab8ab5 662sse_check, operand_check = check_warning;
daf50ae7 663
e379e5f3
L
664/* Non-zero if branches should be aligned within power of 2 boundary. */
665static int align_branch_power = 0;
666
667/* Types of branches to align. */
668enum align_branch_kind
669 {
670 align_branch_none = 0,
671 align_branch_jcc = 1,
672 align_branch_fused = 2,
673 align_branch_jmp = 3,
674 align_branch_call = 4,
675 align_branch_indirect = 5,
676 align_branch_ret = 6
677 };
678
679/* Type bits of branches to align. */
680enum align_branch_bit
681 {
682 align_branch_jcc_bit = 1 << align_branch_jcc,
683 align_branch_fused_bit = 1 << align_branch_fused,
684 align_branch_jmp_bit = 1 << align_branch_jmp,
685 align_branch_call_bit = 1 << align_branch_call,
686 align_branch_indirect_bit = 1 << align_branch_indirect,
687 align_branch_ret_bit = 1 << align_branch_ret
688 };
689
690static unsigned int align_branch = (align_branch_jcc_bit
691 | align_branch_fused_bit
692 | align_branch_jmp_bit);
693
694/* The maximum padding size for fused jcc. CMP like instruction can
695 be 9 bytes and jcc can be 6 bytes. Leave room just in case for
696 prefixes. */
697#define MAX_FUSED_JCC_PADDING_SIZE 20
698
699/* The maximum number of prefixes added for an instruction. */
700static unsigned int align_branch_prefix_size = 5;
701
b6f8c7c4
L
702/* Optimization:
703 1. Clear the REX_W bit with register operand if possible.
704 2. Above plus use 128bit vector instruction to clear the full vector
705 register.
706 */
707static int optimize = 0;
708
709/* Optimization:
710 1. Clear the REX_W bit with register operand if possible.
711 2. Above plus use 128bit vector instruction to clear the full vector
712 register.
713 3. Above plus optimize "test{q,l,w} $imm8,%r{64,32,16}" to
714 "testb $imm7,%r8".
715 */
716static int optimize_for_space = 0;
717
2ca3ace5
L
718/* Register prefix used for error message. */
719static const char *register_prefix = "%";
720
47926f60
KH
721/* Used in 16 bit gcc mode to add an l suffix to call, ret, enter,
722 leave, push, and pop instructions so that gcc has the same stack
723 frame as in 32 bit mode. */
724static char stackop_size = '\0';
eecb386c 725
12b55ccc
L
726/* Non-zero to optimize code alignment. */
727int optimize_align_code = 1;
728
47926f60
KH
729/* Non-zero to quieten some warnings. */
730static int quiet_warnings = 0;
a38cf1db 731
47926f60
KH
732/* CPU name. */
733static const char *cpu_arch_name = NULL;
6305a203 734static char *cpu_sub_arch_name = NULL;
a38cf1db 735
47926f60 736/* CPU feature flags. */
40fb9820
L
737static i386_cpu_flags cpu_arch_flags = CPU_UNKNOWN_FLAGS;
738
ccc9c027
L
739/* If we have selected a cpu we are generating instructions for. */
740static int cpu_arch_tune_set = 0;
741
9103f4f4 742/* Cpu we are generating instructions for. */
fbf3f584 743enum processor_type cpu_arch_tune = PROCESSOR_UNKNOWN;
9103f4f4
L
744
745/* CPU feature flags of cpu we are generating instructions for. */
40fb9820 746static i386_cpu_flags cpu_arch_tune_flags;
9103f4f4 747
ccc9c027 748/* CPU instruction set architecture used. */
fbf3f584 749enum processor_type cpu_arch_isa = PROCESSOR_UNKNOWN;
ccc9c027 750
9103f4f4 751/* CPU feature flags of instruction set architecture used. */
fbf3f584 752i386_cpu_flags cpu_arch_isa_flags;
9103f4f4 753
fddf5b5b
AM
754/* If set, conditional jumps are not automatically promoted to handle
755 larger than a byte offset. */
756static unsigned int no_cond_jump_promotion = 0;
757
c0f3af97
L
758/* Encode SSE instructions with VEX prefix. */
759static unsigned int sse2avx;
760
539f890d
L
761/* Encode scalar AVX instructions with specific vector length. */
762static enum
763 {
764 vex128 = 0,
765 vex256
766 } avxscalar;
767
03751133
L
768/* Encode VEX WIG instructions with specific vex.w. */
769static enum
770 {
771 vexw0 = 0,
772 vexw1
773 } vexwig;
774
43234a1e
L
775/* Encode scalar EVEX LIG instructions with specific vector length. */
776static enum
777 {
778 evexl128 = 0,
779 evexl256,
780 evexl512
781 } evexlig;
782
783/* Encode EVEX WIG instructions with specific evex.w. */
784static enum
785 {
786 evexw0 = 0,
787 evexw1
788 } evexwig;
789
d3d3c6db
IT
790/* Value to encode in EVEX RC bits, for SAE-only instructions. */
791static enum rc_type evexrcig = rne;
792
29b0f896 793/* Pre-defined "_GLOBAL_OFFSET_TABLE_". */
87c245cc 794static symbolS *GOT_symbol;
29b0f896 795
a4447b93
RH
796/* The dwarf2 return column, adjusted for 32 or 64 bit. */
797unsigned int x86_dwarf2_return_column;
798
799/* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
800int x86_cie_data_alignment;
801
252b5132 802/* Interface to relax_segment.
fddf5b5b
AM
803 There are 3 major relax states for 386 jump insns because the
804 different types of jumps add different sizes to frags when we're
e379e5f3
L
805 figuring out what sort of jump to choose to reach a given label.
806
807 BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING are used to align
808 branches which are handled by md_estimate_size_before_relax() and
809 i386_generic_table_relax_frag(). */
252b5132 810
47926f60 811/* Types. */
93c2a809
AM
812#define UNCOND_JUMP 0
813#define COND_JUMP 1
814#define COND_JUMP86 2
e379e5f3
L
815#define BRANCH_PADDING 3
816#define BRANCH_PREFIX 4
817#define FUSED_JCC_PADDING 5
fddf5b5b 818
47926f60 819/* Sizes. */
252b5132
RH
820#define CODE16 1
821#define SMALL 0
29b0f896 822#define SMALL16 (SMALL | CODE16)
252b5132 823#define BIG 2
29b0f896 824#define BIG16 (BIG | CODE16)
252b5132
RH
825
826#ifndef INLINE
827#ifdef __GNUC__
828#define INLINE __inline__
829#else
830#define INLINE
831#endif
832#endif
833
fddf5b5b
AM
834#define ENCODE_RELAX_STATE(type, size) \
835 ((relax_substateT) (((type) << 2) | (size)))
836#define TYPE_FROM_RELAX_STATE(s) \
837 ((s) >> 2)
838#define DISP_SIZE_FROM_RELAX_STATE(s) \
839 ((((s) & 3) == BIG ? 4 : (((s) & 3) == BIG16 ? 2 : 1)))
252b5132
RH
840
841/* This table is used by relax_frag to promote short jumps to long
842 ones where necessary. SMALL (short) jumps may be promoted to BIG
843 (32 bit long) ones, and SMALL16 jumps to BIG16 (16 bit long). We
844 don't allow a short jump in a 32 bit code segment to be promoted to
845 a 16 bit offset jump because it's slower (requires data size
846 prefix), and doesn't work, unless the destination is in the bottom
847 64k of the code segment (The top 16 bits of eip are zeroed). */
848
849const relax_typeS md_relax_table[] =
850{
24eab124
AM
851 /* The fields are:
852 1) most positive reach of this state,
853 2) most negative reach of this state,
93c2a809 854 3) how many bytes this mode will have in the variable part of the frag
ce8a8b2f 855 4) which index into the table to try if we can't fit into this one. */
252b5132 856
fddf5b5b 857 /* UNCOND_JUMP states. */
93c2a809
AM
858 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG)},
859 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16)},
860 /* dword jmp adds 4 bytes to frag:
861 0 extra opcode bytes, 4 displacement bytes. */
252b5132 862 {0, 0, 4, 0},
93c2a809
AM
863 /* word jmp adds 2 byte2 to frag:
864 0 extra opcode bytes, 2 displacement bytes. */
252b5132
RH
865 {0, 0, 2, 0},
866
93c2a809
AM
867 /* COND_JUMP states. */
868 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG)},
869 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG16)},
870 /* dword conditionals adds 5 bytes to frag:
871 1 extra opcode byte, 4 displacement bytes. */
872 {0, 0, 5, 0},
fddf5b5b 873 /* word conditionals add 3 bytes to frag:
93c2a809
AM
874 1 extra opcode byte, 2 displacement bytes. */
875 {0, 0, 3, 0},
876
877 /* COND_JUMP86 states. */
878 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG)},
879 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG16)},
880 /* dword conditionals adds 5 bytes to frag:
881 1 extra opcode byte, 4 displacement bytes. */
882 {0, 0, 5, 0},
883 /* word conditionals add 4 bytes to frag:
884 1 displacement byte and a 3 byte long branch insn. */
885 {0, 0, 4, 0}
252b5132
RH
886};
887
9103f4f4
L
888static const arch_entry cpu_arch[] =
889{
89507696
JB
890 /* Do not replace the first two entries - i386_target_format()
891 relies on them being there in this order. */
8a2c8fef 892 { STRING_COMMA_LEN ("generic32"), PROCESSOR_GENERIC32,
293f5f65 893 CPU_GENERIC32_FLAGS, 0 },
8a2c8fef 894 { STRING_COMMA_LEN ("generic64"), PROCESSOR_GENERIC64,
293f5f65 895 CPU_GENERIC64_FLAGS, 0 },
8a2c8fef 896 { STRING_COMMA_LEN ("i8086"), PROCESSOR_UNKNOWN,
293f5f65 897 CPU_NONE_FLAGS, 0 },
8a2c8fef 898 { STRING_COMMA_LEN ("i186"), PROCESSOR_UNKNOWN,
293f5f65 899 CPU_I186_FLAGS, 0 },
8a2c8fef 900 { STRING_COMMA_LEN ("i286"), PROCESSOR_UNKNOWN,
293f5f65 901 CPU_I286_FLAGS, 0 },
8a2c8fef 902 { STRING_COMMA_LEN ("i386"), PROCESSOR_I386,
293f5f65 903 CPU_I386_FLAGS, 0 },
8a2c8fef 904 { STRING_COMMA_LEN ("i486"), PROCESSOR_I486,
293f5f65 905 CPU_I486_FLAGS, 0 },
8a2c8fef 906 { STRING_COMMA_LEN ("i586"), PROCESSOR_PENTIUM,
293f5f65 907 CPU_I586_FLAGS, 0 },
8a2c8fef 908 { STRING_COMMA_LEN ("i686"), PROCESSOR_PENTIUMPRO,
293f5f65 909 CPU_I686_FLAGS, 0 },
8a2c8fef 910 { STRING_COMMA_LEN ("pentium"), PROCESSOR_PENTIUM,
293f5f65 911 CPU_I586_FLAGS, 0 },
8a2c8fef 912 { STRING_COMMA_LEN ("pentiumpro"), PROCESSOR_PENTIUMPRO,
293f5f65 913 CPU_PENTIUMPRO_FLAGS, 0 },
8a2c8fef 914 { STRING_COMMA_LEN ("pentiumii"), PROCESSOR_PENTIUMPRO,
293f5f65 915 CPU_P2_FLAGS, 0 },
8a2c8fef 916 { STRING_COMMA_LEN ("pentiumiii"),PROCESSOR_PENTIUMPRO,
293f5f65 917 CPU_P3_FLAGS, 0 },
8a2c8fef 918 { STRING_COMMA_LEN ("pentium4"), PROCESSOR_PENTIUM4,
293f5f65 919 CPU_P4_FLAGS, 0 },
8a2c8fef 920 { STRING_COMMA_LEN ("prescott"), PROCESSOR_NOCONA,
293f5f65 921 CPU_CORE_FLAGS, 0 },
8a2c8fef 922 { STRING_COMMA_LEN ("nocona"), PROCESSOR_NOCONA,
293f5f65 923 CPU_NOCONA_FLAGS, 0 },
8a2c8fef 924 { STRING_COMMA_LEN ("yonah"), PROCESSOR_CORE,
293f5f65 925 CPU_CORE_FLAGS, 1 },
8a2c8fef 926 { STRING_COMMA_LEN ("core"), PROCESSOR_CORE,
293f5f65 927 CPU_CORE_FLAGS, 0 },
8a2c8fef 928 { STRING_COMMA_LEN ("merom"), PROCESSOR_CORE2,
293f5f65 929 CPU_CORE2_FLAGS, 1 },
8a2c8fef 930 { STRING_COMMA_LEN ("core2"), PROCESSOR_CORE2,
293f5f65 931 CPU_CORE2_FLAGS, 0 },
8a2c8fef 932 { STRING_COMMA_LEN ("corei7"), PROCESSOR_COREI7,
293f5f65 933 CPU_COREI7_FLAGS, 0 },
8a2c8fef 934 { STRING_COMMA_LEN ("l1om"), PROCESSOR_L1OM,
293f5f65 935 CPU_L1OM_FLAGS, 0 },
7a9068fe 936 { STRING_COMMA_LEN ("k1om"), PROCESSOR_K1OM,
293f5f65 937 CPU_K1OM_FLAGS, 0 },
81486035 938 { STRING_COMMA_LEN ("iamcu"), PROCESSOR_IAMCU,
293f5f65 939 CPU_IAMCU_FLAGS, 0 },
8a2c8fef 940 { STRING_COMMA_LEN ("k6"), PROCESSOR_K6,
293f5f65 941 CPU_K6_FLAGS, 0 },
8a2c8fef 942 { STRING_COMMA_LEN ("k6_2"), PROCESSOR_K6,
293f5f65 943 CPU_K6_2_FLAGS, 0 },
8a2c8fef 944 { STRING_COMMA_LEN ("athlon"), PROCESSOR_ATHLON,
293f5f65 945 CPU_ATHLON_FLAGS, 0 },
8a2c8fef 946 { STRING_COMMA_LEN ("sledgehammer"), PROCESSOR_K8,
293f5f65 947 CPU_K8_FLAGS, 1 },
8a2c8fef 948 { STRING_COMMA_LEN ("opteron"), PROCESSOR_K8,
293f5f65 949 CPU_K8_FLAGS, 0 },
8a2c8fef 950 { STRING_COMMA_LEN ("k8"), PROCESSOR_K8,
293f5f65 951 CPU_K8_FLAGS, 0 },
8a2c8fef 952 { STRING_COMMA_LEN ("amdfam10"), PROCESSOR_AMDFAM10,
293f5f65 953 CPU_AMDFAM10_FLAGS, 0 },
8aedb9fe 954 { STRING_COMMA_LEN ("bdver1"), PROCESSOR_BD,
293f5f65 955 CPU_BDVER1_FLAGS, 0 },
8aedb9fe 956 { STRING_COMMA_LEN ("bdver2"), PROCESSOR_BD,
293f5f65 957 CPU_BDVER2_FLAGS, 0 },
5e5c50d3 958 { STRING_COMMA_LEN ("bdver3"), PROCESSOR_BD,
293f5f65 959 CPU_BDVER3_FLAGS, 0 },
c7b0bd56 960 { STRING_COMMA_LEN ("bdver4"), PROCESSOR_BD,
293f5f65 961 CPU_BDVER4_FLAGS, 0 },
029f3522 962 { STRING_COMMA_LEN ("znver1"), PROCESSOR_ZNVER,
293f5f65 963 CPU_ZNVER1_FLAGS, 0 },
a9660a6f
AP
964 { STRING_COMMA_LEN ("znver2"), PROCESSOR_ZNVER,
965 CPU_ZNVER2_FLAGS, 0 },
7b458c12 966 { STRING_COMMA_LEN ("btver1"), PROCESSOR_BT,
293f5f65 967 CPU_BTVER1_FLAGS, 0 },
7b458c12 968 { STRING_COMMA_LEN ("btver2"), PROCESSOR_BT,
293f5f65 969 CPU_BTVER2_FLAGS, 0 },
8a2c8fef 970 { STRING_COMMA_LEN (".8087"), PROCESSOR_UNKNOWN,
293f5f65 971 CPU_8087_FLAGS, 0 },
8a2c8fef 972 { STRING_COMMA_LEN (".287"), PROCESSOR_UNKNOWN,
293f5f65 973 CPU_287_FLAGS, 0 },
8a2c8fef 974 { STRING_COMMA_LEN (".387"), PROCESSOR_UNKNOWN,
293f5f65 975 CPU_387_FLAGS, 0 },
1848e567
L
976 { STRING_COMMA_LEN (".687"), PROCESSOR_UNKNOWN,
977 CPU_687_FLAGS, 0 },
d871f3f4
L
978 { STRING_COMMA_LEN (".cmov"), PROCESSOR_UNKNOWN,
979 CPU_CMOV_FLAGS, 0 },
980 { STRING_COMMA_LEN (".fxsr"), PROCESSOR_UNKNOWN,
981 CPU_FXSR_FLAGS, 0 },
8a2c8fef 982 { STRING_COMMA_LEN (".mmx"), PROCESSOR_UNKNOWN,
293f5f65 983 CPU_MMX_FLAGS, 0 },
8a2c8fef 984 { STRING_COMMA_LEN (".sse"), PROCESSOR_UNKNOWN,
293f5f65 985 CPU_SSE_FLAGS, 0 },
8a2c8fef 986 { STRING_COMMA_LEN (".sse2"), PROCESSOR_UNKNOWN,
293f5f65 987 CPU_SSE2_FLAGS, 0 },
8a2c8fef 988 { STRING_COMMA_LEN (".sse3"), PROCESSOR_UNKNOWN,
293f5f65 989 CPU_SSE3_FLAGS, 0 },
8a2c8fef 990 { STRING_COMMA_LEN (".ssse3"), PROCESSOR_UNKNOWN,
293f5f65 991 CPU_SSSE3_FLAGS, 0 },
8a2c8fef 992 { STRING_COMMA_LEN (".sse4.1"), PROCESSOR_UNKNOWN,
293f5f65 993 CPU_SSE4_1_FLAGS, 0 },
8a2c8fef 994 { STRING_COMMA_LEN (".sse4.2"), PROCESSOR_UNKNOWN,
293f5f65 995 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 996 { STRING_COMMA_LEN (".sse4"), PROCESSOR_UNKNOWN,
293f5f65 997 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 998 { STRING_COMMA_LEN (".avx"), PROCESSOR_UNKNOWN,
293f5f65 999 CPU_AVX_FLAGS, 0 },
6c30d220 1000 { STRING_COMMA_LEN (".avx2"), PROCESSOR_UNKNOWN,
293f5f65 1001 CPU_AVX2_FLAGS, 0 },
43234a1e 1002 { STRING_COMMA_LEN (".avx512f"), PROCESSOR_UNKNOWN,
293f5f65 1003 CPU_AVX512F_FLAGS, 0 },
43234a1e 1004 { STRING_COMMA_LEN (".avx512cd"), PROCESSOR_UNKNOWN,
293f5f65 1005 CPU_AVX512CD_FLAGS, 0 },
43234a1e 1006 { STRING_COMMA_LEN (".avx512er"), PROCESSOR_UNKNOWN,
293f5f65 1007 CPU_AVX512ER_FLAGS, 0 },
43234a1e 1008 { STRING_COMMA_LEN (".avx512pf"), PROCESSOR_UNKNOWN,
293f5f65 1009 CPU_AVX512PF_FLAGS, 0 },
1dfc6506 1010 { STRING_COMMA_LEN (".avx512dq"), PROCESSOR_UNKNOWN,
293f5f65 1011 CPU_AVX512DQ_FLAGS, 0 },
1dfc6506 1012 { STRING_COMMA_LEN (".avx512bw"), PROCESSOR_UNKNOWN,
293f5f65 1013 CPU_AVX512BW_FLAGS, 0 },
1dfc6506 1014 { STRING_COMMA_LEN (".avx512vl"), PROCESSOR_UNKNOWN,
293f5f65 1015 CPU_AVX512VL_FLAGS, 0 },
8a2c8fef 1016 { STRING_COMMA_LEN (".vmx"), PROCESSOR_UNKNOWN,
293f5f65 1017 CPU_VMX_FLAGS, 0 },
8729a6f6 1018 { STRING_COMMA_LEN (".vmfunc"), PROCESSOR_UNKNOWN,
293f5f65 1019 CPU_VMFUNC_FLAGS, 0 },
8a2c8fef 1020 { STRING_COMMA_LEN (".smx"), PROCESSOR_UNKNOWN,
293f5f65 1021 CPU_SMX_FLAGS, 0 },
8a2c8fef 1022 { STRING_COMMA_LEN (".xsave"), PROCESSOR_UNKNOWN,
293f5f65 1023 CPU_XSAVE_FLAGS, 0 },
c7b8aa3a 1024 { STRING_COMMA_LEN (".xsaveopt"), PROCESSOR_UNKNOWN,
293f5f65 1025 CPU_XSAVEOPT_FLAGS, 0 },
1dfc6506 1026 { STRING_COMMA_LEN (".xsavec"), PROCESSOR_UNKNOWN,
293f5f65 1027 CPU_XSAVEC_FLAGS, 0 },
1dfc6506 1028 { STRING_COMMA_LEN (".xsaves"), PROCESSOR_UNKNOWN,
293f5f65 1029 CPU_XSAVES_FLAGS, 0 },
8a2c8fef 1030 { STRING_COMMA_LEN (".aes"), PROCESSOR_UNKNOWN,
293f5f65 1031 CPU_AES_FLAGS, 0 },
8a2c8fef 1032 { STRING_COMMA_LEN (".pclmul"), PROCESSOR_UNKNOWN,
293f5f65 1033 CPU_PCLMUL_FLAGS, 0 },
8a2c8fef 1034 { STRING_COMMA_LEN (".clmul"), PROCESSOR_UNKNOWN,
293f5f65 1035 CPU_PCLMUL_FLAGS, 1 },
c7b8aa3a 1036 { STRING_COMMA_LEN (".fsgsbase"), PROCESSOR_UNKNOWN,
293f5f65 1037 CPU_FSGSBASE_FLAGS, 0 },
c7b8aa3a 1038 { STRING_COMMA_LEN (".rdrnd"), PROCESSOR_UNKNOWN,
293f5f65 1039 CPU_RDRND_FLAGS, 0 },
c7b8aa3a 1040 { STRING_COMMA_LEN (".f16c"), PROCESSOR_UNKNOWN,
293f5f65 1041 CPU_F16C_FLAGS, 0 },
6c30d220 1042 { STRING_COMMA_LEN (".bmi2"), PROCESSOR_UNKNOWN,
293f5f65 1043 CPU_BMI2_FLAGS, 0 },
8a2c8fef 1044 { STRING_COMMA_LEN (".fma"), PROCESSOR_UNKNOWN,
293f5f65 1045 CPU_FMA_FLAGS, 0 },
8a2c8fef 1046 { STRING_COMMA_LEN (".fma4"), PROCESSOR_UNKNOWN,
293f5f65 1047 CPU_FMA4_FLAGS, 0 },
8a2c8fef 1048 { STRING_COMMA_LEN (".xop"), PROCESSOR_UNKNOWN,
293f5f65 1049 CPU_XOP_FLAGS, 0 },
8a2c8fef 1050 { STRING_COMMA_LEN (".lwp"), PROCESSOR_UNKNOWN,
293f5f65 1051 CPU_LWP_FLAGS, 0 },
8a2c8fef 1052 { STRING_COMMA_LEN (".movbe"), PROCESSOR_UNKNOWN,
293f5f65 1053 CPU_MOVBE_FLAGS, 0 },
60aa667e 1054 { STRING_COMMA_LEN (".cx16"), PROCESSOR_UNKNOWN,
293f5f65 1055 CPU_CX16_FLAGS, 0 },
8a2c8fef 1056 { STRING_COMMA_LEN (".ept"), PROCESSOR_UNKNOWN,
293f5f65 1057 CPU_EPT_FLAGS, 0 },
6c30d220 1058 { STRING_COMMA_LEN (".lzcnt"), PROCESSOR_UNKNOWN,
293f5f65 1059 CPU_LZCNT_FLAGS, 0 },
42164a71 1060 { STRING_COMMA_LEN (".hle"), PROCESSOR_UNKNOWN,
293f5f65 1061 CPU_HLE_FLAGS, 0 },
42164a71 1062 { STRING_COMMA_LEN (".rtm"), PROCESSOR_UNKNOWN,
293f5f65 1063 CPU_RTM_FLAGS, 0 },
6c30d220 1064 { STRING_COMMA_LEN (".invpcid"), PROCESSOR_UNKNOWN,
293f5f65 1065 CPU_INVPCID_FLAGS, 0 },
8a2c8fef 1066 { STRING_COMMA_LEN (".clflush"), PROCESSOR_UNKNOWN,
293f5f65 1067 CPU_CLFLUSH_FLAGS, 0 },
22109423 1068 { STRING_COMMA_LEN (".nop"), PROCESSOR_UNKNOWN,
293f5f65 1069 CPU_NOP_FLAGS, 0 },
8a2c8fef 1070 { STRING_COMMA_LEN (".syscall"), PROCESSOR_UNKNOWN,
293f5f65 1071 CPU_SYSCALL_FLAGS, 0 },
8a2c8fef 1072 { STRING_COMMA_LEN (".rdtscp"), PROCESSOR_UNKNOWN,
293f5f65 1073 CPU_RDTSCP_FLAGS, 0 },
8a2c8fef 1074 { STRING_COMMA_LEN (".3dnow"), PROCESSOR_UNKNOWN,
293f5f65 1075 CPU_3DNOW_FLAGS, 0 },
8a2c8fef 1076 { STRING_COMMA_LEN (".3dnowa"), PROCESSOR_UNKNOWN,
293f5f65 1077 CPU_3DNOWA_FLAGS, 0 },
8a2c8fef 1078 { STRING_COMMA_LEN (".padlock"), PROCESSOR_UNKNOWN,
293f5f65 1079 CPU_PADLOCK_FLAGS, 0 },
8a2c8fef 1080 { STRING_COMMA_LEN (".pacifica"), PROCESSOR_UNKNOWN,
293f5f65 1081 CPU_SVME_FLAGS, 1 },
8a2c8fef 1082 { STRING_COMMA_LEN (".svme"), PROCESSOR_UNKNOWN,
293f5f65 1083 CPU_SVME_FLAGS, 0 },
8a2c8fef 1084 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
293f5f65 1085 CPU_SSE4A_FLAGS, 0 },
8a2c8fef 1086 { STRING_COMMA_LEN (".abm"), PROCESSOR_UNKNOWN,
293f5f65 1087 CPU_ABM_FLAGS, 0 },
87973e9f 1088 { STRING_COMMA_LEN (".bmi"), PROCESSOR_UNKNOWN,
293f5f65 1089 CPU_BMI_FLAGS, 0 },
2a2a0f38 1090 { STRING_COMMA_LEN (".tbm"), PROCESSOR_UNKNOWN,
293f5f65 1091 CPU_TBM_FLAGS, 0 },
e2e1fcde 1092 { STRING_COMMA_LEN (".adx"), PROCESSOR_UNKNOWN,
293f5f65 1093 CPU_ADX_FLAGS, 0 },
e2e1fcde 1094 { STRING_COMMA_LEN (".rdseed"), PROCESSOR_UNKNOWN,
293f5f65 1095 CPU_RDSEED_FLAGS, 0 },
e2e1fcde 1096 { STRING_COMMA_LEN (".prfchw"), PROCESSOR_UNKNOWN,
293f5f65 1097 CPU_PRFCHW_FLAGS, 0 },
5c111e37 1098 { STRING_COMMA_LEN (".smap"), PROCESSOR_UNKNOWN,
293f5f65 1099 CPU_SMAP_FLAGS, 0 },
7e8b059b 1100 { STRING_COMMA_LEN (".mpx"), PROCESSOR_UNKNOWN,
293f5f65 1101 CPU_MPX_FLAGS, 0 },
a0046408 1102 { STRING_COMMA_LEN (".sha"), PROCESSOR_UNKNOWN,
293f5f65 1103 CPU_SHA_FLAGS, 0 },
963f3586 1104 { STRING_COMMA_LEN (".clflushopt"), PROCESSOR_UNKNOWN,
293f5f65 1105 CPU_CLFLUSHOPT_FLAGS, 0 },
dcf893b5 1106 { STRING_COMMA_LEN (".prefetchwt1"), PROCESSOR_UNKNOWN,
293f5f65 1107 CPU_PREFETCHWT1_FLAGS, 0 },
2cf200a4 1108 { STRING_COMMA_LEN (".se1"), PROCESSOR_UNKNOWN,
293f5f65 1109 CPU_SE1_FLAGS, 0 },
c5e7287a 1110 { STRING_COMMA_LEN (".clwb"), PROCESSOR_UNKNOWN,
293f5f65 1111 CPU_CLWB_FLAGS, 0 },
2cc1b5aa 1112 { STRING_COMMA_LEN (".avx512ifma"), PROCESSOR_UNKNOWN,
293f5f65 1113 CPU_AVX512IFMA_FLAGS, 0 },
14f195c9 1114 { STRING_COMMA_LEN (".avx512vbmi"), PROCESSOR_UNKNOWN,
293f5f65 1115 CPU_AVX512VBMI_FLAGS, 0 },
920d2ddc
IT
1116 { STRING_COMMA_LEN (".avx512_4fmaps"), PROCESSOR_UNKNOWN,
1117 CPU_AVX512_4FMAPS_FLAGS, 0 },
47acf0bd
IT
1118 { STRING_COMMA_LEN (".avx512_4vnniw"), PROCESSOR_UNKNOWN,
1119 CPU_AVX512_4VNNIW_FLAGS, 0 },
620214f7
IT
1120 { STRING_COMMA_LEN (".avx512_vpopcntdq"), PROCESSOR_UNKNOWN,
1121 CPU_AVX512_VPOPCNTDQ_FLAGS, 0 },
53467f57
IT
1122 { STRING_COMMA_LEN (".avx512_vbmi2"), PROCESSOR_UNKNOWN,
1123 CPU_AVX512_VBMI2_FLAGS, 0 },
8cfcb765
IT
1124 { STRING_COMMA_LEN (".avx512_vnni"), PROCESSOR_UNKNOWN,
1125 CPU_AVX512_VNNI_FLAGS, 0 },
ee6872be
IT
1126 { STRING_COMMA_LEN (".avx512_bitalg"), PROCESSOR_UNKNOWN,
1127 CPU_AVX512_BITALG_FLAGS, 0 },
029f3522 1128 { STRING_COMMA_LEN (".clzero"), PROCESSOR_UNKNOWN,
293f5f65 1129 CPU_CLZERO_FLAGS, 0 },
9916071f 1130 { STRING_COMMA_LEN (".mwaitx"), PROCESSOR_UNKNOWN,
293f5f65 1131 CPU_MWAITX_FLAGS, 0 },
8eab4136 1132 { STRING_COMMA_LEN (".ospke"), PROCESSOR_UNKNOWN,
293f5f65 1133 CPU_OSPKE_FLAGS, 0 },
8bc52696 1134 { STRING_COMMA_LEN (".rdpid"), PROCESSOR_UNKNOWN,
293f5f65 1135 CPU_RDPID_FLAGS, 0 },
6b40c462
L
1136 { STRING_COMMA_LEN (".ptwrite"), PROCESSOR_UNKNOWN,
1137 CPU_PTWRITE_FLAGS, 0 },
d777820b
IT
1138 { STRING_COMMA_LEN (".ibt"), PROCESSOR_UNKNOWN,
1139 CPU_IBT_FLAGS, 0 },
1140 { STRING_COMMA_LEN (".shstk"), PROCESSOR_UNKNOWN,
1141 CPU_SHSTK_FLAGS, 0 },
48521003
IT
1142 { STRING_COMMA_LEN (".gfni"), PROCESSOR_UNKNOWN,
1143 CPU_GFNI_FLAGS, 0 },
8dcf1fad
IT
1144 { STRING_COMMA_LEN (".vaes"), PROCESSOR_UNKNOWN,
1145 CPU_VAES_FLAGS, 0 },
ff1982d5
IT
1146 { STRING_COMMA_LEN (".vpclmulqdq"), PROCESSOR_UNKNOWN,
1147 CPU_VPCLMULQDQ_FLAGS, 0 },
3233d7d0
IT
1148 { STRING_COMMA_LEN (".wbnoinvd"), PROCESSOR_UNKNOWN,
1149 CPU_WBNOINVD_FLAGS, 0 },
be3a8dca
IT
1150 { STRING_COMMA_LEN (".pconfig"), PROCESSOR_UNKNOWN,
1151 CPU_PCONFIG_FLAGS, 0 },
de89d0a3
IT
1152 { STRING_COMMA_LEN (".waitpkg"), PROCESSOR_UNKNOWN,
1153 CPU_WAITPKG_FLAGS, 0 },
c48935d7
IT
1154 { STRING_COMMA_LEN (".cldemote"), PROCESSOR_UNKNOWN,
1155 CPU_CLDEMOTE_FLAGS, 0 },
c0a30a9f
L
1156 { STRING_COMMA_LEN (".movdiri"), PROCESSOR_UNKNOWN,
1157 CPU_MOVDIRI_FLAGS, 0 },
1158 { STRING_COMMA_LEN (".movdir64b"), PROCESSOR_UNKNOWN,
1159 CPU_MOVDIR64B_FLAGS, 0 },
d6aab7a1
XG
1160 { STRING_COMMA_LEN (".avx512_bf16"), PROCESSOR_UNKNOWN,
1161 CPU_AVX512_BF16_FLAGS, 0 },
9186c494
L
1162 { STRING_COMMA_LEN (".avx512_vp2intersect"), PROCESSOR_UNKNOWN,
1163 CPU_AVX512_VP2INTERSECT_FLAGS, 0 },
dd455cf5
L
1164 { STRING_COMMA_LEN (".enqcmd"), PROCESSOR_UNKNOWN,
1165 CPU_ENQCMD_FLAGS, 0 },
142861df
JB
1166 { STRING_COMMA_LEN (".rdpru"), PROCESSOR_UNKNOWN,
1167 CPU_RDPRU_FLAGS, 0 },
1168 { STRING_COMMA_LEN (".mcommit"), PROCESSOR_UNKNOWN,
1169 CPU_MCOMMIT_FLAGS, 0 },
293f5f65
L
1170};
1171
1172static const noarch_entry cpu_noarch[] =
1173{
1174 { STRING_COMMA_LEN ("no87"), CPU_ANY_X87_FLAGS },
1848e567
L
1175 { STRING_COMMA_LEN ("no287"), CPU_ANY_287_FLAGS },
1176 { STRING_COMMA_LEN ("no387"), CPU_ANY_387_FLAGS },
1177 { STRING_COMMA_LEN ("no687"), CPU_ANY_687_FLAGS },
d871f3f4
L
1178 { STRING_COMMA_LEN ("nocmov"), CPU_ANY_CMOV_FLAGS },
1179 { STRING_COMMA_LEN ("nofxsr"), CPU_ANY_FXSR_FLAGS },
293f5f65
L
1180 { STRING_COMMA_LEN ("nommx"), CPU_ANY_MMX_FLAGS },
1181 { STRING_COMMA_LEN ("nosse"), CPU_ANY_SSE_FLAGS },
1848e567
L
1182 { STRING_COMMA_LEN ("nosse2"), CPU_ANY_SSE2_FLAGS },
1183 { STRING_COMMA_LEN ("nosse3"), CPU_ANY_SSE3_FLAGS },
1184 { STRING_COMMA_LEN ("nossse3"), CPU_ANY_SSSE3_FLAGS },
1185 { STRING_COMMA_LEN ("nosse4.1"), CPU_ANY_SSE4_1_FLAGS },
1186 { STRING_COMMA_LEN ("nosse4.2"), CPU_ANY_SSE4_2_FLAGS },
1187 { STRING_COMMA_LEN ("nosse4"), CPU_ANY_SSE4_1_FLAGS },
293f5f65 1188 { STRING_COMMA_LEN ("noavx"), CPU_ANY_AVX_FLAGS },
1848e567 1189 { STRING_COMMA_LEN ("noavx2"), CPU_ANY_AVX2_FLAGS },
144b71e2
L
1190 { STRING_COMMA_LEN ("noavx512f"), CPU_ANY_AVX512F_FLAGS },
1191 { STRING_COMMA_LEN ("noavx512cd"), CPU_ANY_AVX512CD_FLAGS },
1192 { STRING_COMMA_LEN ("noavx512er"), CPU_ANY_AVX512ER_FLAGS },
1193 { STRING_COMMA_LEN ("noavx512pf"), CPU_ANY_AVX512PF_FLAGS },
1194 { STRING_COMMA_LEN ("noavx512dq"), CPU_ANY_AVX512DQ_FLAGS },
1195 { STRING_COMMA_LEN ("noavx512bw"), CPU_ANY_AVX512BW_FLAGS },
1196 { STRING_COMMA_LEN ("noavx512vl"), CPU_ANY_AVX512VL_FLAGS },
1197 { STRING_COMMA_LEN ("noavx512ifma"), CPU_ANY_AVX512IFMA_FLAGS },
1198 { STRING_COMMA_LEN ("noavx512vbmi"), CPU_ANY_AVX512VBMI_FLAGS },
920d2ddc 1199 { STRING_COMMA_LEN ("noavx512_4fmaps"), CPU_ANY_AVX512_4FMAPS_FLAGS },
47acf0bd 1200 { STRING_COMMA_LEN ("noavx512_4vnniw"), CPU_ANY_AVX512_4VNNIW_FLAGS },
620214f7 1201 { STRING_COMMA_LEN ("noavx512_vpopcntdq"), CPU_ANY_AVX512_VPOPCNTDQ_FLAGS },
53467f57 1202 { STRING_COMMA_LEN ("noavx512_vbmi2"), CPU_ANY_AVX512_VBMI2_FLAGS },
8cfcb765 1203 { STRING_COMMA_LEN ("noavx512_vnni"), CPU_ANY_AVX512_VNNI_FLAGS },
ee6872be 1204 { STRING_COMMA_LEN ("noavx512_bitalg"), CPU_ANY_AVX512_BITALG_FLAGS },
d777820b
IT
1205 { STRING_COMMA_LEN ("noibt"), CPU_ANY_IBT_FLAGS },
1206 { STRING_COMMA_LEN ("noshstk"), CPU_ANY_SHSTK_FLAGS },
c0a30a9f
L
1207 { STRING_COMMA_LEN ("nomovdiri"), CPU_ANY_MOVDIRI_FLAGS },
1208 { STRING_COMMA_LEN ("nomovdir64b"), CPU_ANY_MOVDIR64B_FLAGS },
d6aab7a1 1209 { STRING_COMMA_LEN ("noavx512_bf16"), CPU_ANY_AVX512_BF16_FLAGS },
9186c494 1210 { STRING_COMMA_LEN ("noavx512_vp2intersect"), CPU_ANY_SHSTK_FLAGS },
dd455cf5 1211 { STRING_COMMA_LEN ("noenqcmd"), CPU_ANY_ENQCMD_FLAGS },
e413e4e9
AM
1212};
1213
704209c0 1214#ifdef I386COFF
a6c24e68
NC
1215/* Like s_lcomm_internal in gas/read.c but the alignment string
1216 is allowed to be optional. */
1217
1218static symbolS *
1219pe_lcomm_internal (int needs_align, symbolS *symbolP, addressT size)
1220{
1221 addressT align = 0;
1222
1223 SKIP_WHITESPACE ();
1224
7ab9ffdd 1225 if (needs_align
a6c24e68
NC
1226 && *input_line_pointer == ',')
1227 {
1228 align = parse_align (needs_align - 1);
7ab9ffdd 1229
a6c24e68
NC
1230 if (align == (addressT) -1)
1231 return NULL;
1232 }
1233 else
1234 {
1235 if (size >= 8)
1236 align = 3;
1237 else if (size >= 4)
1238 align = 2;
1239 else if (size >= 2)
1240 align = 1;
1241 else
1242 align = 0;
1243 }
1244
1245 bss_alloc (symbolP, size, align);
1246 return symbolP;
1247}
1248
704209c0 1249static void
a6c24e68
NC
1250pe_lcomm (int needs_align)
1251{
1252 s_comm_internal (needs_align * 2, pe_lcomm_internal);
1253}
704209c0 1254#endif
a6c24e68 1255
29b0f896
AM
1256const pseudo_typeS md_pseudo_table[] =
1257{
1258#if !defined(OBJ_AOUT) && !defined(USE_ALIGN_PTWO)
1259 {"align", s_align_bytes, 0},
1260#else
1261 {"align", s_align_ptwo, 0},
1262#endif
1263 {"arch", set_cpu_arch, 0},
1264#ifndef I386COFF
1265 {"bss", s_bss, 0},
a6c24e68
NC
1266#else
1267 {"lcomm", pe_lcomm, 1},
29b0f896
AM
1268#endif
1269 {"ffloat", float_cons, 'f'},
1270 {"dfloat", float_cons, 'd'},
1271 {"tfloat", float_cons, 'x'},
1272 {"value", cons, 2},
d182319b 1273 {"slong", signed_cons, 4},
29b0f896
AM
1274 {"noopt", s_ignore, 0},
1275 {"optim", s_ignore, 0},
1276 {"code16gcc", set_16bit_gcc_code_flag, CODE_16BIT},
1277 {"code16", set_code_flag, CODE_16BIT},
1278 {"code32", set_code_flag, CODE_32BIT},
da5f19a2 1279#ifdef BFD64
29b0f896 1280 {"code64", set_code_flag, CODE_64BIT},
da5f19a2 1281#endif
29b0f896
AM
1282 {"intel_syntax", set_intel_syntax, 1},
1283 {"att_syntax", set_intel_syntax, 0},
1efbbeb4
L
1284 {"intel_mnemonic", set_intel_mnemonic, 1},
1285 {"att_mnemonic", set_intel_mnemonic, 0},
db51cc60
L
1286 {"allow_index_reg", set_allow_index_reg, 1},
1287 {"disallow_index_reg", set_allow_index_reg, 0},
7bab8ab5
JB
1288 {"sse_check", set_check, 0},
1289 {"operand_check", set_check, 1},
3b22753a
L
1290#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
1291 {"largecomm", handle_large_common, 0},
07a53e5c 1292#else
68d20676 1293 {"file", dwarf2_directive_file, 0},
07a53e5c
RH
1294 {"loc", dwarf2_directive_loc, 0},
1295 {"loc_mark_labels", dwarf2_directive_loc_mark_labels, 0},
3b22753a 1296#endif
6482c264
NC
1297#ifdef TE_PE
1298 {"secrel32", pe_directive_secrel, 0},
1299#endif
29b0f896
AM
1300 {0, 0, 0}
1301};
1302
1303/* For interface with expression (). */
1304extern char *input_line_pointer;
1305
1306/* Hash table for instruction mnemonic lookup. */
1307static struct hash_control *op_hash;
1308
1309/* Hash table for register lookup. */
1310static struct hash_control *reg_hash;
1311\f
ce8a8b2f
AM
1312 /* Various efficient no-op patterns for aligning code labels.
1313 Note: Don't try to assemble the instructions in the comments.
1314 0L and 0w are not legal. */
62a02d25
L
1315static const unsigned char f32_1[] =
1316 {0x90}; /* nop */
1317static const unsigned char f32_2[] =
1318 {0x66,0x90}; /* xchg %ax,%ax */
1319static const unsigned char f32_3[] =
1320 {0x8d,0x76,0x00}; /* leal 0(%esi),%esi */
1321static const unsigned char f32_4[] =
1322 {0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
62a02d25
L
1323static const unsigned char f32_6[] =
1324 {0x8d,0xb6,0x00,0x00,0x00,0x00}; /* leal 0L(%esi),%esi */
1325static const unsigned char f32_7[] =
1326 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
62a02d25 1327static const unsigned char f16_3[] =
3ae729d5 1328 {0x8d,0x74,0x00}; /* lea 0(%si),%si */
62a02d25 1329static const unsigned char f16_4[] =
3ae729d5
L
1330 {0x8d,0xb4,0x00,0x00}; /* lea 0W(%si),%si */
1331static const unsigned char jump_disp8[] =
1332 {0xeb}; /* jmp disp8 */
1333static const unsigned char jump32_disp32[] =
1334 {0xe9}; /* jmp disp32 */
1335static const unsigned char jump16_disp32[] =
1336 {0x66,0xe9}; /* jmp disp32 */
62a02d25
L
1337/* 32-bit NOPs patterns. */
1338static const unsigned char *const f32_patt[] = {
3ae729d5 1339 f32_1, f32_2, f32_3, f32_4, NULL, f32_6, f32_7
62a02d25
L
1340};
1341/* 16-bit NOPs patterns. */
1342static const unsigned char *const f16_patt[] = {
3ae729d5 1343 f32_1, f32_2, f16_3, f16_4
62a02d25
L
1344};
1345/* nopl (%[re]ax) */
1346static const unsigned char alt_3[] =
1347 {0x0f,0x1f,0x00};
1348/* nopl 0(%[re]ax) */
1349static const unsigned char alt_4[] =
1350 {0x0f,0x1f,0x40,0x00};
1351/* nopl 0(%[re]ax,%[re]ax,1) */
1352static const unsigned char alt_5[] =
1353 {0x0f,0x1f,0x44,0x00,0x00};
1354/* nopw 0(%[re]ax,%[re]ax,1) */
1355static const unsigned char alt_6[] =
1356 {0x66,0x0f,0x1f,0x44,0x00,0x00};
1357/* nopl 0L(%[re]ax) */
1358static const unsigned char alt_7[] =
1359 {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
1360/* nopl 0L(%[re]ax,%[re]ax,1) */
1361static const unsigned char alt_8[] =
1362 {0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1363/* nopw 0L(%[re]ax,%[re]ax,1) */
1364static const unsigned char alt_9[] =
1365 {0x66,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1366/* nopw %cs:0L(%[re]ax,%[re]ax,1) */
1367static const unsigned char alt_10[] =
1368 {0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
3ae729d5
L
1369/* data16 nopw %cs:0L(%eax,%eax,1) */
1370static const unsigned char alt_11[] =
1371 {0x66,0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
62a02d25
L
1372/* 32-bit and 64-bit NOPs patterns. */
1373static const unsigned char *const alt_patt[] = {
1374 f32_1, f32_2, alt_3, alt_4, alt_5, alt_6, alt_7, alt_8,
3ae729d5 1375 alt_9, alt_10, alt_11
62a02d25
L
1376};
1377
1378/* Genenerate COUNT bytes of NOPs to WHERE from PATT with the maximum
1379 size of a single NOP instruction MAX_SINGLE_NOP_SIZE. */
1380
1381static void
1382i386_output_nops (char *where, const unsigned char *const *patt,
1383 int count, int max_single_nop_size)
1384
1385{
3ae729d5
L
1386 /* Place the longer NOP first. */
1387 int last;
1388 int offset;
3076e594
NC
1389 const unsigned char *nops;
1390
1391 if (max_single_nop_size < 1)
1392 {
1393 as_fatal (_("i386_output_nops called to generate nops of at most %d bytes!"),
1394 max_single_nop_size);
1395 return;
1396 }
1397
1398 nops = patt[max_single_nop_size - 1];
3ae729d5
L
1399
1400 /* Use the smaller one if the requsted one isn't available. */
1401 if (nops == NULL)
62a02d25 1402 {
3ae729d5
L
1403 max_single_nop_size--;
1404 nops = patt[max_single_nop_size - 1];
62a02d25
L
1405 }
1406
3ae729d5
L
1407 last = count % max_single_nop_size;
1408
1409 count -= last;
1410 for (offset = 0; offset < count; offset += max_single_nop_size)
1411 memcpy (where + offset, nops, max_single_nop_size);
1412
1413 if (last)
1414 {
1415 nops = patt[last - 1];
1416 if (nops == NULL)
1417 {
1418 /* Use the smaller one plus one-byte NOP if the needed one
1419 isn't available. */
1420 last--;
1421 nops = patt[last - 1];
1422 memcpy (where + offset, nops, last);
1423 where[offset + last] = *patt[0];
1424 }
1425 else
1426 memcpy (where + offset, nops, last);
1427 }
62a02d25
L
1428}
1429
3ae729d5
L
1430static INLINE int
1431fits_in_imm7 (offsetT num)
1432{
1433 return (num & 0x7f) == num;
1434}
1435
1436static INLINE int
1437fits_in_imm31 (offsetT num)
1438{
1439 return (num & 0x7fffffff) == num;
1440}
62a02d25
L
1441
1442/* Genenerate COUNT bytes of NOPs to WHERE with the maximum size of a
1443 single NOP instruction LIMIT. */
1444
1445void
3ae729d5 1446i386_generate_nops (fragS *fragP, char *where, offsetT count, int limit)
62a02d25 1447{
3ae729d5 1448 const unsigned char *const *patt = NULL;
62a02d25 1449 int max_single_nop_size;
3ae729d5
L
1450 /* Maximum number of NOPs before switching to jump over NOPs. */
1451 int max_number_of_nops;
62a02d25 1452
3ae729d5 1453 switch (fragP->fr_type)
62a02d25 1454 {
3ae729d5
L
1455 case rs_fill_nop:
1456 case rs_align_code:
1457 break;
e379e5f3
L
1458 case rs_machine_dependent:
1459 /* Allow NOP padding for jumps and calls. */
1460 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
1461 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
1462 break;
1463 /* Fall through. */
3ae729d5 1464 default:
62a02d25
L
1465 return;
1466 }
1467
ccc9c027
L
1468 /* We need to decide which NOP sequence to use for 32bit and
1469 64bit. When -mtune= is used:
4eed87de 1470
76bc74dc
L
1471 1. For PROCESSOR_I386, PROCESSOR_I486, PROCESSOR_PENTIUM and
1472 PROCESSOR_GENERIC32, f32_patt will be used.
80b8656c
L
1473 2. For the rest, alt_patt will be used.
1474
1475 When -mtune= isn't used, alt_patt will be used if
22109423 1476 cpu_arch_isa_flags has CpuNop. Otherwise, f32_patt will
76bc74dc 1477 be used.
ccc9c027
L
1478
1479 When -march= or .arch is used, we can't use anything beyond
1480 cpu_arch_isa_flags. */
1481
1482 if (flag_code == CODE_16BIT)
1483 {
3ae729d5
L
1484 patt = f16_patt;
1485 max_single_nop_size = sizeof (f16_patt) / sizeof (f16_patt[0]);
1486 /* Limit number of NOPs to 2 in 16-bit mode. */
1487 max_number_of_nops = 2;
252b5132 1488 }
33fef721 1489 else
ccc9c027 1490 {
fbf3f584 1491 if (fragP->tc_frag_data.isa == PROCESSOR_UNKNOWN)
ccc9c027
L
1492 {
1493 /* PROCESSOR_UNKNOWN means that all ISAs may be used. */
1494 switch (cpu_arch_tune)
1495 {
1496 case PROCESSOR_UNKNOWN:
1497 /* We use cpu_arch_isa_flags to check if we SHOULD
22109423
L
1498 optimize with nops. */
1499 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1500 patt = alt_patt;
ccc9c027
L
1501 else
1502 patt = f32_patt;
1503 break;
ccc9c027
L
1504 case PROCESSOR_PENTIUM4:
1505 case PROCESSOR_NOCONA:
ef05d495 1506 case PROCESSOR_CORE:
76bc74dc 1507 case PROCESSOR_CORE2:
bd5295b2 1508 case PROCESSOR_COREI7:
3632d14b 1509 case PROCESSOR_L1OM:
7a9068fe 1510 case PROCESSOR_K1OM:
76bc74dc 1511 case PROCESSOR_GENERIC64:
ccc9c027
L
1512 case PROCESSOR_K6:
1513 case PROCESSOR_ATHLON:
1514 case PROCESSOR_K8:
4eed87de 1515 case PROCESSOR_AMDFAM10:
8aedb9fe 1516 case PROCESSOR_BD:
029f3522 1517 case PROCESSOR_ZNVER:
7b458c12 1518 case PROCESSOR_BT:
80b8656c 1519 patt = alt_patt;
ccc9c027 1520 break;
76bc74dc 1521 case PROCESSOR_I386:
ccc9c027
L
1522 case PROCESSOR_I486:
1523 case PROCESSOR_PENTIUM:
2dde1948 1524 case PROCESSOR_PENTIUMPRO:
81486035 1525 case PROCESSOR_IAMCU:
ccc9c027
L
1526 case PROCESSOR_GENERIC32:
1527 patt = f32_patt;
1528 break;
4eed87de 1529 }
ccc9c027
L
1530 }
1531 else
1532 {
fbf3f584 1533 switch (fragP->tc_frag_data.tune)
ccc9c027
L
1534 {
1535 case PROCESSOR_UNKNOWN:
e6a14101 1536 /* When cpu_arch_isa is set, cpu_arch_tune shouldn't be
ccc9c027
L
1537 PROCESSOR_UNKNOWN. */
1538 abort ();
1539 break;
1540
76bc74dc 1541 case PROCESSOR_I386:
ccc9c027
L
1542 case PROCESSOR_I486:
1543 case PROCESSOR_PENTIUM:
81486035 1544 case PROCESSOR_IAMCU:
ccc9c027
L
1545 case PROCESSOR_K6:
1546 case PROCESSOR_ATHLON:
1547 case PROCESSOR_K8:
4eed87de 1548 case PROCESSOR_AMDFAM10:
8aedb9fe 1549 case PROCESSOR_BD:
029f3522 1550 case PROCESSOR_ZNVER:
7b458c12 1551 case PROCESSOR_BT:
ccc9c027
L
1552 case PROCESSOR_GENERIC32:
1553 /* We use cpu_arch_isa_flags to check if we CAN optimize
22109423
L
1554 with nops. */
1555 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1556 patt = alt_patt;
ccc9c027
L
1557 else
1558 patt = f32_patt;
1559 break;
76bc74dc
L
1560 case PROCESSOR_PENTIUMPRO:
1561 case PROCESSOR_PENTIUM4:
1562 case PROCESSOR_NOCONA:
1563 case PROCESSOR_CORE:
ef05d495 1564 case PROCESSOR_CORE2:
bd5295b2 1565 case PROCESSOR_COREI7:
3632d14b 1566 case PROCESSOR_L1OM:
7a9068fe 1567 case PROCESSOR_K1OM:
22109423 1568 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1569 patt = alt_patt;
ccc9c027
L
1570 else
1571 patt = f32_patt;
1572 break;
1573 case PROCESSOR_GENERIC64:
80b8656c 1574 patt = alt_patt;
ccc9c027 1575 break;
4eed87de 1576 }
ccc9c027
L
1577 }
1578
76bc74dc
L
1579 if (patt == f32_patt)
1580 {
3ae729d5
L
1581 max_single_nop_size = sizeof (f32_patt) / sizeof (f32_patt[0]);
1582 /* Limit number of NOPs to 2 for older processors. */
1583 max_number_of_nops = 2;
76bc74dc
L
1584 }
1585 else
1586 {
3ae729d5
L
1587 max_single_nop_size = sizeof (alt_patt) / sizeof (alt_patt[0]);
1588 /* Limit number of NOPs to 7 for newer processors. */
1589 max_number_of_nops = 7;
1590 }
1591 }
1592
1593 if (limit == 0)
1594 limit = max_single_nop_size;
1595
1596 if (fragP->fr_type == rs_fill_nop)
1597 {
1598 /* Output NOPs for .nop directive. */
1599 if (limit > max_single_nop_size)
1600 {
1601 as_bad_where (fragP->fr_file, fragP->fr_line,
1602 _("invalid single nop size: %d "
1603 "(expect within [0, %d])"),
1604 limit, max_single_nop_size);
1605 return;
1606 }
1607 }
e379e5f3 1608 else if (fragP->fr_type != rs_machine_dependent)
3ae729d5
L
1609 fragP->fr_var = count;
1610
1611 if ((count / max_single_nop_size) > max_number_of_nops)
1612 {
1613 /* Generate jump over NOPs. */
1614 offsetT disp = count - 2;
1615 if (fits_in_imm7 (disp))
1616 {
1617 /* Use "jmp disp8" if possible. */
1618 count = disp;
1619 where[0] = jump_disp8[0];
1620 where[1] = count;
1621 where += 2;
1622 }
1623 else
1624 {
1625 unsigned int size_of_jump;
1626
1627 if (flag_code == CODE_16BIT)
1628 {
1629 where[0] = jump16_disp32[0];
1630 where[1] = jump16_disp32[1];
1631 size_of_jump = 2;
1632 }
1633 else
1634 {
1635 where[0] = jump32_disp32[0];
1636 size_of_jump = 1;
1637 }
1638
1639 count -= size_of_jump + 4;
1640 if (!fits_in_imm31 (count))
1641 {
1642 as_bad_where (fragP->fr_file, fragP->fr_line,
1643 _("jump over nop padding out of range"));
1644 return;
1645 }
1646
1647 md_number_to_chars (where + size_of_jump, count, 4);
1648 where += size_of_jump + 4;
76bc74dc 1649 }
ccc9c027 1650 }
3ae729d5
L
1651
1652 /* Generate multiple NOPs. */
1653 i386_output_nops (where, patt, count, limit);
252b5132
RH
1654}
1655
c6fb90c8 1656static INLINE int
0dfbf9d7 1657operand_type_all_zero (const union i386_operand_type *x)
40fb9820 1658{
0dfbf9d7 1659 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1660 {
1661 case 3:
0dfbf9d7 1662 if (x->array[2])
c6fb90c8 1663 return 0;
1a0670f3 1664 /* Fall through. */
c6fb90c8 1665 case 2:
0dfbf9d7 1666 if (x->array[1])
c6fb90c8 1667 return 0;
1a0670f3 1668 /* Fall through. */
c6fb90c8 1669 case 1:
0dfbf9d7 1670 return !x->array[0];
c6fb90c8
L
1671 default:
1672 abort ();
1673 }
40fb9820
L
1674}
1675
c6fb90c8 1676static INLINE void
0dfbf9d7 1677operand_type_set (union i386_operand_type *x, unsigned int v)
40fb9820 1678{
0dfbf9d7 1679 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1680 {
1681 case 3:
0dfbf9d7 1682 x->array[2] = v;
1a0670f3 1683 /* Fall through. */
c6fb90c8 1684 case 2:
0dfbf9d7 1685 x->array[1] = v;
1a0670f3 1686 /* Fall through. */
c6fb90c8 1687 case 1:
0dfbf9d7 1688 x->array[0] = v;
1a0670f3 1689 /* Fall through. */
c6fb90c8
L
1690 break;
1691 default:
1692 abort ();
1693 }
bab6aec1
JB
1694
1695 x->bitfield.class = ClassNone;
75e5731b 1696 x->bitfield.instance = InstanceNone;
c6fb90c8 1697}
40fb9820 1698
c6fb90c8 1699static INLINE int
0dfbf9d7
L
1700operand_type_equal (const union i386_operand_type *x,
1701 const union i386_operand_type *y)
c6fb90c8 1702{
0dfbf9d7 1703 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1704 {
1705 case 3:
0dfbf9d7 1706 if (x->array[2] != y->array[2])
c6fb90c8 1707 return 0;
1a0670f3 1708 /* Fall through. */
c6fb90c8 1709 case 2:
0dfbf9d7 1710 if (x->array[1] != y->array[1])
c6fb90c8 1711 return 0;
1a0670f3 1712 /* Fall through. */
c6fb90c8 1713 case 1:
0dfbf9d7 1714 return x->array[0] == y->array[0];
c6fb90c8
L
1715 break;
1716 default:
1717 abort ();
1718 }
1719}
40fb9820 1720
0dfbf9d7
L
1721static INLINE int
1722cpu_flags_all_zero (const union i386_cpu_flags *x)
1723{
1724 switch (ARRAY_SIZE(x->array))
1725 {
53467f57
IT
1726 case 4:
1727 if (x->array[3])
1728 return 0;
1729 /* Fall through. */
0dfbf9d7
L
1730 case 3:
1731 if (x->array[2])
1732 return 0;
1a0670f3 1733 /* Fall through. */
0dfbf9d7
L
1734 case 2:
1735 if (x->array[1])
1736 return 0;
1a0670f3 1737 /* Fall through. */
0dfbf9d7
L
1738 case 1:
1739 return !x->array[0];
1740 default:
1741 abort ();
1742 }
1743}
1744
0dfbf9d7
L
1745static INLINE int
1746cpu_flags_equal (const union i386_cpu_flags *x,
1747 const union i386_cpu_flags *y)
1748{
1749 switch (ARRAY_SIZE(x->array))
1750 {
53467f57
IT
1751 case 4:
1752 if (x->array[3] != y->array[3])
1753 return 0;
1754 /* Fall through. */
0dfbf9d7
L
1755 case 3:
1756 if (x->array[2] != y->array[2])
1757 return 0;
1a0670f3 1758 /* Fall through. */
0dfbf9d7
L
1759 case 2:
1760 if (x->array[1] != y->array[1])
1761 return 0;
1a0670f3 1762 /* Fall through. */
0dfbf9d7
L
1763 case 1:
1764 return x->array[0] == y->array[0];
1765 break;
1766 default:
1767 abort ();
1768 }
1769}
c6fb90c8
L
1770
1771static INLINE int
1772cpu_flags_check_cpu64 (i386_cpu_flags f)
1773{
1774 return !((flag_code == CODE_64BIT && f.bitfield.cpuno64)
1775 || (flag_code != CODE_64BIT && f.bitfield.cpu64));
40fb9820
L
1776}
1777
c6fb90c8
L
1778static INLINE i386_cpu_flags
1779cpu_flags_and (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1780{
c6fb90c8
L
1781 switch (ARRAY_SIZE (x.array))
1782 {
53467f57
IT
1783 case 4:
1784 x.array [3] &= y.array [3];
1785 /* Fall through. */
c6fb90c8
L
1786 case 3:
1787 x.array [2] &= y.array [2];
1a0670f3 1788 /* Fall through. */
c6fb90c8
L
1789 case 2:
1790 x.array [1] &= y.array [1];
1a0670f3 1791 /* Fall through. */
c6fb90c8
L
1792 case 1:
1793 x.array [0] &= y.array [0];
1794 break;
1795 default:
1796 abort ();
1797 }
1798 return x;
1799}
40fb9820 1800
c6fb90c8
L
1801static INLINE i386_cpu_flags
1802cpu_flags_or (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1803{
c6fb90c8 1804 switch (ARRAY_SIZE (x.array))
40fb9820 1805 {
53467f57
IT
1806 case 4:
1807 x.array [3] |= y.array [3];
1808 /* Fall through. */
c6fb90c8
L
1809 case 3:
1810 x.array [2] |= y.array [2];
1a0670f3 1811 /* Fall through. */
c6fb90c8
L
1812 case 2:
1813 x.array [1] |= y.array [1];
1a0670f3 1814 /* Fall through. */
c6fb90c8
L
1815 case 1:
1816 x.array [0] |= y.array [0];
40fb9820
L
1817 break;
1818 default:
1819 abort ();
1820 }
40fb9820
L
1821 return x;
1822}
1823
309d3373
JB
1824static INLINE i386_cpu_flags
1825cpu_flags_and_not (i386_cpu_flags x, i386_cpu_flags y)
1826{
1827 switch (ARRAY_SIZE (x.array))
1828 {
53467f57
IT
1829 case 4:
1830 x.array [3] &= ~y.array [3];
1831 /* Fall through. */
309d3373
JB
1832 case 3:
1833 x.array [2] &= ~y.array [2];
1a0670f3 1834 /* Fall through. */
309d3373
JB
1835 case 2:
1836 x.array [1] &= ~y.array [1];
1a0670f3 1837 /* Fall through. */
309d3373
JB
1838 case 1:
1839 x.array [0] &= ~y.array [0];
1840 break;
1841 default:
1842 abort ();
1843 }
1844 return x;
1845}
1846
c0f3af97
L
1847#define CPU_FLAGS_ARCH_MATCH 0x1
1848#define CPU_FLAGS_64BIT_MATCH 0x2
1849
c0f3af97 1850#define CPU_FLAGS_PERFECT_MATCH \
db12e14e 1851 (CPU_FLAGS_ARCH_MATCH | CPU_FLAGS_64BIT_MATCH)
c0f3af97
L
1852
1853/* Return CPU flags match bits. */
3629bb00 1854
40fb9820 1855static int
d3ce72d0 1856cpu_flags_match (const insn_template *t)
40fb9820 1857{
c0f3af97
L
1858 i386_cpu_flags x = t->cpu_flags;
1859 int match = cpu_flags_check_cpu64 (x) ? CPU_FLAGS_64BIT_MATCH : 0;
40fb9820
L
1860
1861 x.bitfield.cpu64 = 0;
1862 x.bitfield.cpuno64 = 0;
1863
0dfbf9d7 1864 if (cpu_flags_all_zero (&x))
c0f3af97
L
1865 {
1866 /* This instruction is available on all archs. */
db12e14e 1867 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 1868 }
3629bb00
L
1869 else
1870 {
c0f3af97 1871 /* This instruction is available only on some archs. */
3629bb00
L
1872 i386_cpu_flags cpu = cpu_arch_flags;
1873
ab592e75
JB
1874 /* AVX512VL is no standalone feature - match it and then strip it. */
1875 if (x.bitfield.cpuavx512vl && !cpu.bitfield.cpuavx512vl)
1876 return match;
1877 x.bitfield.cpuavx512vl = 0;
1878
3629bb00 1879 cpu = cpu_flags_and (x, cpu);
c0f3af97
L
1880 if (!cpu_flags_all_zero (&cpu))
1881 {
a5ff0eb2
L
1882 if (x.bitfield.cpuavx)
1883 {
929f69fa 1884 /* We need to check a few extra flags with AVX. */
b9d49817
JB
1885 if (cpu.bitfield.cpuavx
1886 && (!t->opcode_modifier.sse2avx || sse2avx)
1887 && (!x.bitfield.cpuaes || cpu.bitfield.cpuaes)
929f69fa 1888 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
b9d49817
JB
1889 && (!x.bitfield.cpupclmul || cpu.bitfield.cpupclmul))
1890 match |= CPU_FLAGS_ARCH_MATCH;
a5ff0eb2 1891 }
929f69fa
JB
1892 else if (x.bitfield.cpuavx512f)
1893 {
1894 /* We need to check a few extra flags with AVX512F. */
1895 if (cpu.bitfield.cpuavx512f
1896 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
1897 && (!x.bitfield.cpuvaes || cpu.bitfield.cpuvaes)
1898 && (!x.bitfield.cpuvpclmulqdq || cpu.bitfield.cpuvpclmulqdq))
1899 match |= CPU_FLAGS_ARCH_MATCH;
1900 }
a5ff0eb2 1901 else
db12e14e 1902 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 1903 }
3629bb00 1904 }
c0f3af97 1905 return match;
40fb9820
L
1906}
1907
c6fb90c8
L
1908static INLINE i386_operand_type
1909operand_type_and (i386_operand_type x, i386_operand_type y)
40fb9820 1910{
bab6aec1
JB
1911 if (x.bitfield.class != y.bitfield.class)
1912 x.bitfield.class = ClassNone;
75e5731b
JB
1913 if (x.bitfield.instance != y.bitfield.instance)
1914 x.bitfield.instance = InstanceNone;
bab6aec1 1915
c6fb90c8
L
1916 switch (ARRAY_SIZE (x.array))
1917 {
1918 case 3:
1919 x.array [2] &= y.array [2];
1a0670f3 1920 /* Fall through. */
c6fb90c8
L
1921 case 2:
1922 x.array [1] &= y.array [1];
1a0670f3 1923 /* Fall through. */
c6fb90c8
L
1924 case 1:
1925 x.array [0] &= y.array [0];
1926 break;
1927 default:
1928 abort ();
1929 }
1930 return x;
40fb9820
L
1931}
1932
73053c1f
JB
1933static INLINE i386_operand_type
1934operand_type_and_not (i386_operand_type x, i386_operand_type y)
1935{
bab6aec1 1936 gas_assert (y.bitfield.class == ClassNone);
75e5731b 1937 gas_assert (y.bitfield.instance == InstanceNone);
bab6aec1 1938
73053c1f
JB
1939 switch (ARRAY_SIZE (x.array))
1940 {
1941 case 3:
1942 x.array [2] &= ~y.array [2];
1943 /* Fall through. */
1944 case 2:
1945 x.array [1] &= ~y.array [1];
1946 /* Fall through. */
1947 case 1:
1948 x.array [0] &= ~y.array [0];
1949 break;
1950 default:
1951 abort ();
1952 }
1953 return x;
1954}
1955
c6fb90c8
L
1956static INLINE i386_operand_type
1957operand_type_or (i386_operand_type x, i386_operand_type y)
40fb9820 1958{
bab6aec1
JB
1959 gas_assert (x.bitfield.class == ClassNone ||
1960 y.bitfield.class == ClassNone ||
1961 x.bitfield.class == y.bitfield.class);
75e5731b
JB
1962 gas_assert (x.bitfield.instance == InstanceNone ||
1963 y.bitfield.instance == InstanceNone ||
1964 x.bitfield.instance == y.bitfield.instance);
bab6aec1 1965
c6fb90c8 1966 switch (ARRAY_SIZE (x.array))
40fb9820 1967 {
c6fb90c8
L
1968 case 3:
1969 x.array [2] |= y.array [2];
1a0670f3 1970 /* Fall through. */
c6fb90c8
L
1971 case 2:
1972 x.array [1] |= y.array [1];
1a0670f3 1973 /* Fall through. */
c6fb90c8
L
1974 case 1:
1975 x.array [0] |= y.array [0];
40fb9820
L
1976 break;
1977 default:
1978 abort ();
1979 }
c6fb90c8
L
1980 return x;
1981}
40fb9820 1982
c6fb90c8
L
1983static INLINE i386_operand_type
1984operand_type_xor (i386_operand_type x, i386_operand_type y)
1985{
bab6aec1 1986 gas_assert (y.bitfield.class == ClassNone);
75e5731b 1987 gas_assert (y.bitfield.instance == InstanceNone);
bab6aec1 1988
c6fb90c8
L
1989 switch (ARRAY_SIZE (x.array))
1990 {
1991 case 3:
1992 x.array [2] ^= y.array [2];
1a0670f3 1993 /* Fall through. */
c6fb90c8
L
1994 case 2:
1995 x.array [1] ^= y.array [1];
1a0670f3 1996 /* Fall through. */
c6fb90c8
L
1997 case 1:
1998 x.array [0] ^= y.array [0];
1999 break;
2000 default:
2001 abort ();
2002 }
40fb9820
L
2003 return x;
2004}
2005
40fb9820
L
2006static const i386_operand_type disp16 = OPERAND_TYPE_DISP16;
2007static const i386_operand_type disp32 = OPERAND_TYPE_DISP32;
2008static const i386_operand_type disp32s = OPERAND_TYPE_DISP32S;
2009static const i386_operand_type disp16_32 = OPERAND_TYPE_DISP16_32;
bab6aec1
JB
2010static const i386_operand_type anydisp = OPERAND_TYPE_ANYDISP;
2011static const i386_operand_type anyimm = OPERAND_TYPE_ANYIMM;
40fb9820 2012static const i386_operand_type regxmm = OPERAND_TYPE_REGXMM;
43234a1e 2013static const i386_operand_type regmask = OPERAND_TYPE_REGMASK;
40fb9820
L
2014static const i386_operand_type imm8 = OPERAND_TYPE_IMM8;
2015static const i386_operand_type imm8s = OPERAND_TYPE_IMM8S;
2016static const i386_operand_type imm16 = OPERAND_TYPE_IMM16;
2017static const i386_operand_type imm32 = OPERAND_TYPE_IMM32;
2018static const i386_operand_type imm32s = OPERAND_TYPE_IMM32S;
2019static const i386_operand_type imm64 = OPERAND_TYPE_IMM64;
2020static const i386_operand_type imm16_32 = OPERAND_TYPE_IMM16_32;
2021static const i386_operand_type imm16_32s = OPERAND_TYPE_IMM16_32S;
2022static const i386_operand_type imm16_32_32s = OPERAND_TYPE_IMM16_32_32S;
2023
2024enum operand_type
2025{
2026 reg,
40fb9820
L
2027 imm,
2028 disp,
2029 anymem
2030};
2031
c6fb90c8 2032static INLINE int
40fb9820
L
2033operand_type_check (i386_operand_type t, enum operand_type c)
2034{
2035 switch (c)
2036 {
2037 case reg:
bab6aec1 2038 return t.bitfield.class == Reg;
40fb9820 2039
40fb9820
L
2040 case imm:
2041 return (t.bitfield.imm8
2042 || t.bitfield.imm8s
2043 || t.bitfield.imm16
2044 || t.bitfield.imm32
2045 || t.bitfield.imm32s
2046 || t.bitfield.imm64);
2047
2048 case disp:
2049 return (t.bitfield.disp8
2050 || t.bitfield.disp16
2051 || t.bitfield.disp32
2052 || t.bitfield.disp32s
2053 || t.bitfield.disp64);
2054
2055 case anymem:
2056 return (t.bitfield.disp8
2057 || t.bitfield.disp16
2058 || t.bitfield.disp32
2059 || t.bitfield.disp32s
2060 || t.bitfield.disp64
2061 || t.bitfield.baseindex);
2062
2063 default:
2064 abort ();
2065 }
2cfe26b6
AM
2066
2067 return 0;
40fb9820
L
2068}
2069
7a54636a
L
2070/* Return 1 if there is no conflict in 8bit/16bit/32bit/64bit/80bit size
2071 between operand GIVEN and opeand WANTED for instruction template T. */
5c07affc
L
2072
2073static INLINE int
7a54636a
L
2074match_operand_size (const insn_template *t, unsigned int wanted,
2075 unsigned int given)
5c07affc 2076{
3ac21baa
JB
2077 return !((i.types[given].bitfield.byte
2078 && !t->operand_types[wanted].bitfield.byte)
2079 || (i.types[given].bitfield.word
2080 && !t->operand_types[wanted].bitfield.word)
2081 || (i.types[given].bitfield.dword
2082 && !t->operand_types[wanted].bitfield.dword)
2083 || (i.types[given].bitfield.qword
2084 && !t->operand_types[wanted].bitfield.qword)
2085 || (i.types[given].bitfield.tbyte
2086 && !t->operand_types[wanted].bitfield.tbyte));
5c07affc
L
2087}
2088
dd40ce22
L
2089/* Return 1 if there is no conflict in SIMD register between operand
2090 GIVEN and opeand WANTED for instruction template T. */
1b54b8d7
JB
2091
2092static INLINE int
dd40ce22
L
2093match_simd_size (const insn_template *t, unsigned int wanted,
2094 unsigned int given)
1b54b8d7 2095{
3ac21baa
JB
2096 return !((i.types[given].bitfield.xmmword
2097 && !t->operand_types[wanted].bitfield.xmmword)
2098 || (i.types[given].bitfield.ymmword
2099 && !t->operand_types[wanted].bitfield.ymmword)
2100 || (i.types[given].bitfield.zmmword
2101 && !t->operand_types[wanted].bitfield.zmmword));
1b54b8d7
JB
2102}
2103
7a54636a
L
2104/* Return 1 if there is no conflict in any size between operand GIVEN
2105 and opeand WANTED for instruction template T. */
5c07affc
L
2106
2107static INLINE int
dd40ce22
L
2108match_mem_size (const insn_template *t, unsigned int wanted,
2109 unsigned int given)
5c07affc 2110{
7a54636a 2111 return (match_operand_size (t, wanted, given)
3ac21baa 2112 && !((i.types[given].bitfield.unspecified
af508cb9 2113 && !i.broadcast
3ac21baa
JB
2114 && !t->operand_types[wanted].bitfield.unspecified)
2115 || (i.types[given].bitfield.fword
2116 && !t->operand_types[wanted].bitfield.fword)
1b54b8d7
JB
2117 /* For scalar opcode templates to allow register and memory
2118 operands at the same time, some special casing is needed
d6793fa1
JB
2119 here. Also for v{,p}broadcast*, {,v}pmov{s,z}*, and
2120 down-conversion vpmov*. */
3528c362 2121 || ((t->operand_types[wanted].bitfield.class == RegSIMD
1b54b8d7 2122 && !t->opcode_modifier.broadcast
3ac21baa
JB
2123 && (t->operand_types[wanted].bitfield.byte
2124 || t->operand_types[wanted].bitfield.word
2125 || t->operand_types[wanted].bitfield.dword
2126 || t->operand_types[wanted].bitfield.qword))
2127 ? (i.types[given].bitfield.xmmword
2128 || i.types[given].bitfield.ymmword
2129 || i.types[given].bitfield.zmmword)
2130 : !match_simd_size(t, wanted, given))));
5c07affc
L
2131}
2132
3ac21baa
JB
2133/* Return value has MATCH_STRAIGHT set if there is no size conflict on any
2134 operands for instruction template T, and it has MATCH_REVERSE set if there
2135 is no size conflict on any operands for the template with operands reversed
2136 (and the template allows for reversing in the first place). */
5c07affc 2137
3ac21baa
JB
2138#define MATCH_STRAIGHT 1
2139#define MATCH_REVERSE 2
2140
2141static INLINE unsigned int
d3ce72d0 2142operand_size_match (const insn_template *t)
5c07affc 2143{
3ac21baa 2144 unsigned int j, match = MATCH_STRAIGHT;
5c07affc 2145
0cfa3eb3 2146 /* Don't check non-absolute jump instructions. */
5c07affc 2147 if (t->opcode_modifier.jump
0cfa3eb3 2148 && t->opcode_modifier.jump != JUMP_ABSOLUTE)
5c07affc
L
2149 return match;
2150
2151 /* Check memory and accumulator operand size. */
2152 for (j = 0; j < i.operands; j++)
2153 {
3528c362
JB
2154 if (i.types[j].bitfield.class != Reg
2155 && i.types[j].bitfield.class != RegSIMD
601e8564 2156 && t->opcode_modifier.anysize)
5c07affc
L
2157 continue;
2158
bab6aec1 2159 if (t->operand_types[j].bitfield.class == Reg
7a54636a 2160 && !match_operand_size (t, j, j))
5c07affc
L
2161 {
2162 match = 0;
2163 break;
2164 }
2165
3528c362 2166 if (t->operand_types[j].bitfield.class == RegSIMD
3ac21baa 2167 && !match_simd_size (t, j, j))
1b54b8d7
JB
2168 {
2169 match = 0;
2170 break;
2171 }
2172
75e5731b 2173 if (t->operand_types[j].bitfield.instance == Accum
7a54636a 2174 && (!match_operand_size (t, j, j) || !match_simd_size (t, j, j)))
1b54b8d7
JB
2175 {
2176 match = 0;
2177 break;
2178 }
2179
c48dadc9 2180 if ((i.flags[j] & Operand_Mem) && !match_mem_size (t, j, j))
5c07affc
L
2181 {
2182 match = 0;
2183 break;
2184 }
2185 }
2186
3ac21baa 2187 if (!t->opcode_modifier.d)
891edac4
L
2188 {
2189mismatch:
3ac21baa
JB
2190 if (!match)
2191 i.error = operand_size_mismatch;
2192 return match;
891edac4 2193 }
5c07affc
L
2194
2195 /* Check reverse. */
f5eb1d70 2196 gas_assert (i.operands >= 2 && i.operands <= 3);
5c07affc 2197
f5eb1d70 2198 for (j = 0; j < i.operands; j++)
5c07affc 2199 {
f5eb1d70
JB
2200 unsigned int given = i.operands - j - 1;
2201
bab6aec1 2202 if (t->operand_types[j].bitfield.class == Reg
f5eb1d70 2203 && !match_operand_size (t, j, given))
891edac4 2204 goto mismatch;
5c07affc 2205
3528c362 2206 if (t->operand_types[j].bitfield.class == RegSIMD
f5eb1d70 2207 && !match_simd_size (t, j, given))
dbbc8b7e
JB
2208 goto mismatch;
2209
75e5731b 2210 if (t->operand_types[j].bitfield.instance == Accum
f5eb1d70
JB
2211 && (!match_operand_size (t, j, given)
2212 || !match_simd_size (t, j, given)))
dbbc8b7e
JB
2213 goto mismatch;
2214
f5eb1d70 2215 if ((i.flags[given] & Operand_Mem) && !match_mem_size (t, j, given))
891edac4 2216 goto mismatch;
5c07affc
L
2217 }
2218
3ac21baa 2219 return match | MATCH_REVERSE;
5c07affc
L
2220}
2221
c6fb90c8 2222static INLINE int
40fb9820
L
2223operand_type_match (i386_operand_type overlap,
2224 i386_operand_type given)
2225{
2226 i386_operand_type temp = overlap;
2227
7d5e4556 2228 temp.bitfield.unspecified = 0;
5c07affc
L
2229 temp.bitfield.byte = 0;
2230 temp.bitfield.word = 0;
2231 temp.bitfield.dword = 0;
2232 temp.bitfield.fword = 0;
2233 temp.bitfield.qword = 0;
2234 temp.bitfield.tbyte = 0;
2235 temp.bitfield.xmmword = 0;
c0f3af97 2236 temp.bitfield.ymmword = 0;
43234a1e 2237 temp.bitfield.zmmword = 0;
0dfbf9d7 2238 if (operand_type_all_zero (&temp))
891edac4 2239 goto mismatch;
40fb9820 2240
6f2f06be 2241 if (given.bitfield.baseindex == overlap.bitfield.baseindex)
891edac4
L
2242 return 1;
2243
2244mismatch:
a65babc9 2245 i.error = operand_type_mismatch;
891edac4 2246 return 0;
40fb9820
L
2247}
2248
7d5e4556 2249/* If given types g0 and g1 are registers they must be of the same type
10c17abd 2250 unless the expected operand type register overlap is null.
5de4d9ef 2251 Some Intel syntax memory operand size checking also happens here. */
40fb9820 2252
c6fb90c8 2253static INLINE int
dc821c5f 2254operand_type_register_match (i386_operand_type g0,
40fb9820 2255 i386_operand_type t0,
40fb9820
L
2256 i386_operand_type g1,
2257 i386_operand_type t1)
2258{
bab6aec1 2259 if (g0.bitfield.class != Reg
3528c362 2260 && g0.bitfield.class != RegSIMD
10c17abd
JB
2261 && (!operand_type_check (g0, anymem)
2262 || g0.bitfield.unspecified
5de4d9ef
JB
2263 || (t0.bitfield.class != Reg
2264 && t0.bitfield.class != RegSIMD)))
40fb9820
L
2265 return 1;
2266
bab6aec1 2267 if (g1.bitfield.class != Reg
3528c362 2268 && g1.bitfield.class != RegSIMD
10c17abd
JB
2269 && (!operand_type_check (g1, anymem)
2270 || g1.bitfield.unspecified
5de4d9ef
JB
2271 || (t1.bitfield.class != Reg
2272 && t1.bitfield.class != RegSIMD)))
40fb9820
L
2273 return 1;
2274
dc821c5f
JB
2275 if (g0.bitfield.byte == g1.bitfield.byte
2276 && g0.bitfield.word == g1.bitfield.word
2277 && g0.bitfield.dword == g1.bitfield.dword
10c17abd
JB
2278 && g0.bitfield.qword == g1.bitfield.qword
2279 && g0.bitfield.xmmword == g1.bitfield.xmmword
2280 && g0.bitfield.ymmword == g1.bitfield.ymmword
2281 && g0.bitfield.zmmword == g1.bitfield.zmmword)
40fb9820
L
2282 return 1;
2283
dc821c5f
JB
2284 if (!(t0.bitfield.byte & t1.bitfield.byte)
2285 && !(t0.bitfield.word & t1.bitfield.word)
2286 && !(t0.bitfield.dword & t1.bitfield.dword)
10c17abd
JB
2287 && !(t0.bitfield.qword & t1.bitfield.qword)
2288 && !(t0.bitfield.xmmword & t1.bitfield.xmmword)
2289 && !(t0.bitfield.ymmword & t1.bitfield.ymmword)
2290 && !(t0.bitfield.zmmword & t1.bitfield.zmmword))
891edac4
L
2291 return 1;
2292
a65babc9 2293 i.error = register_type_mismatch;
891edac4
L
2294
2295 return 0;
40fb9820
L
2296}
2297
4c692bc7
JB
2298static INLINE unsigned int
2299register_number (const reg_entry *r)
2300{
2301 unsigned int nr = r->reg_num;
2302
2303 if (r->reg_flags & RegRex)
2304 nr += 8;
2305
200cbe0f
L
2306 if (r->reg_flags & RegVRex)
2307 nr += 16;
2308
4c692bc7
JB
2309 return nr;
2310}
2311
252b5132 2312static INLINE unsigned int
40fb9820 2313mode_from_disp_size (i386_operand_type t)
252b5132 2314{
b5014f7a 2315 if (t.bitfield.disp8)
40fb9820
L
2316 return 1;
2317 else if (t.bitfield.disp16
2318 || t.bitfield.disp32
2319 || t.bitfield.disp32s)
2320 return 2;
2321 else
2322 return 0;
252b5132
RH
2323}
2324
2325static INLINE int
65879393 2326fits_in_signed_byte (addressT num)
252b5132 2327{
65879393 2328 return num + 0x80 <= 0xff;
47926f60 2329}
252b5132
RH
2330
2331static INLINE int
65879393 2332fits_in_unsigned_byte (addressT num)
252b5132 2333{
65879393 2334 return num <= 0xff;
47926f60 2335}
252b5132
RH
2336
2337static INLINE int
65879393 2338fits_in_unsigned_word (addressT num)
252b5132 2339{
65879393 2340 return num <= 0xffff;
47926f60 2341}
252b5132
RH
2342
2343static INLINE int
65879393 2344fits_in_signed_word (addressT num)
252b5132 2345{
65879393 2346 return num + 0x8000 <= 0xffff;
47926f60 2347}
2a962e6d 2348
3e73aa7c 2349static INLINE int
65879393 2350fits_in_signed_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2351{
2352#ifndef BFD64
2353 return 1;
2354#else
65879393 2355 return num + 0x80000000 <= 0xffffffff;
3e73aa7c
JH
2356#endif
2357} /* fits_in_signed_long() */
2a962e6d 2358
3e73aa7c 2359static INLINE int
65879393 2360fits_in_unsigned_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2361{
2362#ifndef BFD64
2363 return 1;
2364#else
65879393 2365 return num <= 0xffffffff;
3e73aa7c
JH
2366#endif
2367} /* fits_in_unsigned_long() */
252b5132 2368
43234a1e 2369static INLINE int
b5014f7a 2370fits_in_disp8 (offsetT num)
43234a1e
L
2371{
2372 int shift = i.memshift;
2373 unsigned int mask;
2374
2375 if (shift == -1)
2376 abort ();
2377
2378 mask = (1 << shift) - 1;
2379
2380 /* Return 0 if NUM isn't properly aligned. */
2381 if ((num & mask))
2382 return 0;
2383
2384 /* Check if NUM will fit in 8bit after shift. */
2385 return fits_in_signed_byte (num >> shift);
2386}
2387
a683cc34
SP
2388static INLINE int
2389fits_in_imm4 (offsetT num)
2390{
2391 return (num & 0xf) == num;
2392}
2393
40fb9820 2394static i386_operand_type
e3bb37b5 2395smallest_imm_type (offsetT num)
252b5132 2396{
40fb9820 2397 i386_operand_type t;
7ab9ffdd 2398
0dfbf9d7 2399 operand_type_set (&t, 0);
40fb9820
L
2400 t.bitfield.imm64 = 1;
2401
2402 if (cpu_arch_tune != PROCESSOR_I486 && num == 1)
e413e4e9
AM
2403 {
2404 /* This code is disabled on the 486 because all the Imm1 forms
2405 in the opcode table are slower on the i486. They're the
2406 versions with the implicitly specified single-position
2407 displacement, which has another syntax if you really want to
2408 use that form. */
40fb9820
L
2409 t.bitfield.imm1 = 1;
2410 t.bitfield.imm8 = 1;
2411 t.bitfield.imm8s = 1;
2412 t.bitfield.imm16 = 1;
2413 t.bitfield.imm32 = 1;
2414 t.bitfield.imm32s = 1;
2415 }
2416 else if (fits_in_signed_byte (num))
2417 {
2418 t.bitfield.imm8 = 1;
2419 t.bitfield.imm8s = 1;
2420 t.bitfield.imm16 = 1;
2421 t.bitfield.imm32 = 1;
2422 t.bitfield.imm32s = 1;
2423 }
2424 else if (fits_in_unsigned_byte (num))
2425 {
2426 t.bitfield.imm8 = 1;
2427 t.bitfield.imm16 = 1;
2428 t.bitfield.imm32 = 1;
2429 t.bitfield.imm32s = 1;
2430 }
2431 else if (fits_in_signed_word (num) || fits_in_unsigned_word (num))
2432 {
2433 t.bitfield.imm16 = 1;
2434 t.bitfield.imm32 = 1;
2435 t.bitfield.imm32s = 1;
2436 }
2437 else if (fits_in_signed_long (num))
2438 {
2439 t.bitfield.imm32 = 1;
2440 t.bitfield.imm32s = 1;
2441 }
2442 else if (fits_in_unsigned_long (num))
2443 t.bitfield.imm32 = 1;
2444
2445 return t;
47926f60 2446}
252b5132 2447
847f7ad4 2448static offsetT
e3bb37b5 2449offset_in_range (offsetT val, int size)
847f7ad4 2450{
508866be 2451 addressT mask;
ba2adb93 2452
847f7ad4
AM
2453 switch (size)
2454 {
508866be
L
2455 case 1: mask = ((addressT) 1 << 8) - 1; break;
2456 case 2: mask = ((addressT) 1 << 16) - 1; break;
3b0ec529 2457 case 4: mask = ((addressT) 2 << 31) - 1; break;
3e73aa7c
JH
2458#ifdef BFD64
2459 case 8: mask = ((addressT) 2 << 63) - 1; break;
2460#endif
47926f60 2461 default: abort ();
847f7ad4
AM
2462 }
2463
9de868bf
L
2464#ifdef BFD64
2465 /* If BFD64, sign extend val for 32bit address mode. */
2466 if (flag_code != CODE_64BIT
2467 || i.prefix[ADDR_PREFIX])
3e73aa7c
JH
2468 if ((val & ~(((addressT) 2 << 31) - 1)) == 0)
2469 val = (val ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
fa289fb8 2470#endif
ba2adb93 2471
47926f60 2472 if ((val & ~mask) != 0 && (val & ~mask) != ~mask)
847f7ad4
AM
2473 {
2474 char buf1[40], buf2[40];
2475
2476 sprint_value (buf1, val);
2477 sprint_value (buf2, val & mask);
2478 as_warn (_("%s shortened to %s"), buf1, buf2);
2479 }
2480 return val & mask;
2481}
2482
c32fa91d
L
2483enum PREFIX_GROUP
2484{
2485 PREFIX_EXIST = 0,
2486 PREFIX_LOCK,
2487 PREFIX_REP,
04ef582a 2488 PREFIX_DS,
c32fa91d
L
2489 PREFIX_OTHER
2490};
2491
2492/* Returns
2493 a. PREFIX_EXIST if attempting to add a prefix where one from the
2494 same class already exists.
2495 b. PREFIX_LOCK if lock prefix is added.
2496 c. PREFIX_REP if rep/repne prefix is added.
04ef582a
L
2497 d. PREFIX_DS if ds prefix is added.
2498 e. PREFIX_OTHER if other prefix is added.
c32fa91d
L
2499 */
2500
2501static enum PREFIX_GROUP
e3bb37b5 2502add_prefix (unsigned int prefix)
252b5132 2503{
c32fa91d 2504 enum PREFIX_GROUP ret = PREFIX_OTHER;
b1905489 2505 unsigned int q;
252b5132 2506
29b0f896
AM
2507 if (prefix >= REX_OPCODE && prefix < REX_OPCODE + 16
2508 && flag_code == CODE_64BIT)
b1905489 2509 {
161a04f6 2510 if ((i.prefix[REX_PREFIX] & prefix & REX_W)
44846f29
JB
2511 || (i.prefix[REX_PREFIX] & prefix & REX_R)
2512 || (i.prefix[REX_PREFIX] & prefix & REX_X)
2513 || (i.prefix[REX_PREFIX] & prefix & REX_B))
c32fa91d 2514 ret = PREFIX_EXIST;
b1905489
JB
2515 q = REX_PREFIX;
2516 }
3e73aa7c 2517 else
b1905489
JB
2518 {
2519 switch (prefix)
2520 {
2521 default:
2522 abort ();
2523
b1905489 2524 case DS_PREFIX_OPCODE:
04ef582a
L
2525 ret = PREFIX_DS;
2526 /* Fall through. */
2527 case CS_PREFIX_OPCODE:
b1905489
JB
2528 case ES_PREFIX_OPCODE:
2529 case FS_PREFIX_OPCODE:
2530 case GS_PREFIX_OPCODE:
2531 case SS_PREFIX_OPCODE:
2532 q = SEG_PREFIX;
2533 break;
2534
2535 case REPNE_PREFIX_OPCODE:
2536 case REPE_PREFIX_OPCODE:
c32fa91d
L
2537 q = REP_PREFIX;
2538 ret = PREFIX_REP;
2539 break;
2540
b1905489 2541 case LOCK_PREFIX_OPCODE:
c32fa91d
L
2542 q = LOCK_PREFIX;
2543 ret = PREFIX_LOCK;
b1905489
JB
2544 break;
2545
2546 case FWAIT_OPCODE:
2547 q = WAIT_PREFIX;
2548 break;
2549
2550 case ADDR_PREFIX_OPCODE:
2551 q = ADDR_PREFIX;
2552 break;
2553
2554 case DATA_PREFIX_OPCODE:
2555 q = DATA_PREFIX;
2556 break;
2557 }
2558 if (i.prefix[q] != 0)
c32fa91d 2559 ret = PREFIX_EXIST;
b1905489 2560 }
252b5132 2561
b1905489 2562 if (ret)
252b5132 2563 {
b1905489
JB
2564 if (!i.prefix[q])
2565 ++i.prefixes;
2566 i.prefix[q] |= prefix;
252b5132 2567 }
b1905489
JB
2568 else
2569 as_bad (_("same type of prefix used twice"));
252b5132 2570
252b5132
RH
2571 return ret;
2572}
2573
2574static void
78f12dd3 2575update_code_flag (int value, int check)
eecb386c 2576{
78f12dd3
L
2577 PRINTF_LIKE ((*as_error));
2578
1e9cc1c2 2579 flag_code = (enum flag_code) value;
40fb9820
L
2580 if (flag_code == CODE_64BIT)
2581 {
2582 cpu_arch_flags.bitfield.cpu64 = 1;
2583 cpu_arch_flags.bitfield.cpuno64 = 0;
40fb9820
L
2584 }
2585 else
2586 {
2587 cpu_arch_flags.bitfield.cpu64 = 0;
2588 cpu_arch_flags.bitfield.cpuno64 = 1;
40fb9820
L
2589 }
2590 if (value == CODE_64BIT && !cpu_arch_flags.bitfield.cpulm )
3e73aa7c 2591 {
78f12dd3
L
2592 if (check)
2593 as_error = as_fatal;
2594 else
2595 as_error = as_bad;
2596 (*as_error) (_("64bit mode not supported on `%s'."),
2597 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2598 }
40fb9820 2599 if (value == CODE_32BIT && !cpu_arch_flags.bitfield.cpui386)
3e73aa7c 2600 {
78f12dd3
L
2601 if (check)
2602 as_error = as_fatal;
2603 else
2604 as_error = as_bad;
2605 (*as_error) (_("32bit mode not supported on `%s'."),
2606 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2607 }
eecb386c
AM
2608 stackop_size = '\0';
2609}
2610
78f12dd3
L
2611static void
2612set_code_flag (int value)
2613{
2614 update_code_flag (value, 0);
2615}
2616
eecb386c 2617static void
e3bb37b5 2618set_16bit_gcc_code_flag (int new_code_flag)
252b5132 2619{
1e9cc1c2 2620 flag_code = (enum flag_code) new_code_flag;
40fb9820
L
2621 if (flag_code != CODE_16BIT)
2622 abort ();
2623 cpu_arch_flags.bitfield.cpu64 = 0;
2624 cpu_arch_flags.bitfield.cpuno64 = 1;
9306ca4a 2625 stackop_size = LONG_MNEM_SUFFIX;
252b5132
RH
2626}
2627
2628static void
e3bb37b5 2629set_intel_syntax (int syntax_flag)
252b5132
RH
2630{
2631 /* Find out if register prefixing is specified. */
2632 int ask_naked_reg = 0;
2633
2634 SKIP_WHITESPACE ();
29b0f896 2635 if (!is_end_of_line[(unsigned char) *input_line_pointer])
252b5132 2636 {
d02603dc
NC
2637 char *string;
2638 int e = get_symbol_name (&string);
252b5132 2639
47926f60 2640 if (strcmp (string, "prefix") == 0)
252b5132 2641 ask_naked_reg = 1;
47926f60 2642 else if (strcmp (string, "noprefix") == 0)
252b5132
RH
2643 ask_naked_reg = -1;
2644 else
d0b47220 2645 as_bad (_("bad argument to syntax directive."));
d02603dc 2646 (void) restore_line_pointer (e);
252b5132
RH
2647 }
2648 demand_empty_rest_of_line ();
c3332e24 2649
252b5132
RH
2650 intel_syntax = syntax_flag;
2651
2652 if (ask_naked_reg == 0)
f86103b7
AM
2653 allow_naked_reg = (intel_syntax
2654 && (bfd_get_symbol_leading_char (stdoutput) != '\0'));
252b5132
RH
2655 else
2656 allow_naked_reg = (ask_naked_reg < 0);
9306ca4a 2657
ee86248c 2658 expr_set_rank (O_full_ptr, syntax_flag ? 10 : 0);
7ab9ffdd 2659
e4a3b5a4 2660 identifier_chars['%'] = intel_syntax && allow_naked_reg ? '%' : 0;
9306ca4a 2661 identifier_chars['$'] = intel_syntax ? '$' : 0;
e4a3b5a4 2662 register_prefix = allow_naked_reg ? "" : "%";
252b5132
RH
2663}
2664
1efbbeb4
L
2665static void
2666set_intel_mnemonic (int mnemonic_flag)
2667{
e1d4d893 2668 intel_mnemonic = mnemonic_flag;
1efbbeb4
L
2669}
2670
db51cc60
L
2671static void
2672set_allow_index_reg (int flag)
2673{
2674 allow_index_reg = flag;
2675}
2676
cb19c032 2677static void
7bab8ab5 2678set_check (int what)
cb19c032 2679{
7bab8ab5
JB
2680 enum check_kind *kind;
2681 const char *str;
2682
2683 if (what)
2684 {
2685 kind = &operand_check;
2686 str = "operand";
2687 }
2688 else
2689 {
2690 kind = &sse_check;
2691 str = "sse";
2692 }
2693
cb19c032
L
2694 SKIP_WHITESPACE ();
2695
2696 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2697 {
d02603dc
NC
2698 char *string;
2699 int e = get_symbol_name (&string);
cb19c032
L
2700
2701 if (strcmp (string, "none") == 0)
7bab8ab5 2702 *kind = check_none;
cb19c032 2703 else if (strcmp (string, "warning") == 0)
7bab8ab5 2704 *kind = check_warning;
cb19c032 2705 else if (strcmp (string, "error") == 0)
7bab8ab5 2706 *kind = check_error;
cb19c032 2707 else
7bab8ab5 2708 as_bad (_("bad argument to %s_check directive."), str);
d02603dc 2709 (void) restore_line_pointer (e);
cb19c032
L
2710 }
2711 else
7bab8ab5 2712 as_bad (_("missing argument for %s_check directive"), str);
cb19c032
L
2713
2714 demand_empty_rest_of_line ();
2715}
2716
8a9036a4
L
2717static void
2718check_cpu_arch_compatible (const char *name ATTRIBUTE_UNUSED,
1e9cc1c2 2719 i386_cpu_flags new_flag ATTRIBUTE_UNUSED)
8a9036a4
L
2720{
2721#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2722 static const char *arch;
2723
2724 /* Intel LIOM is only supported on ELF. */
2725 if (!IS_ELF)
2726 return;
2727
2728 if (!arch)
2729 {
2730 /* Use cpu_arch_name if it is set in md_parse_option. Otherwise
2731 use default_arch. */
2732 arch = cpu_arch_name;
2733 if (!arch)
2734 arch = default_arch;
2735 }
2736
81486035
L
2737 /* If we are targeting Intel MCU, we must enable it. */
2738 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_IAMCU
2739 || new_flag.bitfield.cpuiamcu)
2740 return;
2741
3632d14b 2742 /* If we are targeting Intel L1OM, we must enable it. */
8a9036a4 2743 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_L1OM
1e9cc1c2 2744 || new_flag.bitfield.cpul1om)
8a9036a4 2745 return;
76ba9986 2746
7a9068fe
L
2747 /* If we are targeting Intel K1OM, we must enable it. */
2748 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_K1OM
2749 || new_flag.bitfield.cpuk1om)
2750 return;
2751
8a9036a4
L
2752 as_bad (_("`%s' is not supported on `%s'"), name, arch);
2753#endif
2754}
2755
e413e4e9 2756static void
e3bb37b5 2757set_cpu_arch (int dummy ATTRIBUTE_UNUSED)
e413e4e9 2758{
47926f60 2759 SKIP_WHITESPACE ();
e413e4e9 2760
29b0f896 2761 if (!is_end_of_line[(unsigned char) *input_line_pointer])
e413e4e9 2762 {
d02603dc
NC
2763 char *string;
2764 int e = get_symbol_name (&string);
91d6fa6a 2765 unsigned int j;
40fb9820 2766 i386_cpu_flags flags;
e413e4e9 2767
91d6fa6a 2768 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
e413e4e9 2769 {
91d6fa6a 2770 if (strcmp (string, cpu_arch[j].name) == 0)
e413e4e9 2771 {
91d6fa6a 2772 check_cpu_arch_compatible (string, cpu_arch[j].flags);
8a9036a4 2773
5c6af06e
JB
2774 if (*string != '.')
2775 {
91d6fa6a 2776 cpu_arch_name = cpu_arch[j].name;
5c6af06e 2777 cpu_sub_arch_name = NULL;
91d6fa6a 2778 cpu_arch_flags = cpu_arch[j].flags;
40fb9820
L
2779 if (flag_code == CODE_64BIT)
2780 {
2781 cpu_arch_flags.bitfield.cpu64 = 1;
2782 cpu_arch_flags.bitfield.cpuno64 = 0;
2783 }
2784 else
2785 {
2786 cpu_arch_flags.bitfield.cpu64 = 0;
2787 cpu_arch_flags.bitfield.cpuno64 = 1;
2788 }
91d6fa6a
NC
2789 cpu_arch_isa = cpu_arch[j].type;
2790 cpu_arch_isa_flags = cpu_arch[j].flags;
ccc9c027
L
2791 if (!cpu_arch_tune_set)
2792 {
2793 cpu_arch_tune = cpu_arch_isa;
2794 cpu_arch_tune_flags = cpu_arch_isa_flags;
2795 }
5c6af06e
JB
2796 break;
2797 }
40fb9820 2798
293f5f65
L
2799 flags = cpu_flags_or (cpu_arch_flags,
2800 cpu_arch[j].flags);
81486035 2801
5b64d091 2802 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
5c6af06e 2803 {
6305a203
L
2804 if (cpu_sub_arch_name)
2805 {
2806 char *name = cpu_sub_arch_name;
2807 cpu_sub_arch_name = concat (name,
91d6fa6a 2808 cpu_arch[j].name,
1bf57e9f 2809 (const char *) NULL);
6305a203
L
2810 free (name);
2811 }
2812 else
91d6fa6a 2813 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
40fb9820 2814 cpu_arch_flags = flags;
a586129e 2815 cpu_arch_isa_flags = flags;
5c6af06e 2816 }
0089dace
L
2817 else
2818 cpu_arch_isa_flags
2819 = cpu_flags_or (cpu_arch_isa_flags,
2820 cpu_arch[j].flags);
d02603dc 2821 (void) restore_line_pointer (e);
5c6af06e
JB
2822 demand_empty_rest_of_line ();
2823 return;
e413e4e9
AM
2824 }
2825 }
293f5f65
L
2826
2827 if (*string == '.' && j >= ARRAY_SIZE (cpu_arch))
2828 {
33eaf5de 2829 /* Disable an ISA extension. */
293f5f65
L
2830 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
2831 if (strcmp (string + 1, cpu_noarch [j].name) == 0)
2832 {
2833 flags = cpu_flags_and_not (cpu_arch_flags,
2834 cpu_noarch[j].flags);
2835 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
2836 {
2837 if (cpu_sub_arch_name)
2838 {
2839 char *name = cpu_sub_arch_name;
2840 cpu_sub_arch_name = concat (name, string,
2841 (const char *) NULL);
2842 free (name);
2843 }
2844 else
2845 cpu_sub_arch_name = xstrdup (string);
2846 cpu_arch_flags = flags;
2847 cpu_arch_isa_flags = flags;
2848 }
2849 (void) restore_line_pointer (e);
2850 demand_empty_rest_of_line ();
2851 return;
2852 }
2853
2854 j = ARRAY_SIZE (cpu_arch);
2855 }
2856
91d6fa6a 2857 if (j >= ARRAY_SIZE (cpu_arch))
e413e4e9
AM
2858 as_bad (_("no such architecture: `%s'"), string);
2859
2860 *input_line_pointer = e;
2861 }
2862 else
2863 as_bad (_("missing cpu architecture"));
2864
fddf5b5b
AM
2865 no_cond_jump_promotion = 0;
2866 if (*input_line_pointer == ','
29b0f896 2867 && !is_end_of_line[(unsigned char) input_line_pointer[1]])
fddf5b5b 2868 {
d02603dc
NC
2869 char *string;
2870 char e;
2871
2872 ++input_line_pointer;
2873 e = get_symbol_name (&string);
fddf5b5b
AM
2874
2875 if (strcmp (string, "nojumps") == 0)
2876 no_cond_jump_promotion = 1;
2877 else if (strcmp (string, "jumps") == 0)
2878 ;
2879 else
2880 as_bad (_("no such architecture modifier: `%s'"), string);
2881
d02603dc 2882 (void) restore_line_pointer (e);
fddf5b5b
AM
2883 }
2884
e413e4e9
AM
2885 demand_empty_rest_of_line ();
2886}
2887
8a9036a4
L
2888enum bfd_architecture
2889i386_arch (void)
2890{
3632d14b 2891 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4
L
2892 {
2893 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2894 || flag_code != CODE_64BIT)
2895 as_fatal (_("Intel L1OM is 64bit ELF only"));
2896 return bfd_arch_l1om;
2897 }
7a9068fe
L
2898 else if (cpu_arch_isa == PROCESSOR_K1OM)
2899 {
2900 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2901 || flag_code != CODE_64BIT)
2902 as_fatal (_("Intel K1OM is 64bit ELF only"));
2903 return bfd_arch_k1om;
2904 }
81486035
L
2905 else if (cpu_arch_isa == PROCESSOR_IAMCU)
2906 {
2907 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2908 || flag_code == CODE_64BIT)
2909 as_fatal (_("Intel MCU is 32bit ELF only"));
2910 return bfd_arch_iamcu;
2911 }
8a9036a4
L
2912 else
2913 return bfd_arch_i386;
2914}
2915
b9d79e03 2916unsigned long
7016a5d5 2917i386_mach (void)
b9d79e03 2918{
351f65ca 2919 if (!strncmp (default_arch, "x86_64", 6))
8a9036a4 2920 {
3632d14b 2921 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 2922 {
351f65ca
L
2923 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2924 || default_arch[6] != '\0')
8a9036a4
L
2925 as_fatal (_("Intel L1OM is 64bit ELF only"));
2926 return bfd_mach_l1om;
2927 }
7a9068fe
L
2928 else if (cpu_arch_isa == PROCESSOR_K1OM)
2929 {
2930 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2931 || default_arch[6] != '\0')
2932 as_fatal (_("Intel K1OM is 64bit ELF only"));
2933 return bfd_mach_k1om;
2934 }
351f65ca 2935 else if (default_arch[6] == '\0')
8a9036a4 2936 return bfd_mach_x86_64;
351f65ca
L
2937 else
2938 return bfd_mach_x64_32;
8a9036a4 2939 }
5197d474
L
2940 else if (!strcmp (default_arch, "i386")
2941 || !strcmp (default_arch, "iamcu"))
81486035
L
2942 {
2943 if (cpu_arch_isa == PROCESSOR_IAMCU)
2944 {
2945 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
2946 as_fatal (_("Intel MCU is 32bit ELF only"));
2947 return bfd_mach_i386_iamcu;
2948 }
2949 else
2950 return bfd_mach_i386_i386;
2951 }
b9d79e03 2952 else
2b5d6a91 2953 as_fatal (_("unknown architecture"));
b9d79e03 2954}
b9d79e03 2955\f
252b5132 2956void
7016a5d5 2957md_begin (void)
252b5132
RH
2958{
2959 const char *hash_err;
2960
86fa6981
L
2961 /* Support pseudo prefixes like {disp32}. */
2962 lex_type ['{'] = LEX_BEGIN_NAME;
2963
47926f60 2964 /* Initialize op_hash hash table. */
252b5132
RH
2965 op_hash = hash_new ();
2966
2967 {
d3ce72d0 2968 const insn_template *optab;
29b0f896 2969 templates *core_optab;
252b5132 2970
47926f60
KH
2971 /* Setup for loop. */
2972 optab = i386_optab;
add39d23 2973 core_optab = XNEW (templates);
252b5132
RH
2974 core_optab->start = optab;
2975
2976 while (1)
2977 {
2978 ++optab;
2979 if (optab->name == NULL
2980 || strcmp (optab->name, (optab - 1)->name) != 0)
2981 {
2982 /* different name --> ship out current template list;
47926f60 2983 add to hash table; & begin anew. */
252b5132
RH
2984 core_optab->end = optab;
2985 hash_err = hash_insert (op_hash,
2986 (optab - 1)->name,
5a49b8ac 2987 (void *) core_optab);
252b5132
RH
2988 if (hash_err)
2989 {
b37df7c4 2990 as_fatal (_("can't hash %s: %s"),
252b5132
RH
2991 (optab - 1)->name,
2992 hash_err);
2993 }
2994 if (optab->name == NULL)
2995 break;
add39d23 2996 core_optab = XNEW (templates);
252b5132
RH
2997 core_optab->start = optab;
2998 }
2999 }
3000 }
3001
47926f60 3002 /* Initialize reg_hash hash table. */
252b5132
RH
3003 reg_hash = hash_new ();
3004 {
29b0f896 3005 const reg_entry *regtab;
c3fe08fa 3006 unsigned int regtab_size = i386_regtab_size;
252b5132 3007
c3fe08fa 3008 for (regtab = i386_regtab; regtab_size--; regtab++)
252b5132 3009 {
5a49b8ac 3010 hash_err = hash_insert (reg_hash, regtab->reg_name, (void *) regtab);
252b5132 3011 if (hash_err)
b37df7c4 3012 as_fatal (_("can't hash %s: %s"),
3e73aa7c
JH
3013 regtab->reg_name,
3014 hash_err);
252b5132
RH
3015 }
3016 }
3017
47926f60 3018 /* Fill in lexical tables: mnemonic_chars, operand_chars. */
252b5132 3019 {
29b0f896
AM
3020 int c;
3021 char *p;
252b5132
RH
3022
3023 for (c = 0; c < 256; c++)
3024 {
3882b010 3025 if (ISDIGIT (c))
252b5132
RH
3026 {
3027 digit_chars[c] = c;
3028 mnemonic_chars[c] = c;
3029 register_chars[c] = c;
3030 operand_chars[c] = c;
3031 }
3882b010 3032 else if (ISLOWER (c))
252b5132
RH
3033 {
3034 mnemonic_chars[c] = c;
3035 register_chars[c] = c;
3036 operand_chars[c] = c;
3037 }
3882b010 3038 else if (ISUPPER (c))
252b5132 3039 {
3882b010 3040 mnemonic_chars[c] = TOLOWER (c);
252b5132
RH
3041 register_chars[c] = mnemonic_chars[c];
3042 operand_chars[c] = c;
3043 }
43234a1e 3044 else if (c == '{' || c == '}')
86fa6981
L
3045 {
3046 mnemonic_chars[c] = c;
3047 operand_chars[c] = c;
3048 }
252b5132 3049
3882b010 3050 if (ISALPHA (c) || ISDIGIT (c))
252b5132
RH
3051 identifier_chars[c] = c;
3052 else if (c >= 128)
3053 {
3054 identifier_chars[c] = c;
3055 operand_chars[c] = c;
3056 }
3057 }
3058
3059#ifdef LEX_AT
3060 identifier_chars['@'] = '@';
32137342
NC
3061#endif
3062#ifdef LEX_QM
3063 identifier_chars['?'] = '?';
3064 operand_chars['?'] = '?';
252b5132 3065#endif
252b5132 3066 digit_chars['-'] = '-';
c0f3af97 3067 mnemonic_chars['_'] = '_';
791fe849 3068 mnemonic_chars['-'] = '-';
0003779b 3069 mnemonic_chars['.'] = '.';
252b5132
RH
3070 identifier_chars['_'] = '_';
3071 identifier_chars['.'] = '.';
3072
3073 for (p = operand_special_chars; *p != '\0'; p++)
3074 operand_chars[(unsigned char) *p] = *p;
3075 }
3076
a4447b93
RH
3077 if (flag_code == CODE_64BIT)
3078 {
ca19b261
KT
3079#if defined (OBJ_COFF) && defined (TE_PE)
3080 x86_dwarf2_return_column = (OUTPUT_FLAVOR == bfd_target_coff_flavour
3081 ? 32 : 16);
3082#else
a4447b93 3083 x86_dwarf2_return_column = 16;
ca19b261 3084#endif
61ff971f 3085 x86_cie_data_alignment = -8;
a4447b93
RH
3086 }
3087 else
3088 {
3089 x86_dwarf2_return_column = 8;
3090 x86_cie_data_alignment = -4;
3091 }
e379e5f3
L
3092
3093 /* NB: FUSED_JCC_PADDING frag must have sufficient room so that it
3094 can be turned into BRANCH_PREFIX frag. */
3095 if (align_branch_prefix_size > MAX_FUSED_JCC_PADDING_SIZE)
3096 abort ();
252b5132
RH
3097}
3098
3099void
e3bb37b5 3100i386_print_statistics (FILE *file)
252b5132
RH
3101{
3102 hash_print_statistics (file, "i386 opcode", op_hash);
3103 hash_print_statistics (file, "i386 register", reg_hash);
3104}
3105\f
252b5132
RH
3106#ifdef DEBUG386
3107
ce8a8b2f 3108/* Debugging routines for md_assemble. */
d3ce72d0 3109static void pte (insn_template *);
40fb9820 3110static void pt (i386_operand_type);
e3bb37b5
L
3111static void pe (expressionS *);
3112static void ps (symbolS *);
252b5132
RH
3113
3114static void
2c703856 3115pi (const char *line, i386_insn *x)
252b5132 3116{
09137c09 3117 unsigned int j;
252b5132
RH
3118
3119 fprintf (stdout, "%s: template ", line);
3120 pte (&x->tm);
09f131f2
JH
3121 fprintf (stdout, " address: base %s index %s scale %x\n",
3122 x->base_reg ? x->base_reg->reg_name : "none",
3123 x->index_reg ? x->index_reg->reg_name : "none",
3124 x->log2_scale_factor);
3125 fprintf (stdout, " modrm: mode %x reg %x reg/mem %x\n",
252b5132 3126 x->rm.mode, x->rm.reg, x->rm.regmem);
09f131f2
JH
3127 fprintf (stdout, " sib: base %x index %x scale %x\n",
3128 x->sib.base, x->sib.index, x->sib.scale);
3129 fprintf (stdout, " rex: 64bit %x extX %x extY %x extZ %x\n",
161a04f6
L
3130 (x->rex & REX_W) != 0,
3131 (x->rex & REX_R) != 0,
3132 (x->rex & REX_X) != 0,
3133 (x->rex & REX_B) != 0);
09137c09 3134 for (j = 0; j < x->operands; j++)
252b5132 3135 {
09137c09
SP
3136 fprintf (stdout, " #%d: ", j + 1);
3137 pt (x->types[j]);
252b5132 3138 fprintf (stdout, "\n");
bab6aec1 3139 if (x->types[j].bitfield.class == Reg
3528c362
JB
3140 || x->types[j].bitfield.class == RegMMX
3141 || x->types[j].bitfield.class == RegSIMD
00cee14f 3142 || x->types[j].bitfield.class == SReg
4a5c67ed
JB
3143 || x->types[j].bitfield.class == RegCR
3144 || x->types[j].bitfield.class == RegDR
3145 || x->types[j].bitfield.class == RegTR)
09137c09
SP
3146 fprintf (stdout, "%s\n", x->op[j].regs->reg_name);
3147 if (operand_type_check (x->types[j], imm))
3148 pe (x->op[j].imms);
3149 if (operand_type_check (x->types[j], disp))
3150 pe (x->op[j].disps);
252b5132
RH
3151 }
3152}
3153
3154static void
d3ce72d0 3155pte (insn_template *t)
252b5132 3156{
09137c09 3157 unsigned int j;
252b5132 3158 fprintf (stdout, " %d operands ", t->operands);
47926f60 3159 fprintf (stdout, "opcode %x ", t->base_opcode);
252b5132
RH
3160 if (t->extension_opcode != None)
3161 fprintf (stdout, "ext %x ", t->extension_opcode);
40fb9820 3162 if (t->opcode_modifier.d)
252b5132 3163 fprintf (stdout, "D");
40fb9820 3164 if (t->opcode_modifier.w)
252b5132
RH
3165 fprintf (stdout, "W");
3166 fprintf (stdout, "\n");
09137c09 3167 for (j = 0; j < t->operands; j++)
252b5132 3168 {
09137c09
SP
3169 fprintf (stdout, " #%d type ", j + 1);
3170 pt (t->operand_types[j]);
252b5132
RH
3171 fprintf (stdout, "\n");
3172 }
3173}
3174
3175static void
e3bb37b5 3176pe (expressionS *e)
252b5132 3177{
24eab124 3178 fprintf (stdout, " operation %d\n", e->X_op);
b77ad1d4
AM
3179 fprintf (stdout, " add_number %ld (%lx)\n",
3180 (long) e->X_add_number, (long) e->X_add_number);
252b5132
RH
3181 if (e->X_add_symbol)
3182 {
3183 fprintf (stdout, " add_symbol ");
3184 ps (e->X_add_symbol);
3185 fprintf (stdout, "\n");
3186 }
3187 if (e->X_op_symbol)
3188 {
3189 fprintf (stdout, " op_symbol ");
3190 ps (e->X_op_symbol);
3191 fprintf (stdout, "\n");
3192 }
3193}
3194
3195static void
e3bb37b5 3196ps (symbolS *s)
252b5132
RH
3197{
3198 fprintf (stdout, "%s type %s%s",
3199 S_GET_NAME (s),
3200 S_IS_EXTERNAL (s) ? "EXTERNAL " : "",
3201 segment_name (S_GET_SEGMENT (s)));
3202}
3203
7b81dfbb 3204static struct type_name
252b5132 3205 {
40fb9820
L
3206 i386_operand_type mask;
3207 const char *name;
252b5132 3208 }
7b81dfbb 3209const type_names[] =
252b5132 3210{
40fb9820
L
3211 { OPERAND_TYPE_REG8, "r8" },
3212 { OPERAND_TYPE_REG16, "r16" },
3213 { OPERAND_TYPE_REG32, "r32" },
3214 { OPERAND_TYPE_REG64, "r64" },
2c703856
JB
3215 { OPERAND_TYPE_ACC8, "acc8" },
3216 { OPERAND_TYPE_ACC16, "acc16" },
3217 { OPERAND_TYPE_ACC32, "acc32" },
3218 { OPERAND_TYPE_ACC64, "acc64" },
40fb9820
L
3219 { OPERAND_TYPE_IMM8, "i8" },
3220 { OPERAND_TYPE_IMM8, "i8s" },
3221 { OPERAND_TYPE_IMM16, "i16" },
3222 { OPERAND_TYPE_IMM32, "i32" },
3223 { OPERAND_TYPE_IMM32S, "i32s" },
3224 { OPERAND_TYPE_IMM64, "i64" },
3225 { OPERAND_TYPE_IMM1, "i1" },
3226 { OPERAND_TYPE_BASEINDEX, "BaseIndex" },
3227 { OPERAND_TYPE_DISP8, "d8" },
3228 { OPERAND_TYPE_DISP16, "d16" },
3229 { OPERAND_TYPE_DISP32, "d32" },
3230 { OPERAND_TYPE_DISP32S, "d32s" },
3231 { OPERAND_TYPE_DISP64, "d64" },
3232 { OPERAND_TYPE_INOUTPORTREG, "InOutPortReg" },
3233 { OPERAND_TYPE_SHIFTCOUNT, "ShiftCount" },
3234 { OPERAND_TYPE_CONTROL, "control reg" },
3235 { OPERAND_TYPE_TEST, "test reg" },
3236 { OPERAND_TYPE_DEBUG, "debug reg" },
3237 { OPERAND_TYPE_FLOATREG, "FReg" },
3238 { OPERAND_TYPE_FLOATACC, "FAcc" },
21df382b 3239 { OPERAND_TYPE_SREG, "SReg" },
40fb9820
L
3240 { OPERAND_TYPE_REGMMX, "rMMX" },
3241 { OPERAND_TYPE_REGXMM, "rXMM" },
0349dc08 3242 { OPERAND_TYPE_REGYMM, "rYMM" },
43234a1e
L
3243 { OPERAND_TYPE_REGZMM, "rZMM" },
3244 { OPERAND_TYPE_REGMASK, "Mask reg" },
252b5132
RH
3245};
3246
3247static void
40fb9820 3248pt (i386_operand_type t)
252b5132 3249{
40fb9820 3250 unsigned int j;
c6fb90c8 3251 i386_operand_type a;
252b5132 3252
40fb9820 3253 for (j = 0; j < ARRAY_SIZE (type_names); j++)
c6fb90c8
L
3254 {
3255 a = operand_type_and (t, type_names[j].mask);
2c703856 3256 if (operand_type_equal (&a, &type_names[j].mask))
c6fb90c8
L
3257 fprintf (stdout, "%s, ", type_names[j].name);
3258 }
252b5132
RH
3259 fflush (stdout);
3260}
3261
3262#endif /* DEBUG386 */
3263\f
252b5132 3264static bfd_reloc_code_real_type
3956db08 3265reloc (unsigned int size,
64e74474
AM
3266 int pcrel,
3267 int sign,
3268 bfd_reloc_code_real_type other)
252b5132 3269{
47926f60 3270 if (other != NO_RELOC)
3956db08 3271 {
91d6fa6a 3272 reloc_howto_type *rel;
3956db08
JB
3273
3274 if (size == 8)
3275 switch (other)
3276 {
64e74474
AM
3277 case BFD_RELOC_X86_64_GOT32:
3278 return BFD_RELOC_X86_64_GOT64;
3279 break;
553d1284
L
3280 case BFD_RELOC_X86_64_GOTPLT64:
3281 return BFD_RELOC_X86_64_GOTPLT64;
3282 break;
64e74474
AM
3283 case BFD_RELOC_X86_64_PLTOFF64:
3284 return BFD_RELOC_X86_64_PLTOFF64;
3285 break;
3286 case BFD_RELOC_X86_64_GOTPC32:
3287 other = BFD_RELOC_X86_64_GOTPC64;
3288 break;
3289 case BFD_RELOC_X86_64_GOTPCREL:
3290 other = BFD_RELOC_X86_64_GOTPCREL64;
3291 break;
3292 case BFD_RELOC_X86_64_TPOFF32:
3293 other = BFD_RELOC_X86_64_TPOFF64;
3294 break;
3295 case BFD_RELOC_X86_64_DTPOFF32:
3296 other = BFD_RELOC_X86_64_DTPOFF64;
3297 break;
3298 default:
3299 break;
3956db08 3300 }
e05278af 3301
8ce3d284 3302#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
3303 if (other == BFD_RELOC_SIZE32)
3304 {
3305 if (size == 8)
1ab668bf 3306 other = BFD_RELOC_SIZE64;
8fd4256d 3307 if (pcrel)
1ab668bf
AM
3308 {
3309 as_bad (_("there are no pc-relative size relocations"));
3310 return NO_RELOC;
3311 }
8fd4256d 3312 }
8ce3d284 3313#endif
8fd4256d 3314
e05278af 3315 /* Sign-checking 4-byte relocations in 16-/32-bit code is pointless. */
f2d8a97c 3316 if (size == 4 && (flag_code != CODE_64BIT || disallow_64bit_reloc))
e05278af
JB
3317 sign = -1;
3318
91d6fa6a
NC
3319 rel = bfd_reloc_type_lookup (stdoutput, other);
3320 if (!rel)
3956db08 3321 as_bad (_("unknown relocation (%u)"), other);
91d6fa6a 3322 else if (size != bfd_get_reloc_size (rel))
3956db08 3323 as_bad (_("%u-byte relocation cannot be applied to %u-byte field"),
91d6fa6a 3324 bfd_get_reloc_size (rel),
3956db08 3325 size);
91d6fa6a 3326 else if (pcrel && !rel->pc_relative)
3956db08 3327 as_bad (_("non-pc-relative relocation for pc-relative field"));
91d6fa6a 3328 else if ((rel->complain_on_overflow == complain_overflow_signed
3956db08 3329 && !sign)
91d6fa6a 3330 || (rel->complain_on_overflow == complain_overflow_unsigned
64e74474 3331 && sign > 0))
3956db08
JB
3332 as_bad (_("relocated field and relocation type differ in signedness"));
3333 else
3334 return other;
3335 return NO_RELOC;
3336 }
252b5132
RH
3337
3338 if (pcrel)
3339 {
3e73aa7c 3340 if (!sign)
3956db08 3341 as_bad (_("there are no unsigned pc-relative relocations"));
252b5132
RH
3342 switch (size)
3343 {
3344 case 1: return BFD_RELOC_8_PCREL;
3345 case 2: return BFD_RELOC_16_PCREL;
d258b828 3346 case 4: return BFD_RELOC_32_PCREL;
d6ab8113 3347 case 8: return BFD_RELOC_64_PCREL;
252b5132 3348 }
3956db08 3349 as_bad (_("cannot do %u byte pc-relative relocation"), size);
252b5132
RH
3350 }
3351 else
3352 {
3956db08 3353 if (sign > 0)
e5cb08ac 3354 switch (size)
3e73aa7c
JH
3355 {
3356 case 4: return BFD_RELOC_X86_64_32S;
3357 }
3358 else
3359 switch (size)
3360 {
3361 case 1: return BFD_RELOC_8;
3362 case 2: return BFD_RELOC_16;
3363 case 4: return BFD_RELOC_32;
3364 case 8: return BFD_RELOC_64;
3365 }
3956db08
JB
3366 as_bad (_("cannot do %s %u byte relocation"),
3367 sign > 0 ? "signed" : "unsigned", size);
252b5132
RH
3368 }
3369
0cc9e1d3 3370 return NO_RELOC;
252b5132
RH
3371}
3372
47926f60
KH
3373/* Here we decide which fixups can be adjusted to make them relative to
3374 the beginning of the section instead of the symbol. Basically we need
3375 to make sure that the dynamic relocations are done correctly, so in
3376 some cases we force the original symbol to be used. */
3377
252b5132 3378int
e3bb37b5 3379tc_i386_fix_adjustable (fixS *fixP ATTRIBUTE_UNUSED)
252b5132 3380{
6d249963 3381#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 3382 if (!IS_ELF)
31312f95
AM
3383 return 1;
3384
a161fe53
AM
3385 /* Don't adjust pc-relative references to merge sections in 64-bit
3386 mode. */
3387 if (use_rela_relocations
3388 && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0
3389 && fixP->fx_pcrel)
252b5132 3390 return 0;
31312f95 3391
8d01d9a9
AJ
3392 /* The x86_64 GOTPCREL are represented as 32bit PCrel relocations
3393 and changed later by validate_fix. */
3394 if (GOT_symbol && fixP->fx_subsy == GOT_symbol
3395 && fixP->fx_r_type == BFD_RELOC_32_PCREL)
3396 return 0;
3397
8fd4256d
L
3398 /* Adjust_reloc_syms doesn't know about the GOT. Need to keep symbol
3399 for size relocations. */
3400 if (fixP->fx_r_type == BFD_RELOC_SIZE32
3401 || fixP->fx_r_type == BFD_RELOC_SIZE64
3402 || fixP->fx_r_type == BFD_RELOC_386_GOTOFF
252b5132
RH
3403 || fixP->fx_r_type == BFD_RELOC_386_PLT32
3404 || fixP->fx_r_type == BFD_RELOC_386_GOT32
02a86693 3405 || fixP->fx_r_type == BFD_RELOC_386_GOT32X
13ae64f3
JJ
3406 || fixP->fx_r_type == BFD_RELOC_386_TLS_GD
3407 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDM
3408 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDO_32
3409 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE_32
37e55690
JJ
3410 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE
3411 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTIE
13ae64f3
JJ
3412 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE_32
3413 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE
67a4f2b7
AO
3414 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTDESC
3415 || fixP->fx_r_type == BFD_RELOC_386_TLS_DESC_CALL
3e73aa7c
JH
3416 || fixP->fx_r_type == BFD_RELOC_X86_64_PLT32
3417 || fixP->fx_r_type == BFD_RELOC_X86_64_GOT32
80b3ee89 3418 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCREL
56ceb5b5
L
3419 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCRELX
3420 || fixP->fx_r_type == BFD_RELOC_X86_64_REX_GOTPCRELX
bffbf940
JJ
3421 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSGD
3422 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSLD
3423 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF32
d6ab8113 3424 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF64
bffbf940
JJ
3425 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTTPOFF
3426 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF32
d6ab8113
JB
3427 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF64
3428 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTOFF64
67a4f2b7
AO
3429 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPC32_TLSDESC
3430 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSDESC_CALL
252b5132
RH
3431 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
3432 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
3433 return 0;
31312f95 3434#endif
252b5132
RH
3435 return 1;
3436}
252b5132 3437
b4cac588 3438static int
e3bb37b5 3439intel_float_operand (const char *mnemonic)
252b5132 3440{
9306ca4a
JB
3441 /* Note that the value returned is meaningful only for opcodes with (memory)
3442 operands, hence the code here is free to improperly handle opcodes that
3443 have no operands (for better performance and smaller code). */
3444
3445 if (mnemonic[0] != 'f')
3446 return 0; /* non-math */
3447
3448 switch (mnemonic[1])
3449 {
3450 /* fclex, fdecstp, fdisi, femms, feni, fincstp, finit, fsetpm, and
3451 the fs segment override prefix not currently handled because no
3452 call path can make opcodes without operands get here */
3453 case 'i':
3454 return 2 /* integer op */;
3455 case 'l':
3456 if (mnemonic[2] == 'd' && (mnemonic[3] == 'c' || mnemonic[3] == 'e'))
3457 return 3; /* fldcw/fldenv */
3458 break;
3459 case 'n':
3460 if (mnemonic[2] != 'o' /* fnop */)
3461 return 3; /* non-waiting control op */
3462 break;
3463 case 'r':
3464 if (mnemonic[2] == 's')
3465 return 3; /* frstor/frstpm */
3466 break;
3467 case 's':
3468 if (mnemonic[2] == 'a')
3469 return 3; /* fsave */
3470 if (mnemonic[2] == 't')
3471 {
3472 switch (mnemonic[3])
3473 {
3474 case 'c': /* fstcw */
3475 case 'd': /* fstdw */
3476 case 'e': /* fstenv */
3477 case 's': /* fsts[gw] */
3478 return 3;
3479 }
3480 }
3481 break;
3482 case 'x':
3483 if (mnemonic[2] == 'r' || mnemonic[2] == 's')
3484 return 0; /* fxsave/fxrstor are not really math ops */
3485 break;
3486 }
252b5132 3487
9306ca4a 3488 return 1;
252b5132
RH
3489}
3490
c0f3af97
L
3491/* Build the VEX prefix. */
3492
3493static void
d3ce72d0 3494build_vex_prefix (const insn_template *t)
c0f3af97
L
3495{
3496 unsigned int register_specifier;
3497 unsigned int implied_prefix;
3498 unsigned int vector_length;
03751133 3499 unsigned int w;
c0f3af97
L
3500
3501 /* Check register specifier. */
3502 if (i.vex.register_specifier)
43234a1e
L
3503 {
3504 register_specifier =
3505 ~register_number (i.vex.register_specifier) & 0xf;
3506 gas_assert ((i.vex.register_specifier->reg_flags & RegVRex) == 0);
3507 }
c0f3af97
L
3508 else
3509 register_specifier = 0xf;
3510
79f0fa25
L
3511 /* Use 2-byte VEX prefix by swapping destination and source operand
3512 if there are more than 1 register operand. */
3513 if (i.reg_operands > 1
3514 && i.vec_encoding != vex_encoding_vex3
86fa6981 3515 && i.dir_encoding == dir_encoding_default
fa99fab2 3516 && i.operands == i.reg_operands
dbbc8b7e 3517 && operand_type_equal (&i.types[0], &i.types[i.operands - 1])
7f399153 3518 && i.tm.opcode_modifier.vexopcode == VEX0F
dbbc8b7e 3519 && (i.tm.opcode_modifier.load || i.tm.opcode_modifier.d)
fa99fab2
L
3520 && i.rex == REX_B)
3521 {
3522 unsigned int xchg = i.operands - 1;
3523 union i386_op temp_op;
3524 i386_operand_type temp_type;
3525
3526 temp_type = i.types[xchg];
3527 i.types[xchg] = i.types[0];
3528 i.types[0] = temp_type;
3529 temp_op = i.op[xchg];
3530 i.op[xchg] = i.op[0];
3531 i.op[0] = temp_op;
3532
9c2799c2 3533 gas_assert (i.rm.mode == 3);
fa99fab2
L
3534
3535 i.rex = REX_R;
3536 xchg = i.rm.regmem;
3537 i.rm.regmem = i.rm.reg;
3538 i.rm.reg = xchg;
3539
dbbc8b7e
JB
3540 if (i.tm.opcode_modifier.d)
3541 i.tm.base_opcode ^= (i.tm.base_opcode & 0xee) != 0x6e
3542 ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD;
3543 else /* Use the next insn. */
3544 i.tm = t[1];
fa99fab2
L
3545 }
3546
79dec6b7
JB
3547 /* Use 2-byte VEX prefix by swapping commutative source operands if there
3548 are no memory operands and at least 3 register ones. */
3549 if (i.reg_operands >= 3
3550 && i.vec_encoding != vex_encoding_vex3
3551 && i.reg_operands == i.operands - i.imm_operands
3552 && i.tm.opcode_modifier.vex
3553 && i.tm.opcode_modifier.commutative
3554 && (i.tm.opcode_modifier.sse2avx || optimize > 1)
3555 && i.rex == REX_B
3556 && i.vex.register_specifier
3557 && !(i.vex.register_specifier->reg_flags & RegRex))
3558 {
3559 unsigned int xchg = i.operands - i.reg_operands;
3560 union i386_op temp_op;
3561 i386_operand_type temp_type;
3562
3563 gas_assert (i.tm.opcode_modifier.vexopcode == VEX0F);
3564 gas_assert (!i.tm.opcode_modifier.sae);
3565 gas_assert (operand_type_equal (&i.types[i.operands - 2],
3566 &i.types[i.operands - 3]));
3567 gas_assert (i.rm.mode == 3);
3568
3569 temp_type = i.types[xchg];
3570 i.types[xchg] = i.types[xchg + 1];
3571 i.types[xchg + 1] = temp_type;
3572 temp_op = i.op[xchg];
3573 i.op[xchg] = i.op[xchg + 1];
3574 i.op[xchg + 1] = temp_op;
3575
3576 i.rex = 0;
3577 xchg = i.rm.regmem | 8;
3578 i.rm.regmem = ~register_specifier & 0xf;
3579 gas_assert (!(i.rm.regmem & 8));
3580 i.vex.register_specifier += xchg - i.rm.regmem;
3581 register_specifier = ~xchg & 0xf;
3582 }
3583
539f890d
L
3584 if (i.tm.opcode_modifier.vex == VEXScalar)
3585 vector_length = avxscalar;
10c17abd
JB
3586 else if (i.tm.opcode_modifier.vex == VEX256)
3587 vector_length = 1;
539f890d 3588 else
10c17abd 3589 {
56522fc5 3590 unsigned int op;
10c17abd 3591
c7213af9
L
3592 /* Determine vector length from the last multi-length vector
3593 operand. */
10c17abd 3594 vector_length = 0;
56522fc5 3595 for (op = t->operands; op--;)
10c17abd
JB
3596 if (t->operand_types[op].bitfield.xmmword
3597 && t->operand_types[op].bitfield.ymmword
3598 && i.types[op].bitfield.ymmword)
3599 {
3600 vector_length = 1;
3601 break;
3602 }
3603 }
c0f3af97
L
3604
3605 switch ((i.tm.base_opcode >> 8) & 0xff)
3606 {
3607 case 0:
3608 implied_prefix = 0;
3609 break;
3610 case DATA_PREFIX_OPCODE:
3611 implied_prefix = 1;
3612 break;
3613 case REPE_PREFIX_OPCODE:
3614 implied_prefix = 2;
3615 break;
3616 case REPNE_PREFIX_OPCODE:
3617 implied_prefix = 3;
3618 break;
3619 default:
3620 abort ();
3621 }
3622
03751133
L
3623 /* Check the REX.W bit and VEXW. */
3624 if (i.tm.opcode_modifier.vexw == VEXWIG)
3625 w = (vexwig == vexw1 || (i.rex & REX_W)) ? 1 : 0;
3626 else if (i.tm.opcode_modifier.vexw)
3627 w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0;
3628 else
931d03b7 3629 w = (flag_code == CODE_64BIT ? i.rex & REX_W : vexwig == vexw1) ? 1 : 0;
03751133 3630
c0f3af97 3631 /* Use 2-byte VEX prefix if possible. */
03751133
L
3632 if (w == 0
3633 && i.vec_encoding != vex_encoding_vex3
86fa6981 3634 && i.tm.opcode_modifier.vexopcode == VEX0F
c0f3af97
L
3635 && (i.rex & (REX_W | REX_X | REX_B)) == 0)
3636 {
3637 /* 2-byte VEX prefix. */
3638 unsigned int r;
3639
3640 i.vex.length = 2;
3641 i.vex.bytes[0] = 0xc5;
3642
3643 /* Check the REX.R bit. */
3644 r = (i.rex & REX_R) ? 0 : 1;
3645 i.vex.bytes[1] = (r << 7
3646 | register_specifier << 3
3647 | vector_length << 2
3648 | implied_prefix);
3649 }
3650 else
3651 {
3652 /* 3-byte VEX prefix. */
03751133 3653 unsigned int m;
c0f3af97 3654
f88c9eb0 3655 i.vex.length = 3;
f88c9eb0 3656
7f399153 3657 switch (i.tm.opcode_modifier.vexopcode)
5dd85c99 3658 {
7f399153
L
3659 case VEX0F:
3660 m = 0x1;
80de6e00 3661 i.vex.bytes[0] = 0xc4;
7f399153
L
3662 break;
3663 case VEX0F38:
3664 m = 0x2;
80de6e00 3665 i.vex.bytes[0] = 0xc4;
7f399153
L
3666 break;
3667 case VEX0F3A:
3668 m = 0x3;
80de6e00 3669 i.vex.bytes[0] = 0xc4;
7f399153
L
3670 break;
3671 case XOP08:
5dd85c99
SP
3672 m = 0x8;
3673 i.vex.bytes[0] = 0x8f;
7f399153
L
3674 break;
3675 case XOP09:
f88c9eb0
SP
3676 m = 0x9;
3677 i.vex.bytes[0] = 0x8f;
7f399153
L
3678 break;
3679 case XOP0A:
f88c9eb0
SP
3680 m = 0xa;
3681 i.vex.bytes[0] = 0x8f;
7f399153
L
3682 break;
3683 default:
3684 abort ();
f88c9eb0 3685 }
c0f3af97 3686
c0f3af97
L
3687 /* The high 3 bits of the second VEX byte are 1's compliment
3688 of RXB bits from REX. */
3689 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m;
3690
c0f3af97
L
3691 i.vex.bytes[2] = (w << 7
3692 | register_specifier << 3
3693 | vector_length << 2
3694 | implied_prefix);
3695 }
3696}
3697
e771e7c9
JB
3698static INLINE bfd_boolean
3699is_evex_encoding (const insn_template *t)
3700{
7091c612 3701 return t->opcode_modifier.evex || t->opcode_modifier.disp8memshift
e771e7c9 3702 || t->opcode_modifier.broadcast || t->opcode_modifier.masking
a80195f1 3703 || t->opcode_modifier.sae;
e771e7c9
JB
3704}
3705
7a8655d2
JB
3706static INLINE bfd_boolean
3707is_any_vex_encoding (const insn_template *t)
3708{
3709 return t->opcode_modifier.vex || t->opcode_modifier.vexopcode
3710 || is_evex_encoding (t);
3711}
3712
43234a1e
L
3713/* Build the EVEX prefix. */
3714
3715static void
3716build_evex_prefix (void)
3717{
3718 unsigned int register_specifier;
3719 unsigned int implied_prefix;
3720 unsigned int m, w;
3721 rex_byte vrex_used = 0;
3722
3723 /* Check register specifier. */
3724 if (i.vex.register_specifier)
3725 {
3726 gas_assert ((i.vrex & REX_X) == 0);
3727
3728 register_specifier = i.vex.register_specifier->reg_num;
3729 if ((i.vex.register_specifier->reg_flags & RegRex))
3730 register_specifier += 8;
3731 /* The upper 16 registers are encoded in the fourth byte of the
3732 EVEX prefix. */
3733 if (!(i.vex.register_specifier->reg_flags & RegVRex))
3734 i.vex.bytes[3] = 0x8;
3735 register_specifier = ~register_specifier & 0xf;
3736 }
3737 else
3738 {
3739 register_specifier = 0xf;
3740
3741 /* Encode upper 16 vector index register in the fourth byte of
3742 the EVEX prefix. */
3743 if (!(i.vrex & REX_X))
3744 i.vex.bytes[3] = 0x8;
3745 else
3746 vrex_used |= REX_X;
3747 }
3748
3749 switch ((i.tm.base_opcode >> 8) & 0xff)
3750 {
3751 case 0:
3752 implied_prefix = 0;
3753 break;
3754 case DATA_PREFIX_OPCODE:
3755 implied_prefix = 1;
3756 break;
3757 case REPE_PREFIX_OPCODE:
3758 implied_prefix = 2;
3759 break;
3760 case REPNE_PREFIX_OPCODE:
3761 implied_prefix = 3;
3762 break;
3763 default:
3764 abort ();
3765 }
3766
3767 /* 4 byte EVEX prefix. */
3768 i.vex.length = 4;
3769 i.vex.bytes[0] = 0x62;
3770
3771 /* mmmm bits. */
3772 switch (i.tm.opcode_modifier.vexopcode)
3773 {
3774 case VEX0F:
3775 m = 1;
3776 break;
3777 case VEX0F38:
3778 m = 2;
3779 break;
3780 case VEX0F3A:
3781 m = 3;
3782 break;
3783 default:
3784 abort ();
3785 break;
3786 }
3787
3788 /* The high 3 bits of the second EVEX byte are 1's compliment of RXB
3789 bits from REX. */
3790 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m;
3791
3792 /* The fifth bit of the second EVEX byte is 1's compliment of the
3793 REX_R bit in VREX. */
3794 if (!(i.vrex & REX_R))
3795 i.vex.bytes[1] |= 0x10;
3796 else
3797 vrex_used |= REX_R;
3798
3799 if ((i.reg_operands + i.imm_operands) == i.operands)
3800 {
3801 /* When all operands are registers, the REX_X bit in REX is not
3802 used. We reuse it to encode the upper 16 registers, which is
3803 indicated by the REX_B bit in VREX. The REX_X bit is encoded
3804 as 1's compliment. */
3805 if ((i.vrex & REX_B))
3806 {
3807 vrex_used |= REX_B;
3808 i.vex.bytes[1] &= ~0x40;
3809 }
3810 }
3811
3812 /* EVEX instructions shouldn't need the REX prefix. */
3813 i.vrex &= ~vrex_used;
3814 gas_assert (i.vrex == 0);
3815
6865c043
L
3816 /* Check the REX.W bit and VEXW. */
3817 if (i.tm.opcode_modifier.vexw == VEXWIG)
3818 w = (evexwig == evexw1 || (i.rex & REX_W)) ? 1 : 0;
3819 else if (i.tm.opcode_modifier.vexw)
3820 w = i.tm.opcode_modifier.vexw == VEXW1 ? 1 : 0;
3821 else
931d03b7 3822 w = (flag_code == CODE_64BIT ? i.rex & REX_W : evexwig == evexw1) ? 1 : 0;
43234a1e
L
3823
3824 /* Encode the U bit. */
3825 implied_prefix |= 0x4;
3826
3827 /* The third byte of the EVEX prefix. */
3828 i.vex.bytes[2] = (w << 7 | register_specifier << 3 | implied_prefix);
3829
3830 /* The fourth byte of the EVEX prefix. */
3831 /* The zeroing-masking bit. */
3832 if (i.mask && i.mask->zeroing)
3833 i.vex.bytes[3] |= 0x80;
3834
3835 /* Don't always set the broadcast bit if there is no RC. */
3836 if (!i.rounding)
3837 {
3838 /* Encode the vector length. */
3839 unsigned int vec_length;
3840
e771e7c9
JB
3841 if (!i.tm.opcode_modifier.evex
3842 || i.tm.opcode_modifier.evex == EVEXDYN)
3843 {
56522fc5 3844 unsigned int op;
e771e7c9 3845
c7213af9
L
3846 /* Determine vector length from the last multi-length vector
3847 operand. */
e771e7c9 3848 vec_length = 0;
56522fc5 3849 for (op = i.operands; op--;)
e771e7c9
JB
3850 if (i.tm.operand_types[op].bitfield.xmmword
3851 + i.tm.operand_types[op].bitfield.ymmword
3852 + i.tm.operand_types[op].bitfield.zmmword > 1)
3853 {
3854 if (i.types[op].bitfield.zmmword)
c7213af9
L
3855 {
3856 i.tm.opcode_modifier.evex = EVEX512;
3857 break;
3858 }
e771e7c9 3859 else if (i.types[op].bitfield.ymmword)
c7213af9
L
3860 {
3861 i.tm.opcode_modifier.evex = EVEX256;
3862 break;
3863 }
e771e7c9 3864 else if (i.types[op].bitfield.xmmword)
c7213af9
L
3865 {
3866 i.tm.opcode_modifier.evex = EVEX128;
3867 break;
3868 }
625cbd7a
JB
3869 else if (i.broadcast && (int) op == i.broadcast->operand)
3870 {
4a1b91ea 3871 switch (i.broadcast->bytes)
625cbd7a
JB
3872 {
3873 case 64:
3874 i.tm.opcode_modifier.evex = EVEX512;
3875 break;
3876 case 32:
3877 i.tm.opcode_modifier.evex = EVEX256;
3878 break;
3879 case 16:
3880 i.tm.opcode_modifier.evex = EVEX128;
3881 break;
3882 default:
c7213af9 3883 abort ();
625cbd7a 3884 }
c7213af9 3885 break;
625cbd7a 3886 }
e771e7c9 3887 }
c7213af9 3888
56522fc5 3889 if (op >= MAX_OPERANDS)
c7213af9 3890 abort ();
e771e7c9
JB
3891 }
3892
43234a1e
L
3893 switch (i.tm.opcode_modifier.evex)
3894 {
3895 case EVEXLIG: /* LL' is ignored */
3896 vec_length = evexlig << 5;
3897 break;
3898 case EVEX128:
3899 vec_length = 0 << 5;
3900 break;
3901 case EVEX256:
3902 vec_length = 1 << 5;
3903 break;
3904 case EVEX512:
3905 vec_length = 2 << 5;
3906 break;
3907 default:
3908 abort ();
3909 break;
3910 }
3911 i.vex.bytes[3] |= vec_length;
3912 /* Encode the broadcast bit. */
3913 if (i.broadcast)
3914 i.vex.bytes[3] |= 0x10;
3915 }
3916 else
3917 {
3918 if (i.rounding->type != saeonly)
3919 i.vex.bytes[3] |= 0x10 | (i.rounding->type << 5);
3920 else
d3d3c6db 3921 i.vex.bytes[3] |= 0x10 | (evexrcig << 5);
43234a1e
L
3922 }
3923
3924 if (i.mask && i.mask->mask)
3925 i.vex.bytes[3] |= i.mask->mask->reg_num;
3926}
3927
65da13b5
L
3928static void
3929process_immext (void)
3930{
3931 expressionS *exp;
3932
c0f3af97 3933 /* These AMD 3DNow! and SSE2 instructions have an opcode suffix
65da13b5
L
3934 which is coded in the same place as an 8-bit immediate field
3935 would be. Here we fake an 8-bit immediate operand from the
3936 opcode suffix stored in tm.extension_opcode.
3937
c1e679ec 3938 AVX instructions also use this encoding, for some of
c0f3af97 3939 3 argument instructions. */
65da13b5 3940
43234a1e 3941 gas_assert (i.imm_operands <= 1
7ab9ffdd 3942 && (i.operands <= 2
7a8655d2 3943 || (is_any_vex_encoding (&i.tm)
7ab9ffdd 3944 && i.operands <= 4)));
65da13b5
L
3945
3946 exp = &im_expressions[i.imm_operands++];
3947 i.op[i.operands].imms = exp;
3948 i.types[i.operands] = imm8;
3949 i.operands++;
3950 exp->X_op = O_constant;
3951 exp->X_add_number = i.tm.extension_opcode;
3952 i.tm.extension_opcode = None;
3953}
3954
42164a71
L
3955
3956static int
3957check_hle (void)
3958{
3959 switch (i.tm.opcode_modifier.hleprefixok)
3960 {
3961 default:
3962 abort ();
82c2def5 3963 case HLEPrefixNone:
165de32a
L
3964 as_bad (_("invalid instruction `%s' after `%s'"),
3965 i.tm.name, i.hle_prefix);
42164a71 3966 return 0;
82c2def5 3967 case HLEPrefixLock:
42164a71
L
3968 if (i.prefix[LOCK_PREFIX])
3969 return 1;
165de32a 3970 as_bad (_("missing `lock' with `%s'"), i.hle_prefix);
42164a71 3971 return 0;
82c2def5 3972 case HLEPrefixAny:
42164a71 3973 return 1;
82c2def5 3974 case HLEPrefixRelease:
42164a71
L
3975 if (i.prefix[HLE_PREFIX] != XRELEASE_PREFIX_OPCODE)
3976 {
3977 as_bad (_("instruction `%s' after `xacquire' not allowed"),
3978 i.tm.name);
3979 return 0;
3980 }
8dc0818e 3981 if (i.mem_operands == 0 || !(i.flags[i.operands - 1] & Operand_Mem))
42164a71
L
3982 {
3983 as_bad (_("memory destination needed for instruction `%s'"
3984 " after `xrelease'"), i.tm.name);
3985 return 0;
3986 }
3987 return 1;
3988 }
3989}
3990
b6f8c7c4
L
3991/* Try the shortest encoding by shortening operand size. */
3992
3993static void
3994optimize_encoding (void)
3995{
a0a1771e 3996 unsigned int j;
b6f8c7c4
L
3997
3998 if (optimize_for_space
72aea328 3999 && !is_any_vex_encoding (&i.tm)
b6f8c7c4
L
4000 && i.reg_operands == 1
4001 && i.imm_operands == 1
4002 && !i.types[1].bitfield.byte
4003 && i.op[0].imms->X_op == O_constant
4004 && fits_in_imm7 (i.op[0].imms->X_add_number)
72aea328 4005 && (i.tm.base_opcode == 0xa8
b6f8c7c4
L
4006 || (i.tm.base_opcode == 0xf6
4007 && i.tm.extension_opcode == 0x0)))
4008 {
4009 /* Optimize: -Os:
4010 test $imm7, %r64/%r32/%r16 -> test $imm7, %r8
4011 */
4012 unsigned int base_regnum = i.op[1].regs->reg_num;
4013 if (flag_code == CODE_64BIT || base_regnum < 4)
4014 {
4015 i.types[1].bitfield.byte = 1;
4016 /* Ignore the suffix. */
4017 i.suffix = 0;
7697afb6
JB
4018 /* Convert to byte registers. */
4019 if (i.types[1].bitfield.word)
4020 j = 16;
4021 else if (i.types[1].bitfield.dword)
4022 j = 32;
4023 else
4024 j = 48;
4025 if (!(i.op[1].regs->reg_flags & RegRex) && base_regnum < 4)
4026 j += 8;
4027 i.op[1].regs -= j;
b6f8c7c4
L
4028 }
4029 }
4030 else if (flag_code == CODE_64BIT
72aea328 4031 && !is_any_vex_encoding (&i.tm)
d3d50934
L
4032 && ((i.types[1].bitfield.qword
4033 && i.reg_operands == 1
b6f8c7c4
L
4034 && i.imm_operands == 1
4035 && i.op[0].imms->X_op == O_constant
507916b8 4036 && ((i.tm.base_opcode == 0xb8
b6f8c7c4
L
4037 && i.tm.extension_opcode == None
4038 && fits_in_unsigned_long (i.op[0].imms->X_add_number))
4039 || (fits_in_imm31 (i.op[0].imms->X_add_number)
72aea328
JB
4040 && ((i.tm.base_opcode == 0x24
4041 || i.tm.base_opcode == 0xa8)
b6f8c7c4
L
4042 || (i.tm.base_opcode == 0x80
4043 && i.tm.extension_opcode == 0x4)
4044 || ((i.tm.base_opcode == 0xf6
507916b8 4045 || (i.tm.base_opcode | 1) == 0xc7)
b8364fa7
JB
4046 && i.tm.extension_opcode == 0x0)))
4047 || (fits_in_imm7 (i.op[0].imms->X_add_number)
4048 && i.tm.base_opcode == 0x83
4049 && i.tm.extension_opcode == 0x4)))
d3d50934
L
4050 || (i.types[0].bitfield.qword
4051 && ((i.reg_operands == 2
4052 && i.op[0].regs == i.op[1].regs
72aea328
JB
4053 && (i.tm.base_opcode == 0x30
4054 || i.tm.base_opcode == 0x28))
d3d50934
L
4055 || (i.reg_operands == 1
4056 && i.operands == 1
72aea328 4057 && i.tm.base_opcode == 0x30)))))
b6f8c7c4
L
4058 {
4059 /* Optimize: -O:
4060 andq $imm31, %r64 -> andl $imm31, %r32
b8364fa7 4061 andq $imm7, %r64 -> andl $imm7, %r32
b6f8c7c4
L
4062 testq $imm31, %r64 -> testl $imm31, %r32
4063 xorq %r64, %r64 -> xorl %r32, %r32
4064 subq %r64, %r64 -> subl %r32, %r32
4065 movq $imm31, %r64 -> movl $imm31, %r32
4066 movq $imm32, %r64 -> movl $imm32, %r32
4067 */
4068 i.tm.opcode_modifier.norex64 = 1;
507916b8 4069 if (i.tm.base_opcode == 0xb8 || (i.tm.base_opcode | 1) == 0xc7)
b6f8c7c4
L
4070 {
4071 /* Handle
4072 movq $imm31, %r64 -> movl $imm31, %r32
4073 movq $imm32, %r64 -> movl $imm32, %r32
4074 */
4075 i.tm.operand_types[0].bitfield.imm32 = 1;
4076 i.tm.operand_types[0].bitfield.imm32s = 0;
4077 i.tm.operand_types[0].bitfield.imm64 = 0;
4078 i.types[0].bitfield.imm32 = 1;
4079 i.types[0].bitfield.imm32s = 0;
4080 i.types[0].bitfield.imm64 = 0;
4081 i.types[1].bitfield.dword = 1;
4082 i.types[1].bitfield.qword = 0;
507916b8 4083 if ((i.tm.base_opcode | 1) == 0xc7)
b6f8c7c4
L
4084 {
4085 /* Handle
4086 movq $imm31, %r64 -> movl $imm31, %r32
4087 */
507916b8 4088 i.tm.base_opcode = 0xb8;
b6f8c7c4 4089 i.tm.extension_opcode = None;
507916b8 4090 i.tm.opcode_modifier.w = 0;
b6f8c7c4
L
4091 i.tm.opcode_modifier.modrm = 0;
4092 }
4093 }
4094 }
5641ec01
JB
4095 else if (optimize > 1
4096 && !optimize_for_space
72aea328 4097 && !is_any_vex_encoding (&i.tm)
5641ec01
JB
4098 && i.reg_operands == 2
4099 && i.op[0].regs == i.op[1].regs
4100 && ((i.tm.base_opcode & ~(Opcode_D | 1)) == 0x8
4101 || (i.tm.base_opcode & ~(Opcode_D | 1)) == 0x20)
4102 && (flag_code != CODE_64BIT || !i.types[0].bitfield.dword))
4103 {
4104 /* Optimize: -O2:
4105 andb %rN, %rN -> testb %rN, %rN
4106 andw %rN, %rN -> testw %rN, %rN
4107 andq %rN, %rN -> testq %rN, %rN
4108 orb %rN, %rN -> testb %rN, %rN
4109 orw %rN, %rN -> testw %rN, %rN
4110 orq %rN, %rN -> testq %rN, %rN
4111
4112 and outside of 64-bit mode
4113
4114 andl %rN, %rN -> testl %rN, %rN
4115 orl %rN, %rN -> testl %rN, %rN
4116 */
4117 i.tm.base_opcode = 0x84 | (i.tm.base_opcode & 1);
4118 }
99112332 4119 else if (i.reg_operands == 3
b6f8c7c4
L
4120 && i.op[0].regs == i.op[1].regs
4121 && !i.types[2].bitfield.xmmword
4122 && (i.tm.opcode_modifier.vex
7a69eac3 4123 || ((!i.mask || i.mask->zeroing)
b6f8c7c4 4124 && !i.rounding
e771e7c9 4125 && is_evex_encoding (&i.tm)
80c34c38 4126 && (i.vec_encoding != vex_encoding_evex
dd22218c 4127 || cpu_arch_isa_flags.bitfield.cpuavx512vl
80c34c38 4128 || i.tm.cpu_flags.bitfield.cpuavx512vl
7091c612 4129 || (i.tm.operand_types[2].bitfield.zmmword
dd22218c 4130 && i.types[2].bitfield.ymmword))))
b6f8c7c4
L
4131 && ((i.tm.base_opcode == 0x55
4132 || i.tm.base_opcode == 0x6655
4133 || i.tm.base_opcode == 0x66df
4134 || i.tm.base_opcode == 0x57
4135 || i.tm.base_opcode == 0x6657
8305403a
L
4136 || i.tm.base_opcode == 0x66ef
4137 || i.tm.base_opcode == 0x66f8
4138 || i.tm.base_opcode == 0x66f9
4139 || i.tm.base_opcode == 0x66fa
1424ad86
JB
4140 || i.tm.base_opcode == 0x66fb
4141 || i.tm.base_opcode == 0x42
4142 || i.tm.base_opcode == 0x6642
4143 || i.tm.base_opcode == 0x47
4144 || i.tm.base_opcode == 0x6647)
b6f8c7c4
L
4145 && i.tm.extension_opcode == None))
4146 {
99112332 4147 /* Optimize: -O1:
8305403a
L
4148 VOP, one of vandnps, vandnpd, vxorps, vxorpd, vpsubb, vpsubd,
4149 vpsubq and vpsubw:
b6f8c7c4
L
4150 EVEX VOP %zmmM, %zmmM, %zmmN
4151 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4152 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4153 EVEX VOP %ymmM, %ymmM, %ymmN
4154 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4155 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4156 VEX VOP %ymmM, %ymmM, %ymmN
4157 -> VEX VOP %xmmM, %xmmM, %xmmN
4158 VOP, one of vpandn and vpxor:
4159 VEX VOP %ymmM, %ymmM, %ymmN
4160 -> VEX VOP %xmmM, %xmmM, %xmmN
4161 VOP, one of vpandnd and vpandnq:
4162 EVEX VOP %zmmM, %zmmM, %zmmN
4163 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4164 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4165 EVEX VOP %ymmM, %ymmM, %ymmN
4166 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4167 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4168 VOP, one of vpxord and vpxorq:
4169 EVEX VOP %zmmM, %zmmM, %zmmN
4170 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4171 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
b6f8c7c4
L
4172 EVEX VOP %ymmM, %ymmM, %ymmN
4173 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
99112332 4174 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16) (-O2)
1424ad86
JB
4175 VOP, one of kxord and kxorq:
4176 VEX VOP %kM, %kM, %kN
4177 -> VEX kxorw %kM, %kM, %kN
4178 VOP, one of kandnd and kandnq:
4179 VEX VOP %kM, %kM, %kN
4180 -> VEX kandnw %kM, %kM, %kN
b6f8c7c4 4181 */
e771e7c9 4182 if (is_evex_encoding (&i.tm))
b6f8c7c4 4183 {
7b1d7ca1 4184 if (i.vec_encoding != vex_encoding_evex)
b6f8c7c4
L
4185 {
4186 i.tm.opcode_modifier.vex = VEX128;
4187 i.tm.opcode_modifier.vexw = VEXW0;
4188 i.tm.opcode_modifier.evex = 0;
4189 }
7b1d7ca1 4190 else if (optimize > 1)
dd22218c
L
4191 i.tm.opcode_modifier.evex = EVEX128;
4192 else
4193 return;
b6f8c7c4 4194 }
f74a6307 4195 else if (i.tm.operand_types[0].bitfield.class == RegMask)
1424ad86
JB
4196 {
4197 i.tm.base_opcode &= 0xff;
4198 i.tm.opcode_modifier.vexw = VEXW0;
4199 }
b6f8c7c4
L
4200 else
4201 i.tm.opcode_modifier.vex = VEX128;
4202
4203 if (i.tm.opcode_modifier.vex)
4204 for (j = 0; j < 3; j++)
4205 {
4206 i.types[j].bitfield.xmmword = 1;
4207 i.types[j].bitfield.ymmword = 0;
4208 }
4209 }
392a5972 4210 else if (i.vec_encoding != vex_encoding_evex
97ed31ae 4211 && !i.types[0].bitfield.zmmword
392a5972 4212 && !i.types[1].bitfield.zmmword
97ed31ae 4213 && !i.mask
a0a1771e 4214 && !i.broadcast
97ed31ae 4215 && is_evex_encoding (&i.tm)
392a5972
L
4216 && ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0x666f
4217 || (i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf36f
a0a1771e
JB
4218 || (i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf26f
4219 || (i.tm.base_opcode & ~4) == 0x66db
4220 || (i.tm.base_opcode & ~4) == 0x66eb)
97ed31ae
L
4221 && i.tm.extension_opcode == None)
4222 {
4223 /* Optimize: -O1:
4224 VOP, one of vmovdqa32, vmovdqa64, vmovdqu8, vmovdqu16,
4225 vmovdqu32 and vmovdqu64:
4226 EVEX VOP %xmmM, %xmmN
4227 -> VEX vmovdqa|vmovdqu %xmmM, %xmmN (M and N < 16)
4228 EVEX VOP %ymmM, %ymmN
4229 -> VEX vmovdqa|vmovdqu %ymmM, %ymmN (M and N < 16)
4230 EVEX VOP %xmmM, mem
4231 -> VEX vmovdqa|vmovdqu %xmmM, mem (M < 16)
4232 EVEX VOP %ymmM, mem
4233 -> VEX vmovdqa|vmovdqu %ymmM, mem (M < 16)
4234 EVEX VOP mem, %xmmN
4235 -> VEX mvmovdqa|vmovdquem, %xmmN (N < 16)
4236 EVEX VOP mem, %ymmN
4237 -> VEX vmovdqa|vmovdqu mem, %ymmN (N < 16)
a0a1771e
JB
4238 VOP, one of vpand, vpandn, vpor, vpxor:
4239 EVEX VOP{d,q} %xmmL, %xmmM, %xmmN
4240 -> VEX VOP %xmmL, %xmmM, %xmmN (L, M, and N < 16)
4241 EVEX VOP{d,q} %ymmL, %ymmM, %ymmN
4242 -> VEX VOP %ymmL, %ymmM, %ymmN (L, M, and N < 16)
4243 EVEX VOP{d,q} mem, %xmmM, %xmmN
4244 -> VEX VOP mem, %xmmM, %xmmN (M and N < 16)
4245 EVEX VOP{d,q} mem, %ymmM, %ymmN
4246 -> VEX VOP mem, %ymmM, %ymmN (M and N < 16)
97ed31ae 4247 */
a0a1771e 4248 for (j = 0; j < i.operands; j++)
392a5972
L
4249 if (operand_type_check (i.types[j], disp)
4250 && i.op[j].disps->X_op == O_constant)
4251 {
4252 /* Since the VEX prefix has 2 or 3 bytes, the EVEX prefix
4253 has 4 bytes, EVEX Disp8 has 1 byte and VEX Disp32 has 4
4254 bytes, we choose EVEX Disp8 over VEX Disp32. */
4255 int evex_disp8, vex_disp8;
4256 unsigned int memshift = i.memshift;
4257 offsetT n = i.op[j].disps->X_add_number;
4258
4259 evex_disp8 = fits_in_disp8 (n);
4260 i.memshift = 0;
4261 vex_disp8 = fits_in_disp8 (n);
4262 if (evex_disp8 != vex_disp8)
4263 {
4264 i.memshift = memshift;
4265 return;
4266 }
4267
4268 i.types[j].bitfield.disp8 = vex_disp8;
4269 break;
4270 }
4271 if ((i.tm.base_opcode & ~Opcode_SIMD_IntD) == 0xf26f)
4272 i.tm.base_opcode ^= 0xf36f ^ 0xf26f;
97ed31ae
L
4273 i.tm.opcode_modifier.vex
4274 = i.types[0].bitfield.ymmword ? VEX256 : VEX128;
4275 i.tm.opcode_modifier.vexw = VEXW0;
79dec6b7
JB
4276 /* VPAND, VPOR, and VPXOR are commutative. */
4277 if (i.reg_operands == 3 && i.tm.base_opcode != 0x66df)
4278 i.tm.opcode_modifier.commutative = 1;
97ed31ae
L
4279 i.tm.opcode_modifier.evex = 0;
4280 i.tm.opcode_modifier.masking = 0;
a0a1771e 4281 i.tm.opcode_modifier.broadcast = 0;
97ed31ae
L
4282 i.tm.opcode_modifier.disp8memshift = 0;
4283 i.memshift = 0;
a0a1771e
JB
4284 if (j < i.operands)
4285 i.types[j].bitfield.disp8
4286 = fits_in_disp8 (i.op[j].disps->X_add_number);
97ed31ae 4287 }
b6f8c7c4
L
4288}
4289
252b5132
RH
4290/* This is the guts of the machine-dependent assembler. LINE points to a
4291 machine dependent instruction. This function is supposed to emit
4292 the frags/bytes it assembles to. */
4293
4294void
65da13b5 4295md_assemble (char *line)
252b5132 4296{
40fb9820 4297 unsigned int j;
83b16ac6 4298 char mnemonic[MAX_MNEM_SIZE], mnem_suffix;
d3ce72d0 4299 const insn_template *t;
252b5132 4300
47926f60 4301 /* Initialize globals. */
252b5132
RH
4302 memset (&i, '\0', sizeof (i));
4303 for (j = 0; j < MAX_OPERANDS; j++)
1ae12ab7 4304 i.reloc[j] = NO_RELOC;
252b5132
RH
4305 memset (disp_expressions, '\0', sizeof (disp_expressions));
4306 memset (im_expressions, '\0', sizeof (im_expressions));
ce8a8b2f 4307 save_stack_p = save_stack;
252b5132
RH
4308
4309 /* First parse an instruction mnemonic & call i386_operand for the operands.
4310 We assume that the scrubber has arranged it so that line[0] is the valid
47926f60 4311 start of a (possibly prefixed) mnemonic. */
252b5132 4312
29b0f896
AM
4313 line = parse_insn (line, mnemonic);
4314 if (line == NULL)
4315 return;
83b16ac6 4316 mnem_suffix = i.suffix;
252b5132 4317
29b0f896 4318 line = parse_operands (line, mnemonic);
ee86248c 4319 this_operand = -1;
8325cc63
JB
4320 xfree (i.memop1_string);
4321 i.memop1_string = NULL;
29b0f896
AM
4322 if (line == NULL)
4323 return;
252b5132 4324
29b0f896
AM
4325 /* Now we've parsed the mnemonic into a set of templates, and have the
4326 operands at hand. */
4327
4328 /* All intel opcodes have reversed operands except for "bound" and
4329 "enter". We also don't reverse intersegment "jmp" and "call"
4330 instructions with 2 immediate operands so that the immediate segment
050dfa73 4331 precedes the offset, as it does when in AT&T mode. */
4d456e3d
L
4332 if (intel_syntax
4333 && i.operands > 1
29b0f896 4334 && (strcmp (mnemonic, "bound") != 0)
30123838 4335 && (strcmp (mnemonic, "invlpga") != 0)
40fb9820
L
4336 && !(operand_type_check (i.types[0], imm)
4337 && operand_type_check (i.types[1], imm)))
29b0f896
AM
4338 swap_operands ();
4339
ec56d5c0
JB
4340 /* The order of the immediates should be reversed
4341 for 2 immediates extrq and insertq instructions */
4342 if (i.imm_operands == 2
4343 && (strcmp (mnemonic, "extrq") == 0
4344 || strcmp (mnemonic, "insertq") == 0))
4345 swap_2_operands (0, 1);
4346
29b0f896
AM
4347 if (i.imm_operands)
4348 optimize_imm ();
4349
b300c311
L
4350 /* Don't optimize displacement for movabs since it only takes 64bit
4351 displacement. */
4352 if (i.disp_operands
a501d77e 4353 && i.disp_encoding != disp_encoding_32bit
862be3fb
L
4354 && (flag_code != CODE_64BIT
4355 || strcmp (mnemonic, "movabs") != 0))
4356 optimize_disp ();
29b0f896
AM
4357
4358 /* Next, we find a template that matches the given insn,
4359 making sure the overlap of the given operands types is consistent
4360 with the template operand types. */
252b5132 4361
83b16ac6 4362 if (!(t = match_template (mnem_suffix)))
29b0f896 4363 return;
252b5132 4364
7bab8ab5 4365 if (sse_check != check_none
81f8a913 4366 && !i.tm.opcode_modifier.noavx
6e3e5c9e 4367 && !i.tm.cpu_flags.bitfield.cpuavx
569d50f1 4368 && !i.tm.cpu_flags.bitfield.cpuavx512f
daf50ae7
L
4369 && (i.tm.cpu_flags.bitfield.cpusse
4370 || i.tm.cpu_flags.bitfield.cpusse2
4371 || i.tm.cpu_flags.bitfield.cpusse3
4372 || i.tm.cpu_flags.bitfield.cpussse3
4373 || i.tm.cpu_flags.bitfield.cpusse4_1
6e3e5c9e 4374 || i.tm.cpu_flags.bitfield.cpusse4_2
569d50f1 4375 || i.tm.cpu_flags.bitfield.cpusse4a
6e3e5c9e
JB
4376 || i.tm.cpu_flags.bitfield.cpupclmul
4377 || i.tm.cpu_flags.bitfield.cpuaes
569d50f1 4378 || i.tm.cpu_flags.bitfield.cpusha
6e3e5c9e 4379 || i.tm.cpu_flags.bitfield.cpugfni))
daf50ae7 4380 {
7bab8ab5 4381 (sse_check == check_warning
daf50ae7
L
4382 ? as_warn
4383 : as_bad) (_("SSE instruction `%s' is used"), i.tm.name);
4384 }
4385
321fd21e
L
4386 /* Zap movzx and movsx suffix. The suffix has been set from
4387 "word ptr" or "byte ptr" on the source operand in Intel syntax
4388 or extracted from mnemonic in AT&T syntax. But we'll use
4389 the destination register to choose the suffix for encoding. */
4390 if ((i.tm.base_opcode & ~9) == 0x0fb6)
cd61ebfe 4391 {
321fd21e
L
4392 /* In Intel syntax, there must be a suffix. In AT&T syntax, if
4393 there is no suffix, the default will be byte extension. */
4394 if (i.reg_operands != 2
4395 && !i.suffix
7ab9ffdd 4396 && intel_syntax)
321fd21e
L
4397 as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
4398
4399 i.suffix = 0;
cd61ebfe 4400 }
24eab124 4401
40fb9820 4402 if (i.tm.opcode_modifier.fwait)
29b0f896
AM
4403 if (!add_prefix (FWAIT_OPCODE))
4404 return;
252b5132 4405
d5de92cf
L
4406 /* Check if REP prefix is OK. */
4407 if (i.rep_prefix && !i.tm.opcode_modifier.repprefixok)
4408 {
4409 as_bad (_("invalid instruction `%s' after `%s'"),
4410 i.tm.name, i.rep_prefix);
4411 return;
4412 }
4413
c1ba0266
L
4414 /* Check for lock without a lockable instruction. Destination operand
4415 must be memory unless it is xchg (0x86). */
c32fa91d
L
4416 if (i.prefix[LOCK_PREFIX]
4417 && (!i.tm.opcode_modifier.islockable
c1ba0266
L
4418 || i.mem_operands == 0
4419 || (i.tm.base_opcode != 0x86
8dc0818e 4420 && !(i.flags[i.operands - 1] & Operand_Mem))))
c32fa91d
L
4421 {
4422 as_bad (_("expecting lockable instruction after `lock'"));
4423 return;
4424 }
4425
7a8655d2
JB
4426 /* Check for data size prefix on VEX/XOP/EVEX encoded insns. */
4427 if (i.prefix[DATA_PREFIX] && is_any_vex_encoding (&i.tm))
4428 {
4429 as_bad (_("data size prefix invalid with `%s'"), i.tm.name);
4430 return;
4431 }
4432
42164a71 4433 /* Check if HLE prefix is OK. */
165de32a 4434 if (i.hle_prefix && !check_hle ())
42164a71
L
4435 return;
4436
7e8b059b
L
4437 /* Check BND prefix. */
4438 if (i.bnd_prefix && !i.tm.opcode_modifier.bndprefixok)
4439 as_bad (_("expecting valid branch instruction after `bnd'"));
4440
04ef582a 4441 /* Check NOTRACK prefix. */
9fef80d6
L
4442 if (i.notrack_prefix && !i.tm.opcode_modifier.notrackprefixok)
4443 as_bad (_("expecting indirect branch instruction after `notrack'"));
04ef582a 4444
327e8c42
JB
4445 if (i.tm.cpu_flags.bitfield.cpumpx)
4446 {
4447 if (flag_code == CODE_64BIT && i.prefix[ADDR_PREFIX])
4448 as_bad (_("32-bit address isn't allowed in 64-bit MPX instructions."));
4449 else if (flag_code != CODE_16BIT
4450 ? i.prefix[ADDR_PREFIX]
4451 : i.mem_operands && !i.prefix[ADDR_PREFIX])
4452 as_bad (_("16-bit address isn't allowed in MPX instructions"));
4453 }
7e8b059b
L
4454
4455 /* Insert BND prefix. */
76d3a78a
JB
4456 if (add_bnd_prefix && i.tm.opcode_modifier.bndprefixok)
4457 {
4458 if (!i.prefix[BND_PREFIX])
4459 add_prefix (BND_PREFIX_OPCODE);
4460 else if (i.prefix[BND_PREFIX] != BND_PREFIX_OPCODE)
4461 {
4462 as_warn (_("replacing `rep'/`repe' prefix by `bnd'"));
4463 i.prefix[BND_PREFIX] = BND_PREFIX_OPCODE;
4464 }
4465 }
7e8b059b 4466
29b0f896 4467 /* Check string instruction segment overrides. */
51c8edf6 4468 if (i.tm.opcode_modifier.isstring >= IS_STRING_ES_OP0)
29b0f896 4469 {
51c8edf6 4470 gas_assert (i.mem_operands);
29b0f896 4471 if (!check_string ())
5dd0794d 4472 return;
fc0763e6 4473 i.disp_operands = 0;
29b0f896 4474 }
5dd0794d 4475
b6f8c7c4
L
4476 if (optimize && !i.no_optimize && i.tm.opcode_modifier.optimize)
4477 optimize_encoding ();
4478
29b0f896
AM
4479 if (!process_suffix ())
4480 return;
e413e4e9 4481
bc0844ae
L
4482 /* Update operand types. */
4483 for (j = 0; j < i.operands; j++)
4484 i.types[j] = operand_type_and (i.types[j], i.tm.operand_types[j]);
4485
29b0f896
AM
4486 /* Make still unresolved immediate matches conform to size of immediate
4487 given in i.suffix. */
4488 if (!finalize_imm ())
4489 return;
252b5132 4490
40fb9820 4491 if (i.types[0].bitfield.imm1)
29b0f896 4492 i.imm_operands = 0; /* kludge for shift insns. */
252b5132 4493
9afe6eb8
L
4494 /* We only need to check those implicit registers for instructions
4495 with 3 operands or less. */
4496 if (i.operands <= 3)
4497 for (j = 0; j < i.operands; j++)
75e5731b
JB
4498 if (i.types[j].bitfield.instance != InstanceNone
4499 && !i.types[j].bitfield.xmmword)
9afe6eb8 4500 i.reg_operands--;
40fb9820 4501
c0f3af97
L
4502 /* ImmExt should be processed after SSE2AVX. */
4503 if (!i.tm.opcode_modifier.sse2avx
4504 && i.tm.opcode_modifier.immext)
65da13b5 4505 process_immext ();
252b5132 4506
29b0f896
AM
4507 /* For insns with operands there are more diddles to do to the opcode. */
4508 if (i.operands)
4509 {
4510 if (!process_operands ())
4511 return;
4512 }
40fb9820 4513 else if (!quiet_warnings && i.tm.opcode_modifier.ugh)
29b0f896
AM
4514 {
4515 /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. */
4516 as_warn (_("translating to `%sp'"), i.tm.name);
4517 }
252b5132 4518
7a8655d2 4519 if (is_any_vex_encoding (&i.tm))
9e5e5283 4520 {
c1dc7af5 4521 if (!cpu_arch_flags.bitfield.cpui286)
9e5e5283 4522 {
c1dc7af5 4523 as_bad (_("instruction `%s' isn't supported outside of protected mode."),
9e5e5283
L
4524 i.tm.name);
4525 return;
4526 }
c0f3af97 4527
9e5e5283
L
4528 if (i.tm.opcode_modifier.vex)
4529 build_vex_prefix (t);
4530 else
4531 build_evex_prefix ();
4532 }
43234a1e 4533
5dd85c99
SP
4534 /* Handle conversion of 'int $3' --> special int3 insn. XOP or FMA4
4535 instructions may define INT_OPCODE as well, so avoid this corner
4536 case for those instructions that use MODRM. */
4537 if (i.tm.base_opcode == INT_OPCODE
a6461c02
SP
4538 && !i.tm.opcode_modifier.modrm
4539 && i.op[0].imms->X_add_number == 3)
29b0f896
AM
4540 {
4541 i.tm.base_opcode = INT3_OPCODE;
4542 i.imm_operands = 0;
4543 }
252b5132 4544
0cfa3eb3
JB
4545 if ((i.tm.opcode_modifier.jump == JUMP
4546 || i.tm.opcode_modifier.jump == JUMP_BYTE
4547 || i.tm.opcode_modifier.jump == JUMP_DWORD)
29b0f896
AM
4548 && i.op[0].disps->X_op == O_constant)
4549 {
4550 /* Convert "jmp constant" (and "call constant") to a jump (call) to
4551 the absolute address given by the constant. Since ix86 jumps and
4552 calls are pc relative, we need to generate a reloc. */
4553 i.op[0].disps->X_add_symbol = &abs_symbol;
4554 i.op[0].disps->X_op = O_symbol;
4555 }
252b5132 4556
40fb9820 4557 if (i.tm.opcode_modifier.rex64)
161a04f6 4558 i.rex |= REX_W;
252b5132 4559
29b0f896
AM
4560 /* For 8 bit registers we need an empty rex prefix. Also if the
4561 instruction already has a prefix, we need to convert old
4562 registers to new ones. */
773f551c 4563
bab6aec1 4564 if ((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte
29b0f896 4565 && (i.op[0].regs->reg_flags & RegRex64) != 0)
bab6aec1 4566 || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte
29b0f896 4567 && (i.op[1].regs->reg_flags & RegRex64) != 0)
bab6aec1
JB
4568 || (((i.types[0].bitfield.class == Reg && i.types[0].bitfield.byte)
4569 || (i.types[1].bitfield.class == Reg && i.types[1].bitfield.byte))
29b0f896
AM
4570 && i.rex != 0))
4571 {
4572 int x;
726c5dcd 4573
29b0f896
AM
4574 i.rex |= REX_OPCODE;
4575 for (x = 0; x < 2; x++)
4576 {
4577 /* Look for 8 bit operand that uses old registers. */
bab6aec1 4578 if (i.types[x].bitfield.class == Reg && i.types[x].bitfield.byte
29b0f896 4579 && (i.op[x].regs->reg_flags & RegRex64) == 0)
773f551c 4580 {
3f93af61 4581 gas_assert (!(i.op[x].regs->reg_flags & RegRex));
29b0f896
AM
4582 /* In case it is "hi" register, give up. */
4583 if (i.op[x].regs->reg_num > 3)
a540244d 4584 as_bad (_("can't encode register '%s%s' in an "
4eed87de 4585 "instruction requiring REX prefix."),
a540244d 4586 register_prefix, i.op[x].regs->reg_name);
773f551c 4587
29b0f896
AM
4588 /* Otherwise it is equivalent to the extended register.
4589 Since the encoding doesn't change this is merely
4590 cosmetic cleanup for debug output. */
4591
4592 i.op[x].regs = i.op[x].regs + 8;
773f551c 4593 }
29b0f896
AM
4594 }
4595 }
773f551c 4596
6b6b6807
L
4597 if (i.rex == 0 && i.rex_encoding)
4598 {
4599 /* Check if we can add a REX_OPCODE byte. Look for 8 bit operand
3f93af61 4600 that uses legacy register. If it is "hi" register, don't add
6b6b6807
L
4601 the REX_OPCODE byte. */
4602 int x;
4603 for (x = 0; x < 2; x++)
bab6aec1 4604 if (i.types[x].bitfield.class == Reg
6b6b6807
L
4605 && i.types[x].bitfield.byte
4606 && (i.op[x].regs->reg_flags & RegRex64) == 0
4607 && i.op[x].regs->reg_num > 3)
4608 {
3f93af61 4609 gas_assert (!(i.op[x].regs->reg_flags & RegRex));
6b6b6807
L
4610 i.rex_encoding = FALSE;
4611 break;
4612 }
4613
4614 if (i.rex_encoding)
4615 i.rex = REX_OPCODE;
4616 }
4617
7ab9ffdd 4618 if (i.rex != 0)
29b0f896
AM
4619 add_prefix (REX_OPCODE | i.rex);
4620
4621 /* We are ready to output the insn. */
4622 output_insn ();
e379e5f3
L
4623
4624 last_insn.seg = now_seg;
4625
4626 if (i.tm.opcode_modifier.isprefix)
4627 {
4628 last_insn.kind = last_insn_prefix;
4629 last_insn.name = i.tm.name;
4630 last_insn.file = as_where (&last_insn.line);
4631 }
4632 else
4633 last_insn.kind = last_insn_other;
29b0f896
AM
4634}
4635
4636static char *
e3bb37b5 4637parse_insn (char *line, char *mnemonic)
29b0f896
AM
4638{
4639 char *l = line;
4640 char *token_start = l;
4641 char *mnem_p;
5c6af06e 4642 int supported;
d3ce72d0 4643 const insn_template *t;
b6169b20 4644 char *dot_p = NULL;
29b0f896 4645
29b0f896
AM
4646 while (1)
4647 {
4648 mnem_p = mnemonic;
4649 while ((*mnem_p = mnemonic_chars[(unsigned char) *l]) != 0)
4650 {
b6169b20
L
4651 if (*mnem_p == '.')
4652 dot_p = mnem_p;
29b0f896
AM
4653 mnem_p++;
4654 if (mnem_p >= mnemonic + MAX_MNEM_SIZE)
45288df1 4655 {
29b0f896
AM
4656 as_bad (_("no such instruction: `%s'"), token_start);
4657 return NULL;
4658 }
4659 l++;
4660 }
4661 if (!is_space_char (*l)
4662 && *l != END_OF_INSN
e44823cf
JB
4663 && (intel_syntax
4664 || (*l != PREFIX_SEPARATOR
4665 && *l != ',')))
29b0f896
AM
4666 {
4667 as_bad (_("invalid character %s in mnemonic"),
4668 output_invalid (*l));
4669 return NULL;
4670 }
4671 if (token_start == l)
4672 {
e44823cf 4673 if (!intel_syntax && *l == PREFIX_SEPARATOR)
29b0f896
AM
4674 as_bad (_("expecting prefix; got nothing"));
4675 else
4676 as_bad (_("expecting mnemonic; got nothing"));
4677 return NULL;
4678 }
45288df1 4679
29b0f896 4680 /* Look up instruction (or prefix) via hash table. */
d3ce72d0 4681 current_templates = (const templates *) hash_find (op_hash, mnemonic);
47926f60 4682
29b0f896
AM
4683 if (*l != END_OF_INSN
4684 && (!is_space_char (*l) || l[1] != END_OF_INSN)
4685 && current_templates
40fb9820 4686 && current_templates->start->opcode_modifier.isprefix)
29b0f896 4687 {
c6fb90c8 4688 if (!cpu_flags_check_cpu64 (current_templates->start->cpu_flags))
2dd88dca
JB
4689 {
4690 as_bad ((flag_code != CODE_64BIT
4691 ? _("`%s' is only supported in 64-bit mode")
4692 : _("`%s' is not supported in 64-bit mode")),
4693 current_templates->start->name);
4694 return NULL;
4695 }
29b0f896
AM
4696 /* If we are in 16-bit mode, do not allow addr16 or data16.
4697 Similarly, in 32-bit mode, do not allow addr32 or data32. */
673fe0f0
JB
4698 if ((current_templates->start->opcode_modifier.size == SIZE16
4699 || current_templates->start->opcode_modifier.size == SIZE32)
29b0f896 4700 && flag_code != CODE_64BIT
673fe0f0 4701 && ((current_templates->start->opcode_modifier.size == SIZE32)
29b0f896
AM
4702 ^ (flag_code == CODE_16BIT)))
4703 {
4704 as_bad (_("redundant %s prefix"),
4705 current_templates->start->name);
4706 return NULL;
45288df1 4707 }
86fa6981 4708 if (current_templates->start->opcode_length == 0)
29b0f896 4709 {
86fa6981
L
4710 /* Handle pseudo prefixes. */
4711 switch (current_templates->start->base_opcode)
4712 {
4713 case 0x0:
4714 /* {disp8} */
4715 i.disp_encoding = disp_encoding_8bit;
4716 break;
4717 case 0x1:
4718 /* {disp32} */
4719 i.disp_encoding = disp_encoding_32bit;
4720 break;
4721 case 0x2:
4722 /* {load} */
4723 i.dir_encoding = dir_encoding_load;
4724 break;
4725 case 0x3:
4726 /* {store} */
4727 i.dir_encoding = dir_encoding_store;
4728 break;
4729 case 0x4:
42e04b36
L
4730 /* {vex} */
4731 i.vec_encoding = vex_encoding_vex;
86fa6981
L
4732 break;
4733 case 0x5:
4734 /* {vex3} */
4735 i.vec_encoding = vex_encoding_vex3;
4736 break;
4737 case 0x6:
4738 /* {evex} */
4739 i.vec_encoding = vex_encoding_evex;
4740 break;
6b6b6807
L
4741 case 0x7:
4742 /* {rex} */
4743 i.rex_encoding = TRUE;
4744 break;
b6f8c7c4
L
4745 case 0x8:
4746 /* {nooptimize} */
4747 i.no_optimize = TRUE;
4748 break;
86fa6981
L
4749 default:
4750 abort ();
4751 }
4752 }
4753 else
4754 {
4755 /* Add prefix, checking for repeated prefixes. */
4e9ac44a 4756 switch (add_prefix (current_templates->start->base_opcode))
86fa6981 4757 {
4e9ac44a
L
4758 case PREFIX_EXIST:
4759 return NULL;
4760 case PREFIX_DS:
d777820b 4761 if (current_templates->start->cpu_flags.bitfield.cpuibt)
4e9ac44a
L
4762 i.notrack_prefix = current_templates->start->name;
4763 break;
4764 case PREFIX_REP:
4765 if (current_templates->start->cpu_flags.bitfield.cpuhle)
4766 i.hle_prefix = current_templates->start->name;
4767 else if (current_templates->start->cpu_flags.bitfield.cpumpx)
4768 i.bnd_prefix = current_templates->start->name;
4769 else
4770 i.rep_prefix = current_templates->start->name;
4771 break;
4772 default:
4773 break;
86fa6981 4774 }
29b0f896
AM
4775 }
4776 /* Skip past PREFIX_SEPARATOR and reset token_start. */
4777 token_start = ++l;
4778 }
4779 else
4780 break;
4781 }
45288df1 4782
30a55f88 4783 if (!current_templates)
b6169b20 4784 {
07d5e953
JB
4785 /* Deprecated functionality (new code should use pseudo-prefixes instead):
4786 Check if we should swap operand or force 32bit displacement in
f8a5c266 4787 encoding. */
30a55f88 4788 if (mnem_p - 2 == dot_p && dot_p[1] == 's')
64c49ab3 4789 i.dir_encoding = dir_encoding_swap;
8d63c93e 4790 else if (mnem_p - 3 == dot_p
a501d77e
L
4791 && dot_p[1] == 'd'
4792 && dot_p[2] == '8')
4793 i.disp_encoding = disp_encoding_8bit;
8d63c93e 4794 else if (mnem_p - 4 == dot_p
f8a5c266
L
4795 && dot_p[1] == 'd'
4796 && dot_p[2] == '3'
4797 && dot_p[3] == '2')
a501d77e 4798 i.disp_encoding = disp_encoding_32bit;
30a55f88
L
4799 else
4800 goto check_suffix;
4801 mnem_p = dot_p;
4802 *dot_p = '\0';
d3ce72d0 4803 current_templates = (const templates *) hash_find (op_hash, mnemonic);
b6169b20
L
4804 }
4805
29b0f896
AM
4806 if (!current_templates)
4807 {
b6169b20 4808check_suffix:
1c529385 4809 if (mnem_p > mnemonic)
29b0f896 4810 {
1c529385
LH
4811 /* See if we can get a match by trimming off a suffix. */
4812 switch (mnem_p[-1])
29b0f896 4813 {
1c529385
LH
4814 case WORD_MNEM_SUFFIX:
4815 if (intel_syntax && (intel_float_operand (mnemonic) & 2))
29b0f896
AM
4816 i.suffix = SHORT_MNEM_SUFFIX;
4817 else
1c529385
LH
4818 /* Fall through. */
4819 case BYTE_MNEM_SUFFIX:
4820 case QWORD_MNEM_SUFFIX:
4821 i.suffix = mnem_p[-1];
29b0f896 4822 mnem_p[-1] = '\0';
d3ce72d0 4823 current_templates = (const templates *) hash_find (op_hash,
1c529385
LH
4824 mnemonic);
4825 break;
4826 case SHORT_MNEM_SUFFIX:
4827 case LONG_MNEM_SUFFIX:
4828 if (!intel_syntax)
4829 {
4830 i.suffix = mnem_p[-1];
4831 mnem_p[-1] = '\0';
4832 current_templates = (const templates *) hash_find (op_hash,
4833 mnemonic);
4834 }
4835 break;
4836
4837 /* Intel Syntax. */
4838 case 'd':
4839 if (intel_syntax)
4840 {
4841 if (intel_float_operand (mnemonic) == 1)
4842 i.suffix = SHORT_MNEM_SUFFIX;
4843 else
4844 i.suffix = LONG_MNEM_SUFFIX;
4845 mnem_p[-1] = '\0';
4846 current_templates = (const templates *) hash_find (op_hash,
4847 mnemonic);
4848 }
4849 break;
29b0f896 4850 }
29b0f896 4851 }
1c529385 4852
29b0f896
AM
4853 if (!current_templates)
4854 {
4855 as_bad (_("no such instruction: `%s'"), token_start);
4856 return NULL;
4857 }
4858 }
252b5132 4859
0cfa3eb3
JB
4860 if (current_templates->start->opcode_modifier.jump == JUMP
4861 || current_templates->start->opcode_modifier.jump == JUMP_BYTE)
29b0f896
AM
4862 {
4863 /* Check for a branch hint. We allow ",pt" and ",pn" for
4864 predict taken and predict not taken respectively.
4865 I'm not sure that branch hints actually do anything on loop
4866 and jcxz insns (JumpByte) for current Pentium4 chips. They
4867 may work in the future and it doesn't hurt to accept them
4868 now. */
4869 if (l[0] == ',' && l[1] == 'p')
4870 {
4871 if (l[2] == 't')
4872 {
4873 if (!add_prefix (DS_PREFIX_OPCODE))
4874 return NULL;
4875 l += 3;
4876 }
4877 else if (l[2] == 'n')
4878 {
4879 if (!add_prefix (CS_PREFIX_OPCODE))
4880 return NULL;
4881 l += 3;
4882 }
4883 }
4884 }
4885 /* Any other comma loses. */
4886 if (*l == ',')
4887 {
4888 as_bad (_("invalid character %s in mnemonic"),
4889 output_invalid (*l));
4890 return NULL;
4891 }
252b5132 4892
29b0f896 4893 /* Check if instruction is supported on specified architecture. */
5c6af06e
JB
4894 supported = 0;
4895 for (t = current_templates->start; t < current_templates->end; ++t)
4896 {
c0f3af97
L
4897 supported |= cpu_flags_match (t);
4898 if (supported == CPU_FLAGS_PERFECT_MATCH)
548d0ee6
JB
4899 {
4900 if (!cpu_arch_flags.bitfield.cpui386 && (flag_code != CODE_16BIT))
4901 as_warn (_("use .code16 to ensure correct addressing mode"));
3629bb00 4902
548d0ee6
JB
4903 return l;
4904 }
29b0f896 4905 }
3629bb00 4906
548d0ee6
JB
4907 if (!(supported & CPU_FLAGS_64BIT_MATCH))
4908 as_bad (flag_code == CODE_64BIT
4909 ? _("`%s' is not supported in 64-bit mode")
4910 : _("`%s' is only supported in 64-bit mode"),
4911 current_templates->start->name);
4912 else
4913 as_bad (_("`%s' is not supported on `%s%s'"),
4914 current_templates->start->name,
4915 cpu_arch_name ? cpu_arch_name : default_arch,
4916 cpu_sub_arch_name ? cpu_sub_arch_name : "");
252b5132 4917
548d0ee6 4918 return NULL;
29b0f896 4919}
252b5132 4920
29b0f896 4921static char *
e3bb37b5 4922parse_operands (char *l, const char *mnemonic)
29b0f896
AM
4923{
4924 char *token_start;
3138f287 4925
29b0f896
AM
4926 /* 1 if operand is pending after ','. */
4927 unsigned int expecting_operand = 0;
252b5132 4928
29b0f896
AM
4929 /* Non-zero if operand parens not balanced. */
4930 unsigned int paren_not_balanced;
4931
4932 while (*l != END_OF_INSN)
4933 {
4934 /* Skip optional white space before operand. */
4935 if (is_space_char (*l))
4936 ++l;
d02603dc 4937 if (!is_operand_char (*l) && *l != END_OF_INSN && *l != '"')
29b0f896
AM
4938 {
4939 as_bad (_("invalid character %s before operand %d"),
4940 output_invalid (*l),
4941 i.operands + 1);
4942 return NULL;
4943 }
d02603dc 4944 token_start = l; /* After white space. */
29b0f896
AM
4945 paren_not_balanced = 0;
4946 while (paren_not_balanced || *l != ',')
4947 {
4948 if (*l == END_OF_INSN)
4949 {
4950 if (paren_not_balanced)
4951 {
4952 if (!intel_syntax)
4953 as_bad (_("unbalanced parenthesis in operand %d."),
4954 i.operands + 1);
4955 else
4956 as_bad (_("unbalanced brackets in operand %d."),
4957 i.operands + 1);
4958 return NULL;
4959 }
4960 else
4961 break; /* we are done */
4962 }
d02603dc 4963 else if (!is_operand_char (*l) && !is_space_char (*l) && *l != '"')
29b0f896
AM
4964 {
4965 as_bad (_("invalid character %s in operand %d"),
4966 output_invalid (*l),
4967 i.operands + 1);
4968 return NULL;
4969 }
4970 if (!intel_syntax)
4971 {
4972 if (*l == '(')
4973 ++paren_not_balanced;
4974 if (*l == ')')
4975 --paren_not_balanced;
4976 }
4977 else
4978 {
4979 if (*l == '[')
4980 ++paren_not_balanced;
4981 if (*l == ']')
4982 --paren_not_balanced;
4983 }
4984 l++;
4985 }
4986 if (l != token_start)
4987 { /* Yes, we've read in another operand. */
4988 unsigned int operand_ok;
4989 this_operand = i.operands++;
4990 if (i.operands > MAX_OPERANDS)
4991 {
4992 as_bad (_("spurious operands; (%d operands/instruction max)"),
4993 MAX_OPERANDS);
4994 return NULL;
4995 }
9d46ce34 4996 i.types[this_operand].bitfield.unspecified = 1;
29b0f896
AM
4997 /* Now parse operand adding info to 'i' as we go along. */
4998 END_STRING_AND_SAVE (l);
4999
1286ab78
L
5000 if (i.mem_operands > 1)
5001 {
5002 as_bad (_("too many memory references for `%s'"),
5003 mnemonic);
5004 return 0;
5005 }
5006
29b0f896
AM
5007 if (intel_syntax)
5008 operand_ok =
5009 i386_intel_operand (token_start,
5010 intel_float_operand (mnemonic));
5011 else
a7619375 5012 operand_ok = i386_att_operand (token_start);
29b0f896
AM
5013
5014 RESTORE_END_STRING (l);
5015 if (!operand_ok)
5016 return NULL;
5017 }
5018 else
5019 {
5020 if (expecting_operand)
5021 {
5022 expecting_operand_after_comma:
5023 as_bad (_("expecting operand after ','; got nothing"));
5024 return NULL;
5025 }
5026 if (*l == ',')
5027 {
5028 as_bad (_("expecting operand before ','; got nothing"));
5029 return NULL;
5030 }
5031 }
7f3f1ea2 5032
29b0f896
AM
5033 /* Now *l must be either ',' or END_OF_INSN. */
5034 if (*l == ',')
5035 {
5036 if (*++l == END_OF_INSN)
5037 {
5038 /* Just skip it, if it's \n complain. */
5039 goto expecting_operand_after_comma;
5040 }
5041 expecting_operand = 1;
5042 }
5043 }
5044 return l;
5045}
7f3f1ea2 5046
050dfa73 5047static void
4d456e3d 5048swap_2_operands (int xchg1, int xchg2)
050dfa73
MM
5049{
5050 union i386_op temp_op;
40fb9820 5051 i386_operand_type temp_type;
c48dadc9 5052 unsigned int temp_flags;
050dfa73 5053 enum bfd_reloc_code_real temp_reloc;
4eed87de 5054
050dfa73
MM
5055 temp_type = i.types[xchg2];
5056 i.types[xchg2] = i.types[xchg1];
5057 i.types[xchg1] = temp_type;
c48dadc9
JB
5058
5059 temp_flags = i.flags[xchg2];
5060 i.flags[xchg2] = i.flags[xchg1];
5061 i.flags[xchg1] = temp_flags;
5062
050dfa73
MM
5063 temp_op = i.op[xchg2];
5064 i.op[xchg2] = i.op[xchg1];
5065 i.op[xchg1] = temp_op;
c48dadc9 5066
050dfa73
MM
5067 temp_reloc = i.reloc[xchg2];
5068 i.reloc[xchg2] = i.reloc[xchg1];
5069 i.reloc[xchg1] = temp_reloc;
43234a1e
L
5070
5071 if (i.mask)
5072 {
5073 if (i.mask->operand == xchg1)
5074 i.mask->operand = xchg2;
5075 else if (i.mask->operand == xchg2)
5076 i.mask->operand = xchg1;
5077 }
5078 if (i.broadcast)
5079 {
5080 if (i.broadcast->operand == xchg1)
5081 i.broadcast->operand = xchg2;
5082 else if (i.broadcast->operand == xchg2)
5083 i.broadcast->operand = xchg1;
5084 }
5085 if (i.rounding)
5086 {
5087 if (i.rounding->operand == xchg1)
5088 i.rounding->operand = xchg2;
5089 else if (i.rounding->operand == xchg2)
5090 i.rounding->operand = xchg1;
5091 }
050dfa73
MM
5092}
5093
29b0f896 5094static void
e3bb37b5 5095swap_operands (void)
29b0f896 5096{
b7c61d9a 5097 switch (i.operands)
050dfa73 5098 {
c0f3af97 5099 case 5:
b7c61d9a 5100 case 4:
4d456e3d 5101 swap_2_operands (1, i.operands - 2);
1a0670f3 5102 /* Fall through. */
b7c61d9a
L
5103 case 3:
5104 case 2:
4d456e3d 5105 swap_2_operands (0, i.operands - 1);
b7c61d9a
L
5106 break;
5107 default:
5108 abort ();
29b0f896 5109 }
29b0f896
AM
5110
5111 if (i.mem_operands == 2)
5112 {
5113 const seg_entry *temp_seg;
5114 temp_seg = i.seg[0];
5115 i.seg[0] = i.seg[1];
5116 i.seg[1] = temp_seg;
5117 }
5118}
252b5132 5119
29b0f896
AM
5120/* Try to ensure constant immediates are represented in the smallest
5121 opcode possible. */
5122static void
e3bb37b5 5123optimize_imm (void)
29b0f896
AM
5124{
5125 char guess_suffix = 0;
5126 int op;
252b5132 5127
29b0f896
AM
5128 if (i.suffix)
5129 guess_suffix = i.suffix;
5130 else if (i.reg_operands)
5131 {
5132 /* Figure out a suffix from the last register operand specified.
75e5731b
JB
5133 We can't do this properly yet, i.e. excluding special register
5134 instances, but the following works for instructions with
5135 immediates. In any case, we can't set i.suffix yet. */
29b0f896 5136 for (op = i.operands; --op >= 0;)
bab6aec1
JB
5137 if (i.types[op].bitfield.class != Reg)
5138 continue;
5139 else if (i.types[op].bitfield.byte)
7ab9ffdd 5140 {
40fb9820
L
5141 guess_suffix = BYTE_MNEM_SUFFIX;
5142 break;
5143 }
bab6aec1 5144 else if (i.types[op].bitfield.word)
252b5132 5145 {
40fb9820
L
5146 guess_suffix = WORD_MNEM_SUFFIX;
5147 break;
5148 }
bab6aec1 5149 else if (i.types[op].bitfield.dword)
40fb9820
L
5150 {
5151 guess_suffix = LONG_MNEM_SUFFIX;
5152 break;
5153 }
bab6aec1 5154 else if (i.types[op].bitfield.qword)
40fb9820
L
5155 {
5156 guess_suffix = QWORD_MNEM_SUFFIX;
29b0f896 5157 break;
252b5132 5158 }
29b0f896
AM
5159 }
5160 else if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
5161 guess_suffix = WORD_MNEM_SUFFIX;
5162
5163 for (op = i.operands; --op >= 0;)
40fb9820 5164 if (operand_type_check (i.types[op], imm))
29b0f896
AM
5165 {
5166 switch (i.op[op].imms->X_op)
252b5132 5167 {
29b0f896
AM
5168 case O_constant:
5169 /* If a suffix is given, this operand may be shortened. */
5170 switch (guess_suffix)
252b5132 5171 {
29b0f896 5172 case LONG_MNEM_SUFFIX:
40fb9820
L
5173 i.types[op].bitfield.imm32 = 1;
5174 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
5175 break;
5176 case WORD_MNEM_SUFFIX:
40fb9820
L
5177 i.types[op].bitfield.imm16 = 1;
5178 i.types[op].bitfield.imm32 = 1;
5179 i.types[op].bitfield.imm32s = 1;
5180 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
5181 break;
5182 case BYTE_MNEM_SUFFIX:
40fb9820
L
5183 i.types[op].bitfield.imm8 = 1;
5184 i.types[op].bitfield.imm8s = 1;
5185 i.types[op].bitfield.imm16 = 1;
5186 i.types[op].bitfield.imm32 = 1;
5187 i.types[op].bitfield.imm32s = 1;
5188 i.types[op].bitfield.imm64 = 1;
29b0f896 5189 break;
252b5132 5190 }
252b5132 5191
29b0f896
AM
5192 /* If this operand is at most 16 bits, convert it
5193 to a signed 16 bit number before trying to see
5194 whether it will fit in an even smaller size.
5195 This allows a 16-bit operand such as $0xffe0 to
5196 be recognised as within Imm8S range. */
40fb9820 5197 if ((i.types[op].bitfield.imm16)
29b0f896 5198 && (i.op[op].imms->X_add_number & ~(offsetT) 0xffff) == 0)
252b5132 5199 {
29b0f896
AM
5200 i.op[op].imms->X_add_number =
5201 (((i.op[op].imms->X_add_number & 0xffff) ^ 0x8000) - 0x8000);
5202 }
a28def75
L
5203#ifdef BFD64
5204 /* Store 32-bit immediate in 64-bit for 64-bit BFD. */
40fb9820 5205 if ((i.types[op].bitfield.imm32)
29b0f896
AM
5206 && ((i.op[op].imms->X_add_number & ~(((offsetT) 2 << 31) - 1))
5207 == 0))
5208 {
5209 i.op[op].imms->X_add_number = ((i.op[op].imms->X_add_number
5210 ^ ((offsetT) 1 << 31))
5211 - ((offsetT) 1 << 31));
5212 }
a28def75 5213#endif
40fb9820 5214 i.types[op]
c6fb90c8
L
5215 = operand_type_or (i.types[op],
5216 smallest_imm_type (i.op[op].imms->X_add_number));
252b5132 5217
29b0f896
AM
5218 /* We must avoid matching of Imm32 templates when 64bit
5219 only immediate is available. */
5220 if (guess_suffix == QWORD_MNEM_SUFFIX)
40fb9820 5221 i.types[op].bitfield.imm32 = 0;
29b0f896 5222 break;
252b5132 5223
29b0f896
AM
5224 case O_absent:
5225 case O_register:
5226 abort ();
5227
5228 /* Symbols and expressions. */
5229 default:
9cd96992
JB
5230 /* Convert symbolic operand to proper sizes for matching, but don't
5231 prevent matching a set of insns that only supports sizes other
5232 than those matching the insn suffix. */
5233 {
40fb9820 5234 i386_operand_type mask, allowed;
d3ce72d0 5235 const insn_template *t;
9cd96992 5236
0dfbf9d7
L
5237 operand_type_set (&mask, 0);
5238 operand_type_set (&allowed, 0);
40fb9820 5239
4eed87de
AM
5240 for (t = current_templates->start;
5241 t < current_templates->end;
5242 ++t)
bab6aec1
JB
5243 {
5244 allowed = operand_type_or (allowed, t->operand_types[op]);
5245 allowed = operand_type_and (allowed, anyimm);
5246 }
9cd96992
JB
5247 switch (guess_suffix)
5248 {
5249 case QWORD_MNEM_SUFFIX:
40fb9820
L
5250 mask.bitfield.imm64 = 1;
5251 mask.bitfield.imm32s = 1;
9cd96992
JB
5252 break;
5253 case LONG_MNEM_SUFFIX:
40fb9820 5254 mask.bitfield.imm32 = 1;
9cd96992
JB
5255 break;
5256 case WORD_MNEM_SUFFIX:
40fb9820 5257 mask.bitfield.imm16 = 1;
9cd96992
JB
5258 break;
5259 case BYTE_MNEM_SUFFIX:
40fb9820 5260 mask.bitfield.imm8 = 1;
9cd96992
JB
5261 break;
5262 default:
9cd96992
JB
5263 break;
5264 }
c6fb90c8 5265 allowed = operand_type_and (mask, allowed);
0dfbf9d7 5266 if (!operand_type_all_zero (&allowed))
c6fb90c8 5267 i.types[op] = operand_type_and (i.types[op], mask);
9cd96992 5268 }
29b0f896 5269 break;
252b5132 5270 }
29b0f896
AM
5271 }
5272}
47926f60 5273
29b0f896
AM
5274/* Try to use the smallest displacement type too. */
5275static void
e3bb37b5 5276optimize_disp (void)
29b0f896
AM
5277{
5278 int op;
3e73aa7c 5279
29b0f896 5280 for (op = i.operands; --op >= 0;)
40fb9820 5281 if (operand_type_check (i.types[op], disp))
252b5132 5282 {
b300c311 5283 if (i.op[op].disps->X_op == O_constant)
252b5132 5284 {
91d6fa6a 5285 offsetT op_disp = i.op[op].disps->X_add_number;
29b0f896 5286
40fb9820 5287 if (i.types[op].bitfield.disp16
91d6fa6a 5288 && (op_disp & ~(offsetT) 0xffff) == 0)
b300c311
L
5289 {
5290 /* If this operand is at most 16 bits, convert
5291 to a signed 16 bit number and don't use 64bit
5292 displacement. */
91d6fa6a 5293 op_disp = (((op_disp & 0xffff) ^ 0x8000) - 0x8000);
40fb9820 5294 i.types[op].bitfield.disp64 = 0;
b300c311 5295 }
a28def75
L
5296#ifdef BFD64
5297 /* Optimize 64-bit displacement to 32-bit for 64-bit BFD. */
40fb9820 5298 if (i.types[op].bitfield.disp32
91d6fa6a 5299 && (op_disp & ~(((offsetT) 2 << 31) - 1)) == 0)
b300c311
L
5300 {
5301 /* If this operand is at most 32 bits, convert
5302 to a signed 32 bit number and don't use 64bit
5303 displacement. */
91d6fa6a
NC
5304 op_disp &= (((offsetT) 2 << 31) - 1);
5305 op_disp = (op_disp ^ ((offsetT) 1 << 31)) - ((addressT) 1 << 31);
40fb9820 5306 i.types[op].bitfield.disp64 = 0;
b300c311 5307 }
a28def75 5308#endif
91d6fa6a 5309 if (!op_disp && i.types[op].bitfield.baseindex)
b300c311 5310 {
40fb9820
L
5311 i.types[op].bitfield.disp8 = 0;
5312 i.types[op].bitfield.disp16 = 0;
5313 i.types[op].bitfield.disp32 = 0;
5314 i.types[op].bitfield.disp32s = 0;
5315 i.types[op].bitfield.disp64 = 0;
b300c311
L
5316 i.op[op].disps = 0;
5317 i.disp_operands--;
5318 }
5319 else if (flag_code == CODE_64BIT)
5320 {
91d6fa6a 5321 if (fits_in_signed_long (op_disp))
28a9d8f5 5322 {
40fb9820
L
5323 i.types[op].bitfield.disp64 = 0;
5324 i.types[op].bitfield.disp32s = 1;
28a9d8f5 5325 }
0e1147d9 5326 if (i.prefix[ADDR_PREFIX]
91d6fa6a 5327 && fits_in_unsigned_long (op_disp))
40fb9820 5328 i.types[op].bitfield.disp32 = 1;
b300c311 5329 }
40fb9820
L
5330 if ((i.types[op].bitfield.disp32
5331 || i.types[op].bitfield.disp32s
5332 || i.types[op].bitfield.disp16)
b5014f7a 5333 && fits_in_disp8 (op_disp))
40fb9820 5334 i.types[op].bitfield.disp8 = 1;
252b5132 5335 }
67a4f2b7
AO
5336 else if (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
5337 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL)
5338 {
5339 fix_new_exp (frag_now, frag_more (0) - frag_now->fr_literal, 0,
5340 i.op[op].disps, 0, i.reloc[op]);
40fb9820
L
5341 i.types[op].bitfield.disp8 = 0;
5342 i.types[op].bitfield.disp16 = 0;
5343 i.types[op].bitfield.disp32 = 0;
5344 i.types[op].bitfield.disp32s = 0;
5345 i.types[op].bitfield.disp64 = 0;
67a4f2b7
AO
5346 }
5347 else
b300c311 5348 /* We only support 64bit displacement on constants. */
40fb9820 5349 i.types[op].bitfield.disp64 = 0;
252b5132 5350 }
29b0f896
AM
5351}
5352
4a1b91ea
L
5353/* Return 1 if there is a match in broadcast bytes between operand
5354 GIVEN and instruction template T. */
5355
5356static INLINE int
5357match_broadcast_size (const insn_template *t, unsigned int given)
5358{
5359 return ((t->opcode_modifier.broadcast == BYTE_BROADCAST
5360 && i.types[given].bitfield.byte)
5361 || (t->opcode_modifier.broadcast == WORD_BROADCAST
5362 && i.types[given].bitfield.word)
5363 || (t->opcode_modifier.broadcast == DWORD_BROADCAST
5364 && i.types[given].bitfield.dword)
5365 || (t->opcode_modifier.broadcast == QWORD_BROADCAST
5366 && i.types[given].bitfield.qword));
5367}
5368
6c30d220
L
5369/* Check if operands are valid for the instruction. */
5370
5371static int
5372check_VecOperands (const insn_template *t)
5373{
43234a1e 5374 unsigned int op;
e2195274
JB
5375 i386_cpu_flags cpu;
5376 static const i386_cpu_flags avx512 = CPU_ANY_AVX512F_FLAGS;
5377
5378 /* Templates allowing for ZMMword as well as YMMword and/or XMMword for
5379 any one operand are implicity requiring AVX512VL support if the actual
5380 operand size is YMMword or XMMword. Since this function runs after
5381 template matching, there's no need to check for YMMword/XMMword in
5382 the template. */
5383 cpu = cpu_flags_and (t->cpu_flags, avx512);
5384 if (!cpu_flags_all_zero (&cpu)
5385 && !t->cpu_flags.bitfield.cpuavx512vl
5386 && !cpu_arch_flags.bitfield.cpuavx512vl)
5387 {
5388 for (op = 0; op < t->operands; ++op)
5389 {
5390 if (t->operand_types[op].bitfield.zmmword
5391 && (i.types[op].bitfield.ymmword
5392 || i.types[op].bitfield.xmmword))
5393 {
5394 i.error = unsupported;
5395 return 1;
5396 }
5397 }
5398 }
43234a1e 5399
6c30d220
L
5400 /* Without VSIB byte, we can't have a vector register for index. */
5401 if (!t->opcode_modifier.vecsib
5402 && i.index_reg
1b54b8d7
JB
5403 && (i.index_reg->reg_type.bitfield.xmmword
5404 || i.index_reg->reg_type.bitfield.ymmword
5405 || i.index_reg->reg_type.bitfield.zmmword))
6c30d220
L
5406 {
5407 i.error = unsupported_vector_index_register;
5408 return 1;
5409 }
5410
ad8ecc81
MZ
5411 /* Check if default mask is allowed. */
5412 if (t->opcode_modifier.nodefmask
5413 && (!i.mask || i.mask->mask->reg_num == 0))
5414 {
5415 i.error = no_default_mask;
5416 return 1;
5417 }
5418
7bab8ab5
JB
5419 /* For VSIB byte, we need a vector register for index, and all vector
5420 registers must be distinct. */
5421 if (t->opcode_modifier.vecsib)
5422 {
5423 if (!i.index_reg
6c30d220 5424 || !((t->opcode_modifier.vecsib == VecSIB128
1b54b8d7 5425 && i.index_reg->reg_type.bitfield.xmmword)
6c30d220 5426 || (t->opcode_modifier.vecsib == VecSIB256
1b54b8d7 5427 && i.index_reg->reg_type.bitfield.ymmword)
43234a1e 5428 || (t->opcode_modifier.vecsib == VecSIB512
1b54b8d7 5429 && i.index_reg->reg_type.bitfield.zmmword)))
7bab8ab5
JB
5430 {
5431 i.error = invalid_vsib_address;
5432 return 1;
5433 }
5434
43234a1e
L
5435 gas_assert (i.reg_operands == 2 || i.mask);
5436 if (i.reg_operands == 2 && !i.mask)
5437 {
3528c362 5438 gas_assert (i.types[0].bitfield.class == RegSIMD);
1b54b8d7
JB
5439 gas_assert (i.types[0].bitfield.xmmword
5440 || i.types[0].bitfield.ymmword);
3528c362 5441 gas_assert (i.types[2].bitfield.class == RegSIMD);
1b54b8d7
JB
5442 gas_assert (i.types[2].bitfield.xmmword
5443 || i.types[2].bitfield.ymmword);
43234a1e
L
5444 if (operand_check == check_none)
5445 return 0;
5446 if (register_number (i.op[0].regs)
5447 != register_number (i.index_reg)
5448 && register_number (i.op[2].regs)
5449 != register_number (i.index_reg)
5450 && register_number (i.op[0].regs)
5451 != register_number (i.op[2].regs))
5452 return 0;
5453 if (operand_check == check_error)
5454 {
5455 i.error = invalid_vector_register_set;
5456 return 1;
5457 }
5458 as_warn (_("mask, index, and destination registers should be distinct"));
5459 }
8444f82a
MZ
5460 else if (i.reg_operands == 1 && i.mask)
5461 {
3528c362 5462 if (i.types[1].bitfield.class == RegSIMD
1b54b8d7
JB
5463 && (i.types[1].bitfield.xmmword
5464 || i.types[1].bitfield.ymmword
5465 || i.types[1].bitfield.zmmword)
8444f82a
MZ
5466 && (register_number (i.op[1].regs)
5467 == register_number (i.index_reg)))
5468 {
5469 if (operand_check == check_error)
5470 {
5471 i.error = invalid_vector_register_set;
5472 return 1;
5473 }
5474 if (operand_check != check_none)
5475 as_warn (_("index and destination registers should be distinct"));
5476 }
5477 }
43234a1e 5478 }
7bab8ab5 5479
43234a1e
L
5480 /* Check if broadcast is supported by the instruction and is applied
5481 to the memory operand. */
5482 if (i.broadcast)
5483 {
8e6e0792 5484 i386_operand_type type, overlap;
43234a1e
L
5485
5486 /* Check if specified broadcast is supported in this instruction,
4a1b91ea 5487 and its broadcast bytes match the memory operand. */
32546502 5488 op = i.broadcast->operand;
8e6e0792 5489 if (!t->opcode_modifier.broadcast
c48dadc9 5490 || !(i.flags[op] & Operand_Mem)
c39e5b26 5491 || (!i.types[op].bitfield.unspecified
4a1b91ea 5492 && !match_broadcast_size (t, op)))
43234a1e
L
5493 {
5494 bad_broadcast:
5495 i.error = unsupported_broadcast;
5496 return 1;
5497 }
8e6e0792 5498
4a1b91ea
L
5499 i.broadcast->bytes = ((1 << (t->opcode_modifier.broadcast - 1))
5500 * i.broadcast->type);
8e6e0792 5501 operand_type_set (&type, 0);
4a1b91ea 5502 switch (i.broadcast->bytes)
8e6e0792 5503 {
4a1b91ea
L
5504 case 2:
5505 type.bitfield.word = 1;
5506 break;
5507 case 4:
5508 type.bitfield.dword = 1;
5509 break;
8e6e0792
JB
5510 case 8:
5511 type.bitfield.qword = 1;
5512 break;
5513 case 16:
5514 type.bitfield.xmmword = 1;
5515 break;
5516 case 32:
5517 type.bitfield.ymmword = 1;
5518 break;
5519 case 64:
5520 type.bitfield.zmmword = 1;
5521 break;
5522 default:
5523 goto bad_broadcast;
5524 }
5525
5526 overlap = operand_type_and (type, t->operand_types[op]);
5527 if (operand_type_all_zero (&overlap))
5528 goto bad_broadcast;
5529
5530 if (t->opcode_modifier.checkregsize)
5531 {
5532 unsigned int j;
5533
e2195274 5534 type.bitfield.baseindex = 1;
8e6e0792
JB
5535 for (j = 0; j < i.operands; ++j)
5536 {
5537 if (j != op
5538 && !operand_type_register_match(i.types[j],
5539 t->operand_types[j],
5540 type,
5541 t->operand_types[op]))
5542 goto bad_broadcast;
5543 }
5544 }
43234a1e
L
5545 }
5546 /* If broadcast is supported in this instruction, we need to check if
5547 operand of one-element size isn't specified without broadcast. */
5548 else if (t->opcode_modifier.broadcast && i.mem_operands)
5549 {
5550 /* Find memory operand. */
5551 for (op = 0; op < i.operands; op++)
8dc0818e 5552 if (i.flags[op] & Operand_Mem)
43234a1e
L
5553 break;
5554 gas_assert (op < i.operands);
5555 /* Check size of the memory operand. */
4a1b91ea 5556 if (match_broadcast_size (t, op))
43234a1e
L
5557 {
5558 i.error = broadcast_needed;
5559 return 1;
5560 }
5561 }
c39e5b26
JB
5562 else
5563 op = MAX_OPERANDS - 1; /* Avoid uninitialized variable warning. */
43234a1e
L
5564
5565 /* Check if requested masking is supported. */
ae2387fe 5566 if (i.mask)
43234a1e 5567 {
ae2387fe
JB
5568 switch (t->opcode_modifier.masking)
5569 {
5570 case BOTH_MASKING:
5571 break;
5572 case MERGING_MASKING:
5573 if (i.mask->zeroing)
5574 {
5575 case 0:
5576 i.error = unsupported_masking;
5577 return 1;
5578 }
5579 break;
5580 case DYNAMIC_MASKING:
5581 /* Memory destinations allow only merging masking. */
5582 if (i.mask->zeroing && i.mem_operands)
5583 {
5584 /* Find memory operand. */
5585 for (op = 0; op < i.operands; op++)
c48dadc9 5586 if (i.flags[op] & Operand_Mem)
ae2387fe
JB
5587 break;
5588 gas_assert (op < i.operands);
5589 if (op == i.operands - 1)
5590 {
5591 i.error = unsupported_masking;
5592 return 1;
5593 }
5594 }
5595 break;
5596 default:
5597 abort ();
5598 }
43234a1e
L
5599 }
5600
5601 /* Check if masking is applied to dest operand. */
5602 if (i.mask && (i.mask->operand != (int) (i.operands - 1)))
5603 {
5604 i.error = mask_not_on_destination;
5605 return 1;
5606 }
5607
43234a1e
L
5608 /* Check RC/SAE. */
5609 if (i.rounding)
5610 {
a80195f1
JB
5611 if (!t->opcode_modifier.sae
5612 || (i.rounding->type != saeonly && !t->opcode_modifier.staticrounding))
43234a1e
L
5613 {
5614 i.error = unsupported_rc_sae;
5615 return 1;
5616 }
5617 /* If the instruction has several immediate operands and one of
5618 them is rounding, the rounding operand should be the last
5619 immediate operand. */
5620 if (i.imm_operands > 1
5621 && i.rounding->operand != (int) (i.imm_operands - 1))
7bab8ab5 5622 {
43234a1e 5623 i.error = rc_sae_operand_not_last_imm;
7bab8ab5
JB
5624 return 1;
5625 }
6c30d220
L
5626 }
5627
43234a1e 5628 /* Check vector Disp8 operand. */
b5014f7a
JB
5629 if (t->opcode_modifier.disp8memshift
5630 && i.disp_encoding != disp_encoding_32bit)
43234a1e
L
5631 {
5632 if (i.broadcast)
4a1b91ea 5633 i.memshift = t->opcode_modifier.broadcast - 1;
7091c612 5634 else if (t->opcode_modifier.disp8memshift != DISP8_SHIFT_VL)
43234a1e 5635 i.memshift = t->opcode_modifier.disp8memshift;
7091c612
JB
5636 else
5637 {
5638 const i386_operand_type *type = NULL;
5639
5640 i.memshift = 0;
5641 for (op = 0; op < i.operands; op++)
8dc0818e 5642 if (i.flags[op] & Operand_Mem)
7091c612 5643 {
4174bfff
JB
5644 if (t->opcode_modifier.evex == EVEXLIG)
5645 i.memshift = 2 + (i.suffix == QWORD_MNEM_SUFFIX);
5646 else if (t->operand_types[op].bitfield.xmmword
5647 + t->operand_types[op].bitfield.ymmword
5648 + t->operand_types[op].bitfield.zmmword <= 1)
7091c612
JB
5649 type = &t->operand_types[op];
5650 else if (!i.types[op].bitfield.unspecified)
5651 type = &i.types[op];
5652 }
3528c362 5653 else if (i.types[op].bitfield.class == RegSIMD
4174bfff 5654 && t->opcode_modifier.evex != EVEXLIG)
7091c612
JB
5655 {
5656 if (i.types[op].bitfield.zmmword)
5657 i.memshift = 6;
5658 else if (i.types[op].bitfield.ymmword && i.memshift < 5)
5659 i.memshift = 5;
5660 else if (i.types[op].bitfield.xmmword && i.memshift < 4)
5661 i.memshift = 4;
5662 }
5663
5664 if (type)
5665 {
5666 if (type->bitfield.zmmword)
5667 i.memshift = 6;
5668 else if (type->bitfield.ymmword)
5669 i.memshift = 5;
5670 else if (type->bitfield.xmmword)
5671 i.memshift = 4;
5672 }
5673
5674 /* For the check in fits_in_disp8(). */
5675 if (i.memshift == 0)
5676 i.memshift = -1;
5677 }
43234a1e
L
5678
5679 for (op = 0; op < i.operands; op++)
5680 if (operand_type_check (i.types[op], disp)
5681 && i.op[op].disps->X_op == O_constant)
5682 {
b5014f7a 5683 if (fits_in_disp8 (i.op[op].disps->X_add_number))
43234a1e 5684 {
b5014f7a
JB
5685 i.types[op].bitfield.disp8 = 1;
5686 return 0;
43234a1e 5687 }
b5014f7a 5688 i.types[op].bitfield.disp8 = 0;
43234a1e
L
5689 }
5690 }
b5014f7a
JB
5691
5692 i.memshift = 0;
43234a1e 5693
6c30d220
L
5694 return 0;
5695}
5696
43f3e2ee 5697/* Check if operands are valid for the instruction. Update VEX
a683cc34
SP
5698 operand types. */
5699
5700static int
5701VEX_check_operands (const insn_template *t)
5702{
86fa6981 5703 if (i.vec_encoding == vex_encoding_evex)
43234a1e 5704 {
86fa6981 5705 /* This instruction must be encoded with EVEX prefix. */
e771e7c9 5706 if (!is_evex_encoding (t))
86fa6981
L
5707 {
5708 i.error = unsupported;
5709 return 1;
5710 }
5711 return 0;
43234a1e
L
5712 }
5713
a683cc34 5714 if (!t->opcode_modifier.vex)
86fa6981
L
5715 {
5716 /* This instruction template doesn't have VEX prefix. */
5717 if (i.vec_encoding != vex_encoding_default)
5718 {
5719 i.error = unsupported;
5720 return 1;
5721 }
5722 return 0;
5723 }
a683cc34 5724
9d3bf266
JB
5725 /* Check the special Imm4 cases; must be the first operand. */
5726 if (t->cpu_flags.bitfield.cpuxop && t->operands == 5)
a683cc34
SP
5727 {
5728 if (i.op[0].imms->X_op != O_constant
5729 || !fits_in_imm4 (i.op[0].imms->X_add_number))
891edac4 5730 {
a65babc9 5731 i.error = bad_imm4;
891edac4
L
5732 return 1;
5733 }
a683cc34 5734
9d3bf266
JB
5735 /* Turn off Imm<N> so that update_imm won't complain. */
5736 operand_type_set (&i.types[0], 0);
a683cc34
SP
5737 }
5738
5739 return 0;
5740}
5741
d3ce72d0 5742static const insn_template *
83b16ac6 5743match_template (char mnem_suffix)
29b0f896
AM
5744{
5745 /* Points to template once we've found it. */
d3ce72d0 5746 const insn_template *t;
40fb9820 5747 i386_operand_type overlap0, overlap1, overlap2, overlap3;
c0f3af97 5748 i386_operand_type overlap4;
29b0f896 5749 unsigned int found_reverse_match;
dc2be329 5750 i386_opcode_modifier suffix_check;
40fb9820 5751 i386_operand_type operand_types [MAX_OPERANDS];
539e75ad 5752 int addr_prefix_disp;
45a4bb20 5753 unsigned int j, size_match, check_register;
5614d22c 5754 enum i386_error specific_error = 0;
29b0f896 5755
c0f3af97
L
5756#if MAX_OPERANDS != 5
5757# error "MAX_OPERANDS must be 5."
f48ff2ae
L
5758#endif
5759
29b0f896 5760 found_reverse_match = 0;
539e75ad 5761 addr_prefix_disp = -1;
40fb9820 5762
dc2be329 5763 /* Prepare for mnemonic suffix check. */
40fb9820 5764 memset (&suffix_check, 0, sizeof (suffix_check));
dc2be329
L
5765 switch (mnem_suffix)
5766 {
5767 case BYTE_MNEM_SUFFIX:
5768 suffix_check.no_bsuf = 1;
5769 break;
5770 case WORD_MNEM_SUFFIX:
5771 suffix_check.no_wsuf = 1;
5772 break;
5773 case SHORT_MNEM_SUFFIX:
5774 suffix_check.no_ssuf = 1;
5775 break;
5776 case LONG_MNEM_SUFFIX:
5777 suffix_check.no_lsuf = 1;
5778 break;
5779 case QWORD_MNEM_SUFFIX:
5780 suffix_check.no_qsuf = 1;
5781 break;
5782 default:
5783 /* NB: In Intel syntax, normally we can check for memory operand
5784 size when there is no mnemonic suffix. But jmp and call have
5785 2 different encodings with Dword memory operand size, one with
5786 No_ldSuf and the other without. i.suffix is set to
5787 LONG_DOUBLE_MNEM_SUFFIX to skip the one with No_ldSuf. */
5788 if (i.suffix == LONG_DOUBLE_MNEM_SUFFIX)
5789 suffix_check.no_ldsuf = 1;
83b16ac6
JB
5790 }
5791
01559ecc
L
5792 /* Must have right number of operands. */
5793 i.error = number_of_operands_mismatch;
5794
45aa61fe 5795 for (t = current_templates->start; t < current_templates->end; t++)
29b0f896 5796 {
539e75ad 5797 addr_prefix_disp = -1;
dbbc8b7e 5798 found_reverse_match = 0;
539e75ad 5799
29b0f896
AM
5800 if (i.operands != t->operands)
5801 continue;
5802
50aecf8c 5803 /* Check processor support. */
a65babc9 5804 i.error = unsupported;
45a4bb20 5805 if (cpu_flags_match (t) != CPU_FLAGS_PERFECT_MATCH)
50aecf8c
L
5806 continue;
5807
e1d4d893 5808 /* Check AT&T mnemonic. */
a65babc9 5809 i.error = unsupported_with_intel_mnemonic;
e1d4d893 5810 if (intel_mnemonic && t->opcode_modifier.attmnemonic)
1efbbeb4
L
5811 continue;
5812
4b5aaf5f 5813 /* Check AT&T/Intel syntax. */
a65babc9 5814 i.error = unsupported_syntax;
5c07affc 5815 if ((intel_syntax && t->opcode_modifier.attsyntax)
4b5aaf5f 5816 || (!intel_syntax && t->opcode_modifier.intelsyntax))
1efbbeb4
L
5817 continue;
5818
4b5aaf5f
L
5819 /* Check Intel64/AMD64 ISA. */
5820 switch (isa64)
5821 {
5822 default:
5823 /* Default: Don't accept Intel64. */
5824 if (t->opcode_modifier.isa64 == INTEL64)
5825 continue;
5826 break;
5827 case amd64:
5828 /* -mamd64: Don't accept Intel64 and Intel64 only. */
5829 if (t->opcode_modifier.isa64 >= INTEL64)
5830 continue;
5831 break;
5832 case intel64:
5833 /* -mintel64: Don't accept AMD64. */
5834 if (t->opcode_modifier.isa64 == AMD64)
5835 continue;
5836 break;
5837 }
5838
dc2be329 5839 /* Check the suffix. */
a65babc9 5840 i.error = invalid_instruction_suffix;
dc2be329
L
5841 if ((t->opcode_modifier.no_bsuf && suffix_check.no_bsuf)
5842 || (t->opcode_modifier.no_wsuf && suffix_check.no_wsuf)
5843 || (t->opcode_modifier.no_lsuf && suffix_check.no_lsuf)
5844 || (t->opcode_modifier.no_ssuf && suffix_check.no_ssuf)
5845 || (t->opcode_modifier.no_qsuf && suffix_check.no_qsuf)
5846 || (t->opcode_modifier.no_ldsuf && suffix_check.no_ldsuf))
83b16ac6 5847 continue;
29b0f896 5848
3ac21baa
JB
5849 size_match = operand_size_match (t);
5850 if (!size_match)
7d5e4556 5851 continue;
539e75ad 5852
6f2f06be
JB
5853 /* This is intentionally not
5854
0cfa3eb3 5855 if (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE))
6f2f06be
JB
5856
5857 as the case of a missing * on the operand is accepted (perhaps with
5858 a warning, issued further down). */
0cfa3eb3 5859 if (i.jumpabsolute && t->opcode_modifier.jump != JUMP_ABSOLUTE)
6f2f06be
JB
5860 {
5861 i.error = operand_type_mismatch;
5862 continue;
5863 }
5864
5c07affc
L
5865 for (j = 0; j < MAX_OPERANDS; j++)
5866 operand_types[j] = t->operand_types[j];
5867
45aa61fe
AM
5868 /* In general, don't allow 64-bit operands in 32-bit mode. */
5869 if (i.suffix == QWORD_MNEM_SUFFIX
5870 && flag_code != CODE_64BIT
5871 && (intel_syntax
40fb9820 5872 ? (!t->opcode_modifier.ignoresize
625cbd7a 5873 && !t->opcode_modifier.broadcast
45aa61fe
AM
5874 && !intel_float_operand (t->name))
5875 : intel_float_operand (t->name) != 2)
3528c362
JB
5876 && ((operand_types[0].bitfield.class != RegMMX
5877 && operand_types[0].bitfield.class != RegSIMD)
5878 || (operand_types[t->operands > 1].bitfield.class != RegMMX
5879 && operand_types[t->operands > 1].bitfield.class != RegSIMD))
45aa61fe
AM
5880 && (t->base_opcode != 0x0fc7
5881 || t->extension_opcode != 1 /* cmpxchg8b */))
5882 continue;
5883
192dc9c6
JB
5884 /* In general, don't allow 32-bit operands on pre-386. */
5885 else if (i.suffix == LONG_MNEM_SUFFIX
5886 && !cpu_arch_flags.bitfield.cpui386
5887 && (intel_syntax
5888 ? (!t->opcode_modifier.ignoresize
5889 && !intel_float_operand (t->name))
5890 : intel_float_operand (t->name) != 2)
3528c362
JB
5891 && ((operand_types[0].bitfield.class != RegMMX
5892 && operand_types[0].bitfield.class != RegSIMD)
5893 || (operand_types[t->operands > 1].bitfield.class != RegMMX
5894 && operand_types[t->operands > 1].bitfield.class
5895 != RegSIMD)))
192dc9c6
JB
5896 continue;
5897
29b0f896 5898 /* Do not verify operands when there are none. */
50aecf8c 5899 else
29b0f896 5900 {
c6fb90c8 5901 if (!t->operands)
2dbab7d5
L
5902 /* We've found a match; break out of loop. */
5903 break;
29b0f896 5904 }
252b5132 5905
48bcea9f
JB
5906 if (!t->opcode_modifier.jump
5907 || t->opcode_modifier.jump == JUMP_ABSOLUTE)
5908 {
5909 /* There should be only one Disp operand. */
5910 for (j = 0; j < MAX_OPERANDS; j++)
5911 if (operand_type_check (operand_types[j], disp))
539e75ad 5912 break;
48bcea9f
JB
5913 if (j < MAX_OPERANDS)
5914 {
5915 bfd_boolean override = (i.prefix[ADDR_PREFIX] != 0);
5916
5917 addr_prefix_disp = j;
5918
5919 /* Address size prefix will turn Disp64/Disp32S/Disp32/Disp16
5920 operand into Disp32/Disp32/Disp16/Disp32 operand. */
5921 switch (flag_code)
40fb9820 5922 {
48bcea9f
JB
5923 case CODE_16BIT:
5924 override = !override;
5925 /* Fall through. */
5926 case CODE_32BIT:
5927 if (operand_types[j].bitfield.disp32
5928 && operand_types[j].bitfield.disp16)
40fb9820 5929 {
48bcea9f
JB
5930 operand_types[j].bitfield.disp16 = override;
5931 operand_types[j].bitfield.disp32 = !override;
40fb9820 5932 }
48bcea9f
JB
5933 operand_types[j].bitfield.disp32s = 0;
5934 operand_types[j].bitfield.disp64 = 0;
5935 break;
5936
5937 case CODE_64BIT:
5938 if (operand_types[j].bitfield.disp32s
5939 || operand_types[j].bitfield.disp64)
40fb9820 5940 {
48bcea9f
JB
5941 operand_types[j].bitfield.disp64 &= !override;
5942 operand_types[j].bitfield.disp32s &= !override;
5943 operand_types[j].bitfield.disp32 = override;
40fb9820 5944 }
48bcea9f
JB
5945 operand_types[j].bitfield.disp16 = 0;
5946 break;
40fb9820 5947 }
539e75ad 5948 }
48bcea9f 5949 }
539e75ad 5950
02a86693
L
5951 /* Force 0x8b encoding for "mov foo@GOT, %eax". */
5952 if (i.reloc[0] == BFD_RELOC_386_GOT32 && t->base_opcode == 0xa0)
5953 continue;
5954
56ffb741 5955 /* We check register size if needed. */
e2195274
JB
5956 if (t->opcode_modifier.checkregsize)
5957 {
5958 check_register = (1 << t->operands) - 1;
5959 if (i.broadcast)
5960 check_register &= ~(1 << i.broadcast->operand);
5961 }
5962 else
5963 check_register = 0;
5964
c6fb90c8 5965 overlap0 = operand_type_and (i.types[0], operand_types[0]);
29b0f896
AM
5966 switch (t->operands)
5967 {
5968 case 1:
40fb9820 5969 if (!operand_type_match (overlap0, i.types[0]))
29b0f896
AM
5970 continue;
5971 break;
5972 case 2:
33eaf5de 5973 /* xchg %eax, %eax is a special case. It is an alias for nop
8b38ad71
L
5974 only in 32bit mode and we can use opcode 0x90. In 64bit
5975 mode, we can't use 0x90 for xchg %eax, %eax since it should
5976 zero-extend %eax to %rax. */
5977 if (flag_code == CODE_64BIT
5978 && t->base_opcode == 0x90
75e5731b
JB
5979 && i.types[0].bitfield.instance == Accum
5980 && i.types[0].bitfield.dword
5981 && i.types[1].bitfield.instance == Accum
5982 && i.types[1].bitfield.dword)
8b38ad71 5983 continue;
1212781b
JB
5984 /* xrelease mov %eax, <disp> is another special case. It must not
5985 match the accumulator-only encoding of mov. */
5986 if (flag_code != CODE_64BIT
5987 && i.hle_prefix
5988 && t->base_opcode == 0xa0
75e5731b 5989 && i.types[0].bitfield.instance == Accum
8dc0818e 5990 && (i.flags[1] & Operand_Mem))
1212781b 5991 continue;
f5eb1d70
JB
5992 /* Fall through. */
5993
5994 case 3:
3ac21baa
JB
5995 if (!(size_match & MATCH_STRAIGHT))
5996 goto check_reverse;
64c49ab3
JB
5997 /* Reverse direction of operands if swapping is possible in the first
5998 place (operands need to be symmetric) and
5999 - the load form is requested, and the template is a store form,
6000 - the store form is requested, and the template is a load form,
6001 - the non-default (swapped) form is requested. */
6002 overlap1 = operand_type_and (operand_types[0], operand_types[1]);
f5eb1d70 6003 if (t->opcode_modifier.d && i.reg_operands == i.operands
64c49ab3
JB
6004 && !operand_type_all_zero (&overlap1))
6005 switch (i.dir_encoding)
6006 {
6007 case dir_encoding_load:
6008 if (operand_type_check (operand_types[i.operands - 1], anymem)
dfd69174 6009 || t->opcode_modifier.regmem)
64c49ab3
JB
6010 goto check_reverse;
6011 break;
6012
6013 case dir_encoding_store:
6014 if (!operand_type_check (operand_types[i.operands - 1], anymem)
dfd69174 6015 && !t->opcode_modifier.regmem)
64c49ab3
JB
6016 goto check_reverse;
6017 break;
6018
6019 case dir_encoding_swap:
6020 goto check_reverse;
6021
6022 case dir_encoding_default:
6023 break;
6024 }
86fa6981 6025 /* If we want store form, we skip the current load. */
64c49ab3
JB
6026 if ((i.dir_encoding == dir_encoding_store
6027 || i.dir_encoding == dir_encoding_swap)
86fa6981
L
6028 && i.mem_operands == 0
6029 && t->opcode_modifier.load)
fa99fab2 6030 continue;
1a0670f3 6031 /* Fall through. */
f48ff2ae 6032 case 4:
c0f3af97 6033 case 5:
c6fb90c8 6034 overlap1 = operand_type_and (i.types[1], operand_types[1]);
40fb9820
L
6035 if (!operand_type_match (overlap0, i.types[0])
6036 || !operand_type_match (overlap1, i.types[1])
e2195274 6037 || ((check_register & 3) == 3
dc821c5f 6038 && !operand_type_register_match (i.types[0],
40fb9820 6039 operand_types[0],
dc821c5f 6040 i.types[1],
40fb9820 6041 operand_types[1])))
29b0f896
AM
6042 {
6043 /* Check if other direction is valid ... */
38e314eb 6044 if (!t->opcode_modifier.d)
29b0f896
AM
6045 continue;
6046
b6169b20 6047check_reverse:
3ac21baa
JB
6048 if (!(size_match & MATCH_REVERSE))
6049 continue;
29b0f896 6050 /* Try reversing direction of operands. */
f5eb1d70
JB
6051 overlap0 = operand_type_and (i.types[0], operand_types[i.operands - 1]);
6052 overlap1 = operand_type_and (i.types[i.operands - 1], operand_types[0]);
40fb9820 6053 if (!operand_type_match (overlap0, i.types[0])
f5eb1d70 6054 || !operand_type_match (overlap1, i.types[i.operands - 1])
45664ddb 6055 || (check_register
dc821c5f 6056 && !operand_type_register_match (i.types[0],
f5eb1d70
JB
6057 operand_types[i.operands - 1],
6058 i.types[i.operands - 1],
45664ddb 6059 operand_types[0])))
29b0f896
AM
6060 {
6061 /* Does not match either direction. */
6062 continue;
6063 }
38e314eb 6064 /* found_reverse_match holds which of D or FloatR
29b0f896 6065 we've found. */
38e314eb
JB
6066 if (!t->opcode_modifier.d)
6067 found_reverse_match = 0;
6068 else if (operand_types[0].bitfield.tbyte)
8a2ed489 6069 found_reverse_match = Opcode_FloatD;
dbbc8b7e 6070 else if (operand_types[0].bitfield.xmmword
f5eb1d70 6071 || operand_types[i.operands - 1].bitfield.xmmword
3528c362
JB
6072 || operand_types[0].bitfield.class == RegMMX
6073 || operand_types[i.operands - 1].bitfield.class == RegMMX
dbbc8b7e
JB
6074 || is_any_vex_encoding(t))
6075 found_reverse_match = (t->base_opcode & 0xee) != 0x6e
6076 ? Opcode_SIMD_FloatD : Opcode_SIMD_IntD;
8a2ed489 6077 else
38e314eb 6078 found_reverse_match = Opcode_D;
40fb9820 6079 if (t->opcode_modifier.floatr)
8a2ed489 6080 found_reverse_match |= Opcode_FloatR;
29b0f896 6081 }
f48ff2ae 6082 else
29b0f896 6083 {
f48ff2ae 6084 /* Found a forward 2 operand match here. */
d1cbb4db
L
6085 switch (t->operands)
6086 {
c0f3af97
L
6087 case 5:
6088 overlap4 = operand_type_and (i.types[4],
6089 operand_types[4]);
1a0670f3 6090 /* Fall through. */
d1cbb4db 6091 case 4:
c6fb90c8
L
6092 overlap3 = operand_type_and (i.types[3],
6093 operand_types[3]);
1a0670f3 6094 /* Fall through. */
d1cbb4db 6095 case 3:
c6fb90c8
L
6096 overlap2 = operand_type_and (i.types[2],
6097 operand_types[2]);
d1cbb4db
L
6098 break;
6099 }
29b0f896 6100
f48ff2ae
L
6101 switch (t->operands)
6102 {
c0f3af97
L
6103 case 5:
6104 if (!operand_type_match (overlap4, i.types[4])
dc821c5f 6105 || !operand_type_register_match (i.types[3],
c0f3af97 6106 operand_types[3],
c0f3af97
L
6107 i.types[4],
6108 operand_types[4]))
6109 continue;
1a0670f3 6110 /* Fall through. */
f48ff2ae 6111 case 4:
40fb9820 6112 if (!operand_type_match (overlap3, i.types[3])
e2195274
JB
6113 || ((check_register & 0xa) == 0xa
6114 && !operand_type_register_match (i.types[1],
f7768225
JB
6115 operand_types[1],
6116 i.types[3],
e2195274
JB
6117 operand_types[3]))
6118 || ((check_register & 0xc) == 0xc
6119 && !operand_type_register_match (i.types[2],
6120 operand_types[2],
6121 i.types[3],
6122 operand_types[3])))
f48ff2ae 6123 continue;
1a0670f3 6124 /* Fall through. */
f48ff2ae
L
6125 case 3:
6126 /* Here we make use of the fact that there are no
23e42951 6127 reverse match 3 operand instructions. */
40fb9820 6128 if (!operand_type_match (overlap2, i.types[2])
e2195274
JB
6129 || ((check_register & 5) == 5
6130 && !operand_type_register_match (i.types[0],
23e42951
JB
6131 operand_types[0],
6132 i.types[2],
e2195274
JB
6133 operand_types[2]))
6134 || ((check_register & 6) == 6
6135 && !operand_type_register_match (i.types[1],
6136 operand_types[1],
6137 i.types[2],
6138 operand_types[2])))
f48ff2ae
L
6139 continue;
6140 break;
6141 }
29b0f896 6142 }
f48ff2ae 6143 /* Found either forward/reverse 2, 3 or 4 operand match here:
29b0f896
AM
6144 slip through to break. */
6145 }
c0f3af97 6146
5614d22c
JB
6147 /* Check if vector and VEX operands are valid. */
6148 if (check_VecOperands (t) || VEX_check_operands (t))
6149 {
6150 specific_error = i.error;
6151 continue;
6152 }
a683cc34 6153
29b0f896
AM
6154 /* We've found a match; break out of loop. */
6155 break;
6156 }
6157
6158 if (t == current_templates->end)
6159 {
6160 /* We found no match. */
a65babc9 6161 const char *err_msg;
5614d22c 6162 switch (specific_error ? specific_error : i.error)
a65babc9
L
6163 {
6164 default:
6165 abort ();
86e026a4 6166 case operand_size_mismatch:
a65babc9
L
6167 err_msg = _("operand size mismatch");
6168 break;
6169 case operand_type_mismatch:
6170 err_msg = _("operand type mismatch");
6171 break;
6172 case register_type_mismatch:
6173 err_msg = _("register type mismatch");
6174 break;
6175 case number_of_operands_mismatch:
6176 err_msg = _("number of operands mismatch");
6177 break;
6178 case invalid_instruction_suffix:
6179 err_msg = _("invalid instruction suffix");
6180 break;
6181 case bad_imm4:
4a2608e3 6182 err_msg = _("constant doesn't fit in 4 bits");
a65babc9 6183 break;
a65babc9
L
6184 case unsupported_with_intel_mnemonic:
6185 err_msg = _("unsupported with Intel mnemonic");
6186 break;
6187 case unsupported_syntax:
6188 err_msg = _("unsupported syntax");
6189 break;
6190 case unsupported:
35262a23 6191 as_bad (_("unsupported instruction `%s'"),
10efe3f6
L
6192 current_templates->start->name);
6193 return NULL;
6c30d220
L
6194 case invalid_vsib_address:
6195 err_msg = _("invalid VSIB address");
6196 break;
7bab8ab5
JB
6197 case invalid_vector_register_set:
6198 err_msg = _("mask, index, and destination registers must be distinct");
6199 break;
6c30d220
L
6200 case unsupported_vector_index_register:
6201 err_msg = _("unsupported vector index register");
6202 break;
43234a1e
L
6203 case unsupported_broadcast:
6204 err_msg = _("unsupported broadcast");
6205 break;
43234a1e
L
6206 case broadcast_needed:
6207 err_msg = _("broadcast is needed for operand of such type");
6208 break;
6209 case unsupported_masking:
6210 err_msg = _("unsupported masking");
6211 break;
6212 case mask_not_on_destination:
6213 err_msg = _("mask not on destination operand");
6214 break;
6215 case no_default_mask:
6216 err_msg = _("default mask isn't allowed");
6217 break;
6218 case unsupported_rc_sae:
6219 err_msg = _("unsupported static rounding/sae");
6220 break;
6221 case rc_sae_operand_not_last_imm:
6222 if (intel_syntax)
6223 err_msg = _("RC/SAE operand must precede immediate operands");
6224 else
6225 err_msg = _("RC/SAE operand must follow immediate operands");
6226 break;
6227 case invalid_register_operand:
6228 err_msg = _("invalid register operand");
6229 break;
a65babc9
L
6230 }
6231 as_bad (_("%s for `%s'"), err_msg,
891edac4 6232 current_templates->start->name);
fa99fab2 6233 return NULL;
29b0f896 6234 }
252b5132 6235
29b0f896
AM
6236 if (!quiet_warnings)
6237 {
6238 if (!intel_syntax
0cfa3eb3 6239 && (i.jumpabsolute != (t->opcode_modifier.jump == JUMP_ABSOLUTE)))
6f2f06be 6240 as_warn (_("indirect %s without `*'"), t->name);
29b0f896 6241
40fb9820
L
6242 if (t->opcode_modifier.isprefix
6243 && t->opcode_modifier.ignoresize)
29b0f896
AM
6244 {
6245 /* Warn them that a data or address size prefix doesn't
6246 affect assembly of the next line of code. */
6247 as_warn (_("stand-alone `%s' prefix"), t->name);
6248 }
6249 }
6250
6251 /* Copy the template we found. */
6252 i.tm = *t;
539e75ad
L
6253
6254 if (addr_prefix_disp != -1)
6255 i.tm.operand_types[addr_prefix_disp]
6256 = operand_types[addr_prefix_disp];
6257
29b0f896
AM
6258 if (found_reverse_match)
6259 {
dfd69174
JB
6260 /* If we found a reverse match we must alter the opcode direction
6261 bit and clear/flip the regmem modifier one. found_reverse_match
6262 holds bits to change (different for int & float insns). */
29b0f896
AM
6263
6264 i.tm.base_opcode ^= found_reverse_match;
6265
f5eb1d70
JB
6266 i.tm.operand_types[0] = operand_types[i.operands - 1];
6267 i.tm.operand_types[i.operands - 1] = operand_types[0];
dfd69174
JB
6268
6269 /* Certain SIMD insns have their load forms specified in the opcode
6270 table, and hence we need to _set_ RegMem instead of clearing it.
6271 We need to avoid setting the bit though on insns like KMOVW. */
6272 i.tm.opcode_modifier.regmem
6273 = i.tm.opcode_modifier.modrm && i.tm.opcode_modifier.d
6274 && i.tm.operands > 2U - i.tm.opcode_modifier.sse2avx
6275 && !i.tm.opcode_modifier.regmem;
29b0f896
AM
6276 }
6277
fa99fab2 6278 return t;
29b0f896
AM
6279}
6280
6281static int
e3bb37b5 6282check_string (void)
29b0f896 6283{
51c8edf6
JB
6284 unsigned int es_op = i.tm.opcode_modifier.isstring - IS_STRING_ES_OP0;
6285 unsigned int op = i.tm.operand_types[0].bitfield.baseindex ? es_op : 0;
8dc0818e 6286
51c8edf6 6287 if (i.seg[op] != NULL && i.seg[op] != &es)
29b0f896 6288 {
51c8edf6
JB
6289 as_bad (_("`%s' operand %u must use `%ses' segment"),
6290 i.tm.name,
6291 intel_syntax ? i.tm.operands - es_op : es_op + 1,
6292 register_prefix);
6293 return 0;
29b0f896 6294 }
51c8edf6
JB
6295
6296 /* There's only ever one segment override allowed per instruction.
6297 This instruction possibly has a legal segment override on the
6298 second operand, so copy the segment to where non-string
6299 instructions store it, allowing common code. */
6300 i.seg[op] = i.seg[1];
6301
29b0f896
AM
6302 return 1;
6303}
6304
6305static int
543613e9 6306process_suffix (void)
29b0f896
AM
6307{
6308 /* If matched instruction specifies an explicit instruction mnemonic
6309 suffix, use it. */
673fe0f0 6310 if (i.tm.opcode_modifier.size == SIZE16)
40fb9820 6311 i.suffix = WORD_MNEM_SUFFIX;
673fe0f0 6312 else if (i.tm.opcode_modifier.size == SIZE32)
40fb9820 6313 i.suffix = LONG_MNEM_SUFFIX;
673fe0f0 6314 else if (i.tm.opcode_modifier.size == SIZE64)
40fb9820 6315 i.suffix = QWORD_MNEM_SUFFIX;
13e600d0
JB
6316 else if (i.reg_operands
6317 && (i.operands > 1 || i.types[0].bitfield.class == Reg))
29b0f896
AM
6318 {
6319 /* If there's no instruction mnemonic suffix we try to invent one
13e600d0 6320 based on GPR operands. */
29b0f896
AM
6321 if (!i.suffix)
6322 {
6323 /* We take i.suffix from the last register operand specified,
6324 Destination register type is more significant than source
381d071f
L
6325 register type. crc32 in SSE4.2 prefers source register
6326 type. */
1a035124 6327 unsigned int op = i.tm.base_opcode != 0xf20f38f0 ? i.operands : 1;
20592a94 6328
1a035124
JB
6329 while (op--)
6330 if (i.tm.operand_types[op].bitfield.instance == InstanceNone
6331 || i.tm.operand_types[op].bitfield.instance == Accum)
6332 {
6333 if (i.types[op].bitfield.class != Reg)
6334 continue;
6335 if (i.types[op].bitfield.byte)
6336 i.suffix = BYTE_MNEM_SUFFIX;
6337 else if (i.types[op].bitfield.word)
6338 i.suffix = WORD_MNEM_SUFFIX;
6339 else if (i.types[op].bitfield.dword)
6340 i.suffix = LONG_MNEM_SUFFIX;
6341 else if (i.types[op].bitfield.qword)
6342 i.suffix = QWORD_MNEM_SUFFIX;
6343 else
6344 continue;
6345 break;
6346 }
29b0f896
AM
6347 }
6348 else if (i.suffix == BYTE_MNEM_SUFFIX)
6349 {
2eb952a4
L
6350 if (intel_syntax
6351 && i.tm.opcode_modifier.ignoresize
6352 && i.tm.opcode_modifier.no_bsuf)
6353 i.suffix = 0;
6354 else if (!check_byte_reg ())
29b0f896
AM
6355 return 0;
6356 }
6357 else if (i.suffix == LONG_MNEM_SUFFIX)
6358 {
2eb952a4
L
6359 if (intel_syntax
6360 && i.tm.opcode_modifier.ignoresize
9f123b91
JB
6361 && i.tm.opcode_modifier.no_lsuf
6362 && !i.tm.opcode_modifier.todword
6363 && !i.tm.opcode_modifier.toqword)
2eb952a4
L
6364 i.suffix = 0;
6365 else if (!check_long_reg ())
29b0f896
AM
6366 return 0;
6367 }
6368 else if (i.suffix == QWORD_MNEM_SUFFIX)
6369 {
955e1e6a
L
6370 if (intel_syntax
6371 && i.tm.opcode_modifier.ignoresize
9f123b91
JB
6372 && i.tm.opcode_modifier.no_qsuf
6373 && !i.tm.opcode_modifier.todword
6374 && !i.tm.opcode_modifier.toqword)
955e1e6a
L
6375 i.suffix = 0;
6376 else if (!check_qword_reg ())
29b0f896
AM
6377 return 0;
6378 }
6379 else if (i.suffix == WORD_MNEM_SUFFIX)
6380 {
2eb952a4
L
6381 if (intel_syntax
6382 && i.tm.opcode_modifier.ignoresize
6383 && i.tm.opcode_modifier.no_wsuf)
6384 i.suffix = 0;
6385 else if (!check_word_reg ())
29b0f896
AM
6386 return 0;
6387 }
40fb9820 6388 else if (intel_syntax && i.tm.opcode_modifier.ignoresize)
29b0f896
AM
6389 /* Do nothing if the instruction is going to ignore the prefix. */
6390 ;
6391 else
6392 abort ();
6393 }
62b3f548 6394 else if (i.tm.opcode_modifier.defaultsize && !i.suffix)
29b0f896 6395 {
13e600d0
JB
6396 i.suffix = stackop_size;
6397 if (stackop_size == LONG_MNEM_SUFFIX)
06f74c5c
L
6398 {
6399 /* stackop_size is set to LONG_MNEM_SUFFIX for the
6400 .code16gcc directive to support 16-bit mode with
6401 32-bit address. For IRET without a suffix, generate
6402 16-bit IRET (opcode 0xcf) to return from an interrupt
6403 handler. */
13e600d0
JB
6404 if (i.tm.base_opcode == 0xcf)
6405 {
6406 i.suffix = WORD_MNEM_SUFFIX;
6407 as_warn (_("generating 16-bit `iret' for .code16gcc directive"));
6408 }
6409 /* Warn about changed behavior for segment register push/pop. */
6410 else if ((i.tm.base_opcode | 1) == 0x07)
6411 as_warn (_("generating 32-bit `%s', unlike earlier gas versions"),
6412 i.tm.name);
06f74c5c 6413 }
29b0f896 6414 }
c006a730 6415 else if (!i.suffix
0cfa3eb3
JB
6416 && (i.tm.opcode_modifier.jump == JUMP_ABSOLUTE
6417 || i.tm.opcode_modifier.jump == JUMP_BYTE
6418 || i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT
64e74474
AM
6419 || (i.tm.base_opcode == 0x0f01 /* [ls][gi]dt */
6420 && i.tm.extension_opcode <= 3)))
9306ca4a
JB
6421 {
6422 switch (flag_code)
6423 {
6424 case CODE_64BIT:
40fb9820 6425 if (!i.tm.opcode_modifier.no_qsuf)
9306ca4a
JB
6426 {
6427 i.suffix = QWORD_MNEM_SUFFIX;
6428 break;
6429 }
1a0670f3 6430 /* Fall through. */
9306ca4a 6431 case CODE_32BIT:
40fb9820 6432 if (!i.tm.opcode_modifier.no_lsuf)
9306ca4a
JB
6433 i.suffix = LONG_MNEM_SUFFIX;
6434 break;
6435 case CODE_16BIT:
40fb9820 6436 if (!i.tm.opcode_modifier.no_wsuf)
9306ca4a
JB
6437 i.suffix = WORD_MNEM_SUFFIX;
6438 break;
6439 }
6440 }
252b5132 6441
c006a730 6442 if (!i.suffix
873494c8
JB
6443 && (!i.tm.opcode_modifier.defaultsize
6444 /* Also cover lret/retf/iret in 64-bit mode. */
6445 || (flag_code == CODE_64BIT
6446 && !i.tm.opcode_modifier.no_lsuf
6447 && !i.tm.opcode_modifier.no_qsuf))
62b3f548
JB
6448 && !i.tm.opcode_modifier.ignoresize
6449 /* Accept FLDENV et al without suffix. */
6450 && (i.tm.opcode_modifier.no_ssuf || i.tm.opcode_modifier.floatmf))
29b0f896 6451 {
c006a730
JB
6452 unsigned int suffixes;
6453
6454 suffixes = !i.tm.opcode_modifier.no_bsuf;
6455 if (!i.tm.opcode_modifier.no_wsuf)
6456 suffixes |= 1 << 1;
6457 if (!i.tm.opcode_modifier.no_lsuf)
6458 suffixes |= 1 << 2;
6459 if (!i.tm.opcode_modifier.no_ldsuf)
6460 suffixes |= 1 << 3;
6461 if (!i.tm.opcode_modifier.no_ssuf)
6462 suffixes |= 1 << 4;
6463 if (flag_code == CODE_64BIT && !i.tm.opcode_modifier.no_qsuf)
6464 suffixes |= 1 << 5;
6465
6466 /* Are multiple suffixes allowed? */
6467 if (suffixes & (suffixes - 1))
9306ca4a 6468 {
873494c8
JB
6469 if (intel_syntax
6470 && (!i.tm.opcode_modifier.defaultsize
6471 || operand_check == check_error))
9306ca4a 6472 {
c006a730 6473 as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
9306ca4a
JB
6474 return 0;
6475 }
c006a730 6476 if (operand_check == check_error)
9306ca4a 6477 {
c006a730
JB
6478 as_bad (_("no instruction mnemonic suffix given and "
6479 "no register operands; can't size `%s'"), i.tm.name);
9306ca4a
JB
6480 return 0;
6481 }
c006a730 6482 if (operand_check == check_warning)
873494c8
JB
6483 as_warn (_("%s; using default for `%s'"),
6484 intel_syntax
6485 ? _("ambiguous operand size")
6486 : _("no instruction mnemonic suffix given and "
6487 "no register operands"),
6488 i.tm.name);
c006a730
JB
6489
6490 if (i.tm.opcode_modifier.floatmf)
6491 i.suffix = SHORT_MNEM_SUFFIX;
6492 else if (flag_code == CODE_16BIT)
6493 i.suffix = WORD_MNEM_SUFFIX;
1a035124 6494 else if (!i.tm.opcode_modifier.no_lsuf)
c006a730 6495 i.suffix = LONG_MNEM_SUFFIX;
1a035124
JB
6496 else
6497 i.suffix = QWORD_MNEM_SUFFIX;
9306ca4a 6498 }
29b0f896 6499 }
252b5132 6500
50128d0c
JB
6501 if (!i.tm.opcode_modifier.modrm && i.reg_operands && i.tm.operands < 3)
6502 i.short_form = (i.tm.operand_types[0].bitfield.class == Reg)
6503 != (i.tm.operand_types[1].bitfield.class == Reg);
6504
d2224064
JB
6505 /* Change the opcode based on the operand size given by i.suffix. */
6506 switch (i.suffix)
29b0f896 6507 {
d2224064
JB
6508 /* Size floating point instruction. */
6509 case LONG_MNEM_SUFFIX:
6510 if (i.tm.opcode_modifier.floatmf)
6511 {
6512 i.tm.base_opcode ^= 4;
6513 break;
6514 }
6515 /* fall through */
6516 case WORD_MNEM_SUFFIX:
6517 case QWORD_MNEM_SUFFIX:
29b0f896 6518 /* It's not a byte, select word/dword operation. */
40fb9820 6519 if (i.tm.opcode_modifier.w)
29b0f896 6520 {
50128d0c 6521 if (i.short_form)
29b0f896
AM
6522 i.tm.base_opcode |= 8;
6523 else
6524 i.tm.base_opcode |= 1;
6525 }
d2224064
JB
6526 /* fall through */
6527 case SHORT_MNEM_SUFFIX:
29b0f896
AM
6528 /* Now select between word & dword operations via the operand
6529 size prefix, except for instructions that will ignore this
6530 prefix anyway. */
75c0a438 6531 if (i.reg_operands > 0
bab6aec1 6532 && i.types[0].bitfield.class == Reg
75c0a438 6533 && i.tm.opcode_modifier.addrprefixopreg
474da251 6534 && (i.tm.operand_types[0].bitfield.instance == Accum
75c0a438 6535 || i.operands == 1))
cb712a9e 6536 {
ca61edf2
L
6537 /* The address size override prefix changes the size of the
6538 first operand. */
40fb9820 6539 if ((flag_code == CODE_32BIT
75c0a438 6540 && i.op[0].regs->reg_type.bitfield.word)
40fb9820 6541 || (flag_code != CODE_32BIT
75c0a438 6542 && i.op[0].regs->reg_type.bitfield.dword))
cb712a9e
L
6543 if (!add_prefix (ADDR_PREFIX_OPCODE))
6544 return 0;
6545 }
6546 else if (i.suffix != QWORD_MNEM_SUFFIX
40fb9820
L
6547 && !i.tm.opcode_modifier.ignoresize
6548 && !i.tm.opcode_modifier.floatmf
a38d7118 6549 && !is_any_vex_encoding (&i.tm)
cb712a9e
L
6550 && ((i.suffix == LONG_MNEM_SUFFIX) == (flag_code == CODE_16BIT)
6551 || (flag_code == CODE_64BIT
0cfa3eb3 6552 && i.tm.opcode_modifier.jump == JUMP_BYTE)))
24eab124
AM
6553 {
6554 unsigned int prefix = DATA_PREFIX_OPCODE;
543613e9 6555
0cfa3eb3 6556 if (i.tm.opcode_modifier.jump == JUMP_BYTE) /* jcxz, loop */
29b0f896 6557 prefix = ADDR_PREFIX_OPCODE;
252b5132 6558
29b0f896
AM
6559 if (!add_prefix (prefix))
6560 return 0;
24eab124 6561 }
252b5132 6562
29b0f896
AM
6563 /* Set mode64 for an operand. */
6564 if (i.suffix == QWORD_MNEM_SUFFIX
9146926a 6565 && flag_code == CODE_64BIT
d2224064 6566 && !i.tm.opcode_modifier.norex64
46e883c5 6567 /* Special case for xchg %rax,%rax. It is NOP and doesn't
d2224064
JB
6568 need rex64. */
6569 && ! (i.operands == 2
6570 && i.tm.base_opcode == 0x90
6571 && i.tm.extension_opcode == None
75e5731b
JB
6572 && i.types[0].bitfield.instance == Accum
6573 && i.types[0].bitfield.qword
6574 && i.types[1].bitfield.instance == Accum
6575 && i.types[1].bitfield.qword))
d2224064 6576 i.rex |= REX_W;
3e73aa7c 6577
d2224064 6578 break;
29b0f896 6579 }
7ecd2f8b 6580
c0a30a9f
L
6581 if (i.reg_operands != 0
6582 && i.operands > 1
6583 && i.tm.opcode_modifier.addrprefixopreg
474da251 6584 && i.tm.operand_types[0].bitfield.instance != Accum)
c0a30a9f
L
6585 {
6586 /* Check invalid register operand when the address size override
6587 prefix changes the size of register operands. */
6588 unsigned int op;
6589 enum { need_word, need_dword, need_qword } need;
6590
6591 if (flag_code == CODE_32BIT)
6592 need = i.prefix[ADDR_PREFIX] ? need_word : need_dword;
6593 else
6594 {
6595 if (i.prefix[ADDR_PREFIX])
6596 need = need_dword;
6597 else
6598 need = flag_code == CODE_64BIT ? need_qword : need_word;
6599 }
6600
6601 for (op = 0; op < i.operands; op++)
bab6aec1 6602 if (i.types[op].bitfield.class == Reg
c0a30a9f
L
6603 && ((need == need_word
6604 && !i.op[op].regs->reg_type.bitfield.word)
6605 || (need == need_dword
6606 && !i.op[op].regs->reg_type.bitfield.dword)
6607 || (need == need_qword
6608 && !i.op[op].regs->reg_type.bitfield.qword)))
6609 {
6610 as_bad (_("invalid register operand size for `%s'"),
6611 i.tm.name);
6612 return 0;
6613 }
6614 }
6615
29b0f896
AM
6616 return 1;
6617}
3e73aa7c 6618
29b0f896 6619static int
543613e9 6620check_byte_reg (void)
29b0f896
AM
6621{
6622 int op;
543613e9 6623
29b0f896
AM
6624 for (op = i.operands; --op >= 0;)
6625 {
dc821c5f 6626 /* Skip non-register operands. */
bab6aec1 6627 if (i.types[op].bitfield.class != Reg)
dc821c5f
JB
6628 continue;
6629
29b0f896
AM
6630 /* If this is an eight bit register, it's OK. If it's the 16 or
6631 32 bit version of an eight bit register, we will just use the
6632 low portion, and that's OK too. */
dc821c5f 6633 if (i.types[op].bitfield.byte)
29b0f896
AM
6634 continue;
6635
5a819eb9 6636 /* I/O port address operands are OK too. */
75e5731b
JB
6637 if (i.tm.operand_types[op].bitfield.instance == RegD
6638 && i.tm.operand_types[op].bitfield.word)
5a819eb9
JB
6639 continue;
6640
9344ff29
L
6641 /* crc32 doesn't generate this warning. */
6642 if (i.tm.base_opcode == 0xf20f38f0)
6643 continue;
6644
dc821c5f
JB
6645 if ((i.types[op].bitfield.word
6646 || i.types[op].bitfield.dword
6647 || i.types[op].bitfield.qword)
5a819eb9
JB
6648 && i.op[op].regs->reg_num < 4
6649 /* Prohibit these changes in 64bit mode, since the lowering
6650 would be more complicated. */
6651 && flag_code != CODE_64BIT)
29b0f896 6652 {
29b0f896 6653#if REGISTER_WARNINGS
5a819eb9 6654 if (!quiet_warnings)
a540244d
L
6655 as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
6656 register_prefix,
dc821c5f 6657 (i.op[op].regs + (i.types[op].bitfield.word
29b0f896
AM
6658 ? REGNAM_AL - REGNAM_AX
6659 : REGNAM_AL - REGNAM_EAX))->reg_name,
a540244d 6660 register_prefix,
29b0f896
AM
6661 i.op[op].regs->reg_name,
6662 i.suffix);
6663#endif
6664 continue;
6665 }
6666 /* Any other register is bad. */
bab6aec1 6667 if (i.types[op].bitfield.class == Reg
3528c362
JB
6668 || i.types[op].bitfield.class == RegMMX
6669 || i.types[op].bitfield.class == RegSIMD
00cee14f 6670 || i.types[op].bitfield.class == SReg
4a5c67ed
JB
6671 || i.types[op].bitfield.class == RegCR
6672 || i.types[op].bitfield.class == RegDR
6673 || i.types[op].bitfield.class == RegTR)
29b0f896 6674 {
a540244d
L
6675 as_bad (_("`%s%s' not allowed with `%s%c'"),
6676 register_prefix,
29b0f896
AM
6677 i.op[op].regs->reg_name,
6678 i.tm.name,
6679 i.suffix);
6680 return 0;
6681 }
6682 }
6683 return 1;
6684}
6685
6686static int
e3bb37b5 6687check_long_reg (void)
29b0f896
AM
6688{
6689 int op;
6690
6691 for (op = i.operands; --op >= 0;)
dc821c5f 6692 /* Skip non-register operands. */
bab6aec1 6693 if (i.types[op].bitfield.class != Reg)
dc821c5f 6694 continue;
29b0f896
AM
6695 /* Reject eight bit registers, except where the template requires
6696 them. (eg. movzb) */
dc821c5f 6697 else if (i.types[op].bitfield.byte
bab6aec1 6698 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6699 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
6700 && (i.tm.operand_types[op].bitfield.word
6701 || i.tm.operand_types[op].bitfield.dword))
29b0f896 6702 {
a540244d
L
6703 as_bad (_("`%s%s' not allowed with `%s%c'"),
6704 register_prefix,
29b0f896
AM
6705 i.op[op].regs->reg_name,
6706 i.tm.name,
6707 i.suffix);
6708 return 0;
6709 }
be4c5e58
L
6710 /* Error if the e prefix on a general reg is missing. */
6711 else if (i.types[op].bitfield.word
bab6aec1 6712 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6713 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 6714 && i.tm.operand_types[op].bitfield.dword)
29b0f896 6715 {
be4c5e58
L
6716 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
6717 register_prefix, i.op[op].regs->reg_name,
6718 i.suffix);
6719 return 0;
252b5132 6720 }
e4630f71 6721 /* Warn if the r prefix on a general reg is present. */
dc821c5f 6722 else if (i.types[op].bitfield.qword
bab6aec1 6723 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6724 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 6725 && i.tm.operand_types[op].bitfield.dword)
252b5132 6726 {
34828aad 6727 if (intel_syntax
bc31405e
L
6728 && (i.tm.opcode_modifier.toqword
6729 /* Also convert to QWORD for MOVSXD. */
6730 || i.tm.base_opcode == 0x63)
3528c362 6731 && i.types[0].bitfield.class != RegSIMD)
34828aad 6732 {
ca61edf2 6733 /* Convert to QWORD. We want REX byte. */
34828aad
L
6734 i.suffix = QWORD_MNEM_SUFFIX;
6735 }
6736 else
6737 {
2b5d6a91 6738 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
6739 register_prefix, i.op[op].regs->reg_name,
6740 i.suffix);
6741 return 0;
6742 }
29b0f896
AM
6743 }
6744 return 1;
6745}
252b5132 6746
29b0f896 6747static int
e3bb37b5 6748check_qword_reg (void)
29b0f896
AM
6749{
6750 int op;
252b5132 6751
29b0f896 6752 for (op = i.operands; --op >= 0; )
dc821c5f 6753 /* Skip non-register operands. */
bab6aec1 6754 if (i.types[op].bitfield.class != Reg)
dc821c5f 6755 continue;
29b0f896
AM
6756 /* Reject eight bit registers, except where the template requires
6757 them. (eg. movzb) */
dc821c5f 6758 else if (i.types[op].bitfield.byte
bab6aec1 6759 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6760 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
6761 && (i.tm.operand_types[op].bitfield.word
6762 || i.tm.operand_types[op].bitfield.dword))
29b0f896 6763 {
a540244d
L
6764 as_bad (_("`%s%s' not allowed with `%s%c'"),
6765 register_prefix,
29b0f896
AM
6766 i.op[op].regs->reg_name,
6767 i.tm.name,
6768 i.suffix);
6769 return 0;
6770 }
e4630f71 6771 /* Warn if the r prefix on a general reg is missing. */
dc821c5f
JB
6772 else if ((i.types[op].bitfield.word
6773 || i.types[op].bitfield.dword)
bab6aec1 6774 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6775 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 6776 && i.tm.operand_types[op].bitfield.qword)
29b0f896
AM
6777 {
6778 /* Prohibit these changes in the 64bit mode, since the
6779 lowering is more complicated. */
34828aad 6780 if (intel_syntax
ca61edf2 6781 && i.tm.opcode_modifier.todword
3528c362 6782 && i.types[0].bitfield.class != RegSIMD)
34828aad 6783 {
ca61edf2 6784 /* Convert to DWORD. We don't want REX byte. */
34828aad
L
6785 i.suffix = LONG_MNEM_SUFFIX;
6786 }
6787 else
6788 {
2b5d6a91 6789 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
6790 register_prefix, i.op[op].regs->reg_name,
6791 i.suffix);
6792 return 0;
6793 }
252b5132 6794 }
29b0f896
AM
6795 return 1;
6796}
252b5132 6797
29b0f896 6798static int
e3bb37b5 6799check_word_reg (void)
29b0f896
AM
6800{
6801 int op;
6802 for (op = i.operands; --op >= 0;)
dc821c5f 6803 /* Skip non-register operands. */
bab6aec1 6804 if (i.types[op].bitfield.class != Reg)
dc821c5f 6805 continue;
29b0f896
AM
6806 /* Reject eight bit registers, except where the template requires
6807 them. (eg. movzb) */
dc821c5f 6808 else if (i.types[op].bitfield.byte
bab6aec1 6809 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6810 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f
JB
6811 && (i.tm.operand_types[op].bitfield.word
6812 || i.tm.operand_types[op].bitfield.dword))
29b0f896 6813 {
a540244d
L
6814 as_bad (_("`%s%s' not allowed with `%s%c'"),
6815 register_prefix,
29b0f896
AM
6816 i.op[op].regs->reg_name,
6817 i.tm.name,
6818 i.suffix);
6819 return 0;
6820 }
e4630f71 6821 /* Warn if the e or r prefix on a general reg is present. */
29b0f896 6822 else if ((!quiet_warnings || flag_code == CODE_64BIT)
dc821c5f
JB
6823 && (i.types[op].bitfield.dword
6824 || i.types[op].bitfield.qword)
bab6aec1 6825 && (i.tm.operand_types[op].bitfield.class == Reg
75e5731b 6826 || i.tm.operand_types[op].bitfield.instance == Accum)
dc821c5f 6827 && i.tm.operand_types[op].bitfield.word)
252b5132 6828 {
29b0f896
AM
6829 /* Prohibit these changes in the 64bit mode, since the
6830 lowering is more complicated. */
6831 if (flag_code == CODE_64BIT)
252b5132 6832 {
2b5d6a91 6833 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
2ca3ace5 6834 register_prefix, i.op[op].regs->reg_name,
29b0f896
AM
6835 i.suffix);
6836 return 0;
252b5132 6837 }
29b0f896 6838#if REGISTER_WARNINGS
cecf1424
JB
6839 as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
6840 register_prefix,
6841 (i.op[op].regs + REGNAM_AX - REGNAM_EAX)->reg_name,
6842 register_prefix, i.op[op].regs->reg_name, i.suffix);
29b0f896
AM
6843#endif
6844 }
6845 return 1;
6846}
252b5132 6847
29b0f896 6848static int
40fb9820 6849update_imm (unsigned int j)
29b0f896 6850{
bc0844ae 6851 i386_operand_type overlap = i.types[j];
40fb9820
L
6852 if ((overlap.bitfield.imm8
6853 || overlap.bitfield.imm8s
6854 || overlap.bitfield.imm16
6855 || overlap.bitfield.imm32
6856 || overlap.bitfield.imm32s
6857 || overlap.bitfield.imm64)
0dfbf9d7
L
6858 && !operand_type_equal (&overlap, &imm8)
6859 && !operand_type_equal (&overlap, &imm8s)
6860 && !operand_type_equal (&overlap, &imm16)
6861 && !operand_type_equal (&overlap, &imm32)
6862 && !operand_type_equal (&overlap, &imm32s)
6863 && !operand_type_equal (&overlap, &imm64))
29b0f896
AM
6864 {
6865 if (i.suffix)
6866 {
40fb9820
L
6867 i386_operand_type temp;
6868
0dfbf9d7 6869 operand_type_set (&temp, 0);
7ab9ffdd 6870 if (i.suffix == BYTE_MNEM_SUFFIX)
40fb9820
L
6871 {
6872 temp.bitfield.imm8 = overlap.bitfield.imm8;
6873 temp.bitfield.imm8s = overlap.bitfield.imm8s;
6874 }
6875 else if (i.suffix == WORD_MNEM_SUFFIX)
6876 temp.bitfield.imm16 = overlap.bitfield.imm16;
6877 else if (i.suffix == QWORD_MNEM_SUFFIX)
6878 {
6879 temp.bitfield.imm64 = overlap.bitfield.imm64;
6880 temp.bitfield.imm32s = overlap.bitfield.imm32s;
6881 }
6882 else
6883 temp.bitfield.imm32 = overlap.bitfield.imm32;
6884 overlap = temp;
29b0f896 6885 }
0dfbf9d7
L
6886 else if (operand_type_equal (&overlap, &imm16_32_32s)
6887 || operand_type_equal (&overlap, &imm16_32)
6888 || operand_type_equal (&overlap, &imm16_32s))
29b0f896 6889 {
40fb9820 6890 if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
65da13b5 6891 overlap = imm16;
40fb9820 6892 else
65da13b5 6893 overlap = imm32s;
29b0f896 6894 }
0dfbf9d7
L
6895 if (!operand_type_equal (&overlap, &imm8)
6896 && !operand_type_equal (&overlap, &imm8s)
6897 && !operand_type_equal (&overlap, &imm16)
6898 && !operand_type_equal (&overlap, &imm32)
6899 && !operand_type_equal (&overlap, &imm32s)
6900 && !operand_type_equal (&overlap, &imm64))
29b0f896 6901 {
4eed87de
AM
6902 as_bad (_("no instruction mnemonic suffix given; "
6903 "can't determine immediate size"));
29b0f896
AM
6904 return 0;
6905 }
6906 }
40fb9820 6907 i.types[j] = overlap;
29b0f896 6908
40fb9820
L
6909 return 1;
6910}
6911
6912static int
6913finalize_imm (void)
6914{
bc0844ae 6915 unsigned int j, n;
29b0f896 6916
bc0844ae
L
6917 /* Update the first 2 immediate operands. */
6918 n = i.operands > 2 ? 2 : i.operands;
6919 if (n)
6920 {
6921 for (j = 0; j < n; j++)
6922 if (update_imm (j) == 0)
6923 return 0;
40fb9820 6924
bc0844ae
L
6925 /* The 3rd operand can't be immediate operand. */
6926 gas_assert (operand_type_check (i.types[2], imm) == 0);
6927 }
29b0f896
AM
6928
6929 return 1;
6930}
6931
6932static int
e3bb37b5 6933process_operands (void)
29b0f896
AM
6934{
6935 /* Default segment register this instruction will use for memory
6936 accesses. 0 means unknown. This is only for optimizing out
6937 unnecessary segment overrides. */
6938 const seg_entry *default_seg = 0;
6939
2426c15f 6940 if (i.tm.opcode_modifier.sse2avx && i.tm.opcode_modifier.vexvvvv)
29b0f896 6941 {
91d6fa6a
NC
6942 unsigned int dupl = i.operands;
6943 unsigned int dest = dupl - 1;
9fcfb3d7
L
6944 unsigned int j;
6945
c0f3af97 6946 /* The destination must be an xmm register. */
9c2799c2 6947 gas_assert (i.reg_operands
91d6fa6a 6948 && MAX_OPERANDS > dupl
7ab9ffdd 6949 && operand_type_equal (&i.types[dest], &regxmm));
c0f3af97 6950
75e5731b 6951 if (i.tm.operand_types[0].bitfield.instance == Accum
1b54b8d7 6952 && i.tm.operand_types[0].bitfield.xmmword)
e2ec9d29 6953 {
8cd7925b 6954 if (i.tm.opcode_modifier.vexsources == VEX3SOURCES)
c0f3af97
L
6955 {
6956 /* Keep xmm0 for instructions with VEX prefix and 3
6957 sources. */
75e5731b 6958 i.tm.operand_types[0].bitfield.instance = InstanceNone;
3528c362 6959 i.tm.operand_types[0].bitfield.class = RegSIMD;
c0f3af97
L
6960 goto duplicate;
6961 }
e2ec9d29 6962 else
c0f3af97
L
6963 {
6964 /* We remove the first xmm0 and keep the number of
6965 operands unchanged, which in fact duplicates the
6966 destination. */
6967 for (j = 1; j < i.operands; j++)
6968 {
6969 i.op[j - 1] = i.op[j];
6970 i.types[j - 1] = i.types[j];
6971 i.tm.operand_types[j - 1] = i.tm.operand_types[j];
8dc0818e 6972 i.flags[j - 1] = i.flags[j];
c0f3af97
L
6973 }
6974 }
6975 }
6976 else if (i.tm.opcode_modifier.implicit1stxmm0)
7ab9ffdd 6977 {
91d6fa6a 6978 gas_assert ((MAX_OPERANDS - 1) > dupl
8cd7925b
L
6979 && (i.tm.opcode_modifier.vexsources
6980 == VEX3SOURCES));
c0f3af97
L
6981
6982 /* Add the implicit xmm0 for instructions with VEX prefix
6983 and 3 sources. */
6984 for (j = i.operands; j > 0; j--)
6985 {
6986 i.op[j] = i.op[j - 1];
6987 i.types[j] = i.types[j - 1];
6988 i.tm.operand_types[j] = i.tm.operand_types[j - 1];
8dc0818e 6989 i.flags[j] = i.flags[j - 1];
c0f3af97
L
6990 }
6991 i.op[0].regs
6992 = (const reg_entry *) hash_find (reg_hash, "xmm0");
7ab9ffdd 6993 i.types[0] = regxmm;
c0f3af97
L
6994 i.tm.operand_types[0] = regxmm;
6995
6996 i.operands += 2;
6997 i.reg_operands += 2;
6998 i.tm.operands += 2;
6999
91d6fa6a 7000 dupl++;
c0f3af97 7001 dest++;
91d6fa6a
NC
7002 i.op[dupl] = i.op[dest];
7003 i.types[dupl] = i.types[dest];
7004 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
8dc0818e 7005 i.flags[dupl] = i.flags[dest];
e2ec9d29 7006 }
c0f3af97
L
7007 else
7008 {
7009duplicate:
7010 i.operands++;
7011 i.reg_operands++;
7012 i.tm.operands++;
7013
91d6fa6a
NC
7014 i.op[dupl] = i.op[dest];
7015 i.types[dupl] = i.types[dest];
7016 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
8dc0818e 7017 i.flags[dupl] = i.flags[dest];
c0f3af97
L
7018 }
7019
7020 if (i.tm.opcode_modifier.immext)
7021 process_immext ();
7022 }
75e5731b 7023 else if (i.tm.operand_types[0].bitfield.instance == Accum
1b54b8d7 7024 && i.tm.operand_types[0].bitfield.xmmword)
c0f3af97
L
7025 {
7026 unsigned int j;
7027
9fcfb3d7
L
7028 for (j = 1; j < i.operands; j++)
7029 {
7030 i.op[j - 1] = i.op[j];
7031 i.types[j - 1] = i.types[j];
7032
7033 /* We need to adjust fields in i.tm since they are used by
7034 build_modrm_byte. */
7035 i.tm.operand_types [j - 1] = i.tm.operand_types [j];
8dc0818e
JB
7036
7037 i.flags[j - 1] = i.flags[j];
9fcfb3d7
L
7038 }
7039
e2ec9d29
L
7040 i.operands--;
7041 i.reg_operands--;
e2ec9d29
L
7042 i.tm.operands--;
7043 }
920d2ddc
IT
7044 else if (i.tm.opcode_modifier.implicitquadgroup)
7045 {
a477a8c4
JB
7046 unsigned int regnum, first_reg_in_group, last_reg_in_group;
7047
920d2ddc 7048 /* The second operand must be {x,y,z}mmN, where N is a multiple of 4. */
3528c362 7049 gas_assert (i.operands >= 2 && i.types[1].bitfield.class == RegSIMD);
a477a8c4
JB
7050 regnum = register_number (i.op[1].regs);
7051 first_reg_in_group = regnum & ~3;
7052 last_reg_in_group = first_reg_in_group + 3;
7053 if (regnum != first_reg_in_group)
7054 as_warn (_("source register `%s%s' implicitly denotes"
7055 " `%s%.3s%u' to `%s%.3s%u' source group in `%s'"),
7056 register_prefix, i.op[1].regs->reg_name,
7057 register_prefix, i.op[1].regs->reg_name, first_reg_in_group,
7058 register_prefix, i.op[1].regs->reg_name, last_reg_in_group,
7059 i.tm.name);
7060 }
e2ec9d29
L
7061 else if (i.tm.opcode_modifier.regkludge)
7062 {
7063 /* The imul $imm, %reg instruction is converted into
7064 imul $imm, %reg, %reg, and the clr %reg instruction
7065 is converted into xor %reg, %reg. */
7066
7067 unsigned int first_reg_op;
7068
7069 if (operand_type_check (i.types[0], reg))
7070 first_reg_op = 0;
7071 else
7072 first_reg_op = 1;
7073 /* Pretend we saw the extra register operand. */
9c2799c2 7074 gas_assert (i.reg_operands == 1
7ab9ffdd 7075 && i.op[first_reg_op + 1].regs == 0);
e2ec9d29
L
7076 i.op[first_reg_op + 1].regs = i.op[first_reg_op].regs;
7077 i.types[first_reg_op + 1] = i.types[first_reg_op];
7078 i.operands++;
7079 i.reg_operands++;
29b0f896
AM
7080 }
7081
85b80b0f 7082 if (i.tm.opcode_modifier.modrm)
29b0f896
AM
7083 {
7084 /* The opcode is completed (modulo i.tm.extension_opcode which
52271982
AM
7085 must be put into the modrm byte). Now, we make the modrm and
7086 index base bytes based on all the info we've collected. */
29b0f896
AM
7087
7088 default_seg = build_modrm_byte ();
7089 }
00cee14f 7090 else if (i.types[0].bitfield.class == SReg)
85b80b0f
JB
7091 {
7092 if (flag_code != CODE_64BIT
7093 ? i.tm.base_opcode == POP_SEG_SHORT
7094 && i.op[0].regs->reg_num == 1
7095 : (i.tm.base_opcode | 1) == POP_SEG386_SHORT
7096 && i.op[0].regs->reg_num < 4)
7097 {
7098 as_bad (_("you can't `%s %s%s'"),
7099 i.tm.name, register_prefix, i.op[0].regs->reg_name);
7100 return 0;
7101 }
7102 if ( i.op[0].regs->reg_num > 3 && i.tm.opcode_length == 1 )
7103 {
7104 i.tm.base_opcode ^= POP_SEG_SHORT ^ POP_SEG386_SHORT;
7105 i.tm.opcode_length = 2;
7106 }
7107 i.tm.base_opcode |= (i.op[0].regs->reg_num << 3);
7108 }
8a2ed489 7109 else if ((i.tm.base_opcode & ~0x3) == MOV_AX_DISP32)
29b0f896
AM
7110 {
7111 default_seg = &ds;
7112 }
40fb9820 7113 else if (i.tm.opcode_modifier.isstring)
29b0f896
AM
7114 {
7115 /* For the string instructions that allow a segment override
7116 on one of their operands, the default segment is ds. */
7117 default_seg = &ds;
7118 }
50128d0c 7119 else if (i.short_form)
85b80b0f
JB
7120 {
7121 /* The register or float register operand is in operand
7122 0 or 1. */
bab6aec1 7123 unsigned int op = i.tm.operand_types[0].bitfield.class != Reg;
85b80b0f
JB
7124
7125 /* Register goes in low 3 bits of opcode. */
7126 i.tm.base_opcode |= i.op[op].regs->reg_num;
7127 if ((i.op[op].regs->reg_flags & RegRex) != 0)
7128 i.rex |= REX_B;
7129 if (!quiet_warnings && i.tm.opcode_modifier.ugh)
7130 {
7131 /* Warn about some common errors, but press on regardless.
7132 The first case can be generated by gcc (<= 2.8.1). */
7133 if (i.operands == 2)
7134 {
7135 /* Reversed arguments on faddp, fsubp, etc. */
7136 as_warn (_("translating to `%s %s%s,%s%s'"), i.tm.name,
7137 register_prefix, i.op[!intel_syntax].regs->reg_name,
7138 register_prefix, i.op[intel_syntax].regs->reg_name);
7139 }
7140 else
7141 {
7142 /* Extraneous `l' suffix on fp insn. */
7143 as_warn (_("translating to `%s %s%s'"), i.tm.name,
7144 register_prefix, i.op[0].regs->reg_name);
7145 }
7146 }
7147 }
29b0f896 7148
75178d9d
L
7149 if (i.tm.base_opcode == 0x8d /* lea */
7150 && i.seg[0]
7151 && !quiet_warnings)
30123838 7152 as_warn (_("segment override on `%s' is ineffectual"), i.tm.name);
52271982
AM
7153
7154 /* If a segment was explicitly specified, and the specified segment
7155 is not the default, use an opcode prefix to select it. If we
7156 never figured out what the default segment is, then default_seg
7157 will be zero at this point, and the specified segment prefix will
7158 always be used. */
29b0f896
AM
7159 if ((i.seg[0]) && (i.seg[0] != default_seg))
7160 {
7161 if (!add_prefix (i.seg[0]->seg_prefix))
7162 return 0;
7163 }
7164 return 1;
7165}
7166
7167static const seg_entry *
e3bb37b5 7168build_modrm_byte (void)
29b0f896
AM
7169{
7170 const seg_entry *default_seg = 0;
c0f3af97 7171 unsigned int source, dest;
8cd7925b 7172 int vex_3_sources;
c0f3af97 7173
8cd7925b 7174 vex_3_sources = i.tm.opcode_modifier.vexsources == VEX3SOURCES;
c0f3af97
L
7175 if (vex_3_sources)
7176 {
91d6fa6a 7177 unsigned int nds, reg_slot;
4c2c6516 7178 expressionS *exp;
c0f3af97 7179
6b8d3588 7180 dest = i.operands - 1;
c0f3af97 7181 nds = dest - 1;
922d8de8 7182
a683cc34 7183 /* There are 2 kinds of instructions:
bed3d976 7184 1. 5 operands: 4 register operands or 3 register operands
9d3bf266 7185 plus 1 memory operand plus one Imm4 operand, VexXDS, and
bed3d976 7186 VexW0 or VexW1. The destination must be either XMM, YMM or
43234a1e 7187 ZMM register.
bed3d976 7188 2. 4 operands: 4 register operands or 3 register operands
2f1bada2 7189 plus 1 memory operand, with VexXDS. */
922d8de8 7190 gas_assert ((i.reg_operands == 4
bed3d976
JB
7191 || (i.reg_operands == 3 && i.mem_operands == 1))
7192 && i.tm.opcode_modifier.vexvvvv == VEXXDS
dcd7e323 7193 && i.tm.opcode_modifier.vexw
3528c362 7194 && i.tm.operand_types[dest].bitfield.class == RegSIMD);
a683cc34 7195
48db9223
JB
7196 /* If VexW1 is set, the first non-immediate operand is the source and
7197 the second non-immediate one is encoded in the immediate operand. */
7198 if (i.tm.opcode_modifier.vexw == VEXW1)
7199 {
7200 source = i.imm_operands;
7201 reg_slot = i.imm_operands + 1;
7202 }
7203 else
7204 {
7205 source = i.imm_operands + 1;
7206 reg_slot = i.imm_operands;
7207 }
7208
a683cc34 7209 if (i.imm_operands == 0)
bed3d976
JB
7210 {
7211 /* When there is no immediate operand, generate an 8bit
7212 immediate operand to encode the first operand. */
7213 exp = &im_expressions[i.imm_operands++];
7214 i.op[i.operands].imms = exp;
7215 i.types[i.operands] = imm8;
7216 i.operands++;
7217
3528c362 7218 gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD);
bed3d976
JB
7219 exp->X_op = O_constant;
7220 exp->X_add_number = register_number (i.op[reg_slot].regs) << 4;
43234a1e
L
7221 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
7222 }
922d8de8 7223 else
bed3d976 7224 {
9d3bf266
JB
7225 gas_assert (i.imm_operands == 1);
7226 gas_assert (fits_in_imm4 (i.op[0].imms->X_add_number));
7227 gas_assert (!i.tm.opcode_modifier.immext);
a683cc34 7228
9d3bf266
JB
7229 /* Turn on Imm8 again so that output_imm will generate it. */
7230 i.types[0].bitfield.imm8 = 1;
bed3d976 7231
3528c362 7232 gas_assert (i.tm.operand_types[reg_slot].bitfield.class == RegSIMD);
9d3bf266 7233 i.op[0].imms->X_add_number
bed3d976 7234 |= register_number (i.op[reg_slot].regs) << 4;
43234a1e 7235 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
bed3d976 7236 }
a683cc34 7237
3528c362 7238 gas_assert (i.tm.operand_types[nds].bitfield.class == RegSIMD);
dae39acc 7239 i.vex.register_specifier = i.op[nds].regs;
c0f3af97
L
7240 }
7241 else
7242 source = dest = 0;
29b0f896
AM
7243
7244 /* i.reg_operands MUST be the number of real register operands;
c0f3af97
L
7245 implicit registers do not count. If there are 3 register
7246 operands, it must be a instruction with VexNDS. For a
7247 instruction with VexNDD, the destination register is encoded
7248 in VEX prefix. If there are 4 register operands, it must be
7249 a instruction with VEX prefix and 3 sources. */
7ab9ffdd
L
7250 if (i.mem_operands == 0
7251 && ((i.reg_operands == 2
2426c15f 7252 && i.tm.opcode_modifier.vexvvvv <= VEXXDS)
7ab9ffdd 7253 || (i.reg_operands == 3
2426c15f 7254 && i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd 7255 || (i.reg_operands == 4 && vex_3_sources)))
29b0f896 7256 {
cab737b9
L
7257 switch (i.operands)
7258 {
7259 case 2:
7260 source = 0;
7261 break;
7262 case 3:
c81128dc
L
7263 /* When there are 3 operands, one of them may be immediate,
7264 which may be the first or the last operand. Otherwise,
c0f3af97
L
7265 the first operand must be shift count register (cl) or it
7266 is an instruction with VexNDS. */
9c2799c2 7267 gas_assert (i.imm_operands == 1
7ab9ffdd 7268 || (i.imm_operands == 0
2426c15f 7269 && (i.tm.opcode_modifier.vexvvvv == VEXXDS
75e5731b
JB
7270 || (i.types[0].bitfield.instance == RegC
7271 && i.types[0].bitfield.byte))));
40fb9820 7272 if (operand_type_check (i.types[0], imm)
75e5731b
JB
7273 || (i.types[0].bitfield.instance == RegC
7274 && i.types[0].bitfield.byte))
40fb9820
L
7275 source = 1;
7276 else
7277 source = 0;
cab737b9
L
7278 break;
7279 case 4:
368d64cc
L
7280 /* When there are 4 operands, the first two must be 8bit
7281 immediate operands. The source operand will be the 3rd
c0f3af97
L
7282 one.
7283
7284 For instructions with VexNDS, if the first operand
7285 an imm8, the source operand is the 2nd one. If the last
7286 operand is imm8, the source operand is the first one. */
9c2799c2 7287 gas_assert ((i.imm_operands == 2
7ab9ffdd
L
7288 && i.types[0].bitfield.imm8
7289 && i.types[1].bitfield.imm8)
2426c15f 7290 || (i.tm.opcode_modifier.vexvvvv == VEXXDS
7ab9ffdd
L
7291 && i.imm_operands == 1
7292 && (i.types[0].bitfield.imm8
43234a1e
L
7293 || i.types[i.operands - 1].bitfield.imm8
7294 || i.rounding)));
9f2670f2
L
7295 if (i.imm_operands == 2)
7296 source = 2;
7297 else
c0f3af97
L
7298 {
7299 if (i.types[0].bitfield.imm8)
7300 source = 1;
7301 else
7302 source = 0;
7303 }
c0f3af97
L
7304 break;
7305 case 5:
e771e7c9 7306 if (is_evex_encoding (&i.tm))
43234a1e
L
7307 {
7308 /* For EVEX instructions, when there are 5 operands, the
7309 first one must be immediate operand. If the second one
7310 is immediate operand, the source operand is the 3th
7311 one. If the last one is immediate operand, the source
7312 operand is the 2nd one. */
7313 gas_assert (i.imm_operands == 2
7314 && i.tm.opcode_modifier.sae
7315 && operand_type_check (i.types[0], imm));
7316 if (operand_type_check (i.types[1], imm))
7317 source = 2;
7318 else if (operand_type_check (i.types[4], imm))
7319 source = 1;
7320 else
7321 abort ();
7322 }
cab737b9
L
7323 break;
7324 default:
7325 abort ();
7326 }
7327
c0f3af97
L
7328 if (!vex_3_sources)
7329 {
7330 dest = source + 1;
7331
43234a1e
L
7332 /* RC/SAE operand could be between DEST and SRC. That happens
7333 when one operand is GPR and the other one is XMM/YMM/ZMM
7334 register. */
7335 if (i.rounding && i.rounding->operand == (int) dest)
7336 dest++;
7337
2426c15f 7338 if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
c0f3af97 7339 {
43234a1e 7340 /* For instructions with VexNDS, the register-only source
c5d0745b 7341 operand must be a 32/64bit integer, XMM, YMM, ZMM, or mask
dfd69174 7342 register. It is encoded in VEX prefix. */
f12dc422
L
7343
7344 i386_operand_type op;
7345 unsigned int vvvv;
7346
7347 /* Check register-only source operand when two source
7348 operands are swapped. */
7349 if (!i.tm.operand_types[source].bitfield.baseindex
7350 && i.tm.operand_types[dest].bitfield.baseindex)
7351 {
7352 vvvv = source;
7353 source = dest;
7354 }
7355 else
7356 vvvv = dest;
7357
7358 op = i.tm.operand_types[vvvv];
c0f3af97 7359 if ((dest + 1) >= i.operands
bab6aec1 7360 || ((op.bitfield.class != Reg
dc821c5f 7361 || (!op.bitfield.dword && !op.bitfield.qword))
3528c362 7362 && op.bitfield.class != RegSIMD
43234a1e 7363 && !operand_type_equal (&op, &regmask)))
c0f3af97 7364 abort ();
f12dc422 7365 i.vex.register_specifier = i.op[vvvv].regs;
c0f3af97
L
7366 dest++;
7367 }
7368 }
29b0f896
AM
7369
7370 i.rm.mode = 3;
dfd69174
JB
7371 /* One of the register operands will be encoded in the i.rm.reg
7372 field, the other in the combined i.rm.mode and i.rm.regmem
29b0f896
AM
7373 fields. If no form of this instruction supports a memory
7374 destination operand, then we assume the source operand may
7375 sometimes be a memory operand and so we need to store the
7376 destination in the i.rm.reg field. */
dfd69174 7377 if (!i.tm.opcode_modifier.regmem
40fb9820 7378 && operand_type_check (i.tm.operand_types[dest], anymem) == 0)
29b0f896
AM
7379 {
7380 i.rm.reg = i.op[dest].regs->reg_num;
7381 i.rm.regmem = i.op[source].regs->reg_num;
3528c362
JB
7382 if (i.op[dest].regs->reg_type.bitfield.class == RegMMX
7383 || i.op[source].regs->reg_type.bitfield.class == RegMMX)
b4a3a7b4 7384 i.has_regmmx = TRUE;
3528c362
JB
7385 else if (i.op[dest].regs->reg_type.bitfield.class == RegSIMD
7386 || i.op[source].regs->reg_type.bitfield.class == RegSIMD)
b4a3a7b4
L
7387 {
7388 if (i.types[dest].bitfield.zmmword
7389 || i.types[source].bitfield.zmmword)
7390 i.has_regzmm = TRUE;
7391 else if (i.types[dest].bitfield.ymmword
7392 || i.types[source].bitfield.ymmword)
7393 i.has_regymm = TRUE;
7394 else
7395 i.has_regxmm = TRUE;
7396 }
29b0f896 7397 if ((i.op[dest].regs->reg_flags & RegRex) != 0)
161a04f6 7398 i.rex |= REX_R;
43234a1e
L
7399 if ((i.op[dest].regs->reg_flags & RegVRex) != 0)
7400 i.vrex |= REX_R;
29b0f896 7401 if ((i.op[source].regs->reg_flags & RegRex) != 0)
161a04f6 7402 i.rex |= REX_B;
43234a1e
L
7403 if ((i.op[source].regs->reg_flags & RegVRex) != 0)
7404 i.vrex |= REX_B;
29b0f896
AM
7405 }
7406 else
7407 {
7408 i.rm.reg = i.op[source].regs->reg_num;
7409 i.rm.regmem = i.op[dest].regs->reg_num;
7410 if ((i.op[dest].regs->reg_flags & RegRex) != 0)
161a04f6 7411 i.rex |= REX_B;
43234a1e
L
7412 if ((i.op[dest].regs->reg_flags & RegVRex) != 0)
7413 i.vrex |= REX_B;
29b0f896 7414 if ((i.op[source].regs->reg_flags & RegRex) != 0)
161a04f6 7415 i.rex |= REX_R;
43234a1e
L
7416 if ((i.op[source].regs->reg_flags & RegVRex) != 0)
7417 i.vrex |= REX_R;
29b0f896 7418 }
e0c7f900 7419 if (flag_code != CODE_64BIT && (i.rex & REX_R))
c4a530c5 7420 {
4a5c67ed 7421 if (i.types[!i.tm.opcode_modifier.regmem].bitfield.class != RegCR)
c4a530c5 7422 abort ();
e0c7f900 7423 i.rex &= ~REX_R;
c4a530c5
JB
7424 add_prefix (LOCK_PREFIX_OPCODE);
7425 }
29b0f896
AM
7426 }
7427 else
7428 { /* If it's not 2 reg operands... */
c0f3af97
L
7429 unsigned int mem;
7430
29b0f896
AM
7431 if (i.mem_operands)
7432 {
7433 unsigned int fake_zero_displacement = 0;
99018f42 7434 unsigned int op;
4eed87de 7435
7ab9ffdd 7436 for (op = 0; op < i.operands; op++)
8dc0818e 7437 if (i.flags[op] & Operand_Mem)
7ab9ffdd 7438 break;
7ab9ffdd 7439 gas_assert (op < i.operands);
29b0f896 7440
6c30d220
L
7441 if (i.tm.opcode_modifier.vecsib)
7442 {
e968fc9b 7443 if (i.index_reg->reg_num == RegIZ)
6c30d220
L
7444 abort ();
7445
7446 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7447 if (!i.base_reg)
7448 {
7449 i.sib.base = NO_BASE_REGISTER;
7450 i.sib.scale = i.log2_scale_factor;
7451 i.types[op].bitfield.disp8 = 0;
7452 i.types[op].bitfield.disp16 = 0;
7453 i.types[op].bitfield.disp64 = 0;
43083a50 7454 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
6c30d220
L
7455 {
7456 /* Must be 32 bit */
7457 i.types[op].bitfield.disp32 = 1;
7458 i.types[op].bitfield.disp32s = 0;
7459 }
7460 else
7461 {
7462 i.types[op].bitfield.disp32 = 0;
7463 i.types[op].bitfield.disp32s = 1;
7464 }
7465 }
7466 i.sib.index = i.index_reg->reg_num;
7467 if ((i.index_reg->reg_flags & RegRex) != 0)
7468 i.rex |= REX_X;
43234a1e
L
7469 if ((i.index_reg->reg_flags & RegVRex) != 0)
7470 i.vrex |= REX_X;
6c30d220
L
7471 }
7472
29b0f896
AM
7473 default_seg = &ds;
7474
7475 if (i.base_reg == 0)
7476 {
7477 i.rm.mode = 0;
7478 if (!i.disp_operands)
9bb129e8 7479 fake_zero_displacement = 1;
29b0f896
AM
7480 if (i.index_reg == 0)
7481 {
73053c1f
JB
7482 i386_operand_type newdisp;
7483
6c30d220 7484 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896 7485 /* Operand is just <disp> */
20f0a1fc 7486 if (flag_code == CODE_64BIT)
29b0f896
AM
7487 {
7488 /* 64bit mode overwrites the 32bit absolute
7489 addressing by RIP relative addressing and
7490 absolute addressing is encoded by one of the
7491 redundant SIB forms. */
7492 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7493 i.sib.base = NO_BASE_REGISTER;
7494 i.sib.index = NO_INDEX_REGISTER;
73053c1f 7495 newdisp = (!i.prefix[ADDR_PREFIX] ? disp32s : disp32);
20f0a1fc 7496 }
fc225355
L
7497 else if ((flag_code == CODE_16BIT)
7498 ^ (i.prefix[ADDR_PREFIX] != 0))
20f0a1fc
NC
7499 {
7500 i.rm.regmem = NO_BASE_REGISTER_16;
73053c1f 7501 newdisp = disp16;
20f0a1fc
NC
7502 }
7503 else
7504 {
7505 i.rm.regmem = NO_BASE_REGISTER;
73053c1f 7506 newdisp = disp32;
29b0f896 7507 }
73053c1f
JB
7508 i.types[op] = operand_type_and_not (i.types[op], anydisp);
7509 i.types[op] = operand_type_or (i.types[op], newdisp);
29b0f896 7510 }
6c30d220 7511 else if (!i.tm.opcode_modifier.vecsib)
29b0f896 7512 {
6c30d220 7513 /* !i.base_reg && i.index_reg */
e968fc9b 7514 if (i.index_reg->reg_num == RegIZ)
db51cc60
L
7515 i.sib.index = NO_INDEX_REGISTER;
7516 else
7517 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
7518 i.sib.base = NO_BASE_REGISTER;
7519 i.sib.scale = i.log2_scale_factor;
7520 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
40fb9820
L
7521 i.types[op].bitfield.disp8 = 0;
7522 i.types[op].bitfield.disp16 = 0;
7523 i.types[op].bitfield.disp64 = 0;
43083a50 7524 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
40fb9820
L
7525 {
7526 /* Must be 32 bit */
7527 i.types[op].bitfield.disp32 = 1;
7528 i.types[op].bitfield.disp32s = 0;
7529 }
29b0f896 7530 else
40fb9820
L
7531 {
7532 i.types[op].bitfield.disp32 = 0;
7533 i.types[op].bitfield.disp32s = 1;
7534 }
29b0f896 7535 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 7536 i.rex |= REX_X;
29b0f896
AM
7537 }
7538 }
7539 /* RIP addressing for 64bit mode. */
e968fc9b 7540 else if (i.base_reg->reg_num == RegIP)
29b0f896 7541 {
6c30d220 7542 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896 7543 i.rm.regmem = NO_BASE_REGISTER;
40fb9820
L
7544 i.types[op].bitfield.disp8 = 0;
7545 i.types[op].bitfield.disp16 = 0;
7546 i.types[op].bitfield.disp32 = 0;
7547 i.types[op].bitfield.disp32s = 1;
7548 i.types[op].bitfield.disp64 = 0;
71903a11 7549 i.flags[op] |= Operand_PCrel;
20f0a1fc
NC
7550 if (! i.disp_operands)
7551 fake_zero_displacement = 1;
29b0f896 7552 }
dc821c5f 7553 else if (i.base_reg->reg_type.bitfield.word)
29b0f896 7554 {
6c30d220 7555 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896
AM
7556 switch (i.base_reg->reg_num)
7557 {
7558 case 3: /* (%bx) */
7559 if (i.index_reg == 0)
7560 i.rm.regmem = 7;
7561 else /* (%bx,%si) -> 0, or (%bx,%di) -> 1 */
7562 i.rm.regmem = i.index_reg->reg_num - 6;
7563 break;
7564 case 5: /* (%bp) */
7565 default_seg = &ss;
7566 if (i.index_reg == 0)
7567 {
7568 i.rm.regmem = 6;
40fb9820 7569 if (operand_type_check (i.types[op], disp) == 0)
29b0f896
AM
7570 {
7571 /* fake (%bp) into 0(%bp) */
b5014f7a 7572 i.types[op].bitfield.disp8 = 1;
252b5132 7573 fake_zero_displacement = 1;
29b0f896
AM
7574 }
7575 }
7576 else /* (%bp,%si) -> 2, or (%bp,%di) -> 3 */
7577 i.rm.regmem = i.index_reg->reg_num - 6 + 2;
7578 break;
7579 default: /* (%si) -> 4 or (%di) -> 5 */
7580 i.rm.regmem = i.base_reg->reg_num - 6 + 4;
7581 }
7582 i.rm.mode = mode_from_disp_size (i.types[op]);
7583 }
7584 else /* i.base_reg and 32/64 bit mode */
7585 {
7586 if (flag_code == CODE_64BIT
40fb9820
L
7587 && operand_type_check (i.types[op], disp))
7588 {
73053c1f
JB
7589 i.types[op].bitfield.disp16 = 0;
7590 i.types[op].bitfield.disp64 = 0;
40fb9820 7591 if (i.prefix[ADDR_PREFIX] == 0)
73053c1f
JB
7592 {
7593 i.types[op].bitfield.disp32 = 0;
7594 i.types[op].bitfield.disp32s = 1;
7595 }
40fb9820 7596 else
73053c1f
JB
7597 {
7598 i.types[op].bitfield.disp32 = 1;
7599 i.types[op].bitfield.disp32s = 0;
7600 }
40fb9820 7601 }
20f0a1fc 7602
6c30d220
L
7603 if (!i.tm.opcode_modifier.vecsib)
7604 i.rm.regmem = i.base_reg->reg_num;
29b0f896 7605 if ((i.base_reg->reg_flags & RegRex) != 0)
161a04f6 7606 i.rex |= REX_B;
29b0f896
AM
7607 i.sib.base = i.base_reg->reg_num;
7608 /* x86-64 ignores REX prefix bit here to avoid decoder
7609 complications. */
848930b2
JB
7610 if (!(i.base_reg->reg_flags & RegRex)
7611 && (i.base_reg->reg_num == EBP_REG_NUM
7612 || i.base_reg->reg_num == ESP_REG_NUM))
29b0f896 7613 default_seg = &ss;
848930b2 7614 if (i.base_reg->reg_num == 5 && i.disp_operands == 0)
29b0f896 7615 {
848930b2 7616 fake_zero_displacement = 1;
b5014f7a 7617 i.types[op].bitfield.disp8 = 1;
29b0f896
AM
7618 }
7619 i.sib.scale = i.log2_scale_factor;
7620 if (i.index_reg == 0)
7621 {
6c30d220 7622 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896
AM
7623 /* <disp>(%esp) becomes two byte modrm with no index
7624 register. We've already stored the code for esp
7625 in i.rm.regmem ie. ESCAPE_TO_TWO_BYTE_ADDRESSING.
7626 Any base register besides %esp will not use the
7627 extra modrm byte. */
7628 i.sib.index = NO_INDEX_REGISTER;
29b0f896 7629 }
6c30d220 7630 else if (!i.tm.opcode_modifier.vecsib)
29b0f896 7631 {
e968fc9b 7632 if (i.index_reg->reg_num == RegIZ)
db51cc60
L
7633 i.sib.index = NO_INDEX_REGISTER;
7634 else
7635 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
7636 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7637 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 7638 i.rex |= REX_X;
29b0f896 7639 }
67a4f2b7
AO
7640
7641 if (i.disp_operands
7642 && (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
7643 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL))
7644 i.rm.mode = 0;
7645 else
a501d77e
L
7646 {
7647 if (!fake_zero_displacement
7648 && !i.disp_operands
7649 && i.disp_encoding)
7650 {
7651 fake_zero_displacement = 1;
7652 if (i.disp_encoding == disp_encoding_8bit)
7653 i.types[op].bitfield.disp8 = 1;
7654 else
7655 i.types[op].bitfield.disp32 = 1;
7656 }
7657 i.rm.mode = mode_from_disp_size (i.types[op]);
7658 }
29b0f896 7659 }
252b5132 7660
29b0f896
AM
7661 if (fake_zero_displacement)
7662 {
7663 /* Fakes a zero displacement assuming that i.types[op]
7664 holds the correct displacement size. */
7665 expressionS *exp;
7666
9c2799c2 7667 gas_assert (i.op[op].disps == 0);
29b0f896
AM
7668 exp = &disp_expressions[i.disp_operands++];
7669 i.op[op].disps = exp;
7670 exp->X_op = O_constant;
7671 exp->X_add_number = 0;
7672 exp->X_add_symbol = (symbolS *) 0;
7673 exp->X_op_symbol = (symbolS *) 0;
7674 }
c0f3af97
L
7675
7676 mem = op;
29b0f896 7677 }
c0f3af97
L
7678 else
7679 mem = ~0;
252b5132 7680
8c43a48b 7681 if (i.tm.opcode_modifier.vexsources == XOP2SOURCES)
5dd85c99
SP
7682 {
7683 if (operand_type_check (i.types[0], imm))
7684 i.vex.register_specifier = NULL;
7685 else
7686 {
7687 /* VEX.vvvv encodes one of the sources when the first
7688 operand is not an immediate. */
1ef99a7b 7689 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
7690 i.vex.register_specifier = i.op[0].regs;
7691 else
7692 i.vex.register_specifier = i.op[1].regs;
7693 }
7694
7695 /* Destination is a XMM register encoded in the ModRM.reg
7696 and VEX.R bit. */
7697 i.rm.reg = i.op[2].regs->reg_num;
7698 if ((i.op[2].regs->reg_flags & RegRex) != 0)
7699 i.rex |= REX_R;
7700
7701 /* ModRM.rm and VEX.B encodes the other source. */
7702 if (!i.mem_operands)
7703 {
7704 i.rm.mode = 3;
7705
1ef99a7b 7706 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
7707 i.rm.regmem = i.op[1].regs->reg_num;
7708 else
7709 i.rm.regmem = i.op[0].regs->reg_num;
7710
7711 if ((i.op[1].regs->reg_flags & RegRex) != 0)
7712 i.rex |= REX_B;
7713 }
7714 }
2426c15f 7715 else if (i.tm.opcode_modifier.vexvvvv == VEXLWP)
f88c9eb0
SP
7716 {
7717 i.vex.register_specifier = i.op[2].regs;
7718 if (!i.mem_operands)
7719 {
7720 i.rm.mode = 3;
7721 i.rm.regmem = i.op[1].regs->reg_num;
7722 if ((i.op[1].regs->reg_flags & RegRex) != 0)
7723 i.rex |= REX_B;
7724 }
7725 }
29b0f896
AM
7726 /* Fill in i.rm.reg or i.rm.regmem field with register operand
7727 (if any) based on i.tm.extension_opcode. Again, we must be
7728 careful to make sure that segment/control/debug/test/MMX
7729 registers are coded into the i.rm.reg field. */
f88c9eb0 7730 else if (i.reg_operands)
29b0f896 7731 {
99018f42 7732 unsigned int op;
7ab9ffdd
L
7733 unsigned int vex_reg = ~0;
7734
7735 for (op = 0; op < i.operands; op++)
b4a3a7b4 7736 {
bab6aec1 7737 if (i.types[op].bitfield.class == Reg
f74a6307
JB
7738 || i.types[op].bitfield.class == RegBND
7739 || i.types[op].bitfield.class == RegMask
00cee14f 7740 || i.types[op].bitfield.class == SReg
4a5c67ed
JB
7741 || i.types[op].bitfield.class == RegCR
7742 || i.types[op].bitfield.class == RegDR
7743 || i.types[op].bitfield.class == RegTR)
b4a3a7b4 7744 break;
3528c362 7745 if (i.types[op].bitfield.class == RegSIMD)
b4a3a7b4
L
7746 {
7747 if (i.types[op].bitfield.zmmword)
7748 i.has_regzmm = TRUE;
7749 else if (i.types[op].bitfield.ymmword)
7750 i.has_regymm = TRUE;
7751 else
7752 i.has_regxmm = TRUE;
7753 break;
7754 }
3528c362 7755 if (i.types[op].bitfield.class == RegMMX)
b4a3a7b4
L
7756 {
7757 i.has_regmmx = TRUE;
7758 break;
7759 }
7760 }
c0209578 7761
7ab9ffdd
L
7762 if (vex_3_sources)
7763 op = dest;
2426c15f 7764 else if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd
L
7765 {
7766 /* For instructions with VexNDS, the register-only
7767 source operand is encoded in VEX prefix. */
7768 gas_assert (mem != (unsigned int) ~0);
c0f3af97 7769
7ab9ffdd 7770 if (op > mem)
c0f3af97 7771 {
7ab9ffdd
L
7772 vex_reg = op++;
7773 gas_assert (op < i.operands);
c0f3af97
L
7774 }
7775 else
c0f3af97 7776 {
f12dc422
L
7777 /* Check register-only source operand when two source
7778 operands are swapped. */
7779 if (!i.tm.operand_types[op].bitfield.baseindex
7780 && i.tm.operand_types[op + 1].bitfield.baseindex)
7781 {
7782 vex_reg = op;
7783 op += 2;
7784 gas_assert (mem == (vex_reg + 1)
7785 && op < i.operands);
7786 }
7787 else
7788 {
7789 vex_reg = op + 1;
7790 gas_assert (vex_reg < i.operands);
7791 }
c0f3af97 7792 }
7ab9ffdd 7793 }
2426c15f 7794 else if (i.tm.opcode_modifier.vexvvvv == VEXNDD)
7ab9ffdd 7795 {
f12dc422 7796 /* For instructions with VexNDD, the register destination
7ab9ffdd 7797 is encoded in VEX prefix. */
f12dc422
L
7798 if (i.mem_operands == 0)
7799 {
7800 /* There is no memory operand. */
7801 gas_assert ((op + 2) == i.operands);
7802 vex_reg = op + 1;
7803 }
7804 else
8d63c93e 7805 {
ed438a93
JB
7806 /* There are only 2 non-immediate operands. */
7807 gas_assert (op < i.imm_operands + 2
7808 && i.operands == i.imm_operands + 2);
7809 vex_reg = i.imm_operands + 1;
f12dc422 7810 }
7ab9ffdd
L
7811 }
7812 else
7813 gas_assert (op < i.operands);
99018f42 7814
7ab9ffdd
L
7815 if (vex_reg != (unsigned int) ~0)
7816 {
f12dc422 7817 i386_operand_type *type = &i.tm.operand_types[vex_reg];
7ab9ffdd 7818
bab6aec1 7819 if ((type->bitfield.class != Reg
dc821c5f 7820 || (!type->bitfield.dword && !type->bitfield.qword))
3528c362 7821 && type->bitfield.class != RegSIMD
43234a1e 7822 && !operand_type_equal (type, &regmask))
7ab9ffdd 7823 abort ();
f88c9eb0 7824
7ab9ffdd
L
7825 i.vex.register_specifier = i.op[vex_reg].regs;
7826 }
7827
1b9f0c97
L
7828 /* Don't set OP operand twice. */
7829 if (vex_reg != op)
7ab9ffdd 7830 {
1b9f0c97
L
7831 /* If there is an extension opcode to put here, the
7832 register number must be put into the regmem field. */
7833 if (i.tm.extension_opcode != None)
7834 {
7835 i.rm.regmem = i.op[op].regs->reg_num;
7836 if ((i.op[op].regs->reg_flags & RegRex) != 0)
7837 i.rex |= REX_B;
43234a1e
L
7838 if ((i.op[op].regs->reg_flags & RegVRex) != 0)
7839 i.vrex |= REX_B;
1b9f0c97
L
7840 }
7841 else
7842 {
7843 i.rm.reg = i.op[op].regs->reg_num;
7844 if ((i.op[op].regs->reg_flags & RegRex) != 0)
7845 i.rex |= REX_R;
43234a1e
L
7846 if ((i.op[op].regs->reg_flags & RegVRex) != 0)
7847 i.vrex |= REX_R;
1b9f0c97 7848 }
7ab9ffdd 7849 }
252b5132 7850
29b0f896
AM
7851 /* Now, if no memory operand has set i.rm.mode = 0, 1, 2 we
7852 must set it to 3 to indicate this is a register operand
7853 in the regmem field. */
7854 if (!i.mem_operands)
7855 i.rm.mode = 3;
7856 }
252b5132 7857
29b0f896 7858 /* Fill in i.rm.reg field with extension opcode (if any). */
c1e679ec 7859 if (i.tm.extension_opcode != None)
29b0f896
AM
7860 i.rm.reg = i.tm.extension_opcode;
7861 }
7862 return default_seg;
7863}
252b5132 7864
376cd056
JB
7865static unsigned int
7866flip_code16 (unsigned int code16)
7867{
7868 gas_assert (i.tm.operands == 1);
7869
7870 return !(i.prefix[REX_PREFIX] & REX_W)
7871 && (code16 ? i.tm.operand_types[0].bitfield.disp32
7872 || i.tm.operand_types[0].bitfield.disp32s
7873 : i.tm.operand_types[0].bitfield.disp16)
7874 ? CODE16 : 0;
7875}
7876
29b0f896 7877static void
e3bb37b5 7878output_branch (void)
29b0f896
AM
7879{
7880 char *p;
f8a5c266 7881 int size;
29b0f896
AM
7882 int code16;
7883 int prefix;
7884 relax_substateT subtype;
7885 symbolS *sym;
7886 offsetT off;
7887
f8a5c266 7888 code16 = flag_code == CODE_16BIT ? CODE16 : 0;
a501d77e 7889 size = i.disp_encoding == disp_encoding_32bit ? BIG : SMALL;
29b0f896
AM
7890
7891 prefix = 0;
7892 if (i.prefix[DATA_PREFIX] != 0)
252b5132 7893 {
29b0f896
AM
7894 prefix = 1;
7895 i.prefixes -= 1;
376cd056 7896 code16 ^= flip_code16(code16);
252b5132 7897 }
29b0f896
AM
7898 /* Pentium4 branch hints. */
7899 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
7900 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
2f66722d 7901 {
29b0f896
AM
7902 prefix++;
7903 i.prefixes--;
7904 }
7905 if (i.prefix[REX_PREFIX] != 0)
7906 {
7907 prefix++;
7908 i.prefixes--;
2f66722d
AM
7909 }
7910
7e8b059b
L
7911 /* BND prefixed jump. */
7912 if (i.prefix[BND_PREFIX] != 0)
7913 {
6cb0a70e
JB
7914 prefix++;
7915 i.prefixes--;
7e8b059b
L
7916 }
7917
f2810fe0
JB
7918 if (i.prefixes != 0)
7919 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
29b0f896
AM
7920
7921 /* It's always a symbol; End frag & setup for relax.
7922 Make sure there is enough room in this frag for the largest
7923 instruction we may generate in md_convert_frag. This is 2
7924 bytes for the opcode and room for the prefix and largest
7925 displacement. */
7926 frag_grow (prefix + 2 + 4);
7927 /* Prefix and 1 opcode byte go in fr_fix. */
7928 p = frag_more (prefix + 1);
7929 if (i.prefix[DATA_PREFIX] != 0)
7930 *p++ = DATA_PREFIX_OPCODE;
7931 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE
7932 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE)
7933 *p++ = i.prefix[SEG_PREFIX];
6cb0a70e
JB
7934 if (i.prefix[BND_PREFIX] != 0)
7935 *p++ = BND_PREFIX_OPCODE;
29b0f896
AM
7936 if (i.prefix[REX_PREFIX] != 0)
7937 *p++ = i.prefix[REX_PREFIX];
7938 *p = i.tm.base_opcode;
7939
7940 if ((unsigned char) *p == JUMP_PC_RELATIVE)
f8a5c266 7941 subtype = ENCODE_RELAX_STATE (UNCOND_JUMP, size);
40fb9820 7942 else if (cpu_arch_flags.bitfield.cpui386)
f8a5c266 7943 subtype = ENCODE_RELAX_STATE (COND_JUMP, size);
29b0f896 7944 else
f8a5c266 7945 subtype = ENCODE_RELAX_STATE (COND_JUMP86, size);
29b0f896 7946 subtype |= code16;
3e73aa7c 7947
29b0f896
AM
7948 sym = i.op[0].disps->X_add_symbol;
7949 off = i.op[0].disps->X_add_number;
3e73aa7c 7950
29b0f896
AM
7951 if (i.op[0].disps->X_op != O_constant
7952 && i.op[0].disps->X_op != O_symbol)
3e73aa7c 7953 {
29b0f896
AM
7954 /* Handle complex expressions. */
7955 sym = make_expr_symbol (i.op[0].disps);
7956 off = 0;
7957 }
3e73aa7c 7958
29b0f896
AM
7959 /* 1 possible extra opcode + 4 byte displacement go in var part.
7960 Pass reloc in fr_var. */
d258b828 7961 frag_var (rs_machine_dependent, 5, i.reloc[0], subtype, sym, off, p);
29b0f896 7962}
3e73aa7c 7963
bd7ab16b
L
7964#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
7965/* Return TRUE iff PLT32 relocation should be used for branching to
7966 symbol S. */
7967
7968static bfd_boolean
7969need_plt32_p (symbolS *s)
7970{
7971 /* PLT32 relocation is ELF only. */
7972 if (!IS_ELF)
7973 return FALSE;
7974
a5def729
RO
7975#ifdef TE_SOLARIS
7976 /* Don't emit PLT32 relocation on Solaris: neither native linker nor
7977 krtld support it. */
7978 return FALSE;
7979#endif
7980
bd7ab16b
L
7981 /* Since there is no need to prepare for PLT branch on x86-64, we
7982 can generate R_X86_64_PLT32, instead of R_X86_64_PC32, which can
7983 be used as a marker for 32-bit PC-relative branches. */
7984 if (!object_64bit)
7985 return FALSE;
7986
7987 /* Weak or undefined symbol need PLT32 relocation. */
7988 if (S_IS_WEAK (s) || !S_IS_DEFINED (s))
7989 return TRUE;
7990
7991 /* Non-global symbol doesn't need PLT32 relocation. */
7992 if (! S_IS_EXTERNAL (s))
7993 return FALSE;
7994
7995 /* Other global symbols need PLT32 relocation. NB: Symbol with
7996 non-default visibilities are treated as normal global symbol
7997 so that PLT32 relocation can be used as a marker for 32-bit
7998 PC-relative branches. It is useful for linker relaxation. */
7999 return TRUE;
8000}
8001#endif
8002
29b0f896 8003static void
e3bb37b5 8004output_jump (void)
29b0f896
AM
8005{
8006 char *p;
8007 int size;
3e02c1cc 8008 fixS *fixP;
bd7ab16b 8009 bfd_reloc_code_real_type jump_reloc = i.reloc[0];
29b0f896 8010
0cfa3eb3 8011 if (i.tm.opcode_modifier.jump == JUMP_BYTE)
29b0f896
AM
8012 {
8013 /* This is a loop or jecxz type instruction. */
8014 size = 1;
8015 if (i.prefix[ADDR_PREFIX] != 0)
8016 {
8017 FRAG_APPEND_1_CHAR (ADDR_PREFIX_OPCODE);
8018 i.prefixes -= 1;
8019 }
8020 /* Pentium4 branch hints. */
8021 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
8022 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
8023 {
8024 FRAG_APPEND_1_CHAR (i.prefix[SEG_PREFIX]);
8025 i.prefixes--;
3e73aa7c
JH
8026 }
8027 }
29b0f896
AM
8028 else
8029 {
8030 int code16;
3e73aa7c 8031
29b0f896
AM
8032 code16 = 0;
8033 if (flag_code == CODE_16BIT)
8034 code16 = CODE16;
3e73aa7c 8035
29b0f896
AM
8036 if (i.prefix[DATA_PREFIX] != 0)
8037 {
8038 FRAG_APPEND_1_CHAR (DATA_PREFIX_OPCODE);
8039 i.prefixes -= 1;
376cd056 8040 code16 ^= flip_code16(code16);
29b0f896 8041 }
252b5132 8042
29b0f896
AM
8043 size = 4;
8044 if (code16)
8045 size = 2;
8046 }
9fcc94b6 8047
6cb0a70e
JB
8048 /* BND prefixed jump. */
8049 if (i.prefix[BND_PREFIX] != 0)
29b0f896 8050 {
6cb0a70e 8051 FRAG_APPEND_1_CHAR (i.prefix[BND_PREFIX]);
29b0f896
AM
8052 i.prefixes -= 1;
8053 }
252b5132 8054
6cb0a70e 8055 if (i.prefix[REX_PREFIX] != 0)
7e8b059b 8056 {
6cb0a70e 8057 FRAG_APPEND_1_CHAR (i.prefix[REX_PREFIX]);
7e8b059b
L
8058 i.prefixes -= 1;
8059 }
8060
f2810fe0
JB
8061 if (i.prefixes != 0)
8062 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
e0890092 8063
42164a71
L
8064 p = frag_more (i.tm.opcode_length + size);
8065 switch (i.tm.opcode_length)
8066 {
8067 case 2:
8068 *p++ = i.tm.base_opcode >> 8;
1a0670f3 8069 /* Fall through. */
42164a71
L
8070 case 1:
8071 *p++ = i.tm.base_opcode;
8072 break;
8073 default:
8074 abort ();
8075 }
e0890092 8076
bd7ab16b
L
8077#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8078 if (size == 4
8079 && jump_reloc == NO_RELOC
8080 && need_plt32_p (i.op[0].disps->X_add_symbol))
8081 jump_reloc = BFD_RELOC_X86_64_PLT32;
8082#endif
8083
8084 jump_reloc = reloc (size, 1, 1, jump_reloc);
8085
3e02c1cc 8086 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal, size,
bd7ab16b 8087 i.op[0].disps, 1, jump_reloc);
3e02c1cc
AM
8088
8089 /* All jumps handled here are signed, but don't use a signed limit
8090 check for 32 and 16 bit jumps as we want to allow wrap around at
8091 4G and 64k respectively. */
8092 if (size == 1)
8093 fixP->fx_signed = 1;
29b0f896 8094}
e0890092 8095
29b0f896 8096static void
e3bb37b5 8097output_interseg_jump (void)
29b0f896
AM
8098{
8099 char *p;
8100 int size;
8101 int prefix;
8102 int code16;
252b5132 8103
29b0f896
AM
8104 code16 = 0;
8105 if (flag_code == CODE_16BIT)
8106 code16 = CODE16;
a217f122 8107
29b0f896
AM
8108 prefix = 0;
8109 if (i.prefix[DATA_PREFIX] != 0)
8110 {
8111 prefix = 1;
8112 i.prefixes -= 1;
8113 code16 ^= CODE16;
8114 }
6cb0a70e
JB
8115
8116 gas_assert (!i.prefix[REX_PREFIX]);
252b5132 8117
29b0f896
AM
8118 size = 4;
8119 if (code16)
8120 size = 2;
252b5132 8121
f2810fe0
JB
8122 if (i.prefixes != 0)
8123 as_warn (_("skipping prefixes on `%s'"), i.tm.name);
252b5132 8124
29b0f896
AM
8125 /* 1 opcode; 2 segment; offset */
8126 p = frag_more (prefix + 1 + 2 + size);
3e73aa7c 8127
29b0f896
AM
8128 if (i.prefix[DATA_PREFIX] != 0)
8129 *p++ = DATA_PREFIX_OPCODE;
252b5132 8130
29b0f896
AM
8131 if (i.prefix[REX_PREFIX] != 0)
8132 *p++ = i.prefix[REX_PREFIX];
252b5132 8133
29b0f896
AM
8134 *p++ = i.tm.base_opcode;
8135 if (i.op[1].imms->X_op == O_constant)
8136 {
8137 offsetT n = i.op[1].imms->X_add_number;
252b5132 8138
29b0f896
AM
8139 if (size == 2
8140 && !fits_in_unsigned_word (n)
8141 && !fits_in_signed_word (n))
8142 {
8143 as_bad (_("16-bit jump out of range"));
8144 return;
8145 }
8146 md_number_to_chars (p, n, size);
8147 }
8148 else
8149 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
d258b828 8150 i.op[1].imms, 0, reloc (size, 0, 0, i.reloc[1]));
29b0f896
AM
8151 if (i.op[0].imms->X_op != O_constant)
8152 as_bad (_("can't handle non absolute segment in `%s'"),
8153 i.tm.name);
8154 md_number_to_chars (p + size, (valueT) i.op[0].imms->X_add_number, 2);
8155}
a217f122 8156
b4a3a7b4
L
8157#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8158void
8159x86_cleanup (void)
8160{
8161 char *p;
8162 asection *seg = now_seg;
8163 subsegT subseg = now_subseg;
8164 asection *sec;
8165 unsigned int alignment, align_size_1;
8166 unsigned int isa_1_descsz, feature_2_descsz, descsz;
8167 unsigned int isa_1_descsz_raw, feature_2_descsz_raw;
8168 unsigned int padding;
8169
8170 if (!IS_ELF || !x86_used_note)
8171 return;
8172
b4a3a7b4
L
8173 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X86;
8174
8175 /* The .note.gnu.property section layout:
8176
8177 Field Length Contents
8178 ---- ---- ----
8179 n_namsz 4 4
8180 n_descsz 4 The note descriptor size
8181 n_type 4 NT_GNU_PROPERTY_TYPE_0
8182 n_name 4 "GNU"
8183 n_desc n_descsz The program property array
8184 .... .... ....
8185 */
8186
8187 /* Create the .note.gnu.property section. */
8188 sec = subseg_new (NOTE_GNU_PROPERTY_SECTION_NAME, 0);
fd361982 8189 bfd_set_section_flags (sec,
b4a3a7b4
L
8190 (SEC_ALLOC
8191 | SEC_LOAD
8192 | SEC_DATA
8193 | SEC_HAS_CONTENTS
8194 | SEC_READONLY));
8195
8196 if (get_elf_backend_data (stdoutput)->s->elfclass == ELFCLASS64)
8197 {
8198 align_size_1 = 7;
8199 alignment = 3;
8200 }
8201 else
8202 {
8203 align_size_1 = 3;
8204 alignment = 2;
8205 }
8206
fd361982 8207 bfd_set_section_alignment (sec, alignment);
b4a3a7b4
L
8208 elf_section_type (sec) = SHT_NOTE;
8209
8210 /* GNU_PROPERTY_X86_ISA_1_USED: 4-byte type + 4-byte data size
8211 + 4-byte data */
8212 isa_1_descsz_raw = 4 + 4 + 4;
8213 /* Align GNU_PROPERTY_X86_ISA_1_USED. */
8214 isa_1_descsz = (isa_1_descsz_raw + align_size_1) & ~align_size_1;
8215
8216 feature_2_descsz_raw = isa_1_descsz;
8217 /* GNU_PROPERTY_X86_FEATURE_2_USED: 4-byte type + 4-byte data size
8218 + 4-byte data */
8219 feature_2_descsz_raw += 4 + 4 + 4;
8220 /* Align GNU_PROPERTY_X86_FEATURE_2_USED. */
8221 feature_2_descsz = ((feature_2_descsz_raw + align_size_1)
8222 & ~align_size_1);
8223
8224 descsz = feature_2_descsz;
8225 /* Section size: n_namsz + n_descsz + n_type + n_name + n_descsz. */
8226 p = frag_more (4 + 4 + 4 + 4 + descsz);
8227
8228 /* Write n_namsz. */
8229 md_number_to_chars (p, (valueT) 4, 4);
8230
8231 /* Write n_descsz. */
8232 md_number_to_chars (p + 4, (valueT) descsz, 4);
8233
8234 /* Write n_type. */
8235 md_number_to_chars (p + 4 * 2, (valueT) NT_GNU_PROPERTY_TYPE_0, 4);
8236
8237 /* Write n_name. */
8238 memcpy (p + 4 * 3, "GNU", 4);
8239
8240 /* Write 4-byte type. */
8241 md_number_to_chars (p + 4 * 4,
8242 (valueT) GNU_PROPERTY_X86_ISA_1_USED, 4);
8243
8244 /* Write 4-byte data size. */
8245 md_number_to_chars (p + 4 * 5, (valueT) 4, 4);
8246
8247 /* Write 4-byte data. */
8248 md_number_to_chars (p + 4 * 6, (valueT) x86_isa_1_used, 4);
8249
8250 /* Zero out paddings. */
8251 padding = isa_1_descsz - isa_1_descsz_raw;
8252 if (padding)
8253 memset (p + 4 * 7, 0, padding);
8254
8255 /* Write 4-byte type. */
8256 md_number_to_chars (p + isa_1_descsz + 4 * 4,
8257 (valueT) GNU_PROPERTY_X86_FEATURE_2_USED, 4);
8258
8259 /* Write 4-byte data size. */
8260 md_number_to_chars (p + isa_1_descsz + 4 * 5, (valueT) 4, 4);
8261
8262 /* Write 4-byte data. */
8263 md_number_to_chars (p + isa_1_descsz + 4 * 6,
8264 (valueT) x86_feature_2_used, 4);
8265
8266 /* Zero out paddings. */
8267 padding = feature_2_descsz - feature_2_descsz_raw;
8268 if (padding)
8269 memset (p + isa_1_descsz + 4 * 7, 0, padding);
8270
8271 /* We probably can't restore the current segment, for there likely
8272 isn't one yet... */
8273 if (seg && subseg)
8274 subseg_set (seg, subseg);
8275}
8276#endif
8277
9c33702b
JB
8278static unsigned int
8279encoding_length (const fragS *start_frag, offsetT start_off,
8280 const char *frag_now_ptr)
8281{
8282 unsigned int len = 0;
8283
8284 if (start_frag != frag_now)
8285 {
8286 const fragS *fr = start_frag;
8287
8288 do {
8289 len += fr->fr_fix;
8290 fr = fr->fr_next;
8291 } while (fr && fr != frag_now);
8292 }
8293
8294 return len - start_off + (frag_now_ptr - frag_now->fr_literal);
8295}
8296
e379e5f3
L
8297/* Return 1 for test, and, cmp, add, sub, inc and dec which may
8298 be macro-fused with conditional jumps. */
8299
8300static int
8301maybe_fused_with_jcc_p (void)
8302{
8303 /* No RIP address. */
8304 if (i.base_reg && i.base_reg->reg_num == RegIP)
8305 return 0;
8306
8307 /* No VEX/EVEX encoding. */
8308 if (is_any_vex_encoding (&i.tm))
8309 return 0;
8310
8311 /* and, add, sub with destination register. */
8312 if ((i.tm.base_opcode >= 0x20 && i.tm.base_opcode <= 0x25)
8313 || i.tm.base_opcode <= 5
8314 || (i.tm.base_opcode >= 0x28 && i.tm.base_opcode <= 0x2d)
8315 || ((i.tm.base_opcode | 3) == 0x83
8316 && ((i.tm.extension_opcode | 1) == 0x5
8317 || i.tm.extension_opcode == 0x0)))
8318 return (i.types[1].bitfield.class == Reg
8319 || i.types[1].bitfield.instance == Accum);
8320
8321 /* test, cmp with any register. */
8322 if ((i.tm.base_opcode | 1) == 0x85
8323 || (i.tm.base_opcode | 1) == 0xa9
8324 || ((i.tm.base_opcode | 1) == 0xf7
8325 && i.tm.extension_opcode == 0)
8326 || (i.tm.base_opcode >= 0x38 && i.tm.base_opcode <= 0x3d)
8327 || ((i.tm.base_opcode | 3) == 0x83
8328 && (i.tm.extension_opcode == 0x7)))
8329 return (i.types[0].bitfield.class == Reg
8330 || i.types[0].bitfield.instance == Accum
8331 || i.types[1].bitfield.class == Reg
8332 || i.types[1].bitfield.instance == Accum);
8333
8334 /* inc, dec with any register. */
8335 if ((i.tm.cpu_flags.bitfield.cpuno64
8336 && (i.tm.base_opcode | 0xf) == 0x4f)
8337 || ((i.tm.base_opcode | 1) == 0xff
8338 && i.tm.extension_opcode <= 0x1))
8339 return (i.types[0].bitfield.class == Reg
8340 || i.types[0].bitfield.instance == Accum);
8341
8342 return 0;
8343}
8344
8345/* Return 1 if a FUSED_JCC_PADDING frag should be generated. */
8346
8347static int
8348add_fused_jcc_padding_frag_p (void)
8349{
8350 /* NB: Don't work with COND_JUMP86 without i386. */
8351 if (!align_branch_power
8352 || now_seg == absolute_section
8353 || !cpu_arch_flags.bitfield.cpui386
8354 || !(align_branch & align_branch_fused_bit))
8355 return 0;
8356
8357 if (maybe_fused_with_jcc_p ())
8358 {
8359 if (last_insn.kind == last_insn_other
8360 || last_insn.seg != now_seg)
8361 return 1;
8362 if (flag_debug)
8363 as_warn_where (last_insn.file, last_insn.line,
8364 _("`%s` skips -malign-branch-boundary on `%s`"),
8365 last_insn.name, i.tm.name);
8366 }
8367
8368 return 0;
8369}
8370
8371/* Return 1 if a BRANCH_PREFIX frag should be generated. */
8372
8373static int
8374add_branch_prefix_frag_p (void)
8375{
8376 /* NB: Don't work with COND_JUMP86 without i386. Don't add prefix
8377 to PadLock instructions since they include prefixes in opcode. */
8378 if (!align_branch_power
8379 || !align_branch_prefix_size
8380 || now_seg == absolute_section
8381 || i.tm.cpu_flags.bitfield.cpupadlock
8382 || !cpu_arch_flags.bitfield.cpui386)
8383 return 0;
8384
8385 /* Don't add prefix if it is a prefix or there is no operand in case
8386 that segment prefix is special. */
8387 if (!i.operands || i.tm.opcode_modifier.isprefix)
8388 return 0;
8389
8390 if (last_insn.kind == last_insn_other
8391 || last_insn.seg != now_seg)
8392 return 1;
8393
8394 if (flag_debug)
8395 as_warn_where (last_insn.file, last_insn.line,
8396 _("`%s` skips -malign-branch-boundary on `%s`"),
8397 last_insn.name, i.tm.name);
8398
8399 return 0;
8400}
8401
8402/* Return 1 if a BRANCH_PADDING frag should be generated. */
8403
8404static int
8405add_branch_padding_frag_p (enum align_branch_kind *branch_p)
8406{
8407 int add_padding;
8408
8409 /* NB: Don't work with COND_JUMP86 without i386. */
8410 if (!align_branch_power
8411 || now_seg == absolute_section
8412 || !cpu_arch_flags.bitfield.cpui386)
8413 return 0;
8414
8415 add_padding = 0;
8416
8417 /* Check for jcc and direct jmp. */
8418 if (i.tm.opcode_modifier.jump == JUMP)
8419 {
8420 if (i.tm.base_opcode == JUMP_PC_RELATIVE)
8421 {
8422 *branch_p = align_branch_jmp;
8423 add_padding = align_branch & align_branch_jmp_bit;
8424 }
8425 else
8426 {
8427 *branch_p = align_branch_jcc;
8428 if ((align_branch & align_branch_jcc_bit))
8429 add_padding = 1;
8430 }
8431 }
8432 else if (is_any_vex_encoding (&i.tm))
8433 return 0;
8434 else if ((i.tm.base_opcode | 1) == 0xc3)
8435 {
8436 /* Near ret. */
8437 *branch_p = align_branch_ret;
8438 if ((align_branch & align_branch_ret_bit))
8439 add_padding = 1;
8440 }
8441 else
8442 {
8443 /* Check for indirect jmp, direct and indirect calls. */
8444 if (i.tm.base_opcode == 0xe8)
8445 {
8446 /* Direct call. */
8447 *branch_p = align_branch_call;
8448 if ((align_branch & align_branch_call_bit))
8449 add_padding = 1;
8450 }
8451 else if (i.tm.base_opcode == 0xff
8452 && (i.tm.extension_opcode == 2
8453 || i.tm.extension_opcode == 4))
8454 {
8455 /* Indirect call and jmp. */
8456 *branch_p = align_branch_indirect;
8457 if ((align_branch & align_branch_indirect_bit))
8458 add_padding = 1;
8459 }
8460
8461 if (add_padding
8462 && i.disp_operands
8463 && tls_get_addr
8464 && (i.op[0].disps->X_op == O_symbol
8465 || (i.op[0].disps->X_op == O_subtract
8466 && i.op[0].disps->X_op_symbol == GOT_symbol)))
8467 {
8468 symbolS *s = i.op[0].disps->X_add_symbol;
8469 /* No padding to call to global or undefined tls_get_addr. */
8470 if ((S_IS_EXTERNAL (s) || !S_IS_DEFINED (s))
8471 && strcmp (S_GET_NAME (s), tls_get_addr) == 0)
8472 return 0;
8473 }
8474 }
8475
8476 if (add_padding
8477 && last_insn.kind != last_insn_other
8478 && last_insn.seg == now_seg)
8479 {
8480 if (flag_debug)
8481 as_warn_where (last_insn.file, last_insn.line,
8482 _("`%s` skips -malign-branch-boundary on `%s`"),
8483 last_insn.name, i.tm.name);
8484 return 0;
8485 }
8486
8487 return add_padding;
8488}
8489
29b0f896 8490static void
e3bb37b5 8491output_insn (void)
29b0f896 8492{
2bbd9c25
JJ
8493 fragS *insn_start_frag;
8494 offsetT insn_start_off;
e379e5f3
L
8495 fragS *fragP = NULL;
8496 enum align_branch_kind branch = align_branch_none;
2bbd9c25 8497
b4a3a7b4
L
8498#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8499 if (IS_ELF && x86_used_note)
8500 {
8501 if (i.tm.cpu_flags.bitfield.cpucmov)
8502 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_CMOV;
8503 if (i.tm.cpu_flags.bitfield.cpusse)
8504 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE;
8505 if (i.tm.cpu_flags.bitfield.cpusse2)
8506 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE2;
8507 if (i.tm.cpu_flags.bitfield.cpusse3)
8508 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE3;
8509 if (i.tm.cpu_flags.bitfield.cpussse3)
8510 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSSE3;
8511 if (i.tm.cpu_flags.bitfield.cpusse4_1)
8512 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE4_1;
8513 if (i.tm.cpu_flags.bitfield.cpusse4_2)
8514 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_SSE4_2;
8515 if (i.tm.cpu_flags.bitfield.cpuavx)
8516 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX;
8517 if (i.tm.cpu_flags.bitfield.cpuavx2)
8518 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX2;
8519 if (i.tm.cpu_flags.bitfield.cpufma)
8520 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_FMA;
8521 if (i.tm.cpu_flags.bitfield.cpuavx512f)
8522 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512F;
8523 if (i.tm.cpu_flags.bitfield.cpuavx512cd)
8524 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512CD;
8525 if (i.tm.cpu_flags.bitfield.cpuavx512er)
8526 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512ER;
8527 if (i.tm.cpu_flags.bitfield.cpuavx512pf)
8528 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512PF;
8529 if (i.tm.cpu_flags.bitfield.cpuavx512vl)
8530 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512VL;
8531 if (i.tm.cpu_flags.bitfield.cpuavx512dq)
8532 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512DQ;
8533 if (i.tm.cpu_flags.bitfield.cpuavx512bw)
8534 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512BW;
8535 if (i.tm.cpu_flags.bitfield.cpuavx512_4fmaps)
8536 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_4FMAPS;
8537 if (i.tm.cpu_flags.bitfield.cpuavx512_4vnniw)
8538 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_4VNNIW;
8539 if (i.tm.cpu_flags.bitfield.cpuavx512_bitalg)
8540 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_BITALG;
8541 if (i.tm.cpu_flags.bitfield.cpuavx512ifma)
8542 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_IFMA;
8543 if (i.tm.cpu_flags.bitfield.cpuavx512vbmi)
8544 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_VBMI;
8545 if (i.tm.cpu_flags.bitfield.cpuavx512_vbmi2)
8546 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_VBMI2;
8547 if (i.tm.cpu_flags.bitfield.cpuavx512_vnni)
8548 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_VNNI;
462cac58
L
8549 if (i.tm.cpu_flags.bitfield.cpuavx512_bf16)
8550 x86_isa_1_used |= GNU_PROPERTY_X86_ISA_1_AVX512_BF16;
b4a3a7b4
L
8551
8552 if (i.tm.cpu_flags.bitfield.cpu8087
8553 || i.tm.cpu_flags.bitfield.cpu287
8554 || i.tm.cpu_flags.bitfield.cpu387
8555 || i.tm.cpu_flags.bitfield.cpu687
8556 || i.tm.cpu_flags.bitfield.cpufisttp)
8557 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_X87;
319ff62c
JB
8558 if (i.has_regmmx
8559 || i.tm.base_opcode == 0xf77 /* emms */
8560 || i.tm.base_opcode == 0xf0e /* femms */)
b4a3a7b4
L
8561 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_MMX;
8562 if (i.has_regxmm)
8563 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XMM;
8564 if (i.has_regymm)
8565 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_YMM;
8566 if (i.has_regzmm)
8567 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_ZMM;
8568 if (i.tm.cpu_flags.bitfield.cpufxsr)
8569 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_FXSR;
8570 if (i.tm.cpu_flags.bitfield.cpuxsave)
8571 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVE;
8572 if (i.tm.cpu_flags.bitfield.cpuxsaveopt)
8573 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT;
8574 if (i.tm.cpu_flags.bitfield.cpuxsavec)
8575 x86_feature_2_used |= GNU_PROPERTY_X86_FEATURE_2_XSAVEC;
8576 }
8577#endif
8578
29b0f896
AM
8579 /* Tie dwarf2 debug info to the address at the start of the insn.
8580 We can't do this after the insn has been output as the current
8581 frag may have been closed off. eg. by frag_var. */
8582 dwarf2_emit_insn (0);
8583
2bbd9c25
JJ
8584 insn_start_frag = frag_now;
8585 insn_start_off = frag_now_fix ();
8586
e379e5f3
L
8587 if (add_branch_padding_frag_p (&branch))
8588 {
8589 char *p;
8590 /* Branch can be 8 bytes. Leave some room for prefixes. */
8591 unsigned int max_branch_padding_size = 14;
8592
8593 /* Align section to boundary. */
8594 record_alignment (now_seg, align_branch_power);
8595
8596 /* Make room for padding. */
8597 frag_grow (max_branch_padding_size);
8598
8599 /* Start of the padding. */
8600 p = frag_more (0);
8601
8602 fragP = frag_now;
8603
8604 frag_var (rs_machine_dependent, max_branch_padding_size, 0,
8605 ENCODE_RELAX_STATE (BRANCH_PADDING, 0),
8606 NULL, 0, p);
8607
8608 fragP->tc_frag_data.branch_type = branch;
8609 fragP->tc_frag_data.max_bytes = max_branch_padding_size;
8610 }
8611
29b0f896 8612 /* Output jumps. */
0cfa3eb3 8613 if (i.tm.opcode_modifier.jump == JUMP)
29b0f896 8614 output_branch ();
0cfa3eb3
JB
8615 else if (i.tm.opcode_modifier.jump == JUMP_BYTE
8616 || i.tm.opcode_modifier.jump == JUMP_DWORD)
29b0f896 8617 output_jump ();
0cfa3eb3 8618 else if (i.tm.opcode_modifier.jump == JUMP_INTERSEGMENT)
29b0f896
AM
8619 output_interseg_jump ();
8620 else
8621 {
8622 /* Output normal instructions here. */
8623 char *p;
8624 unsigned char *q;
47465058 8625 unsigned int j;
331d2d0d 8626 unsigned int prefix;
4dffcebc 8627
e4e00185 8628 if (avoid_fence
c3949f43
JB
8629 && (i.tm.base_opcode == 0xfaee8
8630 || i.tm.base_opcode == 0xfaef0
8631 || i.tm.base_opcode == 0xfaef8))
e4e00185
AS
8632 {
8633 /* Encode lfence, mfence, and sfence as
8634 f0 83 04 24 00 lock addl $0x0, (%{re}sp). */
8635 offsetT val = 0x240483f0ULL;
8636 p = frag_more (5);
8637 md_number_to_chars (p, val, 5);
8638 return;
8639 }
8640
d022bddd
IT
8641 /* Some processors fail on LOCK prefix. This options makes
8642 assembler ignore LOCK prefix and serves as a workaround. */
8643 if (omit_lock_prefix)
8644 {
8645 if (i.tm.base_opcode == LOCK_PREFIX_OPCODE)
8646 return;
8647 i.prefix[LOCK_PREFIX] = 0;
8648 }
8649
e379e5f3
L
8650 if (branch)
8651 /* Skip if this is a branch. */
8652 ;
8653 else if (add_fused_jcc_padding_frag_p ())
8654 {
8655 /* Make room for padding. */
8656 frag_grow (MAX_FUSED_JCC_PADDING_SIZE);
8657 p = frag_more (0);
8658
8659 fragP = frag_now;
8660
8661 frag_var (rs_machine_dependent, MAX_FUSED_JCC_PADDING_SIZE, 0,
8662 ENCODE_RELAX_STATE (FUSED_JCC_PADDING, 0),
8663 NULL, 0, p);
8664
8665 fragP->tc_frag_data.branch_type = align_branch_fused;
8666 fragP->tc_frag_data.max_bytes = MAX_FUSED_JCC_PADDING_SIZE;
8667 }
8668 else if (add_branch_prefix_frag_p ())
8669 {
8670 unsigned int max_prefix_size = align_branch_prefix_size;
8671
8672 /* Make room for padding. */
8673 frag_grow (max_prefix_size);
8674 p = frag_more (0);
8675
8676 fragP = frag_now;
8677
8678 frag_var (rs_machine_dependent, max_prefix_size, 0,
8679 ENCODE_RELAX_STATE (BRANCH_PREFIX, 0),
8680 NULL, 0, p);
8681
8682 fragP->tc_frag_data.max_bytes = max_prefix_size;
8683 }
8684
43234a1e
L
8685 /* Since the VEX/EVEX prefix contains the implicit prefix, we
8686 don't need the explicit prefix. */
8687 if (!i.tm.opcode_modifier.vex && !i.tm.opcode_modifier.evex)
bc4bd9ab 8688 {
c0f3af97 8689 switch (i.tm.opcode_length)
bc4bd9ab 8690 {
c0f3af97
L
8691 case 3:
8692 if (i.tm.base_opcode & 0xff000000)
4dffcebc 8693 {
c0f3af97 8694 prefix = (i.tm.base_opcode >> 24) & 0xff;
c3949f43
JB
8695 if (!i.tm.cpu_flags.bitfield.cpupadlock
8696 || prefix != REPE_PREFIX_OPCODE
8697 || (i.prefix[REP_PREFIX] != REPE_PREFIX_OPCODE))
8698 add_prefix (prefix);
c0f3af97
L
8699 }
8700 break;
8701 case 2:
8702 if ((i.tm.base_opcode & 0xff0000) != 0)
8703 {
8704 prefix = (i.tm.base_opcode >> 16) & 0xff;
c3949f43 8705 add_prefix (prefix);
4dffcebc 8706 }
c0f3af97
L
8707 break;
8708 case 1:
8709 break;
390c91cf
L
8710 case 0:
8711 /* Check for pseudo prefixes. */
8712 as_bad_where (insn_start_frag->fr_file,
8713 insn_start_frag->fr_line,
8714 _("pseudo prefix without instruction"));
8715 return;
c0f3af97
L
8716 default:
8717 abort ();
bc4bd9ab 8718 }
c0f3af97 8719
6d19a37a 8720#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
cf61b747
L
8721 /* For x32, add a dummy REX_OPCODE prefix for mov/add with
8722 R_X86_64_GOTTPOFF relocation so that linker can safely
14470f07
L
8723 perform IE->LE optimization. A dummy REX_OPCODE prefix
8724 is also needed for lea with R_X86_64_GOTPC32_TLSDESC
8725 relocation for GDesc -> IE/LE optimization. */
cf61b747
L
8726 if (x86_elf_abi == X86_64_X32_ABI
8727 && i.operands == 2
14470f07
L
8728 && (i.reloc[0] == BFD_RELOC_X86_64_GOTTPOFF
8729 || i.reloc[0] == BFD_RELOC_X86_64_GOTPC32_TLSDESC)
cf61b747
L
8730 && i.prefix[REX_PREFIX] == 0)
8731 add_prefix (REX_OPCODE);
6d19a37a 8732#endif
cf61b747 8733
c0f3af97
L
8734 /* The prefix bytes. */
8735 for (j = ARRAY_SIZE (i.prefix), q = i.prefix; j > 0; j--, q++)
8736 if (*q)
8737 FRAG_APPEND_1_CHAR (*q);
0f10071e 8738 }
ae5c1c7b 8739 else
c0f3af97
L
8740 {
8741 for (j = 0, q = i.prefix; j < ARRAY_SIZE (i.prefix); j++, q++)
8742 if (*q)
8743 switch (j)
8744 {
8745 case REX_PREFIX:
8746 /* REX byte is encoded in VEX prefix. */
8747 break;
8748 case SEG_PREFIX:
8749 case ADDR_PREFIX:
8750 FRAG_APPEND_1_CHAR (*q);
8751 break;
8752 default:
8753 /* There should be no other prefixes for instructions
8754 with VEX prefix. */
8755 abort ();
8756 }
8757
43234a1e
L
8758 /* For EVEX instructions i.vrex should become 0 after
8759 build_evex_prefix. For VEX instructions upper 16 registers
8760 aren't available, so VREX should be 0. */
8761 if (i.vrex)
8762 abort ();
c0f3af97
L
8763 /* Now the VEX prefix. */
8764 p = frag_more (i.vex.length);
8765 for (j = 0; j < i.vex.length; j++)
8766 p[j] = i.vex.bytes[j];
8767 }
252b5132 8768
29b0f896 8769 /* Now the opcode; be careful about word order here! */
4dffcebc 8770 if (i.tm.opcode_length == 1)
29b0f896
AM
8771 {
8772 FRAG_APPEND_1_CHAR (i.tm.base_opcode);
8773 }
8774 else
8775 {
4dffcebc 8776 switch (i.tm.opcode_length)
331d2d0d 8777 {
43234a1e
L
8778 case 4:
8779 p = frag_more (4);
8780 *p++ = (i.tm.base_opcode >> 24) & 0xff;
8781 *p++ = (i.tm.base_opcode >> 16) & 0xff;
8782 break;
4dffcebc 8783 case 3:
331d2d0d
L
8784 p = frag_more (3);
8785 *p++ = (i.tm.base_opcode >> 16) & 0xff;
4dffcebc
L
8786 break;
8787 case 2:
8788 p = frag_more (2);
8789 break;
8790 default:
8791 abort ();
8792 break;
331d2d0d 8793 }
0f10071e 8794
29b0f896
AM
8795 /* Put out high byte first: can't use md_number_to_chars! */
8796 *p++ = (i.tm.base_opcode >> 8) & 0xff;
8797 *p = i.tm.base_opcode & 0xff;
8798 }
3e73aa7c 8799
29b0f896 8800 /* Now the modrm byte and sib byte (if present). */
40fb9820 8801 if (i.tm.opcode_modifier.modrm)
29b0f896 8802 {
4a3523fa
L
8803 FRAG_APPEND_1_CHAR ((i.rm.regmem << 0
8804 | i.rm.reg << 3
8805 | i.rm.mode << 6));
29b0f896
AM
8806 /* If i.rm.regmem == ESP (4)
8807 && i.rm.mode != (Register mode)
8808 && not 16 bit
8809 ==> need second modrm byte. */
8810 if (i.rm.regmem == ESCAPE_TO_TWO_BYTE_ADDRESSING
8811 && i.rm.mode != 3
dc821c5f 8812 && !(i.base_reg && i.base_reg->reg_type.bitfield.word))
4a3523fa
L
8813 FRAG_APPEND_1_CHAR ((i.sib.base << 0
8814 | i.sib.index << 3
8815 | i.sib.scale << 6));
29b0f896 8816 }
3e73aa7c 8817
29b0f896 8818 if (i.disp_operands)
2bbd9c25 8819 output_disp (insn_start_frag, insn_start_off);
3e73aa7c 8820
29b0f896 8821 if (i.imm_operands)
2bbd9c25 8822 output_imm (insn_start_frag, insn_start_off);
9c33702b
JB
8823
8824 /*
8825 * frag_now_fix () returning plain abs_section_offset when we're in the
8826 * absolute section, and abs_section_offset not getting updated as data
8827 * gets added to the frag breaks the logic below.
8828 */
8829 if (now_seg != absolute_section)
8830 {
8831 j = encoding_length (insn_start_frag, insn_start_off, frag_more (0));
8832 if (j > 15)
8833 as_warn (_("instruction length of %u bytes exceeds the limit of 15"),
8834 j);
e379e5f3
L
8835 else if (fragP)
8836 {
8837 /* NB: Don't add prefix with GOTPC relocation since
8838 output_disp() above depends on the fixed encoding
8839 length. Can't add prefix with TLS relocation since
8840 it breaks TLS linker optimization. */
8841 unsigned int max = i.has_gotpc_tls_reloc ? 0 : 15 - j;
8842 /* Prefix count on the current instruction. */
8843 unsigned int count = i.vex.length;
8844 unsigned int k;
8845 for (k = 0; k < ARRAY_SIZE (i.prefix); k++)
8846 /* REX byte is encoded in VEX/EVEX prefix. */
8847 if (i.prefix[k] && (k != REX_PREFIX || !i.vex.length))
8848 count++;
8849
8850 /* Count prefixes for extended opcode maps. */
8851 if (!i.vex.length)
8852 switch (i.tm.opcode_length)
8853 {
8854 case 3:
8855 if (((i.tm.base_opcode >> 16) & 0xff) == 0xf)
8856 {
8857 count++;
8858 switch ((i.tm.base_opcode >> 8) & 0xff)
8859 {
8860 case 0x38:
8861 case 0x3a:
8862 count++;
8863 break;
8864 default:
8865 break;
8866 }
8867 }
8868 break;
8869 case 2:
8870 if (((i.tm.base_opcode >> 8) & 0xff) == 0xf)
8871 count++;
8872 break;
8873 case 1:
8874 break;
8875 default:
8876 abort ();
8877 }
8878
8879 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
8880 == BRANCH_PREFIX)
8881 {
8882 /* Set the maximum prefix size in BRANCH_PREFIX
8883 frag. */
8884 if (fragP->tc_frag_data.max_bytes > max)
8885 fragP->tc_frag_data.max_bytes = max;
8886 if (fragP->tc_frag_data.max_bytes > count)
8887 fragP->tc_frag_data.max_bytes -= count;
8888 else
8889 fragP->tc_frag_data.max_bytes = 0;
8890 }
8891 else
8892 {
8893 /* Remember the maximum prefix size in FUSED_JCC_PADDING
8894 frag. */
8895 unsigned int max_prefix_size;
8896 if (align_branch_prefix_size > max)
8897 max_prefix_size = max;
8898 else
8899 max_prefix_size = align_branch_prefix_size;
8900 if (max_prefix_size > count)
8901 fragP->tc_frag_data.max_prefix_length
8902 = max_prefix_size - count;
8903 }
8904
8905 /* Use existing segment prefix if possible. Use CS
8906 segment prefix in 64-bit mode. In 32-bit mode, use SS
8907 segment prefix with ESP/EBP base register and use DS
8908 segment prefix without ESP/EBP base register. */
8909 if (i.prefix[SEG_PREFIX])
8910 fragP->tc_frag_data.default_prefix = i.prefix[SEG_PREFIX];
8911 else if (flag_code == CODE_64BIT)
8912 fragP->tc_frag_data.default_prefix = CS_PREFIX_OPCODE;
8913 else if (i.base_reg
8914 && (i.base_reg->reg_num == 4
8915 || i.base_reg->reg_num == 5))
8916 fragP->tc_frag_data.default_prefix = SS_PREFIX_OPCODE;
8917 else
8918 fragP->tc_frag_data.default_prefix = DS_PREFIX_OPCODE;
8919 }
9c33702b 8920 }
29b0f896 8921 }
252b5132 8922
e379e5f3
L
8923 /* NB: Don't work with COND_JUMP86 without i386. */
8924 if (align_branch_power
8925 && now_seg != absolute_section
8926 && cpu_arch_flags.bitfield.cpui386)
8927 {
8928 /* Terminate each frag so that we can add prefix and check for
8929 fused jcc. */
8930 frag_wane (frag_now);
8931 frag_new (0);
8932 }
8933
29b0f896
AM
8934#ifdef DEBUG386
8935 if (flag_debug)
8936 {
7b81dfbb 8937 pi ("" /*line*/, &i);
29b0f896
AM
8938 }
8939#endif /* DEBUG386 */
8940}
252b5132 8941
e205caa7
L
8942/* Return the size of the displacement operand N. */
8943
8944static int
8945disp_size (unsigned int n)
8946{
8947 int size = 4;
43234a1e 8948
b5014f7a 8949 if (i.types[n].bitfield.disp64)
40fb9820
L
8950 size = 8;
8951 else if (i.types[n].bitfield.disp8)
8952 size = 1;
8953 else if (i.types[n].bitfield.disp16)
8954 size = 2;
e205caa7
L
8955 return size;
8956}
8957
8958/* Return the size of the immediate operand N. */
8959
8960static int
8961imm_size (unsigned int n)
8962{
8963 int size = 4;
40fb9820
L
8964 if (i.types[n].bitfield.imm64)
8965 size = 8;
8966 else if (i.types[n].bitfield.imm8 || i.types[n].bitfield.imm8s)
8967 size = 1;
8968 else if (i.types[n].bitfield.imm16)
8969 size = 2;
e205caa7
L
8970 return size;
8971}
8972
29b0f896 8973static void
64e74474 8974output_disp (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
8975{
8976 char *p;
8977 unsigned int n;
252b5132 8978
29b0f896
AM
8979 for (n = 0; n < i.operands; n++)
8980 {
b5014f7a 8981 if (operand_type_check (i.types[n], disp))
29b0f896
AM
8982 {
8983 if (i.op[n].disps->X_op == O_constant)
8984 {
e205caa7 8985 int size = disp_size (n);
43234a1e 8986 offsetT val = i.op[n].disps->X_add_number;
252b5132 8987
629cfaf1
JB
8988 val = offset_in_range (val >> (size == 1 ? i.memshift : 0),
8989 size);
29b0f896
AM
8990 p = frag_more (size);
8991 md_number_to_chars (p, val, size);
8992 }
8993 else
8994 {
f86103b7 8995 enum bfd_reloc_code_real reloc_type;
e205caa7 8996 int size = disp_size (n);
40fb9820 8997 int sign = i.types[n].bitfield.disp32s;
29b0f896 8998 int pcrel = (i.flags[n] & Operand_PCrel) != 0;
02a86693 8999 fixS *fixP;
29b0f896 9000
e205caa7 9001 /* We can't have 8 bit displacement here. */
9c2799c2 9002 gas_assert (!i.types[n].bitfield.disp8);
e205caa7 9003
29b0f896
AM
9004 /* The PC relative address is computed relative
9005 to the instruction boundary, so in case immediate
9006 fields follows, we need to adjust the value. */
9007 if (pcrel && i.imm_operands)
9008 {
29b0f896 9009 unsigned int n1;
e205caa7 9010 int sz = 0;
252b5132 9011
29b0f896 9012 for (n1 = 0; n1 < i.operands; n1++)
40fb9820 9013 if (operand_type_check (i.types[n1], imm))
252b5132 9014 {
e205caa7
L
9015 /* Only one immediate is allowed for PC
9016 relative address. */
9c2799c2 9017 gas_assert (sz == 0);
e205caa7
L
9018 sz = imm_size (n1);
9019 i.op[n].disps->X_add_number -= sz;
252b5132 9020 }
29b0f896 9021 /* We should find the immediate. */
9c2799c2 9022 gas_assert (sz != 0);
29b0f896 9023 }
520dc8e8 9024
29b0f896 9025 p = frag_more (size);
d258b828 9026 reloc_type = reloc (size, pcrel, sign, i.reloc[n]);
d6ab8113 9027 if (GOT_symbol
2bbd9c25 9028 && GOT_symbol == i.op[n].disps->X_add_symbol
d6ab8113 9029 && (((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
9030 || reloc_type == BFD_RELOC_X86_64_32S
9031 || (reloc_type == BFD_RELOC_64
9032 && object_64bit))
d6ab8113
JB
9033 && (i.op[n].disps->X_op == O_symbol
9034 || (i.op[n].disps->X_op == O_add
9035 && ((symbol_get_value_expression
9036 (i.op[n].disps->X_op_symbol)->X_op)
9037 == O_subtract))))
9038 || reloc_type == BFD_RELOC_32_PCREL))
2bbd9c25 9039 {
4fa24527 9040 if (!object_64bit)
7b81dfbb
AJ
9041 {
9042 reloc_type = BFD_RELOC_386_GOTPC;
e379e5f3 9043 i.has_gotpc_tls_reloc = TRUE;
d583596c
JB
9044 i.op[n].imms->X_add_number +=
9045 encoding_length (insn_start_frag, insn_start_off, p);
7b81dfbb
AJ
9046 }
9047 else if (reloc_type == BFD_RELOC_64)
9048 reloc_type = BFD_RELOC_X86_64_GOTPC64;
d6ab8113 9049 else
7b81dfbb
AJ
9050 /* Don't do the adjustment for x86-64, as there
9051 the pcrel addressing is relative to the _next_
9052 insn, and that is taken care of in other code. */
d6ab8113 9053 reloc_type = BFD_RELOC_X86_64_GOTPC32;
2bbd9c25 9054 }
e379e5f3
L
9055 else if (align_branch_power)
9056 {
9057 switch (reloc_type)
9058 {
9059 case BFD_RELOC_386_TLS_GD:
9060 case BFD_RELOC_386_TLS_LDM:
9061 case BFD_RELOC_386_TLS_IE:
9062 case BFD_RELOC_386_TLS_IE_32:
9063 case BFD_RELOC_386_TLS_GOTIE:
9064 case BFD_RELOC_386_TLS_GOTDESC:
9065 case BFD_RELOC_386_TLS_DESC_CALL:
9066 case BFD_RELOC_X86_64_TLSGD:
9067 case BFD_RELOC_X86_64_TLSLD:
9068 case BFD_RELOC_X86_64_GOTTPOFF:
9069 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
9070 case BFD_RELOC_X86_64_TLSDESC_CALL:
9071 i.has_gotpc_tls_reloc = TRUE;
9072 default:
9073 break;
9074 }
9075 }
02a86693
L
9076 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal,
9077 size, i.op[n].disps, pcrel,
9078 reloc_type);
9079 /* Check for "call/jmp *mem", "mov mem, %reg",
9080 "test %reg, mem" and "binop mem, %reg" where binop
9081 is one of adc, add, and, cmp, or, sbb, sub, xor
e60f4d3b
L
9082 instructions without data prefix. Always generate
9083 R_386_GOT32X for "sym*GOT" operand in 32-bit mode. */
9084 if (i.prefix[DATA_PREFIX] == 0
9085 && (generate_relax_relocations
9086 || (!object_64bit
9087 && i.rm.mode == 0
9088 && i.rm.regmem == 5))
0cb4071e
L
9089 && (i.rm.mode == 2
9090 || (i.rm.mode == 0 && i.rm.regmem == 5))
2ae4c703 9091 && !is_any_vex_encoding(&i.tm)
02a86693
L
9092 && ((i.operands == 1
9093 && i.tm.base_opcode == 0xff
9094 && (i.rm.reg == 2 || i.rm.reg == 4))
9095 || (i.operands == 2
9096 && (i.tm.base_opcode == 0x8b
9097 || i.tm.base_opcode == 0x85
2ae4c703 9098 || (i.tm.base_opcode & ~0x38) == 0x03))))
02a86693
L
9099 {
9100 if (object_64bit)
9101 {
9102 fixP->fx_tcbit = i.rex != 0;
9103 if (i.base_reg
e968fc9b 9104 && (i.base_reg->reg_num == RegIP))
02a86693
L
9105 fixP->fx_tcbit2 = 1;
9106 }
9107 else
9108 fixP->fx_tcbit2 = 1;
9109 }
29b0f896
AM
9110 }
9111 }
9112 }
9113}
252b5132 9114
29b0f896 9115static void
64e74474 9116output_imm (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
9117{
9118 char *p;
9119 unsigned int n;
252b5132 9120
29b0f896
AM
9121 for (n = 0; n < i.operands; n++)
9122 {
43234a1e
L
9123 /* Skip SAE/RC Imm operand in EVEX. They are already handled. */
9124 if (i.rounding && (int) n == i.rounding->operand)
9125 continue;
9126
40fb9820 9127 if (operand_type_check (i.types[n], imm))
29b0f896
AM
9128 {
9129 if (i.op[n].imms->X_op == O_constant)
9130 {
e205caa7 9131 int size = imm_size (n);
29b0f896 9132 offsetT val;
b4cac588 9133
29b0f896
AM
9134 val = offset_in_range (i.op[n].imms->X_add_number,
9135 size);
9136 p = frag_more (size);
9137 md_number_to_chars (p, val, size);
9138 }
9139 else
9140 {
9141 /* Not absolute_section.
9142 Need a 32-bit fixup (don't support 8bit
9143 non-absolute imms). Try to support other
9144 sizes ... */
f86103b7 9145 enum bfd_reloc_code_real reloc_type;
e205caa7
L
9146 int size = imm_size (n);
9147 int sign;
29b0f896 9148
40fb9820 9149 if (i.types[n].bitfield.imm32s
a7d61044 9150 && (i.suffix == QWORD_MNEM_SUFFIX
40fb9820 9151 || (!i.suffix && i.tm.opcode_modifier.no_lsuf)))
29b0f896 9152 sign = 1;
e205caa7
L
9153 else
9154 sign = 0;
520dc8e8 9155
29b0f896 9156 p = frag_more (size);
d258b828 9157 reloc_type = reloc (size, 0, sign, i.reloc[n]);
f86103b7 9158
2bbd9c25
JJ
9159 /* This is tough to explain. We end up with this one if we
9160 * have operands that look like
9161 * "_GLOBAL_OFFSET_TABLE_+[.-.L284]". The goal here is to
9162 * obtain the absolute address of the GOT, and it is strongly
9163 * preferable from a performance point of view to avoid using
9164 * a runtime relocation for this. The actual sequence of
9165 * instructions often look something like:
9166 *
9167 * call .L66
9168 * .L66:
9169 * popl %ebx
9170 * addl $_GLOBAL_OFFSET_TABLE_+[.-.L66],%ebx
9171 *
9172 * The call and pop essentially return the absolute address
9173 * of the label .L66 and store it in %ebx. The linker itself
9174 * will ultimately change the first operand of the addl so
9175 * that %ebx points to the GOT, but to keep things simple, the
9176 * .o file must have this operand set so that it generates not
9177 * the absolute address of .L66, but the absolute address of
9178 * itself. This allows the linker itself simply treat a GOTPC
9179 * relocation as asking for a pcrel offset to the GOT to be
9180 * added in, and the addend of the relocation is stored in the
9181 * operand field for the instruction itself.
9182 *
9183 * Our job here is to fix the operand so that it would add
9184 * the correct offset so that %ebx would point to itself. The
9185 * thing that is tricky is that .-.L66 will point to the
9186 * beginning of the instruction, so we need to further modify
9187 * the operand so that it will point to itself. There are
9188 * other cases where you have something like:
9189 *
9190 * .long $_GLOBAL_OFFSET_TABLE_+[.-.L66]
9191 *
9192 * and here no correction would be required. Internally in
9193 * the assembler we treat operands of this form as not being
9194 * pcrel since the '.' is explicitly mentioned, and I wonder
9195 * whether it would simplify matters to do it this way. Who
9196 * knows. In earlier versions of the PIC patches, the
9197 * pcrel_adjust field was used to store the correction, but
9198 * since the expression is not pcrel, I felt it would be
9199 * confusing to do it this way. */
9200
d6ab8113 9201 if ((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
9202 || reloc_type == BFD_RELOC_X86_64_32S
9203 || reloc_type == BFD_RELOC_64)
29b0f896
AM
9204 && GOT_symbol
9205 && GOT_symbol == i.op[n].imms->X_add_symbol
9206 && (i.op[n].imms->X_op == O_symbol
9207 || (i.op[n].imms->X_op == O_add
9208 && ((symbol_get_value_expression
9209 (i.op[n].imms->X_op_symbol)->X_op)
9210 == O_subtract))))
9211 {
4fa24527 9212 if (!object_64bit)
d6ab8113 9213 reloc_type = BFD_RELOC_386_GOTPC;
7b81dfbb 9214 else if (size == 4)
d6ab8113 9215 reloc_type = BFD_RELOC_X86_64_GOTPC32;
7b81dfbb
AJ
9216 else if (size == 8)
9217 reloc_type = BFD_RELOC_X86_64_GOTPC64;
e379e5f3 9218 i.has_gotpc_tls_reloc = TRUE;
d583596c
JB
9219 i.op[n].imms->X_add_number +=
9220 encoding_length (insn_start_frag, insn_start_off, p);
29b0f896 9221 }
29b0f896
AM
9222 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
9223 i.op[n].imms, 0, reloc_type);
9224 }
9225 }
9226 }
252b5132
RH
9227}
9228\f
d182319b
JB
9229/* x86_cons_fix_new is called via the expression parsing code when a
9230 reloc is needed. We use this hook to get the correct .got reloc. */
d182319b
JB
9231static int cons_sign = -1;
9232
9233void
e3bb37b5 9234x86_cons_fix_new (fragS *frag, unsigned int off, unsigned int len,
62ebcb5c 9235 expressionS *exp, bfd_reloc_code_real_type r)
d182319b 9236{
d258b828 9237 r = reloc (len, 0, cons_sign, r);
d182319b
JB
9238
9239#ifdef TE_PE
9240 if (exp->X_op == O_secrel)
9241 {
9242 exp->X_op = O_symbol;
9243 r = BFD_RELOC_32_SECREL;
9244 }
9245#endif
9246
9247 fix_new_exp (frag, off, len, exp, 0, r);
9248}
9249
357d1bd8
L
9250/* Export the ABI address size for use by TC_ADDRESS_BYTES for the
9251 purpose of the `.dc.a' internal pseudo-op. */
9252
9253int
9254x86_address_bytes (void)
9255{
9256 if ((stdoutput->arch_info->mach & bfd_mach_x64_32))
9257 return 4;
9258 return stdoutput->arch_info->bits_per_address / 8;
9259}
9260
d382c579
TG
9261#if !(defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined (OBJ_MACH_O)) \
9262 || defined (LEX_AT)
d258b828 9263# define lex_got(reloc, adjust, types) NULL
718ddfc0 9264#else
f3c180ae
AM
9265/* Parse operands of the form
9266 <symbol>@GOTOFF+<nnn>
9267 and similar .plt or .got references.
9268
9269 If we find one, set up the correct relocation in RELOC and copy the
9270 input string, minus the `@GOTOFF' into a malloc'd buffer for
9271 parsing by the calling routine. Return this buffer, and if ADJUST
9272 is non-null set it to the length of the string we removed from the
9273 input line. Otherwise return NULL. */
9274static char *
91d6fa6a 9275lex_got (enum bfd_reloc_code_real *rel,
64e74474 9276 int *adjust,
d258b828 9277 i386_operand_type *types)
f3c180ae 9278{
7b81dfbb
AJ
9279 /* Some of the relocations depend on the size of what field is to
9280 be relocated. But in our callers i386_immediate and i386_displacement
9281 we don't yet know the operand size (this will be set by insn
9282 matching). Hence we record the word32 relocation here,
9283 and adjust the reloc according to the real size in reloc(). */
f3c180ae
AM
9284 static const struct {
9285 const char *str;
cff8d58a 9286 int len;
4fa24527 9287 const enum bfd_reloc_code_real rel[2];
40fb9820 9288 const i386_operand_type types64;
f3c180ae 9289 } gotrel[] = {
8ce3d284 9290#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
9291 { STRING_COMMA_LEN ("SIZE"), { BFD_RELOC_SIZE32,
9292 BFD_RELOC_SIZE32 },
9293 OPERAND_TYPE_IMM32_64 },
8ce3d284 9294#endif
cff8d58a
L
9295 { STRING_COMMA_LEN ("PLTOFF"), { _dummy_first_bfd_reloc_code_real,
9296 BFD_RELOC_X86_64_PLTOFF64 },
40fb9820 9297 OPERAND_TYPE_IMM64 },
cff8d58a
L
9298 { STRING_COMMA_LEN ("PLT"), { BFD_RELOC_386_PLT32,
9299 BFD_RELOC_X86_64_PLT32 },
40fb9820 9300 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9301 { STRING_COMMA_LEN ("GOTPLT"), { _dummy_first_bfd_reloc_code_real,
9302 BFD_RELOC_X86_64_GOTPLT64 },
40fb9820 9303 OPERAND_TYPE_IMM64_DISP64 },
cff8d58a
L
9304 { STRING_COMMA_LEN ("GOTOFF"), { BFD_RELOC_386_GOTOFF,
9305 BFD_RELOC_X86_64_GOTOFF64 },
40fb9820 9306 OPERAND_TYPE_IMM64_DISP64 },
cff8d58a
L
9307 { STRING_COMMA_LEN ("GOTPCREL"), { _dummy_first_bfd_reloc_code_real,
9308 BFD_RELOC_X86_64_GOTPCREL },
40fb9820 9309 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9310 { STRING_COMMA_LEN ("TLSGD"), { BFD_RELOC_386_TLS_GD,
9311 BFD_RELOC_X86_64_TLSGD },
40fb9820 9312 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9313 { STRING_COMMA_LEN ("TLSLDM"), { BFD_RELOC_386_TLS_LDM,
9314 _dummy_first_bfd_reloc_code_real },
40fb9820 9315 OPERAND_TYPE_NONE },
cff8d58a
L
9316 { STRING_COMMA_LEN ("TLSLD"), { _dummy_first_bfd_reloc_code_real,
9317 BFD_RELOC_X86_64_TLSLD },
40fb9820 9318 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9319 { STRING_COMMA_LEN ("GOTTPOFF"), { BFD_RELOC_386_TLS_IE_32,
9320 BFD_RELOC_X86_64_GOTTPOFF },
40fb9820 9321 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9322 { STRING_COMMA_LEN ("TPOFF"), { BFD_RELOC_386_TLS_LE_32,
9323 BFD_RELOC_X86_64_TPOFF32 },
40fb9820 9324 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
cff8d58a
L
9325 { STRING_COMMA_LEN ("NTPOFF"), { BFD_RELOC_386_TLS_LE,
9326 _dummy_first_bfd_reloc_code_real },
40fb9820 9327 OPERAND_TYPE_NONE },
cff8d58a
L
9328 { STRING_COMMA_LEN ("DTPOFF"), { BFD_RELOC_386_TLS_LDO_32,
9329 BFD_RELOC_X86_64_DTPOFF32 },
40fb9820 9330 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
cff8d58a
L
9331 { STRING_COMMA_LEN ("GOTNTPOFF"),{ BFD_RELOC_386_TLS_GOTIE,
9332 _dummy_first_bfd_reloc_code_real },
40fb9820 9333 OPERAND_TYPE_NONE },
cff8d58a
L
9334 { STRING_COMMA_LEN ("INDNTPOFF"),{ BFD_RELOC_386_TLS_IE,
9335 _dummy_first_bfd_reloc_code_real },
40fb9820 9336 OPERAND_TYPE_NONE },
cff8d58a
L
9337 { STRING_COMMA_LEN ("GOT"), { BFD_RELOC_386_GOT32,
9338 BFD_RELOC_X86_64_GOT32 },
40fb9820 9339 OPERAND_TYPE_IMM32_32S_64_DISP32 },
cff8d58a
L
9340 { STRING_COMMA_LEN ("TLSDESC"), { BFD_RELOC_386_TLS_GOTDESC,
9341 BFD_RELOC_X86_64_GOTPC32_TLSDESC },
40fb9820 9342 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
9343 { STRING_COMMA_LEN ("TLSCALL"), { BFD_RELOC_386_TLS_DESC_CALL,
9344 BFD_RELOC_X86_64_TLSDESC_CALL },
40fb9820 9345 OPERAND_TYPE_IMM32_32S_DISP32 },
f3c180ae
AM
9346 };
9347 char *cp;
9348 unsigned int j;
9349
d382c579 9350#if defined (OBJ_MAYBE_ELF)
718ddfc0
JB
9351 if (!IS_ELF)
9352 return NULL;
d382c579 9353#endif
718ddfc0 9354
f3c180ae 9355 for (cp = input_line_pointer; *cp != '@'; cp++)
67c11a9b 9356 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
f3c180ae
AM
9357 return NULL;
9358
47465058 9359 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
f3c180ae 9360 {
cff8d58a 9361 int len = gotrel[j].len;
28f81592 9362 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
f3c180ae 9363 {
4fa24527 9364 if (gotrel[j].rel[object_64bit] != 0)
f3c180ae 9365 {
28f81592
AM
9366 int first, second;
9367 char *tmpbuf, *past_reloc;
f3c180ae 9368
91d6fa6a 9369 *rel = gotrel[j].rel[object_64bit];
f3c180ae 9370
3956db08
JB
9371 if (types)
9372 {
9373 if (flag_code != CODE_64BIT)
40fb9820
L
9374 {
9375 types->bitfield.imm32 = 1;
9376 types->bitfield.disp32 = 1;
9377 }
3956db08
JB
9378 else
9379 *types = gotrel[j].types64;
9380 }
9381
8fd4256d 9382 if (j != 0 && GOT_symbol == NULL)
f3c180ae
AM
9383 GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
9384
28f81592 9385 /* The length of the first part of our input line. */
f3c180ae 9386 first = cp - input_line_pointer;
28f81592
AM
9387
9388 /* The second part goes from after the reloc token until
67c11a9b 9389 (and including) an end_of_line char or comma. */
28f81592 9390 past_reloc = cp + 1 + len;
67c11a9b
AM
9391 cp = past_reloc;
9392 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
9393 ++cp;
9394 second = cp + 1 - past_reloc;
28f81592
AM
9395
9396 /* Allocate and copy string. The trailing NUL shouldn't
9397 be necessary, but be safe. */
add39d23 9398 tmpbuf = XNEWVEC (char, first + second + 2);
f3c180ae 9399 memcpy (tmpbuf, input_line_pointer, first);
0787a12d
AM
9400 if (second != 0 && *past_reloc != ' ')
9401 /* Replace the relocation token with ' ', so that
9402 errors like foo@GOTOFF1 will be detected. */
9403 tmpbuf[first++] = ' ';
af89796a
L
9404 else
9405 /* Increment length by 1 if the relocation token is
9406 removed. */
9407 len++;
9408 if (adjust)
9409 *adjust = len;
0787a12d
AM
9410 memcpy (tmpbuf + first, past_reloc, second);
9411 tmpbuf[first + second] = '\0';
f3c180ae
AM
9412 return tmpbuf;
9413 }
9414
4fa24527
JB
9415 as_bad (_("@%s reloc is not supported with %d-bit output format"),
9416 gotrel[j].str, 1 << (5 + object_64bit));
f3c180ae
AM
9417 return NULL;
9418 }
9419 }
9420
9421 /* Might be a symbol version string. Don't as_bad here. */
9422 return NULL;
9423}
4e4f7c87 9424#endif
f3c180ae 9425
a988325c
NC
9426#ifdef TE_PE
9427#ifdef lex_got
9428#undef lex_got
9429#endif
9430/* Parse operands of the form
9431 <symbol>@SECREL32+<nnn>
9432
9433 If we find one, set up the correct relocation in RELOC and copy the
9434 input string, minus the `@SECREL32' into a malloc'd buffer for
9435 parsing by the calling routine. Return this buffer, and if ADJUST
9436 is non-null set it to the length of the string we removed from the
34bca508
L
9437 input line. Otherwise return NULL.
9438
a988325c
NC
9439 This function is copied from the ELF version above adjusted for PE targets. */
9440
9441static char *
9442lex_got (enum bfd_reloc_code_real *rel ATTRIBUTE_UNUSED,
9443 int *adjust ATTRIBUTE_UNUSED,
d258b828 9444 i386_operand_type *types)
a988325c
NC
9445{
9446 static const struct
9447 {
9448 const char *str;
9449 int len;
9450 const enum bfd_reloc_code_real rel[2];
9451 const i386_operand_type types64;
9452 }
9453 gotrel[] =
9454 {
9455 { STRING_COMMA_LEN ("SECREL32"), { BFD_RELOC_32_SECREL,
9456 BFD_RELOC_32_SECREL },
9457 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
9458 };
9459
9460 char *cp;
9461 unsigned j;
9462
9463 for (cp = input_line_pointer; *cp != '@'; cp++)
9464 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
9465 return NULL;
9466
9467 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
9468 {
9469 int len = gotrel[j].len;
9470
9471 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
9472 {
9473 if (gotrel[j].rel[object_64bit] != 0)
9474 {
9475 int first, second;
9476 char *tmpbuf, *past_reloc;
9477
9478 *rel = gotrel[j].rel[object_64bit];
9479 if (adjust)
9480 *adjust = len;
9481
9482 if (types)
9483 {
9484 if (flag_code != CODE_64BIT)
9485 {
9486 types->bitfield.imm32 = 1;
9487 types->bitfield.disp32 = 1;
9488 }
9489 else
9490 *types = gotrel[j].types64;
9491 }
9492
9493 /* The length of the first part of our input line. */
9494 first = cp - input_line_pointer;
9495
9496 /* The second part goes from after the reloc token until
9497 (and including) an end_of_line char or comma. */
9498 past_reloc = cp + 1 + len;
9499 cp = past_reloc;
9500 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
9501 ++cp;
9502 second = cp + 1 - past_reloc;
9503
9504 /* Allocate and copy string. The trailing NUL shouldn't
9505 be necessary, but be safe. */
add39d23 9506 tmpbuf = XNEWVEC (char, first + second + 2);
a988325c
NC
9507 memcpy (tmpbuf, input_line_pointer, first);
9508 if (second != 0 && *past_reloc != ' ')
9509 /* Replace the relocation token with ' ', so that
9510 errors like foo@SECLREL321 will be detected. */
9511 tmpbuf[first++] = ' ';
9512 memcpy (tmpbuf + first, past_reloc, second);
9513 tmpbuf[first + second] = '\0';
9514 return tmpbuf;
9515 }
9516
9517 as_bad (_("@%s reloc is not supported with %d-bit output format"),
9518 gotrel[j].str, 1 << (5 + object_64bit));
9519 return NULL;
9520 }
9521 }
9522
9523 /* Might be a symbol version string. Don't as_bad here. */
9524 return NULL;
9525}
9526
9527#endif /* TE_PE */
9528
62ebcb5c 9529bfd_reloc_code_real_type
e3bb37b5 9530x86_cons (expressionS *exp, int size)
f3c180ae 9531{
62ebcb5c
AM
9532 bfd_reloc_code_real_type got_reloc = NO_RELOC;
9533
ee86248c
JB
9534 intel_syntax = -intel_syntax;
9535
3c7b9c2c 9536 exp->X_md = 0;
4fa24527 9537 if (size == 4 || (object_64bit && size == 8))
f3c180ae
AM
9538 {
9539 /* Handle @GOTOFF and the like in an expression. */
9540 char *save;
9541 char *gotfree_input_line;
4a57f2cf 9542 int adjust = 0;
f3c180ae
AM
9543
9544 save = input_line_pointer;
d258b828 9545 gotfree_input_line = lex_got (&got_reloc, &adjust, NULL);
f3c180ae
AM
9546 if (gotfree_input_line)
9547 input_line_pointer = gotfree_input_line;
9548
9549 expression (exp);
9550
9551 if (gotfree_input_line)
9552 {
9553 /* expression () has merrily parsed up to the end of line,
9554 or a comma - in the wrong buffer. Transfer how far
9555 input_line_pointer has moved to the right buffer. */
9556 input_line_pointer = (save
9557 + (input_line_pointer - gotfree_input_line)
9558 + adjust);
9559 free (gotfree_input_line);
3992d3b7
AM
9560 if (exp->X_op == O_constant
9561 || exp->X_op == O_absent
9562 || exp->X_op == O_illegal
0398aac5 9563 || exp->X_op == O_register
3992d3b7
AM
9564 || exp->X_op == O_big)
9565 {
9566 char c = *input_line_pointer;
9567 *input_line_pointer = 0;
9568 as_bad (_("missing or invalid expression `%s'"), save);
9569 *input_line_pointer = c;
9570 }
b9519cfe
L
9571 else if ((got_reloc == BFD_RELOC_386_PLT32
9572 || got_reloc == BFD_RELOC_X86_64_PLT32)
9573 && exp->X_op != O_symbol)
9574 {
9575 char c = *input_line_pointer;
9576 *input_line_pointer = 0;
9577 as_bad (_("invalid PLT expression `%s'"), save);
9578 *input_line_pointer = c;
9579 }
f3c180ae
AM
9580 }
9581 }
9582 else
9583 expression (exp);
ee86248c
JB
9584
9585 intel_syntax = -intel_syntax;
9586
9587 if (intel_syntax)
9588 i386_intel_simplify (exp);
62ebcb5c
AM
9589
9590 return got_reloc;
f3c180ae 9591}
f3c180ae 9592
9f32dd5b
L
9593static void
9594signed_cons (int size)
6482c264 9595{
d182319b
JB
9596 if (flag_code == CODE_64BIT)
9597 cons_sign = 1;
9598 cons (size);
9599 cons_sign = -1;
6482c264
NC
9600}
9601
d182319b 9602#ifdef TE_PE
6482c264 9603static void
7016a5d5 9604pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
6482c264
NC
9605{
9606 expressionS exp;
9607
9608 do
9609 {
9610 expression (&exp);
9611 if (exp.X_op == O_symbol)
9612 exp.X_op = O_secrel;
9613
9614 emit_expr (&exp, 4);
9615 }
9616 while (*input_line_pointer++ == ',');
9617
9618 input_line_pointer--;
9619 demand_empty_rest_of_line ();
9620}
6482c264
NC
9621#endif
9622
43234a1e
L
9623/* Handle Vector operations. */
9624
9625static char *
9626check_VecOperations (char *op_string, char *op_end)
9627{
9628 const reg_entry *mask;
9629 const char *saved;
9630 char *end_op;
9631
9632 while (*op_string
9633 && (op_end == NULL || op_string < op_end))
9634 {
9635 saved = op_string;
9636 if (*op_string == '{')
9637 {
9638 op_string++;
9639
9640 /* Check broadcasts. */
9641 if (strncmp (op_string, "1to", 3) == 0)
9642 {
9643 int bcst_type;
9644
9645 if (i.broadcast)
9646 goto duplicated_vec_op;
9647
9648 op_string += 3;
9649 if (*op_string == '8')
8e6e0792 9650 bcst_type = 8;
b28d1bda 9651 else if (*op_string == '4')
8e6e0792 9652 bcst_type = 4;
b28d1bda 9653 else if (*op_string == '2')
8e6e0792 9654 bcst_type = 2;
43234a1e
L
9655 else if (*op_string == '1'
9656 && *(op_string+1) == '6')
9657 {
8e6e0792 9658 bcst_type = 16;
43234a1e
L
9659 op_string++;
9660 }
9661 else
9662 {
9663 as_bad (_("Unsupported broadcast: `%s'"), saved);
9664 return NULL;
9665 }
9666 op_string++;
9667
9668 broadcast_op.type = bcst_type;
9669 broadcast_op.operand = this_operand;
1f75763a 9670 broadcast_op.bytes = 0;
43234a1e
L
9671 i.broadcast = &broadcast_op;
9672 }
9673 /* Check masking operation. */
9674 else if ((mask = parse_register (op_string, &end_op)) != NULL)
9675 {
9676 /* k0 can't be used for write mask. */
f74a6307 9677 if (mask->reg_type.bitfield.class != RegMask || !mask->reg_num)
43234a1e 9678 {
6d2cd6b2
JB
9679 as_bad (_("`%s%s' can't be used for write mask"),
9680 register_prefix, mask->reg_name);
43234a1e
L
9681 return NULL;
9682 }
9683
9684 if (!i.mask)
9685 {
9686 mask_op.mask = mask;
9687 mask_op.zeroing = 0;
9688 mask_op.operand = this_operand;
9689 i.mask = &mask_op;
9690 }
9691 else
9692 {
9693 if (i.mask->mask)
9694 goto duplicated_vec_op;
9695
9696 i.mask->mask = mask;
9697
9698 /* Only "{z}" is allowed here. No need to check
9699 zeroing mask explicitly. */
9700 if (i.mask->operand != this_operand)
9701 {
9702 as_bad (_("invalid write mask `%s'"), saved);
9703 return NULL;
9704 }
9705 }
9706
9707 op_string = end_op;
9708 }
9709 /* Check zeroing-flag for masking operation. */
9710 else if (*op_string == 'z')
9711 {
9712 if (!i.mask)
9713 {
9714 mask_op.mask = NULL;
9715 mask_op.zeroing = 1;
9716 mask_op.operand = this_operand;
9717 i.mask = &mask_op;
9718 }
9719 else
9720 {
9721 if (i.mask->zeroing)
9722 {
9723 duplicated_vec_op:
9724 as_bad (_("duplicated `%s'"), saved);
9725 return NULL;
9726 }
9727
9728 i.mask->zeroing = 1;
9729
9730 /* Only "{%k}" is allowed here. No need to check mask
9731 register explicitly. */
9732 if (i.mask->operand != this_operand)
9733 {
9734 as_bad (_("invalid zeroing-masking `%s'"),
9735 saved);
9736 return NULL;
9737 }
9738 }
9739
9740 op_string++;
9741 }
9742 else
9743 goto unknown_vec_op;
9744
9745 if (*op_string != '}')
9746 {
9747 as_bad (_("missing `}' in `%s'"), saved);
9748 return NULL;
9749 }
9750 op_string++;
0ba3a731
L
9751
9752 /* Strip whitespace since the addition of pseudo prefixes
9753 changed how the scrubber treats '{'. */
9754 if (is_space_char (*op_string))
9755 ++op_string;
9756
43234a1e
L
9757 continue;
9758 }
9759 unknown_vec_op:
9760 /* We don't know this one. */
9761 as_bad (_("unknown vector operation: `%s'"), saved);
9762 return NULL;
9763 }
9764
6d2cd6b2
JB
9765 if (i.mask && i.mask->zeroing && !i.mask->mask)
9766 {
9767 as_bad (_("zeroing-masking only allowed with write mask"));
9768 return NULL;
9769 }
9770
43234a1e
L
9771 return op_string;
9772}
9773
252b5132 9774static int
70e41ade 9775i386_immediate (char *imm_start)
252b5132
RH
9776{
9777 char *save_input_line_pointer;
f3c180ae 9778 char *gotfree_input_line;
252b5132 9779 segT exp_seg = 0;
47926f60 9780 expressionS *exp;
40fb9820
L
9781 i386_operand_type types;
9782
0dfbf9d7 9783 operand_type_set (&types, ~0);
252b5132
RH
9784
9785 if (i.imm_operands == MAX_IMMEDIATE_OPERANDS)
9786 {
31b2323c
L
9787 as_bad (_("at most %d immediate operands are allowed"),
9788 MAX_IMMEDIATE_OPERANDS);
252b5132
RH
9789 return 0;
9790 }
9791
9792 exp = &im_expressions[i.imm_operands++];
520dc8e8 9793 i.op[this_operand].imms = exp;
252b5132
RH
9794
9795 if (is_space_char (*imm_start))
9796 ++imm_start;
9797
9798 save_input_line_pointer = input_line_pointer;
9799 input_line_pointer = imm_start;
9800
d258b828 9801 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
9802 if (gotfree_input_line)
9803 input_line_pointer = gotfree_input_line;
252b5132
RH
9804
9805 exp_seg = expression (exp);
9806
83183c0c 9807 SKIP_WHITESPACE ();
43234a1e
L
9808
9809 /* Handle vector operations. */
9810 if (*input_line_pointer == '{')
9811 {
9812 input_line_pointer = check_VecOperations (input_line_pointer,
9813 NULL);
9814 if (input_line_pointer == NULL)
9815 return 0;
9816 }
9817
252b5132 9818 if (*input_line_pointer)
f3c180ae 9819 as_bad (_("junk `%s' after expression"), input_line_pointer);
252b5132
RH
9820
9821 input_line_pointer = save_input_line_pointer;
f3c180ae 9822 if (gotfree_input_line)
ee86248c
JB
9823 {
9824 free (gotfree_input_line);
9825
9826 if (exp->X_op == O_constant || exp->X_op == O_register)
9827 exp->X_op = O_illegal;
9828 }
9829
9830 return i386_finalize_immediate (exp_seg, exp, types, imm_start);
9831}
252b5132 9832
ee86248c
JB
9833static int
9834i386_finalize_immediate (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
9835 i386_operand_type types, const char *imm_start)
9836{
9837 if (exp->X_op == O_absent || exp->X_op == O_illegal || exp->X_op == O_big)
252b5132 9838 {
313c53d1
L
9839 if (imm_start)
9840 as_bad (_("missing or invalid immediate expression `%s'"),
9841 imm_start);
3992d3b7 9842 return 0;
252b5132 9843 }
3e73aa7c 9844 else if (exp->X_op == O_constant)
252b5132 9845 {
47926f60 9846 /* Size it properly later. */
40fb9820 9847 i.types[this_operand].bitfield.imm64 = 1;
13f864ae
L
9848 /* If not 64bit, sign extend val. */
9849 if (flag_code != CODE_64BIT
4eed87de
AM
9850 && (exp->X_add_number & ~(((addressT) 2 << 31) - 1)) == 0)
9851 exp->X_add_number
9852 = (exp->X_add_number ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
252b5132 9853 }
4c63da97 9854#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
f86103b7 9855 else if (OUTPUT_FLAVOR == bfd_target_aout_flavour
31312f95 9856 && exp_seg != absolute_section
47926f60 9857 && exp_seg != text_section
24eab124
AM
9858 && exp_seg != data_section
9859 && exp_seg != bss_section
9860 && exp_seg != undefined_section
f86103b7 9861 && !bfd_is_com_section (exp_seg))
252b5132 9862 {
d0b47220 9863 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
252b5132
RH
9864 return 0;
9865 }
9866#endif
a841bdf5 9867 else if (!intel_syntax && exp_seg == reg_section)
bb8f5920 9868 {
313c53d1
L
9869 if (imm_start)
9870 as_bad (_("illegal immediate register operand %s"), imm_start);
bb8f5920
L
9871 return 0;
9872 }
252b5132
RH
9873 else
9874 {
9875 /* This is an address. The size of the address will be
24eab124 9876 determined later, depending on destination register,
3e73aa7c 9877 suffix, or the default for the section. */
40fb9820
L
9878 i.types[this_operand].bitfield.imm8 = 1;
9879 i.types[this_operand].bitfield.imm16 = 1;
9880 i.types[this_operand].bitfield.imm32 = 1;
9881 i.types[this_operand].bitfield.imm32s = 1;
9882 i.types[this_operand].bitfield.imm64 = 1;
c6fb90c8
L
9883 i.types[this_operand] = operand_type_and (i.types[this_operand],
9884 types);
252b5132
RH
9885 }
9886
9887 return 1;
9888}
9889
551c1ca1 9890static char *
e3bb37b5 9891i386_scale (char *scale)
252b5132 9892{
551c1ca1
AM
9893 offsetT val;
9894 char *save = input_line_pointer;
252b5132 9895
551c1ca1
AM
9896 input_line_pointer = scale;
9897 val = get_absolute_expression ();
9898
9899 switch (val)
252b5132 9900 {
551c1ca1 9901 case 1:
252b5132
RH
9902 i.log2_scale_factor = 0;
9903 break;
551c1ca1 9904 case 2:
252b5132
RH
9905 i.log2_scale_factor = 1;
9906 break;
551c1ca1 9907 case 4:
252b5132
RH
9908 i.log2_scale_factor = 2;
9909 break;
551c1ca1 9910 case 8:
252b5132
RH
9911 i.log2_scale_factor = 3;
9912 break;
9913 default:
a724f0f4
JB
9914 {
9915 char sep = *input_line_pointer;
9916
9917 *input_line_pointer = '\0';
9918 as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
9919 scale);
9920 *input_line_pointer = sep;
9921 input_line_pointer = save;
9922 return NULL;
9923 }
252b5132 9924 }
29b0f896 9925 if (i.log2_scale_factor != 0 && i.index_reg == 0)
252b5132
RH
9926 {
9927 as_warn (_("scale factor of %d without an index register"),
24eab124 9928 1 << i.log2_scale_factor);
252b5132 9929 i.log2_scale_factor = 0;
252b5132 9930 }
551c1ca1
AM
9931 scale = input_line_pointer;
9932 input_line_pointer = save;
9933 return scale;
252b5132
RH
9934}
9935
252b5132 9936static int
e3bb37b5 9937i386_displacement (char *disp_start, char *disp_end)
252b5132 9938{
29b0f896 9939 expressionS *exp;
252b5132
RH
9940 segT exp_seg = 0;
9941 char *save_input_line_pointer;
f3c180ae 9942 char *gotfree_input_line;
40fb9820
L
9943 int override;
9944 i386_operand_type bigdisp, types = anydisp;
3992d3b7 9945 int ret;
252b5132 9946
31b2323c
L
9947 if (i.disp_operands == MAX_MEMORY_OPERANDS)
9948 {
9949 as_bad (_("at most %d displacement operands are allowed"),
9950 MAX_MEMORY_OPERANDS);
9951 return 0;
9952 }
9953
0dfbf9d7 9954 operand_type_set (&bigdisp, 0);
6f2f06be 9955 if (i.jumpabsolute
48bcea9f 9956 || i.types[this_operand].bitfield.baseindex
0cfa3eb3
JB
9957 || (current_templates->start->opcode_modifier.jump != JUMP
9958 && current_templates->start->opcode_modifier.jump != JUMP_DWORD))
e05278af 9959 {
48bcea9f 9960 i386_addressing_mode ();
e05278af 9961 override = (i.prefix[ADDR_PREFIX] != 0);
40fb9820
L
9962 if (flag_code == CODE_64BIT)
9963 {
9964 if (!override)
9965 {
9966 bigdisp.bitfield.disp32s = 1;
9967 bigdisp.bitfield.disp64 = 1;
9968 }
48bcea9f
JB
9969 else
9970 bigdisp.bitfield.disp32 = 1;
40fb9820
L
9971 }
9972 else if ((flag_code == CODE_16BIT) ^ override)
40fb9820 9973 bigdisp.bitfield.disp16 = 1;
48bcea9f
JB
9974 else
9975 bigdisp.bitfield.disp32 = 1;
e05278af
JB
9976 }
9977 else
9978 {
376cd056
JB
9979 /* For PC-relative branches, the width of the displacement may be
9980 dependent upon data size, but is never dependent upon address size.
9981 Also make sure to not unintentionally match against a non-PC-relative
9982 branch template. */
9983 static templates aux_templates;
9984 const insn_template *t = current_templates->start;
9985 bfd_boolean has_intel64 = FALSE;
9986
9987 aux_templates.start = t;
9988 while (++t < current_templates->end)
9989 {
9990 if (t->opcode_modifier.jump
9991 != current_templates->start->opcode_modifier.jump)
9992 break;
4b5aaf5f 9993 if ((t->opcode_modifier.isa64 >= INTEL64))
376cd056
JB
9994 has_intel64 = TRUE;
9995 }
9996 if (t < current_templates->end)
9997 {
9998 aux_templates.end = t;
9999 current_templates = &aux_templates;
10000 }
10001
e05278af 10002 override = (i.prefix[DATA_PREFIX] != 0);
40fb9820
L
10003 if (flag_code == CODE_64BIT)
10004 {
376cd056
JB
10005 if ((override || i.suffix == WORD_MNEM_SUFFIX)
10006 && (!intel64 || !has_intel64))
40fb9820
L
10007 bigdisp.bitfield.disp16 = 1;
10008 else
48bcea9f 10009 bigdisp.bitfield.disp32s = 1;
40fb9820
L
10010 }
10011 else
e05278af
JB
10012 {
10013 if (!override)
10014 override = (i.suffix == (flag_code != CODE_16BIT
10015 ? WORD_MNEM_SUFFIX
10016 : LONG_MNEM_SUFFIX));
40fb9820
L
10017 bigdisp.bitfield.disp32 = 1;
10018 if ((flag_code == CODE_16BIT) ^ override)
10019 {
10020 bigdisp.bitfield.disp32 = 0;
10021 bigdisp.bitfield.disp16 = 1;
10022 }
e05278af 10023 }
e05278af 10024 }
c6fb90c8
L
10025 i.types[this_operand] = operand_type_or (i.types[this_operand],
10026 bigdisp);
252b5132
RH
10027
10028 exp = &disp_expressions[i.disp_operands];
520dc8e8 10029 i.op[this_operand].disps = exp;
252b5132
RH
10030 i.disp_operands++;
10031 save_input_line_pointer = input_line_pointer;
10032 input_line_pointer = disp_start;
10033 END_STRING_AND_SAVE (disp_end);
10034
10035#ifndef GCC_ASM_O_HACK
10036#define GCC_ASM_O_HACK 0
10037#endif
10038#if GCC_ASM_O_HACK
10039 END_STRING_AND_SAVE (disp_end + 1);
40fb9820 10040 if (i.types[this_operand].bitfield.baseIndex
24eab124 10041 && displacement_string_end[-1] == '+')
252b5132
RH
10042 {
10043 /* This hack is to avoid a warning when using the "o"
24eab124
AM
10044 constraint within gcc asm statements.
10045 For instance:
10046
10047 #define _set_tssldt_desc(n,addr,limit,type) \
10048 __asm__ __volatile__ ( \
10049 "movw %w2,%0\n\t" \
10050 "movw %w1,2+%0\n\t" \
10051 "rorl $16,%1\n\t" \
10052 "movb %b1,4+%0\n\t" \
10053 "movb %4,5+%0\n\t" \
10054 "movb $0,6+%0\n\t" \
10055 "movb %h1,7+%0\n\t" \
10056 "rorl $16,%1" \
10057 : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type))
10058
10059 This works great except that the output assembler ends
10060 up looking a bit weird if it turns out that there is
10061 no offset. You end up producing code that looks like:
10062
10063 #APP
10064 movw $235,(%eax)
10065 movw %dx,2+(%eax)
10066 rorl $16,%edx
10067 movb %dl,4+(%eax)
10068 movb $137,5+(%eax)
10069 movb $0,6+(%eax)
10070 movb %dh,7+(%eax)
10071 rorl $16,%edx
10072 #NO_APP
10073
47926f60 10074 So here we provide the missing zero. */
24eab124
AM
10075
10076 *displacement_string_end = '0';
252b5132
RH
10077 }
10078#endif
d258b828 10079 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
10080 if (gotfree_input_line)
10081 input_line_pointer = gotfree_input_line;
252b5132 10082
24eab124 10083 exp_seg = expression (exp);
252b5132 10084
636c26b0
AM
10085 SKIP_WHITESPACE ();
10086 if (*input_line_pointer)
10087 as_bad (_("junk `%s' after expression"), input_line_pointer);
10088#if GCC_ASM_O_HACK
10089 RESTORE_END_STRING (disp_end + 1);
10090#endif
636c26b0 10091 input_line_pointer = save_input_line_pointer;
636c26b0 10092 if (gotfree_input_line)
ee86248c
JB
10093 {
10094 free (gotfree_input_line);
10095
10096 if (exp->X_op == O_constant || exp->X_op == O_register)
10097 exp->X_op = O_illegal;
10098 }
10099
10100 ret = i386_finalize_displacement (exp_seg, exp, types, disp_start);
10101
10102 RESTORE_END_STRING (disp_end);
10103
10104 return ret;
10105}
10106
10107static int
10108i386_finalize_displacement (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
10109 i386_operand_type types, const char *disp_start)
10110{
10111 i386_operand_type bigdisp;
10112 int ret = 1;
636c26b0 10113
24eab124
AM
10114 /* We do this to make sure that the section symbol is in
10115 the symbol table. We will ultimately change the relocation
47926f60 10116 to be relative to the beginning of the section. */
1ae12ab7 10117 if (i.reloc[this_operand] == BFD_RELOC_386_GOTOFF
d6ab8113
JB
10118 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL
10119 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
24eab124 10120 {
636c26b0 10121 if (exp->X_op != O_symbol)
3992d3b7 10122 goto inv_disp;
636c26b0 10123
e5cb08ac 10124 if (S_IS_LOCAL (exp->X_add_symbol)
c64efb4b
L
10125 && S_GET_SEGMENT (exp->X_add_symbol) != undefined_section
10126 && S_GET_SEGMENT (exp->X_add_symbol) != expr_section)
24eab124 10127 section_symbol (S_GET_SEGMENT (exp->X_add_symbol));
24eab124
AM
10128 exp->X_op = O_subtract;
10129 exp->X_op_symbol = GOT_symbol;
1ae12ab7 10130 if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL)
29b0f896 10131 i.reloc[this_operand] = BFD_RELOC_32_PCREL;
d6ab8113
JB
10132 else if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
10133 i.reloc[this_operand] = BFD_RELOC_64;
23df1078 10134 else
29b0f896 10135 i.reloc[this_operand] = BFD_RELOC_32;
24eab124 10136 }
252b5132 10137
3992d3b7
AM
10138 else if (exp->X_op == O_absent
10139 || exp->X_op == O_illegal
ee86248c 10140 || exp->X_op == O_big)
2daf4fd8 10141 {
3992d3b7
AM
10142 inv_disp:
10143 as_bad (_("missing or invalid displacement expression `%s'"),
2daf4fd8 10144 disp_start);
3992d3b7 10145 ret = 0;
2daf4fd8
AM
10146 }
10147
0e1147d9
L
10148 else if (flag_code == CODE_64BIT
10149 && !i.prefix[ADDR_PREFIX]
10150 && exp->X_op == O_constant)
10151 {
10152 /* Since displacement is signed extended to 64bit, don't allow
10153 disp32 and turn off disp32s if they are out of range. */
10154 i.types[this_operand].bitfield.disp32 = 0;
10155 if (!fits_in_signed_long (exp->X_add_number))
10156 {
10157 i.types[this_operand].bitfield.disp32s = 0;
10158 if (i.types[this_operand].bitfield.baseindex)
10159 {
10160 as_bad (_("0x%lx out range of signed 32bit displacement"),
10161 (long) exp->X_add_number);
10162 ret = 0;
10163 }
10164 }
10165 }
10166
4c63da97 10167#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
3992d3b7
AM
10168 else if (exp->X_op != O_constant
10169 && OUTPUT_FLAVOR == bfd_target_aout_flavour
10170 && exp_seg != absolute_section
10171 && exp_seg != text_section
10172 && exp_seg != data_section
10173 && exp_seg != bss_section
10174 && exp_seg != undefined_section
10175 && !bfd_is_com_section (exp_seg))
24eab124 10176 {
d0b47220 10177 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
3992d3b7 10178 ret = 0;
24eab124 10179 }
252b5132 10180#endif
3956db08 10181
48bcea9f
JB
10182 if (current_templates->start->opcode_modifier.jump == JUMP_BYTE
10183 /* Constants get taken care of by optimize_disp(). */
10184 && exp->X_op != O_constant)
10185 i.types[this_operand].bitfield.disp8 = 1;
10186
40fb9820
L
10187 /* Check if this is a displacement only operand. */
10188 bigdisp = i.types[this_operand];
10189 bigdisp.bitfield.disp8 = 0;
10190 bigdisp.bitfield.disp16 = 0;
10191 bigdisp.bitfield.disp32 = 0;
10192 bigdisp.bitfield.disp32s = 0;
10193 bigdisp.bitfield.disp64 = 0;
0dfbf9d7 10194 if (operand_type_all_zero (&bigdisp))
c6fb90c8
L
10195 i.types[this_operand] = operand_type_and (i.types[this_operand],
10196 types);
3956db08 10197
3992d3b7 10198 return ret;
252b5132
RH
10199}
10200
2abc2bec
JB
10201/* Return the active addressing mode, taking address override and
10202 registers forming the address into consideration. Update the
10203 address override prefix if necessary. */
47926f60 10204
2abc2bec
JB
10205static enum flag_code
10206i386_addressing_mode (void)
252b5132 10207{
be05d201
L
10208 enum flag_code addr_mode;
10209
10210 if (i.prefix[ADDR_PREFIX])
10211 addr_mode = flag_code == CODE_32BIT ? CODE_16BIT : CODE_32BIT;
10212 else
10213 {
10214 addr_mode = flag_code;
10215
24eab124 10216#if INFER_ADDR_PREFIX
be05d201
L
10217 if (i.mem_operands == 0)
10218 {
10219 /* Infer address prefix from the first memory operand. */
10220 const reg_entry *addr_reg = i.base_reg;
10221
10222 if (addr_reg == NULL)
10223 addr_reg = i.index_reg;
eecb386c 10224
be05d201
L
10225 if (addr_reg)
10226 {
e968fc9b 10227 if (addr_reg->reg_type.bitfield.dword)
be05d201
L
10228 addr_mode = CODE_32BIT;
10229 else if (flag_code != CODE_64BIT
dc821c5f 10230 && addr_reg->reg_type.bitfield.word)
be05d201
L
10231 addr_mode = CODE_16BIT;
10232
10233 if (addr_mode != flag_code)
10234 {
10235 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
10236 i.prefixes += 1;
10237 /* Change the size of any displacement too. At most one
10238 of Disp16 or Disp32 is set.
10239 FIXME. There doesn't seem to be any real need for
10240 separate Disp16 and Disp32 flags. The same goes for
10241 Imm16 and Imm32. Removing them would probably clean
10242 up the code quite a lot. */
10243 if (flag_code != CODE_64BIT
10244 && (i.types[this_operand].bitfield.disp16
10245 || i.types[this_operand].bitfield.disp32))
10246 i.types[this_operand]
10247 = operand_type_xor (i.types[this_operand], disp16_32);
10248 }
10249 }
10250 }
24eab124 10251#endif
be05d201
L
10252 }
10253
2abc2bec
JB
10254 return addr_mode;
10255}
10256
10257/* Make sure the memory operand we've been dealt is valid.
10258 Return 1 on success, 0 on a failure. */
10259
10260static int
10261i386_index_check (const char *operand_string)
10262{
10263 const char *kind = "base/index";
10264 enum flag_code addr_mode = i386_addressing_mode ();
10265
fc0763e6 10266 if (current_templates->start->opcode_modifier.isstring
c3949f43 10267 && !current_templates->start->cpu_flags.bitfield.cpupadlock
fc0763e6
JB
10268 && (current_templates->end[-1].opcode_modifier.isstring
10269 || i.mem_operands))
10270 {
10271 /* Memory operands of string insns are special in that they only allow
10272 a single register (rDI, rSI, or rBX) as their memory address. */
be05d201
L
10273 const reg_entry *expected_reg;
10274 static const char *di_si[][2] =
10275 {
10276 { "esi", "edi" },
10277 { "si", "di" },
10278 { "rsi", "rdi" }
10279 };
10280 static const char *bx[] = { "ebx", "bx", "rbx" };
fc0763e6
JB
10281
10282 kind = "string address";
10283
8325cc63 10284 if (current_templates->start->opcode_modifier.repprefixok)
fc0763e6 10285 {
51c8edf6
JB
10286 int es_op = current_templates->end[-1].opcode_modifier.isstring
10287 - IS_STRING_ES_OP0;
10288 int op = 0;
fc0763e6 10289
51c8edf6 10290 if (!current_templates->end[-1].operand_types[0].bitfield.baseindex
fc0763e6
JB
10291 || ((!i.mem_operands != !intel_syntax)
10292 && current_templates->end[-1].operand_types[1]
10293 .bitfield.baseindex))
51c8edf6
JB
10294 op = 1;
10295 expected_reg = hash_find (reg_hash, di_si[addr_mode][op == es_op]);
fc0763e6
JB
10296 }
10297 else
be05d201 10298 expected_reg = hash_find (reg_hash, bx[addr_mode]);
fc0763e6 10299
be05d201
L
10300 if (i.base_reg != expected_reg
10301 || i.index_reg
fc0763e6 10302 || operand_type_check (i.types[this_operand], disp))
fc0763e6 10303 {
be05d201
L
10304 /* The second memory operand must have the same size as
10305 the first one. */
10306 if (i.mem_operands
10307 && i.base_reg
10308 && !((addr_mode == CODE_64BIT
dc821c5f 10309 && i.base_reg->reg_type.bitfield.qword)
be05d201 10310 || (addr_mode == CODE_32BIT
dc821c5f
JB
10311 ? i.base_reg->reg_type.bitfield.dword
10312 : i.base_reg->reg_type.bitfield.word)))
be05d201
L
10313 goto bad_address;
10314
fc0763e6
JB
10315 as_warn (_("`%s' is not valid here (expected `%c%s%s%c')"),
10316 operand_string,
10317 intel_syntax ? '[' : '(',
10318 register_prefix,
be05d201 10319 expected_reg->reg_name,
fc0763e6 10320 intel_syntax ? ']' : ')');
be05d201 10321 return 1;
fc0763e6 10322 }
be05d201
L
10323 else
10324 return 1;
10325
10326bad_address:
10327 as_bad (_("`%s' is not a valid %s expression"),
10328 operand_string, kind);
10329 return 0;
3e73aa7c
JH
10330 }
10331 else
10332 {
be05d201
L
10333 if (addr_mode != CODE_16BIT)
10334 {
10335 /* 32-bit/64-bit checks. */
10336 if ((i.base_reg
e968fc9b
JB
10337 && ((addr_mode == CODE_64BIT
10338 ? !i.base_reg->reg_type.bitfield.qword
10339 : !i.base_reg->reg_type.bitfield.dword)
10340 || (i.index_reg && i.base_reg->reg_num == RegIP)
10341 || i.base_reg->reg_num == RegIZ))
be05d201 10342 || (i.index_reg
1b54b8d7
JB
10343 && !i.index_reg->reg_type.bitfield.xmmword
10344 && !i.index_reg->reg_type.bitfield.ymmword
10345 && !i.index_reg->reg_type.bitfield.zmmword
be05d201 10346 && ((addr_mode == CODE_64BIT
e968fc9b
JB
10347 ? !i.index_reg->reg_type.bitfield.qword
10348 : !i.index_reg->reg_type.bitfield.dword)
be05d201
L
10349 || !i.index_reg->reg_type.bitfield.baseindex)))
10350 goto bad_address;
8178be5b
JB
10351
10352 /* bndmk, bndldx, and bndstx have special restrictions. */
10353 if (current_templates->start->base_opcode == 0xf30f1b
10354 || (current_templates->start->base_opcode & ~1) == 0x0f1a)
10355 {
10356 /* They cannot use RIP-relative addressing. */
e968fc9b 10357 if (i.base_reg && i.base_reg->reg_num == RegIP)
8178be5b
JB
10358 {
10359 as_bad (_("`%s' cannot be used here"), operand_string);
10360 return 0;
10361 }
10362
10363 /* bndldx and bndstx ignore their scale factor. */
10364 if (current_templates->start->base_opcode != 0xf30f1b
10365 && i.log2_scale_factor)
10366 as_warn (_("register scaling is being ignored here"));
10367 }
be05d201
L
10368 }
10369 else
3e73aa7c 10370 {
be05d201 10371 /* 16-bit checks. */
3e73aa7c 10372 if ((i.base_reg
dc821c5f 10373 && (!i.base_reg->reg_type.bitfield.word
40fb9820 10374 || !i.base_reg->reg_type.bitfield.baseindex))
3e73aa7c 10375 || (i.index_reg
dc821c5f 10376 && (!i.index_reg->reg_type.bitfield.word
40fb9820 10377 || !i.index_reg->reg_type.bitfield.baseindex
29b0f896
AM
10378 || !(i.base_reg
10379 && i.base_reg->reg_num < 6
10380 && i.index_reg->reg_num >= 6
10381 && i.log2_scale_factor == 0))))
be05d201 10382 goto bad_address;
3e73aa7c
JH
10383 }
10384 }
be05d201 10385 return 1;
24eab124 10386}
252b5132 10387
43234a1e
L
10388/* Handle vector immediates. */
10389
10390static int
10391RC_SAE_immediate (const char *imm_start)
10392{
10393 unsigned int match_found, j;
10394 const char *pstr = imm_start;
10395 expressionS *exp;
10396
10397 if (*pstr != '{')
10398 return 0;
10399
10400 pstr++;
10401 match_found = 0;
10402 for (j = 0; j < ARRAY_SIZE (RC_NamesTable); j++)
10403 {
10404 if (!strncmp (pstr, RC_NamesTable[j].name, RC_NamesTable[j].len))
10405 {
10406 if (!i.rounding)
10407 {
10408 rc_op.type = RC_NamesTable[j].type;
10409 rc_op.operand = this_operand;
10410 i.rounding = &rc_op;
10411 }
10412 else
10413 {
10414 as_bad (_("duplicated `%s'"), imm_start);
10415 return 0;
10416 }
10417 pstr += RC_NamesTable[j].len;
10418 match_found = 1;
10419 break;
10420 }
10421 }
10422 if (!match_found)
10423 return 0;
10424
10425 if (*pstr++ != '}')
10426 {
10427 as_bad (_("Missing '}': '%s'"), imm_start);
10428 return 0;
10429 }
10430 /* RC/SAE immediate string should contain nothing more. */;
10431 if (*pstr != 0)
10432 {
10433 as_bad (_("Junk after '}': '%s'"), imm_start);
10434 return 0;
10435 }
10436
10437 exp = &im_expressions[i.imm_operands++];
10438 i.op[this_operand].imms = exp;
10439
10440 exp->X_op = O_constant;
10441 exp->X_add_number = 0;
10442 exp->X_add_symbol = (symbolS *) 0;
10443 exp->X_op_symbol = (symbolS *) 0;
10444
10445 i.types[this_operand].bitfield.imm8 = 1;
10446 return 1;
10447}
10448
8325cc63
JB
10449/* Only string instructions can have a second memory operand, so
10450 reduce current_templates to just those if it contains any. */
10451static int
10452maybe_adjust_templates (void)
10453{
10454 const insn_template *t;
10455
10456 gas_assert (i.mem_operands == 1);
10457
10458 for (t = current_templates->start; t < current_templates->end; ++t)
10459 if (t->opcode_modifier.isstring)
10460 break;
10461
10462 if (t < current_templates->end)
10463 {
10464 static templates aux_templates;
10465 bfd_boolean recheck;
10466
10467 aux_templates.start = t;
10468 for (; t < current_templates->end; ++t)
10469 if (!t->opcode_modifier.isstring)
10470 break;
10471 aux_templates.end = t;
10472
10473 /* Determine whether to re-check the first memory operand. */
10474 recheck = (aux_templates.start != current_templates->start
10475 || t != current_templates->end);
10476
10477 current_templates = &aux_templates;
10478
10479 if (recheck)
10480 {
10481 i.mem_operands = 0;
10482 if (i.memop1_string != NULL
10483 && i386_index_check (i.memop1_string) == 0)
10484 return 0;
10485 i.mem_operands = 1;
10486 }
10487 }
10488
10489 return 1;
10490}
10491
fc0763e6 10492/* Parse OPERAND_STRING into the i386_insn structure I. Returns zero
47926f60 10493 on error. */
252b5132 10494
252b5132 10495static int
a7619375 10496i386_att_operand (char *operand_string)
252b5132 10497{
af6bdddf
AM
10498 const reg_entry *r;
10499 char *end_op;
24eab124 10500 char *op_string = operand_string;
252b5132 10501
24eab124 10502 if (is_space_char (*op_string))
252b5132
RH
10503 ++op_string;
10504
24eab124 10505 /* We check for an absolute prefix (differentiating,
47926f60 10506 for example, 'jmp pc_relative_label' from 'jmp *absolute_label'. */
24eab124
AM
10507 if (*op_string == ABSOLUTE_PREFIX)
10508 {
10509 ++op_string;
10510 if (is_space_char (*op_string))
10511 ++op_string;
6f2f06be 10512 i.jumpabsolute = TRUE;
24eab124 10513 }
252b5132 10514
47926f60 10515 /* Check if operand is a register. */
4d1bb795 10516 if ((r = parse_register (op_string, &end_op)) != NULL)
24eab124 10517 {
40fb9820
L
10518 i386_operand_type temp;
10519
24eab124
AM
10520 /* Check for a segment override by searching for ':' after a
10521 segment register. */
10522 op_string = end_op;
10523 if (is_space_char (*op_string))
10524 ++op_string;
00cee14f 10525 if (*op_string == ':' && r->reg_type.bitfield.class == SReg)
24eab124
AM
10526 {
10527 switch (r->reg_num)
10528 {
10529 case 0:
10530 i.seg[i.mem_operands] = &es;
10531 break;
10532 case 1:
10533 i.seg[i.mem_operands] = &cs;
10534 break;
10535 case 2:
10536 i.seg[i.mem_operands] = &ss;
10537 break;
10538 case 3:
10539 i.seg[i.mem_operands] = &ds;
10540 break;
10541 case 4:
10542 i.seg[i.mem_operands] = &fs;
10543 break;
10544 case 5:
10545 i.seg[i.mem_operands] = &gs;
10546 break;
10547 }
252b5132 10548
24eab124 10549 /* Skip the ':' and whitespace. */
252b5132
RH
10550 ++op_string;
10551 if (is_space_char (*op_string))
24eab124 10552 ++op_string;
252b5132 10553
24eab124
AM
10554 if (!is_digit_char (*op_string)
10555 && !is_identifier_char (*op_string)
10556 && *op_string != '('
10557 && *op_string != ABSOLUTE_PREFIX)
10558 {
10559 as_bad (_("bad memory operand `%s'"), op_string);
10560 return 0;
10561 }
47926f60 10562 /* Handle case of %es:*foo. */
24eab124
AM
10563 if (*op_string == ABSOLUTE_PREFIX)
10564 {
10565 ++op_string;
10566 if (is_space_char (*op_string))
10567 ++op_string;
6f2f06be 10568 i.jumpabsolute = TRUE;
24eab124
AM
10569 }
10570 goto do_memory_reference;
10571 }
43234a1e
L
10572
10573 /* Handle vector operations. */
10574 if (*op_string == '{')
10575 {
10576 op_string = check_VecOperations (op_string, NULL);
10577 if (op_string == NULL)
10578 return 0;
10579 }
10580
24eab124
AM
10581 if (*op_string)
10582 {
d0b47220 10583 as_bad (_("junk `%s' after register"), op_string);
24eab124
AM
10584 return 0;
10585 }
40fb9820
L
10586 temp = r->reg_type;
10587 temp.bitfield.baseindex = 0;
c6fb90c8
L
10588 i.types[this_operand] = operand_type_or (i.types[this_operand],
10589 temp);
7d5e4556 10590 i.types[this_operand].bitfield.unspecified = 0;
520dc8e8 10591 i.op[this_operand].regs = r;
24eab124
AM
10592 i.reg_operands++;
10593 }
af6bdddf
AM
10594 else if (*op_string == REGISTER_PREFIX)
10595 {
10596 as_bad (_("bad register name `%s'"), op_string);
10597 return 0;
10598 }
24eab124 10599 else if (*op_string == IMMEDIATE_PREFIX)
ce8a8b2f 10600 {
24eab124 10601 ++op_string;
6f2f06be 10602 if (i.jumpabsolute)
24eab124 10603 {
d0b47220 10604 as_bad (_("immediate operand illegal with absolute jump"));
24eab124
AM
10605 return 0;
10606 }
10607 if (!i386_immediate (op_string))
10608 return 0;
10609 }
43234a1e
L
10610 else if (RC_SAE_immediate (operand_string))
10611 {
10612 /* If it is a RC or SAE immediate, do nothing. */
10613 ;
10614 }
24eab124
AM
10615 else if (is_digit_char (*op_string)
10616 || is_identifier_char (*op_string)
d02603dc 10617 || *op_string == '"'
e5cb08ac 10618 || *op_string == '(')
24eab124 10619 {
47926f60 10620 /* This is a memory reference of some sort. */
af6bdddf 10621 char *base_string;
252b5132 10622
47926f60 10623 /* Start and end of displacement string expression (if found). */
eecb386c
AM
10624 char *displacement_string_start;
10625 char *displacement_string_end;
43234a1e 10626 char *vop_start;
252b5132 10627
24eab124 10628 do_memory_reference:
8325cc63
JB
10629 if (i.mem_operands == 1 && !maybe_adjust_templates ())
10630 return 0;
24eab124 10631 if ((i.mem_operands == 1
40fb9820 10632 && !current_templates->start->opcode_modifier.isstring)
24eab124
AM
10633 || i.mem_operands == 2)
10634 {
10635 as_bad (_("too many memory references for `%s'"),
10636 current_templates->start->name);
10637 return 0;
10638 }
252b5132 10639
24eab124
AM
10640 /* Check for base index form. We detect the base index form by
10641 looking for an ')' at the end of the operand, searching
10642 for the '(' matching it, and finding a REGISTER_PREFIX or ','
10643 after the '('. */
af6bdddf 10644 base_string = op_string + strlen (op_string);
c3332e24 10645
43234a1e
L
10646 /* Handle vector operations. */
10647 vop_start = strchr (op_string, '{');
10648 if (vop_start && vop_start < base_string)
10649 {
10650 if (check_VecOperations (vop_start, base_string) == NULL)
10651 return 0;
10652 base_string = vop_start;
10653 }
10654
af6bdddf
AM
10655 --base_string;
10656 if (is_space_char (*base_string))
10657 --base_string;
252b5132 10658
47926f60 10659 /* If we only have a displacement, set-up for it to be parsed later. */
af6bdddf
AM
10660 displacement_string_start = op_string;
10661 displacement_string_end = base_string + 1;
252b5132 10662
24eab124
AM
10663 if (*base_string == ')')
10664 {
af6bdddf 10665 char *temp_string;
24eab124
AM
10666 unsigned int parens_balanced = 1;
10667 /* We've already checked that the number of left & right ()'s are
47926f60 10668 equal, so this loop will not be infinite. */
24eab124
AM
10669 do
10670 {
10671 base_string--;
10672 if (*base_string == ')')
10673 parens_balanced++;
10674 if (*base_string == '(')
10675 parens_balanced--;
10676 }
10677 while (parens_balanced);
c3332e24 10678
af6bdddf 10679 temp_string = base_string;
c3332e24 10680
24eab124 10681 /* Skip past '(' and whitespace. */
252b5132
RH
10682 ++base_string;
10683 if (is_space_char (*base_string))
24eab124 10684 ++base_string;
252b5132 10685
af6bdddf 10686 if (*base_string == ','
4eed87de
AM
10687 || ((i.base_reg = parse_register (base_string, &end_op))
10688 != NULL))
252b5132 10689 {
af6bdddf 10690 displacement_string_end = temp_string;
252b5132 10691
40fb9820 10692 i.types[this_operand].bitfield.baseindex = 1;
252b5132 10693
af6bdddf 10694 if (i.base_reg)
24eab124 10695 {
24eab124
AM
10696 base_string = end_op;
10697 if (is_space_char (*base_string))
10698 ++base_string;
af6bdddf
AM
10699 }
10700
10701 /* There may be an index reg or scale factor here. */
10702 if (*base_string == ',')
10703 {
10704 ++base_string;
10705 if (is_space_char (*base_string))
10706 ++base_string;
10707
4eed87de
AM
10708 if ((i.index_reg = parse_register (base_string, &end_op))
10709 != NULL)
24eab124 10710 {
af6bdddf 10711 base_string = end_op;
24eab124
AM
10712 if (is_space_char (*base_string))
10713 ++base_string;
af6bdddf
AM
10714 if (*base_string == ',')
10715 {
10716 ++base_string;
10717 if (is_space_char (*base_string))
10718 ++base_string;
10719 }
e5cb08ac 10720 else if (*base_string != ')')
af6bdddf 10721 {
4eed87de
AM
10722 as_bad (_("expecting `,' or `)' "
10723 "after index register in `%s'"),
af6bdddf
AM
10724 operand_string);
10725 return 0;
10726 }
24eab124 10727 }
af6bdddf 10728 else if (*base_string == REGISTER_PREFIX)
24eab124 10729 {
f76bf5e0
L
10730 end_op = strchr (base_string, ',');
10731 if (end_op)
10732 *end_op = '\0';
af6bdddf 10733 as_bad (_("bad register name `%s'"), base_string);
24eab124
AM
10734 return 0;
10735 }
252b5132 10736
47926f60 10737 /* Check for scale factor. */
551c1ca1 10738 if (*base_string != ')')
af6bdddf 10739 {
551c1ca1
AM
10740 char *end_scale = i386_scale (base_string);
10741
10742 if (!end_scale)
af6bdddf 10743 return 0;
24eab124 10744
551c1ca1 10745 base_string = end_scale;
af6bdddf
AM
10746 if (is_space_char (*base_string))
10747 ++base_string;
10748 if (*base_string != ')')
10749 {
4eed87de
AM
10750 as_bad (_("expecting `)' "
10751 "after scale factor in `%s'"),
af6bdddf
AM
10752 operand_string);
10753 return 0;
10754 }
10755 }
10756 else if (!i.index_reg)
24eab124 10757 {
4eed87de
AM
10758 as_bad (_("expecting index register or scale factor "
10759 "after `,'; got '%c'"),
af6bdddf 10760 *base_string);
24eab124
AM
10761 return 0;
10762 }
10763 }
af6bdddf 10764 else if (*base_string != ')')
24eab124 10765 {
4eed87de
AM
10766 as_bad (_("expecting `,' or `)' "
10767 "after base register in `%s'"),
af6bdddf 10768 operand_string);
24eab124
AM
10769 return 0;
10770 }
c3332e24 10771 }
af6bdddf 10772 else if (*base_string == REGISTER_PREFIX)
c3332e24 10773 {
f76bf5e0
L
10774 end_op = strchr (base_string, ',');
10775 if (end_op)
10776 *end_op = '\0';
af6bdddf 10777 as_bad (_("bad register name `%s'"), base_string);
24eab124 10778 return 0;
c3332e24 10779 }
24eab124
AM
10780 }
10781
10782 /* If there's an expression beginning the operand, parse it,
10783 assuming displacement_string_start and
10784 displacement_string_end are meaningful. */
10785 if (displacement_string_start != displacement_string_end)
10786 {
10787 if (!i386_displacement (displacement_string_start,
10788 displacement_string_end))
10789 return 0;
10790 }
10791
10792 /* Special case for (%dx) while doing input/output op. */
10793 if (i.base_reg
75e5731b
JB
10794 && i.base_reg->reg_type.bitfield.instance == RegD
10795 && i.base_reg->reg_type.bitfield.word
24eab124
AM
10796 && i.index_reg == 0
10797 && i.log2_scale_factor == 0
10798 && i.seg[i.mem_operands] == 0
40fb9820 10799 && !operand_type_check (i.types[this_operand], disp))
24eab124 10800 {
2fb5be8d 10801 i.types[this_operand] = i.base_reg->reg_type;
24eab124
AM
10802 return 1;
10803 }
10804
eecb386c
AM
10805 if (i386_index_check (operand_string) == 0)
10806 return 0;
c48dadc9 10807 i.flags[this_operand] |= Operand_Mem;
8325cc63
JB
10808 if (i.mem_operands == 0)
10809 i.memop1_string = xstrdup (operand_string);
24eab124
AM
10810 i.mem_operands++;
10811 }
10812 else
ce8a8b2f
AM
10813 {
10814 /* It's not a memory operand; argh! */
24eab124
AM
10815 as_bad (_("invalid char %s beginning operand %d `%s'"),
10816 output_invalid (*op_string),
10817 this_operand + 1,
10818 op_string);
10819 return 0;
10820 }
47926f60 10821 return 1; /* Normal return. */
252b5132
RH
10822}
10823\f
fa94de6b
RM
10824/* Calculate the maximum variable size (i.e., excluding fr_fix)
10825 that an rs_machine_dependent frag may reach. */
10826
10827unsigned int
10828i386_frag_max_var (fragS *frag)
10829{
10830 /* The only relaxable frags are for jumps.
10831 Unconditional jumps can grow by 4 bytes and others by 5 bytes. */
10832 gas_assert (frag->fr_type == rs_machine_dependent);
10833 return TYPE_FROM_RELAX_STATE (frag->fr_subtype) == UNCOND_JUMP ? 4 : 5;
10834}
10835
b084df0b
L
10836#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
10837static int
8dcea932 10838elf_symbol_resolved_in_segment_p (symbolS *fr_symbol, offsetT fr_var)
b084df0b
L
10839{
10840 /* STT_GNU_IFUNC symbol must go through PLT. */
10841 if ((symbol_get_bfdsym (fr_symbol)->flags
10842 & BSF_GNU_INDIRECT_FUNCTION) != 0)
10843 return 0;
10844
10845 if (!S_IS_EXTERNAL (fr_symbol))
10846 /* Symbol may be weak or local. */
10847 return !S_IS_WEAK (fr_symbol);
10848
8dcea932
L
10849 /* Global symbols with non-default visibility can't be preempted. */
10850 if (ELF_ST_VISIBILITY (S_GET_OTHER (fr_symbol)) != STV_DEFAULT)
10851 return 1;
10852
10853 if (fr_var != NO_RELOC)
10854 switch ((enum bfd_reloc_code_real) fr_var)
10855 {
10856 case BFD_RELOC_386_PLT32:
10857 case BFD_RELOC_X86_64_PLT32:
33eaf5de 10858 /* Symbol with PLT relocation may be preempted. */
8dcea932
L
10859 return 0;
10860 default:
10861 abort ();
10862 }
10863
b084df0b
L
10864 /* Global symbols with default visibility in a shared library may be
10865 preempted by another definition. */
8dcea932 10866 return !shared;
b084df0b
L
10867}
10868#endif
10869
e379e5f3
L
10870/* Return the next non-empty frag. */
10871
10872static fragS *
10873i386_next_non_empty_frag (fragS *fragP)
10874{
10875 /* There may be a frag with a ".fill 0" when there is no room in
10876 the current frag for frag_grow in output_insn. */
10877 for (fragP = fragP->fr_next;
10878 (fragP != NULL
10879 && fragP->fr_type == rs_fill
10880 && fragP->fr_fix == 0);
10881 fragP = fragP->fr_next)
10882 ;
10883 return fragP;
10884}
10885
10886/* Return the next jcc frag after BRANCH_PADDING. */
10887
10888static fragS *
10889i386_next_jcc_frag (fragS *fragP)
10890{
10891 if (!fragP)
10892 return NULL;
10893
10894 if (fragP->fr_type == rs_machine_dependent
10895 && (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
10896 == BRANCH_PADDING))
10897 {
10898 fragP = i386_next_non_empty_frag (fragP);
10899 if (fragP->fr_type != rs_machine_dependent)
10900 return NULL;
10901 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == COND_JUMP)
10902 return fragP;
10903 }
10904
10905 return NULL;
10906}
10907
10908/* Classify BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags. */
10909
10910static void
10911i386_classify_machine_dependent_frag (fragS *fragP)
10912{
10913 fragS *cmp_fragP;
10914 fragS *pad_fragP;
10915 fragS *branch_fragP;
10916 fragS *next_fragP;
10917 unsigned int max_prefix_length;
10918
10919 if (fragP->tc_frag_data.classified)
10920 return;
10921
10922 /* First scan for BRANCH_PADDING and FUSED_JCC_PADDING. Convert
10923 FUSED_JCC_PADDING and merge BRANCH_PADDING. */
10924 for (next_fragP = fragP;
10925 next_fragP != NULL;
10926 next_fragP = next_fragP->fr_next)
10927 {
10928 next_fragP->tc_frag_data.classified = 1;
10929 if (next_fragP->fr_type == rs_machine_dependent)
10930 switch (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype))
10931 {
10932 case BRANCH_PADDING:
10933 /* The BRANCH_PADDING frag must be followed by a branch
10934 frag. */
10935 branch_fragP = i386_next_non_empty_frag (next_fragP);
10936 next_fragP->tc_frag_data.u.branch_fragP = branch_fragP;
10937 break;
10938 case FUSED_JCC_PADDING:
10939 /* Check if this is a fused jcc:
10940 FUSED_JCC_PADDING
10941 CMP like instruction
10942 BRANCH_PADDING
10943 COND_JUMP
10944 */
10945 cmp_fragP = i386_next_non_empty_frag (next_fragP);
10946 pad_fragP = i386_next_non_empty_frag (cmp_fragP);
10947 branch_fragP = i386_next_jcc_frag (pad_fragP);
10948 if (branch_fragP)
10949 {
10950 /* The BRANCH_PADDING frag is merged with the
10951 FUSED_JCC_PADDING frag. */
10952 next_fragP->tc_frag_data.u.branch_fragP = branch_fragP;
10953 /* CMP like instruction size. */
10954 next_fragP->tc_frag_data.cmp_size = cmp_fragP->fr_fix;
10955 frag_wane (pad_fragP);
10956 /* Skip to branch_fragP. */
10957 next_fragP = branch_fragP;
10958 }
10959 else if (next_fragP->tc_frag_data.max_prefix_length)
10960 {
10961 /* Turn FUSED_JCC_PADDING into BRANCH_PREFIX if it isn't
10962 a fused jcc. */
10963 next_fragP->fr_subtype
10964 = ENCODE_RELAX_STATE (BRANCH_PREFIX, 0);
10965 next_fragP->tc_frag_data.max_bytes
10966 = next_fragP->tc_frag_data.max_prefix_length;
10967 /* This will be updated in the BRANCH_PREFIX scan. */
10968 next_fragP->tc_frag_data.max_prefix_length = 0;
10969 }
10970 else
10971 frag_wane (next_fragP);
10972 break;
10973 }
10974 }
10975
10976 /* Stop if there is no BRANCH_PREFIX. */
10977 if (!align_branch_prefix_size)
10978 return;
10979
10980 /* Scan for BRANCH_PREFIX. */
10981 for (; fragP != NULL; fragP = fragP->fr_next)
10982 {
10983 if (fragP->fr_type != rs_machine_dependent
10984 || (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
10985 != BRANCH_PREFIX))
10986 continue;
10987
10988 /* Count all BRANCH_PREFIX frags before BRANCH_PADDING and
10989 COND_JUMP_PREFIX. */
10990 max_prefix_length = 0;
10991 for (next_fragP = fragP;
10992 next_fragP != NULL;
10993 next_fragP = next_fragP->fr_next)
10994 {
10995 if (next_fragP->fr_type == rs_fill)
10996 /* Skip rs_fill frags. */
10997 continue;
10998 else if (next_fragP->fr_type != rs_machine_dependent)
10999 /* Stop for all other frags. */
11000 break;
11001
11002 /* rs_machine_dependent frags. */
11003 if (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11004 == BRANCH_PREFIX)
11005 {
11006 /* Count BRANCH_PREFIX frags. */
11007 if (max_prefix_length >= MAX_FUSED_JCC_PADDING_SIZE)
11008 {
11009 max_prefix_length = MAX_FUSED_JCC_PADDING_SIZE;
11010 frag_wane (next_fragP);
11011 }
11012 else
11013 max_prefix_length
11014 += next_fragP->tc_frag_data.max_bytes;
11015 }
11016 else if ((TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11017 == BRANCH_PADDING)
11018 || (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11019 == FUSED_JCC_PADDING))
11020 {
11021 /* Stop at BRANCH_PADDING and FUSED_JCC_PADDING. */
11022 fragP->tc_frag_data.u.padding_fragP = next_fragP;
11023 break;
11024 }
11025 else
11026 /* Stop for other rs_machine_dependent frags. */
11027 break;
11028 }
11029
11030 fragP->tc_frag_data.max_prefix_length = max_prefix_length;
11031
11032 /* Skip to the next frag. */
11033 fragP = next_fragP;
11034 }
11035}
11036
11037/* Compute padding size for
11038
11039 FUSED_JCC_PADDING
11040 CMP like instruction
11041 BRANCH_PADDING
11042 COND_JUMP/UNCOND_JUMP
11043
11044 or
11045
11046 BRANCH_PADDING
11047 COND_JUMP/UNCOND_JUMP
11048 */
11049
11050static int
11051i386_branch_padding_size (fragS *fragP, offsetT address)
11052{
11053 unsigned int offset, size, padding_size;
11054 fragS *branch_fragP = fragP->tc_frag_data.u.branch_fragP;
11055
11056 /* The start address of the BRANCH_PADDING or FUSED_JCC_PADDING frag. */
11057 if (!address)
11058 address = fragP->fr_address;
11059 address += fragP->fr_fix;
11060
11061 /* CMP like instrunction size. */
11062 size = fragP->tc_frag_data.cmp_size;
11063
11064 /* The base size of the branch frag. */
11065 size += branch_fragP->fr_fix;
11066
11067 /* Add opcode and displacement bytes for the rs_machine_dependent
11068 branch frag. */
11069 if (branch_fragP->fr_type == rs_machine_dependent)
11070 size += md_relax_table[branch_fragP->fr_subtype].rlx_length;
11071
11072 /* Check if branch is within boundary and doesn't end at the last
11073 byte. */
11074 offset = address & ((1U << align_branch_power) - 1);
11075 if ((offset + size) >= (1U << align_branch_power))
11076 /* Padding needed to avoid crossing boundary. */
11077 padding_size = (1U << align_branch_power) - offset;
11078 else
11079 /* No padding needed. */
11080 padding_size = 0;
11081
11082 /* The return value may be saved in tc_frag_data.length which is
11083 unsigned byte. */
11084 if (!fits_in_unsigned_byte (padding_size))
11085 abort ();
11086
11087 return padding_size;
11088}
11089
11090/* i386_generic_table_relax_frag()
11091
11092 Handle BRANCH_PADDING, BRANCH_PREFIX and FUSED_JCC_PADDING frags to
11093 grow/shrink padding to align branch frags. Hand others to
11094 relax_frag(). */
11095
11096long
11097i386_generic_table_relax_frag (segT segment, fragS *fragP, long stretch)
11098{
11099 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11100 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
11101 {
11102 long padding_size = i386_branch_padding_size (fragP, 0);
11103 long grow = padding_size - fragP->tc_frag_data.length;
11104
11105 /* When the BRANCH_PREFIX frag is used, the computed address
11106 must match the actual address and there should be no padding. */
11107 if (fragP->tc_frag_data.padding_address
11108 && (fragP->tc_frag_data.padding_address != fragP->fr_address
11109 || padding_size))
11110 abort ();
11111
11112 /* Update the padding size. */
11113 if (grow)
11114 fragP->tc_frag_data.length = padding_size;
11115
11116 return grow;
11117 }
11118 else if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11119 {
11120 fragS *padding_fragP, *next_fragP;
11121 long padding_size, left_size, last_size;
11122
11123 padding_fragP = fragP->tc_frag_data.u.padding_fragP;
11124 if (!padding_fragP)
11125 /* Use the padding set by the leading BRANCH_PREFIX frag. */
11126 return (fragP->tc_frag_data.length
11127 - fragP->tc_frag_data.last_length);
11128
11129 /* Compute the relative address of the padding frag in the very
11130 first time where the BRANCH_PREFIX frag sizes are zero. */
11131 if (!fragP->tc_frag_data.padding_address)
11132 fragP->tc_frag_data.padding_address
11133 = padding_fragP->fr_address - (fragP->fr_address - stretch);
11134
11135 /* First update the last length from the previous interation. */
11136 left_size = fragP->tc_frag_data.prefix_length;
11137 for (next_fragP = fragP;
11138 next_fragP != padding_fragP;
11139 next_fragP = next_fragP->fr_next)
11140 if (next_fragP->fr_type == rs_machine_dependent
11141 && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11142 == BRANCH_PREFIX))
11143 {
11144 if (left_size)
11145 {
11146 int max = next_fragP->tc_frag_data.max_bytes;
11147 if (max)
11148 {
11149 int size;
11150 if (max > left_size)
11151 size = left_size;
11152 else
11153 size = max;
11154 left_size -= size;
11155 next_fragP->tc_frag_data.last_length = size;
11156 }
11157 }
11158 else
11159 next_fragP->tc_frag_data.last_length = 0;
11160 }
11161
11162 /* Check the padding size for the padding frag. */
11163 padding_size = i386_branch_padding_size
11164 (padding_fragP, (fragP->fr_address
11165 + fragP->tc_frag_data.padding_address));
11166
11167 last_size = fragP->tc_frag_data.prefix_length;
11168 /* Check if there is change from the last interation. */
11169 if (padding_size == last_size)
11170 {
11171 /* Update the expected address of the padding frag. */
11172 padding_fragP->tc_frag_data.padding_address
11173 = (fragP->fr_address + padding_size
11174 + fragP->tc_frag_data.padding_address);
11175 return 0;
11176 }
11177
11178 if (padding_size > fragP->tc_frag_data.max_prefix_length)
11179 {
11180 /* No padding if there is no sufficient room. Clear the
11181 expected address of the padding frag. */
11182 padding_fragP->tc_frag_data.padding_address = 0;
11183 padding_size = 0;
11184 }
11185 else
11186 /* Store the expected address of the padding frag. */
11187 padding_fragP->tc_frag_data.padding_address
11188 = (fragP->fr_address + padding_size
11189 + fragP->tc_frag_data.padding_address);
11190
11191 fragP->tc_frag_data.prefix_length = padding_size;
11192
11193 /* Update the length for the current interation. */
11194 left_size = padding_size;
11195 for (next_fragP = fragP;
11196 next_fragP != padding_fragP;
11197 next_fragP = next_fragP->fr_next)
11198 if (next_fragP->fr_type == rs_machine_dependent
11199 && (TYPE_FROM_RELAX_STATE (next_fragP->fr_subtype)
11200 == BRANCH_PREFIX))
11201 {
11202 if (left_size)
11203 {
11204 int max = next_fragP->tc_frag_data.max_bytes;
11205 if (max)
11206 {
11207 int size;
11208 if (max > left_size)
11209 size = left_size;
11210 else
11211 size = max;
11212 left_size -= size;
11213 next_fragP->tc_frag_data.length = size;
11214 }
11215 }
11216 else
11217 next_fragP->tc_frag_data.length = 0;
11218 }
11219
11220 return (fragP->tc_frag_data.length
11221 - fragP->tc_frag_data.last_length);
11222 }
11223 return relax_frag (segment, fragP, stretch);
11224}
11225
ee7fcc42
AM
11226/* md_estimate_size_before_relax()
11227
11228 Called just before relax() for rs_machine_dependent frags. The x86
11229 assembler uses these frags to handle variable size jump
11230 instructions.
11231
11232 Any symbol that is now undefined will not become defined.
11233 Return the correct fr_subtype in the frag.
11234 Return the initial "guess for variable size of frag" to caller.
11235 The guess is actually the growth beyond the fixed part. Whatever
11236 we do to grow the fixed or variable part contributes to our
11237 returned value. */
11238
252b5132 11239int
7016a5d5 11240md_estimate_size_before_relax (fragS *fragP, segT segment)
252b5132 11241{
e379e5f3
L
11242 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11243 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX
11244 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING)
11245 {
11246 i386_classify_machine_dependent_frag (fragP);
11247 return fragP->tc_frag_data.length;
11248 }
11249
252b5132 11250 /* We've already got fragP->fr_subtype right; all we have to do is
b98ef147
AM
11251 check for un-relaxable symbols. On an ELF system, we can't relax
11252 an externally visible symbol, because it may be overridden by a
11253 shared library. */
11254 if (S_GET_SEGMENT (fragP->fr_symbol) != segment
6d249963 11255#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 11256 || (IS_ELF
8dcea932
L
11257 && !elf_symbol_resolved_in_segment_p (fragP->fr_symbol,
11258 fragP->fr_var))
fbeb56a4
DK
11259#endif
11260#if defined (OBJ_COFF) && defined (TE_PE)
7ab9ffdd 11261 || (OUTPUT_FLAVOR == bfd_target_coff_flavour
fbeb56a4 11262 && S_IS_WEAK (fragP->fr_symbol))
b98ef147
AM
11263#endif
11264 )
252b5132 11265 {
b98ef147
AM
11266 /* Symbol is undefined in this segment, or we need to keep a
11267 reloc so that weak symbols can be overridden. */
11268 int size = (fragP->fr_subtype & CODE16) ? 2 : 4;
f86103b7 11269 enum bfd_reloc_code_real reloc_type;
ee7fcc42
AM
11270 unsigned char *opcode;
11271 int old_fr_fix;
f6af82bd 11272
ee7fcc42 11273 if (fragP->fr_var != NO_RELOC)
1e9cc1c2 11274 reloc_type = (enum bfd_reloc_code_real) fragP->fr_var;
b98ef147 11275 else if (size == 2)
f6af82bd 11276 reloc_type = BFD_RELOC_16_PCREL;
bd7ab16b
L
11277#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11278 else if (need_plt32_p (fragP->fr_symbol))
11279 reloc_type = BFD_RELOC_X86_64_PLT32;
11280#endif
f6af82bd
AM
11281 else
11282 reloc_type = BFD_RELOC_32_PCREL;
252b5132 11283
ee7fcc42
AM
11284 old_fr_fix = fragP->fr_fix;
11285 opcode = (unsigned char *) fragP->fr_opcode;
11286
fddf5b5b 11287 switch (TYPE_FROM_RELAX_STATE (fragP->fr_subtype))
252b5132 11288 {
fddf5b5b
AM
11289 case UNCOND_JUMP:
11290 /* Make jmp (0xeb) a (d)word displacement jump. */
47926f60 11291 opcode[0] = 0xe9;
252b5132 11292 fragP->fr_fix += size;
062cd5e7
AS
11293 fix_new (fragP, old_fr_fix, size,
11294 fragP->fr_symbol,
11295 fragP->fr_offset, 1,
11296 reloc_type);
252b5132
RH
11297 break;
11298
fddf5b5b 11299 case COND_JUMP86:
412167cb
AM
11300 if (size == 2
11301 && (!no_cond_jump_promotion || fragP->fr_var != NO_RELOC))
fddf5b5b
AM
11302 {
11303 /* Negate the condition, and branch past an
11304 unconditional jump. */
11305 opcode[0] ^= 1;
11306 opcode[1] = 3;
11307 /* Insert an unconditional jump. */
11308 opcode[2] = 0xe9;
11309 /* We added two extra opcode bytes, and have a two byte
11310 offset. */
11311 fragP->fr_fix += 2 + 2;
062cd5e7
AS
11312 fix_new (fragP, old_fr_fix + 2, 2,
11313 fragP->fr_symbol,
11314 fragP->fr_offset, 1,
11315 reloc_type);
fddf5b5b
AM
11316 break;
11317 }
11318 /* Fall through. */
11319
11320 case COND_JUMP:
412167cb
AM
11321 if (no_cond_jump_promotion && fragP->fr_var == NO_RELOC)
11322 {
3e02c1cc
AM
11323 fixS *fixP;
11324
412167cb 11325 fragP->fr_fix += 1;
3e02c1cc
AM
11326 fixP = fix_new (fragP, old_fr_fix, 1,
11327 fragP->fr_symbol,
11328 fragP->fr_offset, 1,
11329 BFD_RELOC_8_PCREL);
11330 fixP->fx_signed = 1;
412167cb
AM
11331 break;
11332 }
93c2a809 11333
24eab124 11334 /* This changes the byte-displacement jump 0x7N
fddf5b5b 11335 to the (d)word-displacement jump 0x0f,0x8N. */
252b5132 11336 opcode[1] = opcode[0] + 0x10;
f6af82bd 11337 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
47926f60
KH
11338 /* We've added an opcode byte. */
11339 fragP->fr_fix += 1 + size;
062cd5e7
AS
11340 fix_new (fragP, old_fr_fix + 1, size,
11341 fragP->fr_symbol,
11342 fragP->fr_offset, 1,
11343 reloc_type);
252b5132 11344 break;
fddf5b5b
AM
11345
11346 default:
11347 BAD_CASE (fragP->fr_subtype);
11348 break;
252b5132
RH
11349 }
11350 frag_wane (fragP);
ee7fcc42 11351 return fragP->fr_fix - old_fr_fix;
252b5132 11352 }
93c2a809 11353
93c2a809
AM
11354 /* Guess size depending on current relax state. Initially the relax
11355 state will correspond to a short jump and we return 1, because
11356 the variable part of the frag (the branch offset) is one byte
11357 long. However, we can relax a section more than once and in that
11358 case we must either set fr_subtype back to the unrelaxed state,
11359 or return the value for the appropriate branch. */
11360 return md_relax_table[fragP->fr_subtype].rlx_length;
ee7fcc42
AM
11361}
11362
47926f60
KH
11363/* Called after relax() is finished.
11364
11365 In: Address of frag.
11366 fr_type == rs_machine_dependent.
11367 fr_subtype is what the address relaxed to.
11368
11369 Out: Any fixSs and constants are set up.
11370 Caller will turn frag into a ".space 0". */
11371
252b5132 11372void
7016a5d5
TG
11373md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec ATTRIBUTE_UNUSED,
11374 fragS *fragP)
252b5132 11375{
29b0f896 11376 unsigned char *opcode;
252b5132 11377 unsigned char *where_to_put_displacement = NULL;
847f7ad4
AM
11378 offsetT target_address;
11379 offsetT opcode_address;
252b5132 11380 unsigned int extension = 0;
847f7ad4 11381 offsetT displacement_from_opcode_start;
252b5132 11382
e379e5f3
L
11383 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PADDING
11384 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == FUSED_JCC_PADDING
11385 || TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11386 {
11387 /* Generate nop padding. */
11388 unsigned int size = fragP->tc_frag_data.length;
11389 if (size)
11390 {
11391 if (size > fragP->tc_frag_data.max_bytes)
11392 abort ();
11393
11394 if (flag_debug)
11395 {
11396 const char *msg;
11397 const char *branch = "branch";
11398 const char *prefix = "";
11399 fragS *padding_fragP;
11400 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype)
11401 == BRANCH_PREFIX)
11402 {
11403 padding_fragP = fragP->tc_frag_data.u.padding_fragP;
11404 switch (fragP->tc_frag_data.default_prefix)
11405 {
11406 default:
11407 abort ();
11408 break;
11409 case CS_PREFIX_OPCODE:
11410 prefix = " cs";
11411 break;
11412 case DS_PREFIX_OPCODE:
11413 prefix = " ds";
11414 break;
11415 case ES_PREFIX_OPCODE:
11416 prefix = " es";
11417 break;
11418 case FS_PREFIX_OPCODE:
11419 prefix = " fs";
11420 break;
11421 case GS_PREFIX_OPCODE:
11422 prefix = " gs";
11423 break;
11424 case SS_PREFIX_OPCODE:
11425 prefix = " ss";
11426 break;
11427 }
11428 if (padding_fragP)
11429 msg = _("%s:%u: add %d%s at 0x%llx to align "
11430 "%s within %d-byte boundary\n");
11431 else
11432 msg = _("%s:%u: add additional %d%s at 0x%llx to "
11433 "align %s within %d-byte boundary\n");
11434 }
11435 else
11436 {
11437 padding_fragP = fragP;
11438 msg = _("%s:%u: add %d%s-byte nop at 0x%llx to align "
11439 "%s within %d-byte boundary\n");
11440 }
11441
11442 if (padding_fragP)
11443 switch (padding_fragP->tc_frag_data.branch_type)
11444 {
11445 case align_branch_jcc:
11446 branch = "jcc";
11447 break;
11448 case align_branch_fused:
11449 branch = "fused jcc";
11450 break;
11451 case align_branch_jmp:
11452 branch = "jmp";
11453 break;
11454 case align_branch_call:
11455 branch = "call";
11456 break;
11457 case align_branch_indirect:
11458 branch = "indiret branch";
11459 break;
11460 case align_branch_ret:
11461 branch = "ret";
11462 break;
11463 default:
11464 break;
11465 }
11466
11467 fprintf (stdout, msg,
11468 fragP->fr_file, fragP->fr_line, size, prefix,
11469 (long long) fragP->fr_address, branch,
11470 1 << align_branch_power);
11471 }
11472 if (TYPE_FROM_RELAX_STATE (fragP->fr_subtype) == BRANCH_PREFIX)
11473 memset (fragP->fr_opcode,
11474 fragP->tc_frag_data.default_prefix, size);
11475 else
11476 i386_generate_nops (fragP, (char *) fragP->fr_opcode,
11477 size, 0);
11478 fragP->fr_fix += size;
11479 }
11480 return;
11481 }
11482
252b5132
RH
11483 opcode = (unsigned char *) fragP->fr_opcode;
11484
47926f60 11485 /* Address we want to reach in file space. */
252b5132 11486 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
252b5132 11487
47926f60 11488 /* Address opcode resides at in file space. */
252b5132
RH
11489 opcode_address = fragP->fr_address + fragP->fr_fix;
11490
47926f60 11491 /* Displacement from opcode start to fill into instruction. */
252b5132
RH
11492 displacement_from_opcode_start = target_address - opcode_address;
11493
fddf5b5b 11494 if ((fragP->fr_subtype & BIG) == 0)
252b5132 11495 {
47926f60
KH
11496 /* Don't have to change opcode. */
11497 extension = 1; /* 1 opcode + 1 displacement */
252b5132 11498 where_to_put_displacement = &opcode[1];
fddf5b5b
AM
11499 }
11500 else
11501 {
11502 if (no_cond_jump_promotion
11503 && TYPE_FROM_RELAX_STATE (fragP->fr_subtype) != UNCOND_JUMP)
4eed87de
AM
11504 as_warn_where (fragP->fr_file, fragP->fr_line,
11505 _("long jump required"));
252b5132 11506
fddf5b5b
AM
11507 switch (fragP->fr_subtype)
11508 {
11509 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG):
11510 extension = 4; /* 1 opcode + 4 displacement */
11511 opcode[0] = 0xe9;
11512 where_to_put_displacement = &opcode[1];
11513 break;
252b5132 11514
fddf5b5b
AM
11515 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16):
11516 extension = 2; /* 1 opcode + 2 displacement */
11517 opcode[0] = 0xe9;
11518 where_to_put_displacement = &opcode[1];
11519 break;
252b5132 11520
fddf5b5b
AM
11521 case ENCODE_RELAX_STATE (COND_JUMP, BIG):
11522 case ENCODE_RELAX_STATE (COND_JUMP86, BIG):
11523 extension = 5; /* 2 opcode + 4 displacement */
11524 opcode[1] = opcode[0] + 0x10;
11525 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
11526 where_to_put_displacement = &opcode[2];
11527 break;
252b5132 11528
fddf5b5b
AM
11529 case ENCODE_RELAX_STATE (COND_JUMP, BIG16):
11530 extension = 3; /* 2 opcode + 2 displacement */
11531 opcode[1] = opcode[0] + 0x10;
11532 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
11533 where_to_put_displacement = &opcode[2];
11534 break;
252b5132 11535
fddf5b5b
AM
11536 case ENCODE_RELAX_STATE (COND_JUMP86, BIG16):
11537 extension = 4;
11538 opcode[0] ^= 1;
11539 opcode[1] = 3;
11540 opcode[2] = 0xe9;
11541 where_to_put_displacement = &opcode[3];
11542 break;
11543
11544 default:
11545 BAD_CASE (fragP->fr_subtype);
11546 break;
11547 }
252b5132 11548 }
fddf5b5b 11549
7b81dfbb
AJ
11550 /* If size if less then four we are sure that the operand fits,
11551 but if it's 4, then it could be that the displacement is larger
11552 then -/+ 2GB. */
11553 if (DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype) == 4
11554 && object_64bit
11555 && ((addressT) (displacement_from_opcode_start - extension
4eed87de
AM
11556 + ((addressT) 1 << 31))
11557 > (((addressT) 2 << 31) - 1)))
7b81dfbb
AJ
11558 {
11559 as_bad_where (fragP->fr_file, fragP->fr_line,
11560 _("jump target out of range"));
11561 /* Make us emit 0. */
11562 displacement_from_opcode_start = extension;
11563 }
47926f60 11564 /* Now put displacement after opcode. */
252b5132
RH
11565 md_number_to_chars ((char *) where_to_put_displacement,
11566 (valueT) (displacement_from_opcode_start - extension),
fddf5b5b 11567 DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
252b5132
RH
11568 fragP->fr_fix += extension;
11569}
11570\f
7016a5d5 11571/* Apply a fixup (fixP) to segment data, once it has been determined
252b5132
RH
11572 by our caller that we have all the info we need to fix it up.
11573
7016a5d5
TG
11574 Parameter valP is the pointer to the value of the bits.
11575
252b5132
RH
11576 On the 386, immediates, displacements, and data pointers are all in
11577 the same (little-endian) format, so we don't need to care about which
11578 we are handling. */
11579
94f592af 11580void
7016a5d5 11581md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 11582{
94f592af 11583 char *p = fixP->fx_where + fixP->fx_frag->fr_literal;
c6682705 11584 valueT value = *valP;
252b5132 11585
f86103b7 11586#if !defined (TE_Mach)
93382f6d
AM
11587 if (fixP->fx_pcrel)
11588 {
11589 switch (fixP->fx_r_type)
11590 {
5865bb77
ILT
11591 default:
11592 break;
11593
d6ab8113
JB
11594 case BFD_RELOC_64:
11595 fixP->fx_r_type = BFD_RELOC_64_PCREL;
11596 break;
93382f6d 11597 case BFD_RELOC_32:
ae8887b5 11598 case BFD_RELOC_X86_64_32S:
93382f6d
AM
11599 fixP->fx_r_type = BFD_RELOC_32_PCREL;
11600 break;
11601 case BFD_RELOC_16:
11602 fixP->fx_r_type = BFD_RELOC_16_PCREL;
11603 break;
11604 case BFD_RELOC_8:
11605 fixP->fx_r_type = BFD_RELOC_8_PCREL;
11606 break;
11607 }
11608 }
252b5132 11609
a161fe53 11610 if (fixP->fx_addsy != NULL
31312f95 11611 && (fixP->fx_r_type == BFD_RELOC_32_PCREL
d6ab8113 11612 || fixP->fx_r_type == BFD_RELOC_64_PCREL
31312f95 11613 || fixP->fx_r_type == BFD_RELOC_16_PCREL
d258b828 11614 || fixP->fx_r_type == BFD_RELOC_8_PCREL)
31312f95 11615 && !use_rela_relocations)
252b5132 11616 {
31312f95
AM
11617 /* This is a hack. There should be a better way to handle this.
11618 This covers for the fact that bfd_install_relocation will
11619 subtract the current location (for partial_inplace, PC relative
11620 relocations); see more below. */
252b5132 11621#ifndef OBJ_AOUT
718ddfc0 11622 if (IS_ELF
252b5132
RH
11623#ifdef TE_PE
11624 || OUTPUT_FLAVOR == bfd_target_coff_flavour
11625#endif
11626 )
11627 value += fixP->fx_where + fixP->fx_frag->fr_address;
11628#endif
11629#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 11630 if (IS_ELF)
252b5132 11631 {
6539b54b 11632 segT sym_seg = S_GET_SEGMENT (fixP->fx_addsy);
2f66722d 11633
6539b54b 11634 if ((sym_seg == seg
2f66722d 11635 || (symbol_section_p (fixP->fx_addsy)
6539b54b 11636 && sym_seg != absolute_section))
af65af87 11637 && !generic_force_reloc (fixP))
2f66722d
AM
11638 {
11639 /* Yes, we add the values in twice. This is because
6539b54b
AM
11640 bfd_install_relocation subtracts them out again. I think
11641 bfd_install_relocation is broken, but I don't dare change
2f66722d
AM
11642 it. FIXME. */
11643 value += fixP->fx_where + fixP->fx_frag->fr_address;
11644 }
252b5132
RH
11645 }
11646#endif
11647#if defined (OBJ_COFF) && defined (TE_PE)
977cdf5a
NC
11648 /* For some reason, the PE format does not store a
11649 section address offset for a PC relative symbol. */
11650 if (S_GET_SEGMENT (fixP->fx_addsy) != seg
7be1c489 11651 || S_IS_WEAK (fixP->fx_addsy))
252b5132
RH
11652 value += md_pcrel_from (fixP);
11653#endif
11654 }
fbeb56a4 11655#if defined (OBJ_COFF) && defined (TE_PE)
f01c1a09
NC
11656 if (fixP->fx_addsy != NULL
11657 && S_IS_WEAK (fixP->fx_addsy)
11658 /* PR 16858: Do not modify weak function references. */
11659 && ! fixP->fx_pcrel)
fbeb56a4 11660 {
296a8689
NC
11661#if !defined (TE_PEP)
11662 /* For x86 PE weak function symbols are neither PC-relative
11663 nor do they set S_IS_FUNCTION. So the only reliable way
11664 to detect them is to check the flags of their containing
11665 section. */
11666 if (S_GET_SEGMENT (fixP->fx_addsy) != NULL
11667 && S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_CODE)
11668 ;
11669 else
11670#endif
fbeb56a4
DK
11671 value -= S_GET_VALUE (fixP->fx_addsy);
11672 }
11673#endif
252b5132
RH
11674
11675 /* Fix a few things - the dynamic linker expects certain values here,
0234cb7c 11676 and we must not disappoint it. */
252b5132 11677#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 11678 if (IS_ELF && fixP->fx_addsy)
47926f60
KH
11679 switch (fixP->fx_r_type)
11680 {
11681 case BFD_RELOC_386_PLT32:
3e73aa7c 11682 case BFD_RELOC_X86_64_PLT32:
b9519cfe
L
11683 /* Make the jump instruction point to the address of the operand.
11684 At runtime we merely add the offset to the actual PLT entry.
11685 NB: Subtract the offset size only for jump instructions. */
11686 if (fixP->fx_pcrel)
11687 value = -4;
47926f60 11688 break;
31312f95 11689
13ae64f3
JJ
11690 case BFD_RELOC_386_TLS_GD:
11691 case BFD_RELOC_386_TLS_LDM:
13ae64f3 11692 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
11693 case BFD_RELOC_386_TLS_IE:
11694 case BFD_RELOC_386_TLS_GOTIE:
67a4f2b7 11695 case BFD_RELOC_386_TLS_GOTDESC:
bffbf940
JJ
11696 case BFD_RELOC_X86_64_TLSGD:
11697 case BFD_RELOC_X86_64_TLSLD:
11698 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7 11699 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
00f7efb6
JJ
11700 value = 0; /* Fully resolved at runtime. No addend. */
11701 /* Fallthrough */
11702 case BFD_RELOC_386_TLS_LE:
11703 case BFD_RELOC_386_TLS_LDO_32:
11704 case BFD_RELOC_386_TLS_LE_32:
11705 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 11706 case BFD_RELOC_X86_64_DTPOFF64:
00f7efb6 11707 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113 11708 case BFD_RELOC_X86_64_TPOFF64:
00f7efb6
JJ
11709 S_SET_THREAD_LOCAL (fixP->fx_addsy);
11710 break;
11711
67a4f2b7
AO
11712 case BFD_RELOC_386_TLS_DESC_CALL:
11713 case BFD_RELOC_X86_64_TLSDESC_CALL:
11714 value = 0; /* Fully resolved at runtime. No addend. */
11715 S_SET_THREAD_LOCAL (fixP->fx_addsy);
11716 fixP->fx_done = 0;
11717 return;
11718
47926f60
KH
11719 case BFD_RELOC_VTABLE_INHERIT:
11720 case BFD_RELOC_VTABLE_ENTRY:
11721 fixP->fx_done = 0;
94f592af 11722 return;
47926f60
KH
11723
11724 default:
11725 break;
11726 }
11727#endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) */
c6682705 11728 *valP = value;
f86103b7 11729#endif /* !defined (TE_Mach) */
3e73aa7c 11730
3e73aa7c 11731 /* Are we finished with this relocation now? */
c6682705 11732 if (fixP->fx_addsy == NULL)
3e73aa7c 11733 fixP->fx_done = 1;
fbeb56a4
DK
11734#if defined (OBJ_COFF) && defined (TE_PE)
11735 else if (fixP->fx_addsy != NULL && S_IS_WEAK (fixP->fx_addsy))
11736 {
11737 fixP->fx_done = 0;
11738 /* Remember value for tc_gen_reloc. */
11739 fixP->fx_addnumber = value;
11740 /* Clear out the frag for now. */
11741 value = 0;
11742 }
11743#endif
3e73aa7c
JH
11744 else if (use_rela_relocations)
11745 {
11746 fixP->fx_no_overflow = 1;
062cd5e7
AS
11747 /* Remember value for tc_gen_reloc. */
11748 fixP->fx_addnumber = value;
3e73aa7c
JH
11749 value = 0;
11750 }
f86103b7 11751
94f592af 11752 md_number_to_chars (p, value, fixP->fx_size);
252b5132 11753}
252b5132 11754\f
6d4af3c2 11755const char *
499ac353 11756md_atof (int type, char *litP, int *sizeP)
252b5132 11757{
499ac353
NC
11758 /* This outputs the LITTLENUMs in REVERSE order;
11759 in accord with the bigendian 386. */
11760 return ieee_md_atof (type, litP, sizeP, FALSE);
252b5132
RH
11761}
11762\f
2d545b82 11763static char output_invalid_buf[sizeof (unsigned char) * 2 + 6];
252b5132 11764
252b5132 11765static char *
e3bb37b5 11766output_invalid (int c)
252b5132 11767{
3882b010 11768 if (ISPRINT (c))
f9f21a03
L
11769 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
11770 "'%c'", c);
252b5132 11771 else
f9f21a03 11772 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
2d545b82 11773 "(0x%x)", (unsigned char) c);
252b5132
RH
11774 return output_invalid_buf;
11775}
11776
af6bdddf 11777/* REG_STRING starts *before* REGISTER_PREFIX. */
252b5132
RH
11778
11779static const reg_entry *
4d1bb795 11780parse_real_register (char *reg_string, char **end_op)
252b5132 11781{
af6bdddf
AM
11782 char *s = reg_string;
11783 char *p;
252b5132
RH
11784 char reg_name_given[MAX_REG_NAME_SIZE + 1];
11785 const reg_entry *r;
11786
11787 /* Skip possible REGISTER_PREFIX and possible whitespace. */
11788 if (*s == REGISTER_PREFIX)
11789 ++s;
11790
11791 if (is_space_char (*s))
11792 ++s;
11793
11794 p = reg_name_given;
af6bdddf 11795 while ((*p++ = register_chars[(unsigned char) *s]) != '\0')
252b5132
RH
11796 {
11797 if (p >= reg_name_given + MAX_REG_NAME_SIZE)
af6bdddf
AM
11798 return (const reg_entry *) NULL;
11799 s++;
252b5132
RH
11800 }
11801
6588847e
DN
11802 /* For naked regs, make sure that we are not dealing with an identifier.
11803 This prevents confusing an identifier like `eax_var' with register
11804 `eax'. */
11805 if (allow_naked_reg && identifier_chars[(unsigned char) *s])
11806 return (const reg_entry *) NULL;
11807
af6bdddf 11808 *end_op = s;
252b5132
RH
11809
11810 r = (const reg_entry *) hash_find (reg_hash, reg_name_given);
11811
5f47d35b 11812 /* Handle floating point regs, allowing spaces in the (i) part. */
47926f60 11813 if (r == i386_regtab /* %st is first entry of table */)
5f47d35b 11814 {
0e0eea78
JB
11815 if (!cpu_arch_flags.bitfield.cpu8087
11816 && !cpu_arch_flags.bitfield.cpu287
11817 && !cpu_arch_flags.bitfield.cpu387)
11818 return (const reg_entry *) NULL;
11819
5f47d35b
AM
11820 if (is_space_char (*s))
11821 ++s;
11822 if (*s == '(')
11823 {
af6bdddf 11824 ++s;
5f47d35b
AM
11825 if (is_space_char (*s))
11826 ++s;
11827 if (*s >= '0' && *s <= '7')
11828 {
db557034 11829 int fpr = *s - '0';
af6bdddf 11830 ++s;
5f47d35b
AM
11831 if (is_space_char (*s))
11832 ++s;
11833 if (*s == ')')
11834 {
11835 *end_op = s + 1;
1e9cc1c2 11836 r = (const reg_entry *) hash_find (reg_hash, "st(0)");
db557034
AM
11837 know (r);
11838 return r + fpr;
5f47d35b 11839 }
5f47d35b 11840 }
47926f60 11841 /* We have "%st(" then garbage. */
5f47d35b
AM
11842 return (const reg_entry *) NULL;
11843 }
11844 }
11845
a60de03c
JB
11846 if (r == NULL || allow_pseudo_reg)
11847 return r;
11848
0dfbf9d7 11849 if (operand_type_all_zero (&r->reg_type))
a60de03c
JB
11850 return (const reg_entry *) NULL;
11851
dc821c5f 11852 if ((r->reg_type.bitfield.dword
00cee14f 11853 || (r->reg_type.bitfield.class == SReg && r->reg_num > 3)
4a5c67ed
JB
11854 || r->reg_type.bitfield.class == RegCR
11855 || r->reg_type.bitfield.class == RegDR
11856 || r->reg_type.bitfield.class == RegTR)
192dc9c6
JB
11857 && !cpu_arch_flags.bitfield.cpui386)
11858 return (const reg_entry *) NULL;
11859
3528c362 11860 if (r->reg_type.bitfield.class == RegMMX && !cpu_arch_flags.bitfield.cpummx)
192dc9c6
JB
11861 return (const reg_entry *) NULL;
11862
6e041cf4
JB
11863 if (!cpu_arch_flags.bitfield.cpuavx512f)
11864 {
f74a6307
JB
11865 if (r->reg_type.bitfield.zmmword
11866 || r->reg_type.bitfield.class == RegMask)
6e041cf4 11867 return (const reg_entry *) NULL;
40f12533 11868
6e041cf4
JB
11869 if (!cpu_arch_flags.bitfield.cpuavx)
11870 {
11871 if (r->reg_type.bitfield.ymmword)
11872 return (const reg_entry *) NULL;
1848e567 11873
6e041cf4
JB
11874 if (!cpu_arch_flags.bitfield.cpusse && r->reg_type.bitfield.xmmword)
11875 return (const reg_entry *) NULL;
11876 }
11877 }
43234a1e 11878
f74a6307 11879 if (r->reg_type.bitfield.class == RegBND && !cpu_arch_flags.bitfield.cpumpx)
1adf7f56
JB
11880 return (const reg_entry *) NULL;
11881
db51cc60 11882 /* Don't allow fake index register unless allow_index_reg isn't 0. */
e968fc9b 11883 if (!allow_index_reg && r->reg_num == RegIZ)
db51cc60
L
11884 return (const reg_entry *) NULL;
11885
1d3f8286
JB
11886 /* Upper 16 vector registers are only available with VREX in 64bit
11887 mode, and require EVEX encoding. */
11888 if (r->reg_flags & RegVRex)
43234a1e 11889 {
e951d5ca 11890 if (!cpu_arch_flags.bitfield.cpuavx512f
43234a1e
L
11891 || flag_code != CODE_64BIT)
11892 return (const reg_entry *) NULL;
1d3f8286
JB
11893
11894 i.vec_encoding = vex_encoding_evex;
43234a1e
L
11895 }
11896
4787f4a5 11897 if (((r->reg_flags & (RegRex64 | RegRex)) || r->reg_type.bitfield.qword)
4a5c67ed 11898 && (!cpu_arch_flags.bitfield.cpulm || r->reg_type.bitfield.class != RegCR)
1ae00879 11899 && flag_code != CODE_64BIT)
20f0a1fc 11900 return (const reg_entry *) NULL;
1ae00879 11901
00cee14f
JB
11902 if (r->reg_type.bitfield.class == SReg && r->reg_num == RegFlat
11903 && !intel_syntax)
b7240065
JB
11904 return (const reg_entry *) NULL;
11905
252b5132
RH
11906 return r;
11907}
4d1bb795
JB
11908
11909/* REG_STRING starts *before* REGISTER_PREFIX. */
11910
11911static const reg_entry *
11912parse_register (char *reg_string, char **end_op)
11913{
11914 const reg_entry *r;
11915
11916 if (*reg_string == REGISTER_PREFIX || allow_naked_reg)
11917 r = parse_real_register (reg_string, end_op);
11918 else
11919 r = NULL;
11920 if (!r)
11921 {
11922 char *save = input_line_pointer;
11923 char c;
11924 symbolS *symbolP;
11925
11926 input_line_pointer = reg_string;
d02603dc 11927 c = get_symbol_name (&reg_string);
4d1bb795
JB
11928 symbolP = symbol_find (reg_string);
11929 if (symbolP && S_GET_SEGMENT (symbolP) == reg_section)
11930 {
11931 const expressionS *e = symbol_get_value_expression (symbolP);
11932
0398aac5 11933 know (e->X_op == O_register);
4eed87de 11934 know (e->X_add_number >= 0
c3fe08fa 11935 && (valueT) e->X_add_number < i386_regtab_size);
4d1bb795 11936 r = i386_regtab + e->X_add_number;
d3bb6b49 11937 if ((r->reg_flags & RegVRex))
86fa6981 11938 i.vec_encoding = vex_encoding_evex;
4d1bb795
JB
11939 *end_op = input_line_pointer;
11940 }
11941 *input_line_pointer = c;
11942 input_line_pointer = save;
11943 }
11944 return r;
11945}
11946
11947int
11948i386_parse_name (char *name, expressionS *e, char *nextcharP)
11949{
11950 const reg_entry *r;
11951 char *end = input_line_pointer;
11952
11953 *end = *nextcharP;
11954 r = parse_register (name, &input_line_pointer);
11955 if (r && end <= input_line_pointer)
11956 {
11957 *nextcharP = *input_line_pointer;
11958 *input_line_pointer = 0;
11959 e->X_op = O_register;
11960 e->X_add_number = r - i386_regtab;
11961 return 1;
11962 }
11963 input_line_pointer = end;
11964 *end = 0;
ee86248c 11965 return intel_syntax ? i386_intel_parse_name (name, e) : 0;
4d1bb795
JB
11966}
11967
11968void
11969md_operand (expressionS *e)
11970{
ee86248c
JB
11971 char *end;
11972 const reg_entry *r;
4d1bb795 11973
ee86248c
JB
11974 switch (*input_line_pointer)
11975 {
11976 case REGISTER_PREFIX:
11977 r = parse_real_register (input_line_pointer, &end);
4d1bb795
JB
11978 if (r)
11979 {
11980 e->X_op = O_register;
11981 e->X_add_number = r - i386_regtab;
11982 input_line_pointer = end;
11983 }
ee86248c
JB
11984 break;
11985
11986 case '[':
9c2799c2 11987 gas_assert (intel_syntax);
ee86248c
JB
11988 end = input_line_pointer++;
11989 expression (e);
11990 if (*input_line_pointer == ']')
11991 {
11992 ++input_line_pointer;
11993 e->X_op_symbol = make_expr_symbol (e);
11994 e->X_add_symbol = NULL;
11995 e->X_add_number = 0;
11996 e->X_op = O_index;
11997 }
11998 else
11999 {
12000 e->X_op = O_absent;
12001 input_line_pointer = end;
12002 }
12003 break;
4d1bb795
JB
12004 }
12005}
12006
252b5132 12007\f
4cc782b5 12008#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
b6f8c7c4 12009const char *md_shortopts = "kVQ:sqnO::";
252b5132 12010#else
b6f8c7c4 12011const char *md_shortopts = "qnO::";
252b5132 12012#endif
6e0b89ee 12013
3e73aa7c 12014#define OPTION_32 (OPTION_MD_BASE + 0)
b3b91714
AM
12015#define OPTION_64 (OPTION_MD_BASE + 1)
12016#define OPTION_DIVIDE (OPTION_MD_BASE + 2)
9103f4f4
L
12017#define OPTION_MARCH (OPTION_MD_BASE + 3)
12018#define OPTION_MTUNE (OPTION_MD_BASE + 4)
1efbbeb4
L
12019#define OPTION_MMNEMONIC (OPTION_MD_BASE + 5)
12020#define OPTION_MSYNTAX (OPTION_MD_BASE + 6)
12021#define OPTION_MINDEX_REG (OPTION_MD_BASE + 7)
12022#define OPTION_MNAKED_REG (OPTION_MD_BASE + 8)
bd5dea88 12023#define OPTION_MRELAX_RELOCATIONS (OPTION_MD_BASE + 9)
c0f3af97 12024#define OPTION_MSSE2AVX (OPTION_MD_BASE + 10)
daf50ae7 12025#define OPTION_MSSE_CHECK (OPTION_MD_BASE + 11)
7bab8ab5
JB
12026#define OPTION_MOPERAND_CHECK (OPTION_MD_BASE + 12)
12027#define OPTION_MAVXSCALAR (OPTION_MD_BASE + 13)
12028#define OPTION_X32 (OPTION_MD_BASE + 14)
7e8b059b 12029#define OPTION_MADD_BND_PREFIX (OPTION_MD_BASE + 15)
43234a1e
L
12030#define OPTION_MEVEXLIG (OPTION_MD_BASE + 16)
12031#define OPTION_MEVEXWIG (OPTION_MD_BASE + 17)
167ad85b 12032#define OPTION_MBIG_OBJ (OPTION_MD_BASE + 18)
d1982f93 12033#define OPTION_MOMIT_LOCK_PREFIX (OPTION_MD_BASE + 19)
d3d3c6db 12034#define OPTION_MEVEXRCIG (OPTION_MD_BASE + 20)
8dcea932 12035#define OPTION_MSHARED (OPTION_MD_BASE + 21)
5db04b09
L
12036#define OPTION_MAMD64 (OPTION_MD_BASE + 22)
12037#define OPTION_MINTEL64 (OPTION_MD_BASE + 23)
e4e00185 12038#define OPTION_MFENCE_AS_LOCK_ADD (OPTION_MD_BASE + 24)
b4a3a7b4 12039#define OPTION_X86_USED_NOTE (OPTION_MD_BASE + 25)
03751133 12040#define OPTION_MVEXWIG (OPTION_MD_BASE + 26)
e379e5f3
L
12041#define OPTION_MALIGN_BRANCH_BOUNDARY (OPTION_MD_BASE + 27)
12042#define OPTION_MALIGN_BRANCH_PREFIX_SIZE (OPTION_MD_BASE + 28)
12043#define OPTION_MALIGN_BRANCH (OPTION_MD_BASE + 29)
76cf450b 12044#define OPTION_MBRANCHES_WITH_32B_BOUNDARIES (OPTION_MD_BASE + 30)
b3b91714 12045
99ad8390
NC
12046struct option md_longopts[] =
12047{
3e73aa7c 12048 {"32", no_argument, NULL, OPTION_32},
321098a5 12049#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 12050 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c 12051 {"64", no_argument, NULL, OPTION_64},
351f65ca
L
12052#endif
12053#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 12054 {"x32", no_argument, NULL, OPTION_X32},
8dcea932 12055 {"mshared", no_argument, NULL, OPTION_MSHARED},
b4a3a7b4 12056 {"mx86-used-note", required_argument, NULL, OPTION_X86_USED_NOTE},
6e0b89ee 12057#endif
b3b91714 12058 {"divide", no_argument, NULL, OPTION_DIVIDE},
9103f4f4
L
12059 {"march", required_argument, NULL, OPTION_MARCH},
12060 {"mtune", required_argument, NULL, OPTION_MTUNE},
1efbbeb4
L
12061 {"mmnemonic", required_argument, NULL, OPTION_MMNEMONIC},
12062 {"msyntax", required_argument, NULL, OPTION_MSYNTAX},
12063 {"mindex-reg", no_argument, NULL, OPTION_MINDEX_REG},
12064 {"mnaked-reg", no_argument, NULL, OPTION_MNAKED_REG},
c0f3af97 12065 {"msse2avx", no_argument, NULL, OPTION_MSSE2AVX},
daf50ae7 12066 {"msse-check", required_argument, NULL, OPTION_MSSE_CHECK},
7bab8ab5 12067 {"moperand-check", required_argument, NULL, OPTION_MOPERAND_CHECK},
539f890d 12068 {"mavxscalar", required_argument, NULL, OPTION_MAVXSCALAR},
03751133 12069 {"mvexwig", required_argument, NULL, OPTION_MVEXWIG},
7e8b059b 12070 {"madd-bnd-prefix", no_argument, NULL, OPTION_MADD_BND_PREFIX},
43234a1e
L
12071 {"mevexlig", required_argument, NULL, OPTION_MEVEXLIG},
12072 {"mevexwig", required_argument, NULL, OPTION_MEVEXWIG},
167ad85b
TG
12073# if defined (TE_PE) || defined (TE_PEP)
12074 {"mbig-obj", no_argument, NULL, OPTION_MBIG_OBJ},
12075#endif
d1982f93 12076 {"momit-lock-prefix", required_argument, NULL, OPTION_MOMIT_LOCK_PREFIX},
e4e00185 12077 {"mfence-as-lock-add", required_argument, NULL, OPTION_MFENCE_AS_LOCK_ADD},
0cb4071e 12078 {"mrelax-relocations", required_argument, NULL, OPTION_MRELAX_RELOCATIONS},
d3d3c6db 12079 {"mevexrcig", required_argument, NULL, OPTION_MEVEXRCIG},
e379e5f3
L
12080 {"malign-branch-boundary", required_argument, NULL, OPTION_MALIGN_BRANCH_BOUNDARY},
12081 {"malign-branch-prefix-size", required_argument, NULL, OPTION_MALIGN_BRANCH_PREFIX_SIZE},
12082 {"malign-branch", required_argument, NULL, OPTION_MALIGN_BRANCH},
76cf450b 12083 {"mbranches-within-32B-boundaries", no_argument, NULL, OPTION_MBRANCHES_WITH_32B_BOUNDARIES},
5db04b09
L
12084 {"mamd64", no_argument, NULL, OPTION_MAMD64},
12085 {"mintel64", no_argument, NULL, OPTION_MINTEL64},
252b5132
RH
12086 {NULL, no_argument, NULL, 0}
12087};
12088size_t md_longopts_size = sizeof (md_longopts);
12089
12090int
17b9d67d 12091md_parse_option (int c, const char *arg)
252b5132 12092{
91d6fa6a 12093 unsigned int j;
e379e5f3 12094 char *arch, *next, *saved, *type;
9103f4f4 12095
252b5132
RH
12096 switch (c)
12097 {
12b55ccc
L
12098 case 'n':
12099 optimize_align_code = 0;
12100 break;
12101
a38cf1db
AM
12102 case 'q':
12103 quiet_warnings = 1;
252b5132
RH
12104 break;
12105
12106#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
a38cf1db
AM
12107 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
12108 should be emitted or not. FIXME: Not implemented. */
12109 case 'Q':
d4693039
JB
12110 if ((arg[0] != 'y' && arg[0] != 'n') || arg[1])
12111 return 0;
252b5132
RH
12112 break;
12113
12114 /* -V: SVR4 argument to print version ID. */
12115 case 'V':
12116 print_version_id ();
12117 break;
12118
a38cf1db
AM
12119 /* -k: Ignore for FreeBSD compatibility. */
12120 case 'k':
252b5132 12121 break;
4cc782b5
ILT
12122
12123 case 's':
12124 /* -s: On i386 Solaris, this tells the native assembler to use
29b0f896 12125 .stab instead of .stab.excl. We always use .stab anyhow. */
4cc782b5 12126 break;
8dcea932
L
12127
12128 case OPTION_MSHARED:
12129 shared = 1;
12130 break;
b4a3a7b4
L
12131
12132 case OPTION_X86_USED_NOTE:
12133 if (strcasecmp (arg, "yes") == 0)
12134 x86_used_note = 1;
12135 else if (strcasecmp (arg, "no") == 0)
12136 x86_used_note = 0;
12137 else
12138 as_fatal (_("invalid -mx86-used-note= option: `%s'"), arg);
12139 break;
12140
12141
99ad8390 12142#endif
321098a5 12143#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 12144 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c
JH
12145 case OPTION_64:
12146 {
12147 const char **list, **l;
12148
3e73aa7c
JH
12149 list = bfd_target_list ();
12150 for (l = list; *l != NULL; l++)
8620418b 12151 if (CONST_STRNEQ (*l, "elf64-x86-64")
99ad8390
NC
12152 || strcmp (*l, "coff-x86-64") == 0
12153 || strcmp (*l, "pe-x86-64") == 0
d382c579
TG
12154 || strcmp (*l, "pei-x86-64") == 0
12155 || strcmp (*l, "mach-o-x86-64") == 0)
6e0b89ee
AM
12156 {
12157 default_arch = "x86_64";
12158 break;
12159 }
3e73aa7c 12160 if (*l == NULL)
2b5d6a91 12161 as_fatal (_("no compiled in support for x86_64"));
3e73aa7c
JH
12162 free (list);
12163 }
12164 break;
12165#endif
252b5132 12166
351f65ca 12167#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 12168 case OPTION_X32:
351f65ca
L
12169 if (IS_ELF)
12170 {
12171 const char **list, **l;
12172
12173 list = bfd_target_list ();
12174 for (l = list; *l != NULL; l++)
12175 if (CONST_STRNEQ (*l, "elf32-x86-64"))
12176 {
12177 default_arch = "x86_64:32";
12178 break;
12179 }
12180 if (*l == NULL)
2b5d6a91 12181 as_fatal (_("no compiled in support for 32bit x86_64"));
351f65ca
L
12182 free (list);
12183 }
12184 else
12185 as_fatal (_("32bit x86_64 is only supported for ELF"));
12186 break;
12187#endif
12188
6e0b89ee
AM
12189 case OPTION_32:
12190 default_arch = "i386";
12191 break;
12192
b3b91714
AM
12193 case OPTION_DIVIDE:
12194#ifdef SVR4_COMMENT_CHARS
12195 {
12196 char *n, *t;
12197 const char *s;
12198
add39d23 12199 n = XNEWVEC (char, strlen (i386_comment_chars) + 1);
b3b91714
AM
12200 t = n;
12201 for (s = i386_comment_chars; *s != '\0'; s++)
12202 if (*s != '/')
12203 *t++ = *s;
12204 *t = '\0';
12205 i386_comment_chars = n;
12206 }
12207#endif
12208 break;
12209
9103f4f4 12210 case OPTION_MARCH:
293f5f65
L
12211 saved = xstrdup (arg);
12212 arch = saved;
12213 /* Allow -march=+nosse. */
12214 if (*arch == '+')
12215 arch++;
6305a203 12216 do
9103f4f4 12217 {
6305a203 12218 if (*arch == '.')
2b5d6a91 12219 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
12220 next = strchr (arch, '+');
12221 if (next)
12222 *next++ = '\0';
91d6fa6a 12223 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 12224 {
91d6fa6a 12225 if (strcmp (arch, cpu_arch [j].name) == 0)
ccc9c027 12226 {
6305a203 12227 /* Processor. */
1ded5609
JB
12228 if (! cpu_arch[j].flags.bitfield.cpui386)
12229 continue;
12230
91d6fa6a 12231 cpu_arch_name = cpu_arch[j].name;
6305a203 12232 cpu_sub_arch_name = NULL;
91d6fa6a
NC
12233 cpu_arch_flags = cpu_arch[j].flags;
12234 cpu_arch_isa = cpu_arch[j].type;
12235 cpu_arch_isa_flags = cpu_arch[j].flags;
6305a203
L
12236 if (!cpu_arch_tune_set)
12237 {
12238 cpu_arch_tune = cpu_arch_isa;
12239 cpu_arch_tune_flags = cpu_arch_isa_flags;
12240 }
12241 break;
12242 }
91d6fa6a
NC
12243 else if (*cpu_arch [j].name == '.'
12244 && strcmp (arch, cpu_arch [j].name + 1) == 0)
6305a203 12245 {
33eaf5de 12246 /* ISA extension. */
6305a203 12247 i386_cpu_flags flags;
309d3373 12248
293f5f65
L
12249 flags = cpu_flags_or (cpu_arch_flags,
12250 cpu_arch[j].flags);
81486035 12251
5b64d091 12252 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
6305a203
L
12253 {
12254 if (cpu_sub_arch_name)
12255 {
12256 char *name = cpu_sub_arch_name;
12257 cpu_sub_arch_name = concat (name,
91d6fa6a 12258 cpu_arch[j].name,
1bf57e9f 12259 (const char *) NULL);
6305a203
L
12260 free (name);
12261 }
12262 else
91d6fa6a 12263 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
6305a203 12264 cpu_arch_flags = flags;
a586129e 12265 cpu_arch_isa_flags = flags;
6305a203 12266 }
0089dace
L
12267 else
12268 cpu_arch_isa_flags
12269 = cpu_flags_or (cpu_arch_isa_flags,
12270 cpu_arch[j].flags);
6305a203 12271 break;
ccc9c027 12272 }
9103f4f4 12273 }
6305a203 12274
293f5f65
L
12275 if (j >= ARRAY_SIZE (cpu_arch))
12276 {
33eaf5de 12277 /* Disable an ISA extension. */
293f5f65
L
12278 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
12279 if (strcmp (arch, cpu_noarch [j].name) == 0)
12280 {
12281 i386_cpu_flags flags;
12282
12283 flags = cpu_flags_and_not (cpu_arch_flags,
12284 cpu_noarch[j].flags);
12285 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
12286 {
12287 if (cpu_sub_arch_name)
12288 {
12289 char *name = cpu_sub_arch_name;
12290 cpu_sub_arch_name = concat (arch,
12291 (const char *) NULL);
12292 free (name);
12293 }
12294 else
12295 cpu_sub_arch_name = xstrdup (arch);
12296 cpu_arch_flags = flags;
12297 cpu_arch_isa_flags = flags;
12298 }
12299 break;
12300 }
12301
12302 if (j >= ARRAY_SIZE (cpu_noarch))
12303 j = ARRAY_SIZE (cpu_arch);
12304 }
12305
91d6fa6a 12306 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 12307 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
12308
12309 arch = next;
9103f4f4 12310 }
293f5f65
L
12311 while (next != NULL);
12312 free (saved);
9103f4f4
L
12313 break;
12314
12315 case OPTION_MTUNE:
12316 if (*arg == '.')
2b5d6a91 12317 as_fatal (_("invalid -mtune= option: `%s'"), arg);
91d6fa6a 12318 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 12319 {
91d6fa6a 12320 if (strcmp (arg, cpu_arch [j].name) == 0)
9103f4f4 12321 {
ccc9c027 12322 cpu_arch_tune_set = 1;
91d6fa6a
NC
12323 cpu_arch_tune = cpu_arch [j].type;
12324 cpu_arch_tune_flags = cpu_arch[j].flags;
9103f4f4
L
12325 break;
12326 }
12327 }
91d6fa6a 12328 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 12329 as_fatal (_("invalid -mtune= option: `%s'"), arg);
9103f4f4
L
12330 break;
12331
1efbbeb4
L
12332 case OPTION_MMNEMONIC:
12333 if (strcasecmp (arg, "att") == 0)
12334 intel_mnemonic = 0;
12335 else if (strcasecmp (arg, "intel") == 0)
12336 intel_mnemonic = 1;
12337 else
2b5d6a91 12338 as_fatal (_("invalid -mmnemonic= option: `%s'"), arg);
1efbbeb4
L
12339 break;
12340
12341 case OPTION_MSYNTAX:
12342 if (strcasecmp (arg, "att") == 0)
12343 intel_syntax = 0;
12344 else if (strcasecmp (arg, "intel") == 0)
12345 intel_syntax = 1;
12346 else
2b5d6a91 12347 as_fatal (_("invalid -msyntax= option: `%s'"), arg);
1efbbeb4
L
12348 break;
12349
12350 case OPTION_MINDEX_REG:
12351 allow_index_reg = 1;
12352 break;
12353
12354 case OPTION_MNAKED_REG:
12355 allow_naked_reg = 1;
12356 break;
12357
c0f3af97
L
12358 case OPTION_MSSE2AVX:
12359 sse2avx = 1;
12360 break;
12361
daf50ae7
L
12362 case OPTION_MSSE_CHECK:
12363 if (strcasecmp (arg, "error") == 0)
7bab8ab5 12364 sse_check = check_error;
daf50ae7 12365 else if (strcasecmp (arg, "warning") == 0)
7bab8ab5 12366 sse_check = check_warning;
daf50ae7 12367 else if (strcasecmp (arg, "none") == 0)
7bab8ab5 12368 sse_check = check_none;
daf50ae7 12369 else
2b5d6a91 12370 as_fatal (_("invalid -msse-check= option: `%s'"), arg);
daf50ae7
L
12371 break;
12372
7bab8ab5
JB
12373 case OPTION_MOPERAND_CHECK:
12374 if (strcasecmp (arg, "error") == 0)
12375 operand_check = check_error;
12376 else if (strcasecmp (arg, "warning") == 0)
12377 operand_check = check_warning;
12378 else if (strcasecmp (arg, "none") == 0)
12379 operand_check = check_none;
12380 else
12381 as_fatal (_("invalid -moperand-check= option: `%s'"), arg);
12382 break;
12383
539f890d
L
12384 case OPTION_MAVXSCALAR:
12385 if (strcasecmp (arg, "128") == 0)
12386 avxscalar = vex128;
12387 else if (strcasecmp (arg, "256") == 0)
12388 avxscalar = vex256;
12389 else
2b5d6a91 12390 as_fatal (_("invalid -mavxscalar= option: `%s'"), arg);
539f890d
L
12391 break;
12392
03751133
L
12393 case OPTION_MVEXWIG:
12394 if (strcmp (arg, "0") == 0)
40c9c8de 12395 vexwig = vexw0;
03751133 12396 else if (strcmp (arg, "1") == 0)
40c9c8de 12397 vexwig = vexw1;
03751133
L
12398 else
12399 as_fatal (_("invalid -mvexwig= option: `%s'"), arg);
12400 break;
12401
7e8b059b
L
12402 case OPTION_MADD_BND_PREFIX:
12403 add_bnd_prefix = 1;
12404 break;
12405
43234a1e
L
12406 case OPTION_MEVEXLIG:
12407 if (strcmp (arg, "128") == 0)
12408 evexlig = evexl128;
12409 else if (strcmp (arg, "256") == 0)
12410 evexlig = evexl256;
12411 else if (strcmp (arg, "512") == 0)
12412 evexlig = evexl512;
12413 else
12414 as_fatal (_("invalid -mevexlig= option: `%s'"), arg);
12415 break;
12416
d3d3c6db
IT
12417 case OPTION_MEVEXRCIG:
12418 if (strcmp (arg, "rne") == 0)
12419 evexrcig = rne;
12420 else if (strcmp (arg, "rd") == 0)
12421 evexrcig = rd;
12422 else if (strcmp (arg, "ru") == 0)
12423 evexrcig = ru;
12424 else if (strcmp (arg, "rz") == 0)
12425 evexrcig = rz;
12426 else
12427 as_fatal (_("invalid -mevexrcig= option: `%s'"), arg);
12428 break;
12429
43234a1e
L
12430 case OPTION_MEVEXWIG:
12431 if (strcmp (arg, "0") == 0)
12432 evexwig = evexw0;
12433 else if (strcmp (arg, "1") == 0)
12434 evexwig = evexw1;
12435 else
12436 as_fatal (_("invalid -mevexwig= option: `%s'"), arg);
12437 break;
12438
167ad85b
TG
12439# if defined (TE_PE) || defined (TE_PEP)
12440 case OPTION_MBIG_OBJ:
12441 use_big_obj = 1;
12442 break;
12443#endif
12444
d1982f93 12445 case OPTION_MOMIT_LOCK_PREFIX:
d022bddd
IT
12446 if (strcasecmp (arg, "yes") == 0)
12447 omit_lock_prefix = 1;
12448 else if (strcasecmp (arg, "no") == 0)
12449 omit_lock_prefix = 0;
12450 else
12451 as_fatal (_("invalid -momit-lock-prefix= option: `%s'"), arg);
12452 break;
12453
e4e00185
AS
12454 case OPTION_MFENCE_AS_LOCK_ADD:
12455 if (strcasecmp (arg, "yes") == 0)
12456 avoid_fence = 1;
12457 else if (strcasecmp (arg, "no") == 0)
12458 avoid_fence = 0;
12459 else
12460 as_fatal (_("invalid -mfence-as-lock-add= option: `%s'"), arg);
12461 break;
12462
0cb4071e
L
12463 case OPTION_MRELAX_RELOCATIONS:
12464 if (strcasecmp (arg, "yes") == 0)
12465 generate_relax_relocations = 1;
12466 else if (strcasecmp (arg, "no") == 0)
12467 generate_relax_relocations = 0;
12468 else
12469 as_fatal (_("invalid -mrelax-relocations= option: `%s'"), arg);
12470 break;
12471
e379e5f3
L
12472 case OPTION_MALIGN_BRANCH_BOUNDARY:
12473 {
12474 char *end;
12475 long int align = strtoul (arg, &end, 0);
12476 if (*end == '\0')
12477 {
12478 if (align == 0)
12479 {
12480 align_branch_power = 0;
12481 break;
12482 }
12483 else if (align >= 16)
12484 {
12485 int align_power;
12486 for (align_power = 0;
12487 (align & 1) == 0;
12488 align >>= 1, align_power++)
12489 continue;
12490 /* Limit alignment power to 31. */
12491 if (align == 1 && align_power < 32)
12492 {
12493 align_branch_power = align_power;
12494 break;
12495 }
12496 }
12497 }
12498 as_fatal (_("invalid -malign-branch-boundary= value: %s"), arg);
12499 }
12500 break;
12501
12502 case OPTION_MALIGN_BRANCH_PREFIX_SIZE:
12503 {
12504 char *end;
12505 int align = strtoul (arg, &end, 0);
12506 /* Some processors only support 5 prefixes. */
12507 if (*end == '\0' && align >= 0 && align < 6)
12508 {
12509 align_branch_prefix_size = align;
12510 break;
12511 }
12512 as_fatal (_("invalid -malign-branch-prefix-size= value: %s"),
12513 arg);
12514 }
12515 break;
12516
12517 case OPTION_MALIGN_BRANCH:
12518 align_branch = 0;
12519 saved = xstrdup (arg);
12520 type = saved;
12521 do
12522 {
12523 next = strchr (type, '+');
12524 if (next)
12525 *next++ = '\0';
12526 if (strcasecmp (type, "jcc") == 0)
12527 align_branch |= align_branch_jcc_bit;
12528 else if (strcasecmp (type, "fused") == 0)
12529 align_branch |= align_branch_fused_bit;
12530 else if (strcasecmp (type, "jmp") == 0)
12531 align_branch |= align_branch_jmp_bit;
12532 else if (strcasecmp (type, "call") == 0)
12533 align_branch |= align_branch_call_bit;
12534 else if (strcasecmp (type, "ret") == 0)
12535 align_branch |= align_branch_ret_bit;
12536 else if (strcasecmp (type, "indirect") == 0)
12537 align_branch |= align_branch_indirect_bit;
12538 else
12539 as_fatal (_("invalid -malign-branch= option: `%s'"), arg);
12540 type = next;
12541 }
12542 while (next != NULL);
12543 free (saved);
12544 break;
12545
76cf450b
L
12546 case OPTION_MBRANCHES_WITH_32B_BOUNDARIES:
12547 align_branch_power = 5;
12548 align_branch_prefix_size = 5;
12549 align_branch = (align_branch_jcc_bit
12550 | align_branch_fused_bit
12551 | align_branch_jmp_bit);
12552 break;
12553
5db04b09 12554 case OPTION_MAMD64:
4b5aaf5f 12555 isa64 = amd64;
5db04b09
L
12556 break;
12557
12558 case OPTION_MINTEL64:
4b5aaf5f 12559 isa64 = intel64;
5db04b09
L
12560 break;
12561
b6f8c7c4
L
12562 case 'O':
12563 if (arg == NULL)
12564 {
12565 optimize = 1;
12566 /* Turn off -Os. */
12567 optimize_for_space = 0;
12568 }
12569 else if (*arg == 's')
12570 {
12571 optimize_for_space = 1;
12572 /* Turn on all encoding optimizations. */
41fd2579 12573 optimize = INT_MAX;
b6f8c7c4
L
12574 }
12575 else
12576 {
12577 optimize = atoi (arg);
12578 /* Turn off -Os. */
12579 optimize_for_space = 0;
12580 }
12581 break;
12582
252b5132
RH
12583 default:
12584 return 0;
12585 }
12586 return 1;
12587}
12588
8a2c8fef
L
12589#define MESSAGE_TEMPLATE \
12590" "
12591
293f5f65
L
12592static char *
12593output_message (FILE *stream, char *p, char *message, char *start,
12594 int *left_p, const char *name, int len)
12595{
12596 int size = sizeof (MESSAGE_TEMPLATE);
12597 int left = *left_p;
12598
12599 /* Reserve 2 spaces for ", " or ",\0" */
12600 left -= len + 2;
12601
12602 /* Check if there is any room. */
12603 if (left >= 0)
12604 {
12605 if (p != start)
12606 {
12607 *p++ = ',';
12608 *p++ = ' ';
12609 }
12610 p = mempcpy (p, name, len);
12611 }
12612 else
12613 {
12614 /* Output the current message now and start a new one. */
12615 *p++ = ',';
12616 *p = '\0';
12617 fprintf (stream, "%s\n", message);
12618 p = start;
12619 left = size - (start - message) - len - 2;
12620
12621 gas_assert (left >= 0);
12622
12623 p = mempcpy (p, name, len);
12624 }
12625
12626 *left_p = left;
12627 return p;
12628}
12629
8a2c8fef 12630static void
1ded5609 12631show_arch (FILE *stream, int ext, int check)
8a2c8fef
L
12632{
12633 static char message[] = MESSAGE_TEMPLATE;
12634 char *start = message + 27;
12635 char *p;
12636 int size = sizeof (MESSAGE_TEMPLATE);
12637 int left;
12638 const char *name;
12639 int len;
12640 unsigned int j;
12641
12642 p = start;
12643 left = size - (start - message);
12644 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
12645 {
12646 /* Should it be skipped? */
12647 if (cpu_arch [j].skip)
12648 continue;
12649
12650 name = cpu_arch [j].name;
12651 len = cpu_arch [j].len;
12652 if (*name == '.')
12653 {
12654 /* It is an extension. Skip if we aren't asked to show it. */
12655 if (ext)
12656 {
12657 name++;
12658 len--;
12659 }
12660 else
12661 continue;
12662 }
12663 else if (ext)
12664 {
12665 /* It is an processor. Skip if we show only extension. */
12666 continue;
12667 }
1ded5609
JB
12668 else if (check && ! cpu_arch[j].flags.bitfield.cpui386)
12669 {
12670 /* It is an impossible processor - skip. */
12671 continue;
12672 }
8a2c8fef 12673
293f5f65 12674 p = output_message (stream, p, message, start, &left, name, len);
8a2c8fef
L
12675 }
12676
293f5f65
L
12677 /* Display disabled extensions. */
12678 if (ext)
12679 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
12680 {
12681 name = cpu_noarch [j].name;
12682 len = cpu_noarch [j].len;
12683 p = output_message (stream, p, message, start, &left, name,
12684 len);
12685 }
12686
8a2c8fef
L
12687 *p = '\0';
12688 fprintf (stream, "%s\n", message);
12689}
12690
252b5132 12691void
8a2c8fef 12692md_show_usage (FILE *stream)
252b5132 12693{
4cc782b5
ILT
12694#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
12695 fprintf (stream, _("\
d4693039 12696 -Qy, -Qn ignored\n\
a38cf1db 12697 -V print assembler version number\n\
b3b91714
AM
12698 -k ignored\n"));
12699#endif
12700 fprintf (stream, _("\
12b55ccc 12701 -n Do not optimize code alignment\n\
b3b91714
AM
12702 -q quieten some warnings\n"));
12703#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
12704 fprintf (stream, _("\
a38cf1db 12705 -s ignored\n"));
b3b91714 12706#endif
d7f449c0
L
12707#if defined BFD64 && (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
12708 || defined (TE_PE) || defined (TE_PEP))
751d281c 12709 fprintf (stream, _("\
570561f7 12710 --32/--64/--x32 generate 32bit/64bit/x32 code\n"));
751d281c 12711#endif
b3b91714
AM
12712#ifdef SVR4_COMMENT_CHARS
12713 fprintf (stream, _("\
12714 --divide do not treat `/' as a comment character\n"));
a38cf1db
AM
12715#else
12716 fprintf (stream, _("\
b3b91714 12717 --divide ignored\n"));
4cc782b5 12718#endif
9103f4f4 12719 fprintf (stream, _("\
6305a203 12720 -march=CPU[,+EXTENSION...]\n\
8a2c8fef 12721 generate code for CPU and EXTENSION, CPU is one of:\n"));
1ded5609 12722 show_arch (stream, 0, 1);
8a2c8fef
L
12723 fprintf (stream, _("\
12724 EXTENSION is combination of:\n"));
1ded5609 12725 show_arch (stream, 1, 0);
6305a203 12726 fprintf (stream, _("\
8a2c8fef 12727 -mtune=CPU optimize for CPU, CPU is one of:\n"));
1ded5609 12728 show_arch (stream, 0, 0);
ba104c83 12729 fprintf (stream, _("\
c0f3af97
L
12730 -msse2avx encode SSE instructions with VEX prefix\n"));
12731 fprintf (stream, _("\
7c5c05ef 12732 -msse-check=[none|error|warning] (default: warning)\n\
daf50ae7
L
12733 check SSE instructions\n"));
12734 fprintf (stream, _("\
7c5c05ef 12735 -moperand-check=[none|error|warning] (default: warning)\n\
7bab8ab5
JB
12736 check operand combinations for validity\n"));
12737 fprintf (stream, _("\
7c5c05ef
L
12738 -mavxscalar=[128|256] (default: 128)\n\
12739 encode scalar AVX instructions with specific vector\n\
539f890d
L
12740 length\n"));
12741 fprintf (stream, _("\
03751133
L
12742 -mvexwig=[0|1] (default: 0)\n\
12743 encode VEX instructions with specific VEX.W value\n\
12744 for VEX.W bit ignored instructions\n"));
12745 fprintf (stream, _("\
7c5c05ef
L
12746 -mevexlig=[128|256|512] (default: 128)\n\
12747 encode scalar EVEX instructions with specific vector\n\
43234a1e
L
12748 length\n"));
12749 fprintf (stream, _("\
7c5c05ef
L
12750 -mevexwig=[0|1] (default: 0)\n\
12751 encode EVEX instructions with specific EVEX.W value\n\
43234a1e
L
12752 for EVEX.W bit ignored instructions\n"));
12753 fprintf (stream, _("\
7c5c05ef 12754 -mevexrcig=[rne|rd|ru|rz] (default: rne)\n\
d3d3c6db
IT
12755 encode EVEX instructions with specific EVEX.RC value\n\
12756 for SAE-only ignored instructions\n"));
12757 fprintf (stream, _("\
7c5c05ef
L
12758 -mmnemonic=[att|intel] "));
12759 if (SYSV386_COMPAT)
12760 fprintf (stream, _("(default: att)\n"));
12761 else
12762 fprintf (stream, _("(default: intel)\n"));
12763 fprintf (stream, _("\
12764 use AT&T/Intel mnemonic\n"));
ba104c83 12765 fprintf (stream, _("\
7c5c05ef
L
12766 -msyntax=[att|intel] (default: att)\n\
12767 use AT&T/Intel syntax\n"));
ba104c83
L
12768 fprintf (stream, _("\
12769 -mindex-reg support pseudo index registers\n"));
12770 fprintf (stream, _("\
12771 -mnaked-reg don't require `%%' prefix for registers\n"));
12772 fprintf (stream, _("\
7e8b059b 12773 -madd-bnd-prefix add BND prefix for all valid branches\n"));
b4a3a7b4 12774#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8dcea932
L
12775 fprintf (stream, _("\
12776 -mshared disable branch optimization for shared code\n"));
b4a3a7b4
L
12777 fprintf (stream, _("\
12778 -mx86-used-note=[no|yes] "));
12779 if (DEFAULT_X86_USED_NOTE)
12780 fprintf (stream, _("(default: yes)\n"));
12781 else
12782 fprintf (stream, _("(default: no)\n"));
12783 fprintf (stream, _("\
12784 generate x86 used ISA and feature properties\n"));
12785#endif
12786#if defined (TE_PE) || defined (TE_PEP)
167ad85b
TG
12787 fprintf (stream, _("\
12788 -mbig-obj generate big object files\n"));
12789#endif
d022bddd 12790 fprintf (stream, _("\
7c5c05ef 12791 -momit-lock-prefix=[no|yes] (default: no)\n\
d022bddd 12792 strip all lock prefixes\n"));
5db04b09 12793 fprintf (stream, _("\
7c5c05ef 12794 -mfence-as-lock-add=[no|yes] (default: no)\n\
e4e00185
AS
12795 encode lfence, mfence and sfence as\n\
12796 lock addl $0x0, (%%{re}sp)\n"));
12797 fprintf (stream, _("\
7c5c05ef
L
12798 -mrelax-relocations=[no|yes] "));
12799 if (DEFAULT_GENERATE_X86_RELAX_RELOCATIONS)
12800 fprintf (stream, _("(default: yes)\n"));
12801 else
12802 fprintf (stream, _("(default: no)\n"));
12803 fprintf (stream, _("\
0cb4071e
L
12804 generate relax relocations\n"));
12805 fprintf (stream, _("\
e379e5f3
L
12806 -malign-branch-boundary=NUM (default: 0)\n\
12807 align branches within NUM byte boundary\n"));
12808 fprintf (stream, _("\
12809 -malign-branch=TYPE[+TYPE...] (default: jcc+fused+jmp)\n\
12810 TYPE is combination of jcc, fused, jmp, call, ret,\n\
12811 indirect\n\
12812 specify types of branches to align\n"));
12813 fprintf (stream, _("\
12814 -malign-branch-prefix-size=NUM (default: 5)\n\
12815 align branches with NUM prefixes per instruction\n"));
12816 fprintf (stream, _("\
76cf450b
L
12817 -mbranches-within-32B-boundaries\n\
12818 align branches within 32 byte boundary\n"));
12819 fprintf (stream, _("\
7c5c05ef 12820 -mamd64 accept only AMD64 ISA [default]\n"));
5db04b09
L
12821 fprintf (stream, _("\
12822 -mintel64 accept only Intel64 ISA\n"));
252b5132
RH
12823}
12824
3e73aa7c 12825#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
321098a5 12826 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
e57f8c65 12827 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
252b5132
RH
12828
12829/* Pick the target format to use. */
12830
47926f60 12831const char *
e3bb37b5 12832i386_target_format (void)
252b5132 12833{
351f65ca
L
12834 if (!strncmp (default_arch, "x86_64", 6))
12835 {
12836 update_code_flag (CODE_64BIT, 1);
12837 if (default_arch[6] == '\0')
7f56bc95 12838 x86_elf_abi = X86_64_ABI;
351f65ca 12839 else
7f56bc95 12840 x86_elf_abi = X86_64_X32_ABI;
351f65ca 12841 }
3e73aa7c 12842 else if (!strcmp (default_arch, "i386"))
78f12dd3 12843 update_code_flag (CODE_32BIT, 1);
5197d474
L
12844 else if (!strcmp (default_arch, "iamcu"))
12845 {
12846 update_code_flag (CODE_32BIT, 1);
12847 if (cpu_arch_isa == PROCESSOR_UNKNOWN)
12848 {
12849 static const i386_cpu_flags iamcu_flags = CPU_IAMCU_FLAGS;
12850 cpu_arch_name = "iamcu";
12851 cpu_sub_arch_name = NULL;
12852 cpu_arch_flags = iamcu_flags;
12853 cpu_arch_isa = PROCESSOR_IAMCU;
12854 cpu_arch_isa_flags = iamcu_flags;
12855 if (!cpu_arch_tune_set)
12856 {
12857 cpu_arch_tune = cpu_arch_isa;
12858 cpu_arch_tune_flags = cpu_arch_isa_flags;
12859 }
12860 }
8d471ec1 12861 else if (cpu_arch_isa != PROCESSOR_IAMCU)
5197d474
L
12862 as_fatal (_("Intel MCU doesn't support `%s' architecture"),
12863 cpu_arch_name);
12864 }
3e73aa7c 12865 else
2b5d6a91 12866 as_fatal (_("unknown architecture"));
89507696
JB
12867
12868 if (cpu_flags_all_zero (&cpu_arch_isa_flags))
12869 cpu_arch_isa_flags = cpu_arch[flag_code == CODE_64BIT].flags;
12870 if (cpu_flags_all_zero (&cpu_arch_tune_flags))
12871 cpu_arch_tune_flags = cpu_arch[flag_code == CODE_64BIT].flags;
12872
252b5132
RH
12873 switch (OUTPUT_FLAVOR)
12874 {
9384f2ff 12875#if defined (OBJ_MAYBE_AOUT) || defined (OBJ_AOUT)
4c63da97 12876 case bfd_target_aout_flavour:
47926f60 12877 return AOUT_TARGET_FORMAT;
4c63da97 12878#endif
9384f2ff
AM
12879#if defined (OBJ_MAYBE_COFF) || defined (OBJ_COFF)
12880# if defined (TE_PE) || defined (TE_PEP)
12881 case bfd_target_coff_flavour:
167ad85b
TG
12882 if (flag_code == CODE_64BIT)
12883 return use_big_obj ? "pe-bigobj-x86-64" : "pe-x86-64";
12884 else
12885 return "pe-i386";
9384f2ff 12886# elif defined (TE_GO32)
0561d57c
JK
12887 case bfd_target_coff_flavour:
12888 return "coff-go32";
9384f2ff 12889# else
252b5132
RH
12890 case bfd_target_coff_flavour:
12891 return "coff-i386";
9384f2ff 12892# endif
4c63da97 12893#endif
3e73aa7c 12894#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
252b5132 12895 case bfd_target_elf_flavour:
3e73aa7c 12896 {
351f65ca
L
12897 const char *format;
12898
12899 switch (x86_elf_abi)
4fa24527 12900 {
351f65ca
L
12901 default:
12902 format = ELF_TARGET_FORMAT;
e379e5f3
L
12903#ifndef TE_SOLARIS
12904 tls_get_addr = "___tls_get_addr";
12905#endif
351f65ca 12906 break;
7f56bc95 12907 case X86_64_ABI:
351f65ca 12908 use_rela_relocations = 1;
4fa24527 12909 object_64bit = 1;
e379e5f3
L
12910#ifndef TE_SOLARIS
12911 tls_get_addr = "__tls_get_addr";
12912#endif
351f65ca
L
12913 format = ELF_TARGET_FORMAT64;
12914 break;
7f56bc95 12915 case X86_64_X32_ABI:
4fa24527 12916 use_rela_relocations = 1;
351f65ca 12917 object_64bit = 1;
e379e5f3
L
12918#ifndef TE_SOLARIS
12919 tls_get_addr = "__tls_get_addr";
12920#endif
862be3fb 12921 disallow_64bit_reloc = 1;
351f65ca
L
12922 format = ELF_TARGET_FORMAT32;
12923 break;
4fa24527 12924 }
3632d14b 12925 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 12926 {
7f56bc95 12927 if (x86_elf_abi != X86_64_ABI)
8a9036a4
L
12928 as_fatal (_("Intel L1OM is 64bit only"));
12929 return ELF_TARGET_L1OM_FORMAT;
12930 }
b49f93f6 12931 else if (cpu_arch_isa == PROCESSOR_K1OM)
7a9068fe
L
12932 {
12933 if (x86_elf_abi != X86_64_ABI)
12934 as_fatal (_("Intel K1OM is 64bit only"));
12935 return ELF_TARGET_K1OM_FORMAT;
12936 }
81486035
L
12937 else if (cpu_arch_isa == PROCESSOR_IAMCU)
12938 {
12939 if (x86_elf_abi != I386_ABI)
12940 as_fatal (_("Intel MCU is 32bit only"));
12941 return ELF_TARGET_IAMCU_FORMAT;
12942 }
8a9036a4 12943 else
351f65ca 12944 return format;
3e73aa7c 12945 }
e57f8c65
TG
12946#endif
12947#if defined (OBJ_MACH_O)
12948 case bfd_target_mach_o_flavour:
d382c579
TG
12949 if (flag_code == CODE_64BIT)
12950 {
12951 use_rela_relocations = 1;
12952 object_64bit = 1;
12953 return "mach-o-x86-64";
12954 }
12955 else
12956 return "mach-o-i386";
4c63da97 12957#endif
252b5132
RH
12958 default:
12959 abort ();
12960 return NULL;
12961 }
12962}
12963
47926f60 12964#endif /* OBJ_MAYBE_ more than one */
252b5132 12965\f
252b5132 12966symbolS *
7016a5d5 12967md_undefined_symbol (char *name)
252b5132 12968{
18dc2407
ILT
12969 if (name[0] == GLOBAL_OFFSET_TABLE_NAME[0]
12970 && name[1] == GLOBAL_OFFSET_TABLE_NAME[1]
12971 && name[2] == GLOBAL_OFFSET_TABLE_NAME[2]
12972 && strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0)
24eab124
AM
12973 {
12974 if (!GOT_symbol)
12975 {
12976 if (symbol_find (name))
12977 as_bad (_("GOT already in symbol table"));
12978 GOT_symbol = symbol_new (name, undefined_section,
12979 (valueT) 0, &zero_address_frag);
12980 };
12981 return GOT_symbol;
12982 }
252b5132
RH
12983 return 0;
12984}
12985
12986/* Round up a section size to the appropriate boundary. */
47926f60 12987
252b5132 12988valueT
7016a5d5 12989md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size)
252b5132 12990{
4c63da97
AM
12991#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
12992 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
12993 {
12994 /* For a.out, force the section size to be aligned. If we don't do
12995 this, BFD will align it for us, but it will not write out the
12996 final bytes of the section. This may be a bug in BFD, but it is
12997 easier to fix it here since that is how the other a.out targets
12998 work. */
12999 int align;
13000
fd361982 13001 align = bfd_section_alignment (segment);
8d3842cd 13002 size = ((size + (1 << align) - 1) & (-((valueT) 1 << align)));
4c63da97 13003 }
252b5132
RH
13004#endif
13005
13006 return size;
13007}
13008
13009/* On the i386, PC-relative offsets are relative to the start of the
13010 next instruction. That is, the address of the offset, plus its
13011 size, since the offset is always the last part of the insn. */
13012
13013long
e3bb37b5 13014md_pcrel_from (fixS *fixP)
252b5132
RH
13015{
13016 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
13017}
13018
13019#ifndef I386COFF
13020
13021static void
e3bb37b5 13022s_bss (int ignore ATTRIBUTE_UNUSED)
252b5132 13023{
29b0f896 13024 int temp;
252b5132 13025
8a75718c
JB
13026#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13027 if (IS_ELF)
13028 obj_elf_section_change_hook ();
13029#endif
252b5132
RH
13030 temp = get_absolute_expression ();
13031 subseg_set (bss_section, (subsegT) temp);
13032 demand_empty_rest_of_line ();
13033}
13034
13035#endif
13036
e379e5f3
L
13037/* Remember constant directive. */
13038
13039void
13040i386_cons_align (int ignore ATTRIBUTE_UNUSED)
13041{
13042 if (last_insn.kind != last_insn_directive
13043 && (bfd_section_flags (now_seg) & SEC_CODE))
13044 {
13045 last_insn.seg = now_seg;
13046 last_insn.kind = last_insn_directive;
13047 last_insn.name = "constant directive";
13048 last_insn.file = as_where (&last_insn.line);
13049 }
13050}
13051
252b5132 13052void
e3bb37b5 13053i386_validate_fix (fixS *fixp)
252b5132 13054{
02a86693 13055 if (fixp->fx_subsy)
252b5132 13056 {
02a86693 13057 if (fixp->fx_subsy == GOT_symbol)
23df1078 13058 {
02a86693
L
13059 if (fixp->fx_r_type == BFD_RELOC_32_PCREL)
13060 {
13061 if (!object_64bit)
13062 abort ();
13063#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13064 if (fixp->fx_tcbit2)
56ceb5b5
L
13065 fixp->fx_r_type = (fixp->fx_tcbit
13066 ? BFD_RELOC_X86_64_REX_GOTPCRELX
13067 : BFD_RELOC_X86_64_GOTPCRELX);
02a86693
L
13068 else
13069#endif
13070 fixp->fx_r_type = BFD_RELOC_X86_64_GOTPCREL;
13071 }
d6ab8113 13072 else
02a86693
L
13073 {
13074 if (!object_64bit)
13075 fixp->fx_r_type = BFD_RELOC_386_GOTOFF;
13076 else
13077 fixp->fx_r_type = BFD_RELOC_X86_64_GOTOFF64;
13078 }
13079 fixp->fx_subsy = 0;
23df1078 13080 }
252b5132 13081 }
02a86693
L
13082#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13083 else if (!object_64bit)
13084 {
13085 if (fixp->fx_r_type == BFD_RELOC_386_GOT32
13086 && fixp->fx_tcbit2)
13087 fixp->fx_r_type = BFD_RELOC_386_GOT32X;
13088 }
13089#endif
252b5132
RH
13090}
13091
252b5132 13092arelent *
7016a5d5 13093tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
13094{
13095 arelent *rel;
13096 bfd_reloc_code_real_type code;
13097
13098 switch (fixp->fx_r_type)
13099 {
8ce3d284 13100#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
13101 case BFD_RELOC_SIZE32:
13102 case BFD_RELOC_SIZE64:
13103 if (S_IS_DEFINED (fixp->fx_addsy)
13104 && !S_IS_EXTERNAL (fixp->fx_addsy))
13105 {
13106 /* Resolve size relocation against local symbol to size of
13107 the symbol plus addend. */
13108 valueT value = S_GET_SIZE (fixp->fx_addsy) + fixp->fx_offset;
13109 if (fixp->fx_r_type == BFD_RELOC_SIZE32
13110 && !fits_in_unsigned_long (value))
13111 as_bad_where (fixp->fx_file, fixp->fx_line,
13112 _("symbol size computation overflow"));
13113 fixp->fx_addsy = NULL;
13114 fixp->fx_subsy = NULL;
13115 md_apply_fix (fixp, (valueT *) &value, NULL);
13116 return NULL;
13117 }
8ce3d284 13118#endif
1a0670f3 13119 /* Fall through. */
8fd4256d 13120
3e73aa7c
JH
13121 case BFD_RELOC_X86_64_PLT32:
13122 case BFD_RELOC_X86_64_GOT32:
13123 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
13124 case BFD_RELOC_X86_64_GOTPCRELX:
13125 case BFD_RELOC_X86_64_REX_GOTPCRELX:
252b5132
RH
13126 case BFD_RELOC_386_PLT32:
13127 case BFD_RELOC_386_GOT32:
02a86693 13128 case BFD_RELOC_386_GOT32X:
252b5132
RH
13129 case BFD_RELOC_386_GOTOFF:
13130 case BFD_RELOC_386_GOTPC:
13ae64f3
JJ
13131 case BFD_RELOC_386_TLS_GD:
13132 case BFD_RELOC_386_TLS_LDM:
13133 case BFD_RELOC_386_TLS_LDO_32:
13134 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
13135 case BFD_RELOC_386_TLS_IE:
13136 case BFD_RELOC_386_TLS_GOTIE:
13ae64f3
JJ
13137 case BFD_RELOC_386_TLS_LE_32:
13138 case BFD_RELOC_386_TLS_LE:
67a4f2b7
AO
13139 case BFD_RELOC_386_TLS_GOTDESC:
13140 case BFD_RELOC_386_TLS_DESC_CALL:
bffbf940
JJ
13141 case BFD_RELOC_X86_64_TLSGD:
13142 case BFD_RELOC_X86_64_TLSLD:
13143 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 13144 case BFD_RELOC_X86_64_DTPOFF64:
bffbf940
JJ
13145 case BFD_RELOC_X86_64_GOTTPOFF:
13146 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113
JB
13147 case BFD_RELOC_X86_64_TPOFF64:
13148 case BFD_RELOC_X86_64_GOTOFF64:
13149 case BFD_RELOC_X86_64_GOTPC32:
7b81dfbb
AJ
13150 case BFD_RELOC_X86_64_GOT64:
13151 case BFD_RELOC_X86_64_GOTPCREL64:
13152 case BFD_RELOC_X86_64_GOTPC64:
13153 case BFD_RELOC_X86_64_GOTPLT64:
13154 case BFD_RELOC_X86_64_PLTOFF64:
67a4f2b7
AO
13155 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
13156 case BFD_RELOC_X86_64_TLSDESC_CALL:
252b5132
RH
13157 case BFD_RELOC_RVA:
13158 case BFD_RELOC_VTABLE_ENTRY:
13159 case BFD_RELOC_VTABLE_INHERIT:
6482c264
NC
13160#ifdef TE_PE
13161 case BFD_RELOC_32_SECREL:
13162#endif
252b5132
RH
13163 code = fixp->fx_r_type;
13164 break;
dbbaec26
L
13165 case BFD_RELOC_X86_64_32S:
13166 if (!fixp->fx_pcrel)
13167 {
13168 /* Don't turn BFD_RELOC_X86_64_32S into BFD_RELOC_32. */
13169 code = fixp->fx_r_type;
13170 break;
13171 }
1a0670f3 13172 /* Fall through. */
252b5132 13173 default:
93382f6d 13174 if (fixp->fx_pcrel)
252b5132 13175 {
93382f6d
AM
13176 switch (fixp->fx_size)
13177 {
13178 default:
b091f402
AM
13179 as_bad_where (fixp->fx_file, fixp->fx_line,
13180 _("can not do %d byte pc-relative relocation"),
13181 fixp->fx_size);
93382f6d
AM
13182 code = BFD_RELOC_32_PCREL;
13183 break;
13184 case 1: code = BFD_RELOC_8_PCREL; break;
13185 case 2: code = BFD_RELOC_16_PCREL; break;
d258b828 13186 case 4: code = BFD_RELOC_32_PCREL; break;
d6ab8113
JB
13187#ifdef BFD64
13188 case 8: code = BFD_RELOC_64_PCREL; break;
13189#endif
93382f6d
AM
13190 }
13191 }
13192 else
13193 {
13194 switch (fixp->fx_size)
13195 {
13196 default:
b091f402
AM
13197 as_bad_where (fixp->fx_file, fixp->fx_line,
13198 _("can not do %d byte relocation"),
13199 fixp->fx_size);
93382f6d
AM
13200 code = BFD_RELOC_32;
13201 break;
13202 case 1: code = BFD_RELOC_8; break;
13203 case 2: code = BFD_RELOC_16; break;
13204 case 4: code = BFD_RELOC_32; break;
937149dd 13205#ifdef BFD64
3e73aa7c 13206 case 8: code = BFD_RELOC_64; break;
937149dd 13207#endif
93382f6d 13208 }
252b5132
RH
13209 }
13210 break;
13211 }
252b5132 13212
d182319b
JB
13213 if ((code == BFD_RELOC_32
13214 || code == BFD_RELOC_32_PCREL
13215 || code == BFD_RELOC_X86_64_32S)
252b5132
RH
13216 && GOT_symbol
13217 && fixp->fx_addsy == GOT_symbol)
3e73aa7c 13218 {
4fa24527 13219 if (!object_64bit)
d6ab8113
JB
13220 code = BFD_RELOC_386_GOTPC;
13221 else
13222 code = BFD_RELOC_X86_64_GOTPC32;
3e73aa7c 13223 }
7b81dfbb
AJ
13224 if ((code == BFD_RELOC_64 || code == BFD_RELOC_64_PCREL)
13225 && GOT_symbol
13226 && fixp->fx_addsy == GOT_symbol)
13227 {
13228 code = BFD_RELOC_X86_64_GOTPC64;
13229 }
252b5132 13230
add39d23
TS
13231 rel = XNEW (arelent);
13232 rel->sym_ptr_ptr = XNEW (asymbol *);
49309057 13233 *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
13234
13235 rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
c87db184 13236
3e73aa7c
JH
13237 if (!use_rela_relocations)
13238 {
13239 /* HACK: Since i386 ELF uses Rel instead of Rela, encode the
13240 vtable entry to be used in the relocation's section offset. */
13241 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
13242 rel->address = fixp->fx_offset;
fbeb56a4
DK
13243#if defined (OBJ_COFF) && defined (TE_PE)
13244 else if (fixp->fx_addsy && S_IS_WEAK (fixp->fx_addsy))
13245 rel->addend = fixp->fx_addnumber - (S_GET_VALUE (fixp->fx_addsy) * 2);
13246 else
13247#endif
c6682705 13248 rel->addend = 0;
3e73aa7c
JH
13249 }
13250 /* Use the rela in 64bit mode. */
252b5132 13251 else
3e73aa7c 13252 {
862be3fb
L
13253 if (disallow_64bit_reloc)
13254 switch (code)
13255 {
862be3fb
L
13256 case BFD_RELOC_X86_64_DTPOFF64:
13257 case BFD_RELOC_X86_64_TPOFF64:
13258 case BFD_RELOC_64_PCREL:
13259 case BFD_RELOC_X86_64_GOTOFF64:
13260 case BFD_RELOC_X86_64_GOT64:
13261 case BFD_RELOC_X86_64_GOTPCREL64:
13262 case BFD_RELOC_X86_64_GOTPC64:
13263 case BFD_RELOC_X86_64_GOTPLT64:
13264 case BFD_RELOC_X86_64_PLTOFF64:
13265 as_bad_where (fixp->fx_file, fixp->fx_line,
13266 _("cannot represent relocation type %s in x32 mode"),
13267 bfd_get_reloc_code_name (code));
13268 break;
13269 default:
13270 break;
13271 }
13272
062cd5e7
AS
13273 if (!fixp->fx_pcrel)
13274 rel->addend = fixp->fx_offset;
13275 else
13276 switch (code)
13277 {
13278 case BFD_RELOC_X86_64_PLT32:
13279 case BFD_RELOC_X86_64_GOT32:
13280 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
13281 case BFD_RELOC_X86_64_GOTPCRELX:
13282 case BFD_RELOC_X86_64_REX_GOTPCRELX:
bffbf940
JJ
13283 case BFD_RELOC_X86_64_TLSGD:
13284 case BFD_RELOC_X86_64_TLSLD:
13285 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7
AO
13286 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
13287 case BFD_RELOC_X86_64_TLSDESC_CALL:
062cd5e7
AS
13288 rel->addend = fixp->fx_offset - fixp->fx_size;
13289 break;
13290 default:
13291 rel->addend = (section->vma
13292 - fixp->fx_size
13293 + fixp->fx_addnumber
13294 + md_pcrel_from (fixp));
13295 break;
13296 }
3e73aa7c
JH
13297 }
13298
252b5132
RH
13299 rel->howto = bfd_reloc_type_lookup (stdoutput, code);
13300 if (rel->howto == NULL)
13301 {
13302 as_bad_where (fixp->fx_file, fixp->fx_line,
d0b47220 13303 _("cannot represent relocation type %s"),
252b5132
RH
13304 bfd_get_reloc_code_name (code));
13305 /* Set howto to a garbage value so that we can keep going. */
13306 rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
9c2799c2 13307 gas_assert (rel->howto != NULL);
252b5132
RH
13308 }
13309
13310 return rel;
13311}
13312
ee86248c 13313#include "tc-i386-intel.c"
54cfded0 13314
a60de03c
JB
13315void
13316tc_x86_parse_to_dw2regnum (expressionS *exp)
54cfded0 13317{
a60de03c
JB
13318 int saved_naked_reg;
13319 char saved_register_dot;
54cfded0 13320
a60de03c
JB
13321 saved_naked_reg = allow_naked_reg;
13322 allow_naked_reg = 1;
13323 saved_register_dot = register_chars['.'];
13324 register_chars['.'] = '.';
13325 allow_pseudo_reg = 1;
13326 expression_and_evaluate (exp);
13327 allow_pseudo_reg = 0;
13328 register_chars['.'] = saved_register_dot;
13329 allow_naked_reg = saved_naked_reg;
13330
e96d56a1 13331 if (exp->X_op == O_register && exp->X_add_number >= 0)
54cfded0 13332 {
a60de03c
JB
13333 if ((addressT) exp->X_add_number < i386_regtab_size)
13334 {
13335 exp->X_op = O_constant;
13336 exp->X_add_number = i386_regtab[exp->X_add_number]
13337 .dw2_regnum[flag_code >> 1];
13338 }
13339 else
13340 exp->X_op = O_illegal;
54cfded0 13341 }
54cfded0
AM
13342}
13343
13344void
13345tc_x86_frame_initial_instructions (void)
13346{
a60de03c
JB
13347 static unsigned int sp_regno[2];
13348
13349 if (!sp_regno[flag_code >> 1])
13350 {
13351 char *saved_input = input_line_pointer;
13352 char sp[][4] = {"esp", "rsp"};
13353 expressionS exp;
a4447b93 13354
a60de03c
JB
13355 input_line_pointer = sp[flag_code >> 1];
13356 tc_x86_parse_to_dw2regnum (&exp);
9c2799c2 13357 gas_assert (exp.X_op == O_constant);
a60de03c
JB
13358 sp_regno[flag_code >> 1] = exp.X_add_number;
13359 input_line_pointer = saved_input;
13360 }
a4447b93 13361
61ff971f
L
13362 cfi_add_CFA_def_cfa (sp_regno[flag_code >> 1], -x86_cie_data_alignment);
13363 cfi_add_CFA_offset (x86_dwarf2_return_column, x86_cie_data_alignment);
54cfded0 13364}
d2b2c203 13365
d7921315
L
13366int
13367x86_dwarf2_addr_size (void)
13368{
13369#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
13370 if (x86_elf_abi == X86_64_X32_ABI)
13371 return 4;
13372#endif
13373 return bfd_arch_bits_per_address (stdoutput) / 8;
13374}
13375
d2b2c203
DJ
13376int
13377i386_elf_section_type (const char *str, size_t len)
13378{
13379 if (flag_code == CODE_64BIT
13380 && len == sizeof ("unwind") - 1
13381 && strncmp (str, "unwind", 6) == 0)
13382 return SHT_X86_64_UNWIND;
13383
13384 return -1;
13385}
bb41ade5 13386
ad5fec3b
EB
13387#ifdef TE_SOLARIS
13388void
13389i386_solaris_fix_up_eh_frame (segT sec)
13390{
13391 if (flag_code == CODE_64BIT)
13392 elf_section_type (sec) = SHT_X86_64_UNWIND;
13393}
13394#endif
13395
bb41ade5
AM
13396#ifdef TE_PE
13397void
13398tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
13399{
91d6fa6a 13400 expressionS exp;
bb41ade5 13401
91d6fa6a
NC
13402 exp.X_op = O_secrel;
13403 exp.X_add_symbol = symbol;
13404 exp.X_add_number = 0;
13405 emit_expr (&exp, size);
bb41ade5
AM
13406}
13407#endif
3b22753a
L
13408
13409#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13410/* For ELF on x86-64, add support for SHF_X86_64_LARGE. */
13411
01e1a5bc 13412bfd_vma
6d4af3c2 13413x86_64_section_letter (int letter, const char **ptr_msg)
3b22753a
L
13414{
13415 if (flag_code == CODE_64BIT)
13416 {
13417 if (letter == 'l')
13418 return SHF_X86_64_LARGE;
13419
8f3bae45 13420 *ptr_msg = _("bad .section directive: want a,l,w,x,M,S,G,T in string");
64e74474 13421 }
3b22753a 13422 else
8f3bae45 13423 *ptr_msg = _("bad .section directive: want a,w,x,M,S,G,T in string");
3b22753a
L
13424 return -1;
13425}
13426
01e1a5bc 13427bfd_vma
3b22753a
L
13428x86_64_section_word (char *str, size_t len)
13429{
8620418b 13430 if (len == 5 && flag_code == CODE_64BIT && CONST_STRNEQ (str, "large"))
3b22753a
L
13431 return SHF_X86_64_LARGE;
13432
13433 return -1;
13434}
13435
13436static void
13437handle_large_common (int small ATTRIBUTE_UNUSED)
13438{
13439 if (flag_code != CODE_64BIT)
13440 {
13441 s_comm_internal (0, elf_common_parse);
13442 as_warn (_(".largecomm supported only in 64bit mode, producing .comm"));
13443 }
13444 else
13445 {
13446 static segT lbss_section;
13447 asection *saved_com_section_ptr = elf_com_section_ptr;
13448 asection *saved_bss_section = bss_section;
13449
13450 if (lbss_section == NULL)
13451 {
13452 flagword applicable;
13453 segT seg = now_seg;
13454 subsegT subseg = now_subseg;
13455
13456 /* The .lbss section is for local .largecomm symbols. */
13457 lbss_section = subseg_new (".lbss", 0);
13458 applicable = bfd_applicable_section_flags (stdoutput);
fd361982 13459 bfd_set_section_flags (lbss_section, applicable & SEC_ALLOC);
3b22753a
L
13460 seg_info (lbss_section)->bss = 1;
13461
13462 subseg_set (seg, subseg);
13463 }
13464
13465 elf_com_section_ptr = &_bfd_elf_large_com_section;
13466 bss_section = lbss_section;
13467
13468 s_comm_internal (0, elf_common_parse);
13469
13470 elf_com_section_ptr = saved_com_section_ptr;
13471 bss_section = saved_bss_section;
13472 }
13473}
13474#endif /* OBJ_ELF || OBJ_MAYBE_ELF */
This page took 2.207474 seconds and 4 git commands to generate.