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