x86: fold various AVX512 templates with so far differing Masking attributes
[deliverable/binutils-gdb.git] / gas / config / tc-i386.c
CommitLineData
b534c6d3 1/* tc-i386.c -- Assemble code for the Intel 80386
219d1afa 2 Copyright (C) 1989-2018 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
252b5132
RH
36#ifndef REGISTER_WARNINGS
37#define REGISTER_WARNINGS 1
38#endif
39
c3332e24 40#ifndef INFER_ADDR_PREFIX
eecb386c 41#define INFER_ADDR_PREFIX 1
c3332e24
AM
42#endif
43
29b0f896
AM
44#ifndef DEFAULT_ARCH
45#define DEFAULT_ARCH "i386"
246fcdee 46#endif
252b5132 47
edde18a5
AM
48#ifndef INLINE
49#if __GNUC__ >= 2
50#define INLINE __inline__
51#else
52#define INLINE
53#endif
54#endif
55
6305a203
L
56/* Prefixes will be emitted in the order defined below.
57 WAIT_PREFIX must be the first prefix since FWAIT is really is an
58 instruction, and so must come before any prefixes.
59 The preferred prefix order is SEG_PREFIX, ADDR_PREFIX, DATA_PREFIX,
42164a71 60 REP_PREFIX/HLE_PREFIX, LOCK_PREFIX. */
6305a203
L
61#define WAIT_PREFIX 0
62#define SEG_PREFIX 1
63#define ADDR_PREFIX 2
64#define DATA_PREFIX 3
c32fa91d 65#define REP_PREFIX 4
42164a71 66#define HLE_PREFIX REP_PREFIX
7e8b059b 67#define BND_PREFIX REP_PREFIX
c32fa91d 68#define LOCK_PREFIX 5
4e9ac44a
L
69#define REX_PREFIX 6 /* must come last. */
70#define MAX_PREFIXES 7 /* max prefixes per opcode */
6305a203
L
71
72/* we define the syntax here (modulo base,index,scale syntax) */
73#define REGISTER_PREFIX '%'
74#define IMMEDIATE_PREFIX '$'
75#define ABSOLUTE_PREFIX '*'
76
77/* these are the instruction mnemonic suffixes in AT&T syntax or
78 memory operand size in Intel syntax. */
79#define WORD_MNEM_SUFFIX 'w'
80#define BYTE_MNEM_SUFFIX 'b'
81#define SHORT_MNEM_SUFFIX 's'
82#define LONG_MNEM_SUFFIX 'l'
83#define QWORD_MNEM_SUFFIX 'q'
6305a203
L
84/* Intel Syntax. Use a non-ascii letter since since it never appears
85 in instructions. */
86#define LONG_DOUBLE_MNEM_SUFFIX '\1'
87
88#define END_OF_INSN '\0'
89
90/*
91 'templates' is for grouping together 'template' structures for opcodes
92 of the same name. This is only used for storing the insns in the grand
93 ole hash table of insns.
94 The templates themselves start at START and range up to (but not including)
95 END.
96 */
97typedef struct
98{
d3ce72d0
NC
99 const insn_template *start;
100 const insn_template *end;
6305a203
L
101}
102templates;
103
104/* 386 operand encoding bytes: see 386 book for details of this. */
105typedef struct
106{
107 unsigned int regmem; /* codes register or memory operand */
108 unsigned int reg; /* codes register operand (or extended opcode) */
109 unsigned int mode; /* how to interpret regmem & reg */
110}
111modrm_byte;
112
113/* x86-64 extension prefix. */
114typedef int rex_byte;
115
6305a203
L
116/* 386 opcode byte to code indirect addressing. */
117typedef struct
118{
119 unsigned base;
120 unsigned index;
121 unsigned scale;
122}
123sib_byte;
124
6305a203
L
125/* x86 arch names, types and features */
126typedef struct
127{
128 const char *name; /* arch name */
8a2c8fef 129 unsigned int len; /* arch string length */
6305a203
L
130 enum processor_type type; /* arch type */
131 i386_cpu_flags flags; /* cpu feature flags */
8a2c8fef 132 unsigned int skip; /* show_arch should skip this. */
6305a203
L
133}
134arch_entry;
135
293f5f65
L
136/* Used to turn off indicated flags. */
137typedef struct
138{
139 const char *name; /* arch name */
140 unsigned int len; /* arch string length */
141 i386_cpu_flags flags; /* cpu feature flags */
142}
143noarch_entry;
144
78f12dd3 145static void update_code_flag (int, int);
e3bb37b5
L
146static void set_code_flag (int);
147static void set_16bit_gcc_code_flag (int);
148static void set_intel_syntax (int);
1efbbeb4 149static void set_intel_mnemonic (int);
db51cc60 150static void set_allow_index_reg (int);
7bab8ab5 151static void set_check (int);
e3bb37b5 152static void set_cpu_arch (int);
6482c264 153#ifdef TE_PE
e3bb37b5 154static void pe_directive_secrel (int);
6482c264 155#endif
e3bb37b5
L
156static void signed_cons (int);
157static char *output_invalid (int c);
ee86248c
JB
158static int i386_finalize_immediate (segT, expressionS *, i386_operand_type,
159 const char *);
160static int i386_finalize_displacement (segT, expressionS *, i386_operand_type,
161 const char *);
a7619375 162static int i386_att_operand (char *);
e3bb37b5 163static int i386_intel_operand (char *, int);
ee86248c
JB
164static int i386_intel_simplify (expressionS *);
165static int i386_intel_parse_name (const char *, expressionS *);
e3bb37b5
L
166static const reg_entry *parse_register (char *, char **);
167static char *parse_insn (char *, char *);
168static char *parse_operands (char *, const char *);
169static void swap_operands (void);
4d456e3d 170static void swap_2_operands (int, int);
e3bb37b5
L
171static void optimize_imm (void);
172static void optimize_disp (void);
83b16ac6 173static const insn_template *match_template (char);
e3bb37b5
L
174static int check_string (void);
175static int process_suffix (void);
176static int check_byte_reg (void);
177static int check_long_reg (void);
178static int check_qword_reg (void);
179static int check_word_reg (void);
180static int finalize_imm (void);
181static int process_operands (void);
182static const seg_entry *build_modrm_byte (void);
183static void output_insn (void);
184static void output_imm (fragS *, offsetT);
185static void output_disp (fragS *, offsetT);
29b0f896 186#ifndef I386COFF
e3bb37b5 187static void s_bss (int);
252b5132 188#endif
17d4e2a2
L
189#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
190static void handle_large_common (int small ATTRIBUTE_UNUSED);
191#endif
252b5132 192
a847613f 193static const char *default_arch = DEFAULT_ARCH;
3e73aa7c 194
43234a1e
L
195/* This struct describes rounding control and SAE in the instruction. */
196struct RC_Operation
197{
198 enum rc_type
199 {
200 rne = 0,
201 rd,
202 ru,
203 rz,
204 saeonly
205 } type;
206 int operand;
207};
208
209static struct RC_Operation rc_op;
210
211/* The struct describes masking, applied to OPERAND in the instruction.
212 MASK is a pointer to the corresponding mask register. ZEROING tells
213 whether merging or zeroing mask is used. */
214struct Mask_Operation
215{
216 const reg_entry *mask;
217 unsigned int zeroing;
218 /* The operand where this operation is associated. */
219 int operand;
220};
221
222static struct Mask_Operation mask_op;
223
224/* The struct describes broadcasting, applied to OPERAND. FACTOR is
225 broadcast factor. */
226struct Broadcast_Operation
227{
8e6e0792 228 /* Type of broadcast: {1to2}, {1to4}, {1to8}, or {1to16}. */
43234a1e
L
229 int type;
230
231 /* Index of broadcasted operand. */
232 int operand;
4a1b91ea
L
233
234 /* Number of bytes to broadcast. */
235 int bytes;
43234a1e
L
236};
237
238static struct Broadcast_Operation broadcast_op;
239
c0f3af97
L
240/* VEX prefix. */
241typedef struct
242{
43234a1e
L
243 /* VEX prefix is either 2 byte or 3 byte. EVEX is 4 byte. */
244 unsigned char bytes[4];
c0f3af97
L
245 unsigned int length;
246 /* Destination or source register specifier. */
247 const reg_entry *register_specifier;
248} vex_prefix;
249
252b5132 250/* 'md_assemble ()' gathers together information and puts it into a
47926f60 251 i386_insn. */
252b5132 252
520dc8e8
AM
253union i386_op
254 {
255 expressionS *disps;
256 expressionS *imms;
257 const reg_entry *regs;
258 };
259
a65babc9
L
260enum i386_error
261 {
86e026a4 262 operand_size_mismatch,
a65babc9
L
263 operand_type_mismatch,
264 register_type_mismatch,
265 number_of_operands_mismatch,
266 invalid_instruction_suffix,
267 bad_imm4,
a65babc9
L
268 unsupported_with_intel_mnemonic,
269 unsupported_syntax,
6c30d220
L
270 unsupported,
271 invalid_vsib_address,
7bab8ab5 272 invalid_vector_register_set,
43234a1e
L
273 unsupported_vector_index_register,
274 unsupported_broadcast,
43234a1e
L
275 broadcast_needed,
276 unsupported_masking,
277 mask_not_on_destination,
278 no_default_mask,
279 unsupported_rc_sae,
280 rc_sae_operand_not_last_imm,
281 invalid_register_operand,
a65babc9
L
282 };
283
252b5132
RH
284struct _i386_insn
285 {
47926f60 286 /* TM holds the template for the insn were currently assembling. */
d3ce72d0 287 insn_template tm;
252b5132 288
7d5e4556
L
289 /* SUFFIX holds the instruction size suffix for byte, word, dword
290 or qword, if given. */
252b5132
RH
291 char suffix;
292
47926f60 293 /* OPERANDS gives the number of given operands. */
252b5132
RH
294 unsigned int operands;
295
296 /* REG_OPERANDS, DISP_OPERANDS, MEM_OPERANDS, IMM_OPERANDS give the number
297 of given register, displacement, memory operands and immediate
47926f60 298 operands. */
252b5132
RH
299 unsigned int reg_operands, disp_operands, mem_operands, imm_operands;
300
301 /* TYPES [i] is the type (see above #defines) which tells us how to
520dc8e8 302 use OP[i] for the corresponding operand. */
40fb9820 303 i386_operand_type types[MAX_OPERANDS];
252b5132 304
520dc8e8
AM
305 /* Displacement expression, immediate expression, or register for each
306 operand. */
307 union i386_op op[MAX_OPERANDS];
252b5132 308
3e73aa7c
JH
309 /* Flags for operands. */
310 unsigned int flags[MAX_OPERANDS];
311#define Operand_PCrel 1
312
252b5132 313 /* Relocation type for operand */
f86103b7 314 enum bfd_reloc_code_real reloc[MAX_OPERANDS];
252b5132 315
252b5132
RH
316 /* BASE_REG, INDEX_REG, and LOG2_SCALE_FACTOR are used to encode
317 the base index byte below. */
318 const reg_entry *base_reg;
319 const reg_entry *index_reg;
320 unsigned int log2_scale_factor;
321
322 /* SEG gives the seg_entries of this insn. They are zero unless
47926f60 323 explicit segment overrides are given. */
ce8a8b2f 324 const seg_entry *seg[2];
252b5132 325
8325cc63
JB
326 /* Copied first memory operand string, for re-checking. */
327 char *memop1_string;
328
252b5132
RH
329 /* PREFIX holds all the given prefix opcodes (usually null).
330 PREFIXES is the number of prefix opcodes. */
331 unsigned int prefixes;
332 unsigned char prefix[MAX_PREFIXES];
333
334 /* RM and SIB are the modrm byte and the sib byte where the
c1e679ec 335 addressing modes of this insn are encoded. */
252b5132 336 modrm_byte rm;
3e73aa7c 337 rex_byte rex;
43234a1e 338 rex_byte vrex;
252b5132 339 sib_byte sib;
c0f3af97 340 vex_prefix vex;
b6169b20 341
43234a1e
L
342 /* Masking attributes. */
343 struct Mask_Operation *mask;
344
345 /* Rounding control and SAE attributes. */
346 struct RC_Operation *rounding;
347
348 /* Broadcasting attributes. */
349 struct Broadcast_Operation *broadcast;
350
351 /* Compressed disp8*N attribute. */
352 unsigned int memshift;
353
86fa6981
L
354 /* Prefer load or store in encoding. */
355 enum
356 {
357 dir_encoding_default = 0,
358 dir_encoding_load,
359 dir_encoding_store
360 } dir_encoding;
891edac4 361
a501d77e
L
362 /* Prefer 8bit or 32bit displacement in encoding. */
363 enum
364 {
365 disp_encoding_default = 0,
366 disp_encoding_8bit,
367 disp_encoding_32bit
368 } disp_encoding;
f8a5c266 369
6b6b6807
L
370 /* Prefer the REX byte in encoding. */
371 bfd_boolean rex_encoding;
372
b6f8c7c4
L
373 /* Disable instruction size optimization. */
374 bfd_boolean no_optimize;
375
86fa6981
L
376 /* How to encode vector instructions. */
377 enum
378 {
379 vex_encoding_default = 0,
380 vex_encoding_vex2,
381 vex_encoding_vex3,
382 vex_encoding_evex
383 } vec_encoding;
384
d5de92cf
L
385 /* REP prefix. */
386 const char *rep_prefix;
387
165de32a
L
388 /* HLE prefix. */
389 const char *hle_prefix;
42164a71 390
7e8b059b
L
391 /* Have BND prefix. */
392 const char *bnd_prefix;
393
04ef582a
L
394 /* Have NOTRACK prefix. */
395 const char *notrack_prefix;
396
891edac4 397 /* Error message. */
a65babc9 398 enum i386_error error;
252b5132
RH
399 };
400
401typedef struct _i386_insn i386_insn;
402
43234a1e
L
403/* Link RC type with corresponding string, that'll be looked for in
404 asm. */
405struct RC_name
406{
407 enum rc_type type;
408 const char *name;
409 unsigned int len;
410};
411
412static const struct RC_name RC_NamesTable[] =
413{
414 { rne, STRING_COMMA_LEN ("rn-sae") },
415 { rd, STRING_COMMA_LEN ("rd-sae") },
416 { ru, STRING_COMMA_LEN ("ru-sae") },
417 { rz, STRING_COMMA_LEN ("rz-sae") },
418 { saeonly, STRING_COMMA_LEN ("sae") },
419};
420
252b5132
RH
421/* List of chars besides those in app.c:symbol_chars that can start an
422 operand. Used to prevent the scrubber eating vital white-space. */
86fa6981 423const char extra_symbol_chars[] = "*%-([{}"
252b5132 424#ifdef LEX_AT
32137342
NC
425 "@"
426#endif
427#ifdef LEX_QM
428 "?"
252b5132 429#endif
32137342 430 ;
252b5132 431
29b0f896
AM
432#if (defined (TE_I386AIX) \
433 || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) \
3896cfd5 434 && !defined (TE_GNU) \
29b0f896 435 && !defined (TE_LINUX) \
8d63c93e 436 && !defined (TE_NACL) \
29b0f896 437 && !defined (TE_FreeBSD) \
5b806d27 438 && !defined (TE_DragonFly) \
29b0f896 439 && !defined (TE_NetBSD)))
252b5132 440/* This array holds the chars that always start a comment. If the
b3b91714
AM
441 pre-processor is disabled, these aren't very useful. The option
442 --divide will remove '/' from this list. */
443const char *i386_comment_chars = "#/";
444#define SVR4_COMMENT_CHARS 1
252b5132 445#define PREFIX_SEPARATOR '\\'
252b5132 446
b3b91714
AM
447#else
448const char *i386_comment_chars = "#";
449#define PREFIX_SEPARATOR '/'
450#endif
451
252b5132
RH
452/* This array holds the chars that only start a comment at the beginning of
453 a line. If the line seems to have the form '# 123 filename'
ce8a8b2f
AM
454 .line and .file directives will appear in the pre-processed output.
455 Note that input_file.c hand checks for '#' at the beginning of the
252b5132 456 first line of the input file. This is because the compiler outputs
ce8a8b2f
AM
457 #NO_APP at the beginning of its output.
458 Also note that comments started like this one will always work if
252b5132 459 '/' isn't otherwise defined. */
b3b91714 460const char line_comment_chars[] = "#/";
252b5132 461
63a0b638 462const char line_separator_chars[] = ";";
252b5132 463
ce8a8b2f
AM
464/* Chars that can be used to separate mant from exp in floating point
465 nums. */
252b5132
RH
466const char EXP_CHARS[] = "eE";
467
ce8a8b2f
AM
468/* Chars that mean this number is a floating point constant
469 As in 0f12.456
470 or 0d1.2345e12. */
252b5132
RH
471const char FLT_CHARS[] = "fFdDxX";
472
ce8a8b2f 473/* Tables for lexical analysis. */
252b5132
RH
474static char mnemonic_chars[256];
475static char register_chars[256];
476static char operand_chars[256];
477static char identifier_chars[256];
478static char digit_chars[256];
479
ce8a8b2f 480/* Lexical macros. */
252b5132
RH
481#define is_mnemonic_char(x) (mnemonic_chars[(unsigned char) x])
482#define is_operand_char(x) (operand_chars[(unsigned char) x])
483#define is_register_char(x) (register_chars[(unsigned char) x])
484#define is_space_char(x) ((x) == ' ')
485#define is_identifier_char(x) (identifier_chars[(unsigned char) x])
486#define is_digit_char(x) (digit_chars[(unsigned char) x])
487
0234cb7c 488/* All non-digit non-letter characters that may occur in an operand. */
252b5132
RH
489static char operand_special_chars[] = "%$-+(,)*._~/<>|&^!:[@]";
490
491/* md_assemble() always leaves the strings it's passed unaltered. To
492 effect this we maintain a stack of saved characters that we've smashed
493 with '\0's (indicating end of strings for various sub-fields of the
47926f60 494 assembler instruction). */
252b5132 495static char save_stack[32];
ce8a8b2f 496static char *save_stack_p;
252b5132
RH
497#define END_STRING_AND_SAVE(s) \
498 do { *save_stack_p++ = *(s); *(s) = '\0'; } while (0)
499#define RESTORE_END_STRING(s) \
500 do { *(s) = *--save_stack_p; } while (0)
501
47926f60 502/* The instruction we're assembling. */
252b5132
RH
503static i386_insn i;
504
505/* Possible templates for current insn. */
506static const templates *current_templates;
507
31b2323c
L
508/* Per instruction expressionS buffers: max displacements & immediates. */
509static expressionS disp_expressions[MAX_MEMORY_OPERANDS];
510static expressionS im_expressions[MAX_IMMEDIATE_OPERANDS];
252b5132 511
47926f60 512/* Current operand we are working on. */
ee86248c 513static int this_operand = -1;
252b5132 514
3e73aa7c
JH
515/* We support four different modes. FLAG_CODE variable is used to distinguish
516 these. */
517
518enum flag_code {
519 CODE_32BIT,
520 CODE_16BIT,
521 CODE_64BIT };
522
523static enum flag_code flag_code;
4fa24527 524static unsigned int object_64bit;
862be3fb 525static unsigned int disallow_64bit_reloc;
3e73aa7c
JH
526static int use_rela_relocations = 0;
527
7af8ed2d
NC
528#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
529 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
530 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
531
351f65ca
L
532/* The ELF ABI to use. */
533enum x86_elf_abi
534{
535 I386_ABI,
7f56bc95
L
536 X86_64_ABI,
537 X86_64_X32_ABI
351f65ca
L
538};
539
540static enum x86_elf_abi x86_elf_abi = I386_ABI;
7af8ed2d 541#endif
351f65ca 542
167ad85b
TG
543#if defined (TE_PE) || defined (TE_PEP)
544/* Use big object file format. */
545static int use_big_obj = 0;
546#endif
547
8dcea932
L
548#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
549/* 1 if generating code for a shared library. */
550static int shared = 0;
551#endif
552
47926f60
KH
553/* 1 for intel syntax,
554 0 if att syntax. */
555static int intel_syntax = 0;
252b5132 556
e89c5eaa
L
557/* 1 for Intel64 ISA,
558 0 if AMD64 ISA. */
559static int intel64;
560
1efbbeb4
L
561/* 1 for intel mnemonic,
562 0 if att mnemonic. */
563static int intel_mnemonic = !SYSV386_COMPAT;
564
a60de03c
JB
565/* 1 if pseudo registers are permitted. */
566static int allow_pseudo_reg = 0;
567
47926f60
KH
568/* 1 if register prefix % not required. */
569static int allow_naked_reg = 0;
252b5132 570
33eaf5de 571/* 1 if the assembler should add BND prefix for all control-transferring
7e8b059b
L
572 instructions supporting it, even if this prefix wasn't specified
573 explicitly. */
574static int add_bnd_prefix = 0;
575
ba104c83 576/* 1 if pseudo index register, eiz/riz, is allowed . */
db51cc60
L
577static int allow_index_reg = 0;
578
d022bddd
IT
579/* 1 if the assembler should ignore LOCK prefix, even if it was
580 specified explicitly. */
581static int omit_lock_prefix = 0;
582
e4e00185
AS
583/* 1 if the assembler should encode lfence, mfence, and sfence as
584 "lock addl $0, (%{re}sp)". */
585static int avoid_fence = 0;
586
0cb4071e
L
587/* 1 if the assembler should generate relax relocations. */
588
589static int generate_relax_relocations
590 = DEFAULT_GENERATE_X86_RELAX_RELOCATIONS;
591
7bab8ab5 592static enum check_kind
daf50ae7 593 {
7bab8ab5
JB
594 check_none = 0,
595 check_warning,
596 check_error
daf50ae7 597 }
7bab8ab5 598sse_check, operand_check = check_warning;
daf50ae7 599
b6f8c7c4
L
600/* Optimization:
601 1. Clear the REX_W bit with register operand if possible.
602 2. Above plus use 128bit vector instruction to clear the full vector
603 register.
604 */
605static int optimize = 0;
606
607/* Optimization:
608 1. Clear the REX_W bit with register operand if possible.
609 2. Above plus use 128bit vector instruction to clear the full vector
610 register.
611 3. Above plus optimize "test{q,l,w} $imm8,%r{64,32,16}" to
612 "testb $imm7,%r8".
613 */
614static int optimize_for_space = 0;
615
2ca3ace5
L
616/* Register prefix used for error message. */
617static const char *register_prefix = "%";
618
47926f60
KH
619/* Used in 16 bit gcc mode to add an l suffix to call, ret, enter,
620 leave, push, and pop instructions so that gcc has the same stack
621 frame as in 32 bit mode. */
622static char stackop_size = '\0';
eecb386c 623
12b55ccc
L
624/* Non-zero to optimize code alignment. */
625int optimize_align_code = 1;
626
47926f60
KH
627/* Non-zero to quieten some warnings. */
628static int quiet_warnings = 0;
a38cf1db 629
47926f60
KH
630/* CPU name. */
631static const char *cpu_arch_name = NULL;
6305a203 632static char *cpu_sub_arch_name = NULL;
a38cf1db 633
47926f60 634/* CPU feature flags. */
40fb9820
L
635static i386_cpu_flags cpu_arch_flags = CPU_UNKNOWN_FLAGS;
636
ccc9c027
L
637/* If we have selected a cpu we are generating instructions for. */
638static int cpu_arch_tune_set = 0;
639
9103f4f4 640/* Cpu we are generating instructions for. */
fbf3f584 641enum processor_type cpu_arch_tune = PROCESSOR_UNKNOWN;
9103f4f4
L
642
643/* CPU feature flags of cpu we are generating instructions for. */
40fb9820 644static i386_cpu_flags cpu_arch_tune_flags;
9103f4f4 645
ccc9c027 646/* CPU instruction set architecture used. */
fbf3f584 647enum processor_type cpu_arch_isa = PROCESSOR_UNKNOWN;
ccc9c027 648
9103f4f4 649/* CPU feature flags of instruction set architecture used. */
fbf3f584 650i386_cpu_flags cpu_arch_isa_flags;
9103f4f4 651
fddf5b5b
AM
652/* If set, conditional jumps are not automatically promoted to handle
653 larger than a byte offset. */
654static unsigned int no_cond_jump_promotion = 0;
655
c0f3af97
L
656/* Encode SSE instructions with VEX prefix. */
657static unsigned int sse2avx;
658
539f890d
L
659/* Encode scalar AVX instructions with specific vector length. */
660static enum
661 {
662 vex128 = 0,
663 vex256
664 } avxscalar;
665
43234a1e
L
666/* Encode scalar EVEX LIG instructions with specific vector length. */
667static enum
668 {
669 evexl128 = 0,
670 evexl256,
671 evexl512
672 } evexlig;
673
674/* Encode EVEX WIG instructions with specific evex.w. */
675static enum
676 {
677 evexw0 = 0,
678 evexw1
679 } evexwig;
680
d3d3c6db
IT
681/* Value to encode in EVEX RC bits, for SAE-only instructions. */
682static enum rc_type evexrcig = rne;
683
29b0f896 684/* Pre-defined "_GLOBAL_OFFSET_TABLE_". */
87c245cc 685static symbolS *GOT_symbol;
29b0f896 686
a4447b93
RH
687/* The dwarf2 return column, adjusted for 32 or 64 bit. */
688unsigned int x86_dwarf2_return_column;
689
690/* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
691int x86_cie_data_alignment;
692
252b5132 693/* Interface to relax_segment.
fddf5b5b
AM
694 There are 3 major relax states for 386 jump insns because the
695 different types of jumps add different sizes to frags when we're
696 figuring out what sort of jump to choose to reach a given label. */
252b5132 697
47926f60 698/* Types. */
93c2a809
AM
699#define UNCOND_JUMP 0
700#define COND_JUMP 1
701#define COND_JUMP86 2
fddf5b5b 702
47926f60 703/* Sizes. */
252b5132
RH
704#define CODE16 1
705#define SMALL 0
29b0f896 706#define SMALL16 (SMALL | CODE16)
252b5132 707#define BIG 2
29b0f896 708#define BIG16 (BIG | CODE16)
252b5132
RH
709
710#ifndef INLINE
711#ifdef __GNUC__
712#define INLINE __inline__
713#else
714#define INLINE
715#endif
716#endif
717
fddf5b5b
AM
718#define ENCODE_RELAX_STATE(type, size) \
719 ((relax_substateT) (((type) << 2) | (size)))
720#define TYPE_FROM_RELAX_STATE(s) \
721 ((s) >> 2)
722#define DISP_SIZE_FROM_RELAX_STATE(s) \
723 ((((s) & 3) == BIG ? 4 : (((s) & 3) == BIG16 ? 2 : 1)))
252b5132
RH
724
725/* This table is used by relax_frag to promote short jumps to long
726 ones where necessary. SMALL (short) jumps may be promoted to BIG
727 (32 bit long) ones, and SMALL16 jumps to BIG16 (16 bit long). We
728 don't allow a short jump in a 32 bit code segment to be promoted to
729 a 16 bit offset jump because it's slower (requires data size
730 prefix), and doesn't work, unless the destination is in the bottom
731 64k of the code segment (The top 16 bits of eip are zeroed). */
732
733const relax_typeS md_relax_table[] =
734{
24eab124
AM
735 /* The fields are:
736 1) most positive reach of this state,
737 2) most negative reach of this state,
93c2a809 738 3) how many bytes this mode will have in the variable part of the frag
ce8a8b2f 739 4) which index into the table to try if we can't fit into this one. */
252b5132 740
fddf5b5b 741 /* UNCOND_JUMP states. */
93c2a809
AM
742 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG)},
743 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16)},
744 /* dword jmp adds 4 bytes to frag:
745 0 extra opcode bytes, 4 displacement bytes. */
252b5132 746 {0, 0, 4, 0},
93c2a809
AM
747 /* word jmp adds 2 byte2 to frag:
748 0 extra opcode bytes, 2 displacement bytes. */
252b5132
RH
749 {0, 0, 2, 0},
750
93c2a809
AM
751 /* COND_JUMP states. */
752 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG)},
753 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG16)},
754 /* dword conditionals adds 5 bytes to frag:
755 1 extra opcode byte, 4 displacement bytes. */
756 {0, 0, 5, 0},
fddf5b5b 757 /* word conditionals add 3 bytes to frag:
93c2a809
AM
758 1 extra opcode byte, 2 displacement bytes. */
759 {0, 0, 3, 0},
760
761 /* COND_JUMP86 states. */
762 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG)},
763 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG16)},
764 /* dword conditionals adds 5 bytes to frag:
765 1 extra opcode byte, 4 displacement bytes. */
766 {0, 0, 5, 0},
767 /* word conditionals add 4 bytes to frag:
768 1 displacement byte and a 3 byte long branch insn. */
769 {0, 0, 4, 0}
252b5132
RH
770};
771
9103f4f4
L
772static const arch_entry cpu_arch[] =
773{
89507696
JB
774 /* Do not replace the first two entries - i386_target_format()
775 relies on them being there in this order. */
8a2c8fef 776 { STRING_COMMA_LEN ("generic32"), PROCESSOR_GENERIC32,
293f5f65 777 CPU_GENERIC32_FLAGS, 0 },
8a2c8fef 778 { STRING_COMMA_LEN ("generic64"), PROCESSOR_GENERIC64,
293f5f65 779 CPU_GENERIC64_FLAGS, 0 },
8a2c8fef 780 { STRING_COMMA_LEN ("i8086"), PROCESSOR_UNKNOWN,
293f5f65 781 CPU_NONE_FLAGS, 0 },
8a2c8fef 782 { STRING_COMMA_LEN ("i186"), PROCESSOR_UNKNOWN,
293f5f65 783 CPU_I186_FLAGS, 0 },
8a2c8fef 784 { STRING_COMMA_LEN ("i286"), PROCESSOR_UNKNOWN,
293f5f65 785 CPU_I286_FLAGS, 0 },
8a2c8fef 786 { STRING_COMMA_LEN ("i386"), PROCESSOR_I386,
293f5f65 787 CPU_I386_FLAGS, 0 },
8a2c8fef 788 { STRING_COMMA_LEN ("i486"), PROCESSOR_I486,
293f5f65 789 CPU_I486_FLAGS, 0 },
8a2c8fef 790 { STRING_COMMA_LEN ("i586"), PROCESSOR_PENTIUM,
293f5f65 791 CPU_I586_FLAGS, 0 },
8a2c8fef 792 { STRING_COMMA_LEN ("i686"), PROCESSOR_PENTIUMPRO,
293f5f65 793 CPU_I686_FLAGS, 0 },
8a2c8fef 794 { STRING_COMMA_LEN ("pentium"), PROCESSOR_PENTIUM,
293f5f65 795 CPU_I586_FLAGS, 0 },
8a2c8fef 796 { STRING_COMMA_LEN ("pentiumpro"), PROCESSOR_PENTIUMPRO,
293f5f65 797 CPU_PENTIUMPRO_FLAGS, 0 },
8a2c8fef 798 { STRING_COMMA_LEN ("pentiumii"), PROCESSOR_PENTIUMPRO,
293f5f65 799 CPU_P2_FLAGS, 0 },
8a2c8fef 800 { STRING_COMMA_LEN ("pentiumiii"),PROCESSOR_PENTIUMPRO,
293f5f65 801 CPU_P3_FLAGS, 0 },
8a2c8fef 802 { STRING_COMMA_LEN ("pentium4"), PROCESSOR_PENTIUM4,
293f5f65 803 CPU_P4_FLAGS, 0 },
8a2c8fef 804 { STRING_COMMA_LEN ("prescott"), PROCESSOR_NOCONA,
293f5f65 805 CPU_CORE_FLAGS, 0 },
8a2c8fef 806 { STRING_COMMA_LEN ("nocona"), PROCESSOR_NOCONA,
293f5f65 807 CPU_NOCONA_FLAGS, 0 },
8a2c8fef 808 { STRING_COMMA_LEN ("yonah"), PROCESSOR_CORE,
293f5f65 809 CPU_CORE_FLAGS, 1 },
8a2c8fef 810 { STRING_COMMA_LEN ("core"), PROCESSOR_CORE,
293f5f65 811 CPU_CORE_FLAGS, 0 },
8a2c8fef 812 { STRING_COMMA_LEN ("merom"), PROCESSOR_CORE2,
293f5f65 813 CPU_CORE2_FLAGS, 1 },
8a2c8fef 814 { STRING_COMMA_LEN ("core2"), PROCESSOR_CORE2,
293f5f65 815 CPU_CORE2_FLAGS, 0 },
8a2c8fef 816 { STRING_COMMA_LEN ("corei7"), PROCESSOR_COREI7,
293f5f65 817 CPU_COREI7_FLAGS, 0 },
8a2c8fef 818 { STRING_COMMA_LEN ("l1om"), PROCESSOR_L1OM,
293f5f65 819 CPU_L1OM_FLAGS, 0 },
7a9068fe 820 { STRING_COMMA_LEN ("k1om"), PROCESSOR_K1OM,
293f5f65 821 CPU_K1OM_FLAGS, 0 },
81486035 822 { STRING_COMMA_LEN ("iamcu"), PROCESSOR_IAMCU,
293f5f65 823 CPU_IAMCU_FLAGS, 0 },
8a2c8fef 824 { STRING_COMMA_LEN ("k6"), PROCESSOR_K6,
293f5f65 825 CPU_K6_FLAGS, 0 },
8a2c8fef 826 { STRING_COMMA_LEN ("k6_2"), PROCESSOR_K6,
293f5f65 827 CPU_K6_2_FLAGS, 0 },
8a2c8fef 828 { STRING_COMMA_LEN ("athlon"), PROCESSOR_ATHLON,
293f5f65 829 CPU_ATHLON_FLAGS, 0 },
8a2c8fef 830 { STRING_COMMA_LEN ("sledgehammer"), PROCESSOR_K8,
293f5f65 831 CPU_K8_FLAGS, 1 },
8a2c8fef 832 { STRING_COMMA_LEN ("opteron"), PROCESSOR_K8,
293f5f65 833 CPU_K8_FLAGS, 0 },
8a2c8fef 834 { STRING_COMMA_LEN ("k8"), PROCESSOR_K8,
293f5f65 835 CPU_K8_FLAGS, 0 },
8a2c8fef 836 { STRING_COMMA_LEN ("amdfam10"), PROCESSOR_AMDFAM10,
293f5f65 837 CPU_AMDFAM10_FLAGS, 0 },
8aedb9fe 838 { STRING_COMMA_LEN ("bdver1"), PROCESSOR_BD,
293f5f65 839 CPU_BDVER1_FLAGS, 0 },
8aedb9fe 840 { STRING_COMMA_LEN ("bdver2"), PROCESSOR_BD,
293f5f65 841 CPU_BDVER2_FLAGS, 0 },
5e5c50d3 842 { STRING_COMMA_LEN ("bdver3"), PROCESSOR_BD,
293f5f65 843 CPU_BDVER3_FLAGS, 0 },
c7b0bd56 844 { STRING_COMMA_LEN ("bdver4"), PROCESSOR_BD,
293f5f65 845 CPU_BDVER4_FLAGS, 0 },
029f3522 846 { STRING_COMMA_LEN ("znver1"), PROCESSOR_ZNVER,
293f5f65 847 CPU_ZNVER1_FLAGS, 0 },
a9660a6f
AP
848 { STRING_COMMA_LEN ("znver2"), PROCESSOR_ZNVER,
849 CPU_ZNVER2_FLAGS, 0 },
7b458c12 850 { STRING_COMMA_LEN ("btver1"), PROCESSOR_BT,
293f5f65 851 CPU_BTVER1_FLAGS, 0 },
7b458c12 852 { STRING_COMMA_LEN ("btver2"), PROCESSOR_BT,
293f5f65 853 CPU_BTVER2_FLAGS, 0 },
8a2c8fef 854 { STRING_COMMA_LEN (".8087"), PROCESSOR_UNKNOWN,
293f5f65 855 CPU_8087_FLAGS, 0 },
8a2c8fef 856 { STRING_COMMA_LEN (".287"), PROCESSOR_UNKNOWN,
293f5f65 857 CPU_287_FLAGS, 0 },
8a2c8fef 858 { STRING_COMMA_LEN (".387"), PROCESSOR_UNKNOWN,
293f5f65 859 CPU_387_FLAGS, 0 },
1848e567
L
860 { STRING_COMMA_LEN (".687"), PROCESSOR_UNKNOWN,
861 CPU_687_FLAGS, 0 },
8a2c8fef 862 { STRING_COMMA_LEN (".mmx"), PROCESSOR_UNKNOWN,
293f5f65 863 CPU_MMX_FLAGS, 0 },
8a2c8fef 864 { STRING_COMMA_LEN (".sse"), PROCESSOR_UNKNOWN,
293f5f65 865 CPU_SSE_FLAGS, 0 },
8a2c8fef 866 { STRING_COMMA_LEN (".sse2"), PROCESSOR_UNKNOWN,
293f5f65 867 CPU_SSE2_FLAGS, 0 },
8a2c8fef 868 { STRING_COMMA_LEN (".sse3"), PROCESSOR_UNKNOWN,
293f5f65 869 CPU_SSE3_FLAGS, 0 },
8a2c8fef 870 { STRING_COMMA_LEN (".ssse3"), PROCESSOR_UNKNOWN,
293f5f65 871 CPU_SSSE3_FLAGS, 0 },
8a2c8fef 872 { STRING_COMMA_LEN (".sse4.1"), PROCESSOR_UNKNOWN,
293f5f65 873 CPU_SSE4_1_FLAGS, 0 },
8a2c8fef 874 { STRING_COMMA_LEN (".sse4.2"), PROCESSOR_UNKNOWN,
293f5f65 875 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 876 { STRING_COMMA_LEN (".sse4"), PROCESSOR_UNKNOWN,
293f5f65 877 CPU_SSE4_2_FLAGS, 0 },
8a2c8fef 878 { STRING_COMMA_LEN (".avx"), PROCESSOR_UNKNOWN,
293f5f65 879 CPU_AVX_FLAGS, 0 },
6c30d220 880 { STRING_COMMA_LEN (".avx2"), PROCESSOR_UNKNOWN,
293f5f65 881 CPU_AVX2_FLAGS, 0 },
43234a1e 882 { STRING_COMMA_LEN (".avx512f"), PROCESSOR_UNKNOWN,
293f5f65 883 CPU_AVX512F_FLAGS, 0 },
43234a1e 884 { STRING_COMMA_LEN (".avx512cd"), PROCESSOR_UNKNOWN,
293f5f65 885 CPU_AVX512CD_FLAGS, 0 },
43234a1e 886 { STRING_COMMA_LEN (".avx512er"), PROCESSOR_UNKNOWN,
293f5f65 887 CPU_AVX512ER_FLAGS, 0 },
43234a1e 888 { STRING_COMMA_LEN (".avx512pf"), PROCESSOR_UNKNOWN,
293f5f65 889 CPU_AVX512PF_FLAGS, 0 },
1dfc6506 890 { STRING_COMMA_LEN (".avx512dq"), PROCESSOR_UNKNOWN,
293f5f65 891 CPU_AVX512DQ_FLAGS, 0 },
1dfc6506 892 { STRING_COMMA_LEN (".avx512bw"), PROCESSOR_UNKNOWN,
293f5f65 893 CPU_AVX512BW_FLAGS, 0 },
1dfc6506 894 { STRING_COMMA_LEN (".avx512vl"), PROCESSOR_UNKNOWN,
293f5f65 895 CPU_AVX512VL_FLAGS, 0 },
8a2c8fef 896 { STRING_COMMA_LEN (".vmx"), PROCESSOR_UNKNOWN,
293f5f65 897 CPU_VMX_FLAGS, 0 },
8729a6f6 898 { STRING_COMMA_LEN (".vmfunc"), PROCESSOR_UNKNOWN,
293f5f65 899 CPU_VMFUNC_FLAGS, 0 },
8a2c8fef 900 { STRING_COMMA_LEN (".smx"), PROCESSOR_UNKNOWN,
293f5f65 901 CPU_SMX_FLAGS, 0 },
8a2c8fef 902 { STRING_COMMA_LEN (".xsave"), PROCESSOR_UNKNOWN,
293f5f65 903 CPU_XSAVE_FLAGS, 0 },
c7b8aa3a 904 { STRING_COMMA_LEN (".xsaveopt"), PROCESSOR_UNKNOWN,
293f5f65 905 CPU_XSAVEOPT_FLAGS, 0 },
1dfc6506 906 { STRING_COMMA_LEN (".xsavec"), PROCESSOR_UNKNOWN,
293f5f65 907 CPU_XSAVEC_FLAGS, 0 },
1dfc6506 908 { STRING_COMMA_LEN (".xsaves"), PROCESSOR_UNKNOWN,
293f5f65 909 CPU_XSAVES_FLAGS, 0 },
8a2c8fef 910 { STRING_COMMA_LEN (".aes"), PROCESSOR_UNKNOWN,
293f5f65 911 CPU_AES_FLAGS, 0 },
8a2c8fef 912 { STRING_COMMA_LEN (".pclmul"), PROCESSOR_UNKNOWN,
293f5f65 913 CPU_PCLMUL_FLAGS, 0 },
8a2c8fef 914 { STRING_COMMA_LEN (".clmul"), PROCESSOR_UNKNOWN,
293f5f65 915 CPU_PCLMUL_FLAGS, 1 },
c7b8aa3a 916 { STRING_COMMA_LEN (".fsgsbase"), PROCESSOR_UNKNOWN,
293f5f65 917 CPU_FSGSBASE_FLAGS, 0 },
c7b8aa3a 918 { STRING_COMMA_LEN (".rdrnd"), PROCESSOR_UNKNOWN,
293f5f65 919 CPU_RDRND_FLAGS, 0 },
c7b8aa3a 920 { STRING_COMMA_LEN (".f16c"), PROCESSOR_UNKNOWN,
293f5f65 921 CPU_F16C_FLAGS, 0 },
6c30d220 922 { STRING_COMMA_LEN (".bmi2"), PROCESSOR_UNKNOWN,
293f5f65 923 CPU_BMI2_FLAGS, 0 },
8a2c8fef 924 { STRING_COMMA_LEN (".fma"), PROCESSOR_UNKNOWN,
293f5f65 925 CPU_FMA_FLAGS, 0 },
8a2c8fef 926 { STRING_COMMA_LEN (".fma4"), PROCESSOR_UNKNOWN,
293f5f65 927 CPU_FMA4_FLAGS, 0 },
8a2c8fef 928 { STRING_COMMA_LEN (".xop"), PROCESSOR_UNKNOWN,
293f5f65 929 CPU_XOP_FLAGS, 0 },
8a2c8fef 930 { STRING_COMMA_LEN (".lwp"), PROCESSOR_UNKNOWN,
293f5f65 931 CPU_LWP_FLAGS, 0 },
8a2c8fef 932 { STRING_COMMA_LEN (".movbe"), PROCESSOR_UNKNOWN,
293f5f65 933 CPU_MOVBE_FLAGS, 0 },
60aa667e 934 { STRING_COMMA_LEN (".cx16"), PROCESSOR_UNKNOWN,
293f5f65 935 CPU_CX16_FLAGS, 0 },
8a2c8fef 936 { STRING_COMMA_LEN (".ept"), PROCESSOR_UNKNOWN,
293f5f65 937 CPU_EPT_FLAGS, 0 },
6c30d220 938 { STRING_COMMA_LEN (".lzcnt"), PROCESSOR_UNKNOWN,
293f5f65 939 CPU_LZCNT_FLAGS, 0 },
42164a71 940 { STRING_COMMA_LEN (".hle"), PROCESSOR_UNKNOWN,
293f5f65 941 CPU_HLE_FLAGS, 0 },
42164a71 942 { STRING_COMMA_LEN (".rtm"), PROCESSOR_UNKNOWN,
293f5f65 943 CPU_RTM_FLAGS, 0 },
6c30d220 944 { STRING_COMMA_LEN (".invpcid"), PROCESSOR_UNKNOWN,
293f5f65 945 CPU_INVPCID_FLAGS, 0 },
8a2c8fef 946 { STRING_COMMA_LEN (".clflush"), PROCESSOR_UNKNOWN,
293f5f65 947 CPU_CLFLUSH_FLAGS, 0 },
22109423 948 { STRING_COMMA_LEN (".nop"), PROCESSOR_UNKNOWN,
293f5f65 949 CPU_NOP_FLAGS, 0 },
8a2c8fef 950 { STRING_COMMA_LEN (".syscall"), PROCESSOR_UNKNOWN,
293f5f65 951 CPU_SYSCALL_FLAGS, 0 },
8a2c8fef 952 { STRING_COMMA_LEN (".rdtscp"), PROCESSOR_UNKNOWN,
293f5f65 953 CPU_RDTSCP_FLAGS, 0 },
8a2c8fef 954 { STRING_COMMA_LEN (".3dnow"), PROCESSOR_UNKNOWN,
293f5f65 955 CPU_3DNOW_FLAGS, 0 },
8a2c8fef 956 { STRING_COMMA_LEN (".3dnowa"), PROCESSOR_UNKNOWN,
293f5f65 957 CPU_3DNOWA_FLAGS, 0 },
8a2c8fef 958 { STRING_COMMA_LEN (".padlock"), PROCESSOR_UNKNOWN,
293f5f65 959 CPU_PADLOCK_FLAGS, 0 },
8a2c8fef 960 { STRING_COMMA_LEN (".pacifica"), PROCESSOR_UNKNOWN,
293f5f65 961 CPU_SVME_FLAGS, 1 },
8a2c8fef 962 { STRING_COMMA_LEN (".svme"), PROCESSOR_UNKNOWN,
293f5f65 963 CPU_SVME_FLAGS, 0 },
8a2c8fef 964 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
293f5f65 965 CPU_SSE4A_FLAGS, 0 },
8a2c8fef 966 { STRING_COMMA_LEN (".abm"), PROCESSOR_UNKNOWN,
293f5f65 967 CPU_ABM_FLAGS, 0 },
87973e9f 968 { STRING_COMMA_LEN (".bmi"), PROCESSOR_UNKNOWN,
293f5f65 969 CPU_BMI_FLAGS, 0 },
2a2a0f38 970 { STRING_COMMA_LEN (".tbm"), PROCESSOR_UNKNOWN,
293f5f65 971 CPU_TBM_FLAGS, 0 },
e2e1fcde 972 { STRING_COMMA_LEN (".adx"), PROCESSOR_UNKNOWN,
293f5f65 973 CPU_ADX_FLAGS, 0 },
e2e1fcde 974 { STRING_COMMA_LEN (".rdseed"), PROCESSOR_UNKNOWN,
293f5f65 975 CPU_RDSEED_FLAGS, 0 },
e2e1fcde 976 { STRING_COMMA_LEN (".prfchw"), PROCESSOR_UNKNOWN,
293f5f65 977 CPU_PRFCHW_FLAGS, 0 },
5c111e37 978 { STRING_COMMA_LEN (".smap"), PROCESSOR_UNKNOWN,
293f5f65 979 CPU_SMAP_FLAGS, 0 },
7e8b059b 980 { STRING_COMMA_LEN (".mpx"), PROCESSOR_UNKNOWN,
293f5f65 981 CPU_MPX_FLAGS, 0 },
a0046408 982 { STRING_COMMA_LEN (".sha"), PROCESSOR_UNKNOWN,
293f5f65 983 CPU_SHA_FLAGS, 0 },
963f3586 984 { STRING_COMMA_LEN (".clflushopt"), PROCESSOR_UNKNOWN,
293f5f65 985 CPU_CLFLUSHOPT_FLAGS, 0 },
dcf893b5 986 { STRING_COMMA_LEN (".prefetchwt1"), PROCESSOR_UNKNOWN,
293f5f65 987 CPU_PREFETCHWT1_FLAGS, 0 },
2cf200a4 988 { STRING_COMMA_LEN (".se1"), PROCESSOR_UNKNOWN,
293f5f65 989 CPU_SE1_FLAGS, 0 },
c5e7287a 990 { STRING_COMMA_LEN (".clwb"), PROCESSOR_UNKNOWN,
293f5f65 991 CPU_CLWB_FLAGS, 0 },
2cc1b5aa 992 { STRING_COMMA_LEN (".avx512ifma"), PROCESSOR_UNKNOWN,
293f5f65 993 CPU_AVX512IFMA_FLAGS, 0 },
14f195c9 994 { STRING_COMMA_LEN (".avx512vbmi"), PROCESSOR_UNKNOWN,
293f5f65 995 CPU_AVX512VBMI_FLAGS, 0 },
920d2ddc
IT
996 { STRING_COMMA_LEN (".avx512_4fmaps"), PROCESSOR_UNKNOWN,
997 CPU_AVX512_4FMAPS_FLAGS, 0 },
47acf0bd
IT
998 { STRING_COMMA_LEN (".avx512_4vnniw"), PROCESSOR_UNKNOWN,
999 CPU_AVX512_4VNNIW_FLAGS, 0 },
620214f7
IT
1000 { STRING_COMMA_LEN (".avx512_vpopcntdq"), PROCESSOR_UNKNOWN,
1001 CPU_AVX512_VPOPCNTDQ_FLAGS, 0 },
53467f57
IT
1002 { STRING_COMMA_LEN (".avx512_vbmi2"), PROCESSOR_UNKNOWN,
1003 CPU_AVX512_VBMI2_FLAGS, 0 },
8cfcb765
IT
1004 { STRING_COMMA_LEN (".avx512_vnni"), PROCESSOR_UNKNOWN,
1005 CPU_AVX512_VNNI_FLAGS, 0 },
ee6872be
IT
1006 { STRING_COMMA_LEN (".avx512_bitalg"), PROCESSOR_UNKNOWN,
1007 CPU_AVX512_BITALG_FLAGS, 0 },
029f3522 1008 { STRING_COMMA_LEN (".clzero"), PROCESSOR_UNKNOWN,
293f5f65 1009 CPU_CLZERO_FLAGS, 0 },
9916071f 1010 { STRING_COMMA_LEN (".mwaitx"), PROCESSOR_UNKNOWN,
293f5f65 1011 CPU_MWAITX_FLAGS, 0 },
8eab4136 1012 { STRING_COMMA_LEN (".ospke"), PROCESSOR_UNKNOWN,
293f5f65 1013 CPU_OSPKE_FLAGS, 0 },
8bc52696 1014 { STRING_COMMA_LEN (".rdpid"), PROCESSOR_UNKNOWN,
293f5f65 1015 CPU_RDPID_FLAGS, 0 },
6b40c462
L
1016 { STRING_COMMA_LEN (".ptwrite"), PROCESSOR_UNKNOWN,
1017 CPU_PTWRITE_FLAGS, 0 },
d777820b
IT
1018 { STRING_COMMA_LEN (".ibt"), PROCESSOR_UNKNOWN,
1019 CPU_IBT_FLAGS, 0 },
1020 { STRING_COMMA_LEN (".shstk"), PROCESSOR_UNKNOWN,
1021 CPU_SHSTK_FLAGS, 0 },
48521003
IT
1022 { STRING_COMMA_LEN (".gfni"), PROCESSOR_UNKNOWN,
1023 CPU_GFNI_FLAGS, 0 },
8dcf1fad
IT
1024 { STRING_COMMA_LEN (".vaes"), PROCESSOR_UNKNOWN,
1025 CPU_VAES_FLAGS, 0 },
ff1982d5
IT
1026 { STRING_COMMA_LEN (".vpclmulqdq"), PROCESSOR_UNKNOWN,
1027 CPU_VPCLMULQDQ_FLAGS, 0 },
3233d7d0
IT
1028 { STRING_COMMA_LEN (".wbnoinvd"), PROCESSOR_UNKNOWN,
1029 CPU_WBNOINVD_FLAGS, 0 },
be3a8dca
IT
1030 { STRING_COMMA_LEN (".pconfig"), PROCESSOR_UNKNOWN,
1031 CPU_PCONFIG_FLAGS, 0 },
de89d0a3
IT
1032 { STRING_COMMA_LEN (".waitpkg"), PROCESSOR_UNKNOWN,
1033 CPU_WAITPKG_FLAGS, 0 },
c48935d7
IT
1034 { STRING_COMMA_LEN (".cldemote"), PROCESSOR_UNKNOWN,
1035 CPU_CLDEMOTE_FLAGS, 0 },
c0a30a9f
L
1036 { STRING_COMMA_LEN (".movdiri"), PROCESSOR_UNKNOWN,
1037 CPU_MOVDIRI_FLAGS, 0 },
1038 { STRING_COMMA_LEN (".movdir64b"), PROCESSOR_UNKNOWN,
1039 CPU_MOVDIR64B_FLAGS, 0 },
293f5f65
L
1040};
1041
1042static const noarch_entry cpu_noarch[] =
1043{
1044 { STRING_COMMA_LEN ("no87"), CPU_ANY_X87_FLAGS },
1848e567
L
1045 { STRING_COMMA_LEN ("no287"), CPU_ANY_287_FLAGS },
1046 { STRING_COMMA_LEN ("no387"), CPU_ANY_387_FLAGS },
1047 { STRING_COMMA_LEN ("no687"), CPU_ANY_687_FLAGS },
293f5f65
L
1048 { STRING_COMMA_LEN ("nommx"), CPU_ANY_MMX_FLAGS },
1049 { STRING_COMMA_LEN ("nosse"), CPU_ANY_SSE_FLAGS },
1848e567
L
1050 { STRING_COMMA_LEN ("nosse2"), CPU_ANY_SSE2_FLAGS },
1051 { STRING_COMMA_LEN ("nosse3"), CPU_ANY_SSE3_FLAGS },
1052 { STRING_COMMA_LEN ("nossse3"), CPU_ANY_SSSE3_FLAGS },
1053 { STRING_COMMA_LEN ("nosse4.1"), CPU_ANY_SSE4_1_FLAGS },
1054 { STRING_COMMA_LEN ("nosse4.2"), CPU_ANY_SSE4_2_FLAGS },
1055 { STRING_COMMA_LEN ("nosse4"), CPU_ANY_SSE4_1_FLAGS },
293f5f65 1056 { STRING_COMMA_LEN ("noavx"), CPU_ANY_AVX_FLAGS },
1848e567 1057 { STRING_COMMA_LEN ("noavx2"), CPU_ANY_AVX2_FLAGS },
144b71e2
L
1058 { STRING_COMMA_LEN ("noavx512f"), CPU_ANY_AVX512F_FLAGS },
1059 { STRING_COMMA_LEN ("noavx512cd"), CPU_ANY_AVX512CD_FLAGS },
1060 { STRING_COMMA_LEN ("noavx512er"), CPU_ANY_AVX512ER_FLAGS },
1061 { STRING_COMMA_LEN ("noavx512pf"), CPU_ANY_AVX512PF_FLAGS },
1062 { STRING_COMMA_LEN ("noavx512dq"), CPU_ANY_AVX512DQ_FLAGS },
1063 { STRING_COMMA_LEN ("noavx512bw"), CPU_ANY_AVX512BW_FLAGS },
1064 { STRING_COMMA_LEN ("noavx512vl"), CPU_ANY_AVX512VL_FLAGS },
1065 { STRING_COMMA_LEN ("noavx512ifma"), CPU_ANY_AVX512IFMA_FLAGS },
1066 { STRING_COMMA_LEN ("noavx512vbmi"), CPU_ANY_AVX512VBMI_FLAGS },
920d2ddc 1067 { STRING_COMMA_LEN ("noavx512_4fmaps"), CPU_ANY_AVX512_4FMAPS_FLAGS },
47acf0bd 1068 { STRING_COMMA_LEN ("noavx512_4vnniw"), CPU_ANY_AVX512_4VNNIW_FLAGS },
620214f7 1069 { STRING_COMMA_LEN ("noavx512_vpopcntdq"), CPU_ANY_AVX512_VPOPCNTDQ_FLAGS },
53467f57 1070 { STRING_COMMA_LEN ("noavx512_vbmi2"), CPU_ANY_AVX512_VBMI2_FLAGS },
8cfcb765 1071 { STRING_COMMA_LEN ("noavx512_vnni"), CPU_ANY_AVX512_VNNI_FLAGS },
ee6872be 1072 { STRING_COMMA_LEN ("noavx512_bitalg"), CPU_ANY_AVX512_BITALG_FLAGS },
d777820b
IT
1073 { STRING_COMMA_LEN ("noibt"), CPU_ANY_IBT_FLAGS },
1074 { STRING_COMMA_LEN ("noshstk"), CPU_ANY_SHSTK_FLAGS },
c0a30a9f
L
1075 { STRING_COMMA_LEN ("nomovdiri"), CPU_ANY_MOVDIRI_FLAGS },
1076 { STRING_COMMA_LEN ("nomovdir64b"), CPU_ANY_MOVDIR64B_FLAGS },
e413e4e9
AM
1077};
1078
704209c0 1079#ifdef I386COFF
a6c24e68
NC
1080/* Like s_lcomm_internal in gas/read.c but the alignment string
1081 is allowed to be optional. */
1082
1083static symbolS *
1084pe_lcomm_internal (int needs_align, symbolS *symbolP, addressT size)
1085{
1086 addressT align = 0;
1087
1088 SKIP_WHITESPACE ();
1089
7ab9ffdd 1090 if (needs_align
a6c24e68
NC
1091 && *input_line_pointer == ',')
1092 {
1093 align = parse_align (needs_align - 1);
7ab9ffdd 1094
a6c24e68
NC
1095 if (align == (addressT) -1)
1096 return NULL;
1097 }
1098 else
1099 {
1100 if (size >= 8)
1101 align = 3;
1102 else if (size >= 4)
1103 align = 2;
1104 else if (size >= 2)
1105 align = 1;
1106 else
1107 align = 0;
1108 }
1109
1110 bss_alloc (symbolP, size, align);
1111 return symbolP;
1112}
1113
704209c0 1114static void
a6c24e68
NC
1115pe_lcomm (int needs_align)
1116{
1117 s_comm_internal (needs_align * 2, pe_lcomm_internal);
1118}
704209c0 1119#endif
a6c24e68 1120
29b0f896
AM
1121const pseudo_typeS md_pseudo_table[] =
1122{
1123#if !defined(OBJ_AOUT) && !defined(USE_ALIGN_PTWO)
1124 {"align", s_align_bytes, 0},
1125#else
1126 {"align", s_align_ptwo, 0},
1127#endif
1128 {"arch", set_cpu_arch, 0},
1129#ifndef I386COFF
1130 {"bss", s_bss, 0},
a6c24e68
NC
1131#else
1132 {"lcomm", pe_lcomm, 1},
29b0f896
AM
1133#endif
1134 {"ffloat", float_cons, 'f'},
1135 {"dfloat", float_cons, 'd'},
1136 {"tfloat", float_cons, 'x'},
1137 {"value", cons, 2},
d182319b 1138 {"slong", signed_cons, 4},
29b0f896
AM
1139 {"noopt", s_ignore, 0},
1140 {"optim", s_ignore, 0},
1141 {"code16gcc", set_16bit_gcc_code_flag, CODE_16BIT},
1142 {"code16", set_code_flag, CODE_16BIT},
1143 {"code32", set_code_flag, CODE_32BIT},
da5f19a2 1144#ifdef BFD64
29b0f896 1145 {"code64", set_code_flag, CODE_64BIT},
da5f19a2 1146#endif
29b0f896
AM
1147 {"intel_syntax", set_intel_syntax, 1},
1148 {"att_syntax", set_intel_syntax, 0},
1efbbeb4
L
1149 {"intel_mnemonic", set_intel_mnemonic, 1},
1150 {"att_mnemonic", set_intel_mnemonic, 0},
db51cc60
L
1151 {"allow_index_reg", set_allow_index_reg, 1},
1152 {"disallow_index_reg", set_allow_index_reg, 0},
7bab8ab5
JB
1153 {"sse_check", set_check, 0},
1154 {"operand_check", set_check, 1},
3b22753a
L
1155#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
1156 {"largecomm", handle_large_common, 0},
07a53e5c 1157#else
68d20676 1158 {"file", dwarf2_directive_file, 0},
07a53e5c
RH
1159 {"loc", dwarf2_directive_loc, 0},
1160 {"loc_mark_labels", dwarf2_directive_loc_mark_labels, 0},
3b22753a 1161#endif
6482c264
NC
1162#ifdef TE_PE
1163 {"secrel32", pe_directive_secrel, 0},
1164#endif
29b0f896
AM
1165 {0, 0, 0}
1166};
1167
1168/* For interface with expression (). */
1169extern char *input_line_pointer;
1170
1171/* Hash table for instruction mnemonic lookup. */
1172static struct hash_control *op_hash;
1173
1174/* Hash table for register lookup. */
1175static struct hash_control *reg_hash;
1176\f
ce8a8b2f
AM
1177 /* Various efficient no-op patterns for aligning code labels.
1178 Note: Don't try to assemble the instructions in the comments.
1179 0L and 0w are not legal. */
62a02d25
L
1180static const unsigned char f32_1[] =
1181 {0x90}; /* nop */
1182static const unsigned char f32_2[] =
1183 {0x66,0x90}; /* xchg %ax,%ax */
1184static const unsigned char f32_3[] =
1185 {0x8d,0x76,0x00}; /* leal 0(%esi),%esi */
1186static const unsigned char f32_4[] =
1187 {0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
62a02d25
L
1188static const unsigned char f32_6[] =
1189 {0x8d,0xb6,0x00,0x00,0x00,0x00}; /* leal 0L(%esi),%esi */
1190static const unsigned char f32_7[] =
1191 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
62a02d25 1192static const unsigned char f16_3[] =
3ae729d5 1193 {0x8d,0x74,0x00}; /* lea 0(%si),%si */
62a02d25 1194static const unsigned char f16_4[] =
3ae729d5
L
1195 {0x8d,0xb4,0x00,0x00}; /* lea 0W(%si),%si */
1196static const unsigned char jump_disp8[] =
1197 {0xeb}; /* jmp disp8 */
1198static const unsigned char jump32_disp32[] =
1199 {0xe9}; /* jmp disp32 */
1200static const unsigned char jump16_disp32[] =
1201 {0x66,0xe9}; /* jmp disp32 */
62a02d25
L
1202/* 32-bit NOPs patterns. */
1203static const unsigned char *const f32_patt[] = {
3ae729d5 1204 f32_1, f32_2, f32_3, f32_4, NULL, f32_6, f32_7
62a02d25
L
1205};
1206/* 16-bit NOPs patterns. */
1207static const unsigned char *const f16_patt[] = {
3ae729d5 1208 f32_1, f32_2, f16_3, f16_4
62a02d25
L
1209};
1210/* nopl (%[re]ax) */
1211static const unsigned char alt_3[] =
1212 {0x0f,0x1f,0x00};
1213/* nopl 0(%[re]ax) */
1214static const unsigned char alt_4[] =
1215 {0x0f,0x1f,0x40,0x00};
1216/* nopl 0(%[re]ax,%[re]ax,1) */
1217static const unsigned char alt_5[] =
1218 {0x0f,0x1f,0x44,0x00,0x00};
1219/* nopw 0(%[re]ax,%[re]ax,1) */
1220static const unsigned char alt_6[] =
1221 {0x66,0x0f,0x1f,0x44,0x00,0x00};
1222/* nopl 0L(%[re]ax) */
1223static const unsigned char alt_7[] =
1224 {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
1225/* nopl 0L(%[re]ax,%[re]ax,1) */
1226static const unsigned char alt_8[] =
1227 {0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1228/* nopw 0L(%[re]ax,%[re]ax,1) */
1229static const unsigned char alt_9[] =
1230 {0x66,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
1231/* nopw %cs:0L(%[re]ax,%[re]ax,1) */
1232static const unsigned char alt_10[] =
1233 {0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
3ae729d5
L
1234/* data16 nopw %cs:0L(%eax,%eax,1) */
1235static const unsigned char alt_11[] =
1236 {0x66,0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
62a02d25
L
1237/* 32-bit and 64-bit NOPs patterns. */
1238static const unsigned char *const alt_patt[] = {
1239 f32_1, f32_2, alt_3, alt_4, alt_5, alt_6, alt_7, alt_8,
3ae729d5 1240 alt_9, alt_10, alt_11
62a02d25
L
1241};
1242
1243/* Genenerate COUNT bytes of NOPs to WHERE from PATT with the maximum
1244 size of a single NOP instruction MAX_SINGLE_NOP_SIZE. */
1245
1246static void
1247i386_output_nops (char *where, const unsigned char *const *patt,
1248 int count, int max_single_nop_size)
1249
1250{
3ae729d5
L
1251 /* Place the longer NOP first. */
1252 int last;
1253 int offset;
1254 const unsigned char *nops = patt[max_single_nop_size - 1];
1255
1256 /* Use the smaller one if the requsted one isn't available. */
1257 if (nops == NULL)
62a02d25 1258 {
3ae729d5
L
1259 max_single_nop_size--;
1260 nops = patt[max_single_nop_size - 1];
62a02d25
L
1261 }
1262
3ae729d5
L
1263 last = count % max_single_nop_size;
1264
1265 count -= last;
1266 for (offset = 0; offset < count; offset += max_single_nop_size)
1267 memcpy (where + offset, nops, max_single_nop_size);
1268
1269 if (last)
1270 {
1271 nops = patt[last - 1];
1272 if (nops == NULL)
1273 {
1274 /* Use the smaller one plus one-byte NOP if the needed one
1275 isn't available. */
1276 last--;
1277 nops = patt[last - 1];
1278 memcpy (where + offset, nops, last);
1279 where[offset + last] = *patt[0];
1280 }
1281 else
1282 memcpy (where + offset, nops, last);
1283 }
62a02d25
L
1284}
1285
3ae729d5
L
1286static INLINE int
1287fits_in_imm7 (offsetT num)
1288{
1289 return (num & 0x7f) == num;
1290}
1291
1292static INLINE int
1293fits_in_imm31 (offsetT num)
1294{
1295 return (num & 0x7fffffff) == num;
1296}
62a02d25
L
1297
1298/* Genenerate COUNT bytes of NOPs to WHERE with the maximum size of a
1299 single NOP instruction LIMIT. */
1300
1301void
3ae729d5 1302i386_generate_nops (fragS *fragP, char *where, offsetT count, int limit)
62a02d25 1303{
3ae729d5 1304 const unsigned char *const *patt = NULL;
62a02d25 1305 int max_single_nop_size;
3ae729d5
L
1306 /* Maximum number of NOPs before switching to jump over NOPs. */
1307 int max_number_of_nops;
62a02d25 1308
3ae729d5 1309 switch (fragP->fr_type)
62a02d25 1310 {
3ae729d5
L
1311 case rs_fill_nop:
1312 case rs_align_code:
1313 break;
1314 default:
62a02d25
L
1315 return;
1316 }
1317
ccc9c027
L
1318 /* We need to decide which NOP sequence to use for 32bit and
1319 64bit. When -mtune= is used:
4eed87de 1320
76bc74dc
L
1321 1. For PROCESSOR_I386, PROCESSOR_I486, PROCESSOR_PENTIUM and
1322 PROCESSOR_GENERIC32, f32_patt will be used.
80b8656c
L
1323 2. For the rest, alt_patt will be used.
1324
1325 When -mtune= isn't used, alt_patt will be used if
22109423 1326 cpu_arch_isa_flags has CpuNop. Otherwise, f32_patt will
76bc74dc 1327 be used.
ccc9c027
L
1328
1329 When -march= or .arch is used, we can't use anything beyond
1330 cpu_arch_isa_flags. */
1331
1332 if (flag_code == CODE_16BIT)
1333 {
3ae729d5
L
1334 patt = f16_patt;
1335 max_single_nop_size = sizeof (f16_patt) / sizeof (f16_patt[0]);
1336 /* Limit number of NOPs to 2 in 16-bit mode. */
1337 max_number_of_nops = 2;
252b5132 1338 }
33fef721 1339 else
ccc9c027 1340 {
fbf3f584 1341 if (fragP->tc_frag_data.isa == PROCESSOR_UNKNOWN)
ccc9c027
L
1342 {
1343 /* PROCESSOR_UNKNOWN means that all ISAs may be used. */
1344 switch (cpu_arch_tune)
1345 {
1346 case PROCESSOR_UNKNOWN:
1347 /* We use cpu_arch_isa_flags to check if we SHOULD
22109423
L
1348 optimize with nops. */
1349 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1350 patt = alt_patt;
ccc9c027
L
1351 else
1352 patt = f32_patt;
1353 break;
ccc9c027
L
1354 case PROCESSOR_PENTIUM4:
1355 case PROCESSOR_NOCONA:
ef05d495 1356 case PROCESSOR_CORE:
76bc74dc 1357 case PROCESSOR_CORE2:
bd5295b2 1358 case PROCESSOR_COREI7:
3632d14b 1359 case PROCESSOR_L1OM:
7a9068fe 1360 case PROCESSOR_K1OM:
76bc74dc 1361 case PROCESSOR_GENERIC64:
ccc9c027
L
1362 case PROCESSOR_K6:
1363 case PROCESSOR_ATHLON:
1364 case PROCESSOR_K8:
4eed87de 1365 case PROCESSOR_AMDFAM10:
8aedb9fe 1366 case PROCESSOR_BD:
029f3522 1367 case PROCESSOR_ZNVER:
7b458c12 1368 case PROCESSOR_BT:
80b8656c 1369 patt = alt_patt;
ccc9c027 1370 break;
76bc74dc 1371 case PROCESSOR_I386:
ccc9c027
L
1372 case PROCESSOR_I486:
1373 case PROCESSOR_PENTIUM:
2dde1948 1374 case PROCESSOR_PENTIUMPRO:
81486035 1375 case PROCESSOR_IAMCU:
ccc9c027
L
1376 case PROCESSOR_GENERIC32:
1377 patt = f32_patt;
1378 break;
4eed87de 1379 }
ccc9c027
L
1380 }
1381 else
1382 {
fbf3f584 1383 switch (fragP->tc_frag_data.tune)
ccc9c027
L
1384 {
1385 case PROCESSOR_UNKNOWN:
e6a14101 1386 /* When cpu_arch_isa is set, cpu_arch_tune shouldn't be
ccc9c027
L
1387 PROCESSOR_UNKNOWN. */
1388 abort ();
1389 break;
1390
76bc74dc 1391 case PROCESSOR_I386:
ccc9c027
L
1392 case PROCESSOR_I486:
1393 case PROCESSOR_PENTIUM:
81486035 1394 case PROCESSOR_IAMCU:
ccc9c027
L
1395 case PROCESSOR_K6:
1396 case PROCESSOR_ATHLON:
1397 case PROCESSOR_K8:
4eed87de 1398 case PROCESSOR_AMDFAM10:
8aedb9fe 1399 case PROCESSOR_BD:
029f3522 1400 case PROCESSOR_ZNVER:
7b458c12 1401 case PROCESSOR_BT:
ccc9c027
L
1402 case PROCESSOR_GENERIC32:
1403 /* We use cpu_arch_isa_flags to check if we CAN optimize
22109423
L
1404 with nops. */
1405 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1406 patt = alt_patt;
ccc9c027
L
1407 else
1408 patt = f32_patt;
1409 break;
76bc74dc
L
1410 case PROCESSOR_PENTIUMPRO:
1411 case PROCESSOR_PENTIUM4:
1412 case PROCESSOR_NOCONA:
1413 case PROCESSOR_CORE:
ef05d495 1414 case PROCESSOR_CORE2:
bd5295b2 1415 case PROCESSOR_COREI7:
3632d14b 1416 case PROCESSOR_L1OM:
7a9068fe 1417 case PROCESSOR_K1OM:
22109423 1418 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
80b8656c 1419 patt = alt_patt;
ccc9c027
L
1420 else
1421 patt = f32_patt;
1422 break;
1423 case PROCESSOR_GENERIC64:
80b8656c 1424 patt = alt_patt;
ccc9c027 1425 break;
4eed87de 1426 }
ccc9c027
L
1427 }
1428
76bc74dc
L
1429 if (patt == f32_patt)
1430 {
3ae729d5
L
1431 max_single_nop_size = sizeof (f32_patt) / sizeof (f32_patt[0]);
1432 /* Limit number of NOPs to 2 for older processors. */
1433 max_number_of_nops = 2;
76bc74dc
L
1434 }
1435 else
1436 {
3ae729d5
L
1437 max_single_nop_size = sizeof (alt_patt) / sizeof (alt_patt[0]);
1438 /* Limit number of NOPs to 7 for newer processors. */
1439 max_number_of_nops = 7;
1440 }
1441 }
1442
1443 if (limit == 0)
1444 limit = max_single_nop_size;
1445
1446 if (fragP->fr_type == rs_fill_nop)
1447 {
1448 /* Output NOPs for .nop directive. */
1449 if (limit > max_single_nop_size)
1450 {
1451 as_bad_where (fragP->fr_file, fragP->fr_line,
1452 _("invalid single nop size: %d "
1453 "(expect within [0, %d])"),
1454 limit, max_single_nop_size);
1455 return;
1456 }
1457 }
1458 else
1459 fragP->fr_var = count;
1460
1461 if ((count / max_single_nop_size) > max_number_of_nops)
1462 {
1463 /* Generate jump over NOPs. */
1464 offsetT disp = count - 2;
1465 if (fits_in_imm7 (disp))
1466 {
1467 /* Use "jmp disp8" if possible. */
1468 count = disp;
1469 where[0] = jump_disp8[0];
1470 where[1] = count;
1471 where += 2;
1472 }
1473 else
1474 {
1475 unsigned int size_of_jump;
1476
1477 if (flag_code == CODE_16BIT)
1478 {
1479 where[0] = jump16_disp32[0];
1480 where[1] = jump16_disp32[1];
1481 size_of_jump = 2;
1482 }
1483 else
1484 {
1485 where[0] = jump32_disp32[0];
1486 size_of_jump = 1;
1487 }
1488
1489 count -= size_of_jump + 4;
1490 if (!fits_in_imm31 (count))
1491 {
1492 as_bad_where (fragP->fr_file, fragP->fr_line,
1493 _("jump over nop padding out of range"));
1494 return;
1495 }
1496
1497 md_number_to_chars (where + size_of_jump, count, 4);
1498 where += size_of_jump + 4;
76bc74dc 1499 }
ccc9c027 1500 }
3ae729d5
L
1501
1502 /* Generate multiple NOPs. */
1503 i386_output_nops (where, patt, count, limit);
252b5132
RH
1504}
1505
c6fb90c8 1506static INLINE int
0dfbf9d7 1507operand_type_all_zero (const union i386_operand_type *x)
40fb9820 1508{
0dfbf9d7 1509 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1510 {
1511 case 3:
0dfbf9d7 1512 if (x->array[2])
c6fb90c8 1513 return 0;
1a0670f3 1514 /* Fall through. */
c6fb90c8 1515 case 2:
0dfbf9d7 1516 if (x->array[1])
c6fb90c8 1517 return 0;
1a0670f3 1518 /* Fall through. */
c6fb90c8 1519 case 1:
0dfbf9d7 1520 return !x->array[0];
c6fb90c8
L
1521 default:
1522 abort ();
1523 }
40fb9820
L
1524}
1525
c6fb90c8 1526static INLINE void
0dfbf9d7 1527operand_type_set (union i386_operand_type *x, unsigned int v)
40fb9820 1528{
0dfbf9d7 1529 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1530 {
1531 case 3:
0dfbf9d7 1532 x->array[2] = v;
1a0670f3 1533 /* Fall through. */
c6fb90c8 1534 case 2:
0dfbf9d7 1535 x->array[1] = v;
1a0670f3 1536 /* Fall through. */
c6fb90c8 1537 case 1:
0dfbf9d7 1538 x->array[0] = v;
1a0670f3 1539 /* Fall through. */
c6fb90c8
L
1540 break;
1541 default:
1542 abort ();
1543 }
1544}
40fb9820 1545
c6fb90c8 1546static INLINE int
0dfbf9d7
L
1547operand_type_equal (const union i386_operand_type *x,
1548 const union i386_operand_type *y)
c6fb90c8 1549{
0dfbf9d7 1550 switch (ARRAY_SIZE(x->array))
c6fb90c8
L
1551 {
1552 case 3:
0dfbf9d7 1553 if (x->array[2] != y->array[2])
c6fb90c8 1554 return 0;
1a0670f3 1555 /* Fall through. */
c6fb90c8 1556 case 2:
0dfbf9d7 1557 if (x->array[1] != y->array[1])
c6fb90c8 1558 return 0;
1a0670f3 1559 /* Fall through. */
c6fb90c8 1560 case 1:
0dfbf9d7 1561 return x->array[0] == y->array[0];
c6fb90c8
L
1562 break;
1563 default:
1564 abort ();
1565 }
1566}
40fb9820 1567
0dfbf9d7
L
1568static INLINE int
1569cpu_flags_all_zero (const union i386_cpu_flags *x)
1570{
1571 switch (ARRAY_SIZE(x->array))
1572 {
53467f57
IT
1573 case 4:
1574 if (x->array[3])
1575 return 0;
1576 /* Fall through. */
0dfbf9d7
L
1577 case 3:
1578 if (x->array[2])
1579 return 0;
1a0670f3 1580 /* Fall through. */
0dfbf9d7
L
1581 case 2:
1582 if (x->array[1])
1583 return 0;
1a0670f3 1584 /* Fall through. */
0dfbf9d7
L
1585 case 1:
1586 return !x->array[0];
1587 default:
1588 abort ();
1589 }
1590}
1591
0dfbf9d7
L
1592static INLINE int
1593cpu_flags_equal (const union i386_cpu_flags *x,
1594 const union i386_cpu_flags *y)
1595{
1596 switch (ARRAY_SIZE(x->array))
1597 {
53467f57
IT
1598 case 4:
1599 if (x->array[3] != y->array[3])
1600 return 0;
1601 /* Fall through. */
0dfbf9d7
L
1602 case 3:
1603 if (x->array[2] != y->array[2])
1604 return 0;
1a0670f3 1605 /* Fall through. */
0dfbf9d7
L
1606 case 2:
1607 if (x->array[1] != y->array[1])
1608 return 0;
1a0670f3 1609 /* Fall through. */
0dfbf9d7
L
1610 case 1:
1611 return x->array[0] == y->array[0];
1612 break;
1613 default:
1614 abort ();
1615 }
1616}
c6fb90c8
L
1617
1618static INLINE int
1619cpu_flags_check_cpu64 (i386_cpu_flags f)
1620{
1621 return !((flag_code == CODE_64BIT && f.bitfield.cpuno64)
1622 || (flag_code != CODE_64BIT && f.bitfield.cpu64));
40fb9820
L
1623}
1624
c6fb90c8
L
1625static INLINE i386_cpu_flags
1626cpu_flags_and (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1627{
c6fb90c8
L
1628 switch (ARRAY_SIZE (x.array))
1629 {
53467f57
IT
1630 case 4:
1631 x.array [3] &= y.array [3];
1632 /* Fall through. */
c6fb90c8
L
1633 case 3:
1634 x.array [2] &= y.array [2];
1a0670f3 1635 /* Fall through. */
c6fb90c8
L
1636 case 2:
1637 x.array [1] &= y.array [1];
1a0670f3 1638 /* Fall through. */
c6fb90c8
L
1639 case 1:
1640 x.array [0] &= y.array [0];
1641 break;
1642 default:
1643 abort ();
1644 }
1645 return x;
1646}
40fb9820 1647
c6fb90c8
L
1648static INLINE i386_cpu_flags
1649cpu_flags_or (i386_cpu_flags x, i386_cpu_flags y)
40fb9820 1650{
c6fb90c8 1651 switch (ARRAY_SIZE (x.array))
40fb9820 1652 {
53467f57
IT
1653 case 4:
1654 x.array [3] |= y.array [3];
1655 /* Fall through. */
c6fb90c8
L
1656 case 3:
1657 x.array [2] |= y.array [2];
1a0670f3 1658 /* Fall through. */
c6fb90c8
L
1659 case 2:
1660 x.array [1] |= y.array [1];
1a0670f3 1661 /* Fall through. */
c6fb90c8
L
1662 case 1:
1663 x.array [0] |= y.array [0];
40fb9820
L
1664 break;
1665 default:
1666 abort ();
1667 }
40fb9820
L
1668 return x;
1669}
1670
309d3373
JB
1671static INLINE i386_cpu_flags
1672cpu_flags_and_not (i386_cpu_flags x, i386_cpu_flags y)
1673{
1674 switch (ARRAY_SIZE (x.array))
1675 {
53467f57
IT
1676 case 4:
1677 x.array [3] &= ~y.array [3];
1678 /* Fall through. */
309d3373
JB
1679 case 3:
1680 x.array [2] &= ~y.array [2];
1a0670f3 1681 /* Fall through. */
309d3373
JB
1682 case 2:
1683 x.array [1] &= ~y.array [1];
1a0670f3 1684 /* Fall through. */
309d3373
JB
1685 case 1:
1686 x.array [0] &= ~y.array [0];
1687 break;
1688 default:
1689 abort ();
1690 }
1691 return x;
1692}
1693
c0f3af97
L
1694#define CPU_FLAGS_ARCH_MATCH 0x1
1695#define CPU_FLAGS_64BIT_MATCH 0x2
1696
c0f3af97 1697#define CPU_FLAGS_PERFECT_MATCH \
db12e14e 1698 (CPU_FLAGS_ARCH_MATCH | CPU_FLAGS_64BIT_MATCH)
c0f3af97
L
1699
1700/* Return CPU flags match bits. */
3629bb00 1701
40fb9820 1702static int
d3ce72d0 1703cpu_flags_match (const insn_template *t)
40fb9820 1704{
c0f3af97
L
1705 i386_cpu_flags x = t->cpu_flags;
1706 int match = cpu_flags_check_cpu64 (x) ? CPU_FLAGS_64BIT_MATCH : 0;
40fb9820
L
1707
1708 x.bitfield.cpu64 = 0;
1709 x.bitfield.cpuno64 = 0;
1710
0dfbf9d7 1711 if (cpu_flags_all_zero (&x))
c0f3af97
L
1712 {
1713 /* This instruction is available on all archs. */
db12e14e 1714 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 1715 }
3629bb00
L
1716 else
1717 {
c0f3af97 1718 /* This instruction is available only on some archs. */
3629bb00
L
1719 i386_cpu_flags cpu = cpu_arch_flags;
1720
ab592e75
JB
1721 /* AVX512VL is no standalone feature - match it and then strip it. */
1722 if (x.bitfield.cpuavx512vl && !cpu.bitfield.cpuavx512vl)
1723 return match;
1724 x.bitfield.cpuavx512vl = 0;
1725
3629bb00 1726 cpu = cpu_flags_and (x, cpu);
c0f3af97
L
1727 if (!cpu_flags_all_zero (&cpu))
1728 {
a5ff0eb2
L
1729 if (x.bitfield.cpuavx)
1730 {
929f69fa 1731 /* We need to check a few extra flags with AVX. */
b9d49817
JB
1732 if (cpu.bitfield.cpuavx
1733 && (!t->opcode_modifier.sse2avx || sse2avx)
1734 && (!x.bitfield.cpuaes || cpu.bitfield.cpuaes)
929f69fa 1735 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
b9d49817
JB
1736 && (!x.bitfield.cpupclmul || cpu.bitfield.cpupclmul))
1737 match |= CPU_FLAGS_ARCH_MATCH;
a5ff0eb2 1738 }
929f69fa
JB
1739 else if (x.bitfield.cpuavx512f)
1740 {
1741 /* We need to check a few extra flags with AVX512F. */
1742 if (cpu.bitfield.cpuavx512f
1743 && (!x.bitfield.cpugfni || cpu.bitfield.cpugfni)
1744 && (!x.bitfield.cpuvaes || cpu.bitfield.cpuvaes)
1745 && (!x.bitfield.cpuvpclmulqdq || cpu.bitfield.cpuvpclmulqdq))
1746 match |= CPU_FLAGS_ARCH_MATCH;
1747 }
a5ff0eb2 1748 else
db12e14e 1749 match |= CPU_FLAGS_ARCH_MATCH;
c0f3af97 1750 }
3629bb00 1751 }
c0f3af97 1752 return match;
40fb9820
L
1753}
1754
c6fb90c8
L
1755static INLINE i386_operand_type
1756operand_type_and (i386_operand_type x, i386_operand_type y)
40fb9820 1757{
c6fb90c8
L
1758 switch (ARRAY_SIZE (x.array))
1759 {
1760 case 3:
1761 x.array [2] &= y.array [2];
1a0670f3 1762 /* Fall through. */
c6fb90c8
L
1763 case 2:
1764 x.array [1] &= y.array [1];
1a0670f3 1765 /* Fall through. */
c6fb90c8
L
1766 case 1:
1767 x.array [0] &= y.array [0];
1768 break;
1769 default:
1770 abort ();
1771 }
1772 return x;
40fb9820
L
1773}
1774
73053c1f
JB
1775static INLINE i386_operand_type
1776operand_type_and_not (i386_operand_type x, i386_operand_type y)
1777{
1778 switch (ARRAY_SIZE (x.array))
1779 {
1780 case 3:
1781 x.array [2] &= ~y.array [2];
1782 /* Fall through. */
1783 case 2:
1784 x.array [1] &= ~y.array [1];
1785 /* Fall through. */
1786 case 1:
1787 x.array [0] &= ~y.array [0];
1788 break;
1789 default:
1790 abort ();
1791 }
1792 return x;
1793}
1794
c6fb90c8
L
1795static INLINE i386_operand_type
1796operand_type_or (i386_operand_type x, i386_operand_type y)
40fb9820 1797{
c6fb90c8 1798 switch (ARRAY_SIZE (x.array))
40fb9820 1799 {
c6fb90c8
L
1800 case 3:
1801 x.array [2] |= y.array [2];
1a0670f3 1802 /* Fall through. */
c6fb90c8
L
1803 case 2:
1804 x.array [1] |= y.array [1];
1a0670f3 1805 /* Fall through. */
c6fb90c8
L
1806 case 1:
1807 x.array [0] |= y.array [0];
40fb9820
L
1808 break;
1809 default:
1810 abort ();
1811 }
c6fb90c8
L
1812 return x;
1813}
40fb9820 1814
c6fb90c8
L
1815static INLINE i386_operand_type
1816operand_type_xor (i386_operand_type x, i386_operand_type y)
1817{
1818 switch (ARRAY_SIZE (x.array))
1819 {
1820 case 3:
1821 x.array [2] ^= y.array [2];
1a0670f3 1822 /* Fall through. */
c6fb90c8
L
1823 case 2:
1824 x.array [1] ^= y.array [1];
1a0670f3 1825 /* Fall through. */
c6fb90c8
L
1826 case 1:
1827 x.array [0] ^= y.array [0];
1828 break;
1829 default:
1830 abort ();
1831 }
40fb9820
L
1832 return x;
1833}
1834
1835static const i386_operand_type acc32 = OPERAND_TYPE_ACC32;
1836static const i386_operand_type acc64 = OPERAND_TYPE_ACC64;
40fb9820
L
1837static const i386_operand_type disp16 = OPERAND_TYPE_DISP16;
1838static const i386_operand_type disp32 = OPERAND_TYPE_DISP32;
1839static const i386_operand_type disp32s = OPERAND_TYPE_DISP32S;
1840static const i386_operand_type disp16_32 = OPERAND_TYPE_DISP16_32;
1841static const i386_operand_type anydisp
1842 = OPERAND_TYPE_ANYDISP;
40fb9820 1843static const i386_operand_type regxmm = OPERAND_TYPE_REGXMM;
43234a1e 1844static const i386_operand_type regmask = OPERAND_TYPE_REGMASK;
40fb9820
L
1845static const i386_operand_type imm8 = OPERAND_TYPE_IMM8;
1846static const i386_operand_type imm8s = OPERAND_TYPE_IMM8S;
1847static const i386_operand_type imm16 = OPERAND_TYPE_IMM16;
1848static const i386_operand_type imm32 = OPERAND_TYPE_IMM32;
1849static const i386_operand_type imm32s = OPERAND_TYPE_IMM32S;
1850static const i386_operand_type imm64 = OPERAND_TYPE_IMM64;
1851static const i386_operand_type imm16_32 = OPERAND_TYPE_IMM16_32;
1852static const i386_operand_type imm16_32s = OPERAND_TYPE_IMM16_32S;
1853static const i386_operand_type imm16_32_32s = OPERAND_TYPE_IMM16_32_32S;
a683cc34 1854static const i386_operand_type vec_imm4 = OPERAND_TYPE_VEC_IMM4;
40fb9820
L
1855
1856enum operand_type
1857{
1858 reg,
40fb9820
L
1859 imm,
1860 disp,
1861 anymem
1862};
1863
c6fb90c8 1864static INLINE int
40fb9820
L
1865operand_type_check (i386_operand_type t, enum operand_type c)
1866{
1867 switch (c)
1868 {
1869 case reg:
dc821c5f 1870 return t.bitfield.reg;
40fb9820 1871
40fb9820
L
1872 case imm:
1873 return (t.bitfield.imm8
1874 || t.bitfield.imm8s
1875 || t.bitfield.imm16
1876 || t.bitfield.imm32
1877 || t.bitfield.imm32s
1878 || t.bitfield.imm64);
1879
1880 case disp:
1881 return (t.bitfield.disp8
1882 || t.bitfield.disp16
1883 || t.bitfield.disp32
1884 || t.bitfield.disp32s
1885 || t.bitfield.disp64);
1886
1887 case anymem:
1888 return (t.bitfield.disp8
1889 || t.bitfield.disp16
1890 || t.bitfield.disp32
1891 || t.bitfield.disp32s
1892 || t.bitfield.disp64
1893 || t.bitfield.baseindex);
1894
1895 default:
1896 abort ();
1897 }
2cfe26b6
AM
1898
1899 return 0;
40fb9820
L
1900}
1901
7a54636a
L
1902/* Return 1 if there is no conflict in 8bit/16bit/32bit/64bit/80bit size
1903 between operand GIVEN and opeand WANTED for instruction template T. */
5c07affc
L
1904
1905static INLINE int
7a54636a
L
1906match_operand_size (const insn_template *t, unsigned int wanted,
1907 unsigned int given)
5c07affc 1908{
3ac21baa
JB
1909 return !((i.types[given].bitfield.byte
1910 && !t->operand_types[wanted].bitfield.byte)
1911 || (i.types[given].bitfield.word
1912 && !t->operand_types[wanted].bitfield.word)
1913 || (i.types[given].bitfield.dword
1914 && !t->operand_types[wanted].bitfield.dword)
1915 || (i.types[given].bitfield.qword
1916 && !t->operand_types[wanted].bitfield.qword)
1917 || (i.types[given].bitfield.tbyte
1918 && !t->operand_types[wanted].bitfield.tbyte));
5c07affc
L
1919}
1920
dd40ce22
L
1921/* Return 1 if there is no conflict in SIMD register between operand
1922 GIVEN and opeand WANTED for instruction template T. */
1b54b8d7
JB
1923
1924static INLINE int
dd40ce22
L
1925match_simd_size (const insn_template *t, unsigned int wanted,
1926 unsigned int given)
1b54b8d7 1927{
3ac21baa
JB
1928 return !((i.types[given].bitfield.xmmword
1929 && !t->operand_types[wanted].bitfield.xmmword)
1930 || (i.types[given].bitfield.ymmword
1931 && !t->operand_types[wanted].bitfield.ymmword)
1932 || (i.types[given].bitfield.zmmword
1933 && !t->operand_types[wanted].bitfield.zmmword));
1b54b8d7
JB
1934}
1935
7a54636a
L
1936/* Return 1 if there is no conflict in any size between operand GIVEN
1937 and opeand WANTED for instruction template T. */
5c07affc
L
1938
1939static INLINE int
dd40ce22
L
1940match_mem_size (const insn_template *t, unsigned int wanted,
1941 unsigned int given)
5c07affc 1942{
7a54636a 1943 return (match_operand_size (t, wanted, given)
3ac21baa 1944 && !((i.types[given].bitfield.unspecified
af508cb9 1945 && !i.broadcast
3ac21baa
JB
1946 && !t->operand_types[wanted].bitfield.unspecified)
1947 || (i.types[given].bitfield.fword
1948 && !t->operand_types[wanted].bitfield.fword)
1b54b8d7
JB
1949 /* For scalar opcode templates to allow register and memory
1950 operands at the same time, some special casing is needed
d6793fa1
JB
1951 here. Also for v{,p}broadcast*, {,v}pmov{s,z}*, and
1952 down-conversion vpmov*. */
3ac21baa 1953 || ((t->operand_types[wanted].bitfield.regsimd
1b54b8d7 1954 && !t->opcode_modifier.broadcast
3ac21baa
JB
1955 && (t->operand_types[wanted].bitfield.byte
1956 || t->operand_types[wanted].bitfield.word
1957 || t->operand_types[wanted].bitfield.dword
1958 || t->operand_types[wanted].bitfield.qword))
1959 ? (i.types[given].bitfield.xmmword
1960 || i.types[given].bitfield.ymmword
1961 || i.types[given].bitfield.zmmword)
1962 : !match_simd_size(t, wanted, given))));
5c07affc
L
1963}
1964
3ac21baa
JB
1965/* Return value has MATCH_STRAIGHT set if there is no size conflict on any
1966 operands for instruction template T, and it has MATCH_REVERSE set if there
1967 is no size conflict on any operands for the template with operands reversed
1968 (and the template allows for reversing in the first place). */
5c07affc 1969
3ac21baa
JB
1970#define MATCH_STRAIGHT 1
1971#define MATCH_REVERSE 2
1972
1973static INLINE unsigned int
d3ce72d0 1974operand_size_match (const insn_template *t)
5c07affc 1975{
3ac21baa 1976 unsigned int j, match = MATCH_STRAIGHT;
5c07affc
L
1977
1978 /* Don't check jump instructions. */
1979 if (t->opcode_modifier.jump
1980 || t->opcode_modifier.jumpbyte
1981 || t->opcode_modifier.jumpdword
1982 || t->opcode_modifier.jumpintersegment)
1983 return match;
1984
1985 /* Check memory and accumulator operand size. */
1986 for (j = 0; j < i.operands; j++)
1987 {
1b54b8d7
JB
1988 if (!i.types[j].bitfield.reg && !i.types[j].bitfield.regsimd
1989 && t->operand_types[j].bitfield.anysize)
5c07affc
L
1990 continue;
1991
1b54b8d7 1992 if (t->operand_types[j].bitfield.reg
7a54636a 1993 && !match_operand_size (t, j, j))
5c07affc
L
1994 {
1995 match = 0;
1996 break;
1997 }
1998
1b54b8d7 1999 if (t->operand_types[j].bitfield.regsimd
3ac21baa 2000 && !match_simd_size (t, j, j))
1b54b8d7
JB
2001 {
2002 match = 0;
2003 break;
2004 }
2005
2006 if (t->operand_types[j].bitfield.acc
7a54636a 2007 && (!match_operand_size (t, j, j) || !match_simd_size (t, j, j)))
1b54b8d7
JB
2008 {
2009 match = 0;
2010 break;
2011 }
2012
3ac21baa 2013 if (i.types[j].bitfield.mem && !match_mem_size (t, j, j))
5c07affc
L
2014 {
2015 match = 0;
2016 break;
2017 }
2018 }
2019
3ac21baa 2020 if (!t->opcode_modifier.d)
891edac4
L
2021 {
2022mismatch:
3ac21baa
JB
2023 if (!match)
2024 i.error = operand_size_mismatch;
2025 return match;
891edac4 2026 }
5c07affc
L
2027
2028 /* Check reverse. */
9c2799c2 2029 gas_assert (i.operands == 2);
5c07affc 2030
5c07affc
L
2031 for (j = 0; j < 2; j++)
2032 {
dc821c5f
JB
2033 if ((t->operand_types[j].bitfield.reg
2034 || t->operand_types[j].bitfield.acc)
7a54636a 2035 && !match_operand_size (t, j, !j))
891edac4 2036 goto mismatch;
5c07affc 2037
3ac21baa
JB
2038 if (i.types[!j].bitfield.mem
2039 && !match_mem_size (t, j, !j))
891edac4 2040 goto mismatch;
5c07affc
L
2041 }
2042
3ac21baa 2043 return match | MATCH_REVERSE;
5c07affc
L
2044}
2045
c6fb90c8 2046static INLINE int
40fb9820
L
2047operand_type_match (i386_operand_type overlap,
2048 i386_operand_type given)
2049{
2050 i386_operand_type temp = overlap;
2051
2052 temp.bitfield.jumpabsolute = 0;
7d5e4556 2053 temp.bitfield.unspecified = 0;
5c07affc
L
2054 temp.bitfield.byte = 0;
2055 temp.bitfield.word = 0;
2056 temp.bitfield.dword = 0;
2057 temp.bitfield.fword = 0;
2058 temp.bitfield.qword = 0;
2059 temp.bitfield.tbyte = 0;
2060 temp.bitfield.xmmword = 0;
c0f3af97 2061 temp.bitfield.ymmword = 0;
43234a1e 2062 temp.bitfield.zmmword = 0;
0dfbf9d7 2063 if (operand_type_all_zero (&temp))
891edac4 2064 goto mismatch;
40fb9820 2065
891edac4
L
2066 if (given.bitfield.baseindex == overlap.bitfield.baseindex
2067 && given.bitfield.jumpabsolute == overlap.bitfield.jumpabsolute)
2068 return 1;
2069
2070mismatch:
a65babc9 2071 i.error = operand_type_mismatch;
891edac4 2072 return 0;
40fb9820
L
2073}
2074
7d5e4556 2075/* If given types g0 and g1 are registers they must be of the same type
10c17abd
JB
2076 unless the expected operand type register overlap is null.
2077 Memory operand size of certain SIMD instructions is also being checked
2078 here. */
40fb9820 2079
c6fb90c8 2080static INLINE int
dc821c5f 2081operand_type_register_match (i386_operand_type g0,
40fb9820 2082 i386_operand_type t0,
40fb9820
L
2083 i386_operand_type g1,
2084 i386_operand_type t1)
2085{
10c17abd
JB
2086 if (!g0.bitfield.reg
2087 && !g0.bitfield.regsimd
2088 && (!operand_type_check (g0, anymem)
2089 || g0.bitfield.unspecified
2090 || !t0.bitfield.regsimd))
40fb9820
L
2091 return 1;
2092
10c17abd
JB
2093 if (!g1.bitfield.reg
2094 && !g1.bitfield.regsimd
2095 && (!operand_type_check (g1, anymem)
2096 || g1.bitfield.unspecified
2097 || !t1.bitfield.regsimd))
40fb9820
L
2098 return 1;
2099
dc821c5f
JB
2100 if (g0.bitfield.byte == g1.bitfield.byte
2101 && g0.bitfield.word == g1.bitfield.word
2102 && g0.bitfield.dword == g1.bitfield.dword
10c17abd
JB
2103 && g0.bitfield.qword == g1.bitfield.qword
2104 && g0.bitfield.xmmword == g1.bitfield.xmmword
2105 && g0.bitfield.ymmword == g1.bitfield.ymmword
2106 && g0.bitfield.zmmword == g1.bitfield.zmmword)
40fb9820
L
2107 return 1;
2108
dc821c5f
JB
2109 if (!(t0.bitfield.byte & t1.bitfield.byte)
2110 && !(t0.bitfield.word & t1.bitfield.word)
2111 && !(t0.bitfield.dword & t1.bitfield.dword)
10c17abd
JB
2112 && !(t0.bitfield.qword & t1.bitfield.qword)
2113 && !(t0.bitfield.xmmword & t1.bitfield.xmmword)
2114 && !(t0.bitfield.ymmword & t1.bitfield.ymmword)
2115 && !(t0.bitfield.zmmword & t1.bitfield.zmmword))
891edac4
L
2116 return 1;
2117
a65babc9 2118 i.error = register_type_mismatch;
891edac4
L
2119
2120 return 0;
40fb9820
L
2121}
2122
4c692bc7
JB
2123static INLINE unsigned int
2124register_number (const reg_entry *r)
2125{
2126 unsigned int nr = r->reg_num;
2127
2128 if (r->reg_flags & RegRex)
2129 nr += 8;
2130
200cbe0f
L
2131 if (r->reg_flags & RegVRex)
2132 nr += 16;
2133
4c692bc7
JB
2134 return nr;
2135}
2136
252b5132 2137static INLINE unsigned int
40fb9820 2138mode_from_disp_size (i386_operand_type t)
252b5132 2139{
b5014f7a 2140 if (t.bitfield.disp8)
40fb9820
L
2141 return 1;
2142 else if (t.bitfield.disp16
2143 || t.bitfield.disp32
2144 || t.bitfield.disp32s)
2145 return 2;
2146 else
2147 return 0;
252b5132
RH
2148}
2149
2150static INLINE int
65879393 2151fits_in_signed_byte (addressT num)
252b5132 2152{
65879393 2153 return num + 0x80 <= 0xff;
47926f60 2154}
252b5132
RH
2155
2156static INLINE int
65879393 2157fits_in_unsigned_byte (addressT num)
252b5132 2158{
65879393 2159 return num <= 0xff;
47926f60 2160}
252b5132
RH
2161
2162static INLINE int
65879393 2163fits_in_unsigned_word (addressT num)
252b5132 2164{
65879393 2165 return num <= 0xffff;
47926f60 2166}
252b5132
RH
2167
2168static INLINE int
65879393 2169fits_in_signed_word (addressT num)
252b5132 2170{
65879393 2171 return num + 0x8000 <= 0xffff;
47926f60 2172}
2a962e6d 2173
3e73aa7c 2174static INLINE int
65879393 2175fits_in_signed_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2176{
2177#ifndef BFD64
2178 return 1;
2179#else
65879393 2180 return num + 0x80000000 <= 0xffffffff;
3e73aa7c
JH
2181#endif
2182} /* fits_in_signed_long() */
2a962e6d 2183
3e73aa7c 2184static INLINE int
65879393 2185fits_in_unsigned_long (addressT num ATTRIBUTE_UNUSED)
3e73aa7c
JH
2186{
2187#ifndef BFD64
2188 return 1;
2189#else
65879393 2190 return num <= 0xffffffff;
3e73aa7c
JH
2191#endif
2192} /* fits_in_unsigned_long() */
252b5132 2193
43234a1e 2194static INLINE int
b5014f7a 2195fits_in_disp8 (offsetT num)
43234a1e
L
2196{
2197 int shift = i.memshift;
2198 unsigned int mask;
2199
2200 if (shift == -1)
2201 abort ();
2202
2203 mask = (1 << shift) - 1;
2204
2205 /* Return 0 if NUM isn't properly aligned. */
2206 if ((num & mask))
2207 return 0;
2208
2209 /* Check if NUM will fit in 8bit after shift. */
2210 return fits_in_signed_byte (num >> shift);
2211}
2212
a683cc34
SP
2213static INLINE int
2214fits_in_imm4 (offsetT num)
2215{
2216 return (num & 0xf) == num;
2217}
2218
40fb9820 2219static i386_operand_type
e3bb37b5 2220smallest_imm_type (offsetT num)
252b5132 2221{
40fb9820 2222 i386_operand_type t;
7ab9ffdd 2223
0dfbf9d7 2224 operand_type_set (&t, 0);
40fb9820
L
2225 t.bitfield.imm64 = 1;
2226
2227 if (cpu_arch_tune != PROCESSOR_I486 && num == 1)
e413e4e9
AM
2228 {
2229 /* This code is disabled on the 486 because all the Imm1 forms
2230 in the opcode table are slower on the i486. They're the
2231 versions with the implicitly specified single-position
2232 displacement, which has another syntax if you really want to
2233 use that form. */
40fb9820
L
2234 t.bitfield.imm1 = 1;
2235 t.bitfield.imm8 = 1;
2236 t.bitfield.imm8s = 1;
2237 t.bitfield.imm16 = 1;
2238 t.bitfield.imm32 = 1;
2239 t.bitfield.imm32s = 1;
2240 }
2241 else if (fits_in_signed_byte (num))
2242 {
2243 t.bitfield.imm8 = 1;
2244 t.bitfield.imm8s = 1;
2245 t.bitfield.imm16 = 1;
2246 t.bitfield.imm32 = 1;
2247 t.bitfield.imm32s = 1;
2248 }
2249 else if (fits_in_unsigned_byte (num))
2250 {
2251 t.bitfield.imm8 = 1;
2252 t.bitfield.imm16 = 1;
2253 t.bitfield.imm32 = 1;
2254 t.bitfield.imm32s = 1;
2255 }
2256 else if (fits_in_signed_word (num) || fits_in_unsigned_word (num))
2257 {
2258 t.bitfield.imm16 = 1;
2259 t.bitfield.imm32 = 1;
2260 t.bitfield.imm32s = 1;
2261 }
2262 else if (fits_in_signed_long (num))
2263 {
2264 t.bitfield.imm32 = 1;
2265 t.bitfield.imm32s = 1;
2266 }
2267 else if (fits_in_unsigned_long (num))
2268 t.bitfield.imm32 = 1;
2269
2270 return t;
47926f60 2271}
252b5132 2272
847f7ad4 2273static offsetT
e3bb37b5 2274offset_in_range (offsetT val, int size)
847f7ad4 2275{
508866be 2276 addressT mask;
ba2adb93 2277
847f7ad4
AM
2278 switch (size)
2279 {
508866be
L
2280 case 1: mask = ((addressT) 1 << 8) - 1; break;
2281 case 2: mask = ((addressT) 1 << 16) - 1; break;
3b0ec529 2282 case 4: mask = ((addressT) 2 << 31) - 1; break;
3e73aa7c
JH
2283#ifdef BFD64
2284 case 8: mask = ((addressT) 2 << 63) - 1; break;
2285#endif
47926f60 2286 default: abort ();
847f7ad4
AM
2287 }
2288
9de868bf
L
2289#ifdef BFD64
2290 /* If BFD64, sign extend val for 32bit address mode. */
2291 if (flag_code != CODE_64BIT
2292 || i.prefix[ADDR_PREFIX])
3e73aa7c
JH
2293 if ((val & ~(((addressT) 2 << 31) - 1)) == 0)
2294 val = (val ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
fa289fb8 2295#endif
ba2adb93 2296
47926f60 2297 if ((val & ~mask) != 0 && (val & ~mask) != ~mask)
847f7ad4
AM
2298 {
2299 char buf1[40], buf2[40];
2300
2301 sprint_value (buf1, val);
2302 sprint_value (buf2, val & mask);
2303 as_warn (_("%s shortened to %s"), buf1, buf2);
2304 }
2305 return val & mask;
2306}
2307
c32fa91d
L
2308enum PREFIX_GROUP
2309{
2310 PREFIX_EXIST = 0,
2311 PREFIX_LOCK,
2312 PREFIX_REP,
04ef582a 2313 PREFIX_DS,
c32fa91d
L
2314 PREFIX_OTHER
2315};
2316
2317/* Returns
2318 a. PREFIX_EXIST if attempting to add a prefix where one from the
2319 same class already exists.
2320 b. PREFIX_LOCK if lock prefix is added.
2321 c. PREFIX_REP if rep/repne prefix is added.
04ef582a
L
2322 d. PREFIX_DS if ds prefix is added.
2323 e. PREFIX_OTHER if other prefix is added.
c32fa91d
L
2324 */
2325
2326static enum PREFIX_GROUP
e3bb37b5 2327add_prefix (unsigned int prefix)
252b5132 2328{
c32fa91d 2329 enum PREFIX_GROUP ret = PREFIX_OTHER;
b1905489 2330 unsigned int q;
252b5132 2331
29b0f896
AM
2332 if (prefix >= REX_OPCODE && prefix < REX_OPCODE + 16
2333 && flag_code == CODE_64BIT)
b1905489 2334 {
161a04f6 2335 if ((i.prefix[REX_PREFIX] & prefix & REX_W)
44846f29
JB
2336 || (i.prefix[REX_PREFIX] & prefix & REX_R)
2337 || (i.prefix[REX_PREFIX] & prefix & REX_X)
2338 || (i.prefix[REX_PREFIX] & prefix & REX_B))
c32fa91d 2339 ret = PREFIX_EXIST;
b1905489
JB
2340 q = REX_PREFIX;
2341 }
3e73aa7c 2342 else
b1905489
JB
2343 {
2344 switch (prefix)
2345 {
2346 default:
2347 abort ();
2348
b1905489 2349 case DS_PREFIX_OPCODE:
04ef582a
L
2350 ret = PREFIX_DS;
2351 /* Fall through. */
2352 case CS_PREFIX_OPCODE:
b1905489
JB
2353 case ES_PREFIX_OPCODE:
2354 case FS_PREFIX_OPCODE:
2355 case GS_PREFIX_OPCODE:
2356 case SS_PREFIX_OPCODE:
2357 q = SEG_PREFIX;
2358 break;
2359
2360 case REPNE_PREFIX_OPCODE:
2361 case REPE_PREFIX_OPCODE:
c32fa91d
L
2362 q = REP_PREFIX;
2363 ret = PREFIX_REP;
2364 break;
2365
b1905489 2366 case LOCK_PREFIX_OPCODE:
c32fa91d
L
2367 q = LOCK_PREFIX;
2368 ret = PREFIX_LOCK;
b1905489
JB
2369 break;
2370
2371 case FWAIT_OPCODE:
2372 q = WAIT_PREFIX;
2373 break;
2374
2375 case ADDR_PREFIX_OPCODE:
2376 q = ADDR_PREFIX;
2377 break;
2378
2379 case DATA_PREFIX_OPCODE:
2380 q = DATA_PREFIX;
2381 break;
2382 }
2383 if (i.prefix[q] != 0)
c32fa91d 2384 ret = PREFIX_EXIST;
b1905489 2385 }
252b5132 2386
b1905489 2387 if (ret)
252b5132 2388 {
b1905489
JB
2389 if (!i.prefix[q])
2390 ++i.prefixes;
2391 i.prefix[q] |= prefix;
252b5132 2392 }
b1905489
JB
2393 else
2394 as_bad (_("same type of prefix used twice"));
252b5132 2395
252b5132
RH
2396 return ret;
2397}
2398
2399static void
78f12dd3 2400update_code_flag (int value, int check)
eecb386c 2401{
78f12dd3
L
2402 PRINTF_LIKE ((*as_error));
2403
1e9cc1c2 2404 flag_code = (enum flag_code) value;
40fb9820
L
2405 if (flag_code == CODE_64BIT)
2406 {
2407 cpu_arch_flags.bitfield.cpu64 = 1;
2408 cpu_arch_flags.bitfield.cpuno64 = 0;
40fb9820
L
2409 }
2410 else
2411 {
2412 cpu_arch_flags.bitfield.cpu64 = 0;
2413 cpu_arch_flags.bitfield.cpuno64 = 1;
40fb9820
L
2414 }
2415 if (value == CODE_64BIT && !cpu_arch_flags.bitfield.cpulm )
3e73aa7c 2416 {
78f12dd3
L
2417 if (check)
2418 as_error = as_fatal;
2419 else
2420 as_error = as_bad;
2421 (*as_error) (_("64bit mode not supported on `%s'."),
2422 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2423 }
40fb9820 2424 if (value == CODE_32BIT && !cpu_arch_flags.bitfield.cpui386)
3e73aa7c 2425 {
78f12dd3
L
2426 if (check)
2427 as_error = as_fatal;
2428 else
2429 as_error = as_bad;
2430 (*as_error) (_("32bit mode not supported on `%s'."),
2431 cpu_arch_name ? cpu_arch_name : default_arch);
3e73aa7c 2432 }
eecb386c
AM
2433 stackop_size = '\0';
2434}
2435
78f12dd3
L
2436static void
2437set_code_flag (int value)
2438{
2439 update_code_flag (value, 0);
2440}
2441
eecb386c 2442static void
e3bb37b5 2443set_16bit_gcc_code_flag (int new_code_flag)
252b5132 2444{
1e9cc1c2 2445 flag_code = (enum flag_code) new_code_flag;
40fb9820
L
2446 if (flag_code != CODE_16BIT)
2447 abort ();
2448 cpu_arch_flags.bitfield.cpu64 = 0;
2449 cpu_arch_flags.bitfield.cpuno64 = 1;
9306ca4a 2450 stackop_size = LONG_MNEM_SUFFIX;
252b5132
RH
2451}
2452
2453static void
e3bb37b5 2454set_intel_syntax (int syntax_flag)
252b5132
RH
2455{
2456 /* Find out if register prefixing is specified. */
2457 int ask_naked_reg = 0;
2458
2459 SKIP_WHITESPACE ();
29b0f896 2460 if (!is_end_of_line[(unsigned char) *input_line_pointer])
252b5132 2461 {
d02603dc
NC
2462 char *string;
2463 int e = get_symbol_name (&string);
252b5132 2464
47926f60 2465 if (strcmp (string, "prefix") == 0)
252b5132 2466 ask_naked_reg = 1;
47926f60 2467 else if (strcmp (string, "noprefix") == 0)
252b5132
RH
2468 ask_naked_reg = -1;
2469 else
d0b47220 2470 as_bad (_("bad argument to syntax directive."));
d02603dc 2471 (void) restore_line_pointer (e);
252b5132
RH
2472 }
2473 demand_empty_rest_of_line ();
c3332e24 2474
252b5132
RH
2475 intel_syntax = syntax_flag;
2476
2477 if (ask_naked_reg == 0)
f86103b7
AM
2478 allow_naked_reg = (intel_syntax
2479 && (bfd_get_symbol_leading_char (stdoutput) != '\0'));
252b5132
RH
2480 else
2481 allow_naked_reg = (ask_naked_reg < 0);
9306ca4a 2482
ee86248c 2483 expr_set_rank (O_full_ptr, syntax_flag ? 10 : 0);
7ab9ffdd 2484
e4a3b5a4 2485 identifier_chars['%'] = intel_syntax && allow_naked_reg ? '%' : 0;
9306ca4a 2486 identifier_chars['$'] = intel_syntax ? '$' : 0;
e4a3b5a4 2487 register_prefix = allow_naked_reg ? "" : "%";
252b5132
RH
2488}
2489
1efbbeb4
L
2490static void
2491set_intel_mnemonic (int mnemonic_flag)
2492{
e1d4d893 2493 intel_mnemonic = mnemonic_flag;
1efbbeb4
L
2494}
2495
db51cc60
L
2496static void
2497set_allow_index_reg (int flag)
2498{
2499 allow_index_reg = flag;
2500}
2501
cb19c032 2502static void
7bab8ab5 2503set_check (int what)
cb19c032 2504{
7bab8ab5
JB
2505 enum check_kind *kind;
2506 const char *str;
2507
2508 if (what)
2509 {
2510 kind = &operand_check;
2511 str = "operand";
2512 }
2513 else
2514 {
2515 kind = &sse_check;
2516 str = "sse";
2517 }
2518
cb19c032
L
2519 SKIP_WHITESPACE ();
2520
2521 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2522 {
d02603dc
NC
2523 char *string;
2524 int e = get_symbol_name (&string);
cb19c032
L
2525
2526 if (strcmp (string, "none") == 0)
7bab8ab5 2527 *kind = check_none;
cb19c032 2528 else if (strcmp (string, "warning") == 0)
7bab8ab5 2529 *kind = check_warning;
cb19c032 2530 else if (strcmp (string, "error") == 0)
7bab8ab5 2531 *kind = check_error;
cb19c032 2532 else
7bab8ab5 2533 as_bad (_("bad argument to %s_check directive."), str);
d02603dc 2534 (void) restore_line_pointer (e);
cb19c032
L
2535 }
2536 else
7bab8ab5 2537 as_bad (_("missing argument for %s_check directive"), str);
cb19c032
L
2538
2539 demand_empty_rest_of_line ();
2540}
2541
8a9036a4
L
2542static void
2543check_cpu_arch_compatible (const char *name ATTRIBUTE_UNUSED,
1e9cc1c2 2544 i386_cpu_flags new_flag ATTRIBUTE_UNUSED)
8a9036a4
L
2545{
2546#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2547 static const char *arch;
2548
2549 /* Intel LIOM is only supported on ELF. */
2550 if (!IS_ELF)
2551 return;
2552
2553 if (!arch)
2554 {
2555 /* Use cpu_arch_name if it is set in md_parse_option. Otherwise
2556 use default_arch. */
2557 arch = cpu_arch_name;
2558 if (!arch)
2559 arch = default_arch;
2560 }
2561
81486035
L
2562 /* If we are targeting Intel MCU, we must enable it. */
2563 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_IAMCU
2564 || new_flag.bitfield.cpuiamcu)
2565 return;
2566
3632d14b 2567 /* If we are targeting Intel L1OM, we must enable it. */
8a9036a4 2568 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_L1OM
1e9cc1c2 2569 || new_flag.bitfield.cpul1om)
8a9036a4 2570 return;
76ba9986 2571
7a9068fe
L
2572 /* If we are targeting Intel K1OM, we must enable it. */
2573 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_K1OM
2574 || new_flag.bitfield.cpuk1om)
2575 return;
2576
8a9036a4
L
2577 as_bad (_("`%s' is not supported on `%s'"), name, arch);
2578#endif
2579}
2580
e413e4e9 2581static void
e3bb37b5 2582set_cpu_arch (int dummy ATTRIBUTE_UNUSED)
e413e4e9 2583{
47926f60 2584 SKIP_WHITESPACE ();
e413e4e9 2585
29b0f896 2586 if (!is_end_of_line[(unsigned char) *input_line_pointer])
e413e4e9 2587 {
d02603dc
NC
2588 char *string;
2589 int e = get_symbol_name (&string);
91d6fa6a 2590 unsigned int j;
40fb9820 2591 i386_cpu_flags flags;
e413e4e9 2592
91d6fa6a 2593 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
e413e4e9 2594 {
91d6fa6a 2595 if (strcmp (string, cpu_arch[j].name) == 0)
e413e4e9 2596 {
91d6fa6a 2597 check_cpu_arch_compatible (string, cpu_arch[j].flags);
8a9036a4 2598
5c6af06e
JB
2599 if (*string != '.')
2600 {
91d6fa6a 2601 cpu_arch_name = cpu_arch[j].name;
5c6af06e 2602 cpu_sub_arch_name = NULL;
91d6fa6a 2603 cpu_arch_flags = cpu_arch[j].flags;
40fb9820
L
2604 if (flag_code == CODE_64BIT)
2605 {
2606 cpu_arch_flags.bitfield.cpu64 = 1;
2607 cpu_arch_flags.bitfield.cpuno64 = 0;
2608 }
2609 else
2610 {
2611 cpu_arch_flags.bitfield.cpu64 = 0;
2612 cpu_arch_flags.bitfield.cpuno64 = 1;
2613 }
91d6fa6a
NC
2614 cpu_arch_isa = cpu_arch[j].type;
2615 cpu_arch_isa_flags = cpu_arch[j].flags;
ccc9c027
L
2616 if (!cpu_arch_tune_set)
2617 {
2618 cpu_arch_tune = cpu_arch_isa;
2619 cpu_arch_tune_flags = cpu_arch_isa_flags;
2620 }
5c6af06e
JB
2621 break;
2622 }
40fb9820 2623
293f5f65
L
2624 flags = cpu_flags_or (cpu_arch_flags,
2625 cpu_arch[j].flags);
81486035 2626
5b64d091 2627 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
5c6af06e 2628 {
6305a203
L
2629 if (cpu_sub_arch_name)
2630 {
2631 char *name = cpu_sub_arch_name;
2632 cpu_sub_arch_name = concat (name,
91d6fa6a 2633 cpu_arch[j].name,
1bf57e9f 2634 (const char *) NULL);
6305a203
L
2635 free (name);
2636 }
2637 else
91d6fa6a 2638 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
40fb9820 2639 cpu_arch_flags = flags;
a586129e 2640 cpu_arch_isa_flags = flags;
5c6af06e 2641 }
0089dace
L
2642 else
2643 cpu_arch_isa_flags
2644 = cpu_flags_or (cpu_arch_isa_flags,
2645 cpu_arch[j].flags);
d02603dc 2646 (void) restore_line_pointer (e);
5c6af06e
JB
2647 demand_empty_rest_of_line ();
2648 return;
e413e4e9
AM
2649 }
2650 }
293f5f65
L
2651
2652 if (*string == '.' && j >= ARRAY_SIZE (cpu_arch))
2653 {
33eaf5de 2654 /* Disable an ISA extension. */
293f5f65
L
2655 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
2656 if (strcmp (string + 1, cpu_noarch [j].name) == 0)
2657 {
2658 flags = cpu_flags_and_not (cpu_arch_flags,
2659 cpu_noarch[j].flags);
2660 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
2661 {
2662 if (cpu_sub_arch_name)
2663 {
2664 char *name = cpu_sub_arch_name;
2665 cpu_sub_arch_name = concat (name, string,
2666 (const char *) NULL);
2667 free (name);
2668 }
2669 else
2670 cpu_sub_arch_name = xstrdup (string);
2671 cpu_arch_flags = flags;
2672 cpu_arch_isa_flags = flags;
2673 }
2674 (void) restore_line_pointer (e);
2675 demand_empty_rest_of_line ();
2676 return;
2677 }
2678
2679 j = ARRAY_SIZE (cpu_arch);
2680 }
2681
91d6fa6a 2682 if (j >= ARRAY_SIZE (cpu_arch))
e413e4e9
AM
2683 as_bad (_("no such architecture: `%s'"), string);
2684
2685 *input_line_pointer = e;
2686 }
2687 else
2688 as_bad (_("missing cpu architecture"));
2689
fddf5b5b
AM
2690 no_cond_jump_promotion = 0;
2691 if (*input_line_pointer == ','
29b0f896 2692 && !is_end_of_line[(unsigned char) input_line_pointer[1]])
fddf5b5b 2693 {
d02603dc
NC
2694 char *string;
2695 char e;
2696
2697 ++input_line_pointer;
2698 e = get_symbol_name (&string);
fddf5b5b
AM
2699
2700 if (strcmp (string, "nojumps") == 0)
2701 no_cond_jump_promotion = 1;
2702 else if (strcmp (string, "jumps") == 0)
2703 ;
2704 else
2705 as_bad (_("no such architecture modifier: `%s'"), string);
2706
d02603dc 2707 (void) restore_line_pointer (e);
fddf5b5b
AM
2708 }
2709
e413e4e9
AM
2710 demand_empty_rest_of_line ();
2711}
2712
8a9036a4
L
2713enum bfd_architecture
2714i386_arch (void)
2715{
3632d14b 2716 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4
L
2717 {
2718 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2719 || flag_code != CODE_64BIT)
2720 as_fatal (_("Intel L1OM is 64bit ELF only"));
2721 return bfd_arch_l1om;
2722 }
7a9068fe
L
2723 else if (cpu_arch_isa == PROCESSOR_K1OM)
2724 {
2725 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2726 || flag_code != CODE_64BIT)
2727 as_fatal (_("Intel K1OM is 64bit ELF only"));
2728 return bfd_arch_k1om;
2729 }
81486035
L
2730 else if (cpu_arch_isa == PROCESSOR_IAMCU)
2731 {
2732 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2733 || flag_code == CODE_64BIT)
2734 as_fatal (_("Intel MCU is 32bit ELF only"));
2735 return bfd_arch_iamcu;
2736 }
8a9036a4
L
2737 else
2738 return bfd_arch_i386;
2739}
2740
b9d79e03 2741unsigned long
7016a5d5 2742i386_mach (void)
b9d79e03 2743{
351f65ca 2744 if (!strncmp (default_arch, "x86_64", 6))
8a9036a4 2745 {
3632d14b 2746 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 2747 {
351f65ca
L
2748 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2749 || default_arch[6] != '\0')
8a9036a4
L
2750 as_fatal (_("Intel L1OM is 64bit ELF only"));
2751 return bfd_mach_l1om;
2752 }
7a9068fe
L
2753 else if (cpu_arch_isa == PROCESSOR_K1OM)
2754 {
2755 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2756 || default_arch[6] != '\0')
2757 as_fatal (_("Intel K1OM is 64bit ELF only"));
2758 return bfd_mach_k1om;
2759 }
351f65ca 2760 else if (default_arch[6] == '\0')
8a9036a4 2761 return bfd_mach_x86_64;
351f65ca
L
2762 else
2763 return bfd_mach_x64_32;
8a9036a4 2764 }
5197d474
L
2765 else if (!strcmp (default_arch, "i386")
2766 || !strcmp (default_arch, "iamcu"))
81486035
L
2767 {
2768 if (cpu_arch_isa == PROCESSOR_IAMCU)
2769 {
2770 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
2771 as_fatal (_("Intel MCU is 32bit ELF only"));
2772 return bfd_mach_i386_iamcu;
2773 }
2774 else
2775 return bfd_mach_i386_i386;
2776 }
b9d79e03 2777 else
2b5d6a91 2778 as_fatal (_("unknown architecture"));
b9d79e03 2779}
b9d79e03 2780\f
252b5132 2781void
7016a5d5 2782md_begin (void)
252b5132
RH
2783{
2784 const char *hash_err;
2785
86fa6981
L
2786 /* Support pseudo prefixes like {disp32}. */
2787 lex_type ['{'] = LEX_BEGIN_NAME;
2788
47926f60 2789 /* Initialize op_hash hash table. */
252b5132
RH
2790 op_hash = hash_new ();
2791
2792 {
d3ce72d0 2793 const insn_template *optab;
29b0f896 2794 templates *core_optab;
252b5132 2795
47926f60
KH
2796 /* Setup for loop. */
2797 optab = i386_optab;
add39d23 2798 core_optab = XNEW (templates);
252b5132
RH
2799 core_optab->start = optab;
2800
2801 while (1)
2802 {
2803 ++optab;
2804 if (optab->name == NULL
2805 || strcmp (optab->name, (optab - 1)->name) != 0)
2806 {
2807 /* different name --> ship out current template list;
47926f60 2808 add to hash table; & begin anew. */
252b5132
RH
2809 core_optab->end = optab;
2810 hash_err = hash_insert (op_hash,
2811 (optab - 1)->name,
5a49b8ac 2812 (void *) core_optab);
252b5132
RH
2813 if (hash_err)
2814 {
b37df7c4 2815 as_fatal (_("can't hash %s: %s"),
252b5132
RH
2816 (optab - 1)->name,
2817 hash_err);
2818 }
2819 if (optab->name == NULL)
2820 break;
add39d23 2821 core_optab = XNEW (templates);
252b5132
RH
2822 core_optab->start = optab;
2823 }
2824 }
2825 }
2826
47926f60 2827 /* Initialize reg_hash hash table. */
252b5132
RH
2828 reg_hash = hash_new ();
2829 {
29b0f896 2830 const reg_entry *regtab;
c3fe08fa 2831 unsigned int regtab_size = i386_regtab_size;
252b5132 2832
c3fe08fa 2833 for (regtab = i386_regtab; regtab_size--; regtab++)
252b5132 2834 {
5a49b8ac 2835 hash_err = hash_insert (reg_hash, regtab->reg_name, (void *) regtab);
252b5132 2836 if (hash_err)
b37df7c4 2837 as_fatal (_("can't hash %s: %s"),
3e73aa7c
JH
2838 regtab->reg_name,
2839 hash_err);
252b5132
RH
2840 }
2841 }
2842
47926f60 2843 /* Fill in lexical tables: mnemonic_chars, operand_chars. */
252b5132 2844 {
29b0f896
AM
2845 int c;
2846 char *p;
252b5132
RH
2847
2848 for (c = 0; c < 256; c++)
2849 {
3882b010 2850 if (ISDIGIT (c))
252b5132
RH
2851 {
2852 digit_chars[c] = c;
2853 mnemonic_chars[c] = c;
2854 register_chars[c] = c;
2855 operand_chars[c] = c;
2856 }
3882b010 2857 else if (ISLOWER (c))
252b5132
RH
2858 {
2859 mnemonic_chars[c] = c;
2860 register_chars[c] = c;
2861 operand_chars[c] = c;
2862 }
3882b010 2863 else if (ISUPPER (c))
252b5132 2864 {
3882b010 2865 mnemonic_chars[c] = TOLOWER (c);
252b5132
RH
2866 register_chars[c] = mnemonic_chars[c];
2867 operand_chars[c] = c;
2868 }
43234a1e 2869 else if (c == '{' || c == '}')
86fa6981
L
2870 {
2871 mnemonic_chars[c] = c;
2872 operand_chars[c] = c;
2873 }
252b5132 2874
3882b010 2875 if (ISALPHA (c) || ISDIGIT (c))
252b5132
RH
2876 identifier_chars[c] = c;
2877 else if (c >= 128)
2878 {
2879 identifier_chars[c] = c;
2880 operand_chars[c] = c;
2881 }
2882 }
2883
2884#ifdef LEX_AT
2885 identifier_chars['@'] = '@';
32137342
NC
2886#endif
2887#ifdef LEX_QM
2888 identifier_chars['?'] = '?';
2889 operand_chars['?'] = '?';
252b5132 2890#endif
252b5132 2891 digit_chars['-'] = '-';
c0f3af97 2892 mnemonic_chars['_'] = '_';
791fe849 2893 mnemonic_chars['-'] = '-';
0003779b 2894 mnemonic_chars['.'] = '.';
252b5132
RH
2895 identifier_chars['_'] = '_';
2896 identifier_chars['.'] = '.';
2897
2898 for (p = operand_special_chars; *p != '\0'; p++)
2899 operand_chars[(unsigned char) *p] = *p;
2900 }
2901
a4447b93
RH
2902 if (flag_code == CODE_64BIT)
2903 {
ca19b261
KT
2904#if defined (OBJ_COFF) && defined (TE_PE)
2905 x86_dwarf2_return_column = (OUTPUT_FLAVOR == bfd_target_coff_flavour
2906 ? 32 : 16);
2907#else
a4447b93 2908 x86_dwarf2_return_column = 16;
ca19b261 2909#endif
61ff971f 2910 x86_cie_data_alignment = -8;
a4447b93
RH
2911 }
2912 else
2913 {
2914 x86_dwarf2_return_column = 8;
2915 x86_cie_data_alignment = -4;
2916 }
252b5132
RH
2917}
2918
2919void
e3bb37b5 2920i386_print_statistics (FILE *file)
252b5132
RH
2921{
2922 hash_print_statistics (file, "i386 opcode", op_hash);
2923 hash_print_statistics (file, "i386 register", reg_hash);
2924}
2925\f
252b5132
RH
2926#ifdef DEBUG386
2927
ce8a8b2f 2928/* Debugging routines for md_assemble. */
d3ce72d0 2929static void pte (insn_template *);
40fb9820 2930static void pt (i386_operand_type);
e3bb37b5
L
2931static void pe (expressionS *);
2932static void ps (symbolS *);
252b5132
RH
2933
2934static void
e3bb37b5 2935pi (char *line, i386_insn *x)
252b5132 2936{
09137c09 2937 unsigned int j;
252b5132
RH
2938
2939 fprintf (stdout, "%s: template ", line);
2940 pte (&x->tm);
09f131f2
JH
2941 fprintf (stdout, " address: base %s index %s scale %x\n",
2942 x->base_reg ? x->base_reg->reg_name : "none",
2943 x->index_reg ? x->index_reg->reg_name : "none",
2944 x->log2_scale_factor);
2945 fprintf (stdout, " modrm: mode %x reg %x reg/mem %x\n",
252b5132 2946 x->rm.mode, x->rm.reg, x->rm.regmem);
09f131f2
JH
2947 fprintf (stdout, " sib: base %x index %x scale %x\n",
2948 x->sib.base, x->sib.index, x->sib.scale);
2949 fprintf (stdout, " rex: 64bit %x extX %x extY %x extZ %x\n",
161a04f6
L
2950 (x->rex & REX_W) != 0,
2951 (x->rex & REX_R) != 0,
2952 (x->rex & REX_X) != 0,
2953 (x->rex & REX_B) != 0);
09137c09 2954 for (j = 0; j < x->operands; j++)
252b5132 2955 {
09137c09
SP
2956 fprintf (stdout, " #%d: ", j + 1);
2957 pt (x->types[j]);
252b5132 2958 fprintf (stdout, "\n");
dc821c5f 2959 if (x->types[j].bitfield.reg
09137c09 2960 || x->types[j].bitfield.regmmx
1b54b8d7 2961 || x->types[j].bitfield.regsimd
09137c09
SP
2962 || x->types[j].bitfield.sreg2
2963 || x->types[j].bitfield.sreg3
2964 || x->types[j].bitfield.control
2965 || x->types[j].bitfield.debug
2966 || x->types[j].bitfield.test)
2967 fprintf (stdout, "%s\n", x->op[j].regs->reg_name);
2968 if (operand_type_check (x->types[j], imm))
2969 pe (x->op[j].imms);
2970 if (operand_type_check (x->types[j], disp))
2971 pe (x->op[j].disps);
252b5132
RH
2972 }
2973}
2974
2975static void
d3ce72d0 2976pte (insn_template *t)
252b5132 2977{
09137c09 2978 unsigned int j;
252b5132 2979 fprintf (stdout, " %d operands ", t->operands);
47926f60 2980 fprintf (stdout, "opcode %x ", t->base_opcode);
252b5132
RH
2981 if (t->extension_opcode != None)
2982 fprintf (stdout, "ext %x ", t->extension_opcode);
40fb9820 2983 if (t->opcode_modifier.d)
252b5132 2984 fprintf (stdout, "D");
40fb9820 2985 if (t->opcode_modifier.w)
252b5132
RH
2986 fprintf (stdout, "W");
2987 fprintf (stdout, "\n");
09137c09 2988 for (j = 0; j < t->operands; j++)
252b5132 2989 {
09137c09
SP
2990 fprintf (stdout, " #%d type ", j + 1);
2991 pt (t->operand_types[j]);
252b5132
RH
2992 fprintf (stdout, "\n");
2993 }
2994}
2995
2996static void
e3bb37b5 2997pe (expressionS *e)
252b5132 2998{
24eab124 2999 fprintf (stdout, " operation %d\n", e->X_op);
b77ad1d4
AM
3000 fprintf (stdout, " add_number %ld (%lx)\n",
3001 (long) e->X_add_number, (long) e->X_add_number);
252b5132
RH
3002 if (e->X_add_symbol)
3003 {
3004 fprintf (stdout, " add_symbol ");
3005 ps (e->X_add_symbol);
3006 fprintf (stdout, "\n");
3007 }
3008 if (e->X_op_symbol)
3009 {
3010 fprintf (stdout, " op_symbol ");
3011 ps (e->X_op_symbol);
3012 fprintf (stdout, "\n");
3013 }
3014}
3015
3016static void
e3bb37b5 3017ps (symbolS *s)
252b5132
RH
3018{
3019 fprintf (stdout, "%s type %s%s",
3020 S_GET_NAME (s),
3021 S_IS_EXTERNAL (s) ? "EXTERNAL " : "",
3022 segment_name (S_GET_SEGMENT (s)));
3023}
3024
7b81dfbb 3025static struct type_name
252b5132 3026 {
40fb9820
L
3027 i386_operand_type mask;
3028 const char *name;
252b5132 3029 }
7b81dfbb 3030const type_names[] =
252b5132 3031{
40fb9820
L
3032 { OPERAND_TYPE_REG8, "r8" },
3033 { OPERAND_TYPE_REG16, "r16" },
3034 { OPERAND_TYPE_REG32, "r32" },
3035 { OPERAND_TYPE_REG64, "r64" },
3036 { OPERAND_TYPE_IMM8, "i8" },
3037 { OPERAND_TYPE_IMM8, "i8s" },
3038 { OPERAND_TYPE_IMM16, "i16" },
3039 { OPERAND_TYPE_IMM32, "i32" },
3040 { OPERAND_TYPE_IMM32S, "i32s" },
3041 { OPERAND_TYPE_IMM64, "i64" },
3042 { OPERAND_TYPE_IMM1, "i1" },
3043 { OPERAND_TYPE_BASEINDEX, "BaseIndex" },
3044 { OPERAND_TYPE_DISP8, "d8" },
3045 { OPERAND_TYPE_DISP16, "d16" },
3046 { OPERAND_TYPE_DISP32, "d32" },
3047 { OPERAND_TYPE_DISP32S, "d32s" },
3048 { OPERAND_TYPE_DISP64, "d64" },
3049 { OPERAND_TYPE_INOUTPORTREG, "InOutPortReg" },
3050 { OPERAND_TYPE_SHIFTCOUNT, "ShiftCount" },
3051 { OPERAND_TYPE_CONTROL, "control reg" },
3052 { OPERAND_TYPE_TEST, "test reg" },
3053 { OPERAND_TYPE_DEBUG, "debug reg" },
3054 { OPERAND_TYPE_FLOATREG, "FReg" },
3055 { OPERAND_TYPE_FLOATACC, "FAcc" },
3056 { OPERAND_TYPE_SREG2, "SReg2" },
3057 { OPERAND_TYPE_SREG3, "SReg3" },
3058 { OPERAND_TYPE_ACC, "Acc" },
3059 { OPERAND_TYPE_JUMPABSOLUTE, "Jump Absolute" },
3060 { OPERAND_TYPE_REGMMX, "rMMX" },
3061 { OPERAND_TYPE_REGXMM, "rXMM" },
0349dc08 3062 { OPERAND_TYPE_REGYMM, "rYMM" },
43234a1e
L
3063 { OPERAND_TYPE_REGZMM, "rZMM" },
3064 { OPERAND_TYPE_REGMASK, "Mask reg" },
40fb9820 3065 { OPERAND_TYPE_ESSEG, "es" },
252b5132
RH
3066};
3067
3068static void
40fb9820 3069pt (i386_operand_type t)
252b5132 3070{
40fb9820 3071 unsigned int j;
c6fb90c8 3072 i386_operand_type a;
252b5132 3073
40fb9820 3074 for (j = 0; j < ARRAY_SIZE (type_names); j++)
c6fb90c8
L
3075 {
3076 a = operand_type_and (t, type_names[j].mask);
0349dc08 3077 if (!operand_type_all_zero (&a))
c6fb90c8
L
3078 fprintf (stdout, "%s, ", type_names[j].name);
3079 }
252b5132
RH
3080 fflush (stdout);
3081}
3082
3083#endif /* DEBUG386 */
3084\f
252b5132 3085static bfd_reloc_code_real_type
3956db08 3086reloc (unsigned int size,
64e74474
AM
3087 int pcrel,
3088 int sign,
3089 bfd_reloc_code_real_type other)
252b5132 3090{
47926f60 3091 if (other != NO_RELOC)
3956db08 3092 {
91d6fa6a 3093 reloc_howto_type *rel;
3956db08
JB
3094
3095 if (size == 8)
3096 switch (other)
3097 {
64e74474
AM
3098 case BFD_RELOC_X86_64_GOT32:
3099 return BFD_RELOC_X86_64_GOT64;
3100 break;
553d1284
L
3101 case BFD_RELOC_X86_64_GOTPLT64:
3102 return BFD_RELOC_X86_64_GOTPLT64;
3103 break;
64e74474
AM
3104 case BFD_RELOC_X86_64_PLTOFF64:
3105 return BFD_RELOC_X86_64_PLTOFF64;
3106 break;
3107 case BFD_RELOC_X86_64_GOTPC32:
3108 other = BFD_RELOC_X86_64_GOTPC64;
3109 break;
3110 case BFD_RELOC_X86_64_GOTPCREL:
3111 other = BFD_RELOC_X86_64_GOTPCREL64;
3112 break;
3113 case BFD_RELOC_X86_64_TPOFF32:
3114 other = BFD_RELOC_X86_64_TPOFF64;
3115 break;
3116 case BFD_RELOC_X86_64_DTPOFF32:
3117 other = BFD_RELOC_X86_64_DTPOFF64;
3118 break;
3119 default:
3120 break;
3956db08 3121 }
e05278af 3122
8ce3d284 3123#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
3124 if (other == BFD_RELOC_SIZE32)
3125 {
3126 if (size == 8)
1ab668bf 3127 other = BFD_RELOC_SIZE64;
8fd4256d 3128 if (pcrel)
1ab668bf
AM
3129 {
3130 as_bad (_("there are no pc-relative size relocations"));
3131 return NO_RELOC;
3132 }
8fd4256d 3133 }
8ce3d284 3134#endif
8fd4256d 3135
e05278af 3136 /* Sign-checking 4-byte relocations in 16-/32-bit code is pointless. */
f2d8a97c 3137 if (size == 4 && (flag_code != CODE_64BIT || disallow_64bit_reloc))
e05278af
JB
3138 sign = -1;
3139
91d6fa6a
NC
3140 rel = bfd_reloc_type_lookup (stdoutput, other);
3141 if (!rel)
3956db08 3142 as_bad (_("unknown relocation (%u)"), other);
91d6fa6a 3143 else if (size != bfd_get_reloc_size (rel))
3956db08 3144 as_bad (_("%u-byte relocation cannot be applied to %u-byte field"),
91d6fa6a 3145 bfd_get_reloc_size (rel),
3956db08 3146 size);
91d6fa6a 3147 else if (pcrel && !rel->pc_relative)
3956db08 3148 as_bad (_("non-pc-relative relocation for pc-relative field"));
91d6fa6a 3149 else if ((rel->complain_on_overflow == complain_overflow_signed
3956db08 3150 && !sign)
91d6fa6a 3151 || (rel->complain_on_overflow == complain_overflow_unsigned
64e74474 3152 && sign > 0))
3956db08
JB
3153 as_bad (_("relocated field and relocation type differ in signedness"));
3154 else
3155 return other;
3156 return NO_RELOC;
3157 }
252b5132
RH
3158
3159 if (pcrel)
3160 {
3e73aa7c 3161 if (!sign)
3956db08 3162 as_bad (_("there are no unsigned pc-relative relocations"));
252b5132
RH
3163 switch (size)
3164 {
3165 case 1: return BFD_RELOC_8_PCREL;
3166 case 2: return BFD_RELOC_16_PCREL;
d258b828 3167 case 4: return BFD_RELOC_32_PCREL;
d6ab8113 3168 case 8: return BFD_RELOC_64_PCREL;
252b5132 3169 }
3956db08 3170 as_bad (_("cannot do %u byte pc-relative relocation"), size);
252b5132
RH
3171 }
3172 else
3173 {
3956db08 3174 if (sign > 0)
e5cb08ac 3175 switch (size)
3e73aa7c
JH
3176 {
3177 case 4: return BFD_RELOC_X86_64_32S;
3178 }
3179 else
3180 switch (size)
3181 {
3182 case 1: return BFD_RELOC_8;
3183 case 2: return BFD_RELOC_16;
3184 case 4: return BFD_RELOC_32;
3185 case 8: return BFD_RELOC_64;
3186 }
3956db08
JB
3187 as_bad (_("cannot do %s %u byte relocation"),
3188 sign > 0 ? "signed" : "unsigned", size);
252b5132
RH
3189 }
3190
0cc9e1d3 3191 return NO_RELOC;
252b5132
RH
3192}
3193
47926f60
KH
3194/* Here we decide which fixups can be adjusted to make them relative to
3195 the beginning of the section instead of the symbol. Basically we need
3196 to make sure that the dynamic relocations are done correctly, so in
3197 some cases we force the original symbol to be used. */
3198
252b5132 3199int
e3bb37b5 3200tc_i386_fix_adjustable (fixS *fixP ATTRIBUTE_UNUSED)
252b5132 3201{
6d249963 3202#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 3203 if (!IS_ELF)
31312f95
AM
3204 return 1;
3205
a161fe53
AM
3206 /* Don't adjust pc-relative references to merge sections in 64-bit
3207 mode. */
3208 if (use_rela_relocations
3209 && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0
3210 && fixP->fx_pcrel)
252b5132 3211 return 0;
31312f95 3212
8d01d9a9
AJ
3213 /* The x86_64 GOTPCREL are represented as 32bit PCrel relocations
3214 and changed later by validate_fix. */
3215 if (GOT_symbol && fixP->fx_subsy == GOT_symbol
3216 && fixP->fx_r_type == BFD_RELOC_32_PCREL)
3217 return 0;
3218
8fd4256d
L
3219 /* Adjust_reloc_syms doesn't know about the GOT. Need to keep symbol
3220 for size relocations. */
3221 if (fixP->fx_r_type == BFD_RELOC_SIZE32
3222 || fixP->fx_r_type == BFD_RELOC_SIZE64
3223 || fixP->fx_r_type == BFD_RELOC_386_GOTOFF
252b5132
RH
3224 || fixP->fx_r_type == BFD_RELOC_386_PLT32
3225 || fixP->fx_r_type == BFD_RELOC_386_GOT32
02a86693 3226 || fixP->fx_r_type == BFD_RELOC_386_GOT32X
13ae64f3
JJ
3227 || fixP->fx_r_type == BFD_RELOC_386_TLS_GD
3228 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDM
3229 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDO_32
3230 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE_32
37e55690
JJ
3231 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE
3232 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTIE
13ae64f3
JJ
3233 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE_32
3234 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE
67a4f2b7
AO
3235 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTDESC
3236 || fixP->fx_r_type == BFD_RELOC_386_TLS_DESC_CALL
3e73aa7c
JH
3237 || fixP->fx_r_type == BFD_RELOC_X86_64_PLT32
3238 || fixP->fx_r_type == BFD_RELOC_X86_64_GOT32
80b3ee89 3239 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCREL
56ceb5b5
L
3240 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCRELX
3241 || fixP->fx_r_type == BFD_RELOC_X86_64_REX_GOTPCRELX
bffbf940
JJ
3242 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSGD
3243 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSLD
3244 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF32
d6ab8113 3245 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF64
bffbf940
JJ
3246 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTTPOFF
3247 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF32
d6ab8113
JB
3248 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF64
3249 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTOFF64
67a4f2b7
AO
3250 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPC32_TLSDESC
3251 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSDESC_CALL
252b5132
RH
3252 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
3253 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
3254 return 0;
31312f95 3255#endif
252b5132
RH
3256 return 1;
3257}
252b5132 3258
b4cac588 3259static int
e3bb37b5 3260intel_float_operand (const char *mnemonic)
252b5132 3261{
9306ca4a
JB
3262 /* Note that the value returned is meaningful only for opcodes with (memory)
3263 operands, hence the code here is free to improperly handle opcodes that
3264 have no operands (for better performance and smaller code). */
3265
3266 if (mnemonic[0] != 'f')
3267 return 0; /* non-math */
3268
3269 switch (mnemonic[1])
3270 {
3271 /* fclex, fdecstp, fdisi, femms, feni, fincstp, finit, fsetpm, and
3272 the fs segment override prefix not currently handled because no
3273 call path can make opcodes without operands get here */
3274 case 'i':
3275 return 2 /* integer op */;
3276 case 'l':
3277 if (mnemonic[2] == 'd' && (mnemonic[3] == 'c' || mnemonic[3] == 'e'))
3278 return 3; /* fldcw/fldenv */
3279 break;
3280 case 'n':
3281 if (mnemonic[2] != 'o' /* fnop */)
3282 return 3; /* non-waiting control op */
3283 break;
3284 case 'r':
3285 if (mnemonic[2] == 's')
3286 return 3; /* frstor/frstpm */
3287 break;
3288 case 's':
3289 if (mnemonic[2] == 'a')
3290 return 3; /* fsave */
3291 if (mnemonic[2] == 't')
3292 {
3293 switch (mnemonic[3])
3294 {
3295 case 'c': /* fstcw */
3296 case 'd': /* fstdw */
3297 case 'e': /* fstenv */
3298 case 's': /* fsts[gw] */
3299 return 3;
3300 }
3301 }
3302 break;
3303 case 'x':
3304 if (mnemonic[2] == 'r' || mnemonic[2] == 's')
3305 return 0; /* fxsave/fxrstor are not really math ops */
3306 break;
3307 }
252b5132 3308
9306ca4a 3309 return 1;
252b5132
RH
3310}
3311
c0f3af97
L
3312/* Build the VEX prefix. */
3313
3314static void
d3ce72d0 3315build_vex_prefix (const insn_template *t)
c0f3af97
L
3316{
3317 unsigned int register_specifier;
3318 unsigned int implied_prefix;
3319 unsigned int vector_length;
3320
3321 /* Check register specifier. */
3322 if (i.vex.register_specifier)
43234a1e
L
3323 {
3324 register_specifier =
3325 ~register_number (i.vex.register_specifier) & 0xf;
3326 gas_assert ((i.vex.register_specifier->reg_flags & RegVRex) == 0);
3327 }
c0f3af97
L
3328 else
3329 register_specifier = 0xf;
3330
33eaf5de 3331 /* Use 2-byte VEX prefix by swapping destination and source
fa99fab2 3332 operand. */
86fa6981
L
3333 if (i.vec_encoding != vex_encoding_vex3
3334 && i.dir_encoding == dir_encoding_default
fa99fab2 3335 && i.operands == i.reg_operands
7f399153 3336 && i.tm.opcode_modifier.vexopcode == VEX0F
86fa6981 3337 && i.tm.opcode_modifier.load
fa99fab2
L
3338 && i.rex == REX_B)
3339 {
3340 unsigned int xchg = i.operands - 1;
3341 union i386_op temp_op;
3342 i386_operand_type temp_type;
3343
3344 temp_type = i.types[xchg];
3345 i.types[xchg] = i.types[0];
3346 i.types[0] = temp_type;
3347 temp_op = i.op[xchg];
3348 i.op[xchg] = i.op[0];
3349 i.op[0] = temp_op;
3350
9c2799c2 3351 gas_assert (i.rm.mode == 3);
fa99fab2
L
3352
3353 i.rex = REX_R;
3354 xchg = i.rm.regmem;
3355 i.rm.regmem = i.rm.reg;
3356 i.rm.reg = xchg;
3357
3358 /* Use the next insn. */
3359 i.tm = t[1];
3360 }
3361
539f890d
L
3362 if (i.tm.opcode_modifier.vex == VEXScalar)
3363 vector_length = avxscalar;
10c17abd
JB
3364 else if (i.tm.opcode_modifier.vex == VEX256)
3365 vector_length = 1;
539f890d 3366 else
10c17abd 3367 {
56522fc5 3368 unsigned int op;
10c17abd 3369
c7213af9
L
3370 /* Determine vector length from the last multi-length vector
3371 operand. */
10c17abd 3372 vector_length = 0;
56522fc5 3373 for (op = t->operands; op--;)
10c17abd
JB
3374 if (t->operand_types[op].bitfield.xmmword
3375 && t->operand_types[op].bitfield.ymmword
3376 && i.types[op].bitfield.ymmword)
3377 {
3378 vector_length = 1;
3379 break;
3380 }
3381 }
c0f3af97
L
3382
3383 switch ((i.tm.base_opcode >> 8) & 0xff)
3384 {
3385 case 0:
3386 implied_prefix = 0;
3387 break;
3388 case DATA_PREFIX_OPCODE:
3389 implied_prefix = 1;
3390 break;
3391 case REPE_PREFIX_OPCODE:
3392 implied_prefix = 2;
3393 break;
3394 case REPNE_PREFIX_OPCODE:
3395 implied_prefix = 3;
3396 break;
3397 default:
3398 abort ();
3399 }
3400
3401 /* Use 2-byte VEX prefix if possible. */
86fa6981
L
3402 if (i.vec_encoding != vex_encoding_vex3
3403 && i.tm.opcode_modifier.vexopcode == VEX0F
04251de0 3404 && i.tm.opcode_modifier.vexw != VEXW1
c0f3af97
L
3405 && (i.rex & (REX_W | REX_X | REX_B)) == 0)
3406 {
3407 /* 2-byte VEX prefix. */
3408 unsigned int r;
3409
3410 i.vex.length = 2;
3411 i.vex.bytes[0] = 0xc5;
3412
3413 /* Check the REX.R bit. */
3414 r = (i.rex & REX_R) ? 0 : 1;
3415 i.vex.bytes[1] = (r << 7
3416 | register_specifier << 3
3417 | vector_length << 2
3418 | implied_prefix);
3419 }
3420 else
3421 {
3422 /* 3-byte VEX prefix. */
3423 unsigned int m, w;
3424
f88c9eb0 3425 i.vex.length = 3;
f88c9eb0 3426
7f399153 3427 switch (i.tm.opcode_modifier.vexopcode)
5dd85c99 3428 {
7f399153
L
3429 case VEX0F:
3430 m = 0x1;
80de6e00 3431 i.vex.bytes[0] = 0xc4;
7f399153
L
3432 break;
3433 case VEX0F38:
3434 m = 0x2;
80de6e00 3435 i.vex.bytes[0] = 0xc4;
7f399153
L
3436 break;
3437 case VEX0F3A:
3438 m = 0x3;
80de6e00 3439 i.vex.bytes[0] = 0xc4;
7f399153
L
3440 break;
3441 case XOP08:
5dd85c99
SP
3442 m = 0x8;
3443 i.vex.bytes[0] = 0x8f;
7f399153
L
3444 break;
3445 case XOP09:
f88c9eb0
SP
3446 m = 0x9;
3447 i.vex.bytes[0] = 0x8f;
7f399153
L
3448 break;
3449 case XOP0A:
f88c9eb0
SP
3450 m = 0xa;
3451 i.vex.bytes[0] = 0x8f;
7f399153
L
3452 break;
3453 default:
3454 abort ();
f88c9eb0 3455 }
c0f3af97 3456
c0f3af97
L
3457 /* The high 3 bits of the second VEX byte are 1's compliment
3458 of RXB bits from REX. */
3459 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m;
3460
3461 /* Check the REX.W bit. */
3462 w = (i.rex & REX_W) ? 1 : 0;
b28d1bda
IT
3463 if (i.tm.opcode_modifier.vexw == VEXW1)
3464 w = 1;
c0f3af97
L
3465
3466 i.vex.bytes[2] = (w << 7
3467 | register_specifier << 3
3468 | vector_length << 2
3469 | implied_prefix);
3470 }
3471}
3472
e771e7c9
JB
3473static INLINE bfd_boolean
3474is_evex_encoding (const insn_template *t)
3475{
7091c612 3476 return t->opcode_modifier.evex || t->opcode_modifier.disp8memshift
e771e7c9
JB
3477 || t->opcode_modifier.broadcast || t->opcode_modifier.masking
3478 || t->opcode_modifier.staticrounding || t->opcode_modifier.sae;
3479}
3480
7a8655d2
JB
3481static INLINE bfd_boolean
3482is_any_vex_encoding (const insn_template *t)
3483{
3484 return t->opcode_modifier.vex || t->opcode_modifier.vexopcode
3485 || is_evex_encoding (t);
3486}
3487
43234a1e
L
3488/* Build the EVEX prefix. */
3489
3490static void
3491build_evex_prefix (void)
3492{
3493 unsigned int register_specifier;
3494 unsigned int implied_prefix;
3495 unsigned int m, w;
3496 rex_byte vrex_used = 0;
3497
3498 /* Check register specifier. */
3499 if (i.vex.register_specifier)
3500 {
3501 gas_assert ((i.vrex & REX_X) == 0);
3502
3503 register_specifier = i.vex.register_specifier->reg_num;
3504 if ((i.vex.register_specifier->reg_flags & RegRex))
3505 register_specifier += 8;
3506 /* The upper 16 registers are encoded in the fourth byte of the
3507 EVEX prefix. */
3508 if (!(i.vex.register_specifier->reg_flags & RegVRex))
3509 i.vex.bytes[3] = 0x8;
3510 register_specifier = ~register_specifier & 0xf;
3511 }
3512 else
3513 {
3514 register_specifier = 0xf;
3515
3516 /* Encode upper 16 vector index register in the fourth byte of
3517 the EVEX prefix. */
3518 if (!(i.vrex & REX_X))
3519 i.vex.bytes[3] = 0x8;
3520 else
3521 vrex_used |= REX_X;
3522 }
3523
3524 switch ((i.tm.base_opcode >> 8) & 0xff)
3525 {
3526 case 0:
3527 implied_prefix = 0;
3528 break;
3529 case DATA_PREFIX_OPCODE:
3530 implied_prefix = 1;
3531 break;
3532 case REPE_PREFIX_OPCODE:
3533 implied_prefix = 2;
3534 break;
3535 case REPNE_PREFIX_OPCODE:
3536 implied_prefix = 3;
3537 break;
3538 default:
3539 abort ();
3540 }
3541
3542 /* 4 byte EVEX prefix. */
3543 i.vex.length = 4;
3544 i.vex.bytes[0] = 0x62;
3545
3546 /* mmmm bits. */
3547 switch (i.tm.opcode_modifier.vexopcode)
3548 {
3549 case VEX0F:
3550 m = 1;
3551 break;
3552 case VEX0F38:
3553 m = 2;
3554 break;
3555 case VEX0F3A:
3556 m = 3;
3557 break;
3558 default:
3559 abort ();
3560 break;
3561 }
3562
3563 /* The high 3 bits of the second EVEX byte are 1's compliment of RXB
3564 bits from REX. */
3565 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m;
3566
3567 /* The fifth bit of the second EVEX byte is 1's compliment of the
3568 REX_R bit in VREX. */
3569 if (!(i.vrex & REX_R))
3570 i.vex.bytes[1] |= 0x10;
3571 else
3572 vrex_used |= REX_R;
3573
3574 if ((i.reg_operands + i.imm_operands) == i.operands)
3575 {
3576 /* When all operands are registers, the REX_X bit in REX is not
3577 used. We reuse it to encode the upper 16 registers, which is
3578 indicated by the REX_B bit in VREX. The REX_X bit is encoded
3579 as 1's compliment. */
3580 if ((i.vrex & REX_B))
3581 {
3582 vrex_used |= REX_B;
3583 i.vex.bytes[1] &= ~0x40;
3584 }
3585 }
3586
3587 /* EVEX instructions shouldn't need the REX prefix. */
3588 i.vrex &= ~vrex_used;
3589 gas_assert (i.vrex == 0);
3590
3591 /* Check the REX.W bit. */
3592 w = (i.rex & REX_W) ? 1 : 0;
3593 if (i.tm.opcode_modifier.vexw)
3594 {
3595 if (i.tm.opcode_modifier.vexw == VEXW1)
3596 w = 1;
3597 }
3598 /* If w is not set it means we are dealing with WIG instruction. */
3599 else if (!w)
3600 {
3601 if (evexwig == evexw1)
3602 w = 1;
3603 }
3604
3605 /* Encode the U bit. */
3606 implied_prefix |= 0x4;
3607
3608 /* The third byte of the EVEX prefix. */
3609 i.vex.bytes[2] = (w << 7 | register_specifier << 3 | implied_prefix);
3610
3611 /* The fourth byte of the EVEX prefix. */
3612 /* The zeroing-masking bit. */
3613 if (i.mask && i.mask->zeroing)
3614 i.vex.bytes[3] |= 0x80;
3615
3616 /* Don't always set the broadcast bit if there is no RC. */
3617 if (!i.rounding)
3618 {
3619 /* Encode the vector length. */
3620 unsigned int vec_length;
3621
e771e7c9
JB
3622 if (!i.tm.opcode_modifier.evex
3623 || i.tm.opcode_modifier.evex == EVEXDYN)
3624 {
56522fc5 3625 unsigned int op;
e771e7c9 3626
c7213af9
L
3627 /* Determine vector length from the last multi-length vector
3628 operand. */
e771e7c9 3629 vec_length = 0;
56522fc5 3630 for (op = i.operands; op--;)
e771e7c9
JB
3631 if (i.tm.operand_types[op].bitfield.xmmword
3632 + i.tm.operand_types[op].bitfield.ymmword
3633 + i.tm.operand_types[op].bitfield.zmmword > 1)
3634 {
3635 if (i.types[op].bitfield.zmmword)
c7213af9
L
3636 {
3637 i.tm.opcode_modifier.evex = EVEX512;
3638 break;
3639 }
e771e7c9 3640 else if (i.types[op].bitfield.ymmword)
c7213af9
L
3641 {
3642 i.tm.opcode_modifier.evex = EVEX256;
3643 break;
3644 }
e771e7c9 3645 else if (i.types[op].bitfield.xmmword)
c7213af9
L
3646 {
3647 i.tm.opcode_modifier.evex = EVEX128;
3648 break;
3649 }
625cbd7a
JB
3650 else if (i.broadcast && (int) op == i.broadcast->operand)
3651 {
4a1b91ea 3652 switch (i.broadcast->bytes)
625cbd7a
JB
3653 {
3654 case 64:
3655 i.tm.opcode_modifier.evex = EVEX512;
3656 break;
3657 case 32:
3658 i.tm.opcode_modifier.evex = EVEX256;
3659 break;
3660 case 16:
3661 i.tm.opcode_modifier.evex = EVEX128;
3662 break;
3663 default:
c7213af9 3664 abort ();
625cbd7a 3665 }
c7213af9 3666 break;
625cbd7a 3667 }
e771e7c9 3668 }
c7213af9 3669
56522fc5 3670 if (op >= MAX_OPERANDS)
c7213af9 3671 abort ();
e771e7c9
JB
3672 }
3673
43234a1e
L
3674 switch (i.tm.opcode_modifier.evex)
3675 {
3676 case EVEXLIG: /* LL' is ignored */
3677 vec_length = evexlig << 5;
3678 break;
3679 case EVEX128:
3680 vec_length = 0 << 5;
3681 break;
3682 case EVEX256:
3683 vec_length = 1 << 5;
3684 break;
3685 case EVEX512:
3686 vec_length = 2 << 5;
3687 break;
3688 default:
3689 abort ();
3690 break;
3691 }
3692 i.vex.bytes[3] |= vec_length;
3693 /* Encode the broadcast bit. */
3694 if (i.broadcast)
3695 i.vex.bytes[3] |= 0x10;
3696 }
3697 else
3698 {
3699 if (i.rounding->type != saeonly)
3700 i.vex.bytes[3] |= 0x10 | (i.rounding->type << 5);
3701 else
d3d3c6db 3702 i.vex.bytes[3] |= 0x10 | (evexrcig << 5);
43234a1e
L
3703 }
3704
3705 if (i.mask && i.mask->mask)
3706 i.vex.bytes[3] |= i.mask->mask->reg_num;
3707}
3708
65da13b5
L
3709static void
3710process_immext (void)
3711{
3712 expressionS *exp;
3713
4c692bc7
JB
3714 if ((i.tm.cpu_flags.bitfield.cpusse3 || i.tm.cpu_flags.bitfield.cpusvme)
3715 && i.operands > 0)
65da13b5 3716 {
4c692bc7
JB
3717 /* MONITOR/MWAIT as well as SVME instructions have fixed operands
3718 with an opcode suffix which is coded in the same place as an
3719 8-bit immediate field would be.
3720 Here we check those operands and remove them afterwards. */
65da13b5
L
3721 unsigned int x;
3722
3723 for (x = 0; x < i.operands; x++)
4c692bc7 3724 if (register_number (i.op[x].regs) != x)
65da13b5 3725 as_bad (_("can't use register '%s%s' as operand %d in '%s'."),
1fed0ba1
L
3726 register_prefix, i.op[x].regs->reg_name, x + 1,
3727 i.tm.name);
3728
3729 i.operands = 0;
65da13b5
L
3730 }
3731
9916071f
AP
3732 if (i.tm.cpu_flags.bitfield.cpumwaitx && i.operands > 0)
3733 {
3734 /* MONITORX/MWAITX instructions have fixed operands with an opcode
3735 suffix which is coded in the same place as an 8-bit immediate
3736 field would be.
3737 Here we check those operands and remove them afterwards. */
3738 unsigned int x;
3739
3740 if (i.operands != 3)
3741 abort();
3742
3743 for (x = 0; x < 2; x++)
3744 if (register_number (i.op[x].regs) != x)
3745 goto bad_register_operand;
3746
3747 /* Check for third operand for mwaitx/monitorx insn. */
3748 if (register_number (i.op[x].regs)
3749 != (x + (i.tm.extension_opcode == 0xfb)))
3750 {
3751bad_register_operand:
3752 as_bad (_("can't use register '%s%s' as operand %d in '%s'."),
3753 register_prefix, i.op[x].regs->reg_name, x+1,
3754 i.tm.name);
3755 }
3756
3757 i.operands = 0;
3758 }
3759
c0f3af97 3760 /* These AMD 3DNow! and SSE2 instructions have an opcode suffix
65da13b5
L
3761 which is coded in the same place as an 8-bit immediate field
3762 would be. Here we fake an 8-bit immediate operand from the
3763 opcode suffix stored in tm.extension_opcode.
3764
c1e679ec 3765 AVX instructions also use this encoding, for some of
c0f3af97 3766 3 argument instructions. */
65da13b5 3767
43234a1e 3768 gas_assert (i.imm_operands <= 1
7ab9ffdd 3769 && (i.operands <= 2
7a8655d2 3770 || (is_any_vex_encoding (&i.tm)
7ab9ffdd 3771 && i.operands <= 4)));
65da13b5
L
3772
3773 exp = &im_expressions[i.imm_operands++];
3774 i.op[i.operands].imms = exp;
3775 i.types[i.operands] = imm8;
3776 i.operands++;
3777 exp->X_op = O_constant;
3778 exp->X_add_number = i.tm.extension_opcode;
3779 i.tm.extension_opcode = None;
3780}
3781
42164a71
L
3782
3783static int
3784check_hle (void)
3785{
3786 switch (i.tm.opcode_modifier.hleprefixok)
3787 {
3788 default:
3789 abort ();
82c2def5 3790 case HLEPrefixNone:
165de32a
L
3791 as_bad (_("invalid instruction `%s' after `%s'"),
3792 i.tm.name, i.hle_prefix);
42164a71 3793 return 0;
82c2def5 3794 case HLEPrefixLock:
42164a71
L
3795 if (i.prefix[LOCK_PREFIX])
3796 return 1;
165de32a 3797 as_bad (_("missing `lock' with `%s'"), i.hle_prefix);
42164a71 3798 return 0;
82c2def5 3799 case HLEPrefixAny:
42164a71 3800 return 1;
82c2def5 3801 case HLEPrefixRelease:
42164a71
L
3802 if (i.prefix[HLE_PREFIX] != XRELEASE_PREFIX_OPCODE)
3803 {
3804 as_bad (_("instruction `%s' after `xacquire' not allowed"),
3805 i.tm.name);
3806 return 0;
3807 }
3808 if (i.mem_operands == 0
3809 || !operand_type_check (i.types[i.operands - 1], anymem))
3810 {
3811 as_bad (_("memory destination needed for instruction `%s'"
3812 " after `xrelease'"), i.tm.name);
3813 return 0;
3814 }
3815 return 1;
3816 }
3817}
3818
b6f8c7c4
L
3819/* Try the shortest encoding by shortening operand size. */
3820
3821static void
3822optimize_encoding (void)
3823{
3824 int j;
3825
3826 if (optimize_for_space
3827 && i.reg_operands == 1
3828 && i.imm_operands == 1
3829 && !i.types[1].bitfield.byte
3830 && i.op[0].imms->X_op == O_constant
3831 && fits_in_imm7 (i.op[0].imms->X_add_number)
3832 && ((i.tm.base_opcode == 0xa8
3833 && i.tm.extension_opcode == None)
3834 || (i.tm.base_opcode == 0xf6
3835 && i.tm.extension_opcode == 0x0)))
3836 {
3837 /* Optimize: -Os:
3838 test $imm7, %r64/%r32/%r16 -> test $imm7, %r8
3839 */
3840 unsigned int base_regnum = i.op[1].regs->reg_num;
3841 if (flag_code == CODE_64BIT || base_regnum < 4)
3842 {
3843 i.types[1].bitfield.byte = 1;
3844 /* Ignore the suffix. */
3845 i.suffix = 0;
3846 if (base_regnum >= 4
3847 && !(i.op[1].regs->reg_flags & RegRex))
3848 {
3849 /* Handle SP, BP, SI and DI registers. */
3850 if (i.types[1].bitfield.word)
3851 j = 16;
3852 else if (i.types[1].bitfield.dword)
3853 j = 32;
3854 else
3855 j = 48;
3856 i.op[1].regs -= j;
3857 }
3858 }
3859 }
3860 else if (flag_code == CODE_64BIT
d3d50934
L
3861 && ((i.types[1].bitfield.qword
3862 && i.reg_operands == 1
b6f8c7c4
L
3863 && i.imm_operands == 1
3864 && i.op[0].imms->X_op == O_constant
3865 && ((i.tm.base_opcode == 0xb0
3866 && i.tm.extension_opcode == None
3867 && fits_in_unsigned_long (i.op[0].imms->X_add_number))
3868 || (fits_in_imm31 (i.op[0].imms->X_add_number)
3869 && (((i.tm.base_opcode == 0x24
3870 || i.tm.base_opcode == 0xa8)
3871 && i.tm.extension_opcode == None)
3872 || (i.tm.base_opcode == 0x80
3873 && i.tm.extension_opcode == 0x4)
3874 || ((i.tm.base_opcode == 0xf6
3875 || i.tm.base_opcode == 0xc6)
3876 && i.tm.extension_opcode == 0x0)))))
d3d50934
L
3877 || (i.types[0].bitfield.qword
3878 && ((i.reg_operands == 2
3879 && i.op[0].regs == i.op[1].regs
3880 && ((i.tm.base_opcode == 0x30
3881 || i.tm.base_opcode == 0x28)
3882 && i.tm.extension_opcode == None))
3883 || (i.reg_operands == 1
3884 && i.operands == 1
3885 && i.tm.base_opcode == 0x30
3886 && i.tm.extension_opcode == None)))))
b6f8c7c4
L
3887 {
3888 /* Optimize: -O:
3889 andq $imm31, %r64 -> andl $imm31, %r32
3890 testq $imm31, %r64 -> testl $imm31, %r32
3891 xorq %r64, %r64 -> xorl %r32, %r32
3892 subq %r64, %r64 -> subl %r32, %r32
3893 movq $imm31, %r64 -> movl $imm31, %r32
3894 movq $imm32, %r64 -> movl $imm32, %r32
3895 */
3896 i.tm.opcode_modifier.norex64 = 1;
3897 if (i.tm.base_opcode == 0xb0 || i.tm.base_opcode == 0xc6)
3898 {
3899 /* Handle
3900 movq $imm31, %r64 -> movl $imm31, %r32
3901 movq $imm32, %r64 -> movl $imm32, %r32
3902 */
3903 i.tm.operand_types[0].bitfield.imm32 = 1;
3904 i.tm.operand_types[0].bitfield.imm32s = 0;
3905 i.tm.operand_types[0].bitfield.imm64 = 0;
3906 i.types[0].bitfield.imm32 = 1;
3907 i.types[0].bitfield.imm32s = 0;
3908 i.types[0].bitfield.imm64 = 0;
3909 i.types[1].bitfield.dword = 1;
3910 i.types[1].bitfield.qword = 0;
3911 if (i.tm.base_opcode == 0xc6)
3912 {
3913 /* Handle
3914 movq $imm31, %r64 -> movl $imm31, %r32
3915 */
3916 i.tm.base_opcode = 0xb0;
3917 i.tm.extension_opcode = None;
3918 i.tm.opcode_modifier.shortform = 1;
3919 i.tm.opcode_modifier.modrm = 0;
3920 }
3921 }
3922 }
3923 else if (optimize > 1
3924 && i.reg_operands == 3
3925 && i.op[0].regs == i.op[1].regs
3926 && !i.types[2].bitfield.xmmword
3927 && (i.tm.opcode_modifier.vex
7a69eac3 3928 || ((!i.mask || i.mask->zeroing)
b6f8c7c4 3929 && !i.rounding
e771e7c9 3930 && is_evex_encoding (&i.tm)
80c34c38
L
3931 && (i.vec_encoding != vex_encoding_evex
3932 || i.tm.cpu_flags.bitfield.cpuavx512vl
7091c612
JB
3933 || (i.tm.operand_types[2].bitfield.zmmword
3934 && i.types[2].bitfield.ymmword)
0089dace 3935 || cpu_arch_isa_flags.bitfield.cpuavx512vl)))
b6f8c7c4
L
3936 && ((i.tm.base_opcode == 0x55
3937 || i.tm.base_opcode == 0x6655
3938 || i.tm.base_opcode == 0x66df
3939 || i.tm.base_opcode == 0x57
3940 || i.tm.base_opcode == 0x6657
8305403a
L
3941 || i.tm.base_opcode == 0x66ef
3942 || i.tm.base_opcode == 0x66f8
3943 || i.tm.base_opcode == 0x66f9
3944 || i.tm.base_opcode == 0x66fa
3945 || i.tm.base_opcode == 0x66fb)
b6f8c7c4
L
3946 && i.tm.extension_opcode == None))
3947 {
3948 /* Optimize: -O2:
8305403a
L
3949 VOP, one of vandnps, vandnpd, vxorps, vxorpd, vpsubb, vpsubd,
3950 vpsubq and vpsubw:
b6f8c7c4
L
3951 EVEX VOP %zmmM, %zmmM, %zmmN
3952 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
3953 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16)
3954 EVEX VOP %ymmM, %ymmM, %ymmN
3955 -> VEX VOP %xmmM, %xmmM, %xmmN (M and N < 16)
3956 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16)
3957 VEX VOP %ymmM, %ymmM, %ymmN
3958 -> VEX VOP %xmmM, %xmmM, %xmmN
3959 VOP, one of vpandn and vpxor:
3960 VEX VOP %ymmM, %ymmM, %ymmN
3961 -> VEX VOP %xmmM, %xmmM, %xmmN
3962 VOP, one of vpandnd and vpandnq:
3963 EVEX VOP %zmmM, %zmmM, %zmmN
3964 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
3965 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16)
3966 EVEX VOP %ymmM, %ymmM, %ymmN
3967 -> VEX vpandn %xmmM, %xmmM, %xmmN (M and N < 16)
3968 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16)
3969 VOP, one of vpxord and vpxorq:
3970 EVEX VOP %zmmM, %zmmM, %zmmN
3971 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
3972 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16)
3973 EVEX VOP %ymmM, %ymmM, %ymmN
3974 -> VEX vpxor %xmmM, %xmmM, %xmmN (M and N < 16)
3975 -> EVEX VOP %xmmM, %xmmM, %xmmN (M || N >= 16)
3976 */
e771e7c9 3977 if (is_evex_encoding (&i.tm))
b6f8c7c4 3978 {
0089dace 3979 if (i.vec_encoding == vex_encoding_evex)
b6f8c7c4
L
3980 i.tm.opcode_modifier.evex = EVEX128;
3981 else
3982 {
3983 i.tm.opcode_modifier.vex = VEX128;
3984 i.tm.opcode_modifier.vexw = VEXW0;
3985 i.tm.opcode_modifier.evex = 0;
3986 }
3987 }
3988 else
3989 i.tm.opcode_modifier.vex = VEX128;
3990
3991 if (i.tm.opcode_modifier.vex)
3992 for (j = 0; j < 3; j++)
3993 {
3994 i.types[j].bitfield.xmmword = 1;
3995 i.types[j].bitfield.ymmword = 0;
3996 }
3997 }
3998}
3999
252b5132
RH
4000/* This is the guts of the machine-dependent assembler. LINE points to a
4001 machine dependent instruction. This function is supposed to emit
4002 the frags/bytes it assembles to. */
4003
4004void
65da13b5 4005md_assemble (char *line)
252b5132 4006{
40fb9820 4007 unsigned int j;
83b16ac6 4008 char mnemonic[MAX_MNEM_SIZE], mnem_suffix;
d3ce72d0 4009 const insn_template *t;
252b5132 4010
47926f60 4011 /* Initialize globals. */
252b5132
RH
4012 memset (&i, '\0', sizeof (i));
4013 for (j = 0; j < MAX_OPERANDS; j++)
1ae12ab7 4014 i.reloc[j] = NO_RELOC;
252b5132
RH
4015 memset (disp_expressions, '\0', sizeof (disp_expressions));
4016 memset (im_expressions, '\0', sizeof (im_expressions));
ce8a8b2f 4017 save_stack_p = save_stack;
252b5132
RH
4018
4019 /* First parse an instruction mnemonic & call i386_operand for the operands.
4020 We assume that the scrubber has arranged it so that line[0] is the valid
47926f60 4021 start of a (possibly prefixed) mnemonic. */
252b5132 4022
29b0f896
AM
4023 line = parse_insn (line, mnemonic);
4024 if (line == NULL)
4025 return;
83b16ac6 4026 mnem_suffix = i.suffix;
252b5132 4027
29b0f896 4028 line = parse_operands (line, mnemonic);
ee86248c 4029 this_operand = -1;
8325cc63
JB
4030 xfree (i.memop1_string);
4031 i.memop1_string = NULL;
29b0f896
AM
4032 if (line == NULL)
4033 return;
252b5132 4034
29b0f896
AM
4035 /* Now we've parsed the mnemonic into a set of templates, and have the
4036 operands at hand. */
4037
4038 /* All intel opcodes have reversed operands except for "bound" and
4039 "enter". We also don't reverse intersegment "jmp" and "call"
4040 instructions with 2 immediate operands so that the immediate segment
050dfa73 4041 precedes the offset, as it does when in AT&T mode. */
4d456e3d
L
4042 if (intel_syntax
4043 && i.operands > 1
29b0f896 4044 && (strcmp (mnemonic, "bound") != 0)
30123838 4045 && (strcmp (mnemonic, "invlpga") != 0)
40fb9820
L
4046 && !(operand_type_check (i.types[0], imm)
4047 && operand_type_check (i.types[1], imm)))
29b0f896
AM
4048 swap_operands ();
4049
ec56d5c0
JB
4050 /* The order of the immediates should be reversed
4051 for 2 immediates extrq and insertq instructions */
4052 if (i.imm_operands == 2
4053 && (strcmp (mnemonic, "extrq") == 0
4054 || strcmp (mnemonic, "insertq") == 0))
4055 swap_2_operands (0, 1);
4056
29b0f896
AM
4057 if (i.imm_operands)
4058 optimize_imm ();
4059
b300c311
L
4060 /* Don't optimize displacement for movabs since it only takes 64bit
4061 displacement. */
4062 if (i.disp_operands
a501d77e 4063 && i.disp_encoding != disp_encoding_32bit
862be3fb
L
4064 && (flag_code != CODE_64BIT
4065 || strcmp (mnemonic, "movabs") != 0))
4066 optimize_disp ();
29b0f896
AM
4067
4068 /* Next, we find a template that matches the given insn,
4069 making sure the overlap of the given operands types is consistent
4070 with the template operand types. */
252b5132 4071
83b16ac6 4072 if (!(t = match_template (mnem_suffix)))
29b0f896 4073 return;
252b5132 4074
7bab8ab5 4075 if (sse_check != check_none
81f8a913 4076 && !i.tm.opcode_modifier.noavx
6e3e5c9e 4077 && !i.tm.cpu_flags.bitfield.cpuavx
daf50ae7
L
4078 && (i.tm.cpu_flags.bitfield.cpusse
4079 || i.tm.cpu_flags.bitfield.cpusse2
4080 || i.tm.cpu_flags.bitfield.cpusse3
4081 || i.tm.cpu_flags.bitfield.cpussse3
4082 || i.tm.cpu_flags.bitfield.cpusse4_1
6e3e5c9e
JB
4083 || i.tm.cpu_flags.bitfield.cpusse4_2
4084 || i.tm.cpu_flags.bitfield.cpupclmul
4085 || i.tm.cpu_flags.bitfield.cpuaes
4086 || i.tm.cpu_flags.bitfield.cpugfni))
daf50ae7 4087 {
7bab8ab5 4088 (sse_check == check_warning
daf50ae7
L
4089 ? as_warn
4090 : as_bad) (_("SSE instruction `%s' is used"), i.tm.name);
4091 }
4092
321fd21e
L
4093 /* Zap movzx and movsx suffix. The suffix has been set from
4094 "word ptr" or "byte ptr" on the source operand in Intel syntax
4095 or extracted from mnemonic in AT&T syntax. But we'll use
4096 the destination register to choose the suffix for encoding. */
4097 if ((i.tm.base_opcode & ~9) == 0x0fb6)
cd61ebfe 4098 {
321fd21e
L
4099 /* In Intel syntax, there must be a suffix. In AT&T syntax, if
4100 there is no suffix, the default will be byte extension. */
4101 if (i.reg_operands != 2
4102 && !i.suffix
7ab9ffdd 4103 && intel_syntax)
321fd21e
L
4104 as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
4105
4106 i.suffix = 0;
cd61ebfe 4107 }
24eab124 4108
40fb9820 4109 if (i.tm.opcode_modifier.fwait)
29b0f896
AM
4110 if (!add_prefix (FWAIT_OPCODE))
4111 return;
252b5132 4112
d5de92cf
L
4113 /* Check if REP prefix is OK. */
4114 if (i.rep_prefix && !i.tm.opcode_modifier.repprefixok)
4115 {
4116 as_bad (_("invalid instruction `%s' after `%s'"),
4117 i.tm.name, i.rep_prefix);
4118 return;
4119 }
4120
c1ba0266
L
4121 /* Check for lock without a lockable instruction. Destination operand
4122 must be memory unless it is xchg (0x86). */
c32fa91d
L
4123 if (i.prefix[LOCK_PREFIX]
4124 && (!i.tm.opcode_modifier.islockable
c1ba0266
L
4125 || i.mem_operands == 0
4126 || (i.tm.base_opcode != 0x86
4127 && !operand_type_check (i.types[i.operands - 1], anymem))))
c32fa91d
L
4128 {
4129 as_bad (_("expecting lockable instruction after `lock'"));
4130 return;
4131 }
4132
7a8655d2
JB
4133 /* Check for data size prefix on VEX/XOP/EVEX encoded insns. */
4134 if (i.prefix[DATA_PREFIX] && is_any_vex_encoding (&i.tm))
4135 {
4136 as_bad (_("data size prefix invalid with `%s'"), i.tm.name);
4137 return;
4138 }
4139
42164a71 4140 /* Check if HLE prefix is OK. */
165de32a 4141 if (i.hle_prefix && !check_hle ())
42164a71
L
4142 return;
4143
7e8b059b
L
4144 /* Check BND prefix. */
4145 if (i.bnd_prefix && !i.tm.opcode_modifier.bndprefixok)
4146 as_bad (_("expecting valid branch instruction after `bnd'"));
4147
04ef582a 4148 /* Check NOTRACK prefix. */
9fef80d6
L
4149 if (i.notrack_prefix && !i.tm.opcode_modifier.notrackprefixok)
4150 as_bad (_("expecting indirect branch instruction after `notrack'"));
04ef582a 4151
327e8c42
JB
4152 if (i.tm.cpu_flags.bitfield.cpumpx)
4153 {
4154 if (flag_code == CODE_64BIT && i.prefix[ADDR_PREFIX])
4155 as_bad (_("32-bit address isn't allowed in 64-bit MPX instructions."));
4156 else if (flag_code != CODE_16BIT
4157 ? i.prefix[ADDR_PREFIX]
4158 : i.mem_operands && !i.prefix[ADDR_PREFIX])
4159 as_bad (_("16-bit address isn't allowed in MPX instructions"));
4160 }
7e8b059b
L
4161
4162 /* Insert BND prefix. */
76d3a78a
JB
4163 if (add_bnd_prefix && i.tm.opcode_modifier.bndprefixok)
4164 {
4165 if (!i.prefix[BND_PREFIX])
4166 add_prefix (BND_PREFIX_OPCODE);
4167 else if (i.prefix[BND_PREFIX] != BND_PREFIX_OPCODE)
4168 {
4169 as_warn (_("replacing `rep'/`repe' prefix by `bnd'"));
4170 i.prefix[BND_PREFIX] = BND_PREFIX_OPCODE;
4171 }
4172 }
7e8b059b 4173
29b0f896 4174 /* Check string instruction segment overrides. */
40fb9820 4175 if (i.tm.opcode_modifier.isstring && i.mem_operands != 0)
29b0f896
AM
4176 {
4177 if (!check_string ())
5dd0794d 4178 return;
fc0763e6 4179 i.disp_operands = 0;
29b0f896 4180 }
5dd0794d 4181
b6f8c7c4
L
4182 if (optimize && !i.no_optimize && i.tm.opcode_modifier.optimize)
4183 optimize_encoding ();
4184
29b0f896
AM
4185 if (!process_suffix ())
4186 return;
e413e4e9 4187
bc0844ae
L
4188 /* Update operand types. */
4189 for (j = 0; j < i.operands; j++)
4190 i.types[j] = operand_type_and (i.types[j], i.tm.operand_types[j]);
4191
29b0f896
AM
4192 /* Make still unresolved immediate matches conform to size of immediate
4193 given in i.suffix. */
4194 if (!finalize_imm ())
4195 return;
252b5132 4196
40fb9820 4197 if (i.types[0].bitfield.imm1)
29b0f896 4198 i.imm_operands = 0; /* kludge for shift insns. */
252b5132 4199
9afe6eb8
L
4200 /* We only need to check those implicit registers for instructions
4201 with 3 operands or less. */
4202 if (i.operands <= 3)
4203 for (j = 0; j < i.operands; j++)
4204 if (i.types[j].bitfield.inoutportreg
4205 || i.types[j].bitfield.shiftcount
1b54b8d7 4206 || (i.types[j].bitfield.acc && !i.types[j].bitfield.xmmword))
9afe6eb8 4207 i.reg_operands--;
40fb9820 4208
c0f3af97
L
4209 /* ImmExt should be processed after SSE2AVX. */
4210 if (!i.tm.opcode_modifier.sse2avx
4211 && i.tm.opcode_modifier.immext)
65da13b5 4212 process_immext ();
252b5132 4213
29b0f896
AM
4214 /* For insns with operands there are more diddles to do to the opcode. */
4215 if (i.operands)
4216 {
4217 if (!process_operands ())
4218 return;
4219 }
40fb9820 4220 else if (!quiet_warnings && i.tm.opcode_modifier.ugh)
29b0f896
AM
4221 {
4222 /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. */
4223 as_warn (_("translating to `%sp'"), i.tm.name);
4224 }
252b5132 4225
7a8655d2 4226 if (is_any_vex_encoding (&i.tm))
9e5e5283
L
4227 {
4228 if (flag_code == CODE_16BIT)
4229 {
4230 as_bad (_("instruction `%s' isn't supported in 16-bit mode."),
4231 i.tm.name);
4232 return;
4233 }
c0f3af97 4234
9e5e5283
L
4235 if (i.tm.opcode_modifier.vex)
4236 build_vex_prefix (t);
4237 else
4238 build_evex_prefix ();
4239 }
43234a1e 4240
5dd85c99
SP
4241 /* Handle conversion of 'int $3' --> special int3 insn. XOP or FMA4
4242 instructions may define INT_OPCODE as well, so avoid this corner
4243 case for those instructions that use MODRM. */
4244 if (i.tm.base_opcode == INT_OPCODE
a6461c02
SP
4245 && !i.tm.opcode_modifier.modrm
4246 && i.op[0].imms->X_add_number == 3)
29b0f896
AM
4247 {
4248 i.tm.base_opcode = INT3_OPCODE;
4249 i.imm_operands = 0;
4250 }
252b5132 4251
40fb9820
L
4252 if ((i.tm.opcode_modifier.jump
4253 || i.tm.opcode_modifier.jumpbyte
4254 || i.tm.opcode_modifier.jumpdword)
29b0f896
AM
4255 && i.op[0].disps->X_op == O_constant)
4256 {
4257 /* Convert "jmp constant" (and "call constant") to a jump (call) to
4258 the absolute address given by the constant. Since ix86 jumps and
4259 calls are pc relative, we need to generate a reloc. */
4260 i.op[0].disps->X_add_symbol = &abs_symbol;
4261 i.op[0].disps->X_op = O_symbol;
4262 }
252b5132 4263
40fb9820 4264 if (i.tm.opcode_modifier.rex64)
161a04f6 4265 i.rex |= REX_W;
252b5132 4266
29b0f896
AM
4267 /* For 8 bit registers we need an empty rex prefix. Also if the
4268 instruction already has a prefix, we need to convert old
4269 registers to new ones. */
773f551c 4270
dc821c5f 4271 if ((i.types[0].bitfield.reg && i.types[0].bitfield.byte
29b0f896 4272 && (i.op[0].regs->reg_flags & RegRex64) != 0)
dc821c5f 4273 || (i.types[1].bitfield.reg && i.types[1].bitfield.byte
29b0f896 4274 && (i.op[1].regs->reg_flags & RegRex64) != 0)
dc821c5f
JB
4275 || (((i.types[0].bitfield.reg && i.types[0].bitfield.byte)
4276 || (i.types[1].bitfield.reg && i.types[1].bitfield.byte))
29b0f896
AM
4277 && i.rex != 0))
4278 {
4279 int x;
726c5dcd 4280
29b0f896
AM
4281 i.rex |= REX_OPCODE;
4282 for (x = 0; x < 2; x++)
4283 {
4284 /* Look for 8 bit operand that uses old registers. */
dc821c5f 4285 if (i.types[x].bitfield.reg && i.types[x].bitfield.byte
29b0f896 4286 && (i.op[x].regs->reg_flags & RegRex64) == 0)
773f551c 4287 {
29b0f896
AM
4288 /* In case it is "hi" register, give up. */
4289 if (i.op[x].regs->reg_num > 3)
a540244d 4290 as_bad (_("can't encode register '%s%s' in an "
4eed87de 4291 "instruction requiring REX prefix."),
a540244d 4292 register_prefix, i.op[x].regs->reg_name);
773f551c 4293
29b0f896
AM
4294 /* Otherwise it is equivalent to the extended register.
4295 Since the encoding doesn't change this is merely
4296 cosmetic cleanup for debug output. */
4297
4298 i.op[x].regs = i.op[x].regs + 8;
773f551c 4299 }
29b0f896
AM
4300 }
4301 }
773f551c 4302
6b6b6807
L
4303 if (i.rex == 0 && i.rex_encoding)
4304 {
4305 /* Check if we can add a REX_OPCODE byte. Look for 8 bit operand
4306 that uses legacy register. If it is "hi" register, don't add
4307 the REX_OPCODE byte. */
4308 int x;
4309 for (x = 0; x < 2; x++)
4310 if (i.types[x].bitfield.reg
4311 && i.types[x].bitfield.byte
4312 && (i.op[x].regs->reg_flags & RegRex64) == 0
4313 && i.op[x].regs->reg_num > 3)
4314 {
4315 i.rex_encoding = FALSE;
4316 break;
4317 }
4318
4319 if (i.rex_encoding)
4320 i.rex = REX_OPCODE;
4321 }
4322
7ab9ffdd 4323 if (i.rex != 0)
29b0f896
AM
4324 add_prefix (REX_OPCODE | i.rex);
4325
4326 /* We are ready to output the insn. */
4327 output_insn ();
4328}
4329
4330static char *
e3bb37b5 4331parse_insn (char *line, char *mnemonic)
29b0f896
AM
4332{
4333 char *l = line;
4334 char *token_start = l;
4335 char *mnem_p;
5c6af06e 4336 int supported;
d3ce72d0 4337 const insn_template *t;
b6169b20 4338 char *dot_p = NULL;
29b0f896 4339
29b0f896
AM
4340 while (1)
4341 {
4342 mnem_p = mnemonic;
4343 while ((*mnem_p = mnemonic_chars[(unsigned char) *l]) != 0)
4344 {
b6169b20
L
4345 if (*mnem_p == '.')
4346 dot_p = mnem_p;
29b0f896
AM
4347 mnem_p++;
4348 if (mnem_p >= mnemonic + MAX_MNEM_SIZE)
45288df1 4349 {
29b0f896
AM
4350 as_bad (_("no such instruction: `%s'"), token_start);
4351 return NULL;
4352 }
4353 l++;
4354 }
4355 if (!is_space_char (*l)
4356 && *l != END_OF_INSN
e44823cf
JB
4357 && (intel_syntax
4358 || (*l != PREFIX_SEPARATOR
4359 && *l != ',')))
29b0f896
AM
4360 {
4361 as_bad (_("invalid character %s in mnemonic"),
4362 output_invalid (*l));
4363 return NULL;
4364 }
4365 if (token_start == l)
4366 {
e44823cf 4367 if (!intel_syntax && *l == PREFIX_SEPARATOR)
29b0f896
AM
4368 as_bad (_("expecting prefix; got nothing"));
4369 else
4370 as_bad (_("expecting mnemonic; got nothing"));
4371 return NULL;
4372 }
45288df1 4373
29b0f896 4374 /* Look up instruction (or prefix) via hash table. */
d3ce72d0 4375 current_templates = (const templates *) hash_find (op_hash, mnemonic);
47926f60 4376
29b0f896
AM
4377 if (*l != END_OF_INSN
4378 && (!is_space_char (*l) || l[1] != END_OF_INSN)
4379 && current_templates
40fb9820 4380 && current_templates->start->opcode_modifier.isprefix)
29b0f896 4381 {
c6fb90c8 4382 if (!cpu_flags_check_cpu64 (current_templates->start->cpu_flags))
2dd88dca
JB
4383 {
4384 as_bad ((flag_code != CODE_64BIT
4385 ? _("`%s' is only supported in 64-bit mode")
4386 : _("`%s' is not supported in 64-bit mode")),
4387 current_templates->start->name);
4388 return NULL;
4389 }
29b0f896
AM
4390 /* If we are in 16-bit mode, do not allow addr16 or data16.
4391 Similarly, in 32-bit mode, do not allow addr32 or data32. */
40fb9820
L
4392 if ((current_templates->start->opcode_modifier.size16
4393 || current_templates->start->opcode_modifier.size32)
29b0f896 4394 && flag_code != CODE_64BIT
40fb9820 4395 && (current_templates->start->opcode_modifier.size32
29b0f896
AM
4396 ^ (flag_code == CODE_16BIT)))
4397 {
4398 as_bad (_("redundant %s prefix"),
4399 current_templates->start->name);
4400 return NULL;
45288df1 4401 }
86fa6981 4402 if (current_templates->start->opcode_length == 0)
29b0f896 4403 {
86fa6981
L
4404 /* Handle pseudo prefixes. */
4405 switch (current_templates->start->base_opcode)
4406 {
4407 case 0x0:
4408 /* {disp8} */
4409 i.disp_encoding = disp_encoding_8bit;
4410 break;
4411 case 0x1:
4412 /* {disp32} */
4413 i.disp_encoding = disp_encoding_32bit;
4414 break;
4415 case 0x2:
4416 /* {load} */
4417 i.dir_encoding = dir_encoding_load;
4418 break;
4419 case 0x3:
4420 /* {store} */
4421 i.dir_encoding = dir_encoding_store;
4422 break;
4423 case 0x4:
4424 /* {vex2} */
4425 i.vec_encoding = vex_encoding_vex2;
4426 break;
4427 case 0x5:
4428 /* {vex3} */
4429 i.vec_encoding = vex_encoding_vex3;
4430 break;
4431 case 0x6:
4432 /* {evex} */
4433 i.vec_encoding = vex_encoding_evex;
4434 break;
6b6b6807
L
4435 case 0x7:
4436 /* {rex} */
4437 i.rex_encoding = TRUE;
4438 break;
b6f8c7c4
L
4439 case 0x8:
4440 /* {nooptimize} */
4441 i.no_optimize = TRUE;
4442 break;
86fa6981
L
4443 default:
4444 abort ();
4445 }
4446 }
4447 else
4448 {
4449 /* Add prefix, checking for repeated prefixes. */
4e9ac44a 4450 switch (add_prefix (current_templates->start->base_opcode))
86fa6981 4451 {
4e9ac44a
L
4452 case PREFIX_EXIST:
4453 return NULL;
4454 case PREFIX_DS:
d777820b 4455 if (current_templates->start->cpu_flags.bitfield.cpuibt)
4e9ac44a
L
4456 i.notrack_prefix = current_templates->start->name;
4457 break;
4458 case PREFIX_REP:
4459 if (current_templates->start->cpu_flags.bitfield.cpuhle)
4460 i.hle_prefix = current_templates->start->name;
4461 else if (current_templates->start->cpu_flags.bitfield.cpumpx)
4462 i.bnd_prefix = current_templates->start->name;
4463 else
4464 i.rep_prefix = current_templates->start->name;
4465 break;
4466 default:
4467 break;
86fa6981 4468 }
29b0f896
AM
4469 }
4470 /* Skip past PREFIX_SEPARATOR and reset token_start. */
4471 token_start = ++l;
4472 }
4473 else
4474 break;
4475 }
45288df1 4476
30a55f88 4477 if (!current_templates)
b6169b20 4478 {
f8a5c266
L
4479 /* Check if we should swap operand or force 32bit displacement in
4480 encoding. */
30a55f88 4481 if (mnem_p - 2 == dot_p && dot_p[1] == 's')
86fa6981 4482 i.dir_encoding = dir_encoding_store;
8d63c93e 4483 else if (mnem_p - 3 == dot_p
a501d77e
L
4484 && dot_p[1] == 'd'
4485 && dot_p[2] == '8')
4486 i.disp_encoding = disp_encoding_8bit;
8d63c93e 4487 else if (mnem_p - 4 == dot_p
f8a5c266
L
4488 && dot_p[1] == 'd'
4489 && dot_p[2] == '3'
4490 && dot_p[3] == '2')
a501d77e 4491 i.disp_encoding = disp_encoding_32bit;
30a55f88
L
4492 else
4493 goto check_suffix;
4494 mnem_p = dot_p;
4495 *dot_p = '\0';
d3ce72d0 4496 current_templates = (const templates *) hash_find (op_hash, mnemonic);
b6169b20
L
4497 }
4498
29b0f896
AM
4499 if (!current_templates)
4500 {
b6169b20 4501check_suffix:
29b0f896
AM
4502 /* See if we can get a match by trimming off a suffix. */
4503 switch (mnem_p[-1])
4504 {
4505 case WORD_MNEM_SUFFIX:
9306ca4a
JB
4506 if (intel_syntax && (intel_float_operand (mnemonic) & 2))
4507 i.suffix = SHORT_MNEM_SUFFIX;
4508 else
1a0670f3 4509 /* Fall through. */
29b0f896
AM
4510 case BYTE_MNEM_SUFFIX:
4511 case QWORD_MNEM_SUFFIX:
4512 i.suffix = mnem_p[-1];
4513 mnem_p[-1] = '\0';
d3ce72d0
NC
4514 current_templates = (const templates *) hash_find (op_hash,
4515 mnemonic);
29b0f896
AM
4516 break;
4517 case SHORT_MNEM_SUFFIX:
4518 case LONG_MNEM_SUFFIX:
4519 if (!intel_syntax)
4520 {
4521 i.suffix = mnem_p[-1];
4522 mnem_p[-1] = '\0';
d3ce72d0
NC
4523 current_templates = (const templates *) hash_find (op_hash,
4524 mnemonic);
29b0f896
AM
4525 }
4526 break;
252b5132 4527
29b0f896
AM
4528 /* Intel Syntax. */
4529 case 'd':
4530 if (intel_syntax)
4531 {
9306ca4a 4532 if (intel_float_operand (mnemonic) == 1)
29b0f896
AM
4533 i.suffix = SHORT_MNEM_SUFFIX;
4534 else
4535 i.suffix = LONG_MNEM_SUFFIX;
4536 mnem_p[-1] = '\0';
d3ce72d0
NC
4537 current_templates = (const templates *) hash_find (op_hash,
4538 mnemonic);
29b0f896
AM
4539 }
4540 break;
4541 }
4542 if (!current_templates)
4543 {
4544 as_bad (_("no such instruction: `%s'"), token_start);
4545 return NULL;
4546 }
4547 }
252b5132 4548
40fb9820
L
4549 if (current_templates->start->opcode_modifier.jump
4550 || current_templates->start->opcode_modifier.jumpbyte)
29b0f896
AM
4551 {
4552 /* Check for a branch hint. We allow ",pt" and ",pn" for
4553 predict taken and predict not taken respectively.
4554 I'm not sure that branch hints actually do anything on loop
4555 and jcxz insns (JumpByte) for current Pentium4 chips. They
4556 may work in the future and it doesn't hurt to accept them
4557 now. */
4558 if (l[0] == ',' && l[1] == 'p')
4559 {
4560 if (l[2] == 't')
4561 {
4562 if (!add_prefix (DS_PREFIX_OPCODE))
4563 return NULL;
4564 l += 3;
4565 }
4566 else if (l[2] == 'n')
4567 {
4568 if (!add_prefix (CS_PREFIX_OPCODE))
4569 return NULL;
4570 l += 3;
4571 }
4572 }
4573 }
4574 /* Any other comma loses. */
4575 if (*l == ',')
4576 {
4577 as_bad (_("invalid character %s in mnemonic"),
4578 output_invalid (*l));
4579 return NULL;
4580 }
252b5132 4581
29b0f896 4582 /* Check if instruction is supported on specified architecture. */
5c6af06e
JB
4583 supported = 0;
4584 for (t = current_templates->start; t < current_templates->end; ++t)
4585 {
c0f3af97
L
4586 supported |= cpu_flags_match (t);
4587 if (supported == CPU_FLAGS_PERFECT_MATCH)
548d0ee6
JB
4588 {
4589 if (!cpu_arch_flags.bitfield.cpui386 && (flag_code != CODE_16BIT))
4590 as_warn (_("use .code16 to ensure correct addressing mode"));
3629bb00 4591
548d0ee6
JB
4592 return l;
4593 }
29b0f896 4594 }
3629bb00 4595
548d0ee6
JB
4596 if (!(supported & CPU_FLAGS_64BIT_MATCH))
4597 as_bad (flag_code == CODE_64BIT
4598 ? _("`%s' is not supported in 64-bit mode")
4599 : _("`%s' is only supported in 64-bit mode"),
4600 current_templates->start->name);
4601 else
4602 as_bad (_("`%s' is not supported on `%s%s'"),
4603 current_templates->start->name,
4604 cpu_arch_name ? cpu_arch_name : default_arch,
4605 cpu_sub_arch_name ? cpu_sub_arch_name : "");
252b5132 4606
548d0ee6 4607 return NULL;
29b0f896 4608}
252b5132 4609
29b0f896 4610static char *
e3bb37b5 4611parse_operands (char *l, const char *mnemonic)
29b0f896
AM
4612{
4613 char *token_start;
3138f287 4614
29b0f896
AM
4615 /* 1 if operand is pending after ','. */
4616 unsigned int expecting_operand = 0;
252b5132 4617
29b0f896
AM
4618 /* Non-zero if operand parens not balanced. */
4619 unsigned int paren_not_balanced;
4620
4621 while (*l != END_OF_INSN)
4622 {
4623 /* Skip optional white space before operand. */
4624 if (is_space_char (*l))
4625 ++l;
d02603dc 4626 if (!is_operand_char (*l) && *l != END_OF_INSN && *l != '"')
29b0f896
AM
4627 {
4628 as_bad (_("invalid character %s before operand %d"),
4629 output_invalid (*l),
4630 i.operands + 1);
4631 return NULL;
4632 }
d02603dc 4633 token_start = l; /* After white space. */
29b0f896
AM
4634 paren_not_balanced = 0;
4635 while (paren_not_balanced || *l != ',')
4636 {
4637 if (*l == END_OF_INSN)
4638 {
4639 if (paren_not_balanced)
4640 {
4641 if (!intel_syntax)
4642 as_bad (_("unbalanced parenthesis in operand %d."),
4643 i.operands + 1);
4644 else
4645 as_bad (_("unbalanced brackets in operand %d."),
4646 i.operands + 1);
4647 return NULL;
4648 }
4649 else
4650 break; /* we are done */
4651 }
d02603dc 4652 else if (!is_operand_char (*l) && !is_space_char (*l) && *l != '"')
29b0f896
AM
4653 {
4654 as_bad (_("invalid character %s in operand %d"),
4655 output_invalid (*l),
4656 i.operands + 1);
4657 return NULL;
4658 }
4659 if (!intel_syntax)
4660 {
4661 if (*l == '(')
4662 ++paren_not_balanced;
4663 if (*l == ')')
4664 --paren_not_balanced;
4665 }
4666 else
4667 {
4668 if (*l == '[')
4669 ++paren_not_balanced;
4670 if (*l == ']')
4671 --paren_not_balanced;
4672 }
4673 l++;
4674 }
4675 if (l != token_start)
4676 { /* Yes, we've read in another operand. */
4677 unsigned int operand_ok;
4678 this_operand = i.operands++;
4679 if (i.operands > MAX_OPERANDS)
4680 {
4681 as_bad (_("spurious operands; (%d operands/instruction max)"),
4682 MAX_OPERANDS);
4683 return NULL;
4684 }
9d46ce34 4685 i.types[this_operand].bitfield.unspecified = 1;
29b0f896
AM
4686 /* Now parse operand adding info to 'i' as we go along. */
4687 END_STRING_AND_SAVE (l);
4688
1286ab78
L
4689 if (i.mem_operands > 1)
4690 {
4691 as_bad (_("too many memory references for `%s'"),
4692 mnemonic);
4693 return 0;
4694 }
4695
29b0f896
AM
4696 if (intel_syntax)
4697 operand_ok =
4698 i386_intel_operand (token_start,
4699 intel_float_operand (mnemonic));
4700 else
a7619375 4701 operand_ok = i386_att_operand (token_start);
29b0f896
AM
4702
4703 RESTORE_END_STRING (l);
4704 if (!operand_ok)
4705 return NULL;
4706 }
4707 else
4708 {
4709 if (expecting_operand)
4710 {
4711 expecting_operand_after_comma:
4712 as_bad (_("expecting operand after ','; got nothing"));
4713 return NULL;
4714 }
4715 if (*l == ',')
4716 {
4717 as_bad (_("expecting operand before ','; got nothing"));
4718 return NULL;
4719 }
4720 }
7f3f1ea2 4721
29b0f896
AM
4722 /* Now *l must be either ',' or END_OF_INSN. */
4723 if (*l == ',')
4724 {
4725 if (*++l == END_OF_INSN)
4726 {
4727 /* Just skip it, if it's \n complain. */
4728 goto expecting_operand_after_comma;
4729 }
4730 expecting_operand = 1;
4731 }
4732 }
4733 return l;
4734}
7f3f1ea2 4735
050dfa73 4736static void
4d456e3d 4737swap_2_operands (int xchg1, int xchg2)
050dfa73
MM
4738{
4739 union i386_op temp_op;
40fb9820 4740 i386_operand_type temp_type;
050dfa73 4741 enum bfd_reloc_code_real temp_reloc;
4eed87de 4742
050dfa73
MM
4743 temp_type = i.types[xchg2];
4744 i.types[xchg2] = i.types[xchg1];
4745 i.types[xchg1] = temp_type;
4746 temp_op = i.op[xchg2];
4747 i.op[xchg2] = i.op[xchg1];
4748 i.op[xchg1] = temp_op;
4749 temp_reloc = i.reloc[xchg2];
4750 i.reloc[xchg2] = i.reloc[xchg1];
4751 i.reloc[xchg1] = temp_reloc;
43234a1e
L
4752
4753 if (i.mask)
4754 {
4755 if (i.mask->operand == xchg1)
4756 i.mask->operand = xchg2;
4757 else if (i.mask->operand == xchg2)
4758 i.mask->operand = xchg1;
4759 }
4760 if (i.broadcast)
4761 {
4762 if (i.broadcast->operand == xchg1)
4763 i.broadcast->operand = xchg2;
4764 else if (i.broadcast->operand == xchg2)
4765 i.broadcast->operand = xchg1;
4766 }
4767 if (i.rounding)
4768 {
4769 if (i.rounding->operand == xchg1)
4770 i.rounding->operand = xchg2;
4771 else if (i.rounding->operand == xchg2)
4772 i.rounding->operand = xchg1;
4773 }
050dfa73
MM
4774}
4775
29b0f896 4776static void
e3bb37b5 4777swap_operands (void)
29b0f896 4778{
b7c61d9a 4779 switch (i.operands)
050dfa73 4780 {
c0f3af97 4781 case 5:
b7c61d9a 4782 case 4:
4d456e3d 4783 swap_2_operands (1, i.operands - 2);
1a0670f3 4784 /* Fall through. */
b7c61d9a
L
4785 case 3:
4786 case 2:
4d456e3d 4787 swap_2_operands (0, i.operands - 1);
b7c61d9a
L
4788 break;
4789 default:
4790 abort ();
29b0f896 4791 }
29b0f896
AM
4792
4793 if (i.mem_operands == 2)
4794 {
4795 const seg_entry *temp_seg;
4796 temp_seg = i.seg[0];
4797 i.seg[0] = i.seg[1];
4798 i.seg[1] = temp_seg;
4799 }
4800}
252b5132 4801
29b0f896
AM
4802/* Try to ensure constant immediates are represented in the smallest
4803 opcode possible. */
4804static void
e3bb37b5 4805optimize_imm (void)
29b0f896
AM
4806{
4807 char guess_suffix = 0;
4808 int op;
252b5132 4809
29b0f896
AM
4810 if (i.suffix)
4811 guess_suffix = i.suffix;
4812 else if (i.reg_operands)
4813 {
4814 /* Figure out a suffix from the last register operand specified.
4815 We can't do this properly yet, ie. excluding InOutPortReg,
4816 but the following works for instructions with immediates.
4817 In any case, we can't set i.suffix yet. */
4818 for (op = i.operands; --op >= 0;)
dc821c5f 4819 if (i.types[op].bitfield.reg && i.types[op].bitfield.byte)
7ab9ffdd 4820 {
40fb9820
L
4821 guess_suffix = BYTE_MNEM_SUFFIX;
4822 break;
4823 }
dc821c5f 4824 else if (i.types[op].bitfield.reg && i.types[op].bitfield.word)
252b5132 4825 {
40fb9820
L
4826 guess_suffix = WORD_MNEM_SUFFIX;
4827 break;
4828 }
dc821c5f 4829 else if (i.types[op].bitfield.reg && i.types[op].bitfield.dword)
40fb9820
L
4830 {
4831 guess_suffix = LONG_MNEM_SUFFIX;
4832 break;
4833 }
dc821c5f 4834 else if (i.types[op].bitfield.reg && i.types[op].bitfield.qword)
40fb9820
L
4835 {
4836 guess_suffix = QWORD_MNEM_SUFFIX;
29b0f896 4837 break;
252b5132 4838 }
29b0f896
AM
4839 }
4840 else if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
4841 guess_suffix = WORD_MNEM_SUFFIX;
4842
4843 for (op = i.operands; --op >= 0;)
40fb9820 4844 if (operand_type_check (i.types[op], imm))
29b0f896
AM
4845 {
4846 switch (i.op[op].imms->X_op)
252b5132 4847 {
29b0f896
AM
4848 case O_constant:
4849 /* If a suffix is given, this operand may be shortened. */
4850 switch (guess_suffix)
252b5132 4851 {
29b0f896 4852 case LONG_MNEM_SUFFIX:
40fb9820
L
4853 i.types[op].bitfield.imm32 = 1;
4854 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
4855 break;
4856 case WORD_MNEM_SUFFIX:
40fb9820
L
4857 i.types[op].bitfield.imm16 = 1;
4858 i.types[op].bitfield.imm32 = 1;
4859 i.types[op].bitfield.imm32s = 1;
4860 i.types[op].bitfield.imm64 = 1;
29b0f896
AM
4861 break;
4862 case BYTE_MNEM_SUFFIX:
40fb9820
L
4863 i.types[op].bitfield.imm8 = 1;
4864 i.types[op].bitfield.imm8s = 1;
4865 i.types[op].bitfield.imm16 = 1;
4866 i.types[op].bitfield.imm32 = 1;
4867 i.types[op].bitfield.imm32s = 1;
4868 i.types[op].bitfield.imm64 = 1;
29b0f896 4869 break;
252b5132 4870 }
252b5132 4871
29b0f896
AM
4872 /* If this operand is at most 16 bits, convert it
4873 to a signed 16 bit number before trying to see
4874 whether it will fit in an even smaller size.
4875 This allows a 16-bit operand such as $0xffe0 to
4876 be recognised as within Imm8S range. */
40fb9820 4877 if ((i.types[op].bitfield.imm16)
29b0f896 4878 && (i.op[op].imms->X_add_number & ~(offsetT) 0xffff) == 0)
252b5132 4879 {
29b0f896
AM
4880 i.op[op].imms->X_add_number =
4881 (((i.op[op].imms->X_add_number & 0xffff) ^ 0x8000) - 0x8000);
4882 }
a28def75
L
4883#ifdef BFD64
4884 /* Store 32-bit immediate in 64-bit for 64-bit BFD. */
40fb9820 4885 if ((i.types[op].bitfield.imm32)
29b0f896
AM
4886 && ((i.op[op].imms->X_add_number & ~(((offsetT) 2 << 31) - 1))
4887 == 0))
4888 {
4889 i.op[op].imms->X_add_number = ((i.op[op].imms->X_add_number
4890 ^ ((offsetT) 1 << 31))
4891 - ((offsetT) 1 << 31));
4892 }
a28def75 4893#endif
40fb9820 4894 i.types[op]
c6fb90c8
L
4895 = operand_type_or (i.types[op],
4896 smallest_imm_type (i.op[op].imms->X_add_number));
252b5132 4897
29b0f896
AM
4898 /* We must avoid matching of Imm32 templates when 64bit
4899 only immediate is available. */
4900 if (guess_suffix == QWORD_MNEM_SUFFIX)
40fb9820 4901 i.types[op].bitfield.imm32 = 0;
29b0f896 4902 break;
252b5132 4903
29b0f896
AM
4904 case O_absent:
4905 case O_register:
4906 abort ();
4907
4908 /* Symbols and expressions. */
4909 default:
9cd96992
JB
4910 /* Convert symbolic operand to proper sizes for matching, but don't
4911 prevent matching a set of insns that only supports sizes other
4912 than those matching the insn suffix. */
4913 {
40fb9820 4914 i386_operand_type mask, allowed;
d3ce72d0 4915 const insn_template *t;
9cd96992 4916
0dfbf9d7
L
4917 operand_type_set (&mask, 0);
4918 operand_type_set (&allowed, 0);
40fb9820 4919
4eed87de
AM
4920 for (t = current_templates->start;
4921 t < current_templates->end;
4922 ++t)
c6fb90c8
L
4923 allowed = operand_type_or (allowed,
4924 t->operand_types[op]);
9cd96992
JB
4925 switch (guess_suffix)
4926 {
4927 case QWORD_MNEM_SUFFIX:
40fb9820
L
4928 mask.bitfield.imm64 = 1;
4929 mask.bitfield.imm32s = 1;
9cd96992
JB
4930 break;
4931 case LONG_MNEM_SUFFIX:
40fb9820 4932 mask.bitfield.imm32 = 1;
9cd96992
JB
4933 break;
4934 case WORD_MNEM_SUFFIX:
40fb9820 4935 mask.bitfield.imm16 = 1;
9cd96992
JB
4936 break;
4937 case BYTE_MNEM_SUFFIX:
40fb9820 4938 mask.bitfield.imm8 = 1;
9cd96992
JB
4939 break;
4940 default:
9cd96992
JB
4941 break;
4942 }
c6fb90c8 4943 allowed = operand_type_and (mask, allowed);
0dfbf9d7 4944 if (!operand_type_all_zero (&allowed))
c6fb90c8 4945 i.types[op] = operand_type_and (i.types[op], mask);
9cd96992 4946 }
29b0f896 4947 break;
252b5132 4948 }
29b0f896
AM
4949 }
4950}
47926f60 4951
29b0f896
AM
4952/* Try to use the smallest displacement type too. */
4953static void
e3bb37b5 4954optimize_disp (void)
29b0f896
AM
4955{
4956 int op;
3e73aa7c 4957
29b0f896 4958 for (op = i.operands; --op >= 0;)
40fb9820 4959 if (operand_type_check (i.types[op], disp))
252b5132 4960 {
b300c311 4961 if (i.op[op].disps->X_op == O_constant)
252b5132 4962 {
91d6fa6a 4963 offsetT op_disp = i.op[op].disps->X_add_number;
29b0f896 4964
40fb9820 4965 if (i.types[op].bitfield.disp16
91d6fa6a 4966 && (op_disp & ~(offsetT) 0xffff) == 0)
b300c311
L
4967 {
4968 /* If this operand is at most 16 bits, convert
4969 to a signed 16 bit number and don't use 64bit
4970 displacement. */
91d6fa6a 4971 op_disp = (((op_disp & 0xffff) ^ 0x8000) - 0x8000);
40fb9820 4972 i.types[op].bitfield.disp64 = 0;
b300c311 4973 }
a28def75
L
4974#ifdef BFD64
4975 /* Optimize 64-bit displacement to 32-bit for 64-bit BFD. */
40fb9820 4976 if (i.types[op].bitfield.disp32
91d6fa6a 4977 && (op_disp & ~(((offsetT) 2 << 31) - 1)) == 0)
b300c311
L
4978 {
4979 /* If this operand is at most 32 bits, convert
4980 to a signed 32 bit number and don't use 64bit
4981 displacement. */
91d6fa6a
NC
4982 op_disp &= (((offsetT) 2 << 31) - 1);
4983 op_disp = (op_disp ^ ((offsetT) 1 << 31)) - ((addressT) 1 << 31);
40fb9820 4984 i.types[op].bitfield.disp64 = 0;
b300c311 4985 }
a28def75 4986#endif
91d6fa6a 4987 if (!op_disp && i.types[op].bitfield.baseindex)
b300c311 4988 {
40fb9820
L
4989 i.types[op].bitfield.disp8 = 0;
4990 i.types[op].bitfield.disp16 = 0;
4991 i.types[op].bitfield.disp32 = 0;
4992 i.types[op].bitfield.disp32s = 0;
4993 i.types[op].bitfield.disp64 = 0;
b300c311
L
4994 i.op[op].disps = 0;
4995 i.disp_operands--;
4996 }
4997 else if (flag_code == CODE_64BIT)
4998 {
91d6fa6a 4999 if (fits_in_signed_long (op_disp))
28a9d8f5 5000 {
40fb9820
L
5001 i.types[op].bitfield.disp64 = 0;
5002 i.types[op].bitfield.disp32s = 1;
28a9d8f5 5003 }
0e1147d9 5004 if (i.prefix[ADDR_PREFIX]
91d6fa6a 5005 && fits_in_unsigned_long (op_disp))
40fb9820 5006 i.types[op].bitfield.disp32 = 1;
b300c311 5007 }
40fb9820
L
5008 if ((i.types[op].bitfield.disp32
5009 || i.types[op].bitfield.disp32s
5010 || i.types[op].bitfield.disp16)
b5014f7a 5011 && fits_in_disp8 (op_disp))
40fb9820 5012 i.types[op].bitfield.disp8 = 1;
252b5132 5013 }
67a4f2b7
AO
5014 else if (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
5015 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL)
5016 {
5017 fix_new_exp (frag_now, frag_more (0) - frag_now->fr_literal, 0,
5018 i.op[op].disps, 0, i.reloc[op]);
40fb9820
L
5019 i.types[op].bitfield.disp8 = 0;
5020 i.types[op].bitfield.disp16 = 0;
5021 i.types[op].bitfield.disp32 = 0;
5022 i.types[op].bitfield.disp32s = 0;
5023 i.types[op].bitfield.disp64 = 0;
67a4f2b7
AO
5024 }
5025 else
b300c311 5026 /* We only support 64bit displacement on constants. */
40fb9820 5027 i.types[op].bitfield.disp64 = 0;
252b5132 5028 }
29b0f896
AM
5029}
5030
4a1b91ea
L
5031/* Return 1 if there is a match in broadcast bytes between operand
5032 GIVEN and instruction template T. */
5033
5034static INLINE int
5035match_broadcast_size (const insn_template *t, unsigned int given)
5036{
5037 return ((t->opcode_modifier.broadcast == BYTE_BROADCAST
5038 && i.types[given].bitfield.byte)
5039 || (t->opcode_modifier.broadcast == WORD_BROADCAST
5040 && i.types[given].bitfield.word)
5041 || (t->opcode_modifier.broadcast == DWORD_BROADCAST
5042 && i.types[given].bitfield.dword)
5043 || (t->opcode_modifier.broadcast == QWORD_BROADCAST
5044 && i.types[given].bitfield.qword));
5045}
5046
6c30d220
L
5047/* Check if operands are valid for the instruction. */
5048
5049static int
5050check_VecOperands (const insn_template *t)
5051{
43234a1e 5052 unsigned int op;
e2195274
JB
5053 i386_cpu_flags cpu;
5054 static const i386_cpu_flags avx512 = CPU_ANY_AVX512F_FLAGS;
5055
5056 /* Templates allowing for ZMMword as well as YMMword and/or XMMword for
5057 any one operand are implicity requiring AVX512VL support if the actual
5058 operand size is YMMword or XMMword. Since this function runs after
5059 template matching, there's no need to check for YMMword/XMMword in
5060 the template. */
5061 cpu = cpu_flags_and (t->cpu_flags, avx512);
5062 if (!cpu_flags_all_zero (&cpu)
5063 && !t->cpu_flags.bitfield.cpuavx512vl
5064 && !cpu_arch_flags.bitfield.cpuavx512vl)
5065 {
5066 for (op = 0; op < t->operands; ++op)
5067 {
5068 if (t->operand_types[op].bitfield.zmmword
5069 && (i.types[op].bitfield.ymmword
5070 || i.types[op].bitfield.xmmword))
5071 {
5072 i.error = unsupported;
5073 return 1;
5074 }
5075 }
5076 }
43234a1e 5077
6c30d220
L
5078 /* Without VSIB byte, we can't have a vector register for index. */
5079 if (!t->opcode_modifier.vecsib
5080 && i.index_reg
1b54b8d7
JB
5081 && (i.index_reg->reg_type.bitfield.xmmword
5082 || i.index_reg->reg_type.bitfield.ymmword
5083 || i.index_reg->reg_type.bitfield.zmmword))
6c30d220
L
5084 {
5085 i.error = unsupported_vector_index_register;
5086 return 1;
5087 }
5088
ad8ecc81
MZ
5089 /* Check if default mask is allowed. */
5090 if (t->opcode_modifier.nodefmask
5091 && (!i.mask || i.mask->mask->reg_num == 0))
5092 {
5093 i.error = no_default_mask;
5094 return 1;
5095 }
5096
7bab8ab5
JB
5097 /* For VSIB byte, we need a vector register for index, and all vector
5098 registers must be distinct. */
5099 if (t->opcode_modifier.vecsib)
5100 {
5101 if (!i.index_reg
6c30d220 5102 || !((t->opcode_modifier.vecsib == VecSIB128
1b54b8d7 5103 && i.index_reg->reg_type.bitfield.xmmword)
6c30d220 5104 || (t->opcode_modifier.vecsib == VecSIB256
1b54b8d7 5105 && i.index_reg->reg_type.bitfield.ymmword)
43234a1e 5106 || (t->opcode_modifier.vecsib == VecSIB512
1b54b8d7 5107 && i.index_reg->reg_type.bitfield.zmmword)))
7bab8ab5
JB
5108 {
5109 i.error = invalid_vsib_address;
5110 return 1;
5111 }
5112
43234a1e
L
5113 gas_assert (i.reg_operands == 2 || i.mask);
5114 if (i.reg_operands == 2 && !i.mask)
5115 {
1b54b8d7
JB
5116 gas_assert (i.types[0].bitfield.regsimd);
5117 gas_assert (i.types[0].bitfield.xmmword
5118 || i.types[0].bitfield.ymmword);
5119 gas_assert (i.types[2].bitfield.regsimd);
5120 gas_assert (i.types[2].bitfield.xmmword
5121 || i.types[2].bitfield.ymmword);
43234a1e
L
5122 if (operand_check == check_none)
5123 return 0;
5124 if (register_number (i.op[0].regs)
5125 != register_number (i.index_reg)
5126 && register_number (i.op[2].regs)
5127 != register_number (i.index_reg)
5128 && register_number (i.op[0].regs)
5129 != register_number (i.op[2].regs))
5130 return 0;
5131 if (operand_check == check_error)
5132 {
5133 i.error = invalid_vector_register_set;
5134 return 1;
5135 }
5136 as_warn (_("mask, index, and destination registers should be distinct"));
5137 }
8444f82a
MZ
5138 else if (i.reg_operands == 1 && i.mask)
5139 {
1b54b8d7
JB
5140 if (i.types[1].bitfield.regsimd
5141 && (i.types[1].bitfield.xmmword
5142 || i.types[1].bitfield.ymmword
5143 || i.types[1].bitfield.zmmword)
8444f82a
MZ
5144 && (register_number (i.op[1].regs)
5145 == register_number (i.index_reg)))
5146 {
5147 if (operand_check == check_error)
5148 {
5149 i.error = invalid_vector_register_set;
5150 return 1;
5151 }
5152 if (operand_check != check_none)
5153 as_warn (_("index and destination registers should be distinct"));
5154 }
5155 }
43234a1e 5156 }
7bab8ab5 5157
43234a1e
L
5158 /* Check if broadcast is supported by the instruction and is applied
5159 to the memory operand. */
5160 if (i.broadcast)
5161 {
8e6e0792 5162 i386_operand_type type, overlap;
43234a1e
L
5163
5164 /* Check if specified broadcast is supported in this instruction,
4a1b91ea 5165 and its broadcast bytes match the memory operand. */
32546502 5166 op = i.broadcast->operand;
8e6e0792 5167 if (!t->opcode_modifier.broadcast
32546502 5168 || !i.types[op].bitfield.mem
c39e5b26 5169 || (!i.types[op].bitfield.unspecified
4a1b91ea 5170 && !match_broadcast_size (t, op)))
43234a1e
L
5171 {
5172 bad_broadcast:
5173 i.error = unsupported_broadcast;
5174 return 1;
5175 }
8e6e0792 5176
4a1b91ea
L
5177 i.broadcast->bytes = ((1 << (t->opcode_modifier.broadcast - 1))
5178 * i.broadcast->type);
8e6e0792 5179 operand_type_set (&type, 0);
4a1b91ea 5180 switch (i.broadcast->bytes)
8e6e0792 5181 {
4a1b91ea
L
5182 case 2:
5183 type.bitfield.word = 1;
5184 break;
5185 case 4:
5186 type.bitfield.dword = 1;
5187 break;
8e6e0792
JB
5188 case 8:
5189 type.bitfield.qword = 1;
5190 break;
5191 case 16:
5192 type.bitfield.xmmword = 1;
5193 break;
5194 case 32:
5195 type.bitfield.ymmword = 1;
5196 break;
5197 case 64:
5198 type.bitfield.zmmword = 1;
5199 break;
5200 default:
5201 goto bad_broadcast;
5202 }
5203
5204 overlap = operand_type_and (type, t->operand_types[op]);
5205 if (operand_type_all_zero (&overlap))
5206 goto bad_broadcast;
5207
5208 if (t->opcode_modifier.checkregsize)
5209 {
5210 unsigned int j;
5211
e2195274 5212 type.bitfield.baseindex = 1;
8e6e0792
JB
5213 for (j = 0; j < i.operands; ++j)
5214 {
5215 if (j != op
5216 && !operand_type_register_match(i.types[j],
5217 t->operand_types[j],
5218 type,
5219 t->operand_types[op]))
5220 goto bad_broadcast;
5221 }
5222 }
43234a1e
L
5223 }
5224 /* If broadcast is supported in this instruction, we need to check if
5225 operand of one-element size isn't specified without broadcast. */
5226 else if (t->opcode_modifier.broadcast && i.mem_operands)
5227 {
5228 /* Find memory operand. */
5229 for (op = 0; op < i.operands; op++)
5230 if (operand_type_check (i.types[op], anymem))
5231 break;
5232 gas_assert (op < i.operands);
5233 /* Check size of the memory operand. */
4a1b91ea 5234 if (match_broadcast_size (t, op))
43234a1e
L
5235 {
5236 i.error = broadcast_needed;
5237 return 1;
5238 }
5239 }
c39e5b26
JB
5240 else
5241 op = MAX_OPERANDS - 1; /* Avoid uninitialized variable warning. */
43234a1e
L
5242
5243 /* Check if requested masking is supported. */
ae2387fe 5244 if (i.mask)
43234a1e 5245 {
ae2387fe
JB
5246 switch (t->opcode_modifier.masking)
5247 {
5248 case BOTH_MASKING:
5249 break;
5250 case MERGING_MASKING:
5251 if (i.mask->zeroing)
5252 {
5253 case 0:
5254 i.error = unsupported_masking;
5255 return 1;
5256 }
5257 break;
5258 case DYNAMIC_MASKING:
5259 /* Memory destinations allow only merging masking. */
5260 if (i.mask->zeroing && i.mem_operands)
5261 {
5262 /* Find memory operand. */
5263 for (op = 0; op < i.operands; op++)
5264 if (i.types[op].bitfield.mem)
5265 break;
5266 gas_assert (op < i.operands);
5267 if (op == i.operands - 1)
5268 {
5269 i.error = unsupported_masking;
5270 return 1;
5271 }
5272 }
5273 break;
5274 default:
5275 abort ();
5276 }
43234a1e
L
5277 }
5278
5279 /* Check if masking is applied to dest operand. */
5280 if (i.mask && (i.mask->operand != (int) (i.operands - 1)))
5281 {
5282 i.error = mask_not_on_destination;
5283 return 1;
5284 }
5285
43234a1e
L
5286 /* Check RC/SAE. */
5287 if (i.rounding)
5288 {
5289 if ((i.rounding->type != saeonly
5290 && !t->opcode_modifier.staticrounding)
5291 || (i.rounding->type == saeonly
5292 && (t->opcode_modifier.staticrounding
5293 || !t->opcode_modifier.sae)))
5294 {
5295 i.error = unsupported_rc_sae;
5296 return 1;
5297 }
5298 /* If the instruction has several immediate operands and one of
5299 them is rounding, the rounding operand should be the last
5300 immediate operand. */
5301 if (i.imm_operands > 1
5302 && i.rounding->operand != (int) (i.imm_operands - 1))
7bab8ab5 5303 {
43234a1e 5304 i.error = rc_sae_operand_not_last_imm;
7bab8ab5
JB
5305 return 1;
5306 }
6c30d220
L
5307 }
5308
43234a1e 5309 /* Check vector Disp8 operand. */
b5014f7a
JB
5310 if (t->opcode_modifier.disp8memshift
5311 && i.disp_encoding != disp_encoding_32bit)
43234a1e
L
5312 {
5313 if (i.broadcast)
4a1b91ea 5314 i.memshift = t->opcode_modifier.broadcast - 1;
7091c612 5315 else if (t->opcode_modifier.disp8memshift != DISP8_SHIFT_VL)
43234a1e 5316 i.memshift = t->opcode_modifier.disp8memshift;
7091c612
JB
5317 else
5318 {
5319 const i386_operand_type *type = NULL;
5320
5321 i.memshift = 0;
5322 for (op = 0; op < i.operands; op++)
5323 if (operand_type_check (i.types[op], anymem))
5324 {
4174bfff
JB
5325 if (t->opcode_modifier.evex == EVEXLIG)
5326 i.memshift = 2 + (i.suffix == QWORD_MNEM_SUFFIX);
5327 else if (t->operand_types[op].bitfield.xmmword
5328 + t->operand_types[op].bitfield.ymmword
5329 + t->operand_types[op].bitfield.zmmword <= 1)
7091c612
JB
5330 type = &t->operand_types[op];
5331 else if (!i.types[op].bitfield.unspecified)
5332 type = &i.types[op];
5333 }
4174bfff
JB
5334 else if (i.types[op].bitfield.regsimd
5335 && t->opcode_modifier.evex != EVEXLIG)
7091c612
JB
5336 {
5337 if (i.types[op].bitfield.zmmword)
5338 i.memshift = 6;
5339 else if (i.types[op].bitfield.ymmword && i.memshift < 5)
5340 i.memshift = 5;
5341 else if (i.types[op].bitfield.xmmword && i.memshift < 4)
5342 i.memshift = 4;
5343 }
5344
5345 if (type)
5346 {
5347 if (type->bitfield.zmmword)
5348 i.memshift = 6;
5349 else if (type->bitfield.ymmword)
5350 i.memshift = 5;
5351 else if (type->bitfield.xmmword)
5352 i.memshift = 4;
5353 }
5354
5355 /* For the check in fits_in_disp8(). */
5356 if (i.memshift == 0)
5357 i.memshift = -1;
5358 }
43234a1e
L
5359
5360 for (op = 0; op < i.operands; op++)
5361 if (operand_type_check (i.types[op], disp)
5362 && i.op[op].disps->X_op == O_constant)
5363 {
b5014f7a 5364 if (fits_in_disp8 (i.op[op].disps->X_add_number))
43234a1e 5365 {
b5014f7a
JB
5366 i.types[op].bitfield.disp8 = 1;
5367 return 0;
43234a1e 5368 }
b5014f7a 5369 i.types[op].bitfield.disp8 = 0;
43234a1e
L
5370 }
5371 }
b5014f7a
JB
5372
5373 i.memshift = 0;
43234a1e 5374
6c30d220
L
5375 return 0;
5376}
5377
43f3e2ee 5378/* Check if operands are valid for the instruction. Update VEX
a683cc34
SP
5379 operand types. */
5380
5381static int
5382VEX_check_operands (const insn_template *t)
5383{
86fa6981 5384 if (i.vec_encoding == vex_encoding_evex)
43234a1e 5385 {
86fa6981 5386 /* This instruction must be encoded with EVEX prefix. */
e771e7c9 5387 if (!is_evex_encoding (t))
86fa6981
L
5388 {
5389 i.error = unsupported;
5390 return 1;
5391 }
5392 return 0;
43234a1e
L
5393 }
5394
a683cc34 5395 if (!t->opcode_modifier.vex)
86fa6981
L
5396 {
5397 /* This instruction template doesn't have VEX prefix. */
5398 if (i.vec_encoding != vex_encoding_default)
5399 {
5400 i.error = unsupported;
5401 return 1;
5402 }
5403 return 0;
5404 }
a683cc34
SP
5405
5406 /* Only check VEX_Imm4, which must be the first operand. */
5407 if (t->operand_types[0].bitfield.vec_imm4)
5408 {
5409 if (i.op[0].imms->X_op != O_constant
5410 || !fits_in_imm4 (i.op[0].imms->X_add_number))
891edac4 5411 {
a65babc9 5412 i.error = bad_imm4;
891edac4
L
5413 return 1;
5414 }
a683cc34
SP
5415
5416 /* Turn off Imm8 so that update_imm won't complain. */
5417 i.types[0] = vec_imm4;
5418 }
5419
5420 return 0;
5421}
5422
d3ce72d0 5423static const insn_template *
83b16ac6 5424match_template (char mnem_suffix)
29b0f896
AM
5425{
5426 /* Points to template once we've found it. */
d3ce72d0 5427 const insn_template *t;
40fb9820 5428 i386_operand_type overlap0, overlap1, overlap2, overlap3;
c0f3af97 5429 i386_operand_type overlap4;
29b0f896 5430 unsigned int found_reverse_match;
83b16ac6 5431 i386_opcode_modifier suffix_check, mnemsuf_check;
40fb9820 5432 i386_operand_type operand_types [MAX_OPERANDS];
539e75ad 5433 int addr_prefix_disp;
a5c311ca 5434 unsigned int j;
3ac21baa 5435 unsigned int found_cpu_match, size_match;
45664ddb 5436 unsigned int check_register;
5614d22c 5437 enum i386_error specific_error = 0;
29b0f896 5438
c0f3af97
L
5439#if MAX_OPERANDS != 5
5440# error "MAX_OPERANDS must be 5."
f48ff2ae
L
5441#endif
5442
29b0f896 5443 found_reverse_match = 0;
539e75ad 5444 addr_prefix_disp = -1;
40fb9820
L
5445
5446 memset (&suffix_check, 0, sizeof (suffix_check));
e2195274
JB
5447 if (intel_syntax && i.broadcast)
5448 /* nothing */;
5449 else if (i.suffix == BYTE_MNEM_SUFFIX)
40fb9820
L
5450 suffix_check.no_bsuf = 1;
5451 else if (i.suffix == WORD_MNEM_SUFFIX)
5452 suffix_check.no_wsuf = 1;
5453 else if (i.suffix == SHORT_MNEM_SUFFIX)
5454 suffix_check.no_ssuf = 1;
5455 else if (i.suffix == LONG_MNEM_SUFFIX)
5456 suffix_check.no_lsuf = 1;
5457 else if (i.suffix == QWORD_MNEM_SUFFIX)
5458 suffix_check.no_qsuf = 1;
5459 else if (i.suffix == LONG_DOUBLE_MNEM_SUFFIX)
7ce189b3 5460 suffix_check.no_ldsuf = 1;
29b0f896 5461
83b16ac6
JB
5462 memset (&mnemsuf_check, 0, sizeof (mnemsuf_check));
5463 if (intel_syntax)
5464 {
5465 switch (mnem_suffix)
5466 {
5467 case BYTE_MNEM_SUFFIX: mnemsuf_check.no_bsuf = 1; break;
5468 case WORD_MNEM_SUFFIX: mnemsuf_check.no_wsuf = 1; break;
5469 case SHORT_MNEM_SUFFIX: mnemsuf_check.no_ssuf = 1; break;
5470 case LONG_MNEM_SUFFIX: mnemsuf_check.no_lsuf = 1; break;
5471 case QWORD_MNEM_SUFFIX: mnemsuf_check.no_qsuf = 1; break;
5472 }
5473 }
5474
01559ecc
L
5475 /* Must have right number of operands. */
5476 i.error = number_of_operands_mismatch;
5477
45aa61fe 5478 for (t = current_templates->start; t < current_templates->end; t++)
29b0f896 5479 {
539e75ad
L
5480 addr_prefix_disp = -1;
5481
29b0f896
AM
5482 if (i.operands != t->operands)
5483 continue;
5484
50aecf8c 5485 /* Check processor support. */
a65babc9 5486 i.error = unsupported;
c0f3af97
L
5487 found_cpu_match = (cpu_flags_match (t)
5488 == CPU_FLAGS_PERFECT_MATCH);
50aecf8c
L
5489 if (!found_cpu_match)
5490 continue;
5491
e1d4d893 5492 /* Check AT&T mnemonic. */
a65babc9 5493 i.error = unsupported_with_intel_mnemonic;
e1d4d893 5494 if (intel_mnemonic && t->opcode_modifier.attmnemonic)
1efbbeb4
L
5495 continue;
5496
e92bae62 5497 /* Check AT&T/Intel syntax and Intel64/AMD64 ISA. */
a65babc9 5498 i.error = unsupported_syntax;
5c07affc 5499 if ((intel_syntax && t->opcode_modifier.attsyntax)
e92bae62
L
5500 || (!intel_syntax && t->opcode_modifier.intelsyntax)
5501 || (intel64 && t->opcode_modifier.amd64)
5502 || (!intel64 && t->opcode_modifier.intel64))
1efbbeb4
L
5503 continue;
5504
20592a94 5505 /* Check the suffix, except for some instructions in intel mode. */
a65babc9 5506 i.error = invalid_instruction_suffix;
567e4e96
L
5507 if ((!intel_syntax || !t->opcode_modifier.ignoresize)
5508 && ((t->opcode_modifier.no_bsuf && suffix_check.no_bsuf)
5509 || (t->opcode_modifier.no_wsuf && suffix_check.no_wsuf)
5510 || (t->opcode_modifier.no_lsuf && suffix_check.no_lsuf)
5511 || (t->opcode_modifier.no_ssuf && suffix_check.no_ssuf)
5512 || (t->opcode_modifier.no_qsuf && suffix_check.no_qsuf)
5513 || (t->opcode_modifier.no_ldsuf && suffix_check.no_ldsuf)))
29b0f896 5514 continue;
83b16ac6
JB
5515 /* In Intel mode all mnemonic suffixes must be explicitly allowed. */
5516 if ((t->opcode_modifier.no_bsuf && mnemsuf_check.no_bsuf)
5517 || (t->opcode_modifier.no_wsuf && mnemsuf_check.no_wsuf)
5518 || (t->opcode_modifier.no_lsuf && mnemsuf_check.no_lsuf)
5519 || (t->opcode_modifier.no_ssuf && mnemsuf_check.no_ssuf)
5520 || (t->opcode_modifier.no_qsuf && mnemsuf_check.no_qsuf)
5521 || (t->opcode_modifier.no_ldsuf && mnemsuf_check.no_ldsuf))
5522 continue;
29b0f896 5523
3ac21baa
JB
5524 size_match = operand_size_match (t);
5525 if (!size_match)
7d5e4556 5526 continue;
539e75ad 5527
5c07affc
L
5528 for (j = 0; j < MAX_OPERANDS; j++)
5529 operand_types[j] = t->operand_types[j];
5530
45aa61fe
AM
5531 /* In general, don't allow 64-bit operands in 32-bit mode. */
5532 if (i.suffix == QWORD_MNEM_SUFFIX
5533 && flag_code != CODE_64BIT
5534 && (intel_syntax
40fb9820 5535 ? (!t->opcode_modifier.ignoresize
625cbd7a 5536 && !t->opcode_modifier.broadcast
45aa61fe
AM
5537 && !intel_float_operand (t->name))
5538 : intel_float_operand (t->name) != 2)
40fb9820 5539 && ((!operand_types[0].bitfield.regmmx
1b54b8d7 5540 && !operand_types[0].bitfield.regsimd)
40fb9820 5541 || (!operand_types[t->operands > 1].bitfield.regmmx
1b54b8d7 5542 && !operand_types[t->operands > 1].bitfield.regsimd))
45aa61fe
AM
5543 && (t->base_opcode != 0x0fc7
5544 || t->extension_opcode != 1 /* cmpxchg8b */))
5545 continue;
5546
192dc9c6
JB
5547 /* In general, don't allow 32-bit operands on pre-386. */
5548 else if (i.suffix == LONG_MNEM_SUFFIX
5549 && !cpu_arch_flags.bitfield.cpui386
5550 && (intel_syntax
5551 ? (!t->opcode_modifier.ignoresize
5552 && !intel_float_operand (t->name))
5553 : intel_float_operand (t->name) != 2)
5554 && ((!operand_types[0].bitfield.regmmx
1b54b8d7 5555 && !operand_types[0].bitfield.regsimd)
192dc9c6 5556 || (!operand_types[t->operands > 1].bitfield.regmmx
1b54b8d7 5557 && !operand_types[t->operands > 1].bitfield.regsimd)))
192dc9c6
JB
5558 continue;
5559
29b0f896 5560 /* Do not verify operands when there are none. */
50aecf8c 5561 else
29b0f896 5562 {
c6fb90c8 5563 if (!t->operands)
2dbab7d5
L
5564 /* We've found a match; break out of loop. */
5565 break;
29b0f896 5566 }
252b5132 5567
539e75ad
L
5568 /* Address size prefix will turn Disp64/Disp32/Disp16 operand
5569 into Disp32/Disp16/Disp32 operand. */
5570 if (i.prefix[ADDR_PREFIX] != 0)
5571 {
40fb9820 5572 /* There should be only one Disp operand. */
539e75ad
L
5573 switch (flag_code)
5574 {
5575 case CODE_16BIT:
40fb9820
L
5576 for (j = 0; j < MAX_OPERANDS; j++)
5577 {
5578 if (operand_types[j].bitfield.disp16)
5579 {
5580 addr_prefix_disp = j;
5581 operand_types[j].bitfield.disp32 = 1;
5582 operand_types[j].bitfield.disp16 = 0;
5583 break;
5584 }
5585 }
539e75ad
L
5586 break;
5587 case CODE_32BIT:
40fb9820
L
5588 for (j = 0; j < MAX_OPERANDS; j++)
5589 {
5590 if (operand_types[j].bitfield.disp32)
5591 {
5592 addr_prefix_disp = j;
5593 operand_types[j].bitfield.disp32 = 0;
5594 operand_types[j].bitfield.disp16 = 1;
5595 break;
5596 }
5597 }
539e75ad
L
5598 break;
5599 case CODE_64BIT:
40fb9820
L
5600 for (j = 0; j < MAX_OPERANDS; j++)
5601 {
5602 if (operand_types[j].bitfield.disp64)
5603 {
5604 addr_prefix_disp = j;
5605 operand_types[j].bitfield.disp64 = 0;
5606 operand_types[j].bitfield.disp32 = 1;
5607 break;
5608 }
5609 }
539e75ad
L
5610 break;
5611 }
539e75ad
L
5612 }
5613
02a86693
L
5614 /* Force 0x8b encoding for "mov foo@GOT, %eax". */
5615 if (i.reloc[0] == BFD_RELOC_386_GOT32 && t->base_opcode == 0xa0)
5616 continue;
5617
56ffb741 5618 /* We check register size if needed. */
e2195274
JB
5619 if (t->opcode_modifier.checkregsize)
5620 {
5621 check_register = (1 << t->operands) - 1;
5622 if (i.broadcast)
5623 check_register &= ~(1 << i.broadcast->operand);
5624 }
5625 else
5626 check_register = 0;
5627
c6fb90c8 5628 overlap0 = operand_type_and (i.types[0], operand_types[0]);
29b0f896
AM
5629 switch (t->operands)
5630 {
5631 case 1:
40fb9820 5632 if (!operand_type_match (overlap0, i.types[0]))
29b0f896
AM
5633 continue;
5634 break;
5635 case 2:
33eaf5de 5636 /* xchg %eax, %eax is a special case. It is an alias for nop
8b38ad71
L
5637 only in 32bit mode and we can use opcode 0x90. In 64bit
5638 mode, we can't use 0x90 for xchg %eax, %eax since it should
5639 zero-extend %eax to %rax. */
5640 if (flag_code == CODE_64BIT
5641 && t->base_opcode == 0x90
0dfbf9d7
L
5642 && operand_type_equal (&i.types [0], &acc32)
5643 && operand_type_equal (&i.types [1], &acc32))
8b38ad71 5644 continue;
1212781b
JB
5645 /* xrelease mov %eax, <disp> is another special case. It must not
5646 match the accumulator-only encoding of mov. */
5647 if (flag_code != CODE_64BIT
5648 && i.hle_prefix
5649 && t->base_opcode == 0xa0
5650 && i.types[0].bitfield.acc
5651 && operand_type_check (i.types[1], anymem))
5652 continue;
3ac21baa
JB
5653 if (!(size_match & MATCH_STRAIGHT))
5654 goto check_reverse;
86fa6981
L
5655 /* If we want store form, we reverse direction of operands. */
5656 if (i.dir_encoding == dir_encoding_store
5657 && t->opcode_modifier.d)
5658 goto check_reverse;
1a0670f3 5659 /* Fall through. */
b6169b20 5660
29b0f896 5661 case 3:
86fa6981
L
5662 /* If we want store form, we skip the current load. */
5663 if (i.dir_encoding == dir_encoding_store
5664 && i.mem_operands == 0
5665 && t->opcode_modifier.load)
fa99fab2 5666 continue;
1a0670f3 5667 /* Fall through. */
f48ff2ae 5668 case 4:
c0f3af97 5669 case 5:
c6fb90c8 5670 overlap1 = operand_type_and (i.types[1], operand_types[1]);
40fb9820
L
5671 if (!operand_type_match (overlap0, i.types[0])
5672 || !operand_type_match (overlap1, i.types[1])
e2195274 5673 || ((check_register & 3) == 3
dc821c5f 5674 && !operand_type_register_match (i.types[0],
40fb9820 5675 operand_types[0],
dc821c5f 5676 i.types[1],
40fb9820 5677 operand_types[1])))
29b0f896
AM
5678 {
5679 /* Check if other direction is valid ... */
38e314eb 5680 if (!t->opcode_modifier.d)
29b0f896
AM
5681 continue;
5682
b6169b20 5683check_reverse:
3ac21baa
JB
5684 if (!(size_match & MATCH_REVERSE))
5685 continue;
29b0f896 5686 /* Try reversing direction of operands. */
c6fb90c8
L
5687 overlap0 = operand_type_and (i.types[0], operand_types[1]);
5688 overlap1 = operand_type_and (i.types[1], operand_types[0]);
40fb9820
L
5689 if (!operand_type_match (overlap0, i.types[0])
5690 || !operand_type_match (overlap1, i.types[1])
45664ddb 5691 || (check_register
dc821c5f 5692 && !operand_type_register_match (i.types[0],
45664ddb 5693 operand_types[1],
45664ddb
L
5694 i.types[1],
5695 operand_types[0])))
29b0f896
AM
5696 {
5697 /* Does not match either direction. */
5698 continue;
5699 }
38e314eb 5700 /* found_reverse_match holds which of D or FloatR
29b0f896 5701 we've found. */
38e314eb
JB
5702 if (!t->opcode_modifier.d)
5703 found_reverse_match = 0;
5704 else if (operand_types[0].bitfield.tbyte)
8a2ed489
L
5705 found_reverse_match = Opcode_FloatD;
5706 else
38e314eb 5707 found_reverse_match = Opcode_D;
40fb9820 5708 if (t->opcode_modifier.floatr)
8a2ed489 5709 found_reverse_match |= Opcode_FloatR;
29b0f896 5710 }
f48ff2ae 5711 else
29b0f896 5712 {
f48ff2ae 5713 /* Found a forward 2 operand match here. */
d1cbb4db
L
5714 switch (t->operands)
5715 {
c0f3af97
L
5716 case 5:
5717 overlap4 = operand_type_and (i.types[4],
5718 operand_types[4]);
1a0670f3 5719 /* Fall through. */
d1cbb4db 5720 case 4:
c6fb90c8
L
5721 overlap3 = operand_type_and (i.types[3],
5722 operand_types[3]);
1a0670f3 5723 /* Fall through. */
d1cbb4db 5724 case 3:
c6fb90c8
L
5725 overlap2 = operand_type_and (i.types[2],
5726 operand_types[2]);
d1cbb4db
L
5727 break;
5728 }
29b0f896 5729
f48ff2ae
L
5730 switch (t->operands)
5731 {
c0f3af97
L
5732 case 5:
5733 if (!operand_type_match (overlap4, i.types[4])
dc821c5f 5734 || !operand_type_register_match (i.types[3],
c0f3af97 5735 operand_types[3],
c0f3af97
L
5736 i.types[4],
5737 operand_types[4]))
5738 continue;
1a0670f3 5739 /* Fall through. */
f48ff2ae 5740 case 4:
40fb9820 5741 if (!operand_type_match (overlap3, i.types[3])
e2195274
JB
5742 || ((check_register & 0xa) == 0xa
5743 && !operand_type_register_match (i.types[1],
f7768225
JB
5744 operand_types[1],
5745 i.types[3],
e2195274
JB
5746 operand_types[3]))
5747 || ((check_register & 0xc) == 0xc
5748 && !operand_type_register_match (i.types[2],
5749 operand_types[2],
5750 i.types[3],
5751 operand_types[3])))
f48ff2ae 5752 continue;
1a0670f3 5753 /* Fall through. */
f48ff2ae
L
5754 case 3:
5755 /* Here we make use of the fact that there are no
23e42951 5756 reverse match 3 operand instructions. */
40fb9820 5757 if (!operand_type_match (overlap2, i.types[2])
e2195274
JB
5758 || ((check_register & 5) == 5
5759 && !operand_type_register_match (i.types[0],
23e42951
JB
5760 operand_types[0],
5761 i.types[2],
e2195274
JB
5762 operand_types[2]))
5763 || ((check_register & 6) == 6
5764 && !operand_type_register_match (i.types[1],
5765 operand_types[1],
5766 i.types[2],
5767 operand_types[2])))
f48ff2ae
L
5768 continue;
5769 break;
5770 }
29b0f896 5771 }
f48ff2ae 5772 /* Found either forward/reverse 2, 3 or 4 operand match here:
29b0f896
AM
5773 slip through to break. */
5774 }
3629bb00 5775 if (!found_cpu_match)
29b0f896
AM
5776 {
5777 found_reverse_match = 0;
5778 continue;
5779 }
c0f3af97 5780
5614d22c
JB
5781 /* Check if vector and VEX operands are valid. */
5782 if (check_VecOperands (t) || VEX_check_operands (t))
5783 {
5784 specific_error = i.error;
5785 continue;
5786 }
a683cc34 5787
29b0f896
AM
5788 /* We've found a match; break out of loop. */
5789 break;
5790 }
5791
5792 if (t == current_templates->end)
5793 {
5794 /* We found no match. */
a65babc9 5795 const char *err_msg;
5614d22c 5796 switch (specific_error ? specific_error : i.error)
a65babc9
L
5797 {
5798 default:
5799 abort ();
86e026a4 5800 case operand_size_mismatch:
a65babc9
L
5801 err_msg = _("operand size mismatch");
5802 break;
5803 case operand_type_mismatch:
5804 err_msg = _("operand type mismatch");
5805 break;
5806 case register_type_mismatch:
5807 err_msg = _("register type mismatch");
5808 break;
5809 case number_of_operands_mismatch:
5810 err_msg = _("number of operands mismatch");
5811 break;
5812 case invalid_instruction_suffix:
5813 err_msg = _("invalid instruction suffix");
5814 break;
5815 case bad_imm4:
4a2608e3 5816 err_msg = _("constant doesn't fit in 4 bits");
a65babc9 5817 break;
a65babc9
L
5818 case unsupported_with_intel_mnemonic:
5819 err_msg = _("unsupported with Intel mnemonic");
5820 break;
5821 case unsupported_syntax:
5822 err_msg = _("unsupported syntax");
5823 break;
5824 case unsupported:
35262a23 5825 as_bad (_("unsupported instruction `%s'"),
10efe3f6
L
5826 current_templates->start->name);
5827 return NULL;
6c30d220
L
5828 case invalid_vsib_address:
5829 err_msg = _("invalid VSIB address");
5830 break;
7bab8ab5
JB
5831 case invalid_vector_register_set:
5832 err_msg = _("mask, index, and destination registers must be distinct");
5833 break;
6c30d220
L
5834 case unsupported_vector_index_register:
5835 err_msg = _("unsupported vector index register");
5836 break;
43234a1e
L
5837 case unsupported_broadcast:
5838 err_msg = _("unsupported broadcast");
5839 break;
43234a1e
L
5840 case broadcast_needed:
5841 err_msg = _("broadcast is needed for operand of such type");
5842 break;
5843 case unsupported_masking:
5844 err_msg = _("unsupported masking");
5845 break;
5846 case mask_not_on_destination:
5847 err_msg = _("mask not on destination operand");
5848 break;
5849 case no_default_mask:
5850 err_msg = _("default mask isn't allowed");
5851 break;
5852 case unsupported_rc_sae:
5853 err_msg = _("unsupported static rounding/sae");
5854 break;
5855 case rc_sae_operand_not_last_imm:
5856 if (intel_syntax)
5857 err_msg = _("RC/SAE operand must precede immediate operands");
5858 else
5859 err_msg = _("RC/SAE operand must follow immediate operands");
5860 break;
5861 case invalid_register_operand:
5862 err_msg = _("invalid register operand");
5863 break;
a65babc9
L
5864 }
5865 as_bad (_("%s for `%s'"), err_msg,
891edac4 5866 current_templates->start->name);
fa99fab2 5867 return NULL;
29b0f896 5868 }
252b5132 5869
29b0f896
AM
5870 if (!quiet_warnings)
5871 {
5872 if (!intel_syntax
40fb9820
L
5873 && (i.types[0].bitfield.jumpabsolute
5874 != operand_types[0].bitfield.jumpabsolute))
29b0f896
AM
5875 {
5876 as_warn (_("indirect %s without `*'"), t->name);
5877 }
5878
40fb9820
L
5879 if (t->opcode_modifier.isprefix
5880 && t->opcode_modifier.ignoresize)
29b0f896
AM
5881 {
5882 /* Warn them that a data or address size prefix doesn't
5883 affect assembly of the next line of code. */
5884 as_warn (_("stand-alone `%s' prefix"), t->name);
5885 }
5886 }
5887
5888 /* Copy the template we found. */
5889 i.tm = *t;
539e75ad
L
5890
5891 if (addr_prefix_disp != -1)
5892 i.tm.operand_types[addr_prefix_disp]
5893 = operand_types[addr_prefix_disp];
5894
29b0f896
AM
5895 if (found_reverse_match)
5896 {
5897 /* If we found a reverse match we must alter the opcode
5898 direction bit. found_reverse_match holds bits to change
5899 (different for int & float insns). */
5900
5901 i.tm.base_opcode ^= found_reverse_match;
5902
539e75ad
L
5903 i.tm.operand_types[0] = operand_types[1];
5904 i.tm.operand_types[1] = operand_types[0];
29b0f896
AM
5905 }
5906
fa99fab2 5907 return t;
29b0f896
AM
5908}
5909
5910static int
e3bb37b5 5911check_string (void)
29b0f896 5912{
40fb9820
L
5913 int mem_op = operand_type_check (i.types[0], anymem) ? 0 : 1;
5914 if (i.tm.operand_types[mem_op].bitfield.esseg)
29b0f896
AM
5915 {
5916 if (i.seg[0] != NULL && i.seg[0] != &es)
5917 {
a87af027 5918 as_bad (_("`%s' operand %d must use `%ses' segment"),
29b0f896 5919 i.tm.name,
a87af027
JB
5920 mem_op + 1,
5921 register_prefix);
29b0f896
AM
5922 return 0;
5923 }
5924 /* There's only ever one segment override allowed per instruction.
5925 This instruction possibly has a legal segment override on the
5926 second operand, so copy the segment to where non-string
5927 instructions store it, allowing common code. */
5928 i.seg[0] = i.seg[1];
5929 }
40fb9820 5930 else if (i.tm.operand_types[mem_op + 1].bitfield.esseg)
29b0f896
AM
5931 {
5932 if (i.seg[1] != NULL && i.seg[1] != &es)
5933 {
a87af027 5934 as_bad (_("`%s' operand %d must use `%ses' segment"),
29b0f896 5935 i.tm.name,
a87af027
JB
5936 mem_op + 2,
5937 register_prefix);
29b0f896
AM
5938 return 0;
5939 }
5940 }
5941 return 1;
5942}
5943
5944static int
543613e9 5945process_suffix (void)
29b0f896
AM
5946{
5947 /* If matched instruction specifies an explicit instruction mnemonic
5948 suffix, use it. */
40fb9820
L
5949 if (i.tm.opcode_modifier.size16)
5950 i.suffix = WORD_MNEM_SUFFIX;
5951 else if (i.tm.opcode_modifier.size32)
5952 i.suffix = LONG_MNEM_SUFFIX;
5953 else if (i.tm.opcode_modifier.size64)
5954 i.suffix = QWORD_MNEM_SUFFIX;
29b0f896
AM
5955 else if (i.reg_operands)
5956 {
5957 /* If there's no instruction mnemonic suffix we try to invent one
5958 based on register operands. */
5959 if (!i.suffix)
5960 {
5961 /* We take i.suffix from the last register operand specified,
5962 Destination register type is more significant than source
381d071f
L
5963 register type. crc32 in SSE4.2 prefers source register
5964 type. */
5965 if (i.tm.base_opcode == 0xf20f38f1)
5966 {
dc821c5f 5967 if (i.types[0].bitfield.reg && i.types[0].bitfield.word)
40fb9820 5968 i.suffix = WORD_MNEM_SUFFIX;
dc821c5f 5969 else if (i.types[0].bitfield.reg && i.types[0].bitfield.dword)
40fb9820 5970 i.suffix = LONG_MNEM_SUFFIX;
dc821c5f 5971 else if (i.types[0].bitfield.reg && i.types[0].bitfield.qword)
40fb9820 5972 i.suffix = QWORD_MNEM_SUFFIX;
381d071f 5973 }
9344ff29 5974 else if (i.tm.base_opcode == 0xf20f38f0)
20592a94 5975 {
dc821c5f 5976 if (i.types[0].bitfield.reg && i.types[0].bitfield.byte)
20592a94
L
5977 i.suffix = BYTE_MNEM_SUFFIX;
5978 }
381d071f
L
5979
5980 if (!i.suffix)
5981 {
5982 int op;
5983
20592a94
L
5984 if (i.tm.base_opcode == 0xf20f38f1
5985 || i.tm.base_opcode == 0xf20f38f0)
5986 {
5987 /* We have to know the operand size for crc32. */
5988 as_bad (_("ambiguous memory operand size for `%s`"),
5989 i.tm.name);
5990 return 0;
5991 }
5992
381d071f 5993 for (op = i.operands; --op >= 0;)
b76bc5d5
JB
5994 if (!i.tm.operand_types[op].bitfield.inoutportreg
5995 && !i.tm.operand_types[op].bitfield.shiftcount)
381d071f 5996 {
8819ada6
JB
5997 if (!i.types[op].bitfield.reg)
5998 continue;
5999 if (i.types[op].bitfield.byte)
6000 i.suffix = BYTE_MNEM_SUFFIX;
6001 else if (i.types[op].bitfield.word)
6002 i.suffix = WORD_MNEM_SUFFIX;
6003 else if (i.types[op].bitfield.dword)
6004 i.suffix = LONG_MNEM_SUFFIX;
6005 else if (i.types[op].bitfield.qword)
6006 i.suffix = QWORD_MNEM_SUFFIX;
6007 else
6008 continue;
6009 break;
381d071f
L
6010 }
6011 }
29b0f896
AM
6012 }
6013 else if (i.suffix == BYTE_MNEM_SUFFIX)
6014 {
2eb952a4
L
6015 if (intel_syntax
6016 && i.tm.opcode_modifier.ignoresize
6017 && i.tm.opcode_modifier.no_bsuf)
6018 i.suffix = 0;
6019 else if (!check_byte_reg ())
29b0f896
AM
6020 return 0;
6021 }
6022 else if (i.suffix == LONG_MNEM_SUFFIX)
6023 {
2eb952a4
L
6024 if (intel_syntax
6025 && i.tm.opcode_modifier.ignoresize
9f123b91
JB
6026 && i.tm.opcode_modifier.no_lsuf
6027 && !i.tm.opcode_modifier.todword
6028 && !i.tm.opcode_modifier.toqword)
2eb952a4
L
6029 i.suffix = 0;
6030 else if (!check_long_reg ())
29b0f896
AM
6031 return 0;
6032 }
6033 else if (i.suffix == QWORD_MNEM_SUFFIX)
6034 {
955e1e6a
L
6035 if (intel_syntax
6036 && i.tm.opcode_modifier.ignoresize
9f123b91
JB
6037 && i.tm.opcode_modifier.no_qsuf
6038 && !i.tm.opcode_modifier.todword
6039 && !i.tm.opcode_modifier.toqword)
955e1e6a
L
6040 i.suffix = 0;
6041 else if (!check_qword_reg ())
29b0f896
AM
6042 return 0;
6043 }
6044 else if (i.suffix == WORD_MNEM_SUFFIX)
6045 {
2eb952a4
L
6046 if (intel_syntax
6047 && i.tm.opcode_modifier.ignoresize
6048 && i.tm.opcode_modifier.no_wsuf)
6049 i.suffix = 0;
6050 else if (!check_word_reg ())
29b0f896
AM
6051 return 0;
6052 }
40fb9820 6053 else if (intel_syntax && i.tm.opcode_modifier.ignoresize)
29b0f896
AM
6054 /* Do nothing if the instruction is going to ignore the prefix. */
6055 ;
6056 else
6057 abort ();
6058 }
40fb9820 6059 else if (i.tm.opcode_modifier.defaultsize
9306ca4a
JB
6060 && !i.suffix
6061 /* exclude fldenv/frstor/fsave/fstenv */
40fb9820 6062 && i.tm.opcode_modifier.no_ssuf)
29b0f896
AM
6063 {
6064 i.suffix = stackop_size;
6065 }
9306ca4a
JB
6066 else if (intel_syntax
6067 && !i.suffix
40fb9820
L
6068 && (i.tm.operand_types[0].bitfield.jumpabsolute
6069 || i.tm.opcode_modifier.jumpbyte
6070 || i.tm.opcode_modifier.jumpintersegment
64e74474
AM
6071 || (i.tm.base_opcode == 0x0f01 /* [ls][gi]dt */
6072 && i.tm.extension_opcode <= 3)))
9306ca4a
JB
6073 {
6074 switch (flag_code)
6075 {
6076 case CODE_64BIT:
40fb9820 6077 if (!i.tm.opcode_modifier.no_qsuf)
9306ca4a
JB
6078 {
6079 i.suffix = QWORD_MNEM_SUFFIX;
6080 break;
6081 }
1a0670f3 6082 /* Fall through. */
9306ca4a 6083 case CODE_32BIT:
40fb9820 6084 if (!i.tm.opcode_modifier.no_lsuf)
9306ca4a
JB
6085 i.suffix = LONG_MNEM_SUFFIX;
6086 break;
6087 case CODE_16BIT:
40fb9820 6088 if (!i.tm.opcode_modifier.no_wsuf)
9306ca4a
JB
6089 i.suffix = WORD_MNEM_SUFFIX;
6090 break;
6091 }
6092 }
252b5132 6093
9306ca4a 6094 if (!i.suffix)
29b0f896 6095 {
9306ca4a
JB
6096 if (!intel_syntax)
6097 {
40fb9820 6098 if (i.tm.opcode_modifier.w)
9306ca4a 6099 {
4eed87de
AM
6100 as_bad (_("no instruction mnemonic suffix given and "
6101 "no register operands; can't size instruction"));
9306ca4a
JB
6102 return 0;
6103 }
6104 }
6105 else
6106 {
40fb9820 6107 unsigned int suffixes;
7ab9ffdd 6108
40fb9820
L
6109 suffixes = !i.tm.opcode_modifier.no_bsuf;
6110 if (!i.tm.opcode_modifier.no_wsuf)
6111 suffixes |= 1 << 1;
6112 if (!i.tm.opcode_modifier.no_lsuf)
6113 suffixes |= 1 << 2;
fc4adea1 6114 if (!i.tm.opcode_modifier.no_ldsuf)
40fb9820
L
6115 suffixes |= 1 << 3;
6116 if (!i.tm.opcode_modifier.no_ssuf)
6117 suffixes |= 1 << 4;
c2b9da16 6118 if (flag_code == CODE_64BIT && !i.tm.opcode_modifier.no_qsuf)
40fb9820
L
6119 suffixes |= 1 << 5;
6120
6121 /* There are more than suffix matches. */
6122 if (i.tm.opcode_modifier.w
9306ca4a 6123 || ((suffixes & (suffixes - 1))
40fb9820
L
6124 && !i.tm.opcode_modifier.defaultsize
6125 && !i.tm.opcode_modifier.ignoresize))
9306ca4a
JB
6126 {
6127 as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
6128 return 0;
6129 }
6130 }
29b0f896 6131 }
252b5132 6132
d2224064
JB
6133 /* Change the opcode based on the operand size given by i.suffix. */
6134 switch (i.suffix)
29b0f896 6135 {
d2224064
JB
6136 /* Size floating point instruction. */
6137 case LONG_MNEM_SUFFIX:
6138 if (i.tm.opcode_modifier.floatmf)
6139 {
6140 i.tm.base_opcode ^= 4;
6141 break;
6142 }
6143 /* fall through */
6144 case WORD_MNEM_SUFFIX:
6145 case QWORD_MNEM_SUFFIX:
29b0f896 6146 /* It's not a byte, select word/dword operation. */
40fb9820 6147 if (i.tm.opcode_modifier.w)
29b0f896 6148 {
40fb9820 6149 if (i.tm.opcode_modifier.shortform)
29b0f896
AM
6150 i.tm.base_opcode |= 8;
6151 else
6152 i.tm.base_opcode |= 1;
6153 }
d2224064
JB
6154 /* fall through */
6155 case SHORT_MNEM_SUFFIX:
29b0f896
AM
6156 /* Now select between word & dword operations via the operand
6157 size prefix, except for instructions that will ignore this
6158 prefix anyway. */
75c0a438
L
6159 if (i.reg_operands > 0
6160 && i.types[0].bitfield.reg
6161 && i.tm.opcode_modifier.addrprefixopreg
6162 && (i.tm.opcode_modifier.immext
6163 || i.operands == 1))
cb712a9e 6164 {
ca61edf2
L
6165 /* The address size override prefix changes the size of the
6166 first operand. */
40fb9820 6167 if ((flag_code == CODE_32BIT
75c0a438 6168 && i.op[0].regs->reg_type.bitfield.word)
40fb9820 6169 || (flag_code != CODE_32BIT
75c0a438 6170 && i.op[0].regs->reg_type.bitfield.dword))
cb712a9e
L
6171 if (!add_prefix (ADDR_PREFIX_OPCODE))
6172 return 0;
6173 }
6174 else if (i.suffix != QWORD_MNEM_SUFFIX
40fb9820
L
6175 && !i.tm.opcode_modifier.ignoresize
6176 && !i.tm.opcode_modifier.floatmf
7a8655d2
JB
6177 && !i.tm.opcode_modifier.vex
6178 && !i.tm.opcode_modifier.vexopcode
6179 && !is_evex_encoding (&i.tm)
cb712a9e
L
6180 && ((i.suffix == LONG_MNEM_SUFFIX) == (flag_code == CODE_16BIT)
6181 || (flag_code == CODE_64BIT
40fb9820 6182 && i.tm.opcode_modifier.jumpbyte)))
24eab124
AM
6183 {
6184 unsigned int prefix = DATA_PREFIX_OPCODE;
543613e9 6185
40fb9820 6186 if (i.tm.opcode_modifier.jumpbyte) /* jcxz, loop */
29b0f896 6187 prefix = ADDR_PREFIX_OPCODE;
252b5132 6188
29b0f896
AM
6189 if (!add_prefix (prefix))
6190 return 0;
24eab124 6191 }
252b5132 6192
29b0f896
AM
6193 /* Set mode64 for an operand. */
6194 if (i.suffix == QWORD_MNEM_SUFFIX
9146926a 6195 && flag_code == CODE_64BIT
d2224064 6196 && !i.tm.opcode_modifier.norex64
46e883c5 6197 /* Special case for xchg %rax,%rax. It is NOP and doesn't
d2224064
JB
6198 need rex64. */
6199 && ! (i.operands == 2
6200 && i.tm.base_opcode == 0x90
6201 && i.tm.extension_opcode == None
6202 && operand_type_equal (&i.types [0], &acc64)
6203 && operand_type_equal (&i.types [1], &acc64)))
6204 i.rex |= REX_W;
3e73aa7c 6205
d2224064 6206 break;
29b0f896 6207 }
7ecd2f8b 6208
c0a30a9f
L
6209 if (i.reg_operands != 0
6210 && i.operands > 1
6211 && i.tm.opcode_modifier.addrprefixopreg
6212 && !i.tm.opcode_modifier.immext)
6213 {
6214 /* Check invalid register operand when the address size override
6215 prefix changes the size of register operands. */
6216 unsigned int op;
6217 enum { need_word, need_dword, need_qword } need;
6218
6219 if (flag_code == CODE_32BIT)
6220 need = i.prefix[ADDR_PREFIX] ? need_word : need_dword;
6221 else
6222 {
6223 if (i.prefix[ADDR_PREFIX])
6224 need = need_dword;
6225 else
6226 need = flag_code == CODE_64BIT ? need_qword : need_word;
6227 }
6228
6229 for (op = 0; op < i.operands; op++)
6230 if (i.types[op].bitfield.reg
6231 && ((need == need_word
6232 && !i.op[op].regs->reg_type.bitfield.word)
6233 || (need == need_dword
6234 && !i.op[op].regs->reg_type.bitfield.dword)
6235 || (need == need_qword
6236 && !i.op[op].regs->reg_type.bitfield.qword)))
6237 {
6238 as_bad (_("invalid register operand size for `%s'"),
6239 i.tm.name);
6240 return 0;
6241 }
6242 }
6243
29b0f896
AM
6244 return 1;
6245}
3e73aa7c 6246
29b0f896 6247static int
543613e9 6248check_byte_reg (void)
29b0f896
AM
6249{
6250 int op;
543613e9 6251
29b0f896
AM
6252 for (op = i.operands; --op >= 0;)
6253 {
dc821c5f
JB
6254 /* Skip non-register operands. */
6255 if (!i.types[op].bitfield.reg)
6256 continue;
6257
29b0f896
AM
6258 /* If this is an eight bit register, it's OK. If it's the 16 or
6259 32 bit version of an eight bit register, we will just use the
6260 low portion, and that's OK too. */
dc821c5f 6261 if (i.types[op].bitfield.byte)
29b0f896
AM
6262 continue;
6263
5a819eb9
JB
6264 /* I/O port address operands are OK too. */
6265 if (i.tm.operand_types[op].bitfield.inoutportreg)
6266 continue;
6267
9344ff29
L
6268 /* crc32 doesn't generate this warning. */
6269 if (i.tm.base_opcode == 0xf20f38f0)
6270 continue;
6271
dc821c5f
JB
6272 if ((i.types[op].bitfield.word
6273 || i.types[op].bitfield.dword
6274 || i.types[op].bitfield.qword)
5a819eb9
JB
6275 && i.op[op].regs->reg_num < 4
6276 /* Prohibit these changes in 64bit mode, since the lowering
6277 would be more complicated. */
6278 && flag_code != CODE_64BIT)
29b0f896 6279 {
29b0f896 6280#if REGISTER_WARNINGS
5a819eb9 6281 if (!quiet_warnings)
a540244d
L
6282 as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
6283 register_prefix,
dc821c5f 6284 (i.op[op].regs + (i.types[op].bitfield.word
29b0f896
AM
6285 ? REGNAM_AL - REGNAM_AX
6286 : REGNAM_AL - REGNAM_EAX))->reg_name,
a540244d 6287 register_prefix,
29b0f896
AM
6288 i.op[op].regs->reg_name,
6289 i.suffix);
6290#endif
6291 continue;
6292 }
6293 /* Any other register is bad. */
dc821c5f 6294 if (i.types[op].bitfield.reg
40fb9820 6295 || i.types[op].bitfield.regmmx
1b54b8d7 6296 || i.types[op].bitfield.regsimd
40fb9820
L
6297 || i.types[op].bitfield.sreg2
6298 || i.types[op].bitfield.sreg3
6299 || i.types[op].bitfield.control
6300 || i.types[op].bitfield.debug
ca0d63fe 6301 || i.types[op].bitfield.test)
29b0f896 6302 {
a540244d
L
6303 as_bad (_("`%s%s' not allowed with `%s%c'"),
6304 register_prefix,
29b0f896
AM
6305 i.op[op].regs->reg_name,
6306 i.tm.name,
6307 i.suffix);
6308 return 0;
6309 }
6310 }
6311 return 1;
6312}
6313
6314static int
e3bb37b5 6315check_long_reg (void)
29b0f896
AM
6316{
6317 int op;
6318
6319 for (op = i.operands; --op >= 0;)
dc821c5f
JB
6320 /* Skip non-register operands. */
6321 if (!i.types[op].bitfield.reg)
6322 continue;
29b0f896
AM
6323 /* Reject eight bit registers, except where the template requires
6324 them. (eg. movzb) */
dc821c5f
JB
6325 else if (i.types[op].bitfield.byte
6326 && (i.tm.operand_types[op].bitfield.reg
6327 || i.tm.operand_types[op].bitfield.acc)
6328 && (i.tm.operand_types[op].bitfield.word
6329 || i.tm.operand_types[op].bitfield.dword))
29b0f896 6330 {
a540244d
L
6331 as_bad (_("`%s%s' not allowed with `%s%c'"),
6332 register_prefix,
29b0f896
AM
6333 i.op[op].regs->reg_name,
6334 i.tm.name,
6335 i.suffix);
6336 return 0;
6337 }
e4630f71 6338 /* Warn if the e prefix on a general reg is missing. */
29b0f896 6339 else if ((!quiet_warnings || flag_code == CODE_64BIT)
dc821c5f
JB
6340 && i.types[op].bitfield.word
6341 && (i.tm.operand_types[op].bitfield.reg
6342 || i.tm.operand_types[op].bitfield.acc)
6343 && i.tm.operand_types[op].bitfield.dword)
29b0f896
AM
6344 {
6345 /* Prohibit these changes in the 64bit mode, since the
6346 lowering is more complicated. */
6347 if (flag_code == CODE_64BIT)
252b5132 6348 {
2b5d6a91 6349 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
2ca3ace5 6350 register_prefix, i.op[op].regs->reg_name,
29b0f896
AM
6351 i.suffix);
6352 return 0;
252b5132 6353 }
29b0f896 6354#if REGISTER_WARNINGS
cecf1424
JB
6355 as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
6356 register_prefix,
6357 (i.op[op].regs + REGNAM_EAX - REGNAM_AX)->reg_name,
6358 register_prefix, i.op[op].regs->reg_name, i.suffix);
29b0f896 6359#endif
252b5132 6360 }
e4630f71 6361 /* Warn if the r prefix on a general reg is present. */
dc821c5f
JB
6362 else if (i.types[op].bitfield.qword
6363 && (i.tm.operand_types[op].bitfield.reg
6364 || i.tm.operand_types[op].bitfield.acc)
6365 && i.tm.operand_types[op].bitfield.dword)
252b5132 6366 {
34828aad 6367 if (intel_syntax
ca61edf2 6368 && i.tm.opcode_modifier.toqword
1b54b8d7 6369 && !i.types[0].bitfield.regsimd)
34828aad 6370 {
ca61edf2 6371 /* Convert to QWORD. We want REX byte. */
34828aad
L
6372 i.suffix = QWORD_MNEM_SUFFIX;
6373 }
6374 else
6375 {
2b5d6a91 6376 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
6377 register_prefix, i.op[op].regs->reg_name,
6378 i.suffix);
6379 return 0;
6380 }
29b0f896
AM
6381 }
6382 return 1;
6383}
252b5132 6384
29b0f896 6385static int
e3bb37b5 6386check_qword_reg (void)
29b0f896
AM
6387{
6388 int op;
252b5132 6389
29b0f896 6390 for (op = i.operands; --op >= 0; )
dc821c5f
JB
6391 /* Skip non-register operands. */
6392 if (!i.types[op].bitfield.reg)
6393 continue;
29b0f896
AM
6394 /* Reject eight bit registers, except where the template requires
6395 them. (eg. movzb) */
dc821c5f
JB
6396 else if (i.types[op].bitfield.byte
6397 && (i.tm.operand_types[op].bitfield.reg
6398 || i.tm.operand_types[op].bitfield.acc)
6399 && (i.tm.operand_types[op].bitfield.word
6400 || i.tm.operand_types[op].bitfield.dword))
29b0f896 6401 {
a540244d
L
6402 as_bad (_("`%s%s' not allowed with `%s%c'"),
6403 register_prefix,
29b0f896
AM
6404 i.op[op].regs->reg_name,
6405 i.tm.name,
6406 i.suffix);
6407 return 0;
6408 }
e4630f71 6409 /* Warn if the r prefix on a general reg is missing. */
dc821c5f
JB
6410 else if ((i.types[op].bitfield.word
6411 || i.types[op].bitfield.dword)
6412 && (i.tm.operand_types[op].bitfield.reg
6413 || i.tm.operand_types[op].bitfield.acc)
6414 && i.tm.operand_types[op].bitfield.qword)
29b0f896
AM
6415 {
6416 /* Prohibit these changes in the 64bit mode, since the
6417 lowering is more complicated. */
34828aad 6418 if (intel_syntax
ca61edf2 6419 && i.tm.opcode_modifier.todword
1b54b8d7 6420 && !i.types[0].bitfield.regsimd)
34828aad 6421 {
ca61edf2 6422 /* Convert to DWORD. We don't want REX byte. */
34828aad
L
6423 i.suffix = LONG_MNEM_SUFFIX;
6424 }
6425 else
6426 {
2b5d6a91 6427 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
34828aad
L
6428 register_prefix, i.op[op].regs->reg_name,
6429 i.suffix);
6430 return 0;
6431 }
252b5132 6432 }
29b0f896
AM
6433 return 1;
6434}
252b5132 6435
29b0f896 6436static int
e3bb37b5 6437check_word_reg (void)
29b0f896
AM
6438{
6439 int op;
6440 for (op = i.operands; --op >= 0;)
dc821c5f
JB
6441 /* Skip non-register operands. */
6442 if (!i.types[op].bitfield.reg)
6443 continue;
29b0f896
AM
6444 /* Reject eight bit registers, except where the template requires
6445 them. (eg. movzb) */
dc821c5f
JB
6446 else if (i.types[op].bitfield.byte
6447 && (i.tm.operand_types[op].bitfield.reg
6448 || i.tm.operand_types[op].bitfield.acc)
6449 && (i.tm.operand_types[op].bitfield.word
6450 || i.tm.operand_types[op].bitfield.dword))
29b0f896 6451 {
a540244d
L
6452 as_bad (_("`%s%s' not allowed with `%s%c'"),
6453 register_prefix,
29b0f896
AM
6454 i.op[op].regs->reg_name,
6455 i.tm.name,
6456 i.suffix);
6457 return 0;
6458 }
e4630f71 6459 /* Warn if the e or r prefix on a general reg is present. */
29b0f896 6460 else if ((!quiet_warnings || flag_code == CODE_64BIT)
dc821c5f
JB
6461 && (i.types[op].bitfield.dword
6462 || i.types[op].bitfield.qword)
6463 && (i.tm.operand_types[op].bitfield.reg
6464 || i.tm.operand_types[op].bitfield.acc)
6465 && i.tm.operand_types[op].bitfield.word)
252b5132 6466 {
29b0f896
AM
6467 /* Prohibit these changes in the 64bit mode, since the
6468 lowering is more complicated. */
6469 if (flag_code == CODE_64BIT)
252b5132 6470 {
2b5d6a91 6471 as_bad (_("incorrect register `%s%s' used with `%c' suffix"),
2ca3ace5 6472 register_prefix, i.op[op].regs->reg_name,
29b0f896
AM
6473 i.suffix);
6474 return 0;
252b5132 6475 }
29b0f896 6476#if REGISTER_WARNINGS
cecf1424
JB
6477 as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
6478 register_prefix,
6479 (i.op[op].regs + REGNAM_AX - REGNAM_EAX)->reg_name,
6480 register_prefix, i.op[op].regs->reg_name, i.suffix);
29b0f896
AM
6481#endif
6482 }
6483 return 1;
6484}
252b5132 6485
29b0f896 6486static int
40fb9820 6487update_imm (unsigned int j)
29b0f896 6488{
bc0844ae 6489 i386_operand_type overlap = i.types[j];
40fb9820
L
6490 if ((overlap.bitfield.imm8
6491 || overlap.bitfield.imm8s
6492 || overlap.bitfield.imm16
6493 || overlap.bitfield.imm32
6494 || overlap.bitfield.imm32s
6495 || overlap.bitfield.imm64)
0dfbf9d7
L
6496 && !operand_type_equal (&overlap, &imm8)
6497 && !operand_type_equal (&overlap, &imm8s)
6498 && !operand_type_equal (&overlap, &imm16)
6499 && !operand_type_equal (&overlap, &imm32)
6500 && !operand_type_equal (&overlap, &imm32s)
6501 && !operand_type_equal (&overlap, &imm64))
29b0f896
AM
6502 {
6503 if (i.suffix)
6504 {
40fb9820
L
6505 i386_operand_type temp;
6506
0dfbf9d7 6507 operand_type_set (&temp, 0);
7ab9ffdd 6508 if (i.suffix == BYTE_MNEM_SUFFIX)
40fb9820
L
6509 {
6510 temp.bitfield.imm8 = overlap.bitfield.imm8;
6511 temp.bitfield.imm8s = overlap.bitfield.imm8s;
6512 }
6513 else if (i.suffix == WORD_MNEM_SUFFIX)
6514 temp.bitfield.imm16 = overlap.bitfield.imm16;
6515 else if (i.suffix == QWORD_MNEM_SUFFIX)
6516 {
6517 temp.bitfield.imm64 = overlap.bitfield.imm64;
6518 temp.bitfield.imm32s = overlap.bitfield.imm32s;
6519 }
6520 else
6521 temp.bitfield.imm32 = overlap.bitfield.imm32;
6522 overlap = temp;
29b0f896 6523 }
0dfbf9d7
L
6524 else if (operand_type_equal (&overlap, &imm16_32_32s)
6525 || operand_type_equal (&overlap, &imm16_32)
6526 || operand_type_equal (&overlap, &imm16_32s))
29b0f896 6527 {
40fb9820 6528 if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
65da13b5 6529 overlap = imm16;
40fb9820 6530 else
65da13b5 6531 overlap = imm32s;
29b0f896 6532 }
0dfbf9d7
L
6533 if (!operand_type_equal (&overlap, &imm8)
6534 && !operand_type_equal (&overlap, &imm8s)
6535 && !operand_type_equal (&overlap, &imm16)
6536 && !operand_type_equal (&overlap, &imm32)
6537 && !operand_type_equal (&overlap, &imm32s)
6538 && !operand_type_equal (&overlap, &imm64))
29b0f896 6539 {
4eed87de
AM
6540 as_bad (_("no instruction mnemonic suffix given; "
6541 "can't determine immediate size"));
29b0f896
AM
6542 return 0;
6543 }
6544 }
40fb9820 6545 i.types[j] = overlap;
29b0f896 6546
40fb9820
L
6547 return 1;
6548}
6549
6550static int
6551finalize_imm (void)
6552{
bc0844ae 6553 unsigned int j, n;
29b0f896 6554
bc0844ae
L
6555 /* Update the first 2 immediate operands. */
6556 n = i.operands > 2 ? 2 : i.operands;
6557 if (n)
6558 {
6559 for (j = 0; j < n; j++)
6560 if (update_imm (j) == 0)
6561 return 0;
40fb9820 6562
bc0844ae
L
6563 /* The 3rd operand can't be immediate operand. */
6564 gas_assert (operand_type_check (i.types[2], imm) == 0);
6565 }
29b0f896
AM
6566
6567 return 1;
6568}
6569
6570static int
e3bb37b5 6571process_operands (void)
29b0f896
AM
6572{
6573 /* Default segment register this instruction will use for memory
6574 accesses. 0 means unknown. This is only for optimizing out
6575 unnecessary segment overrides. */
6576 const seg_entry *default_seg = 0;
6577
2426c15f 6578 if (i.tm.opcode_modifier.sse2avx && i.tm.opcode_modifier.vexvvvv)
29b0f896 6579 {
91d6fa6a
NC
6580 unsigned int dupl = i.operands;
6581 unsigned int dest = dupl - 1;
9fcfb3d7
L
6582 unsigned int j;
6583
c0f3af97 6584 /* The destination must be an xmm register. */
9c2799c2 6585 gas_assert (i.reg_operands
91d6fa6a 6586 && MAX_OPERANDS > dupl
7ab9ffdd 6587 && operand_type_equal (&i.types[dest], &regxmm));
c0f3af97 6588
1b54b8d7
JB
6589 if (i.tm.operand_types[0].bitfield.acc
6590 && i.tm.operand_types[0].bitfield.xmmword)
e2ec9d29 6591 {
8cd7925b 6592 if (i.tm.opcode_modifier.vexsources == VEX3SOURCES)
c0f3af97
L
6593 {
6594 /* Keep xmm0 for instructions with VEX prefix and 3
6595 sources. */
1b54b8d7
JB
6596 i.tm.operand_types[0].bitfield.acc = 0;
6597 i.tm.operand_types[0].bitfield.regsimd = 1;
c0f3af97
L
6598 goto duplicate;
6599 }
e2ec9d29 6600 else
c0f3af97
L
6601 {
6602 /* We remove the first xmm0 and keep the number of
6603 operands unchanged, which in fact duplicates the
6604 destination. */
6605 for (j = 1; j < i.operands; j++)
6606 {
6607 i.op[j - 1] = i.op[j];
6608 i.types[j - 1] = i.types[j];
6609 i.tm.operand_types[j - 1] = i.tm.operand_types[j];
6610 }
6611 }
6612 }
6613 else if (i.tm.opcode_modifier.implicit1stxmm0)
7ab9ffdd 6614 {
91d6fa6a 6615 gas_assert ((MAX_OPERANDS - 1) > dupl
8cd7925b
L
6616 && (i.tm.opcode_modifier.vexsources
6617 == VEX3SOURCES));
c0f3af97
L
6618
6619 /* Add the implicit xmm0 for instructions with VEX prefix
6620 and 3 sources. */
6621 for (j = i.operands; j > 0; j--)
6622 {
6623 i.op[j] = i.op[j - 1];
6624 i.types[j] = i.types[j - 1];
6625 i.tm.operand_types[j] = i.tm.operand_types[j - 1];
6626 }
6627 i.op[0].regs
6628 = (const reg_entry *) hash_find (reg_hash, "xmm0");
7ab9ffdd 6629 i.types[0] = regxmm;
c0f3af97
L
6630 i.tm.operand_types[0] = regxmm;
6631
6632 i.operands += 2;
6633 i.reg_operands += 2;
6634 i.tm.operands += 2;
6635
91d6fa6a 6636 dupl++;
c0f3af97 6637 dest++;
91d6fa6a
NC
6638 i.op[dupl] = i.op[dest];
6639 i.types[dupl] = i.types[dest];
6640 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
e2ec9d29 6641 }
c0f3af97
L
6642 else
6643 {
6644duplicate:
6645 i.operands++;
6646 i.reg_operands++;
6647 i.tm.operands++;
6648
91d6fa6a
NC
6649 i.op[dupl] = i.op[dest];
6650 i.types[dupl] = i.types[dest];
6651 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
c0f3af97
L
6652 }
6653
6654 if (i.tm.opcode_modifier.immext)
6655 process_immext ();
6656 }
1b54b8d7
JB
6657 else if (i.tm.operand_types[0].bitfield.acc
6658 && i.tm.operand_types[0].bitfield.xmmword)
c0f3af97
L
6659 {
6660 unsigned int j;
6661
9fcfb3d7
L
6662 for (j = 1; j < i.operands; j++)
6663 {
6664 i.op[j - 1] = i.op[j];
6665 i.types[j - 1] = i.types[j];
6666
6667 /* We need to adjust fields in i.tm since they are used by
6668 build_modrm_byte. */
6669 i.tm.operand_types [j - 1] = i.tm.operand_types [j];
6670 }
6671
e2ec9d29
L
6672 i.operands--;
6673 i.reg_operands--;
e2ec9d29
L
6674 i.tm.operands--;
6675 }
920d2ddc
IT
6676 else if (i.tm.opcode_modifier.implicitquadgroup)
6677 {
a477a8c4
JB
6678 unsigned int regnum, first_reg_in_group, last_reg_in_group;
6679
920d2ddc 6680 /* The second operand must be {x,y,z}mmN, where N is a multiple of 4. */
10c17abd 6681 gas_assert (i.operands >= 2 && i.types[1].bitfield.regsimd);
a477a8c4
JB
6682 regnum = register_number (i.op[1].regs);
6683 first_reg_in_group = regnum & ~3;
6684 last_reg_in_group = first_reg_in_group + 3;
6685 if (regnum != first_reg_in_group)
6686 as_warn (_("source register `%s%s' implicitly denotes"
6687 " `%s%.3s%u' to `%s%.3s%u' source group in `%s'"),
6688 register_prefix, i.op[1].regs->reg_name,
6689 register_prefix, i.op[1].regs->reg_name, first_reg_in_group,
6690 register_prefix, i.op[1].regs->reg_name, last_reg_in_group,
6691 i.tm.name);
6692 }
e2ec9d29
L
6693 else if (i.tm.opcode_modifier.regkludge)
6694 {
6695 /* The imul $imm, %reg instruction is converted into
6696 imul $imm, %reg, %reg, and the clr %reg instruction
6697 is converted into xor %reg, %reg. */
6698
6699 unsigned int first_reg_op;
6700
6701 if (operand_type_check (i.types[0], reg))
6702 first_reg_op = 0;
6703 else
6704 first_reg_op = 1;
6705 /* Pretend we saw the extra register operand. */
9c2799c2 6706 gas_assert (i.reg_operands == 1
7ab9ffdd 6707 && i.op[first_reg_op + 1].regs == 0);
e2ec9d29
L
6708 i.op[first_reg_op + 1].regs = i.op[first_reg_op].regs;
6709 i.types[first_reg_op + 1] = i.types[first_reg_op];
6710 i.operands++;
6711 i.reg_operands++;
29b0f896
AM
6712 }
6713
40fb9820 6714 if (i.tm.opcode_modifier.shortform)
29b0f896 6715 {
40fb9820
L
6716 if (i.types[0].bitfield.sreg2
6717 || i.types[0].bitfield.sreg3)
29b0f896 6718 {
4eed87de
AM
6719 if (i.tm.base_opcode == POP_SEG_SHORT
6720 && i.op[0].regs->reg_num == 1)
29b0f896 6721 {
a87af027 6722 as_bad (_("you can't `pop %scs'"), register_prefix);
4eed87de 6723 return 0;
29b0f896 6724 }
4eed87de
AM
6725 i.tm.base_opcode |= (i.op[0].regs->reg_num << 3);
6726 if ((i.op[0].regs->reg_flags & RegRex) != 0)
161a04f6 6727 i.rex |= REX_B;
4eed87de
AM
6728 }
6729 else
6730 {
7ab9ffdd 6731 /* The register or float register operand is in operand
85f10a01 6732 0 or 1. */
40fb9820 6733 unsigned int op;
7ab9ffdd 6734
ca0d63fe 6735 if ((i.types[0].bitfield.reg && i.types[0].bitfield.tbyte)
7ab9ffdd
L
6736 || operand_type_check (i.types[0], reg))
6737 op = 0;
6738 else
6739 op = 1;
4eed87de
AM
6740 /* Register goes in low 3 bits of opcode. */
6741 i.tm.base_opcode |= i.op[op].regs->reg_num;
6742 if ((i.op[op].regs->reg_flags & RegRex) != 0)
161a04f6 6743 i.rex |= REX_B;
40fb9820 6744 if (!quiet_warnings && i.tm.opcode_modifier.ugh)
29b0f896 6745 {
4eed87de
AM
6746 /* Warn about some common errors, but press on regardless.
6747 The first case can be generated by gcc (<= 2.8.1). */
6748 if (i.operands == 2)
6749 {
6750 /* Reversed arguments on faddp, fsubp, etc. */
a540244d 6751 as_warn (_("translating to `%s %s%s,%s%s'"), i.tm.name,
d8a1b51e
JB
6752 register_prefix, i.op[!intel_syntax].regs->reg_name,
6753 register_prefix, i.op[intel_syntax].regs->reg_name);
4eed87de
AM
6754 }
6755 else
6756 {
6757 /* Extraneous `l' suffix on fp insn. */
a540244d
L
6758 as_warn (_("translating to `%s %s%s'"), i.tm.name,
6759 register_prefix, i.op[0].regs->reg_name);
4eed87de 6760 }
29b0f896
AM
6761 }
6762 }
6763 }
40fb9820 6764 else if (i.tm.opcode_modifier.modrm)
29b0f896
AM
6765 {
6766 /* The opcode is completed (modulo i.tm.extension_opcode which
52271982
AM
6767 must be put into the modrm byte). Now, we make the modrm and
6768 index base bytes based on all the info we've collected. */
29b0f896
AM
6769
6770 default_seg = build_modrm_byte ();
6771 }
8a2ed489 6772 else if ((i.tm.base_opcode & ~0x3) == MOV_AX_DISP32)
29b0f896
AM
6773 {
6774 default_seg = &ds;
6775 }
40fb9820 6776 else if (i.tm.opcode_modifier.isstring)
29b0f896
AM
6777 {
6778 /* For the string instructions that allow a segment override
6779 on one of their operands, the default segment is ds. */
6780 default_seg = &ds;
6781 }
6782
75178d9d
L
6783 if (i.tm.base_opcode == 0x8d /* lea */
6784 && i.seg[0]
6785 && !quiet_warnings)
30123838 6786 as_warn (_("segment override on `%s' is ineffectual"), i.tm.name);
52271982
AM
6787
6788 /* If a segment was explicitly specified, and the specified segment
6789 is not the default, use an opcode prefix to select it. If we
6790 never figured out what the default segment is, then default_seg
6791 will be zero at this point, and the specified segment prefix will
6792 always be used. */
29b0f896
AM
6793 if ((i.seg[0]) && (i.seg[0] != default_seg))
6794 {
6795 if (!add_prefix (i.seg[0]->seg_prefix))
6796 return 0;
6797 }
6798 return 1;
6799}
6800
6801static const seg_entry *
e3bb37b5 6802build_modrm_byte (void)
29b0f896
AM
6803{
6804 const seg_entry *default_seg = 0;
c0f3af97 6805 unsigned int source, dest;
8cd7925b 6806 int vex_3_sources;
c0f3af97 6807
8cd7925b 6808 vex_3_sources = i.tm.opcode_modifier.vexsources == VEX3SOURCES;
c0f3af97
L
6809 if (vex_3_sources)
6810 {
91d6fa6a 6811 unsigned int nds, reg_slot;
4c2c6516 6812 expressionS *exp;
c0f3af97 6813
6b8d3588 6814 dest = i.operands - 1;
c0f3af97 6815 nds = dest - 1;
922d8de8 6816
a683cc34 6817 /* There are 2 kinds of instructions:
bed3d976
JB
6818 1. 5 operands: 4 register operands or 3 register operands
6819 plus 1 memory operand plus one Vec_Imm4 operand, VexXDS, and
6820 VexW0 or VexW1. The destination must be either XMM, YMM or
43234a1e 6821 ZMM register.
bed3d976 6822 2. 4 operands: 4 register operands or 3 register operands
2f1bada2 6823 plus 1 memory operand, with VexXDS. */
922d8de8 6824 gas_assert ((i.reg_operands == 4
bed3d976
JB
6825 || (i.reg_operands == 3 && i.mem_operands == 1))
6826 && i.tm.opcode_modifier.vexvvvv == VEXXDS
dcd7e323
JB
6827 && i.tm.opcode_modifier.vexw
6828 && i.tm.operand_types[dest].bitfield.regsimd);
a683cc34 6829
48db9223
JB
6830 /* If VexW1 is set, the first non-immediate operand is the source and
6831 the second non-immediate one is encoded in the immediate operand. */
6832 if (i.tm.opcode_modifier.vexw == VEXW1)
6833 {
6834 source = i.imm_operands;
6835 reg_slot = i.imm_operands + 1;
6836 }
6837 else
6838 {
6839 source = i.imm_operands + 1;
6840 reg_slot = i.imm_operands;
6841 }
6842
a683cc34 6843 if (i.imm_operands == 0)
bed3d976
JB
6844 {
6845 /* When there is no immediate operand, generate an 8bit
6846 immediate operand to encode the first operand. */
6847 exp = &im_expressions[i.imm_operands++];
6848 i.op[i.operands].imms = exp;
6849 i.types[i.operands] = imm8;
6850 i.operands++;
6851
6852 gas_assert (i.tm.operand_types[reg_slot].bitfield.regsimd);
6853 exp->X_op = O_constant;
6854 exp->X_add_number = register_number (i.op[reg_slot].regs) << 4;
43234a1e
L
6855 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
6856 }
922d8de8 6857 else
bed3d976
JB
6858 {
6859 unsigned int imm_slot;
a683cc34 6860
2f1bada2
JB
6861 gas_assert (i.imm_operands == 1 && i.types[0].bitfield.vec_imm4);
6862
bed3d976
JB
6863 if (i.tm.opcode_modifier.immext)
6864 {
6865 /* When ImmExt is set, the immediate byte is the last
6866 operand. */
6867 imm_slot = i.operands - 1;
6868 source--;
6869 reg_slot--;
6870 }
6871 else
6872 {
6873 imm_slot = 0;
6874
6875 /* Turn on Imm8 so that output_imm will generate it. */
6876 i.types[imm_slot].bitfield.imm8 = 1;
6877 }
6878
6879 gas_assert (i.tm.operand_types[reg_slot].bitfield.regsimd);
6880 i.op[imm_slot].imms->X_add_number
6881 |= register_number (i.op[reg_slot].regs) << 4;
43234a1e 6882 gas_assert ((i.op[reg_slot].regs->reg_flags & RegVRex) == 0);
bed3d976 6883 }
a683cc34 6884
10c17abd 6885 gas_assert (i.tm.operand_types[nds].bitfield.regsimd);
dae39acc 6886 i.vex.register_specifier = i.op[nds].regs;
c0f3af97
L
6887 }
6888 else
6889 source = dest = 0;
29b0f896
AM
6890
6891 /* i.reg_operands MUST be the number of real register operands;
c0f3af97
L
6892 implicit registers do not count. If there are 3 register
6893 operands, it must be a instruction with VexNDS. For a
6894 instruction with VexNDD, the destination register is encoded
6895 in VEX prefix. If there are 4 register operands, it must be
6896 a instruction with VEX prefix and 3 sources. */
7ab9ffdd
L
6897 if (i.mem_operands == 0
6898 && ((i.reg_operands == 2
2426c15f 6899 && i.tm.opcode_modifier.vexvvvv <= VEXXDS)
7ab9ffdd 6900 || (i.reg_operands == 3
2426c15f 6901 && i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd 6902 || (i.reg_operands == 4 && vex_3_sources)))
29b0f896 6903 {
cab737b9
L
6904 switch (i.operands)
6905 {
6906 case 2:
6907 source = 0;
6908 break;
6909 case 3:
c81128dc
L
6910 /* When there are 3 operands, one of them may be immediate,
6911 which may be the first or the last operand. Otherwise,
c0f3af97
L
6912 the first operand must be shift count register (cl) or it
6913 is an instruction with VexNDS. */
9c2799c2 6914 gas_assert (i.imm_operands == 1
7ab9ffdd 6915 || (i.imm_operands == 0
2426c15f 6916 && (i.tm.opcode_modifier.vexvvvv == VEXXDS
7ab9ffdd 6917 || i.types[0].bitfield.shiftcount)));
40fb9820
L
6918 if (operand_type_check (i.types[0], imm)
6919 || i.types[0].bitfield.shiftcount)
6920 source = 1;
6921 else
6922 source = 0;
cab737b9
L
6923 break;
6924 case 4:
368d64cc
L
6925 /* When there are 4 operands, the first two must be 8bit
6926 immediate operands. The source operand will be the 3rd
c0f3af97
L
6927 one.
6928
6929 For instructions with VexNDS, if the first operand
6930 an imm8, the source operand is the 2nd one. If the last
6931 operand is imm8, the source operand is the first one. */
9c2799c2 6932 gas_assert ((i.imm_operands == 2
7ab9ffdd
L
6933 && i.types[0].bitfield.imm8
6934 && i.types[1].bitfield.imm8)
2426c15f 6935 || (i.tm.opcode_modifier.vexvvvv == VEXXDS
7ab9ffdd
L
6936 && i.imm_operands == 1
6937 && (i.types[0].bitfield.imm8
43234a1e
L
6938 || i.types[i.operands - 1].bitfield.imm8
6939 || i.rounding)));
9f2670f2
L
6940 if (i.imm_operands == 2)
6941 source = 2;
6942 else
c0f3af97
L
6943 {
6944 if (i.types[0].bitfield.imm8)
6945 source = 1;
6946 else
6947 source = 0;
6948 }
c0f3af97
L
6949 break;
6950 case 5:
e771e7c9 6951 if (is_evex_encoding (&i.tm))
43234a1e
L
6952 {
6953 /* For EVEX instructions, when there are 5 operands, the
6954 first one must be immediate operand. If the second one
6955 is immediate operand, the source operand is the 3th
6956 one. If the last one is immediate operand, the source
6957 operand is the 2nd one. */
6958 gas_assert (i.imm_operands == 2
6959 && i.tm.opcode_modifier.sae
6960 && operand_type_check (i.types[0], imm));
6961 if (operand_type_check (i.types[1], imm))
6962 source = 2;
6963 else if (operand_type_check (i.types[4], imm))
6964 source = 1;
6965 else
6966 abort ();
6967 }
cab737b9
L
6968 break;
6969 default:
6970 abort ();
6971 }
6972
c0f3af97
L
6973 if (!vex_3_sources)
6974 {
6975 dest = source + 1;
6976
43234a1e
L
6977 /* RC/SAE operand could be between DEST and SRC. That happens
6978 when one operand is GPR and the other one is XMM/YMM/ZMM
6979 register. */
6980 if (i.rounding && i.rounding->operand == (int) dest)
6981 dest++;
6982
2426c15f 6983 if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
c0f3af97 6984 {
43234a1e 6985 /* For instructions with VexNDS, the register-only source
c5d0745b 6986 operand must be a 32/64bit integer, XMM, YMM, ZMM, or mask
43234a1e
L
6987 register. It is encoded in VEX prefix. We need to
6988 clear RegMem bit before calling operand_type_equal. */
f12dc422
L
6989
6990 i386_operand_type op;
6991 unsigned int vvvv;
6992
6993 /* Check register-only source operand when two source
6994 operands are swapped. */
6995 if (!i.tm.operand_types[source].bitfield.baseindex
6996 && i.tm.operand_types[dest].bitfield.baseindex)
6997 {
6998 vvvv = source;
6999 source = dest;
7000 }
7001 else
7002 vvvv = dest;
7003
7004 op = i.tm.operand_types[vvvv];
fa99fab2 7005 op.bitfield.regmem = 0;
c0f3af97 7006 if ((dest + 1) >= i.operands
dc821c5f
JB
7007 || ((!op.bitfield.reg
7008 || (!op.bitfield.dword && !op.bitfield.qword))
10c17abd 7009 && !op.bitfield.regsimd
43234a1e 7010 && !operand_type_equal (&op, &regmask)))
c0f3af97 7011 abort ();
f12dc422 7012 i.vex.register_specifier = i.op[vvvv].regs;
c0f3af97
L
7013 dest++;
7014 }
7015 }
29b0f896
AM
7016
7017 i.rm.mode = 3;
7018 /* One of the register operands will be encoded in the i.tm.reg
7019 field, the other in the combined i.tm.mode and i.tm.regmem
7020 fields. If no form of this instruction supports a memory
7021 destination operand, then we assume the source operand may
7022 sometimes be a memory operand and so we need to store the
7023 destination in the i.rm.reg field. */
40fb9820
L
7024 if (!i.tm.operand_types[dest].bitfield.regmem
7025 && operand_type_check (i.tm.operand_types[dest], anymem) == 0)
29b0f896
AM
7026 {
7027 i.rm.reg = i.op[dest].regs->reg_num;
7028 i.rm.regmem = i.op[source].regs->reg_num;
7029 if ((i.op[dest].regs->reg_flags & RegRex) != 0)
161a04f6 7030 i.rex |= REX_R;
43234a1e
L
7031 if ((i.op[dest].regs->reg_flags & RegVRex) != 0)
7032 i.vrex |= REX_R;
29b0f896 7033 if ((i.op[source].regs->reg_flags & RegRex) != 0)
161a04f6 7034 i.rex |= REX_B;
43234a1e
L
7035 if ((i.op[source].regs->reg_flags & RegVRex) != 0)
7036 i.vrex |= REX_B;
29b0f896
AM
7037 }
7038 else
7039 {
7040 i.rm.reg = i.op[source].regs->reg_num;
7041 i.rm.regmem = i.op[dest].regs->reg_num;
7042 if ((i.op[dest].regs->reg_flags & RegRex) != 0)
161a04f6 7043 i.rex |= REX_B;
43234a1e
L
7044 if ((i.op[dest].regs->reg_flags & RegVRex) != 0)
7045 i.vrex |= REX_B;
29b0f896 7046 if ((i.op[source].regs->reg_flags & RegRex) != 0)
161a04f6 7047 i.rex |= REX_R;
43234a1e
L
7048 if ((i.op[source].regs->reg_flags & RegVRex) != 0)
7049 i.vrex |= REX_R;
29b0f896 7050 }
e0c7f900 7051 if (flag_code != CODE_64BIT && (i.rex & REX_R))
c4a530c5 7052 {
e0c7f900 7053 if (!i.types[i.tm.operand_types[0].bitfield.regmem].bitfield.control)
c4a530c5 7054 abort ();
e0c7f900 7055 i.rex &= ~REX_R;
c4a530c5
JB
7056 add_prefix (LOCK_PREFIX_OPCODE);
7057 }
29b0f896
AM
7058 }
7059 else
7060 { /* If it's not 2 reg operands... */
c0f3af97
L
7061 unsigned int mem;
7062
29b0f896
AM
7063 if (i.mem_operands)
7064 {
7065 unsigned int fake_zero_displacement = 0;
99018f42 7066 unsigned int op;
4eed87de 7067
7ab9ffdd
L
7068 for (op = 0; op < i.operands; op++)
7069 if (operand_type_check (i.types[op], anymem))
7070 break;
7ab9ffdd 7071 gas_assert (op < i.operands);
29b0f896 7072
6c30d220
L
7073 if (i.tm.opcode_modifier.vecsib)
7074 {
7075 if (i.index_reg->reg_num == RegEiz
7076 || i.index_reg->reg_num == RegRiz)
7077 abort ();
7078
7079 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7080 if (!i.base_reg)
7081 {
7082 i.sib.base = NO_BASE_REGISTER;
7083 i.sib.scale = i.log2_scale_factor;
7084 i.types[op].bitfield.disp8 = 0;
7085 i.types[op].bitfield.disp16 = 0;
7086 i.types[op].bitfield.disp64 = 0;
43083a50 7087 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
6c30d220
L
7088 {
7089 /* Must be 32 bit */
7090 i.types[op].bitfield.disp32 = 1;
7091 i.types[op].bitfield.disp32s = 0;
7092 }
7093 else
7094 {
7095 i.types[op].bitfield.disp32 = 0;
7096 i.types[op].bitfield.disp32s = 1;
7097 }
7098 }
7099 i.sib.index = i.index_reg->reg_num;
7100 if ((i.index_reg->reg_flags & RegRex) != 0)
7101 i.rex |= REX_X;
43234a1e
L
7102 if ((i.index_reg->reg_flags & RegVRex) != 0)
7103 i.vrex |= REX_X;
6c30d220
L
7104 }
7105
29b0f896
AM
7106 default_seg = &ds;
7107
7108 if (i.base_reg == 0)
7109 {
7110 i.rm.mode = 0;
7111 if (!i.disp_operands)
9bb129e8 7112 fake_zero_displacement = 1;
29b0f896
AM
7113 if (i.index_reg == 0)
7114 {
73053c1f
JB
7115 i386_operand_type newdisp;
7116
6c30d220 7117 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896 7118 /* Operand is just <disp> */
20f0a1fc 7119 if (flag_code == CODE_64BIT)
29b0f896
AM
7120 {
7121 /* 64bit mode overwrites the 32bit absolute
7122 addressing by RIP relative addressing and
7123 absolute addressing is encoded by one of the
7124 redundant SIB forms. */
7125 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7126 i.sib.base = NO_BASE_REGISTER;
7127 i.sib.index = NO_INDEX_REGISTER;
73053c1f 7128 newdisp = (!i.prefix[ADDR_PREFIX] ? disp32s : disp32);
20f0a1fc 7129 }
fc225355
L
7130 else if ((flag_code == CODE_16BIT)
7131 ^ (i.prefix[ADDR_PREFIX] != 0))
20f0a1fc
NC
7132 {
7133 i.rm.regmem = NO_BASE_REGISTER_16;
73053c1f 7134 newdisp = disp16;
20f0a1fc
NC
7135 }
7136 else
7137 {
7138 i.rm.regmem = NO_BASE_REGISTER;
73053c1f 7139 newdisp = disp32;
29b0f896 7140 }
73053c1f
JB
7141 i.types[op] = operand_type_and_not (i.types[op], anydisp);
7142 i.types[op] = operand_type_or (i.types[op], newdisp);
29b0f896 7143 }
6c30d220 7144 else if (!i.tm.opcode_modifier.vecsib)
29b0f896 7145 {
6c30d220 7146 /* !i.base_reg && i.index_reg */
db51cc60
L
7147 if (i.index_reg->reg_num == RegEiz
7148 || i.index_reg->reg_num == RegRiz)
7149 i.sib.index = NO_INDEX_REGISTER;
7150 else
7151 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
7152 i.sib.base = NO_BASE_REGISTER;
7153 i.sib.scale = i.log2_scale_factor;
7154 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
40fb9820
L
7155 i.types[op].bitfield.disp8 = 0;
7156 i.types[op].bitfield.disp16 = 0;
7157 i.types[op].bitfield.disp64 = 0;
43083a50 7158 if (flag_code != CODE_64BIT || i.prefix[ADDR_PREFIX])
40fb9820
L
7159 {
7160 /* Must be 32 bit */
7161 i.types[op].bitfield.disp32 = 1;
7162 i.types[op].bitfield.disp32s = 0;
7163 }
29b0f896 7164 else
40fb9820
L
7165 {
7166 i.types[op].bitfield.disp32 = 0;
7167 i.types[op].bitfield.disp32s = 1;
7168 }
29b0f896 7169 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 7170 i.rex |= REX_X;
29b0f896
AM
7171 }
7172 }
7173 /* RIP addressing for 64bit mode. */
9a04903e
JB
7174 else if (i.base_reg->reg_num == RegRip ||
7175 i.base_reg->reg_num == RegEip)
29b0f896 7176 {
6c30d220 7177 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896 7178 i.rm.regmem = NO_BASE_REGISTER;
40fb9820
L
7179 i.types[op].bitfield.disp8 = 0;
7180 i.types[op].bitfield.disp16 = 0;
7181 i.types[op].bitfield.disp32 = 0;
7182 i.types[op].bitfield.disp32s = 1;
7183 i.types[op].bitfield.disp64 = 0;
71903a11 7184 i.flags[op] |= Operand_PCrel;
20f0a1fc
NC
7185 if (! i.disp_operands)
7186 fake_zero_displacement = 1;
29b0f896 7187 }
dc821c5f 7188 else if (i.base_reg->reg_type.bitfield.word)
29b0f896 7189 {
6c30d220 7190 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896
AM
7191 switch (i.base_reg->reg_num)
7192 {
7193 case 3: /* (%bx) */
7194 if (i.index_reg == 0)
7195 i.rm.regmem = 7;
7196 else /* (%bx,%si) -> 0, or (%bx,%di) -> 1 */
7197 i.rm.regmem = i.index_reg->reg_num - 6;
7198 break;
7199 case 5: /* (%bp) */
7200 default_seg = &ss;
7201 if (i.index_reg == 0)
7202 {
7203 i.rm.regmem = 6;
40fb9820 7204 if (operand_type_check (i.types[op], disp) == 0)
29b0f896
AM
7205 {
7206 /* fake (%bp) into 0(%bp) */
b5014f7a 7207 i.types[op].bitfield.disp8 = 1;
252b5132 7208 fake_zero_displacement = 1;
29b0f896
AM
7209 }
7210 }
7211 else /* (%bp,%si) -> 2, or (%bp,%di) -> 3 */
7212 i.rm.regmem = i.index_reg->reg_num - 6 + 2;
7213 break;
7214 default: /* (%si) -> 4 or (%di) -> 5 */
7215 i.rm.regmem = i.base_reg->reg_num - 6 + 4;
7216 }
7217 i.rm.mode = mode_from_disp_size (i.types[op]);
7218 }
7219 else /* i.base_reg and 32/64 bit mode */
7220 {
7221 if (flag_code == CODE_64BIT
40fb9820
L
7222 && operand_type_check (i.types[op], disp))
7223 {
73053c1f
JB
7224 i.types[op].bitfield.disp16 = 0;
7225 i.types[op].bitfield.disp64 = 0;
40fb9820 7226 if (i.prefix[ADDR_PREFIX] == 0)
73053c1f
JB
7227 {
7228 i.types[op].bitfield.disp32 = 0;
7229 i.types[op].bitfield.disp32s = 1;
7230 }
40fb9820 7231 else
73053c1f
JB
7232 {
7233 i.types[op].bitfield.disp32 = 1;
7234 i.types[op].bitfield.disp32s = 0;
7235 }
40fb9820 7236 }
20f0a1fc 7237
6c30d220
L
7238 if (!i.tm.opcode_modifier.vecsib)
7239 i.rm.regmem = i.base_reg->reg_num;
29b0f896 7240 if ((i.base_reg->reg_flags & RegRex) != 0)
161a04f6 7241 i.rex |= REX_B;
29b0f896
AM
7242 i.sib.base = i.base_reg->reg_num;
7243 /* x86-64 ignores REX prefix bit here to avoid decoder
7244 complications. */
848930b2
JB
7245 if (!(i.base_reg->reg_flags & RegRex)
7246 && (i.base_reg->reg_num == EBP_REG_NUM
7247 || i.base_reg->reg_num == ESP_REG_NUM))
29b0f896 7248 default_seg = &ss;
848930b2 7249 if (i.base_reg->reg_num == 5 && i.disp_operands == 0)
29b0f896 7250 {
848930b2 7251 fake_zero_displacement = 1;
b5014f7a 7252 i.types[op].bitfield.disp8 = 1;
29b0f896
AM
7253 }
7254 i.sib.scale = i.log2_scale_factor;
7255 if (i.index_reg == 0)
7256 {
6c30d220 7257 gas_assert (!i.tm.opcode_modifier.vecsib);
29b0f896
AM
7258 /* <disp>(%esp) becomes two byte modrm with no index
7259 register. We've already stored the code for esp
7260 in i.rm.regmem ie. ESCAPE_TO_TWO_BYTE_ADDRESSING.
7261 Any base register besides %esp will not use the
7262 extra modrm byte. */
7263 i.sib.index = NO_INDEX_REGISTER;
29b0f896 7264 }
6c30d220 7265 else if (!i.tm.opcode_modifier.vecsib)
29b0f896 7266 {
db51cc60
L
7267 if (i.index_reg->reg_num == RegEiz
7268 || i.index_reg->reg_num == RegRiz)
7269 i.sib.index = NO_INDEX_REGISTER;
7270 else
7271 i.sib.index = i.index_reg->reg_num;
29b0f896
AM
7272 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
7273 if ((i.index_reg->reg_flags & RegRex) != 0)
161a04f6 7274 i.rex |= REX_X;
29b0f896 7275 }
67a4f2b7
AO
7276
7277 if (i.disp_operands
7278 && (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
7279 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL))
7280 i.rm.mode = 0;
7281 else
a501d77e
L
7282 {
7283 if (!fake_zero_displacement
7284 && !i.disp_operands
7285 && i.disp_encoding)
7286 {
7287 fake_zero_displacement = 1;
7288 if (i.disp_encoding == disp_encoding_8bit)
7289 i.types[op].bitfield.disp8 = 1;
7290 else
7291 i.types[op].bitfield.disp32 = 1;
7292 }
7293 i.rm.mode = mode_from_disp_size (i.types[op]);
7294 }
29b0f896 7295 }
252b5132 7296
29b0f896
AM
7297 if (fake_zero_displacement)
7298 {
7299 /* Fakes a zero displacement assuming that i.types[op]
7300 holds the correct displacement size. */
7301 expressionS *exp;
7302
9c2799c2 7303 gas_assert (i.op[op].disps == 0);
29b0f896
AM
7304 exp = &disp_expressions[i.disp_operands++];
7305 i.op[op].disps = exp;
7306 exp->X_op = O_constant;
7307 exp->X_add_number = 0;
7308 exp->X_add_symbol = (symbolS *) 0;
7309 exp->X_op_symbol = (symbolS *) 0;
7310 }
c0f3af97
L
7311
7312 mem = op;
29b0f896 7313 }
c0f3af97
L
7314 else
7315 mem = ~0;
252b5132 7316
8c43a48b 7317 if (i.tm.opcode_modifier.vexsources == XOP2SOURCES)
5dd85c99
SP
7318 {
7319 if (operand_type_check (i.types[0], imm))
7320 i.vex.register_specifier = NULL;
7321 else
7322 {
7323 /* VEX.vvvv encodes one of the sources when the first
7324 operand is not an immediate. */
1ef99a7b 7325 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
7326 i.vex.register_specifier = i.op[0].regs;
7327 else
7328 i.vex.register_specifier = i.op[1].regs;
7329 }
7330
7331 /* Destination is a XMM register encoded in the ModRM.reg
7332 and VEX.R bit. */
7333 i.rm.reg = i.op[2].regs->reg_num;
7334 if ((i.op[2].regs->reg_flags & RegRex) != 0)
7335 i.rex |= REX_R;
7336
7337 /* ModRM.rm and VEX.B encodes the other source. */
7338 if (!i.mem_operands)
7339 {
7340 i.rm.mode = 3;
7341
1ef99a7b 7342 if (i.tm.opcode_modifier.vexw == VEXW0)
5dd85c99
SP
7343 i.rm.regmem = i.op[1].regs->reg_num;
7344 else
7345 i.rm.regmem = i.op[0].regs->reg_num;
7346
7347 if ((i.op[1].regs->reg_flags & RegRex) != 0)
7348 i.rex |= REX_B;
7349 }
7350 }
2426c15f 7351 else if (i.tm.opcode_modifier.vexvvvv == VEXLWP)
f88c9eb0
SP
7352 {
7353 i.vex.register_specifier = i.op[2].regs;
7354 if (!i.mem_operands)
7355 {
7356 i.rm.mode = 3;
7357 i.rm.regmem = i.op[1].regs->reg_num;
7358 if ((i.op[1].regs->reg_flags & RegRex) != 0)
7359 i.rex |= REX_B;
7360 }
7361 }
29b0f896
AM
7362 /* Fill in i.rm.reg or i.rm.regmem field with register operand
7363 (if any) based on i.tm.extension_opcode. Again, we must be
7364 careful to make sure that segment/control/debug/test/MMX
7365 registers are coded into the i.rm.reg field. */
f88c9eb0 7366 else if (i.reg_operands)
29b0f896 7367 {
99018f42 7368 unsigned int op;
7ab9ffdd
L
7369 unsigned int vex_reg = ~0;
7370
7371 for (op = 0; op < i.operands; op++)
dc821c5f 7372 if (i.types[op].bitfield.reg
7ab9ffdd 7373 || i.types[op].bitfield.regmmx
1b54b8d7 7374 || i.types[op].bitfield.regsimd
7e8b059b 7375 || i.types[op].bitfield.regbnd
43234a1e 7376 || i.types[op].bitfield.regmask
7ab9ffdd
L
7377 || i.types[op].bitfield.sreg2
7378 || i.types[op].bitfield.sreg3
7379 || i.types[op].bitfield.control
7380 || i.types[op].bitfield.debug
7381 || i.types[op].bitfield.test)
7382 break;
c0209578 7383
7ab9ffdd
L
7384 if (vex_3_sources)
7385 op = dest;
2426c15f 7386 else if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
7ab9ffdd
L
7387 {
7388 /* For instructions with VexNDS, the register-only
7389 source operand is encoded in VEX prefix. */
7390 gas_assert (mem != (unsigned int) ~0);
c0f3af97 7391
7ab9ffdd 7392 if (op > mem)
c0f3af97 7393 {
7ab9ffdd
L
7394 vex_reg = op++;
7395 gas_assert (op < i.operands);
c0f3af97
L
7396 }
7397 else
c0f3af97 7398 {
f12dc422
L
7399 /* Check register-only source operand when two source
7400 operands are swapped. */
7401 if (!i.tm.operand_types[op].bitfield.baseindex
7402 && i.tm.operand_types[op + 1].bitfield.baseindex)
7403 {
7404 vex_reg = op;
7405 op += 2;
7406 gas_assert (mem == (vex_reg + 1)
7407 && op < i.operands);
7408 }
7409 else
7410 {
7411 vex_reg = op + 1;
7412 gas_assert (vex_reg < i.operands);
7413 }
c0f3af97 7414 }
7ab9ffdd 7415 }
2426c15f 7416 else if (i.tm.opcode_modifier.vexvvvv == VEXNDD)
7ab9ffdd 7417 {
f12dc422 7418 /* For instructions with VexNDD, the register destination
7ab9ffdd 7419 is encoded in VEX prefix. */
f12dc422
L
7420 if (i.mem_operands == 0)
7421 {
7422 /* There is no memory operand. */
7423 gas_assert ((op + 2) == i.operands);
7424 vex_reg = op + 1;
7425 }
7426 else
8d63c93e 7427 {
ed438a93
JB
7428 /* There are only 2 non-immediate operands. */
7429 gas_assert (op < i.imm_operands + 2
7430 && i.operands == i.imm_operands + 2);
7431 vex_reg = i.imm_operands + 1;
f12dc422 7432 }
7ab9ffdd
L
7433 }
7434 else
7435 gas_assert (op < i.operands);
99018f42 7436
7ab9ffdd
L
7437 if (vex_reg != (unsigned int) ~0)
7438 {
f12dc422 7439 i386_operand_type *type = &i.tm.operand_types[vex_reg];
7ab9ffdd 7440
dc821c5f
JB
7441 if ((!type->bitfield.reg
7442 || (!type->bitfield.dword && !type->bitfield.qword))
10c17abd 7443 && !type->bitfield.regsimd
43234a1e 7444 && !operand_type_equal (type, &regmask))
7ab9ffdd 7445 abort ();
f88c9eb0 7446
7ab9ffdd
L
7447 i.vex.register_specifier = i.op[vex_reg].regs;
7448 }
7449
1b9f0c97
L
7450 /* Don't set OP operand twice. */
7451 if (vex_reg != op)
7ab9ffdd 7452 {
1b9f0c97
L
7453 /* If there is an extension opcode to put here, the
7454 register number must be put into the regmem field. */
7455 if (i.tm.extension_opcode != None)
7456 {
7457 i.rm.regmem = i.op[op].regs->reg_num;
7458 if ((i.op[op].regs->reg_flags & RegRex) != 0)
7459 i.rex |= REX_B;
43234a1e
L
7460 if ((i.op[op].regs->reg_flags & RegVRex) != 0)
7461 i.vrex |= REX_B;
1b9f0c97
L
7462 }
7463 else
7464 {
7465 i.rm.reg = i.op[op].regs->reg_num;
7466 if ((i.op[op].regs->reg_flags & RegRex) != 0)
7467 i.rex |= REX_R;
43234a1e
L
7468 if ((i.op[op].regs->reg_flags & RegVRex) != 0)
7469 i.vrex |= REX_R;
1b9f0c97 7470 }
7ab9ffdd 7471 }
252b5132 7472
29b0f896
AM
7473 /* Now, if no memory operand has set i.rm.mode = 0, 1, 2 we
7474 must set it to 3 to indicate this is a register operand
7475 in the regmem field. */
7476 if (!i.mem_operands)
7477 i.rm.mode = 3;
7478 }
252b5132 7479
29b0f896 7480 /* Fill in i.rm.reg field with extension opcode (if any). */
c1e679ec 7481 if (i.tm.extension_opcode != None)
29b0f896
AM
7482 i.rm.reg = i.tm.extension_opcode;
7483 }
7484 return default_seg;
7485}
252b5132 7486
29b0f896 7487static void
e3bb37b5 7488output_branch (void)
29b0f896
AM
7489{
7490 char *p;
f8a5c266 7491 int size;
29b0f896
AM
7492 int code16;
7493 int prefix;
7494 relax_substateT subtype;
7495 symbolS *sym;
7496 offsetT off;
7497
f8a5c266 7498 code16 = flag_code == CODE_16BIT ? CODE16 : 0;
a501d77e 7499 size = i.disp_encoding == disp_encoding_32bit ? BIG : SMALL;
29b0f896
AM
7500
7501 prefix = 0;
7502 if (i.prefix[DATA_PREFIX] != 0)
252b5132 7503 {
29b0f896
AM
7504 prefix = 1;
7505 i.prefixes -= 1;
7506 code16 ^= CODE16;
252b5132 7507 }
29b0f896
AM
7508 /* Pentium4 branch hints. */
7509 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
7510 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
2f66722d 7511 {
29b0f896
AM
7512 prefix++;
7513 i.prefixes--;
7514 }
7515 if (i.prefix[REX_PREFIX] != 0)
7516 {
7517 prefix++;
7518 i.prefixes--;
2f66722d
AM
7519 }
7520
7e8b059b
L
7521 /* BND prefixed jump. */
7522 if (i.prefix[BND_PREFIX] != 0)
7523 {
7524 FRAG_APPEND_1_CHAR (i.prefix[BND_PREFIX]);
7525 i.prefixes -= 1;
7526 }
7527
29b0f896
AM
7528 if (i.prefixes != 0 && !intel_syntax)
7529 as_warn (_("skipping prefixes on this instruction"));
7530
7531 /* It's always a symbol; End frag & setup for relax.
7532 Make sure there is enough room in this frag for the largest
7533 instruction we may generate in md_convert_frag. This is 2
7534 bytes for the opcode and room for the prefix and largest
7535 displacement. */
7536 frag_grow (prefix + 2 + 4);
7537 /* Prefix and 1 opcode byte go in fr_fix. */
7538 p = frag_more (prefix + 1);
7539 if (i.prefix[DATA_PREFIX] != 0)
7540 *p++ = DATA_PREFIX_OPCODE;
7541 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE
7542 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE)
7543 *p++ = i.prefix[SEG_PREFIX];
7544 if (i.prefix[REX_PREFIX] != 0)
7545 *p++ = i.prefix[REX_PREFIX];
7546 *p = i.tm.base_opcode;
7547
7548 if ((unsigned char) *p == JUMP_PC_RELATIVE)
f8a5c266 7549 subtype = ENCODE_RELAX_STATE (UNCOND_JUMP, size);
40fb9820 7550 else if (cpu_arch_flags.bitfield.cpui386)
f8a5c266 7551 subtype = ENCODE_RELAX_STATE (COND_JUMP, size);
29b0f896 7552 else
f8a5c266 7553 subtype = ENCODE_RELAX_STATE (COND_JUMP86, size);
29b0f896 7554 subtype |= code16;
3e73aa7c 7555
29b0f896
AM
7556 sym = i.op[0].disps->X_add_symbol;
7557 off = i.op[0].disps->X_add_number;
3e73aa7c 7558
29b0f896
AM
7559 if (i.op[0].disps->X_op != O_constant
7560 && i.op[0].disps->X_op != O_symbol)
3e73aa7c 7561 {
29b0f896
AM
7562 /* Handle complex expressions. */
7563 sym = make_expr_symbol (i.op[0].disps);
7564 off = 0;
7565 }
3e73aa7c 7566
29b0f896
AM
7567 /* 1 possible extra opcode + 4 byte displacement go in var part.
7568 Pass reloc in fr_var. */
d258b828 7569 frag_var (rs_machine_dependent, 5, i.reloc[0], subtype, sym, off, p);
29b0f896 7570}
3e73aa7c 7571
bd7ab16b
L
7572#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
7573/* Return TRUE iff PLT32 relocation should be used for branching to
7574 symbol S. */
7575
7576static bfd_boolean
7577need_plt32_p (symbolS *s)
7578{
7579 /* PLT32 relocation is ELF only. */
7580 if (!IS_ELF)
7581 return FALSE;
7582
7583 /* Since there is no need to prepare for PLT branch on x86-64, we
7584 can generate R_X86_64_PLT32, instead of R_X86_64_PC32, which can
7585 be used as a marker for 32-bit PC-relative branches. */
7586 if (!object_64bit)
7587 return FALSE;
7588
7589 /* Weak or undefined symbol need PLT32 relocation. */
7590 if (S_IS_WEAK (s) || !S_IS_DEFINED (s))
7591 return TRUE;
7592
7593 /* Non-global symbol doesn't need PLT32 relocation. */
7594 if (! S_IS_EXTERNAL (s))
7595 return FALSE;
7596
7597 /* Other global symbols need PLT32 relocation. NB: Symbol with
7598 non-default visibilities are treated as normal global symbol
7599 so that PLT32 relocation can be used as a marker for 32-bit
7600 PC-relative branches. It is useful for linker relaxation. */
7601 return TRUE;
7602}
7603#endif
7604
29b0f896 7605static void
e3bb37b5 7606output_jump (void)
29b0f896
AM
7607{
7608 char *p;
7609 int size;
3e02c1cc 7610 fixS *fixP;
bd7ab16b 7611 bfd_reloc_code_real_type jump_reloc = i.reloc[0];
29b0f896 7612
40fb9820 7613 if (i.tm.opcode_modifier.jumpbyte)
29b0f896
AM
7614 {
7615 /* This is a loop or jecxz type instruction. */
7616 size = 1;
7617 if (i.prefix[ADDR_PREFIX] != 0)
7618 {
7619 FRAG_APPEND_1_CHAR (ADDR_PREFIX_OPCODE);
7620 i.prefixes -= 1;
7621 }
7622 /* Pentium4 branch hints. */
7623 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
7624 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
7625 {
7626 FRAG_APPEND_1_CHAR (i.prefix[SEG_PREFIX]);
7627 i.prefixes--;
3e73aa7c
JH
7628 }
7629 }
29b0f896
AM
7630 else
7631 {
7632 int code16;
3e73aa7c 7633
29b0f896
AM
7634 code16 = 0;
7635 if (flag_code == CODE_16BIT)
7636 code16 = CODE16;
3e73aa7c 7637
29b0f896
AM
7638 if (i.prefix[DATA_PREFIX] != 0)
7639 {
7640 FRAG_APPEND_1_CHAR (DATA_PREFIX_OPCODE);
7641 i.prefixes -= 1;
7642 code16 ^= CODE16;
7643 }
252b5132 7644
29b0f896
AM
7645 size = 4;
7646 if (code16)
7647 size = 2;
7648 }
9fcc94b6 7649
29b0f896
AM
7650 if (i.prefix[REX_PREFIX] != 0)
7651 {
7652 FRAG_APPEND_1_CHAR (i.prefix[REX_PREFIX]);
7653 i.prefixes -= 1;
7654 }
252b5132 7655
7e8b059b
L
7656 /* BND prefixed jump. */
7657 if (i.prefix[BND_PREFIX] != 0)
7658 {
7659 FRAG_APPEND_1_CHAR (i.prefix[BND_PREFIX]);
7660 i.prefixes -= 1;
7661 }
7662
29b0f896
AM
7663 if (i.prefixes != 0 && !intel_syntax)
7664 as_warn (_("skipping prefixes on this instruction"));
e0890092 7665
42164a71
L
7666 p = frag_more (i.tm.opcode_length + size);
7667 switch (i.tm.opcode_length)
7668 {
7669 case 2:
7670 *p++ = i.tm.base_opcode >> 8;
1a0670f3 7671 /* Fall through. */
42164a71
L
7672 case 1:
7673 *p++ = i.tm.base_opcode;
7674 break;
7675 default:
7676 abort ();
7677 }
e0890092 7678
bd7ab16b
L
7679#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
7680 if (size == 4
7681 && jump_reloc == NO_RELOC
7682 && need_plt32_p (i.op[0].disps->X_add_symbol))
7683 jump_reloc = BFD_RELOC_X86_64_PLT32;
7684#endif
7685
7686 jump_reloc = reloc (size, 1, 1, jump_reloc);
7687
3e02c1cc 7688 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal, size,
bd7ab16b 7689 i.op[0].disps, 1, jump_reloc);
3e02c1cc
AM
7690
7691 /* All jumps handled here are signed, but don't use a signed limit
7692 check for 32 and 16 bit jumps as we want to allow wrap around at
7693 4G and 64k respectively. */
7694 if (size == 1)
7695 fixP->fx_signed = 1;
29b0f896 7696}
e0890092 7697
29b0f896 7698static void
e3bb37b5 7699output_interseg_jump (void)
29b0f896
AM
7700{
7701 char *p;
7702 int size;
7703 int prefix;
7704 int code16;
252b5132 7705
29b0f896
AM
7706 code16 = 0;
7707 if (flag_code == CODE_16BIT)
7708 code16 = CODE16;
a217f122 7709
29b0f896
AM
7710 prefix = 0;
7711 if (i.prefix[DATA_PREFIX] != 0)
7712 {
7713 prefix = 1;
7714 i.prefixes -= 1;
7715 code16 ^= CODE16;
7716 }
7717 if (i.prefix[REX_PREFIX] != 0)
7718 {
7719 prefix++;
7720 i.prefixes -= 1;
7721 }
252b5132 7722
29b0f896
AM
7723 size = 4;
7724 if (code16)
7725 size = 2;
252b5132 7726
29b0f896
AM
7727 if (i.prefixes != 0 && !intel_syntax)
7728 as_warn (_("skipping prefixes on this instruction"));
252b5132 7729
29b0f896
AM
7730 /* 1 opcode; 2 segment; offset */
7731 p = frag_more (prefix + 1 + 2 + size);
3e73aa7c 7732
29b0f896
AM
7733 if (i.prefix[DATA_PREFIX] != 0)
7734 *p++ = DATA_PREFIX_OPCODE;
252b5132 7735
29b0f896
AM
7736 if (i.prefix[REX_PREFIX] != 0)
7737 *p++ = i.prefix[REX_PREFIX];
252b5132 7738
29b0f896
AM
7739 *p++ = i.tm.base_opcode;
7740 if (i.op[1].imms->X_op == O_constant)
7741 {
7742 offsetT n = i.op[1].imms->X_add_number;
252b5132 7743
29b0f896
AM
7744 if (size == 2
7745 && !fits_in_unsigned_word (n)
7746 && !fits_in_signed_word (n))
7747 {
7748 as_bad (_("16-bit jump out of range"));
7749 return;
7750 }
7751 md_number_to_chars (p, n, size);
7752 }
7753 else
7754 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
d258b828 7755 i.op[1].imms, 0, reloc (size, 0, 0, i.reloc[1]));
29b0f896
AM
7756 if (i.op[0].imms->X_op != O_constant)
7757 as_bad (_("can't handle non absolute segment in `%s'"),
7758 i.tm.name);
7759 md_number_to_chars (p + size, (valueT) i.op[0].imms->X_add_number, 2);
7760}
a217f122 7761
29b0f896 7762static void
e3bb37b5 7763output_insn (void)
29b0f896 7764{
2bbd9c25
JJ
7765 fragS *insn_start_frag;
7766 offsetT insn_start_off;
7767
29b0f896
AM
7768 /* Tie dwarf2 debug info to the address at the start of the insn.
7769 We can't do this after the insn has been output as the current
7770 frag may have been closed off. eg. by frag_var. */
7771 dwarf2_emit_insn (0);
7772
2bbd9c25
JJ
7773 insn_start_frag = frag_now;
7774 insn_start_off = frag_now_fix ();
7775
29b0f896 7776 /* Output jumps. */
40fb9820 7777 if (i.tm.opcode_modifier.jump)
29b0f896 7778 output_branch ();
40fb9820
L
7779 else if (i.tm.opcode_modifier.jumpbyte
7780 || i.tm.opcode_modifier.jumpdword)
29b0f896 7781 output_jump ();
40fb9820 7782 else if (i.tm.opcode_modifier.jumpintersegment)
29b0f896
AM
7783 output_interseg_jump ();
7784 else
7785 {
7786 /* Output normal instructions here. */
7787 char *p;
7788 unsigned char *q;
47465058 7789 unsigned int j;
331d2d0d 7790 unsigned int prefix;
4dffcebc 7791
e4e00185
AS
7792 if (avoid_fence
7793 && i.tm.base_opcode == 0xfae
7794 && i.operands == 1
7795 && i.imm_operands == 1
7796 && (i.op[0].imms->X_add_number == 0xe8
7797 || i.op[0].imms->X_add_number == 0xf0
7798 || i.op[0].imms->X_add_number == 0xf8))
7799 {
7800 /* Encode lfence, mfence, and sfence as
7801 f0 83 04 24 00 lock addl $0x0, (%{re}sp). */
7802 offsetT val = 0x240483f0ULL;
7803 p = frag_more (5);
7804 md_number_to_chars (p, val, 5);
7805 return;
7806 }
7807
d022bddd
IT
7808 /* Some processors fail on LOCK prefix. This options makes
7809 assembler ignore LOCK prefix and serves as a workaround. */
7810 if (omit_lock_prefix)
7811 {
7812 if (i.tm.base_opcode == LOCK_PREFIX_OPCODE)
7813 return;
7814 i.prefix[LOCK_PREFIX] = 0;
7815 }
7816
43234a1e
L
7817 /* Since the VEX/EVEX prefix contains the implicit prefix, we
7818 don't need the explicit prefix. */
7819 if (!i.tm.opcode_modifier.vex && !i.tm.opcode_modifier.evex)
bc4bd9ab 7820 {
c0f3af97 7821 switch (i.tm.opcode_length)
bc4bd9ab 7822 {
c0f3af97
L
7823 case 3:
7824 if (i.tm.base_opcode & 0xff000000)
4dffcebc 7825 {
c0f3af97 7826 prefix = (i.tm.base_opcode >> 24) & 0xff;
bd59a631 7827 add_prefix (prefix);
c0f3af97
L
7828 }
7829 break;
7830 case 2:
7831 if ((i.tm.base_opcode & 0xff0000) != 0)
7832 {
7833 prefix = (i.tm.base_opcode >> 16) & 0xff;
bd59a631
JB
7834 if (!i.tm.cpu_flags.bitfield.cpupadlock
7835 || prefix != REPE_PREFIX_OPCODE
7836 || (i.prefix[REP_PREFIX] != REPE_PREFIX_OPCODE))
4dffcebc
L
7837 add_prefix (prefix);
7838 }
c0f3af97
L
7839 break;
7840 case 1:
7841 break;
390c91cf
L
7842 case 0:
7843 /* Check for pseudo prefixes. */
7844 as_bad_where (insn_start_frag->fr_file,
7845 insn_start_frag->fr_line,
7846 _("pseudo prefix without instruction"));
7847 return;
c0f3af97
L
7848 default:
7849 abort ();
bc4bd9ab 7850 }
c0f3af97 7851
6d19a37a 7852#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
cf61b747
L
7853 /* For x32, add a dummy REX_OPCODE prefix for mov/add with
7854 R_X86_64_GOTTPOFF relocation so that linker can safely
7855 perform IE->LE optimization. */
7856 if (x86_elf_abi == X86_64_X32_ABI
7857 && i.operands == 2
7858 && i.reloc[0] == BFD_RELOC_X86_64_GOTTPOFF
7859 && i.prefix[REX_PREFIX] == 0)
7860 add_prefix (REX_OPCODE);
6d19a37a 7861#endif
cf61b747 7862
c0f3af97
L
7863 /* The prefix bytes. */
7864 for (j = ARRAY_SIZE (i.prefix), q = i.prefix; j > 0; j--, q++)
7865 if (*q)
7866 FRAG_APPEND_1_CHAR (*q);
0f10071e 7867 }
ae5c1c7b 7868 else
c0f3af97
L
7869 {
7870 for (j = 0, q = i.prefix; j < ARRAY_SIZE (i.prefix); j++, q++)
7871 if (*q)
7872 switch (j)
7873 {
7874 case REX_PREFIX:
7875 /* REX byte is encoded in VEX prefix. */
7876 break;
7877 case SEG_PREFIX:
7878 case ADDR_PREFIX:
7879 FRAG_APPEND_1_CHAR (*q);
7880 break;
7881 default:
7882 /* There should be no other prefixes for instructions
7883 with VEX prefix. */
7884 abort ();
7885 }
7886
43234a1e
L
7887 /* For EVEX instructions i.vrex should become 0 after
7888 build_evex_prefix. For VEX instructions upper 16 registers
7889 aren't available, so VREX should be 0. */
7890 if (i.vrex)
7891 abort ();
c0f3af97
L
7892 /* Now the VEX prefix. */
7893 p = frag_more (i.vex.length);
7894 for (j = 0; j < i.vex.length; j++)
7895 p[j] = i.vex.bytes[j];
7896 }
252b5132 7897
29b0f896 7898 /* Now the opcode; be careful about word order here! */
4dffcebc 7899 if (i.tm.opcode_length == 1)
29b0f896
AM
7900 {
7901 FRAG_APPEND_1_CHAR (i.tm.base_opcode);
7902 }
7903 else
7904 {
4dffcebc 7905 switch (i.tm.opcode_length)
331d2d0d 7906 {
43234a1e
L
7907 case 4:
7908 p = frag_more (4);
7909 *p++ = (i.tm.base_opcode >> 24) & 0xff;
7910 *p++ = (i.tm.base_opcode >> 16) & 0xff;
7911 break;
4dffcebc 7912 case 3:
331d2d0d
L
7913 p = frag_more (3);
7914 *p++ = (i.tm.base_opcode >> 16) & 0xff;
4dffcebc
L
7915 break;
7916 case 2:
7917 p = frag_more (2);
7918 break;
7919 default:
7920 abort ();
7921 break;
331d2d0d 7922 }
0f10071e 7923
29b0f896
AM
7924 /* Put out high byte first: can't use md_number_to_chars! */
7925 *p++ = (i.tm.base_opcode >> 8) & 0xff;
7926 *p = i.tm.base_opcode & 0xff;
7927 }
3e73aa7c 7928
29b0f896 7929 /* Now the modrm byte and sib byte (if present). */
40fb9820 7930 if (i.tm.opcode_modifier.modrm)
29b0f896 7931 {
4a3523fa
L
7932 FRAG_APPEND_1_CHAR ((i.rm.regmem << 0
7933 | i.rm.reg << 3
7934 | i.rm.mode << 6));
29b0f896
AM
7935 /* If i.rm.regmem == ESP (4)
7936 && i.rm.mode != (Register mode)
7937 && not 16 bit
7938 ==> need second modrm byte. */
7939 if (i.rm.regmem == ESCAPE_TO_TWO_BYTE_ADDRESSING
7940 && i.rm.mode != 3
dc821c5f 7941 && !(i.base_reg && i.base_reg->reg_type.bitfield.word))
4a3523fa
L
7942 FRAG_APPEND_1_CHAR ((i.sib.base << 0
7943 | i.sib.index << 3
7944 | i.sib.scale << 6));
29b0f896 7945 }
3e73aa7c 7946
29b0f896 7947 if (i.disp_operands)
2bbd9c25 7948 output_disp (insn_start_frag, insn_start_off);
3e73aa7c 7949
29b0f896 7950 if (i.imm_operands)
2bbd9c25 7951 output_imm (insn_start_frag, insn_start_off);
29b0f896 7952 }
252b5132 7953
29b0f896
AM
7954#ifdef DEBUG386
7955 if (flag_debug)
7956 {
7b81dfbb 7957 pi ("" /*line*/, &i);
29b0f896
AM
7958 }
7959#endif /* DEBUG386 */
7960}
252b5132 7961
e205caa7
L
7962/* Return the size of the displacement operand N. */
7963
7964static int
7965disp_size (unsigned int n)
7966{
7967 int size = 4;
43234a1e 7968
b5014f7a 7969 if (i.types[n].bitfield.disp64)
40fb9820
L
7970 size = 8;
7971 else if (i.types[n].bitfield.disp8)
7972 size = 1;
7973 else if (i.types[n].bitfield.disp16)
7974 size = 2;
e205caa7
L
7975 return size;
7976}
7977
7978/* Return the size of the immediate operand N. */
7979
7980static int
7981imm_size (unsigned int n)
7982{
7983 int size = 4;
40fb9820
L
7984 if (i.types[n].bitfield.imm64)
7985 size = 8;
7986 else if (i.types[n].bitfield.imm8 || i.types[n].bitfield.imm8s)
7987 size = 1;
7988 else if (i.types[n].bitfield.imm16)
7989 size = 2;
e205caa7
L
7990 return size;
7991}
7992
29b0f896 7993static void
64e74474 7994output_disp (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
7995{
7996 char *p;
7997 unsigned int n;
252b5132 7998
29b0f896
AM
7999 for (n = 0; n < i.operands; n++)
8000 {
b5014f7a 8001 if (operand_type_check (i.types[n], disp))
29b0f896
AM
8002 {
8003 if (i.op[n].disps->X_op == O_constant)
8004 {
e205caa7 8005 int size = disp_size (n);
43234a1e 8006 offsetT val = i.op[n].disps->X_add_number;
252b5132 8007
629cfaf1
JB
8008 val = offset_in_range (val >> (size == 1 ? i.memshift : 0),
8009 size);
29b0f896
AM
8010 p = frag_more (size);
8011 md_number_to_chars (p, val, size);
8012 }
8013 else
8014 {
f86103b7 8015 enum bfd_reloc_code_real reloc_type;
e205caa7 8016 int size = disp_size (n);
40fb9820 8017 int sign = i.types[n].bitfield.disp32s;
29b0f896 8018 int pcrel = (i.flags[n] & Operand_PCrel) != 0;
02a86693 8019 fixS *fixP;
29b0f896 8020
e205caa7 8021 /* We can't have 8 bit displacement here. */
9c2799c2 8022 gas_assert (!i.types[n].bitfield.disp8);
e205caa7 8023
29b0f896
AM
8024 /* The PC relative address is computed relative
8025 to the instruction boundary, so in case immediate
8026 fields follows, we need to adjust the value. */
8027 if (pcrel && i.imm_operands)
8028 {
29b0f896 8029 unsigned int n1;
e205caa7 8030 int sz = 0;
252b5132 8031
29b0f896 8032 for (n1 = 0; n1 < i.operands; n1++)
40fb9820 8033 if (operand_type_check (i.types[n1], imm))
252b5132 8034 {
e205caa7
L
8035 /* Only one immediate is allowed for PC
8036 relative address. */
9c2799c2 8037 gas_assert (sz == 0);
e205caa7
L
8038 sz = imm_size (n1);
8039 i.op[n].disps->X_add_number -= sz;
252b5132 8040 }
29b0f896 8041 /* We should find the immediate. */
9c2799c2 8042 gas_assert (sz != 0);
29b0f896 8043 }
520dc8e8 8044
29b0f896 8045 p = frag_more (size);
d258b828 8046 reloc_type = reloc (size, pcrel, sign, i.reloc[n]);
d6ab8113 8047 if (GOT_symbol
2bbd9c25 8048 && GOT_symbol == i.op[n].disps->X_add_symbol
d6ab8113 8049 && (((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
8050 || reloc_type == BFD_RELOC_X86_64_32S
8051 || (reloc_type == BFD_RELOC_64
8052 && object_64bit))
d6ab8113
JB
8053 && (i.op[n].disps->X_op == O_symbol
8054 || (i.op[n].disps->X_op == O_add
8055 && ((symbol_get_value_expression
8056 (i.op[n].disps->X_op_symbol)->X_op)
8057 == O_subtract))))
8058 || reloc_type == BFD_RELOC_32_PCREL))
2bbd9c25
JJ
8059 {
8060 offsetT add;
8061
8062 if (insn_start_frag == frag_now)
8063 add = (p - frag_now->fr_literal) - insn_start_off;
8064 else
8065 {
8066 fragS *fr;
8067
8068 add = insn_start_frag->fr_fix - insn_start_off;
8069 for (fr = insn_start_frag->fr_next;
8070 fr && fr != frag_now; fr = fr->fr_next)
8071 add += fr->fr_fix;
8072 add += p - frag_now->fr_literal;
8073 }
8074
4fa24527 8075 if (!object_64bit)
7b81dfbb
AJ
8076 {
8077 reloc_type = BFD_RELOC_386_GOTPC;
8078 i.op[n].imms->X_add_number += add;
8079 }
8080 else if (reloc_type == BFD_RELOC_64)
8081 reloc_type = BFD_RELOC_X86_64_GOTPC64;
d6ab8113 8082 else
7b81dfbb
AJ
8083 /* Don't do the adjustment for x86-64, as there
8084 the pcrel addressing is relative to the _next_
8085 insn, and that is taken care of in other code. */
d6ab8113 8086 reloc_type = BFD_RELOC_X86_64_GOTPC32;
2bbd9c25 8087 }
02a86693
L
8088 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal,
8089 size, i.op[n].disps, pcrel,
8090 reloc_type);
8091 /* Check for "call/jmp *mem", "mov mem, %reg",
8092 "test %reg, mem" and "binop mem, %reg" where binop
8093 is one of adc, add, and, cmp, or, sbb, sub, xor
0cb4071e
L
8094 instructions. Always generate R_386_GOT32X for
8095 "sym*GOT" operand in 32-bit mode. */
8096 if ((generate_relax_relocations
8097 || (!object_64bit
8098 && i.rm.mode == 0
8099 && i.rm.regmem == 5))
8100 && (i.rm.mode == 2
8101 || (i.rm.mode == 0 && i.rm.regmem == 5))
02a86693
L
8102 && ((i.operands == 1
8103 && i.tm.base_opcode == 0xff
8104 && (i.rm.reg == 2 || i.rm.reg == 4))
8105 || (i.operands == 2
8106 && (i.tm.base_opcode == 0x8b
8107 || i.tm.base_opcode == 0x85
8108 || (i.tm.base_opcode & 0xc7) == 0x03))))
8109 {
8110 if (object_64bit)
8111 {
8112 fixP->fx_tcbit = i.rex != 0;
8113 if (i.base_reg
8114 && (i.base_reg->reg_num == RegRip
8115 || i.base_reg->reg_num == RegEip))
8116 fixP->fx_tcbit2 = 1;
8117 }
8118 else
8119 fixP->fx_tcbit2 = 1;
8120 }
29b0f896
AM
8121 }
8122 }
8123 }
8124}
252b5132 8125
29b0f896 8126static void
64e74474 8127output_imm (fragS *insn_start_frag, offsetT insn_start_off)
29b0f896
AM
8128{
8129 char *p;
8130 unsigned int n;
252b5132 8131
29b0f896
AM
8132 for (n = 0; n < i.operands; n++)
8133 {
43234a1e
L
8134 /* Skip SAE/RC Imm operand in EVEX. They are already handled. */
8135 if (i.rounding && (int) n == i.rounding->operand)
8136 continue;
8137
40fb9820 8138 if (operand_type_check (i.types[n], imm))
29b0f896
AM
8139 {
8140 if (i.op[n].imms->X_op == O_constant)
8141 {
e205caa7 8142 int size = imm_size (n);
29b0f896 8143 offsetT val;
b4cac588 8144
29b0f896
AM
8145 val = offset_in_range (i.op[n].imms->X_add_number,
8146 size);
8147 p = frag_more (size);
8148 md_number_to_chars (p, val, size);
8149 }
8150 else
8151 {
8152 /* Not absolute_section.
8153 Need a 32-bit fixup (don't support 8bit
8154 non-absolute imms). Try to support other
8155 sizes ... */
f86103b7 8156 enum bfd_reloc_code_real reloc_type;
e205caa7
L
8157 int size = imm_size (n);
8158 int sign;
29b0f896 8159
40fb9820 8160 if (i.types[n].bitfield.imm32s
a7d61044 8161 && (i.suffix == QWORD_MNEM_SUFFIX
40fb9820 8162 || (!i.suffix && i.tm.opcode_modifier.no_lsuf)))
29b0f896 8163 sign = 1;
e205caa7
L
8164 else
8165 sign = 0;
520dc8e8 8166
29b0f896 8167 p = frag_more (size);
d258b828 8168 reloc_type = reloc (size, 0, sign, i.reloc[n]);
f86103b7 8169
2bbd9c25
JJ
8170 /* This is tough to explain. We end up with this one if we
8171 * have operands that look like
8172 * "_GLOBAL_OFFSET_TABLE_+[.-.L284]". The goal here is to
8173 * obtain the absolute address of the GOT, and it is strongly
8174 * preferable from a performance point of view to avoid using
8175 * a runtime relocation for this. The actual sequence of
8176 * instructions often look something like:
8177 *
8178 * call .L66
8179 * .L66:
8180 * popl %ebx
8181 * addl $_GLOBAL_OFFSET_TABLE_+[.-.L66],%ebx
8182 *
8183 * The call and pop essentially return the absolute address
8184 * of the label .L66 and store it in %ebx. The linker itself
8185 * will ultimately change the first operand of the addl so
8186 * that %ebx points to the GOT, but to keep things simple, the
8187 * .o file must have this operand set so that it generates not
8188 * the absolute address of .L66, but the absolute address of
8189 * itself. This allows the linker itself simply treat a GOTPC
8190 * relocation as asking for a pcrel offset to the GOT to be
8191 * added in, and the addend of the relocation is stored in the
8192 * operand field for the instruction itself.
8193 *
8194 * Our job here is to fix the operand so that it would add
8195 * the correct offset so that %ebx would point to itself. The
8196 * thing that is tricky is that .-.L66 will point to the
8197 * beginning of the instruction, so we need to further modify
8198 * the operand so that it will point to itself. There are
8199 * other cases where you have something like:
8200 *
8201 * .long $_GLOBAL_OFFSET_TABLE_+[.-.L66]
8202 *
8203 * and here no correction would be required. Internally in
8204 * the assembler we treat operands of this form as not being
8205 * pcrel since the '.' is explicitly mentioned, and I wonder
8206 * whether it would simplify matters to do it this way. Who
8207 * knows. In earlier versions of the PIC patches, the
8208 * pcrel_adjust field was used to store the correction, but
8209 * since the expression is not pcrel, I felt it would be
8210 * confusing to do it this way. */
8211
d6ab8113 8212 if ((reloc_type == BFD_RELOC_32
7b81dfbb
AJ
8213 || reloc_type == BFD_RELOC_X86_64_32S
8214 || reloc_type == BFD_RELOC_64)
29b0f896
AM
8215 && GOT_symbol
8216 && GOT_symbol == i.op[n].imms->X_add_symbol
8217 && (i.op[n].imms->X_op == O_symbol
8218 || (i.op[n].imms->X_op == O_add
8219 && ((symbol_get_value_expression
8220 (i.op[n].imms->X_op_symbol)->X_op)
8221 == O_subtract))))
8222 {
2bbd9c25
JJ
8223 offsetT add;
8224
8225 if (insn_start_frag == frag_now)
8226 add = (p - frag_now->fr_literal) - insn_start_off;
8227 else
8228 {
8229 fragS *fr;
8230
8231 add = insn_start_frag->fr_fix - insn_start_off;
8232 for (fr = insn_start_frag->fr_next;
8233 fr && fr != frag_now; fr = fr->fr_next)
8234 add += fr->fr_fix;
8235 add += p - frag_now->fr_literal;
8236 }
8237
4fa24527 8238 if (!object_64bit)
d6ab8113 8239 reloc_type = BFD_RELOC_386_GOTPC;
7b81dfbb 8240 else if (size == 4)
d6ab8113 8241 reloc_type = BFD_RELOC_X86_64_GOTPC32;
7b81dfbb
AJ
8242 else if (size == 8)
8243 reloc_type = BFD_RELOC_X86_64_GOTPC64;
2bbd9c25 8244 i.op[n].imms->X_add_number += add;
29b0f896 8245 }
29b0f896
AM
8246 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
8247 i.op[n].imms, 0, reloc_type);
8248 }
8249 }
8250 }
252b5132
RH
8251}
8252\f
d182319b
JB
8253/* x86_cons_fix_new is called via the expression parsing code when a
8254 reloc is needed. We use this hook to get the correct .got reloc. */
d182319b
JB
8255static int cons_sign = -1;
8256
8257void
e3bb37b5 8258x86_cons_fix_new (fragS *frag, unsigned int off, unsigned int len,
62ebcb5c 8259 expressionS *exp, bfd_reloc_code_real_type r)
d182319b 8260{
d258b828 8261 r = reloc (len, 0, cons_sign, r);
d182319b
JB
8262
8263#ifdef TE_PE
8264 if (exp->X_op == O_secrel)
8265 {
8266 exp->X_op = O_symbol;
8267 r = BFD_RELOC_32_SECREL;
8268 }
8269#endif
8270
8271 fix_new_exp (frag, off, len, exp, 0, r);
8272}
8273
357d1bd8
L
8274/* Export the ABI address size for use by TC_ADDRESS_BYTES for the
8275 purpose of the `.dc.a' internal pseudo-op. */
8276
8277int
8278x86_address_bytes (void)
8279{
8280 if ((stdoutput->arch_info->mach & bfd_mach_x64_32))
8281 return 4;
8282 return stdoutput->arch_info->bits_per_address / 8;
8283}
8284
d382c579
TG
8285#if !(defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined (OBJ_MACH_O)) \
8286 || defined (LEX_AT)
d258b828 8287# define lex_got(reloc, adjust, types) NULL
718ddfc0 8288#else
f3c180ae
AM
8289/* Parse operands of the form
8290 <symbol>@GOTOFF+<nnn>
8291 and similar .plt or .got references.
8292
8293 If we find one, set up the correct relocation in RELOC and copy the
8294 input string, minus the `@GOTOFF' into a malloc'd buffer for
8295 parsing by the calling routine. Return this buffer, and if ADJUST
8296 is non-null set it to the length of the string we removed from the
8297 input line. Otherwise return NULL. */
8298static char *
91d6fa6a 8299lex_got (enum bfd_reloc_code_real *rel,
64e74474 8300 int *adjust,
d258b828 8301 i386_operand_type *types)
f3c180ae 8302{
7b81dfbb
AJ
8303 /* Some of the relocations depend on the size of what field is to
8304 be relocated. But in our callers i386_immediate and i386_displacement
8305 we don't yet know the operand size (this will be set by insn
8306 matching). Hence we record the word32 relocation here,
8307 and adjust the reloc according to the real size in reloc(). */
f3c180ae
AM
8308 static const struct {
8309 const char *str;
cff8d58a 8310 int len;
4fa24527 8311 const enum bfd_reloc_code_real rel[2];
40fb9820 8312 const i386_operand_type types64;
f3c180ae 8313 } gotrel[] = {
8ce3d284 8314#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
8315 { STRING_COMMA_LEN ("SIZE"), { BFD_RELOC_SIZE32,
8316 BFD_RELOC_SIZE32 },
8317 OPERAND_TYPE_IMM32_64 },
8ce3d284 8318#endif
cff8d58a
L
8319 { STRING_COMMA_LEN ("PLTOFF"), { _dummy_first_bfd_reloc_code_real,
8320 BFD_RELOC_X86_64_PLTOFF64 },
40fb9820 8321 OPERAND_TYPE_IMM64 },
cff8d58a
L
8322 { STRING_COMMA_LEN ("PLT"), { BFD_RELOC_386_PLT32,
8323 BFD_RELOC_X86_64_PLT32 },
40fb9820 8324 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
8325 { STRING_COMMA_LEN ("GOTPLT"), { _dummy_first_bfd_reloc_code_real,
8326 BFD_RELOC_X86_64_GOTPLT64 },
40fb9820 8327 OPERAND_TYPE_IMM64_DISP64 },
cff8d58a
L
8328 { STRING_COMMA_LEN ("GOTOFF"), { BFD_RELOC_386_GOTOFF,
8329 BFD_RELOC_X86_64_GOTOFF64 },
40fb9820 8330 OPERAND_TYPE_IMM64_DISP64 },
cff8d58a
L
8331 { STRING_COMMA_LEN ("GOTPCREL"), { _dummy_first_bfd_reloc_code_real,
8332 BFD_RELOC_X86_64_GOTPCREL },
40fb9820 8333 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
8334 { STRING_COMMA_LEN ("TLSGD"), { BFD_RELOC_386_TLS_GD,
8335 BFD_RELOC_X86_64_TLSGD },
40fb9820 8336 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
8337 { STRING_COMMA_LEN ("TLSLDM"), { BFD_RELOC_386_TLS_LDM,
8338 _dummy_first_bfd_reloc_code_real },
40fb9820 8339 OPERAND_TYPE_NONE },
cff8d58a
L
8340 { STRING_COMMA_LEN ("TLSLD"), { _dummy_first_bfd_reloc_code_real,
8341 BFD_RELOC_X86_64_TLSLD },
40fb9820 8342 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
8343 { STRING_COMMA_LEN ("GOTTPOFF"), { BFD_RELOC_386_TLS_IE_32,
8344 BFD_RELOC_X86_64_GOTTPOFF },
40fb9820 8345 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
8346 { STRING_COMMA_LEN ("TPOFF"), { BFD_RELOC_386_TLS_LE_32,
8347 BFD_RELOC_X86_64_TPOFF32 },
40fb9820 8348 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
cff8d58a
L
8349 { STRING_COMMA_LEN ("NTPOFF"), { BFD_RELOC_386_TLS_LE,
8350 _dummy_first_bfd_reloc_code_real },
40fb9820 8351 OPERAND_TYPE_NONE },
cff8d58a
L
8352 { STRING_COMMA_LEN ("DTPOFF"), { BFD_RELOC_386_TLS_LDO_32,
8353 BFD_RELOC_X86_64_DTPOFF32 },
40fb9820 8354 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
cff8d58a
L
8355 { STRING_COMMA_LEN ("GOTNTPOFF"),{ BFD_RELOC_386_TLS_GOTIE,
8356 _dummy_first_bfd_reloc_code_real },
40fb9820 8357 OPERAND_TYPE_NONE },
cff8d58a
L
8358 { STRING_COMMA_LEN ("INDNTPOFF"),{ BFD_RELOC_386_TLS_IE,
8359 _dummy_first_bfd_reloc_code_real },
40fb9820 8360 OPERAND_TYPE_NONE },
cff8d58a
L
8361 { STRING_COMMA_LEN ("GOT"), { BFD_RELOC_386_GOT32,
8362 BFD_RELOC_X86_64_GOT32 },
40fb9820 8363 OPERAND_TYPE_IMM32_32S_64_DISP32 },
cff8d58a
L
8364 { STRING_COMMA_LEN ("TLSDESC"), { BFD_RELOC_386_TLS_GOTDESC,
8365 BFD_RELOC_X86_64_GOTPC32_TLSDESC },
40fb9820 8366 OPERAND_TYPE_IMM32_32S_DISP32 },
cff8d58a
L
8367 { STRING_COMMA_LEN ("TLSCALL"), { BFD_RELOC_386_TLS_DESC_CALL,
8368 BFD_RELOC_X86_64_TLSDESC_CALL },
40fb9820 8369 OPERAND_TYPE_IMM32_32S_DISP32 },
f3c180ae
AM
8370 };
8371 char *cp;
8372 unsigned int j;
8373
d382c579 8374#if defined (OBJ_MAYBE_ELF)
718ddfc0
JB
8375 if (!IS_ELF)
8376 return NULL;
d382c579 8377#endif
718ddfc0 8378
f3c180ae 8379 for (cp = input_line_pointer; *cp != '@'; cp++)
67c11a9b 8380 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
f3c180ae
AM
8381 return NULL;
8382
47465058 8383 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
f3c180ae 8384 {
cff8d58a 8385 int len = gotrel[j].len;
28f81592 8386 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
f3c180ae 8387 {
4fa24527 8388 if (gotrel[j].rel[object_64bit] != 0)
f3c180ae 8389 {
28f81592
AM
8390 int first, second;
8391 char *tmpbuf, *past_reloc;
f3c180ae 8392
91d6fa6a 8393 *rel = gotrel[j].rel[object_64bit];
f3c180ae 8394
3956db08
JB
8395 if (types)
8396 {
8397 if (flag_code != CODE_64BIT)
40fb9820
L
8398 {
8399 types->bitfield.imm32 = 1;
8400 types->bitfield.disp32 = 1;
8401 }
3956db08
JB
8402 else
8403 *types = gotrel[j].types64;
8404 }
8405
8fd4256d 8406 if (j != 0 && GOT_symbol == NULL)
f3c180ae
AM
8407 GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
8408
28f81592 8409 /* The length of the first part of our input line. */
f3c180ae 8410 first = cp - input_line_pointer;
28f81592
AM
8411
8412 /* The second part goes from after the reloc token until
67c11a9b 8413 (and including) an end_of_line char or comma. */
28f81592 8414 past_reloc = cp + 1 + len;
67c11a9b
AM
8415 cp = past_reloc;
8416 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
8417 ++cp;
8418 second = cp + 1 - past_reloc;
28f81592
AM
8419
8420 /* Allocate and copy string. The trailing NUL shouldn't
8421 be necessary, but be safe. */
add39d23 8422 tmpbuf = XNEWVEC (char, first + second + 2);
f3c180ae 8423 memcpy (tmpbuf, input_line_pointer, first);
0787a12d
AM
8424 if (second != 0 && *past_reloc != ' ')
8425 /* Replace the relocation token with ' ', so that
8426 errors like foo@GOTOFF1 will be detected. */
8427 tmpbuf[first++] = ' ';
af89796a
L
8428 else
8429 /* Increment length by 1 if the relocation token is
8430 removed. */
8431 len++;
8432 if (adjust)
8433 *adjust = len;
0787a12d
AM
8434 memcpy (tmpbuf + first, past_reloc, second);
8435 tmpbuf[first + second] = '\0';
f3c180ae
AM
8436 return tmpbuf;
8437 }
8438
4fa24527
JB
8439 as_bad (_("@%s reloc is not supported with %d-bit output format"),
8440 gotrel[j].str, 1 << (5 + object_64bit));
f3c180ae
AM
8441 return NULL;
8442 }
8443 }
8444
8445 /* Might be a symbol version string. Don't as_bad here. */
8446 return NULL;
8447}
4e4f7c87 8448#endif
f3c180ae 8449
a988325c
NC
8450#ifdef TE_PE
8451#ifdef lex_got
8452#undef lex_got
8453#endif
8454/* Parse operands of the form
8455 <symbol>@SECREL32+<nnn>
8456
8457 If we find one, set up the correct relocation in RELOC and copy the
8458 input string, minus the `@SECREL32' into a malloc'd buffer for
8459 parsing by the calling routine. Return this buffer, and if ADJUST
8460 is non-null set it to the length of the string we removed from the
34bca508
L
8461 input line. Otherwise return NULL.
8462
a988325c
NC
8463 This function is copied from the ELF version above adjusted for PE targets. */
8464
8465static char *
8466lex_got (enum bfd_reloc_code_real *rel ATTRIBUTE_UNUSED,
8467 int *adjust ATTRIBUTE_UNUSED,
d258b828 8468 i386_operand_type *types)
a988325c
NC
8469{
8470 static const struct
8471 {
8472 const char *str;
8473 int len;
8474 const enum bfd_reloc_code_real rel[2];
8475 const i386_operand_type types64;
8476 }
8477 gotrel[] =
8478 {
8479 { STRING_COMMA_LEN ("SECREL32"), { BFD_RELOC_32_SECREL,
8480 BFD_RELOC_32_SECREL },
8481 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
8482 };
8483
8484 char *cp;
8485 unsigned j;
8486
8487 for (cp = input_line_pointer; *cp != '@'; cp++)
8488 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
8489 return NULL;
8490
8491 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
8492 {
8493 int len = gotrel[j].len;
8494
8495 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
8496 {
8497 if (gotrel[j].rel[object_64bit] != 0)
8498 {
8499 int first, second;
8500 char *tmpbuf, *past_reloc;
8501
8502 *rel = gotrel[j].rel[object_64bit];
8503 if (adjust)
8504 *adjust = len;
8505
8506 if (types)
8507 {
8508 if (flag_code != CODE_64BIT)
8509 {
8510 types->bitfield.imm32 = 1;
8511 types->bitfield.disp32 = 1;
8512 }
8513 else
8514 *types = gotrel[j].types64;
8515 }
8516
8517 /* The length of the first part of our input line. */
8518 first = cp - input_line_pointer;
8519
8520 /* The second part goes from after the reloc token until
8521 (and including) an end_of_line char or comma. */
8522 past_reloc = cp + 1 + len;
8523 cp = past_reloc;
8524 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
8525 ++cp;
8526 second = cp + 1 - past_reloc;
8527
8528 /* Allocate and copy string. The trailing NUL shouldn't
8529 be necessary, but be safe. */
add39d23 8530 tmpbuf = XNEWVEC (char, first + second + 2);
a988325c
NC
8531 memcpy (tmpbuf, input_line_pointer, first);
8532 if (second != 0 && *past_reloc != ' ')
8533 /* Replace the relocation token with ' ', so that
8534 errors like foo@SECLREL321 will be detected. */
8535 tmpbuf[first++] = ' ';
8536 memcpy (tmpbuf + first, past_reloc, second);
8537 tmpbuf[first + second] = '\0';
8538 return tmpbuf;
8539 }
8540
8541 as_bad (_("@%s reloc is not supported with %d-bit output format"),
8542 gotrel[j].str, 1 << (5 + object_64bit));
8543 return NULL;
8544 }
8545 }
8546
8547 /* Might be a symbol version string. Don't as_bad here. */
8548 return NULL;
8549}
8550
8551#endif /* TE_PE */
8552
62ebcb5c 8553bfd_reloc_code_real_type
e3bb37b5 8554x86_cons (expressionS *exp, int size)
f3c180ae 8555{
62ebcb5c
AM
8556 bfd_reloc_code_real_type got_reloc = NO_RELOC;
8557
ee86248c
JB
8558 intel_syntax = -intel_syntax;
8559
3c7b9c2c 8560 exp->X_md = 0;
4fa24527 8561 if (size == 4 || (object_64bit && size == 8))
f3c180ae
AM
8562 {
8563 /* Handle @GOTOFF and the like in an expression. */
8564 char *save;
8565 char *gotfree_input_line;
4a57f2cf 8566 int adjust = 0;
f3c180ae
AM
8567
8568 save = input_line_pointer;
d258b828 8569 gotfree_input_line = lex_got (&got_reloc, &adjust, NULL);
f3c180ae
AM
8570 if (gotfree_input_line)
8571 input_line_pointer = gotfree_input_line;
8572
8573 expression (exp);
8574
8575 if (gotfree_input_line)
8576 {
8577 /* expression () has merrily parsed up to the end of line,
8578 or a comma - in the wrong buffer. Transfer how far
8579 input_line_pointer has moved to the right buffer. */
8580 input_line_pointer = (save
8581 + (input_line_pointer - gotfree_input_line)
8582 + adjust);
8583 free (gotfree_input_line);
3992d3b7
AM
8584 if (exp->X_op == O_constant
8585 || exp->X_op == O_absent
8586 || exp->X_op == O_illegal
0398aac5 8587 || exp->X_op == O_register
3992d3b7
AM
8588 || exp->X_op == O_big)
8589 {
8590 char c = *input_line_pointer;
8591 *input_line_pointer = 0;
8592 as_bad (_("missing or invalid expression `%s'"), save);
8593 *input_line_pointer = c;
8594 }
f3c180ae
AM
8595 }
8596 }
8597 else
8598 expression (exp);
ee86248c
JB
8599
8600 intel_syntax = -intel_syntax;
8601
8602 if (intel_syntax)
8603 i386_intel_simplify (exp);
62ebcb5c
AM
8604
8605 return got_reloc;
f3c180ae 8606}
f3c180ae 8607
9f32dd5b
L
8608static void
8609signed_cons (int size)
6482c264 8610{
d182319b
JB
8611 if (flag_code == CODE_64BIT)
8612 cons_sign = 1;
8613 cons (size);
8614 cons_sign = -1;
6482c264
NC
8615}
8616
d182319b 8617#ifdef TE_PE
6482c264 8618static void
7016a5d5 8619pe_directive_secrel (int dummy ATTRIBUTE_UNUSED)
6482c264
NC
8620{
8621 expressionS exp;
8622
8623 do
8624 {
8625 expression (&exp);
8626 if (exp.X_op == O_symbol)
8627 exp.X_op = O_secrel;
8628
8629 emit_expr (&exp, 4);
8630 }
8631 while (*input_line_pointer++ == ',');
8632
8633 input_line_pointer--;
8634 demand_empty_rest_of_line ();
8635}
6482c264
NC
8636#endif
8637
43234a1e
L
8638/* Handle Vector operations. */
8639
8640static char *
8641check_VecOperations (char *op_string, char *op_end)
8642{
8643 const reg_entry *mask;
8644 const char *saved;
8645 char *end_op;
8646
8647 while (*op_string
8648 && (op_end == NULL || op_string < op_end))
8649 {
8650 saved = op_string;
8651 if (*op_string == '{')
8652 {
8653 op_string++;
8654
8655 /* Check broadcasts. */
8656 if (strncmp (op_string, "1to", 3) == 0)
8657 {
8658 int bcst_type;
8659
8660 if (i.broadcast)
8661 goto duplicated_vec_op;
8662
8663 op_string += 3;
8664 if (*op_string == '8')
8e6e0792 8665 bcst_type = 8;
b28d1bda 8666 else if (*op_string == '4')
8e6e0792 8667 bcst_type = 4;
b28d1bda 8668 else if (*op_string == '2')
8e6e0792 8669 bcst_type = 2;
43234a1e
L
8670 else if (*op_string == '1'
8671 && *(op_string+1) == '6')
8672 {
8e6e0792 8673 bcst_type = 16;
43234a1e
L
8674 op_string++;
8675 }
8676 else
8677 {
8678 as_bad (_("Unsupported broadcast: `%s'"), saved);
8679 return NULL;
8680 }
8681 op_string++;
8682
8683 broadcast_op.type = bcst_type;
8684 broadcast_op.operand = this_operand;
1f75763a 8685 broadcast_op.bytes = 0;
43234a1e
L
8686 i.broadcast = &broadcast_op;
8687 }
8688 /* Check masking operation. */
8689 else if ((mask = parse_register (op_string, &end_op)) != NULL)
8690 {
8691 /* k0 can't be used for write mask. */
6d2cd6b2 8692 if (!mask->reg_type.bitfield.regmask || mask->reg_num == 0)
43234a1e 8693 {
6d2cd6b2
JB
8694 as_bad (_("`%s%s' can't be used for write mask"),
8695 register_prefix, mask->reg_name);
43234a1e
L
8696 return NULL;
8697 }
8698
8699 if (!i.mask)
8700 {
8701 mask_op.mask = mask;
8702 mask_op.zeroing = 0;
8703 mask_op.operand = this_operand;
8704 i.mask = &mask_op;
8705 }
8706 else
8707 {
8708 if (i.mask->mask)
8709 goto duplicated_vec_op;
8710
8711 i.mask->mask = mask;
8712
8713 /* Only "{z}" is allowed here. No need to check
8714 zeroing mask explicitly. */
8715 if (i.mask->operand != this_operand)
8716 {
8717 as_bad (_("invalid write mask `%s'"), saved);
8718 return NULL;
8719 }
8720 }
8721
8722 op_string = end_op;
8723 }
8724 /* Check zeroing-flag for masking operation. */
8725 else if (*op_string == 'z')
8726 {
8727 if (!i.mask)
8728 {
8729 mask_op.mask = NULL;
8730 mask_op.zeroing = 1;
8731 mask_op.operand = this_operand;
8732 i.mask = &mask_op;
8733 }
8734 else
8735 {
8736 if (i.mask->zeroing)
8737 {
8738 duplicated_vec_op:
8739 as_bad (_("duplicated `%s'"), saved);
8740 return NULL;
8741 }
8742
8743 i.mask->zeroing = 1;
8744
8745 /* Only "{%k}" is allowed here. No need to check mask
8746 register explicitly. */
8747 if (i.mask->operand != this_operand)
8748 {
8749 as_bad (_("invalid zeroing-masking `%s'"),
8750 saved);
8751 return NULL;
8752 }
8753 }
8754
8755 op_string++;
8756 }
8757 else
8758 goto unknown_vec_op;
8759
8760 if (*op_string != '}')
8761 {
8762 as_bad (_("missing `}' in `%s'"), saved);
8763 return NULL;
8764 }
8765 op_string++;
0ba3a731
L
8766
8767 /* Strip whitespace since the addition of pseudo prefixes
8768 changed how the scrubber treats '{'. */
8769 if (is_space_char (*op_string))
8770 ++op_string;
8771
43234a1e
L
8772 continue;
8773 }
8774 unknown_vec_op:
8775 /* We don't know this one. */
8776 as_bad (_("unknown vector operation: `%s'"), saved);
8777 return NULL;
8778 }
8779
6d2cd6b2
JB
8780 if (i.mask && i.mask->zeroing && !i.mask->mask)
8781 {
8782 as_bad (_("zeroing-masking only allowed with write mask"));
8783 return NULL;
8784 }
8785
43234a1e
L
8786 return op_string;
8787}
8788
252b5132 8789static int
70e41ade 8790i386_immediate (char *imm_start)
252b5132
RH
8791{
8792 char *save_input_line_pointer;
f3c180ae 8793 char *gotfree_input_line;
252b5132 8794 segT exp_seg = 0;
47926f60 8795 expressionS *exp;
40fb9820
L
8796 i386_operand_type types;
8797
0dfbf9d7 8798 operand_type_set (&types, ~0);
252b5132
RH
8799
8800 if (i.imm_operands == MAX_IMMEDIATE_OPERANDS)
8801 {
31b2323c
L
8802 as_bad (_("at most %d immediate operands are allowed"),
8803 MAX_IMMEDIATE_OPERANDS);
252b5132
RH
8804 return 0;
8805 }
8806
8807 exp = &im_expressions[i.imm_operands++];
520dc8e8 8808 i.op[this_operand].imms = exp;
252b5132
RH
8809
8810 if (is_space_char (*imm_start))
8811 ++imm_start;
8812
8813 save_input_line_pointer = input_line_pointer;
8814 input_line_pointer = imm_start;
8815
d258b828 8816 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
8817 if (gotfree_input_line)
8818 input_line_pointer = gotfree_input_line;
252b5132
RH
8819
8820 exp_seg = expression (exp);
8821
83183c0c 8822 SKIP_WHITESPACE ();
43234a1e
L
8823
8824 /* Handle vector operations. */
8825 if (*input_line_pointer == '{')
8826 {
8827 input_line_pointer = check_VecOperations (input_line_pointer,
8828 NULL);
8829 if (input_line_pointer == NULL)
8830 return 0;
8831 }
8832
252b5132 8833 if (*input_line_pointer)
f3c180ae 8834 as_bad (_("junk `%s' after expression"), input_line_pointer);
252b5132
RH
8835
8836 input_line_pointer = save_input_line_pointer;
f3c180ae 8837 if (gotfree_input_line)
ee86248c
JB
8838 {
8839 free (gotfree_input_line);
8840
8841 if (exp->X_op == O_constant || exp->X_op == O_register)
8842 exp->X_op = O_illegal;
8843 }
8844
8845 return i386_finalize_immediate (exp_seg, exp, types, imm_start);
8846}
252b5132 8847
ee86248c
JB
8848static int
8849i386_finalize_immediate (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
8850 i386_operand_type types, const char *imm_start)
8851{
8852 if (exp->X_op == O_absent || exp->X_op == O_illegal || exp->X_op == O_big)
252b5132 8853 {
313c53d1
L
8854 if (imm_start)
8855 as_bad (_("missing or invalid immediate expression `%s'"),
8856 imm_start);
3992d3b7 8857 return 0;
252b5132 8858 }
3e73aa7c 8859 else if (exp->X_op == O_constant)
252b5132 8860 {
47926f60 8861 /* Size it properly later. */
40fb9820 8862 i.types[this_operand].bitfield.imm64 = 1;
13f864ae
L
8863 /* If not 64bit, sign extend val. */
8864 if (flag_code != CODE_64BIT
4eed87de
AM
8865 && (exp->X_add_number & ~(((addressT) 2 << 31) - 1)) == 0)
8866 exp->X_add_number
8867 = (exp->X_add_number ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
252b5132 8868 }
4c63da97 8869#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
f86103b7 8870 else if (OUTPUT_FLAVOR == bfd_target_aout_flavour
31312f95 8871 && exp_seg != absolute_section
47926f60 8872 && exp_seg != text_section
24eab124
AM
8873 && exp_seg != data_section
8874 && exp_seg != bss_section
8875 && exp_seg != undefined_section
f86103b7 8876 && !bfd_is_com_section (exp_seg))
252b5132 8877 {
d0b47220 8878 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
252b5132
RH
8879 return 0;
8880 }
8881#endif
a841bdf5 8882 else if (!intel_syntax && exp_seg == reg_section)
bb8f5920 8883 {
313c53d1
L
8884 if (imm_start)
8885 as_bad (_("illegal immediate register operand %s"), imm_start);
bb8f5920
L
8886 return 0;
8887 }
252b5132
RH
8888 else
8889 {
8890 /* This is an address. The size of the address will be
24eab124 8891 determined later, depending on destination register,
3e73aa7c 8892 suffix, or the default for the section. */
40fb9820
L
8893 i.types[this_operand].bitfield.imm8 = 1;
8894 i.types[this_operand].bitfield.imm16 = 1;
8895 i.types[this_operand].bitfield.imm32 = 1;
8896 i.types[this_operand].bitfield.imm32s = 1;
8897 i.types[this_operand].bitfield.imm64 = 1;
c6fb90c8
L
8898 i.types[this_operand] = operand_type_and (i.types[this_operand],
8899 types);
252b5132
RH
8900 }
8901
8902 return 1;
8903}
8904
551c1ca1 8905static char *
e3bb37b5 8906i386_scale (char *scale)
252b5132 8907{
551c1ca1
AM
8908 offsetT val;
8909 char *save = input_line_pointer;
252b5132 8910
551c1ca1
AM
8911 input_line_pointer = scale;
8912 val = get_absolute_expression ();
8913
8914 switch (val)
252b5132 8915 {
551c1ca1 8916 case 1:
252b5132
RH
8917 i.log2_scale_factor = 0;
8918 break;
551c1ca1 8919 case 2:
252b5132
RH
8920 i.log2_scale_factor = 1;
8921 break;
551c1ca1 8922 case 4:
252b5132
RH
8923 i.log2_scale_factor = 2;
8924 break;
551c1ca1 8925 case 8:
252b5132
RH
8926 i.log2_scale_factor = 3;
8927 break;
8928 default:
a724f0f4
JB
8929 {
8930 char sep = *input_line_pointer;
8931
8932 *input_line_pointer = '\0';
8933 as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
8934 scale);
8935 *input_line_pointer = sep;
8936 input_line_pointer = save;
8937 return NULL;
8938 }
252b5132 8939 }
29b0f896 8940 if (i.log2_scale_factor != 0 && i.index_reg == 0)
252b5132
RH
8941 {
8942 as_warn (_("scale factor of %d without an index register"),
24eab124 8943 1 << i.log2_scale_factor);
252b5132 8944 i.log2_scale_factor = 0;
252b5132 8945 }
551c1ca1
AM
8946 scale = input_line_pointer;
8947 input_line_pointer = save;
8948 return scale;
252b5132
RH
8949}
8950
252b5132 8951static int
e3bb37b5 8952i386_displacement (char *disp_start, char *disp_end)
252b5132 8953{
29b0f896 8954 expressionS *exp;
252b5132
RH
8955 segT exp_seg = 0;
8956 char *save_input_line_pointer;
f3c180ae 8957 char *gotfree_input_line;
40fb9820
L
8958 int override;
8959 i386_operand_type bigdisp, types = anydisp;
3992d3b7 8960 int ret;
252b5132 8961
31b2323c
L
8962 if (i.disp_operands == MAX_MEMORY_OPERANDS)
8963 {
8964 as_bad (_("at most %d displacement operands are allowed"),
8965 MAX_MEMORY_OPERANDS);
8966 return 0;
8967 }
8968
0dfbf9d7 8969 operand_type_set (&bigdisp, 0);
40fb9820
L
8970 if ((i.types[this_operand].bitfield.jumpabsolute)
8971 || (!current_templates->start->opcode_modifier.jump
8972 && !current_templates->start->opcode_modifier.jumpdword))
e05278af 8973 {
40fb9820 8974 bigdisp.bitfield.disp32 = 1;
e05278af 8975 override = (i.prefix[ADDR_PREFIX] != 0);
40fb9820
L
8976 if (flag_code == CODE_64BIT)
8977 {
8978 if (!override)
8979 {
8980 bigdisp.bitfield.disp32s = 1;
8981 bigdisp.bitfield.disp64 = 1;
8982 }
8983 }
8984 else if ((flag_code == CODE_16BIT) ^ override)
8985 {
8986 bigdisp.bitfield.disp32 = 0;
8987 bigdisp.bitfield.disp16 = 1;
8988 }
e05278af
JB
8989 }
8990 else
8991 {
8992 /* For PC-relative branches, the width of the displacement
8993 is dependent upon data size, not address size. */
e05278af 8994 override = (i.prefix[DATA_PREFIX] != 0);
40fb9820
L
8995 if (flag_code == CODE_64BIT)
8996 {
8997 if (override || i.suffix == WORD_MNEM_SUFFIX)
8998 bigdisp.bitfield.disp16 = 1;
8999 else
9000 {
9001 bigdisp.bitfield.disp32 = 1;
9002 bigdisp.bitfield.disp32s = 1;
9003 }
9004 }
9005 else
e05278af
JB
9006 {
9007 if (!override)
9008 override = (i.suffix == (flag_code != CODE_16BIT
9009 ? WORD_MNEM_SUFFIX
9010 : LONG_MNEM_SUFFIX));
40fb9820
L
9011 bigdisp.bitfield.disp32 = 1;
9012 if ((flag_code == CODE_16BIT) ^ override)
9013 {
9014 bigdisp.bitfield.disp32 = 0;
9015 bigdisp.bitfield.disp16 = 1;
9016 }
e05278af 9017 }
e05278af 9018 }
c6fb90c8
L
9019 i.types[this_operand] = operand_type_or (i.types[this_operand],
9020 bigdisp);
252b5132
RH
9021
9022 exp = &disp_expressions[i.disp_operands];
520dc8e8 9023 i.op[this_operand].disps = exp;
252b5132
RH
9024 i.disp_operands++;
9025 save_input_line_pointer = input_line_pointer;
9026 input_line_pointer = disp_start;
9027 END_STRING_AND_SAVE (disp_end);
9028
9029#ifndef GCC_ASM_O_HACK
9030#define GCC_ASM_O_HACK 0
9031#endif
9032#if GCC_ASM_O_HACK
9033 END_STRING_AND_SAVE (disp_end + 1);
40fb9820 9034 if (i.types[this_operand].bitfield.baseIndex
24eab124 9035 && displacement_string_end[-1] == '+')
252b5132
RH
9036 {
9037 /* This hack is to avoid a warning when using the "o"
24eab124
AM
9038 constraint within gcc asm statements.
9039 For instance:
9040
9041 #define _set_tssldt_desc(n,addr,limit,type) \
9042 __asm__ __volatile__ ( \
9043 "movw %w2,%0\n\t" \
9044 "movw %w1,2+%0\n\t" \
9045 "rorl $16,%1\n\t" \
9046 "movb %b1,4+%0\n\t" \
9047 "movb %4,5+%0\n\t" \
9048 "movb $0,6+%0\n\t" \
9049 "movb %h1,7+%0\n\t" \
9050 "rorl $16,%1" \
9051 : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type))
9052
9053 This works great except that the output assembler ends
9054 up looking a bit weird if it turns out that there is
9055 no offset. You end up producing code that looks like:
9056
9057 #APP
9058 movw $235,(%eax)
9059 movw %dx,2+(%eax)
9060 rorl $16,%edx
9061 movb %dl,4+(%eax)
9062 movb $137,5+(%eax)
9063 movb $0,6+(%eax)
9064 movb %dh,7+(%eax)
9065 rorl $16,%edx
9066 #NO_APP
9067
47926f60 9068 So here we provide the missing zero. */
24eab124
AM
9069
9070 *displacement_string_end = '0';
252b5132
RH
9071 }
9072#endif
d258b828 9073 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
f3c180ae
AM
9074 if (gotfree_input_line)
9075 input_line_pointer = gotfree_input_line;
252b5132 9076
24eab124 9077 exp_seg = expression (exp);
252b5132 9078
636c26b0
AM
9079 SKIP_WHITESPACE ();
9080 if (*input_line_pointer)
9081 as_bad (_("junk `%s' after expression"), input_line_pointer);
9082#if GCC_ASM_O_HACK
9083 RESTORE_END_STRING (disp_end + 1);
9084#endif
636c26b0 9085 input_line_pointer = save_input_line_pointer;
636c26b0 9086 if (gotfree_input_line)
ee86248c
JB
9087 {
9088 free (gotfree_input_line);
9089
9090 if (exp->X_op == O_constant || exp->X_op == O_register)
9091 exp->X_op = O_illegal;
9092 }
9093
9094 ret = i386_finalize_displacement (exp_seg, exp, types, disp_start);
9095
9096 RESTORE_END_STRING (disp_end);
9097
9098 return ret;
9099}
9100
9101static int
9102i386_finalize_displacement (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
9103 i386_operand_type types, const char *disp_start)
9104{
9105 i386_operand_type bigdisp;
9106 int ret = 1;
636c26b0 9107
24eab124
AM
9108 /* We do this to make sure that the section symbol is in
9109 the symbol table. We will ultimately change the relocation
47926f60 9110 to be relative to the beginning of the section. */
1ae12ab7 9111 if (i.reloc[this_operand] == BFD_RELOC_386_GOTOFF
d6ab8113
JB
9112 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL
9113 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
24eab124 9114 {
636c26b0 9115 if (exp->X_op != O_symbol)
3992d3b7 9116 goto inv_disp;
636c26b0 9117
e5cb08ac 9118 if (S_IS_LOCAL (exp->X_add_symbol)
c64efb4b
L
9119 && S_GET_SEGMENT (exp->X_add_symbol) != undefined_section
9120 && S_GET_SEGMENT (exp->X_add_symbol) != expr_section)
24eab124 9121 section_symbol (S_GET_SEGMENT (exp->X_add_symbol));
24eab124
AM
9122 exp->X_op = O_subtract;
9123 exp->X_op_symbol = GOT_symbol;
1ae12ab7 9124 if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL)
29b0f896 9125 i.reloc[this_operand] = BFD_RELOC_32_PCREL;
d6ab8113
JB
9126 else if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
9127 i.reloc[this_operand] = BFD_RELOC_64;
23df1078 9128 else
29b0f896 9129 i.reloc[this_operand] = BFD_RELOC_32;
24eab124 9130 }
252b5132 9131
3992d3b7
AM
9132 else if (exp->X_op == O_absent
9133 || exp->X_op == O_illegal
ee86248c 9134 || exp->X_op == O_big)
2daf4fd8 9135 {
3992d3b7
AM
9136 inv_disp:
9137 as_bad (_("missing or invalid displacement expression `%s'"),
2daf4fd8 9138 disp_start);
3992d3b7 9139 ret = 0;
2daf4fd8
AM
9140 }
9141
0e1147d9
L
9142 else if (flag_code == CODE_64BIT
9143 && !i.prefix[ADDR_PREFIX]
9144 && exp->X_op == O_constant)
9145 {
9146 /* Since displacement is signed extended to 64bit, don't allow
9147 disp32 and turn off disp32s if they are out of range. */
9148 i.types[this_operand].bitfield.disp32 = 0;
9149 if (!fits_in_signed_long (exp->X_add_number))
9150 {
9151 i.types[this_operand].bitfield.disp32s = 0;
9152 if (i.types[this_operand].bitfield.baseindex)
9153 {
9154 as_bad (_("0x%lx out range of signed 32bit displacement"),
9155 (long) exp->X_add_number);
9156 ret = 0;
9157 }
9158 }
9159 }
9160
4c63da97 9161#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
3992d3b7
AM
9162 else if (exp->X_op != O_constant
9163 && OUTPUT_FLAVOR == bfd_target_aout_flavour
9164 && exp_seg != absolute_section
9165 && exp_seg != text_section
9166 && exp_seg != data_section
9167 && exp_seg != bss_section
9168 && exp_seg != undefined_section
9169 && !bfd_is_com_section (exp_seg))
24eab124 9170 {
d0b47220 9171 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
3992d3b7 9172 ret = 0;
24eab124 9173 }
252b5132 9174#endif
3956db08 9175
40fb9820
L
9176 /* Check if this is a displacement only operand. */
9177 bigdisp = i.types[this_operand];
9178 bigdisp.bitfield.disp8 = 0;
9179 bigdisp.bitfield.disp16 = 0;
9180 bigdisp.bitfield.disp32 = 0;
9181 bigdisp.bitfield.disp32s = 0;
9182 bigdisp.bitfield.disp64 = 0;
0dfbf9d7 9183 if (operand_type_all_zero (&bigdisp))
c6fb90c8
L
9184 i.types[this_operand] = operand_type_and (i.types[this_operand],
9185 types);
3956db08 9186
3992d3b7 9187 return ret;
252b5132
RH
9188}
9189
2abc2bec
JB
9190/* Return the active addressing mode, taking address override and
9191 registers forming the address into consideration. Update the
9192 address override prefix if necessary. */
47926f60 9193
2abc2bec
JB
9194static enum flag_code
9195i386_addressing_mode (void)
252b5132 9196{
be05d201
L
9197 enum flag_code addr_mode;
9198
9199 if (i.prefix[ADDR_PREFIX])
9200 addr_mode = flag_code == CODE_32BIT ? CODE_16BIT : CODE_32BIT;
9201 else
9202 {
9203 addr_mode = flag_code;
9204
24eab124 9205#if INFER_ADDR_PREFIX
be05d201
L
9206 if (i.mem_operands == 0)
9207 {
9208 /* Infer address prefix from the first memory operand. */
9209 const reg_entry *addr_reg = i.base_reg;
9210
9211 if (addr_reg == NULL)
9212 addr_reg = i.index_reg;
eecb386c 9213
be05d201
L
9214 if (addr_reg)
9215 {
9216 if (addr_reg->reg_num == RegEip
9217 || addr_reg->reg_num == RegEiz
dc821c5f 9218 || addr_reg->reg_type.bitfield.dword)
be05d201
L
9219 addr_mode = CODE_32BIT;
9220 else if (flag_code != CODE_64BIT
dc821c5f 9221 && addr_reg->reg_type.bitfield.word)
be05d201
L
9222 addr_mode = CODE_16BIT;
9223
9224 if (addr_mode != flag_code)
9225 {
9226 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
9227 i.prefixes += 1;
9228 /* Change the size of any displacement too. At most one
9229 of Disp16 or Disp32 is set.
9230 FIXME. There doesn't seem to be any real need for
9231 separate Disp16 and Disp32 flags. The same goes for
9232 Imm16 and Imm32. Removing them would probably clean
9233 up the code quite a lot. */
9234 if (flag_code != CODE_64BIT
9235 && (i.types[this_operand].bitfield.disp16
9236 || i.types[this_operand].bitfield.disp32))
9237 i.types[this_operand]
9238 = operand_type_xor (i.types[this_operand], disp16_32);
9239 }
9240 }
9241 }
24eab124 9242#endif
be05d201
L
9243 }
9244
2abc2bec
JB
9245 return addr_mode;
9246}
9247
9248/* Make sure the memory operand we've been dealt is valid.
9249 Return 1 on success, 0 on a failure. */
9250
9251static int
9252i386_index_check (const char *operand_string)
9253{
9254 const char *kind = "base/index";
9255 enum flag_code addr_mode = i386_addressing_mode ();
9256
fc0763e6
JB
9257 if (current_templates->start->opcode_modifier.isstring
9258 && !current_templates->start->opcode_modifier.immext
9259 && (current_templates->end[-1].opcode_modifier.isstring
9260 || i.mem_operands))
9261 {
9262 /* Memory operands of string insns are special in that they only allow
9263 a single register (rDI, rSI, or rBX) as their memory address. */
be05d201
L
9264 const reg_entry *expected_reg;
9265 static const char *di_si[][2] =
9266 {
9267 { "esi", "edi" },
9268 { "si", "di" },
9269 { "rsi", "rdi" }
9270 };
9271 static const char *bx[] = { "ebx", "bx", "rbx" };
fc0763e6
JB
9272
9273 kind = "string address";
9274
8325cc63 9275 if (current_templates->start->opcode_modifier.repprefixok)
fc0763e6
JB
9276 {
9277 i386_operand_type type = current_templates->end[-1].operand_types[0];
9278
9279 if (!type.bitfield.baseindex
9280 || ((!i.mem_operands != !intel_syntax)
9281 && current_templates->end[-1].operand_types[1]
9282 .bitfield.baseindex))
9283 type = current_templates->end[-1].operand_types[1];
be05d201
L
9284 expected_reg = hash_find (reg_hash,
9285 di_si[addr_mode][type.bitfield.esseg]);
9286
fc0763e6
JB
9287 }
9288 else
be05d201 9289 expected_reg = hash_find (reg_hash, bx[addr_mode]);
fc0763e6 9290
be05d201
L
9291 if (i.base_reg != expected_reg
9292 || i.index_reg
fc0763e6 9293 || operand_type_check (i.types[this_operand], disp))
fc0763e6 9294 {
be05d201
L
9295 /* The second memory operand must have the same size as
9296 the first one. */
9297 if (i.mem_operands
9298 && i.base_reg
9299 && !((addr_mode == CODE_64BIT
dc821c5f 9300 && i.base_reg->reg_type.bitfield.qword)
be05d201 9301 || (addr_mode == CODE_32BIT
dc821c5f
JB
9302 ? i.base_reg->reg_type.bitfield.dword
9303 : i.base_reg->reg_type.bitfield.word)))
be05d201
L
9304 goto bad_address;
9305
fc0763e6
JB
9306 as_warn (_("`%s' is not valid here (expected `%c%s%s%c')"),
9307 operand_string,
9308 intel_syntax ? '[' : '(',
9309 register_prefix,
be05d201 9310 expected_reg->reg_name,
fc0763e6 9311 intel_syntax ? ']' : ')');
be05d201 9312 return 1;
fc0763e6 9313 }
be05d201
L
9314 else
9315 return 1;
9316
9317bad_address:
9318 as_bad (_("`%s' is not a valid %s expression"),
9319 operand_string, kind);
9320 return 0;
3e73aa7c
JH
9321 }
9322 else
9323 {
be05d201
L
9324 if (addr_mode != CODE_16BIT)
9325 {
9326 /* 32-bit/64-bit checks. */
9327 if ((i.base_reg
9328 && (addr_mode == CODE_64BIT
dc821c5f
JB
9329 ? !i.base_reg->reg_type.bitfield.qword
9330 : !i.base_reg->reg_type.bitfield.dword)
be05d201
L
9331 && (i.index_reg
9332 || (i.base_reg->reg_num
9333 != (addr_mode == CODE_64BIT ? RegRip : RegEip))))
9334 || (i.index_reg
1b54b8d7
JB
9335 && !i.index_reg->reg_type.bitfield.xmmword
9336 && !i.index_reg->reg_type.bitfield.ymmword
9337 && !i.index_reg->reg_type.bitfield.zmmword
be05d201 9338 && ((addr_mode == CODE_64BIT
dc821c5f 9339 ? !(i.index_reg->reg_type.bitfield.qword
be05d201 9340 || i.index_reg->reg_num == RegRiz)
dc821c5f 9341 : !(i.index_reg->reg_type.bitfield.dword
be05d201
L
9342 || i.index_reg->reg_num == RegEiz))
9343 || !i.index_reg->reg_type.bitfield.baseindex)))
9344 goto bad_address;
8178be5b
JB
9345
9346 /* bndmk, bndldx, and bndstx have special restrictions. */
9347 if (current_templates->start->base_opcode == 0xf30f1b
9348 || (current_templates->start->base_opcode & ~1) == 0x0f1a)
9349 {
9350 /* They cannot use RIP-relative addressing. */
9351 if (i.base_reg && i.base_reg->reg_num == RegRip)
9352 {
9353 as_bad (_("`%s' cannot be used here"), operand_string);
9354 return 0;
9355 }
9356
9357 /* bndldx and bndstx ignore their scale factor. */
9358 if (current_templates->start->base_opcode != 0xf30f1b
9359 && i.log2_scale_factor)
9360 as_warn (_("register scaling is being ignored here"));
9361 }
be05d201
L
9362 }
9363 else
3e73aa7c 9364 {
be05d201 9365 /* 16-bit checks. */
3e73aa7c 9366 if ((i.base_reg
dc821c5f 9367 && (!i.base_reg->reg_type.bitfield.word
40fb9820 9368 || !i.base_reg->reg_type.bitfield.baseindex))
3e73aa7c 9369 || (i.index_reg
dc821c5f 9370 && (!i.index_reg->reg_type.bitfield.word
40fb9820 9371 || !i.index_reg->reg_type.bitfield.baseindex
29b0f896
AM
9372 || !(i.base_reg
9373 && i.base_reg->reg_num < 6
9374 && i.index_reg->reg_num >= 6
9375 && i.log2_scale_factor == 0))))
be05d201 9376 goto bad_address;
3e73aa7c
JH
9377 }
9378 }
be05d201 9379 return 1;
24eab124 9380}
252b5132 9381
43234a1e
L
9382/* Handle vector immediates. */
9383
9384static int
9385RC_SAE_immediate (const char *imm_start)
9386{
9387 unsigned int match_found, j;
9388 const char *pstr = imm_start;
9389 expressionS *exp;
9390
9391 if (*pstr != '{')
9392 return 0;
9393
9394 pstr++;
9395 match_found = 0;
9396 for (j = 0; j < ARRAY_SIZE (RC_NamesTable); j++)
9397 {
9398 if (!strncmp (pstr, RC_NamesTable[j].name, RC_NamesTable[j].len))
9399 {
9400 if (!i.rounding)
9401 {
9402 rc_op.type = RC_NamesTable[j].type;
9403 rc_op.operand = this_operand;
9404 i.rounding = &rc_op;
9405 }
9406 else
9407 {
9408 as_bad (_("duplicated `%s'"), imm_start);
9409 return 0;
9410 }
9411 pstr += RC_NamesTable[j].len;
9412 match_found = 1;
9413 break;
9414 }
9415 }
9416 if (!match_found)
9417 return 0;
9418
9419 if (*pstr++ != '}')
9420 {
9421 as_bad (_("Missing '}': '%s'"), imm_start);
9422 return 0;
9423 }
9424 /* RC/SAE immediate string should contain nothing more. */;
9425 if (*pstr != 0)
9426 {
9427 as_bad (_("Junk after '}': '%s'"), imm_start);
9428 return 0;
9429 }
9430
9431 exp = &im_expressions[i.imm_operands++];
9432 i.op[this_operand].imms = exp;
9433
9434 exp->X_op = O_constant;
9435 exp->X_add_number = 0;
9436 exp->X_add_symbol = (symbolS *) 0;
9437 exp->X_op_symbol = (symbolS *) 0;
9438
9439 i.types[this_operand].bitfield.imm8 = 1;
9440 return 1;
9441}
9442
8325cc63
JB
9443/* Only string instructions can have a second memory operand, so
9444 reduce current_templates to just those if it contains any. */
9445static int
9446maybe_adjust_templates (void)
9447{
9448 const insn_template *t;
9449
9450 gas_assert (i.mem_operands == 1);
9451
9452 for (t = current_templates->start; t < current_templates->end; ++t)
9453 if (t->opcode_modifier.isstring)
9454 break;
9455
9456 if (t < current_templates->end)
9457 {
9458 static templates aux_templates;
9459 bfd_boolean recheck;
9460
9461 aux_templates.start = t;
9462 for (; t < current_templates->end; ++t)
9463 if (!t->opcode_modifier.isstring)
9464 break;
9465 aux_templates.end = t;
9466
9467 /* Determine whether to re-check the first memory operand. */
9468 recheck = (aux_templates.start != current_templates->start
9469 || t != current_templates->end);
9470
9471 current_templates = &aux_templates;
9472
9473 if (recheck)
9474 {
9475 i.mem_operands = 0;
9476 if (i.memop1_string != NULL
9477 && i386_index_check (i.memop1_string) == 0)
9478 return 0;
9479 i.mem_operands = 1;
9480 }
9481 }
9482
9483 return 1;
9484}
9485
fc0763e6 9486/* Parse OPERAND_STRING into the i386_insn structure I. Returns zero
47926f60 9487 on error. */
252b5132 9488
252b5132 9489static int
a7619375 9490i386_att_operand (char *operand_string)
252b5132 9491{
af6bdddf
AM
9492 const reg_entry *r;
9493 char *end_op;
24eab124 9494 char *op_string = operand_string;
252b5132 9495
24eab124 9496 if (is_space_char (*op_string))
252b5132
RH
9497 ++op_string;
9498
24eab124 9499 /* We check for an absolute prefix (differentiating,
47926f60 9500 for example, 'jmp pc_relative_label' from 'jmp *absolute_label'. */
24eab124
AM
9501 if (*op_string == ABSOLUTE_PREFIX)
9502 {
9503 ++op_string;
9504 if (is_space_char (*op_string))
9505 ++op_string;
40fb9820 9506 i.types[this_operand].bitfield.jumpabsolute = 1;
24eab124 9507 }
252b5132 9508
47926f60 9509 /* Check if operand is a register. */
4d1bb795 9510 if ((r = parse_register (op_string, &end_op)) != NULL)
24eab124 9511 {
40fb9820
L
9512 i386_operand_type temp;
9513
24eab124
AM
9514 /* Check for a segment override by searching for ':' after a
9515 segment register. */
9516 op_string = end_op;
9517 if (is_space_char (*op_string))
9518 ++op_string;
40fb9820
L
9519 if (*op_string == ':'
9520 && (r->reg_type.bitfield.sreg2
9521 || r->reg_type.bitfield.sreg3))
24eab124
AM
9522 {
9523 switch (r->reg_num)
9524 {
9525 case 0:
9526 i.seg[i.mem_operands] = &es;
9527 break;
9528 case 1:
9529 i.seg[i.mem_operands] = &cs;
9530 break;
9531 case 2:
9532 i.seg[i.mem_operands] = &ss;
9533 break;
9534 case 3:
9535 i.seg[i.mem_operands] = &ds;
9536 break;
9537 case 4:
9538 i.seg[i.mem_operands] = &fs;
9539 break;
9540 case 5:
9541 i.seg[i.mem_operands] = &gs;
9542 break;
9543 }
252b5132 9544
24eab124 9545 /* Skip the ':' and whitespace. */
252b5132
RH
9546 ++op_string;
9547 if (is_space_char (*op_string))
24eab124 9548 ++op_string;
252b5132 9549
24eab124
AM
9550 if (!is_digit_char (*op_string)
9551 && !is_identifier_char (*op_string)
9552 && *op_string != '('
9553 && *op_string != ABSOLUTE_PREFIX)
9554 {
9555 as_bad (_("bad memory operand `%s'"), op_string);
9556 return 0;
9557 }
47926f60 9558 /* Handle case of %es:*foo. */
24eab124
AM
9559 if (*op_string == ABSOLUTE_PREFIX)
9560 {
9561 ++op_string;
9562 if (is_space_char (*op_string))
9563 ++op_string;
40fb9820 9564 i.types[this_operand].bitfield.jumpabsolute = 1;
24eab124
AM
9565 }
9566 goto do_memory_reference;
9567 }
43234a1e
L
9568
9569 /* Handle vector operations. */
9570 if (*op_string == '{')
9571 {
9572 op_string = check_VecOperations (op_string, NULL);
9573 if (op_string == NULL)
9574 return 0;
9575 }
9576
24eab124
AM
9577 if (*op_string)
9578 {
d0b47220 9579 as_bad (_("junk `%s' after register"), op_string);
24eab124
AM
9580 return 0;
9581 }
40fb9820
L
9582 temp = r->reg_type;
9583 temp.bitfield.baseindex = 0;
c6fb90c8
L
9584 i.types[this_operand] = operand_type_or (i.types[this_operand],
9585 temp);
7d5e4556 9586 i.types[this_operand].bitfield.unspecified = 0;
520dc8e8 9587 i.op[this_operand].regs = r;
24eab124
AM
9588 i.reg_operands++;
9589 }
af6bdddf
AM
9590 else if (*op_string == REGISTER_PREFIX)
9591 {
9592 as_bad (_("bad register name `%s'"), op_string);
9593 return 0;
9594 }
24eab124 9595 else if (*op_string == IMMEDIATE_PREFIX)
ce8a8b2f 9596 {
24eab124 9597 ++op_string;
40fb9820 9598 if (i.types[this_operand].bitfield.jumpabsolute)
24eab124 9599 {
d0b47220 9600 as_bad (_("immediate operand illegal with absolute jump"));
24eab124
AM
9601 return 0;
9602 }
9603 if (!i386_immediate (op_string))
9604 return 0;
9605 }
43234a1e
L
9606 else if (RC_SAE_immediate (operand_string))
9607 {
9608 /* If it is a RC or SAE immediate, do nothing. */
9609 ;
9610 }
24eab124
AM
9611 else if (is_digit_char (*op_string)
9612 || is_identifier_char (*op_string)
d02603dc 9613 || *op_string == '"'
e5cb08ac 9614 || *op_string == '(')
24eab124 9615 {
47926f60 9616 /* This is a memory reference of some sort. */
af6bdddf 9617 char *base_string;
252b5132 9618
47926f60 9619 /* Start and end of displacement string expression (if found). */
eecb386c
AM
9620 char *displacement_string_start;
9621 char *displacement_string_end;
43234a1e 9622 char *vop_start;
252b5132 9623
24eab124 9624 do_memory_reference:
8325cc63
JB
9625 if (i.mem_operands == 1 && !maybe_adjust_templates ())
9626 return 0;
24eab124 9627 if ((i.mem_operands == 1
40fb9820 9628 && !current_templates->start->opcode_modifier.isstring)
24eab124
AM
9629 || i.mem_operands == 2)
9630 {
9631 as_bad (_("too many memory references for `%s'"),
9632 current_templates->start->name);
9633 return 0;
9634 }
252b5132 9635
24eab124
AM
9636 /* Check for base index form. We detect the base index form by
9637 looking for an ')' at the end of the operand, searching
9638 for the '(' matching it, and finding a REGISTER_PREFIX or ','
9639 after the '('. */
af6bdddf 9640 base_string = op_string + strlen (op_string);
c3332e24 9641
43234a1e
L
9642 /* Handle vector operations. */
9643 vop_start = strchr (op_string, '{');
9644 if (vop_start && vop_start < base_string)
9645 {
9646 if (check_VecOperations (vop_start, base_string) == NULL)
9647 return 0;
9648 base_string = vop_start;
9649 }
9650
af6bdddf
AM
9651 --base_string;
9652 if (is_space_char (*base_string))
9653 --base_string;
252b5132 9654
47926f60 9655 /* If we only have a displacement, set-up for it to be parsed later. */
af6bdddf
AM
9656 displacement_string_start = op_string;
9657 displacement_string_end = base_string + 1;
252b5132 9658
24eab124
AM
9659 if (*base_string == ')')
9660 {
af6bdddf 9661 char *temp_string;
24eab124
AM
9662 unsigned int parens_balanced = 1;
9663 /* We've already checked that the number of left & right ()'s are
47926f60 9664 equal, so this loop will not be infinite. */
24eab124
AM
9665 do
9666 {
9667 base_string--;
9668 if (*base_string == ')')
9669 parens_balanced++;
9670 if (*base_string == '(')
9671 parens_balanced--;
9672 }
9673 while (parens_balanced);
c3332e24 9674
af6bdddf 9675 temp_string = base_string;
c3332e24 9676
24eab124 9677 /* Skip past '(' and whitespace. */
252b5132
RH
9678 ++base_string;
9679 if (is_space_char (*base_string))
24eab124 9680 ++base_string;
252b5132 9681
af6bdddf 9682 if (*base_string == ','
4eed87de
AM
9683 || ((i.base_reg = parse_register (base_string, &end_op))
9684 != NULL))
252b5132 9685 {
af6bdddf 9686 displacement_string_end = temp_string;
252b5132 9687
40fb9820 9688 i.types[this_operand].bitfield.baseindex = 1;
252b5132 9689
af6bdddf 9690 if (i.base_reg)
24eab124 9691 {
24eab124
AM
9692 base_string = end_op;
9693 if (is_space_char (*base_string))
9694 ++base_string;
af6bdddf
AM
9695 }
9696
9697 /* There may be an index reg or scale factor here. */
9698 if (*base_string == ',')
9699 {
9700 ++base_string;
9701 if (is_space_char (*base_string))
9702 ++base_string;
9703
4eed87de
AM
9704 if ((i.index_reg = parse_register (base_string, &end_op))
9705 != NULL)
24eab124 9706 {
af6bdddf 9707 base_string = end_op;
24eab124
AM
9708 if (is_space_char (*base_string))
9709 ++base_string;
af6bdddf
AM
9710 if (*base_string == ',')
9711 {
9712 ++base_string;
9713 if (is_space_char (*base_string))
9714 ++base_string;
9715 }
e5cb08ac 9716 else if (*base_string != ')')
af6bdddf 9717 {
4eed87de
AM
9718 as_bad (_("expecting `,' or `)' "
9719 "after index register in `%s'"),
af6bdddf
AM
9720 operand_string);
9721 return 0;
9722 }
24eab124 9723 }
af6bdddf 9724 else if (*base_string == REGISTER_PREFIX)
24eab124 9725 {
f76bf5e0
L
9726 end_op = strchr (base_string, ',');
9727 if (end_op)
9728 *end_op = '\0';
af6bdddf 9729 as_bad (_("bad register name `%s'"), base_string);
24eab124
AM
9730 return 0;
9731 }
252b5132 9732
47926f60 9733 /* Check for scale factor. */
551c1ca1 9734 if (*base_string != ')')
af6bdddf 9735 {
551c1ca1
AM
9736 char *end_scale = i386_scale (base_string);
9737
9738 if (!end_scale)
af6bdddf 9739 return 0;
24eab124 9740
551c1ca1 9741 base_string = end_scale;
af6bdddf
AM
9742 if (is_space_char (*base_string))
9743 ++base_string;
9744 if (*base_string != ')')
9745 {
4eed87de
AM
9746 as_bad (_("expecting `)' "
9747 "after scale factor in `%s'"),
af6bdddf
AM
9748 operand_string);
9749 return 0;
9750 }
9751 }
9752 else if (!i.index_reg)
24eab124 9753 {
4eed87de
AM
9754 as_bad (_("expecting index register or scale factor "
9755 "after `,'; got '%c'"),
af6bdddf 9756 *base_string);
24eab124
AM
9757 return 0;
9758 }
9759 }
af6bdddf 9760 else if (*base_string != ')')
24eab124 9761 {
4eed87de
AM
9762 as_bad (_("expecting `,' or `)' "
9763 "after base register in `%s'"),
af6bdddf 9764 operand_string);
24eab124
AM
9765 return 0;
9766 }
c3332e24 9767 }
af6bdddf 9768 else if (*base_string == REGISTER_PREFIX)
c3332e24 9769 {
f76bf5e0
L
9770 end_op = strchr (base_string, ',');
9771 if (end_op)
9772 *end_op = '\0';
af6bdddf 9773 as_bad (_("bad register name `%s'"), base_string);
24eab124 9774 return 0;
c3332e24 9775 }
24eab124
AM
9776 }
9777
9778 /* If there's an expression beginning the operand, parse it,
9779 assuming displacement_string_start and
9780 displacement_string_end are meaningful. */
9781 if (displacement_string_start != displacement_string_end)
9782 {
9783 if (!i386_displacement (displacement_string_start,
9784 displacement_string_end))
9785 return 0;
9786 }
9787
9788 /* Special case for (%dx) while doing input/output op. */
9789 if (i.base_reg
2fb5be8d 9790 && i.base_reg->reg_type.bitfield.inoutportreg
24eab124
AM
9791 && i.index_reg == 0
9792 && i.log2_scale_factor == 0
9793 && i.seg[i.mem_operands] == 0
40fb9820 9794 && !operand_type_check (i.types[this_operand], disp))
24eab124 9795 {
2fb5be8d 9796 i.types[this_operand] = i.base_reg->reg_type;
24eab124
AM
9797 return 1;
9798 }
9799
eecb386c
AM
9800 if (i386_index_check (operand_string) == 0)
9801 return 0;
5c07affc 9802 i.types[this_operand].bitfield.mem = 1;
8325cc63
JB
9803 if (i.mem_operands == 0)
9804 i.memop1_string = xstrdup (operand_string);
24eab124
AM
9805 i.mem_operands++;
9806 }
9807 else
ce8a8b2f
AM
9808 {
9809 /* It's not a memory operand; argh! */
24eab124
AM
9810 as_bad (_("invalid char %s beginning operand %d `%s'"),
9811 output_invalid (*op_string),
9812 this_operand + 1,
9813 op_string);
9814 return 0;
9815 }
47926f60 9816 return 1; /* Normal return. */
252b5132
RH
9817}
9818\f
fa94de6b
RM
9819/* Calculate the maximum variable size (i.e., excluding fr_fix)
9820 that an rs_machine_dependent frag may reach. */
9821
9822unsigned int
9823i386_frag_max_var (fragS *frag)
9824{
9825 /* The only relaxable frags are for jumps.
9826 Unconditional jumps can grow by 4 bytes and others by 5 bytes. */
9827 gas_assert (frag->fr_type == rs_machine_dependent);
9828 return TYPE_FROM_RELAX_STATE (frag->fr_subtype) == UNCOND_JUMP ? 4 : 5;
9829}
9830
b084df0b
L
9831#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
9832static int
8dcea932 9833elf_symbol_resolved_in_segment_p (symbolS *fr_symbol, offsetT fr_var)
b084df0b
L
9834{
9835 /* STT_GNU_IFUNC symbol must go through PLT. */
9836 if ((symbol_get_bfdsym (fr_symbol)->flags
9837 & BSF_GNU_INDIRECT_FUNCTION) != 0)
9838 return 0;
9839
9840 if (!S_IS_EXTERNAL (fr_symbol))
9841 /* Symbol may be weak or local. */
9842 return !S_IS_WEAK (fr_symbol);
9843
8dcea932
L
9844 /* Global symbols with non-default visibility can't be preempted. */
9845 if (ELF_ST_VISIBILITY (S_GET_OTHER (fr_symbol)) != STV_DEFAULT)
9846 return 1;
9847
9848 if (fr_var != NO_RELOC)
9849 switch ((enum bfd_reloc_code_real) fr_var)
9850 {
9851 case BFD_RELOC_386_PLT32:
9852 case BFD_RELOC_X86_64_PLT32:
33eaf5de 9853 /* Symbol with PLT relocation may be preempted. */
8dcea932
L
9854 return 0;
9855 default:
9856 abort ();
9857 }
9858
b084df0b
L
9859 /* Global symbols with default visibility in a shared library may be
9860 preempted by another definition. */
8dcea932 9861 return !shared;
b084df0b
L
9862}
9863#endif
9864
ee7fcc42
AM
9865/* md_estimate_size_before_relax()
9866
9867 Called just before relax() for rs_machine_dependent frags. The x86
9868 assembler uses these frags to handle variable size jump
9869 instructions.
9870
9871 Any symbol that is now undefined will not become defined.
9872 Return the correct fr_subtype in the frag.
9873 Return the initial "guess for variable size of frag" to caller.
9874 The guess is actually the growth beyond the fixed part. Whatever
9875 we do to grow the fixed or variable part contributes to our
9876 returned value. */
9877
252b5132 9878int
7016a5d5 9879md_estimate_size_before_relax (fragS *fragP, segT segment)
252b5132 9880{
252b5132 9881 /* We've already got fragP->fr_subtype right; all we have to do is
b98ef147
AM
9882 check for un-relaxable symbols. On an ELF system, we can't relax
9883 an externally visible symbol, because it may be overridden by a
9884 shared library. */
9885 if (S_GET_SEGMENT (fragP->fr_symbol) != segment
6d249963 9886#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 9887 || (IS_ELF
8dcea932
L
9888 && !elf_symbol_resolved_in_segment_p (fragP->fr_symbol,
9889 fragP->fr_var))
fbeb56a4
DK
9890#endif
9891#if defined (OBJ_COFF) && defined (TE_PE)
7ab9ffdd 9892 || (OUTPUT_FLAVOR == bfd_target_coff_flavour
fbeb56a4 9893 && S_IS_WEAK (fragP->fr_symbol))
b98ef147
AM
9894#endif
9895 )
252b5132 9896 {
b98ef147
AM
9897 /* Symbol is undefined in this segment, or we need to keep a
9898 reloc so that weak symbols can be overridden. */
9899 int size = (fragP->fr_subtype & CODE16) ? 2 : 4;
f86103b7 9900 enum bfd_reloc_code_real reloc_type;
ee7fcc42
AM
9901 unsigned char *opcode;
9902 int old_fr_fix;
f6af82bd 9903
ee7fcc42 9904 if (fragP->fr_var != NO_RELOC)
1e9cc1c2 9905 reloc_type = (enum bfd_reloc_code_real) fragP->fr_var;
b98ef147 9906 else if (size == 2)
f6af82bd 9907 reloc_type = BFD_RELOC_16_PCREL;
bd7ab16b
L
9908#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
9909 else if (need_plt32_p (fragP->fr_symbol))
9910 reloc_type = BFD_RELOC_X86_64_PLT32;
9911#endif
f6af82bd
AM
9912 else
9913 reloc_type = BFD_RELOC_32_PCREL;
252b5132 9914
ee7fcc42
AM
9915 old_fr_fix = fragP->fr_fix;
9916 opcode = (unsigned char *) fragP->fr_opcode;
9917
fddf5b5b 9918 switch (TYPE_FROM_RELAX_STATE (fragP->fr_subtype))
252b5132 9919 {
fddf5b5b
AM
9920 case UNCOND_JUMP:
9921 /* Make jmp (0xeb) a (d)word displacement jump. */
47926f60 9922 opcode[0] = 0xe9;
252b5132 9923 fragP->fr_fix += size;
062cd5e7
AS
9924 fix_new (fragP, old_fr_fix, size,
9925 fragP->fr_symbol,
9926 fragP->fr_offset, 1,
9927 reloc_type);
252b5132
RH
9928 break;
9929
fddf5b5b 9930 case COND_JUMP86:
412167cb
AM
9931 if (size == 2
9932 && (!no_cond_jump_promotion || fragP->fr_var != NO_RELOC))
fddf5b5b
AM
9933 {
9934 /* Negate the condition, and branch past an
9935 unconditional jump. */
9936 opcode[0] ^= 1;
9937 opcode[1] = 3;
9938 /* Insert an unconditional jump. */
9939 opcode[2] = 0xe9;
9940 /* We added two extra opcode bytes, and have a two byte
9941 offset. */
9942 fragP->fr_fix += 2 + 2;
062cd5e7
AS
9943 fix_new (fragP, old_fr_fix + 2, 2,
9944 fragP->fr_symbol,
9945 fragP->fr_offset, 1,
9946 reloc_type);
fddf5b5b
AM
9947 break;
9948 }
9949 /* Fall through. */
9950
9951 case COND_JUMP:
412167cb
AM
9952 if (no_cond_jump_promotion && fragP->fr_var == NO_RELOC)
9953 {
3e02c1cc
AM
9954 fixS *fixP;
9955
412167cb 9956 fragP->fr_fix += 1;
3e02c1cc
AM
9957 fixP = fix_new (fragP, old_fr_fix, 1,
9958 fragP->fr_symbol,
9959 fragP->fr_offset, 1,
9960 BFD_RELOC_8_PCREL);
9961 fixP->fx_signed = 1;
412167cb
AM
9962 break;
9963 }
93c2a809 9964
24eab124 9965 /* This changes the byte-displacement jump 0x7N
fddf5b5b 9966 to the (d)word-displacement jump 0x0f,0x8N. */
252b5132 9967 opcode[1] = opcode[0] + 0x10;
f6af82bd 9968 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
47926f60
KH
9969 /* We've added an opcode byte. */
9970 fragP->fr_fix += 1 + size;
062cd5e7
AS
9971 fix_new (fragP, old_fr_fix + 1, size,
9972 fragP->fr_symbol,
9973 fragP->fr_offset, 1,
9974 reloc_type);
252b5132 9975 break;
fddf5b5b
AM
9976
9977 default:
9978 BAD_CASE (fragP->fr_subtype);
9979 break;
252b5132
RH
9980 }
9981 frag_wane (fragP);
ee7fcc42 9982 return fragP->fr_fix - old_fr_fix;
252b5132 9983 }
93c2a809 9984
93c2a809
AM
9985 /* Guess size depending on current relax state. Initially the relax
9986 state will correspond to a short jump and we return 1, because
9987 the variable part of the frag (the branch offset) is one byte
9988 long. However, we can relax a section more than once and in that
9989 case we must either set fr_subtype back to the unrelaxed state,
9990 or return the value for the appropriate branch. */
9991 return md_relax_table[fragP->fr_subtype].rlx_length;
ee7fcc42
AM
9992}
9993
47926f60
KH
9994/* Called after relax() is finished.
9995
9996 In: Address of frag.
9997 fr_type == rs_machine_dependent.
9998 fr_subtype is what the address relaxed to.
9999
10000 Out: Any fixSs and constants are set up.
10001 Caller will turn frag into a ".space 0". */
10002
252b5132 10003void
7016a5d5
TG
10004md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec ATTRIBUTE_UNUSED,
10005 fragS *fragP)
252b5132 10006{
29b0f896 10007 unsigned char *opcode;
252b5132 10008 unsigned char *where_to_put_displacement = NULL;
847f7ad4
AM
10009 offsetT target_address;
10010 offsetT opcode_address;
252b5132 10011 unsigned int extension = 0;
847f7ad4 10012 offsetT displacement_from_opcode_start;
252b5132
RH
10013
10014 opcode = (unsigned char *) fragP->fr_opcode;
10015
47926f60 10016 /* Address we want to reach in file space. */
252b5132 10017 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
252b5132 10018
47926f60 10019 /* Address opcode resides at in file space. */
252b5132
RH
10020 opcode_address = fragP->fr_address + fragP->fr_fix;
10021
47926f60 10022 /* Displacement from opcode start to fill into instruction. */
252b5132
RH
10023 displacement_from_opcode_start = target_address - opcode_address;
10024
fddf5b5b 10025 if ((fragP->fr_subtype & BIG) == 0)
252b5132 10026 {
47926f60
KH
10027 /* Don't have to change opcode. */
10028 extension = 1; /* 1 opcode + 1 displacement */
252b5132 10029 where_to_put_displacement = &opcode[1];
fddf5b5b
AM
10030 }
10031 else
10032 {
10033 if (no_cond_jump_promotion
10034 && TYPE_FROM_RELAX_STATE (fragP->fr_subtype) != UNCOND_JUMP)
4eed87de
AM
10035 as_warn_where (fragP->fr_file, fragP->fr_line,
10036 _("long jump required"));
252b5132 10037
fddf5b5b
AM
10038 switch (fragP->fr_subtype)
10039 {
10040 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG):
10041 extension = 4; /* 1 opcode + 4 displacement */
10042 opcode[0] = 0xe9;
10043 where_to_put_displacement = &opcode[1];
10044 break;
252b5132 10045
fddf5b5b
AM
10046 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16):
10047 extension = 2; /* 1 opcode + 2 displacement */
10048 opcode[0] = 0xe9;
10049 where_to_put_displacement = &opcode[1];
10050 break;
252b5132 10051
fddf5b5b
AM
10052 case ENCODE_RELAX_STATE (COND_JUMP, BIG):
10053 case ENCODE_RELAX_STATE (COND_JUMP86, BIG):
10054 extension = 5; /* 2 opcode + 4 displacement */
10055 opcode[1] = opcode[0] + 0x10;
10056 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
10057 where_to_put_displacement = &opcode[2];
10058 break;
252b5132 10059
fddf5b5b
AM
10060 case ENCODE_RELAX_STATE (COND_JUMP, BIG16):
10061 extension = 3; /* 2 opcode + 2 displacement */
10062 opcode[1] = opcode[0] + 0x10;
10063 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
10064 where_to_put_displacement = &opcode[2];
10065 break;
252b5132 10066
fddf5b5b
AM
10067 case ENCODE_RELAX_STATE (COND_JUMP86, BIG16):
10068 extension = 4;
10069 opcode[0] ^= 1;
10070 opcode[1] = 3;
10071 opcode[2] = 0xe9;
10072 where_to_put_displacement = &opcode[3];
10073 break;
10074
10075 default:
10076 BAD_CASE (fragP->fr_subtype);
10077 break;
10078 }
252b5132 10079 }
fddf5b5b 10080
7b81dfbb
AJ
10081 /* If size if less then four we are sure that the operand fits,
10082 but if it's 4, then it could be that the displacement is larger
10083 then -/+ 2GB. */
10084 if (DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype) == 4
10085 && object_64bit
10086 && ((addressT) (displacement_from_opcode_start - extension
4eed87de
AM
10087 + ((addressT) 1 << 31))
10088 > (((addressT) 2 << 31) - 1)))
7b81dfbb
AJ
10089 {
10090 as_bad_where (fragP->fr_file, fragP->fr_line,
10091 _("jump target out of range"));
10092 /* Make us emit 0. */
10093 displacement_from_opcode_start = extension;
10094 }
47926f60 10095 /* Now put displacement after opcode. */
252b5132
RH
10096 md_number_to_chars ((char *) where_to_put_displacement,
10097 (valueT) (displacement_from_opcode_start - extension),
fddf5b5b 10098 DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
252b5132
RH
10099 fragP->fr_fix += extension;
10100}
10101\f
7016a5d5 10102/* Apply a fixup (fixP) to segment data, once it has been determined
252b5132
RH
10103 by our caller that we have all the info we need to fix it up.
10104
7016a5d5
TG
10105 Parameter valP is the pointer to the value of the bits.
10106
252b5132
RH
10107 On the 386, immediates, displacements, and data pointers are all in
10108 the same (little-endian) format, so we don't need to care about which
10109 we are handling. */
10110
94f592af 10111void
7016a5d5 10112md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 10113{
94f592af 10114 char *p = fixP->fx_where + fixP->fx_frag->fr_literal;
c6682705 10115 valueT value = *valP;
252b5132 10116
f86103b7 10117#if !defined (TE_Mach)
93382f6d
AM
10118 if (fixP->fx_pcrel)
10119 {
10120 switch (fixP->fx_r_type)
10121 {
5865bb77
ILT
10122 default:
10123 break;
10124
d6ab8113
JB
10125 case BFD_RELOC_64:
10126 fixP->fx_r_type = BFD_RELOC_64_PCREL;
10127 break;
93382f6d 10128 case BFD_RELOC_32:
ae8887b5 10129 case BFD_RELOC_X86_64_32S:
93382f6d
AM
10130 fixP->fx_r_type = BFD_RELOC_32_PCREL;
10131 break;
10132 case BFD_RELOC_16:
10133 fixP->fx_r_type = BFD_RELOC_16_PCREL;
10134 break;
10135 case BFD_RELOC_8:
10136 fixP->fx_r_type = BFD_RELOC_8_PCREL;
10137 break;
10138 }
10139 }
252b5132 10140
a161fe53 10141 if (fixP->fx_addsy != NULL
31312f95 10142 && (fixP->fx_r_type == BFD_RELOC_32_PCREL
d6ab8113 10143 || fixP->fx_r_type == BFD_RELOC_64_PCREL
31312f95 10144 || fixP->fx_r_type == BFD_RELOC_16_PCREL
d258b828 10145 || fixP->fx_r_type == BFD_RELOC_8_PCREL)
31312f95 10146 && !use_rela_relocations)
252b5132 10147 {
31312f95
AM
10148 /* This is a hack. There should be a better way to handle this.
10149 This covers for the fact that bfd_install_relocation will
10150 subtract the current location (for partial_inplace, PC relative
10151 relocations); see more below. */
252b5132 10152#ifndef OBJ_AOUT
718ddfc0 10153 if (IS_ELF
252b5132
RH
10154#ifdef TE_PE
10155 || OUTPUT_FLAVOR == bfd_target_coff_flavour
10156#endif
10157 )
10158 value += fixP->fx_where + fixP->fx_frag->fr_address;
10159#endif
10160#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 10161 if (IS_ELF)
252b5132 10162 {
6539b54b 10163 segT sym_seg = S_GET_SEGMENT (fixP->fx_addsy);
2f66722d 10164
6539b54b 10165 if ((sym_seg == seg
2f66722d 10166 || (symbol_section_p (fixP->fx_addsy)
6539b54b 10167 && sym_seg != absolute_section))
af65af87 10168 && !generic_force_reloc (fixP))
2f66722d
AM
10169 {
10170 /* Yes, we add the values in twice. This is because
6539b54b
AM
10171 bfd_install_relocation subtracts them out again. I think
10172 bfd_install_relocation is broken, but I don't dare change
2f66722d
AM
10173 it. FIXME. */
10174 value += fixP->fx_where + fixP->fx_frag->fr_address;
10175 }
252b5132
RH
10176 }
10177#endif
10178#if defined (OBJ_COFF) && defined (TE_PE)
977cdf5a
NC
10179 /* For some reason, the PE format does not store a
10180 section address offset for a PC relative symbol. */
10181 if (S_GET_SEGMENT (fixP->fx_addsy) != seg
7be1c489 10182 || S_IS_WEAK (fixP->fx_addsy))
252b5132
RH
10183 value += md_pcrel_from (fixP);
10184#endif
10185 }
fbeb56a4 10186#if defined (OBJ_COFF) && defined (TE_PE)
f01c1a09
NC
10187 if (fixP->fx_addsy != NULL
10188 && S_IS_WEAK (fixP->fx_addsy)
10189 /* PR 16858: Do not modify weak function references. */
10190 && ! fixP->fx_pcrel)
fbeb56a4 10191 {
296a8689
NC
10192#if !defined (TE_PEP)
10193 /* For x86 PE weak function symbols are neither PC-relative
10194 nor do they set S_IS_FUNCTION. So the only reliable way
10195 to detect them is to check the flags of their containing
10196 section. */
10197 if (S_GET_SEGMENT (fixP->fx_addsy) != NULL
10198 && S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_CODE)
10199 ;
10200 else
10201#endif
fbeb56a4
DK
10202 value -= S_GET_VALUE (fixP->fx_addsy);
10203 }
10204#endif
252b5132
RH
10205
10206 /* Fix a few things - the dynamic linker expects certain values here,
0234cb7c 10207 and we must not disappoint it. */
252b5132 10208#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
718ddfc0 10209 if (IS_ELF && fixP->fx_addsy)
47926f60
KH
10210 switch (fixP->fx_r_type)
10211 {
10212 case BFD_RELOC_386_PLT32:
3e73aa7c 10213 case BFD_RELOC_X86_64_PLT32:
47926f60
KH
10214 /* Make the jump instruction point to the address of the operand. At
10215 runtime we merely add the offset to the actual PLT entry. */
10216 value = -4;
10217 break;
31312f95 10218
13ae64f3
JJ
10219 case BFD_RELOC_386_TLS_GD:
10220 case BFD_RELOC_386_TLS_LDM:
13ae64f3 10221 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
10222 case BFD_RELOC_386_TLS_IE:
10223 case BFD_RELOC_386_TLS_GOTIE:
67a4f2b7 10224 case BFD_RELOC_386_TLS_GOTDESC:
bffbf940
JJ
10225 case BFD_RELOC_X86_64_TLSGD:
10226 case BFD_RELOC_X86_64_TLSLD:
10227 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7 10228 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
00f7efb6
JJ
10229 value = 0; /* Fully resolved at runtime. No addend. */
10230 /* Fallthrough */
10231 case BFD_RELOC_386_TLS_LE:
10232 case BFD_RELOC_386_TLS_LDO_32:
10233 case BFD_RELOC_386_TLS_LE_32:
10234 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 10235 case BFD_RELOC_X86_64_DTPOFF64:
00f7efb6 10236 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113 10237 case BFD_RELOC_X86_64_TPOFF64:
00f7efb6
JJ
10238 S_SET_THREAD_LOCAL (fixP->fx_addsy);
10239 break;
10240
67a4f2b7
AO
10241 case BFD_RELOC_386_TLS_DESC_CALL:
10242 case BFD_RELOC_X86_64_TLSDESC_CALL:
10243 value = 0; /* Fully resolved at runtime. No addend. */
10244 S_SET_THREAD_LOCAL (fixP->fx_addsy);
10245 fixP->fx_done = 0;
10246 return;
10247
47926f60
KH
10248 case BFD_RELOC_VTABLE_INHERIT:
10249 case BFD_RELOC_VTABLE_ENTRY:
10250 fixP->fx_done = 0;
94f592af 10251 return;
47926f60
KH
10252
10253 default:
10254 break;
10255 }
10256#endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) */
c6682705 10257 *valP = value;
f86103b7 10258#endif /* !defined (TE_Mach) */
3e73aa7c 10259
3e73aa7c 10260 /* Are we finished with this relocation now? */
c6682705 10261 if (fixP->fx_addsy == NULL)
3e73aa7c 10262 fixP->fx_done = 1;
fbeb56a4
DK
10263#if defined (OBJ_COFF) && defined (TE_PE)
10264 else if (fixP->fx_addsy != NULL && S_IS_WEAK (fixP->fx_addsy))
10265 {
10266 fixP->fx_done = 0;
10267 /* Remember value for tc_gen_reloc. */
10268 fixP->fx_addnumber = value;
10269 /* Clear out the frag for now. */
10270 value = 0;
10271 }
10272#endif
3e73aa7c
JH
10273 else if (use_rela_relocations)
10274 {
10275 fixP->fx_no_overflow = 1;
062cd5e7
AS
10276 /* Remember value for tc_gen_reloc. */
10277 fixP->fx_addnumber = value;
3e73aa7c
JH
10278 value = 0;
10279 }
f86103b7 10280
94f592af 10281 md_number_to_chars (p, value, fixP->fx_size);
252b5132 10282}
252b5132 10283\f
6d4af3c2 10284const char *
499ac353 10285md_atof (int type, char *litP, int *sizeP)
252b5132 10286{
499ac353
NC
10287 /* This outputs the LITTLENUMs in REVERSE order;
10288 in accord with the bigendian 386. */
10289 return ieee_md_atof (type, litP, sizeP, FALSE);
252b5132
RH
10290}
10291\f
2d545b82 10292static char output_invalid_buf[sizeof (unsigned char) * 2 + 6];
252b5132 10293
252b5132 10294static char *
e3bb37b5 10295output_invalid (int c)
252b5132 10296{
3882b010 10297 if (ISPRINT (c))
f9f21a03
L
10298 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
10299 "'%c'", c);
252b5132 10300 else
f9f21a03 10301 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
2d545b82 10302 "(0x%x)", (unsigned char) c);
252b5132
RH
10303 return output_invalid_buf;
10304}
10305
af6bdddf 10306/* REG_STRING starts *before* REGISTER_PREFIX. */
252b5132
RH
10307
10308static const reg_entry *
4d1bb795 10309parse_real_register (char *reg_string, char **end_op)
252b5132 10310{
af6bdddf
AM
10311 char *s = reg_string;
10312 char *p;
252b5132
RH
10313 char reg_name_given[MAX_REG_NAME_SIZE + 1];
10314 const reg_entry *r;
10315
10316 /* Skip possible REGISTER_PREFIX and possible whitespace. */
10317 if (*s == REGISTER_PREFIX)
10318 ++s;
10319
10320 if (is_space_char (*s))
10321 ++s;
10322
10323 p = reg_name_given;
af6bdddf 10324 while ((*p++ = register_chars[(unsigned char) *s]) != '\0')
252b5132
RH
10325 {
10326 if (p >= reg_name_given + MAX_REG_NAME_SIZE)
af6bdddf
AM
10327 return (const reg_entry *) NULL;
10328 s++;
252b5132
RH
10329 }
10330
6588847e
DN
10331 /* For naked regs, make sure that we are not dealing with an identifier.
10332 This prevents confusing an identifier like `eax_var' with register
10333 `eax'. */
10334 if (allow_naked_reg && identifier_chars[(unsigned char) *s])
10335 return (const reg_entry *) NULL;
10336
af6bdddf 10337 *end_op = s;
252b5132
RH
10338
10339 r = (const reg_entry *) hash_find (reg_hash, reg_name_given);
10340
5f47d35b 10341 /* Handle floating point regs, allowing spaces in the (i) part. */
47926f60 10342 if (r == i386_regtab /* %st is first entry of table */)
5f47d35b 10343 {
0e0eea78
JB
10344 if (!cpu_arch_flags.bitfield.cpu8087
10345 && !cpu_arch_flags.bitfield.cpu287
10346 && !cpu_arch_flags.bitfield.cpu387)
10347 return (const reg_entry *) NULL;
10348
5f47d35b
AM
10349 if (is_space_char (*s))
10350 ++s;
10351 if (*s == '(')
10352 {
af6bdddf 10353 ++s;
5f47d35b
AM
10354 if (is_space_char (*s))
10355 ++s;
10356 if (*s >= '0' && *s <= '7')
10357 {
db557034 10358 int fpr = *s - '0';
af6bdddf 10359 ++s;
5f47d35b
AM
10360 if (is_space_char (*s))
10361 ++s;
10362 if (*s == ')')
10363 {
10364 *end_op = s + 1;
1e9cc1c2 10365 r = (const reg_entry *) hash_find (reg_hash, "st(0)");
db557034
AM
10366 know (r);
10367 return r + fpr;
5f47d35b 10368 }
5f47d35b 10369 }
47926f60 10370 /* We have "%st(" then garbage. */
5f47d35b
AM
10371 return (const reg_entry *) NULL;
10372 }
10373 }
10374
a60de03c
JB
10375 if (r == NULL || allow_pseudo_reg)
10376 return r;
10377
0dfbf9d7 10378 if (operand_type_all_zero (&r->reg_type))
a60de03c
JB
10379 return (const reg_entry *) NULL;
10380
dc821c5f 10381 if ((r->reg_type.bitfield.dword
192dc9c6
JB
10382 || r->reg_type.bitfield.sreg3
10383 || r->reg_type.bitfield.control
10384 || r->reg_type.bitfield.debug
10385 || r->reg_type.bitfield.test)
10386 && !cpu_arch_flags.bitfield.cpui386)
10387 return (const reg_entry *) NULL;
10388
6e041cf4 10389 if (r->reg_type.bitfield.regmmx && !cpu_arch_flags.bitfield.cpummx)
192dc9c6
JB
10390 return (const reg_entry *) NULL;
10391
6e041cf4
JB
10392 if (!cpu_arch_flags.bitfield.cpuavx512f)
10393 {
10394 if (r->reg_type.bitfield.zmmword || r->reg_type.bitfield.regmask)
10395 return (const reg_entry *) NULL;
40f12533 10396
6e041cf4
JB
10397 if (!cpu_arch_flags.bitfield.cpuavx)
10398 {
10399 if (r->reg_type.bitfield.ymmword)
10400 return (const reg_entry *) NULL;
1848e567 10401
6e041cf4
JB
10402 if (!cpu_arch_flags.bitfield.cpusse && r->reg_type.bitfield.xmmword)
10403 return (const reg_entry *) NULL;
10404 }
10405 }
43234a1e 10406
1adf7f56
JB
10407 if (r->reg_type.bitfield.regbnd && !cpu_arch_flags.bitfield.cpumpx)
10408 return (const reg_entry *) NULL;
10409
db51cc60 10410 /* Don't allow fake index register unless allow_index_reg isn't 0. */
a60de03c 10411 if (!allow_index_reg
db51cc60
L
10412 && (r->reg_num == RegEiz || r->reg_num == RegRiz))
10413 return (const reg_entry *) NULL;
10414
1d3f8286
JB
10415 /* Upper 16 vector registers are only available with VREX in 64bit
10416 mode, and require EVEX encoding. */
10417 if (r->reg_flags & RegVRex)
43234a1e 10418 {
e951d5ca 10419 if (!cpu_arch_flags.bitfield.cpuavx512f
43234a1e
L
10420 || flag_code != CODE_64BIT)
10421 return (const reg_entry *) NULL;
1d3f8286
JB
10422
10423 i.vec_encoding = vex_encoding_evex;
43234a1e
L
10424 }
10425
4787f4a5
JB
10426 if (((r->reg_flags & (RegRex64 | RegRex)) || r->reg_type.bitfield.qword)
10427 && (!cpu_arch_flags.bitfield.cpulm || !r->reg_type.bitfield.control)
1ae00879 10428 && flag_code != CODE_64BIT)
20f0a1fc 10429 return (const reg_entry *) NULL;
1ae00879 10430
b7240065
JB
10431 if (r->reg_type.bitfield.sreg3 && r->reg_num == RegFlat && !intel_syntax)
10432 return (const reg_entry *) NULL;
10433
252b5132
RH
10434 return r;
10435}
4d1bb795
JB
10436
10437/* REG_STRING starts *before* REGISTER_PREFIX. */
10438
10439static const reg_entry *
10440parse_register (char *reg_string, char **end_op)
10441{
10442 const reg_entry *r;
10443
10444 if (*reg_string == REGISTER_PREFIX || allow_naked_reg)
10445 r = parse_real_register (reg_string, end_op);
10446 else
10447 r = NULL;
10448 if (!r)
10449 {
10450 char *save = input_line_pointer;
10451 char c;
10452 symbolS *symbolP;
10453
10454 input_line_pointer = reg_string;
d02603dc 10455 c = get_symbol_name (&reg_string);
4d1bb795
JB
10456 symbolP = symbol_find (reg_string);
10457 if (symbolP && S_GET_SEGMENT (symbolP) == reg_section)
10458 {
10459 const expressionS *e = symbol_get_value_expression (symbolP);
10460
0398aac5 10461 know (e->X_op == O_register);
4eed87de 10462 know (e->X_add_number >= 0
c3fe08fa 10463 && (valueT) e->X_add_number < i386_regtab_size);
4d1bb795 10464 r = i386_regtab + e->X_add_number;
d3bb6b49 10465 if ((r->reg_flags & RegVRex))
86fa6981 10466 i.vec_encoding = vex_encoding_evex;
4d1bb795
JB
10467 *end_op = input_line_pointer;
10468 }
10469 *input_line_pointer = c;
10470 input_line_pointer = save;
10471 }
10472 return r;
10473}
10474
10475int
10476i386_parse_name (char *name, expressionS *e, char *nextcharP)
10477{
10478 const reg_entry *r;
10479 char *end = input_line_pointer;
10480
10481 *end = *nextcharP;
10482 r = parse_register (name, &input_line_pointer);
10483 if (r && end <= input_line_pointer)
10484 {
10485 *nextcharP = *input_line_pointer;
10486 *input_line_pointer = 0;
10487 e->X_op = O_register;
10488 e->X_add_number = r - i386_regtab;
10489 return 1;
10490 }
10491 input_line_pointer = end;
10492 *end = 0;
ee86248c 10493 return intel_syntax ? i386_intel_parse_name (name, e) : 0;
4d1bb795
JB
10494}
10495
10496void
10497md_operand (expressionS *e)
10498{
ee86248c
JB
10499 char *end;
10500 const reg_entry *r;
4d1bb795 10501
ee86248c
JB
10502 switch (*input_line_pointer)
10503 {
10504 case REGISTER_PREFIX:
10505 r = parse_real_register (input_line_pointer, &end);
4d1bb795
JB
10506 if (r)
10507 {
10508 e->X_op = O_register;
10509 e->X_add_number = r - i386_regtab;
10510 input_line_pointer = end;
10511 }
ee86248c
JB
10512 break;
10513
10514 case '[':
9c2799c2 10515 gas_assert (intel_syntax);
ee86248c
JB
10516 end = input_line_pointer++;
10517 expression (e);
10518 if (*input_line_pointer == ']')
10519 {
10520 ++input_line_pointer;
10521 e->X_op_symbol = make_expr_symbol (e);
10522 e->X_add_symbol = NULL;
10523 e->X_add_number = 0;
10524 e->X_op = O_index;
10525 }
10526 else
10527 {
10528 e->X_op = O_absent;
10529 input_line_pointer = end;
10530 }
10531 break;
4d1bb795
JB
10532 }
10533}
10534
252b5132 10535\f
4cc782b5 10536#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
b6f8c7c4 10537const char *md_shortopts = "kVQ:sqnO::";
252b5132 10538#else
b6f8c7c4 10539const char *md_shortopts = "qnO::";
252b5132 10540#endif
6e0b89ee 10541
3e73aa7c 10542#define OPTION_32 (OPTION_MD_BASE + 0)
b3b91714
AM
10543#define OPTION_64 (OPTION_MD_BASE + 1)
10544#define OPTION_DIVIDE (OPTION_MD_BASE + 2)
9103f4f4
L
10545#define OPTION_MARCH (OPTION_MD_BASE + 3)
10546#define OPTION_MTUNE (OPTION_MD_BASE + 4)
1efbbeb4
L
10547#define OPTION_MMNEMONIC (OPTION_MD_BASE + 5)
10548#define OPTION_MSYNTAX (OPTION_MD_BASE + 6)
10549#define OPTION_MINDEX_REG (OPTION_MD_BASE + 7)
10550#define OPTION_MNAKED_REG (OPTION_MD_BASE + 8)
bd5dea88 10551#define OPTION_MRELAX_RELOCATIONS (OPTION_MD_BASE + 9)
c0f3af97 10552#define OPTION_MSSE2AVX (OPTION_MD_BASE + 10)
daf50ae7 10553#define OPTION_MSSE_CHECK (OPTION_MD_BASE + 11)
7bab8ab5
JB
10554#define OPTION_MOPERAND_CHECK (OPTION_MD_BASE + 12)
10555#define OPTION_MAVXSCALAR (OPTION_MD_BASE + 13)
10556#define OPTION_X32 (OPTION_MD_BASE + 14)
7e8b059b 10557#define OPTION_MADD_BND_PREFIX (OPTION_MD_BASE + 15)
43234a1e
L
10558#define OPTION_MEVEXLIG (OPTION_MD_BASE + 16)
10559#define OPTION_MEVEXWIG (OPTION_MD_BASE + 17)
167ad85b 10560#define OPTION_MBIG_OBJ (OPTION_MD_BASE + 18)
d1982f93 10561#define OPTION_MOMIT_LOCK_PREFIX (OPTION_MD_BASE + 19)
d3d3c6db 10562#define OPTION_MEVEXRCIG (OPTION_MD_BASE + 20)
8dcea932 10563#define OPTION_MSHARED (OPTION_MD_BASE + 21)
5db04b09
L
10564#define OPTION_MAMD64 (OPTION_MD_BASE + 22)
10565#define OPTION_MINTEL64 (OPTION_MD_BASE + 23)
e4e00185 10566#define OPTION_MFENCE_AS_LOCK_ADD (OPTION_MD_BASE + 24)
b3b91714 10567
99ad8390
NC
10568struct option md_longopts[] =
10569{
3e73aa7c 10570 {"32", no_argument, NULL, OPTION_32},
321098a5 10571#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 10572 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c 10573 {"64", no_argument, NULL, OPTION_64},
351f65ca
L
10574#endif
10575#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 10576 {"x32", no_argument, NULL, OPTION_X32},
8dcea932 10577 {"mshared", no_argument, NULL, OPTION_MSHARED},
6e0b89ee 10578#endif
b3b91714 10579 {"divide", no_argument, NULL, OPTION_DIVIDE},
9103f4f4
L
10580 {"march", required_argument, NULL, OPTION_MARCH},
10581 {"mtune", required_argument, NULL, OPTION_MTUNE},
1efbbeb4
L
10582 {"mmnemonic", required_argument, NULL, OPTION_MMNEMONIC},
10583 {"msyntax", required_argument, NULL, OPTION_MSYNTAX},
10584 {"mindex-reg", no_argument, NULL, OPTION_MINDEX_REG},
10585 {"mnaked-reg", no_argument, NULL, OPTION_MNAKED_REG},
c0f3af97 10586 {"msse2avx", no_argument, NULL, OPTION_MSSE2AVX},
daf50ae7 10587 {"msse-check", required_argument, NULL, OPTION_MSSE_CHECK},
7bab8ab5 10588 {"moperand-check", required_argument, NULL, OPTION_MOPERAND_CHECK},
539f890d 10589 {"mavxscalar", required_argument, NULL, OPTION_MAVXSCALAR},
7e8b059b 10590 {"madd-bnd-prefix", no_argument, NULL, OPTION_MADD_BND_PREFIX},
43234a1e
L
10591 {"mevexlig", required_argument, NULL, OPTION_MEVEXLIG},
10592 {"mevexwig", required_argument, NULL, OPTION_MEVEXWIG},
167ad85b
TG
10593# if defined (TE_PE) || defined (TE_PEP)
10594 {"mbig-obj", no_argument, NULL, OPTION_MBIG_OBJ},
10595#endif
d1982f93 10596 {"momit-lock-prefix", required_argument, NULL, OPTION_MOMIT_LOCK_PREFIX},
e4e00185 10597 {"mfence-as-lock-add", required_argument, NULL, OPTION_MFENCE_AS_LOCK_ADD},
0cb4071e 10598 {"mrelax-relocations", required_argument, NULL, OPTION_MRELAX_RELOCATIONS},
d3d3c6db 10599 {"mevexrcig", required_argument, NULL, OPTION_MEVEXRCIG},
5db04b09
L
10600 {"mamd64", no_argument, NULL, OPTION_MAMD64},
10601 {"mintel64", no_argument, NULL, OPTION_MINTEL64},
252b5132
RH
10602 {NULL, no_argument, NULL, 0}
10603};
10604size_t md_longopts_size = sizeof (md_longopts);
10605
10606int
17b9d67d 10607md_parse_option (int c, const char *arg)
252b5132 10608{
91d6fa6a 10609 unsigned int j;
293f5f65 10610 char *arch, *next, *saved;
9103f4f4 10611
252b5132
RH
10612 switch (c)
10613 {
12b55ccc
L
10614 case 'n':
10615 optimize_align_code = 0;
10616 break;
10617
a38cf1db
AM
10618 case 'q':
10619 quiet_warnings = 1;
252b5132
RH
10620 break;
10621
10622#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
a38cf1db
AM
10623 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
10624 should be emitted or not. FIXME: Not implemented. */
10625 case 'Q':
252b5132
RH
10626 break;
10627
10628 /* -V: SVR4 argument to print version ID. */
10629 case 'V':
10630 print_version_id ();
10631 break;
10632
a38cf1db
AM
10633 /* -k: Ignore for FreeBSD compatibility. */
10634 case 'k':
252b5132 10635 break;
4cc782b5
ILT
10636
10637 case 's':
10638 /* -s: On i386 Solaris, this tells the native assembler to use
29b0f896 10639 .stab instead of .stab.excl. We always use .stab anyhow. */
4cc782b5 10640 break;
8dcea932
L
10641
10642 case OPTION_MSHARED:
10643 shared = 1;
10644 break;
99ad8390 10645#endif
321098a5 10646#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
d382c579 10647 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
3e73aa7c
JH
10648 case OPTION_64:
10649 {
10650 const char **list, **l;
10651
3e73aa7c
JH
10652 list = bfd_target_list ();
10653 for (l = list; *l != NULL; l++)
8620418b 10654 if (CONST_STRNEQ (*l, "elf64-x86-64")
99ad8390
NC
10655 || strcmp (*l, "coff-x86-64") == 0
10656 || strcmp (*l, "pe-x86-64") == 0
d382c579
TG
10657 || strcmp (*l, "pei-x86-64") == 0
10658 || strcmp (*l, "mach-o-x86-64") == 0)
6e0b89ee
AM
10659 {
10660 default_arch = "x86_64";
10661 break;
10662 }
3e73aa7c 10663 if (*l == NULL)
2b5d6a91 10664 as_fatal (_("no compiled in support for x86_64"));
3e73aa7c
JH
10665 free (list);
10666 }
10667 break;
10668#endif
252b5132 10669
351f65ca 10670#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
570561f7 10671 case OPTION_X32:
351f65ca
L
10672 if (IS_ELF)
10673 {
10674 const char **list, **l;
10675
10676 list = bfd_target_list ();
10677 for (l = list; *l != NULL; l++)
10678 if (CONST_STRNEQ (*l, "elf32-x86-64"))
10679 {
10680 default_arch = "x86_64:32";
10681 break;
10682 }
10683 if (*l == NULL)
2b5d6a91 10684 as_fatal (_("no compiled in support for 32bit x86_64"));
351f65ca
L
10685 free (list);
10686 }
10687 else
10688 as_fatal (_("32bit x86_64 is only supported for ELF"));
10689 break;
10690#endif
10691
6e0b89ee
AM
10692 case OPTION_32:
10693 default_arch = "i386";
10694 break;
10695
b3b91714
AM
10696 case OPTION_DIVIDE:
10697#ifdef SVR4_COMMENT_CHARS
10698 {
10699 char *n, *t;
10700 const char *s;
10701
add39d23 10702 n = XNEWVEC (char, strlen (i386_comment_chars) + 1);
b3b91714
AM
10703 t = n;
10704 for (s = i386_comment_chars; *s != '\0'; s++)
10705 if (*s != '/')
10706 *t++ = *s;
10707 *t = '\0';
10708 i386_comment_chars = n;
10709 }
10710#endif
10711 break;
10712
9103f4f4 10713 case OPTION_MARCH:
293f5f65
L
10714 saved = xstrdup (arg);
10715 arch = saved;
10716 /* Allow -march=+nosse. */
10717 if (*arch == '+')
10718 arch++;
6305a203 10719 do
9103f4f4 10720 {
6305a203 10721 if (*arch == '.')
2b5d6a91 10722 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
10723 next = strchr (arch, '+');
10724 if (next)
10725 *next++ = '\0';
91d6fa6a 10726 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 10727 {
91d6fa6a 10728 if (strcmp (arch, cpu_arch [j].name) == 0)
ccc9c027 10729 {
6305a203 10730 /* Processor. */
1ded5609
JB
10731 if (! cpu_arch[j].flags.bitfield.cpui386)
10732 continue;
10733
91d6fa6a 10734 cpu_arch_name = cpu_arch[j].name;
6305a203 10735 cpu_sub_arch_name = NULL;
91d6fa6a
NC
10736 cpu_arch_flags = cpu_arch[j].flags;
10737 cpu_arch_isa = cpu_arch[j].type;
10738 cpu_arch_isa_flags = cpu_arch[j].flags;
6305a203
L
10739 if (!cpu_arch_tune_set)
10740 {
10741 cpu_arch_tune = cpu_arch_isa;
10742 cpu_arch_tune_flags = cpu_arch_isa_flags;
10743 }
10744 break;
10745 }
91d6fa6a
NC
10746 else if (*cpu_arch [j].name == '.'
10747 && strcmp (arch, cpu_arch [j].name + 1) == 0)
6305a203 10748 {
33eaf5de 10749 /* ISA extension. */
6305a203 10750 i386_cpu_flags flags;
309d3373 10751
293f5f65
L
10752 flags = cpu_flags_or (cpu_arch_flags,
10753 cpu_arch[j].flags);
81486035 10754
5b64d091 10755 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
6305a203
L
10756 {
10757 if (cpu_sub_arch_name)
10758 {
10759 char *name = cpu_sub_arch_name;
10760 cpu_sub_arch_name = concat (name,
91d6fa6a 10761 cpu_arch[j].name,
1bf57e9f 10762 (const char *) NULL);
6305a203
L
10763 free (name);
10764 }
10765 else
91d6fa6a 10766 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
6305a203 10767 cpu_arch_flags = flags;
a586129e 10768 cpu_arch_isa_flags = flags;
6305a203 10769 }
0089dace
L
10770 else
10771 cpu_arch_isa_flags
10772 = cpu_flags_or (cpu_arch_isa_flags,
10773 cpu_arch[j].flags);
6305a203 10774 break;
ccc9c027 10775 }
9103f4f4 10776 }
6305a203 10777
293f5f65
L
10778 if (j >= ARRAY_SIZE (cpu_arch))
10779 {
33eaf5de 10780 /* Disable an ISA extension. */
293f5f65
L
10781 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
10782 if (strcmp (arch, cpu_noarch [j].name) == 0)
10783 {
10784 i386_cpu_flags flags;
10785
10786 flags = cpu_flags_and_not (cpu_arch_flags,
10787 cpu_noarch[j].flags);
10788 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
10789 {
10790 if (cpu_sub_arch_name)
10791 {
10792 char *name = cpu_sub_arch_name;
10793 cpu_sub_arch_name = concat (arch,
10794 (const char *) NULL);
10795 free (name);
10796 }
10797 else
10798 cpu_sub_arch_name = xstrdup (arch);
10799 cpu_arch_flags = flags;
10800 cpu_arch_isa_flags = flags;
10801 }
10802 break;
10803 }
10804
10805 if (j >= ARRAY_SIZE (cpu_noarch))
10806 j = ARRAY_SIZE (cpu_arch);
10807 }
10808
91d6fa6a 10809 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 10810 as_fatal (_("invalid -march= option: `%s'"), arg);
6305a203
L
10811
10812 arch = next;
9103f4f4 10813 }
293f5f65
L
10814 while (next != NULL);
10815 free (saved);
9103f4f4
L
10816 break;
10817
10818 case OPTION_MTUNE:
10819 if (*arg == '.')
2b5d6a91 10820 as_fatal (_("invalid -mtune= option: `%s'"), arg);
91d6fa6a 10821 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
9103f4f4 10822 {
91d6fa6a 10823 if (strcmp (arg, cpu_arch [j].name) == 0)
9103f4f4 10824 {
ccc9c027 10825 cpu_arch_tune_set = 1;
91d6fa6a
NC
10826 cpu_arch_tune = cpu_arch [j].type;
10827 cpu_arch_tune_flags = cpu_arch[j].flags;
9103f4f4
L
10828 break;
10829 }
10830 }
91d6fa6a 10831 if (j >= ARRAY_SIZE (cpu_arch))
2b5d6a91 10832 as_fatal (_("invalid -mtune= option: `%s'"), arg);
9103f4f4
L
10833 break;
10834
1efbbeb4
L
10835 case OPTION_MMNEMONIC:
10836 if (strcasecmp (arg, "att") == 0)
10837 intel_mnemonic = 0;
10838 else if (strcasecmp (arg, "intel") == 0)
10839 intel_mnemonic = 1;
10840 else
2b5d6a91 10841 as_fatal (_("invalid -mmnemonic= option: `%s'"), arg);
1efbbeb4
L
10842 break;
10843
10844 case OPTION_MSYNTAX:
10845 if (strcasecmp (arg, "att") == 0)
10846 intel_syntax = 0;
10847 else if (strcasecmp (arg, "intel") == 0)
10848 intel_syntax = 1;
10849 else
2b5d6a91 10850 as_fatal (_("invalid -msyntax= option: `%s'"), arg);
1efbbeb4
L
10851 break;
10852
10853 case OPTION_MINDEX_REG:
10854 allow_index_reg = 1;
10855 break;
10856
10857 case OPTION_MNAKED_REG:
10858 allow_naked_reg = 1;
10859 break;
10860
c0f3af97
L
10861 case OPTION_MSSE2AVX:
10862 sse2avx = 1;
10863 break;
10864
daf50ae7
L
10865 case OPTION_MSSE_CHECK:
10866 if (strcasecmp (arg, "error") == 0)
7bab8ab5 10867 sse_check = check_error;
daf50ae7 10868 else if (strcasecmp (arg, "warning") == 0)
7bab8ab5 10869 sse_check = check_warning;
daf50ae7 10870 else if (strcasecmp (arg, "none") == 0)
7bab8ab5 10871 sse_check = check_none;
daf50ae7 10872 else
2b5d6a91 10873 as_fatal (_("invalid -msse-check= option: `%s'"), arg);
daf50ae7
L
10874 break;
10875
7bab8ab5
JB
10876 case OPTION_MOPERAND_CHECK:
10877 if (strcasecmp (arg, "error") == 0)
10878 operand_check = check_error;
10879 else if (strcasecmp (arg, "warning") == 0)
10880 operand_check = check_warning;
10881 else if (strcasecmp (arg, "none") == 0)
10882 operand_check = check_none;
10883 else
10884 as_fatal (_("invalid -moperand-check= option: `%s'"), arg);
10885 break;
10886
539f890d
L
10887 case OPTION_MAVXSCALAR:
10888 if (strcasecmp (arg, "128") == 0)
10889 avxscalar = vex128;
10890 else if (strcasecmp (arg, "256") == 0)
10891 avxscalar = vex256;
10892 else
2b5d6a91 10893 as_fatal (_("invalid -mavxscalar= option: `%s'"), arg);
539f890d
L
10894 break;
10895
7e8b059b
L
10896 case OPTION_MADD_BND_PREFIX:
10897 add_bnd_prefix = 1;
10898 break;
10899
43234a1e
L
10900 case OPTION_MEVEXLIG:
10901 if (strcmp (arg, "128") == 0)
10902 evexlig = evexl128;
10903 else if (strcmp (arg, "256") == 0)
10904 evexlig = evexl256;
10905 else if (strcmp (arg, "512") == 0)
10906 evexlig = evexl512;
10907 else
10908 as_fatal (_("invalid -mevexlig= option: `%s'"), arg);
10909 break;
10910
d3d3c6db
IT
10911 case OPTION_MEVEXRCIG:
10912 if (strcmp (arg, "rne") == 0)
10913 evexrcig = rne;
10914 else if (strcmp (arg, "rd") == 0)
10915 evexrcig = rd;
10916 else if (strcmp (arg, "ru") == 0)
10917 evexrcig = ru;
10918 else if (strcmp (arg, "rz") == 0)
10919 evexrcig = rz;
10920 else
10921 as_fatal (_("invalid -mevexrcig= option: `%s'"), arg);
10922 break;
10923
43234a1e
L
10924 case OPTION_MEVEXWIG:
10925 if (strcmp (arg, "0") == 0)
10926 evexwig = evexw0;
10927 else if (strcmp (arg, "1") == 0)
10928 evexwig = evexw1;
10929 else
10930 as_fatal (_("invalid -mevexwig= option: `%s'"), arg);
10931 break;
10932
167ad85b
TG
10933# if defined (TE_PE) || defined (TE_PEP)
10934 case OPTION_MBIG_OBJ:
10935 use_big_obj = 1;
10936 break;
10937#endif
10938
d1982f93 10939 case OPTION_MOMIT_LOCK_PREFIX:
d022bddd
IT
10940 if (strcasecmp (arg, "yes") == 0)
10941 omit_lock_prefix = 1;
10942 else if (strcasecmp (arg, "no") == 0)
10943 omit_lock_prefix = 0;
10944 else
10945 as_fatal (_("invalid -momit-lock-prefix= option: `%s'"), arg);
10946 break;
10947
e4e00185
AS
10948 case OPTION_MFENCE_AS_LOCK_ADD:
10949 if (strcasecmp (arg, "yes") == 0)
10950 avoid_fence = 1;
10951 else if (strcasecmp (arg, "no") == 0)
10952 avoid_fence = 0;
10953 else
10954 as_fatal (_("invalid -mfence-as-lock-add= option: `%s'"), arg);
10955 break;
10956
0cb4071e
L
10957 case OPTION_MRELAX_RELOCATIONS:
10958 if (strcasecmp (arg, "yes") == 0)
10959 generate_relax_relocations = 1;
10960 else if (strcasecmp (arg, "no") == 0)
10961 generate_relax_relocations = 0;
10962 else
10963 as_fatal (_("invalid -mrelax-relocations= option: `%s'"), arg);
10964 break;
10965
5db04b09 10966 case OPTION_MAMD64:
e89c5eaa 10967 intel64 = 0;
5db04b09
L
10968 break;
10969
10970 case OPTION_MINTEL64:
e89c5eaa 10971 intel64 = 1;
5db04b09
L
10972 break;
10973
b6f8c7c4
L
10974 case 'O':
10975 if (arg == NULL)
10976 {
10977 optimize = 1;
10978 /* Turn off -Os. */
10979 optimize_for_space = 0;
10980 }
10981 else if (*arg == 's')
10982 {
10983 optimize_for_space = 1;
10984 /* Turn on all encoding optimizations. */
10985 optimize = -1;
10986 }
10987 else
10988 {
10989 optimize = atoi (arg);
10990 /* Turn off -Os. */
10991 optimize_for_space = 0;
10992 }
10993 break;
10994
252b5132
RH
10995 default:
10996 return 0;
10997 }
10998 return 1;
10999}
11000
8a2c8fef
L
11001#define MESSAGE_TEMPLATE \
11002" "
11003
293f5f65
L
11004static char *
11005output_message (FILE *stream, char *p, char *message, char *start,
11006 int *left_p, const char *name, int len)
11007{
11008 int size = sizeof (MESSAGE_TEMPLATE);
11009 int left = *left_p;
11010
11011 /* Reserve 2 spaces for ", " or ",\0" */
11012 left -= len + 2;
11013
11014 /* Check if there is any room. */
11015 if (left >= 0)
11016 {
11017 if (p != start)
11018 {
11019 *p++ = ',';
11020 *p++ = ' ';
11021 }
11022 p = mempcpy (p, name, len);
11023 }
11024 else
11025 {
11026 /* Output the current message now and start a new one. */
11027 *p++ = ',';
11028 *p = '\0';
11029 fprintf (stream, "%s\n", message);
11030 p = start;
11031 left = size - (start - message) - len - 2;
11032
11033 gas_assert (left >= 0);
11034
11035 p = mempcpy (p, name, len);
11036 }
11037
11038 *left_p = left;
11039 return p;
11040}
11041
8a2c8fef 11042static void
1ded5609 11043show_arch (FILE *stream, int ext, int check)
8a2c8fef
L
11044{
11045 static char message[] = MESSAGE_TEMPLATE;
11046 char *start = message + 27;
11047 char *p;
11048 int size = sizeof (MESSAGE_TEMPLATE);
11049 int left;
11050 const char *name;
11051 int len;
11052 unsigned int j;
11053
11054 p = start;
11055 left = size - (start - message);
11056 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
11057 {
11058 /* Should it be skipped? */
11059 if (cpu_arch [j].skip)
11060 continue;
11061
11062 name = cpu_arch [j].name;
11063 len = cpu_arch [j].len;
11064 if (*name == '.')
11065 {
11066 /* It is an extension. Skip if we aren't asked to show it. */
11067 if (ext)
11068 {
11069 name++;
11070 len--;
11071 }
11072 else
11073 continue;
11074 }
11075 else if (ext)
11076 {
11077 /* It is an processor. Skip if we show only extension. */
11078 continue;
11079 }
1ded5609
JB
11080 else if (check && ! cpu_arch[j].flags.bitfield.cpui386)
11081 {
11082 /* It is an impossible processor - skip. */
11083 continue;
11084 }
8a2c8fef 11085
293f5f65 11086 p = output_message (stream, p, message, start, &left, name, len);
8a2c8fef
L
11087 }
11088
293f5f65
L
11089 /* Display disabled extensions. */
11090 if (ext)
11091 for (j = 0; j < ARRAY_SIZE (cpu_noarch); j++)
11092 {
11093 name = cpu_noarch [j].name;
11094 len = cpu_noarch [j].len;
11095 p = output_message (stream, p, message, start, &left, name,
11096 len);
11097 }
11098
8a2c8fef
L
11099 *p = '\0';
11100 fprintf (stream, "%s\n", message);
11101}
11102
252b5132 11103void
8a2c8fef 11104md_show_usage (FILE *stream)
252b5132 11105{
4cc782b5
ILT
11106#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11107 fprintf (stream, _("\
a38cf1db
AM
11108 -Q ignored\n\
11109 -V print assembler version number\n\
b3b91714
AM
11110 -k ignored\n"));
11111#endif
11112 fprintf (stream, _("\
12b55ccc 11113 -n Do not optimize code alignment\n\
b3b91714
AM
11114 -q quieten some warnings\n"));
11115#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11116 fprintf (stream, _("\
a38cf1db 11117 -s ignored\n"));
b3b91714 11118#endif
321098a5
L
11119#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
11120 || defined (TE_PE) || defined (TE_PEP))
751d281c 11121 fprintf (stream, _("\
570561f7 11122 --32/--64/--x32 generate 32bit/64bit/x32 code\n"));
751d281c 11123#endif
b3b91714
AM
11124#ifdef SVR4_COMMENT_CHARS
11125 fprintf (stream, _("\
11126 --divide do not treat `/' as a comment character\n"));
a38cf1db
AM
11127#else
11128 fprintf (stream, _("\
b3b91714 11129 --divide ignored\n"));
4cc782b5 11130#endif
9103f4f4 11131 fprintf (stream, _("\
6305a203 11132 -march=CPU[,+EXTENSION...]\n\
8a2c8fef 11133 generate code for CPU and EXTENSION, CPU is one of:\n"));
1ded5609 11134 show_arch (stream, 0, 1);
8a2c8fef
L
11135 fprintf (stream, _("\
11136 EXTENSION is combination of:\n"));
1ded5609 11137 show_arch (stream, 1, 0);
6305a203 11138 fprintf (stream, _("\
8a2c8fef 11139 -mtune=CPU optimize for CPU, CPU is one of:\n"));
1ded5609 11140 show_arch (stream, 0, 0);
ba104c83 11141 fprintf (stream, _("\
c0f3af97
L
11142 -msse2avx encode SSE instructions with VEX prefix\n"));
11143 fprintf (stream, _("\
daf50ae7
L
11144 -msse-check=[none|error|warning]\n\
11145 check SSE instructions\n"));
11146 fprintf (stream, _("\
7bab8ab5
JB
11147 -moperand-check=[none|error|warning]\n\
11148 check operand combinations for validity\n"));
11149 fprintf (stream, _("\
539f890d
L
11150 -mavxscalar=[128|256] encode scalar AVX instructions with specific vector\n\
11151 length\n"));
11152 fprintf (stream, _("\
43234a1e
L
11153 -mevexlig=[128|256|512] encode scalar EVEX instructions with specific vector\n\
11154 length\n"));
11155 fprintf (stream, _("\
11156 -mevexwig=[0|1] encode EVEX instructions with specific EVEX.W value\n\
11157 for EVEX.W bit ignored instructions\n"));
11158 fprintf (stream, _("\
d3d3c6db
IT
11159 -mevexrcig=[rne|rd|ru|rz]\n\
11160 encode EVEX instructions with specific EVEX.RC value\n\
11161 for SAE-only ignored instructions\n"));
11162 fprintf (stream, _("\
ba104c83
L
11163 -mmnemonic=[att|intel] use AT&T/Intel mnemonic\n"));
11164 fprintf (stream, _("\
11165 -msyntax=[att|intel] use AT&T/Intel syntax\n"));
11166 fprintf (stream, _("\
11167 -mindex-reg support pseudo index registers\n"));
11168 fprintf (stream, _("\
11169 -mnaked-reg don't require `%%' prefix for registers\n"));
11170 fprintf (stream, _("\
7e8b059b 11171 -madd-bnd-prefix add BND prefix for all valid branches\n"));
8dcea932
L
11172 fprintf (stream, _("\
11173 -mshared disable branch optimization for shared code\n"));
167ad85b
TG
11174# if defined (TE_PE) || defined (TE_PEP)
11175 fprintf (stream, _("\
11176 -mbig-obj generate big object files\n"));
11177#endif
d022bddd
IT
11178 fprintf (stream, _("\
11179 -momit-lock-prefix=[no|yes]\n\
11180 strip all lock prefixes\n"));
5db04b09 11181 fprintf (stream, _("\
e4e00185
AS
11182 -mfence-as-lock-add=[no|yes]\n\
11183 encode lfence, mfence and sfence as\n\
11184 lock addl $0x0, (%%{re}sp)\n"));
11185 fprintf (stream, _("\
0cb4071e
L
11186 -mrelax-relocations=[no|yes]\n\
11187 generate relax relocations\n"));
11188 fprintf (stream, _("\
5db04b09
L
11189 -mamd64 accept only AMD64 ISA\n"));
11190 fprintf (stream, _("\
11191 -mintel64 accept only Intel64 ISA\n"));
252b5132
RH
11192}
11193
3e73aa7c 11194#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
321098a5 11195 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
e57f8c65 11196 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
252b5132
RH
11197
11198/* Pick the target format to use. */
11199
47926f60 11200const char *
e3bb37b5 11201i386_target_format (void)
252b5132 11202{
351f65ca
L
11203 if (!strncmp (default_arch, "x86_64", 6))
11204 {
11205 update_code_flag (CODE_64BIT, 1);
11206 if (default_arch[6] == '\0')
7f56bc95 11207 x86_elf_abi = X86_64_ABI;
351f65ca 11208 else
7f56bc95 11209 x86_elf_abi = X86_64_X32_ABI;
351f65ca 11210 }
3e73aa7c 11211 else if (!strcmp (default_arch, "i386"))
78f12dd3 11212 update_code_flag (CODE_32BIT, 1);
5197d474
L
11213 else if (!strcmp (default_arch, "iamcu"))
11214 {
11215 update_code_flag (CODE_32BIT, 1);
11216 if (cpu_arch_isa == PROCESSOR_UNKNOWN)
11217 {
11218 static const i386_cpu_flags iamcu_flags = CPU_IAMCU_FLAGS;
11219 cpu_arch_name = "iamcu";
11220 cpu_sub_arch_name = NULL;
11221 cpu_arch_flags = iamcu_flags;
11222 cpu_arch_isa = PROCESSOR_IAMCU;
11223 cpu_arch_isa_flags = iamcu_flags;
11224 if (!cpu_arch_tune_set)
11225 {
11226 cpu_arch_tune = cpu_arch_isa;
11227 cpu_arch_tune_flags = cpu_arch_isa_flags;
11228 }
11229 }
8d471ec1 11230 else if (cpu_arch_isa != PROCESSOR_IAMCU)
5197d474
L
11231 as_fatal (_("Intel MCU doesn't support `%s' architecture"),
11232 cpu_arch_name);
11233 }
3e73aa7c 11234 else
2b5d6a91 11235 as_fatal (_("unknown architecture"));
89507696
JB
11236
11237 if (cpu_flags_all_zero (&cpu_arch_isa_flags))
11238 cpu_arch_isa_flags = cpu_arch[flag_code == CODE_64BIT].flags;
11239 if (cpu_flags_all_zero (&cpu_arch_tune_flags))
11240 cpu_arch_tune_flags = cpu_arch[flag_code == CODE_64BIT].flags;
11241
252b5132
RH
11242 switch (OUTPUT_FLAVOR)
11243 {
9384f2ff 11244#if defined (OBJ_MAYBE_AOUT) || defined (OBJ_AOUT)
4c63da97 11245 case bfd_target_aout_flavour:
47926f60 11246 return AOUT_TARGET_FORMAT;
4c63da97 11247#endif
9384f2ff
AM
11248#if defined (OBJ_MAYBE_COFF) || defined (OBJ_COFF)
11249# if defined (TE_PE) || defined (TE_PEP)
11250 case bfd_target_coff_flavour:
167ad85b
TG
11251 if (flag_code == CODE_64BIT)
11252 return use_big_obj ? "pe-bigobj-x86-64" : "pe-x86-64";
11253 else
11254 return "pe-i386";
9384f2ff 11255# elif defined (TE_GO32)
0561d57c
JK
11256 case bfd_target_coff_flavour:
11257 return "coff-go32";
9384f2ff 11258# else
252b5132
RH
11259 case bfd_target_coff_flavour:
11260 return "coff-i386";
9384f2ff 11261# endif
4c63da97 11262#endif
3e73aa7c 11263#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
252b5132 11264 case bfd_target_elf_flavour:
3e73aa7c 11265 {
351f65ca
L
11266 const char *format;
11267
11268 switch (x86_elf_abi)
4fa24527 11269 {
351f65ca
L
11270 default:
11271 format = ELF_TARGET_FORMAT;
11272 break;
7f56bc95 11273 case X86_64_ABI:
351f65ca 11274 use_rela_relocations = 1;
4fa24527 11275 object_64bit = 1;
351f65ca
L
11276 format = ELF_TARGET_FORMAT64;
11277 break;
7f56bc95 11278 case X86_64_X32_ABI:
4fa24527 11279 use_rela_relocations = 1;
351f65ca 11280 object_64bit = 1;
862be3fb 11281 disallow_64bit_reloc = 1;
351f65ca
L
11282 format = ELF_TARGET_FORMAT32;
11283 break;
4fa24527 11284 }
3632d14b 11285 if (cpu_arch_isa == PROCESSOR_L1OM)
8a9036a4 11286 {
7f56bc95 11287 if (x86_elf_abi != X86_64_ABI)
8a9036a4
L
11288 as_fatal (_("Intel L1OM is 64bit only"));
11289 return ELF_TARGET_L1OM_FORMAT;
11290 }
b49f93f6 11291 else if (cpu_arch_isa == PROCESSOR_K1OM)
7a9068fe
L
11292 {
11293 if (x86_elf_abi != X86_64_ABI)
11294 as_fatal (_("Intel K1OM is 64bit only"));
11295 return ELF_TARGET_K1OM_FORMAT;
11296 }
81486035
L
11297 else if (cpu_arch_isa == PROCESSOR_IAMCU)
11298 {
11299 if (x86_elf_abi != I386_ABI)
11300 as_fatal (_("Intel MCU is 32bit only"));
11301 return ELF_TARGET_IAMCU_FORMAT;
11302 }
8a9036a4 11303 else
351f65ca 11304 return format;
3e73aa7c 11305 }
e57f8c65
TG
11306#endif
11307#if defined (OBJ_MACH_O)
11308 case bfd_target_mach_o_flavour:
d382c579
TG
11309 if (flag_code == CODE_64BIT)
11310 {
11311 use_rela_relocations = 1;
11312 object_64bit = 1;
11313 return "mach-o-x86-64";
11314 }
11315 else
11316 return "mach-o-i386";
4c63da97 11317#endif
252b5132
RH
11318 default:
11319 abort ();
11320 return NULL;
11321 }
11322}
11323
47926f60 11324#endif /* OBJ_MAYBE_ more than one */
252b5132 11325\f
252b5132 11326symbolS *
7016a5d5 11327md_undefined_symbol (char *name)
252b5132 11328{
18dc2407
ILT
11329 if (name[0] == GLOBAL_OFFSET_TABLE_NAME[0]
11330 && name[1] == GLOBAL_OFFSET_TABLE_NAME[1]
11331 && name[2] == GLOBAL_OFFSET_TABLE_NAME[2]
11332 && strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0)
24eab124
AM
11333 {
11334 if (!GOT_symbol)
11335 {
11336 if (symbol_find (name))
11337 as_bad (_("GOT already in symbol table"));
11338 GOT_symbol = symbol_new (name, undefined_section,
11339 (valueT) 0, &zero_address_frag);
11340 };
11341 return GOT_symbol;
11342 }
252b5132
RH
11343 return 0;
11344}
11345
11346/* Round up a section size to the appropriate boundary. */
47926f60 11347
252b5132 11348valueT
7016a5d5 11349md_section_align (segT segment ATTRIBUTE_UNUSED, valueT size)
252b5132 11350{
4c63da97
AM
11351#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
11352 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
11353 {
11354 /* For a.out, force the section size to be aligned. If we don't do
11355 this, BFD will align it for us, but it will not write out the
11356 final bytes of the section. This may be a bug in BFD, but it is
11357 easier to fix it here since that is how the other a.out targets
11358 work. */
11359 int align;
11360
11361 align = bfd_get_section_alignment (stdoutput, segment);
8d3842cd 11362 size = ((size + (1 << align) - 1) & (-((valueT) 1 << align)));
4c63da97 11363 }
252b5132
RH
11364#endif
11365
11366 return size;
11367}
11368
11369/* On the i386, PC-relative offsets are relative to the start of the
11370 next instruction. That is, the address of the offset, plus its
11371 size, since the offset is always the last part of the insn. */
11372
11373long
e3bb37b5 11374md_pcrel_from (fixS *fixP)
252b5132
RH
11375{
11376 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
11377}
11378
11379#ifndef I386COFF
11380
11381static void
e3bb37b5 11382s_bss (int ignore ATTRIBUTE_UNUSED)
252b5132 11383{
29b0f896 11384 int temp;
252b5132 11385
8a75718c
JB
11386#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11387 if (IS_ELF)
11388 obj_elf_section_change_hook ();
11389#endif
252b5132
RH
11390 temp = get_absolute_expression ();
11391 subseg_set (bss_section, (subsegT) temp);
11392 demand_empty_rest_of_line ();
11393}
11394
11395#endif
11396
252b5132 11397void
e3bb37b5 11398i386_validate_fix (fixS *fixp)
252b5132 11399{
02a86693 11400 if (fixp->fx_subsy)
252b5132 11401 {
02a86693 11402 if (fixp->fx_subsy == GOT_symbol)
23df1078 11403 {
02a86693
L
11404 if (fixp->fx_r_type == BFD_RELOC_32_PCREL)
11405 {
11406 if (!object_64bit)
11407 abort ();
11408#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11409 if (fixp->fx_tcbit2)
56ceb5b5
L
11410 fixp->fx_r_type = (fixp->fx_tcbit
11411 ? BFD_RELOC_X86_64_REX_GOTPCRELX
11412 : BFD_RELOC_X86_64_GOTPCRELX);
02a86693
L
11413 else
11414#endif
11415 fixp->fx_r_type = BFD_RELOC_X86_64_GOTPCREL;
11416 }
d6ab8113 11417 else
02a86693
L
11418 {
11419 if (!object_64bit)
11420 fixp->fx_r_type = BFD_RELOC_386_GOTOFF;
11421 else
11422 fixp->fx_r_type = BFD_RELOC_X86_64_GOTOFF64;
11423 }
11424 fixp->fx_subsy = 0;
23df1078 11425 }
252b5132 11426 }
02a86693
L
11427#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11428 else if (!object_64bit)
11429 {
11430 if (fixp->fx_r_type == BFD_RELOC_386_GOT32
11431 && fixp->fx_tcbit2)
11432 fixp->fx_r_type = BFD_RELOC_386_GOT32X;
11433 }
11434#endif
252b5132
RH
11435}
11436
252b5132 11437arelent *
7016a5d5 11438tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
11439{
11440 arelent *rel;
11441 bfd_reloc_code_real_type code;
11442
11443 switch (fixp->fx_r_type)
11444 {
8ce3d284 11445#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8fd4256d
L
11446 case BFD_RELOC_SIZE32:
11447 case BFD_RELOC_SIZE64:
11448 if (S_IS_DEFINED (fixp->fx_addsy)
11449 && !S_IS_EXTERNAL (fixp->fx_addsy))
11450 {
11451 /* Resolve size relocation against local symbol to size of
11452 the symbol plus addend. */
11453 valueT value = S_GET_SIZE (fixp->fx_addsy) + fixp->fx_offset;
11454 if (fixp->fx_r_type == BFD_RELOC_SIZE32
11455 && !fits_in_unsigned_long (value))
11456 as_bad_where (fixp->fx_file, fixp->fx_line,
11457 _("symbol size computation overflow"));
11458 fixp->fx_addsy = NULL;
11459 fixp->fx_subsy = NULL;
11460 md_apply_fix (fixp, (valueT *) &value, NULL);
11461 return NULL;
11462 }
8ce3d284 11463#endif
1a0670f3 11464 /* Fall through. */
8fd4256d 11465
3e73aa7c
JH
11466 case BFD_RELOC_X86_64_PLT32:
11467 case BFD_RELOC_X86_64_GOT32:
11468 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
11469 case BFD_RELOC_X86_64_GOTPCRELX:
11470 case BFD_RELOC_X86_64_REX_GOTPCRELX:
252b5132
RH
11471 case BFD_RELOC_386_PLT32:
11472 case BFD_RELOC_386_GOT32:
02a86693 11473 case BFD_RELOC_386_GOT32X:
252b5132
RH
11474 case BFD_RELOC_386_GOTOFF:
11475 case BFD_RELOC_386_GOTPC:
13ae64f3
JJ
11476 case BFD_RELOC_386_TLS_GD:
11477 case BFD_RELOC_386_TLS_LDM:
11478 case BFD_RELOC_386_TLS_LDO_32:
11479 case BFD_RELOC_386_TLS_IE_32:
37e55690
JJ
11480 case BFD_RELOC_386_TLS_IE:
11481 case BFD_RELOC_386_TLS_GOTIE:
13ae64f3
JJ
11482 case BFD_RELOC_386_TLS_LE_32:
11483 case BFD_RELOC_386_TLS_LE:
67a4f2b7
AO
11484 case BFD_RELOC_386_TLS_GOTDESC:
11485 case BFD_RELOC_386_TLS_DESC_CALL:
bffbf940
JJ
11486 case BFD_RELOC_X86_64_TLSGD:
11487 case BFD_RELOC_X86_64_TLSLD:
11488 case BFD_RELOC_X86_64_DTPOFF32:
d6ab8113 11489 case BFD_RELOC_X86_64_DTPOFF64:
bffbf940
JJ
11490 case BFD_RELOC_X86_64_GOTTPOFF:
11491 case BFD_RELOC_X86_64_TPOFF32:
d6ab8113
JB
11492 case BFD_RELOC_X86_64_TPOFF64:
11493 case BFD_RELOC_X86_64_GOTOFF64:
11494 case BFD_RELOC_X86_64_GOTPC32:
7b81dfbb
AJ
11495 case BFD_RELOC_X86_64_GOT64:
11496 case BFD_RELOC_X86_64_GOTPCREL64:
11497 case BFD_RELOC_X86_64_GOTPC64:
11498 case BFD_RELOC_X86_64_GOTPLT64:
11499 case BFD_RELOC_X86_64_PLTOFF64:
67a4f2b7
AO
11500 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
11501 case BFD_RELOC_X86_64_TLSDESC_CALL:
252b5132
RH
11502 case BFD_RELOC_RVA:
11503 case BFD_RELOC_VTABLE_ENTRY:
11504 case BFD_RELOC_VTABLE_INHERIT:
6482c264
NC
11505#ifdef TE_PE
11506 case BFD_RELOC_32_SECREL:
11507#endif
252b5132
RH
11508 code = fixp->fx_r_type;
11509 break;
dbbaec26
L
11510 case BFD_RELOC_X86_64_32S:
11511 if (!fixp->fx_pcrel)
11512 {
11513 /* Don't turn BFD_RELOC_X86_64_32S into BFD_RELOC_32. */
11514 code = fixp->fx_r_type;
11515 break;
11516 }
1a0670f3 11517 /* Fall through. */
252b5132 11518 default:
93382f6d 11519 if (fixp->fx_pcrel)
252b5132 11520 {
93382f6d
AM
11521 switch (fixp->fx_size)
11522 {
11523 default:
b091f402
AM
11524 as_bad_where (fixp->fx_file, fixp->fx_line,
11525 _("can not do %d byte pc-relative relocation"),
11526 fixp->fx_size);
93382f6d
AM
11527 code = BFD_RELOC_32_PCREL;
11528 break;
11529 case 1: code = BFD_RELOC_8_PCREL; break;
11530 case 2: code = BFD_RELOC_16_PCREL; break;
d258b828 11531 case 4: code = BFD_RELOC_32_PCREL; break;
d6ab8113
JB
11532#ifdef BFD64
11533 case 8: code = BFD_RELOC_64_PCREL; break;
11534#endif
93382f6d
AM
11535 }
11536 }
11537 else
11538 {
11539 switch (fixp->fx_size)
11540 {
11541 default:
b091f402
AM
11542 as_bad_where (fixp->fx_file, fixp->fx_line,
11543 _("can not do %d byte relocation"),
11544 fixp->fx_size);
93382f6d
AM
11545 code = BFD_RELOC_32;
11546 break;
11547 case 1: code = BFD_RELOC_8; break;
11548 case 2: code = BFD_RELOC_16; break;
11549 case 4: code = BFD_RELOC_32; break;
937149dd 11550#ifdef BFD64
3e73aa7c 11551 case 8: code = BFD_RELOC_64; break;
937149dd 11552#endif
93382f6d 11553 }
252b5132
RH
11554 }
11555 break;
11556 }
252b5132 11557
d182319b
JB
11558 if ((code == BFD_RELOC_32
11559 || code == BFD_RELOC_32_PCREL
11560 || code == BFD_RELOC_X86_64_32S)
252b5132
RH
11561 && GOT_symbol
11562 && fixp->fx_addsy == GOT_symbol)
3e73aa7c 11563 {
4fa24527 11564 if (!object_64bit)
d6ab8113
JB
11565 code = BFD_RELOC_386_GOTPC;
11566 else
11567 code = BFD_RELOC_X86_64_GOTPC32;
3e73aa7c 11568 }
7b81dfbb
AJ
11569 if ((code == BFD_RELOC_64 || code == BFD_RELOC_64_PCREL)
11570 && GOT_symbol
11571 && fixp->fx_addsy == GOT_symbol)
11572 {
11573 code = BFD_RELOC_X86_64_GOTPC64;
11574 }
252b5132 11575
add39d23
TS
11576 rel = XNEW (arelent);
11577 rel->sym_ptr_ptr = XNEW (asymbol *);
49309057 11578 *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
11579
11580 rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
c87db184 11581
3e73aa7c
JH
11582 if (!use_rela_relocations)
11583 {
11584 /* HACK: Since i386 ELF uses Rel instead of Rela, encode the
11585 vtable entry to be used in the relocation's section offset. */
11586 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
11587 rel->address = fixp->fx_offset;
fbeb56a4
DK
11588#if defined (OBJ_COFF) && defined (TE_PE)
11589 else if (fixp->fx_addsy && S_IS_WEAK (fixp->fx_addsy))
11590 rel->addend = fixp->fx_addnumber - (S_GET_VALUE (fixp->fx_addsy) * 2);
11591 else
11592#endif
c6682705 11593 rel->addend = 0;
3e73aa7c
JH
11594 }
11595 /* Use the rela in 64bit mode. */
252b5132 11596 else
3e73aa7c 11597 {
862be3fb
L
11598 if (disallow_64bit_reloc)
11599 switch (code)
11600 {
862be3fb
L
11601 case BFD_RELOC_X86_64_DTPOFF64:
11602 case BFD_RELOC_X86_64_TPOFF64:
11603 case BFD_RELOC_64_PCREL:
11604 case BFD_RELOC_X86_64_GOTOFF64:
11605 case BFD_RELOC_X86_64_GOT64:
11606 case BFD_RELOC_X86_64_GOTPCREL64:
11607 case BFD_RELOC_X86_64_GOTPC64:
11608 case BFD_RELOC_X86_64_GOTPLT64:
11609 case BFD_RELOC_X86_64_PLTOFF64:
11610 as_bad_where (fixp->fx_file, fixp->fx_line,
11611 _("cannot represent relocation type %s in x32 mode"),
11612 bfd_get_reloc_code_name (code));
11613 break;
11614 default:
11615 break;
11616 }
11617
062cd5e7
AS
11618 if (!fixp->fx_pcrel)
11619 rel->addend = fixp->fx_offset;
11620 else
11621 switch (code)
11622 {
11623 case BFD_RELOC_X86_64_PLT32:
11624 case BFD_RELOC_X86_64_GOT32:
11625 case BFD_RELOC_X86_64_GOTPCREL:
56ceb5b5
L
11626 case BFD_RELOC_X86_64_GOTPCRELX:
11627 case BFD_RELOC_X86_64_REX_GOTPCRELX:
bffbf940
JJ
11628 case BFD_RELOC_X86_64_TLSGD:
11629 case BFD_RELOC_X86_64_TLSLD:
11630 case BFD_RELOC_X86_64_GOTTPOFF:
67a4f2b7
AO
11631 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
11632 case BFD_RELOC_X86_64_TLSDESC_CALL:
062cd5e7
AS
11633 rel->addend = fixp->fx_offset - fixp->fx_size;
11634 break;
11635 default:
11636 rel->addend = (section->vma
11637 - fixp->fx_size
11638 + fixp->fx_addnumber
11639 + md_pcrel_from (fixp));
11640 break;
11641 }
3e73aa7c
JH
11642 }
11643
252b5132
RH
11644 rel->howto = bfd_reloc_type_lookup (stdoutput, code);
11645 if (rel->howto == NULL)
11646 {
11647 as_bad_where (fixp->fx_file, fixp->fx_line,
d0b47220 11648 _("cannot represent relocation type %s"),
252b5132
RH
11649 bfd_get_reloc_code_name (code));
11650 /* Set howto to a garbage value so that we can keep going. */
11651 rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
9c2799c2 11652 gas_assert (rel->howto != NULL);
252b5132
RH
11653 }
11654
11655 return rel;
11656}
11657
ee86248c 11658#include "tc-i386-intel.c"
54cfded0 11659
a60de03c
JB
11660void
11661tc_x86_parse_to_dw2regnum (expressionS *exp)
54cfded0 11662{
a60de03c
JB
11663 int saved_naked_reg;
11664 char saved_register_dot;
54cfded0 11665
a60de03c
JB
11666 saved_naked_reg = allow_naked_reg;
11667 allow_naked_reg = 1;
11668 saved_register_dot = register_chars['.'];
11669 register_chars['.'] = '.';
11670 allow_pseudo_reg = 1;
11671 expression_and_evaluate (exp);
11672 allow_pseudo_reg = 0;
11673 register_chars['.'] = saved_register_dot;
11674 allow_naked_reg = saved_naked_reg;
11675
e96d56a1 11676 if (exp->X_op == O_register && exp->X_add_number >= 0)
54cfded0 11677 {
a60de03c
JB
11678 if ((addressT) exp->X_add_number < i386_regtab_size)
11679 {
11680 exp->X_op = O_constant;
11681 exp->X_add_number = i386_regtab[exp->X_add_number]
11682 .dw2_regnum[flag_code >> 1];
11683 }
11684 else
11685 exp->X_op = O_illegal;
54cfded0 11686 }
54cfded0
AM
11687}
11688
11689void
11690tc_x86_frame_initial_instructions (void)
11691{
a60de03c
JB
11692 static unsigned int sp_regno[2];
11693
11694 if (!sp_regno[flag_code >> 1])
11695 {
11696 char *saved_input = input_line_pointer;
11697 char sp[][4] = {"esp", "rsp"};
11698 expressionS exp;
a4447b93 11699
a60de03c
JB
11700 input_line_pointer = sp[flag_code >> 1];
11701 tc_x86_parse_to_dw2regnum (&exp);
9c2799c2 11702 gas_assert (exp.X_op == O_constant);
a60de03c
JB
11703 sp_regno[flag_code >> 1] = exp.X_add_number;
11704 input_line_pointer = saved_input;
11705 }
a4447b93 11706
61ff971f
L
11707 cfi_add_CFA_def_cfa (sp_regno[flag_code >> 1], -x86_cie_data_alignment);
11708 cfi_add_CFA_offset (x86_dwarf2_return_column, x86_cie_data_alignment);
54cfded0 11709}
d2b2c203 11710
d7921315
L
11711int
11712x86_dwarf2_addr_size (void)
11713{
11714#if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
11715 if (x86_elf_abi == X86_64_X32_ABI)
11716 return 4;
11717#endif
11718 return bfd_arch_bits_per_address (stdoutput) / 8;
11719}
11720
d2b2c203
DJ
11721int
11722i386_elf_section_type (const char *str, size_t len)
11723{
11724 if (flag_code == CODE_64BIT
11725 && len == sizeof ("unwind") - 1
11726 && strncmp (str, "unwind", 6) == 0)
11727 return SHT_X86_64_UNWIND;
11728
11729 return -1;
11730}
bb41ade5 11731
ad5fec3b
EB
11732#ifdef TE_SOLARIS
11733void
11734i386_solaris_fix_up_eh_frame (segT sec)
11735{
11736 if (flag_code == CODE_64BIT)
11737 elf_section_type (sec) = SHT_X86_64_UNWIND;
11738}
11739#endif
11740
bb41ade5
AM
11741#ifdef TE_PE
11742void
11743tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
11744{
91d6fa6a 11745 expressionS exp;
bb41ade5 11746
91d6fa6a
NC
11747 exp.X_op = O_secrel;
11748 exp.X_add_symbol = symbol;
11749 exp.X_add_number = 0;
11750 emit_expr (&exp, size);
bb41ade5
AM
11751}
11752#endif
3b22753a
L
11753
11754#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11755/* For ELF on x86-64, add support for SHF_X86_64_LARGE. */
11756
01e1a5bc 11757bfd_vma
6d4af3c2 11758x86_64_section_letter (int letter, const char **ptr_msg)
3b22753a
L
11759{
11760 if (flag_code == CODE_64BIT)
11761 {
11762 if (letter == 'l')
11763 return SHF_X86_64_LARGE;
11764
8f3bae45 11765 *ptr_msg = _("bad .section directive: want a,l,w,x,M,S,G,T in string");
64e74474 11766 }
3b22753a 11767 else
8f3bae45 11768 *ptr_msg = _("bad .section directive: want a,w,x,M,S,G,T in string");
3b22753a
L
11769 return -1;
11770}
11771
01e1a5bc 11772bfd_vma
3b22753a
L
11773x86_64_section_word (char *str, size_t len)
11774{
8620418b 11775 if (len == 5 && flag_code == CODE_64BIT && CONST_STRNEQ (str, "large"))
3b22753a
L
11776 return SHF_X86_64_LARGE;
11777
11778 return -1;
11779}
11780
11781static void
11782handle_large_common (int small ATTRIBUTE_UNUSED)
11783{
11784 if (flag_code != CODE_64BIT)
11785 {
11786 s_comm_internal (0, elf_common_parse);
11787 as_warn (_(".largecomm supported only in 64bit mode, producing .comm"));
11788 }
11789 else
11790 {
11791 static segT lbss_section;
11792 asection *saved_com_section_ptr = elf_com_section_ptr;
11793 asection *saved_bss_section = bss_section;
11794
11795 if (lbss_section == NULL)
11796 {
11797 flagword applicable;
11798 segT seg = now_seg;
11799 subsegT subseg = now_subseg;
11800
11801 /* The .lbss section is for local .largecomm symbols. */
11802 lbss_section = subseg_new (".lbss", 0);
11803 applicable = bfd_applicable_section_flags (stdoutput);
11804 bfd_set_section_flags (stdoutput, lbss_section,
11805 applicable & SEC_ALLOC);
11806 seg_info (lbss_section)->bss = 1;
11807
11808 subseg_set (seg, subseg);
11809 }
11810
11811 elf_com_section_ptr = &_bfd_elf_large_com_section;
11812 bss_section = lbss_section;
11813
11814 s_comm_internal (0, elf_common_parse);
11815
11816 elf_com_section_ptr = saved_com_section_ptr;
11817 bss_section = saved_bss_section;
11818 }
11819}
11820#endif /* OBJ_ELF || OBJ_MAYBE_ELF */
This page took 2.185552 seconds and 4 git commands to generate.