Add x86-64 ILP32 support.
[binutils.git] / gas / config / tc-i386.c
blob7ca97a626908510f4c12de7b2599d22497cbf64e
1 /* tc-i386.c -- Assemble code for the Intel 80386
2 Copyright 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GAS, the GNU Assembler.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
21 02110-1301, USA. */
23 /* Intel 80386 machine specific gas.
24 Written by Eliot Dresselhaus (eliot@mgm.mit.edu).
25 x86_64 support by Jan Hubicka (jh@suse.cz)
26 VIA PadLock support by Michal Ludvig (mludvig@suse.cz)
27 Bugs & suggestions are completely welcome. This is free software.
28 Please help us make it better. */
30 #include "as.h"
31 #include "safe-ctype.h"
32 #include "subsegs.h"
33 #include "dwarf2dbg.h"
34 #include "dw2gencfi.h"
35 #include "elf/x86-64.h"
36 #include "opcodes/i386-init.h"
38 #ifndef REGISTER_WARNINGS
39 #define REGISTER_WARNINGS 1
40 #endif
42 #ifndef INFER_ADDR_PREFIX
43 #define INFER_ADDR_PREFIX 1
44 #endif
46 #ifndef DEFAULT_ARCH
47 #define DEFAULT_ARCH "i386"
48 #endif
50 #ifndef INLINE
51 #if __GNUC__ >= 2
52 #define INLINE __inline__
53 #else
54 #define INLINE
55 #endif
56 #endif
58 /* Prefixes will be emitted in the order defined below.
59 WAIT_PREFIX must be the first prefix since FWAIT is really is an
60 instruction, and so must come before any prefixes.
61 The preferred prefix order is SEG_PREFIX, ADDR_PREFIX, DATA_PREFIX,
62 REP_PREFIX, LOCK_PREFIX. */
63 #define WAIT_PREFIX 0
64 #define SEG_PREFIX 1
65 #define ADDR_PREFIX 2
66 #define DATA_PREFIX 3
67 #define REP_PREFIX 4
68 #define LOCK_PREFIX 5
69 #define REX_PREFIX 6 /* must come last. */
70 #define MAX_PREFIXES 7 /* max prefixes per opcode */
72 /* we define the syntax here (modulo base,index,scale syntax) */
73 #define REGISTER_PREFIX '%'
74 #define IMMEDIATE_PREFIX '$'
75 #define ABSOLUTE_PREFIX '*'
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 /* Intel Syntax. Use a non-ascii letter since since it never appears
87 in instructions. */
88 #define LONG_DOUBLE_MNEM_SUFFIX '\1'
90 #define END_OF_INSN '\0'
93 'templates' is for grouping together 'template' structures for opcodes
94 of the same name. This is only used for storing the insns in the grand
95 ole hash table of insns.
96 The templates themselves start at START and range up to (but not including)
97 END.
99 typedef struct
101 const insn_template *start;
102 const insn_template *end;
104 templates;
106 /* 386 operand encoding bytes: see 386 book for details of this. */
107 typedef struct
109 unsigned int regmem; /* codes register or memory operand */
110 unsigned int reg; /* codes register operand (or extended opcode) */
111 unsigned int mode; /* how to interpret regmem & reg */
113 modrm_byte;
115 /* x86-64 extension prefix. */
116 typedef int rex_byte;
118 /* 386 opcode byte to code indirect addressing. */
119 typedef struct
121 unsigned base;
122 unsigned index;
123 unsigned scale;
125 sib_byte;
127 /* x86 arch names, types and features */
128 typedef struct
130 const char *name; /* arch name */
131 unsigned int len; /* arch string length */
132 enum processor_type type; /* arch type */
133 i386_cpu_flags flags; /* cpu feature flags */
134 unsigned int skip; /* show_arch should skip this. */
135 unsigned int negated; /* turn off indicated flags. */
137 arch_entry;
139 static void update_code_flag (int, int);
140 static void set_code_flag (int);
141 static void set_16bit_gcc_code_flag (int);
142 static void set_intel_syntax (int);
143 static void set_intel_mnemonic (int);
144 static void set_allow_index_reg (int);
145 static void set_sse_check (int);
146 static void set_cpu_arch (int);
147 #ifdef TE_PE
148 static void pe_directive_secrel (int);
149 #endif
150 static void signed_cons (int);
151 static char *output_invalid (int c);
152 static int i386_finalize_immediate (segT, expressionS *, i386_operand_type,
153 const char *);
154 static int i386_finalize_displacement (segT, expressionS *, i386_operand_type,
155 const char *);
156 static int i386_att_operand (char *);
157 static int i386_intel_operand (char *, int);
158 static int i386_intel_simplify (expressionS *);
159 static int i386_intel_parse_name (const char *, expressionS *);
160 static const reg_entry *parse_register (char *, char **);
161 static char *parse_insn (char *, char *);
162 static char *parse_operands (char *, const char *);
163 static void swap_operands (void);
164 static void swap_2_operands (int, int);
165 static void optimize_imm (void);
166 static void optimize_disp (void);
167 static const insn_template *match_template (void);
168 static int check_string (void);
169 static int process_suffix (void);
170 static int check_byte_reg (void);
171 static int check_long_reg (void);
172 static int check_qword_reg (void);
173 static int check_word_reg (void);
174 static int finalize_imm (void);
175 static int process_operands (void);
176 static const seg_entry *build_modrm_byte (void);
177 static void output_insn (void);
178 static void output_imm (fragS *, offsetT);
179 static void output_disp (fragS *, offsetT);
180 #ifndef I386COFF
181 static void s_bss (int);
182 #endif
183 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
184 static void handle_large_common (int small ATTRIBUTE_UNUSED);
185 #endif
187 static const char *default_arch = DEFAULT_ARCH;
189 /* VEX prefix. */
190 typedef struct
192 /* VEX prefix is either 2 byte or 3 byte. */
193 unsigned char bytes[3];
194 unsigned int length;
195 /* Destination or source register specifier. */
196 const reg_entry *register_specifier;
197 } vex_prefix;
199 /* 'md_assemble ()' gathers together information and puts it into a
200 i386_insn. */
202 union i386_op
204 expressionS *disps;
205 expressionS *imms;
206 const reg_entry *regs;
209 enum i386_error
211 operand_size_mismatch,
212 operand_type_mismatch,
213 register_type_mismatch,
214 number_of_operands_mismatch,
215 invalid_instruction_suffix,
216 bad_imm4,
217 old_gcc_only,
218 unsupported_with_intel_mnemonic,
219 unsupported_syntax,
220 unsupported
223 struct _i386_insn
225 /* TM holds the template for the insn were currently assembling. */
226 insn_template tm;
228 /* SUFFIX holds the instruction size suffix for byte, word, dword
229 or qword, if given. */
230 char suffix;
232 /* OPERANDS gives the number of given operands. */
233 unsigned int operands;
235 /* REG_OPERANDS, DISP_OPERANDS, MEM_OPERANDS, IMM_OPERANDS give the number
236 of given register, displacement, memory operands and immediate
237 operands. */
238 unsigned int reg_operands, disp_operands, mem_operands, imm_operands;
240 /* TYPES [i] is the type (see above #defines) which tells us how to
241 use OP[i] for the corresponding operand. */
242 i386_operand_type types[MAX_OPERANDS];
244 /* Displacement expression, immediate expression, or register for each
245 operand. */
246 union i386_op op[MAX_OPERANDS];
248 /* Flags for operands. */
249 unsigned int flags[MAX_OPERANDS];
250 #define Operand_PCrel 1
252 /* Relocation type for operand */
253 enum bfd_reloc_code_real reloc[MAX_OPERANDS];
255 /* BASE_REG, INDEX_REG, and LOG2_SCALE_FACTOR are used to encode
256 the base index byte below. */
257 const reg_entry *base_reg;
258 const reg_entry *index_reg;
259 unsigned int log2_scale_factor;
261 /* SEG gives the seg_entries of this insn. They are zero unless
262 explicit segment overrides are given. */
263 const seg_entry *seg[2];
265 /* PREFIX holds all the given prefix opcodes (usually null).
266 PREFIXES is the number of prefix opcodes. */
267 unsigned int prefixes;
268 unsigned char prefix[MAX_PREFIXES];
270 /* RM and SIB are the modrm byte and the sib byte where the
271 addressing modes of this insn are encoded. */
272 modrm_byte rm;
273 rex_byte rex;
274 sib_byte sib;
275 vex_prefix vex;
277 /* Swap operand in encoding. */
278 unsigned int swap_operand;
280 /* Force 32bit displacement in encoding. */
281 unsigned int disp32_encoding;
283 /* Error message. */
284 enum i386_error error;
287 typedef struct _i386_insn i386_insn;
289 /* List of chars besides those in app.c:symbol_chars that can start an
290 operand. Used to prevent the scrubber eating vital white-space. */
291 const char extra_symbol_chars[] = "*%-(["
292 #ifdef LEX_AT
294 #endif
295 #ifdef LEX_QM
297 #endif
300 #if (defined (TE_I386AIX) \
301 || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) \
302 && !defined (TE_GNU) \
303 && !defined (TE_LINUX) \
304 && !defined (TE_NETWARE) \
305 && !defined (TE_FreeBSD) \
306 && !defined (TE_NetBSD)))
307 /* This array holds the chars that always start a comment. If the
308 pre-processor is disabled, these aren't very useful. The option
309 --divide will remove '/' from this list. */
310 const char *i386_comment_chars = "#/";
311 #define SVR4_COMMENT_CHARS 1
312 #define PREFIX_SEPARATOR '\\'
314 #else
315 const char *i386_comment_chars = "#";
316 #define PREFIX_SEPARATOR '/'
317 #endif
319 /* This array holds the chars that only start a comment at the beginning of
320 a line. If the line seems to have the form '# 123 filename'
321 .line and .file directives will appear in the pre-processed output.
322 Note that input_file.c hand checks for '#' at the beginning of the
323 first line of the input file. This is because the compiler outputs
324 #NO_APP at the beginning of its output.
325 Also note that comments started like this one will always work if
326 '/' isn't otherwise defined. */
327 const char line_comment_chars[] = "#/";
329 const char line_separator_chars[] = ";";
331 /* Chars that can be used to separate mant from exp in floating point
332 nums. */
333 const char EXP_CHARS[] = "eE";
335 /* Chars that mean this number is a floating point constant
336 As in 0f12.456
337 or 0d1.2345e12. */
338 const char FLT_CHARS[] = "fFdDxX";
340 /* Tables for lexical analysis. */
341 static char mnemonic_chars[256];
342 static char register_chars[256];
343 static char operand_chars[256];
344 static char identifier_chars[256];
345 static char digit_chars[256];
347 /* Lexical macros. */
348 #define is_mnemonic_char(x) (mnemonic_chars[(unsigned char) x])
349 #define is_operand_char(x) (operand_chars[(unsigned char) x])
350 #define is_register_char(x) (register_chars[(unsigned char) x])
351 #define is_space_char(x) ((x) == ' ')
352 #define is_identifier_char(x) (identifier_chars[(unsigned char) x])
353 #define is_digit_char(x) (digit_chars[(unsigned char) x])
355 /* All non-digit non-letter characters that may occur in an operand. */
356 static char operand_special_chars[] = "%$-+(,)*._~/<>|&^!:[@]";
358 /* md_assemble() always leaves the strings it's passed unaltered. To
359 effect this we maintain a stack of saved characters that we've smashed
360 with '\0's (indicating end of strings for various sub-fields of the
361 assembler instruction). */
362 static char save_stack[32];
363 static char *save_stack_p;
364 #define END_STRING_AND_SAVE(s) \
365 do { *save_stack_p++ = *(s); *(s) = '\0'; } while (0)
366 #define RESTORE_END_STRING(s) \
367 do { *(s) = *--save_stack_p; } while (0)
369 /* The instruction we're assembling. */
370 static i386_insn i;
372 /* Possible templates for current insn. */
373 static const templates *current_templates;
375 /* Per instruction expressionS buffers: max displacements & immediates. */
376 static expressionS disp_expressions[MAX_MEMORY_OPERANDS];
377 static expressionS im_expressions[MAX_IMMEDIATE_OPERANDS];
379 /* Current operand we are working on. */
380 static int this_operand = -1;
382 /* We support four different modes. FLAG_CODE variable is used to distinguish
383 these. */
385 enum flag_code {
386 CODE_32BIT,
387 CODE_16BIT,
388 CODE_64BIT };
390 static enum flag_code flag_code;
391 static unsigned int object_64bit;
392 static int use_rela_relocations = 0;
394 /* The ELF ABI to use. */
395 enum x86_elf_abi
397 I386_ABI,
398 X86_64_LP64_ABI,
399 X86_64_ILP32_ABI
402 static enum x86_elf_abi x86_elf_abi = I386_ABI;
404 /* The names used to print error messages. */
405 static const char *flag_code_names[] =
407 "32",
408 "16",
409 "64"
412 /* 1 for intel syntax,
413 0 if att syntax. */
414 static int intel_syntax = 0;
416 /* 1 for intel mnemonic,
417 0 if att mnemonic. */
418 static int intel_mnemonic = !SYSV386_COMPAT;
420 /* 1 if support old (<= 2.8.1) versions of gcc. */
421 static int old_gcc = OLDGCC_COMPAT;
423 /* 1 if pseudo registers are permitted. */
424 static int allow_pseudo_reg = 0;
426 /* 1 if register prefix % not required. */
427 static int allow_naked_reg = 0;
429 /* 1 if pseudo index register, eiz/riz, is allowed . */
430 static int allow_index_reg = 0;
432 static enum
434 sse_check_none = 0,
435 sse_check_warning,
436 sse_check_error
438 sse_check;
440 /* Register prefix used for error message. */
441 static const char *register_prefix = "%";
443 /* Used in 16 bit gcc mode to add an l suffix to call, ret, enter,
444 leave, push, and pop instructions so that gcc has the same stack
445 frame as in 32 bit mode. */
446 static char stackop_size = '\0';
448 /* Non-zero to optimize code alignment. */
449 int optimize_align_code = 1;
451 /* Non-zero to quieten some warnings. */
452 static int quiet_warnings = 0;
454 /* CPU name. */
455 static const char *cpu_arch_name = NULL;
456 static char *cpu_sub_arch_name = NULL;
458 /* CPU feature flags. */
459 static i386_cpu_flags cpu_arch_flags = CPU_UNKNOWN_FLAGS;
461 /* If we have selected a cpu we are generating instructions for. */
462 static int cpu_arch_tune_set = 0;
464 /* Cpu we are generating instructions for. */
465 enum processor_type cpu_arch_tune = PROCESSOR_UNKNOWN;
467 /* CPU feature flags of cpu we are generating instructions for. */
468 static i386_cpu_flags cpu_arch_tune_flags;
470 /* CPU instruction set architecture used. */
471 enum processor_type cpu_arch_isa = PROCESSOR_UNKNOWN;
473 /* CPU feature flags of instruction set architecture used. */
474 i386_cpu_flags cpu_arch_isa_flags;
476 /* If set, conditional jumps are not automatically promoted to handle
477 larger than a byte offset. */
478 static unsigned int no_cond_jump_promotion = 0;
480 /* Encode SSE instructions with VEX prefix. */
481 static unsigned int sse2avx;
483 /* Encode scalar AVX instructions with specific vector length. */
484 static enum
486 vex128 = 0,
487 vex256
488 } avxscalar;
490 /* Pre-defined "_GLOBAL_OFFSET_TABLE_". */
491 static symbolS *GOT_symbol;
493 /* The dwarf2 return column, adjusted for 32 or 64 bit. */
494 unsigned int x86_dwarf2_return_column;
496 /* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
497 int x86_cie_data_alignment;
499 /* Interface to relax_segment.
500 There are 3 major relax states for 386 jump insns because the
501 different types of jumps add different sizes to frags when we're
502 figuring out what sort of jump to choose to reach a given label. */
504 /* Types. */
505 #define UNCOND_JUMP 0
506 #define COND_JUMP 1
507 #define COND_JUMP86 2
509 /* Sizes. */
510 #define CODE16 1
511 #define SMALL 0
512 #define SMALL16 (SMALL | CODE16)
513 #define BIG 2
514 #define BIG16 (BIG | CODE16)
516 #ifndef INLINE
517 #ifdef __GNUC__
518 #define INLINE __inline__
519 #else
520 #define INLINE
521 #endif
522 #endif
524 #define ENCODE_RELAX_STATE(type, size) \
525 ((relax_substateT) (((type) << 2) | (size)))
526 #define TYPE_FROM_RELAX_STATE(s) \
527 ((s) >> 2)
528 #define DISP_SIZE_FROM_RELAX_STATE(s) \
529 ((((s) & 3) == BIG ? 4 : (((s) & 3) == BIG16 ? 2 : 1)))
531 /* This table is used by relax_frag to promote short jumps to long
532 ones where necessary. SMALL (short) jumps may be promoted to BIG
533 (32 bit long) ones, and SMALL16 jumps to BIG16 (16 bit long). We
534 don't allow a short jump in a 32 bit code segment to be promoted to
535 a 16 bit offset jump because it's slower (requires data size
536 prefix), and doesn't work, unless the destination is in the bottom
537 64k of the code segment (The top 16 bits of eip are zeroed). */
539 const relax_typeS md_relax_table[] =
541 /* The fields are:
542 1) most positive reach of this state,
543 2) most negative reach of this state,
544 3) how many bytes this mode will have in the variable part of the frag
545 4) which index into the table to try if we can't fit into this one. */
547 /* UNCOND_JUMP states. */
548 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG)},
549 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16)},
550 /* dword jmp adds 4 bytes to frag:
551 0 extra opcode bytes, 4 displacement bytes. */
552 {0, 0, 4, 0},
553 /* word jmp adds 2 byte2 to frag:
554 0 extra opcode bytes, 2 displacement bytes. */
555 {0, 0, 2, 0},
557 /* COND_JUMP states. */
558 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG)},
559 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG16)},
560 /* dword conditionals adds 5 bytes to frag:
561 1 extra opcode byte, 4 displacement bytes. */
562 {0, 0, 5, 0},
563 /* word conditionals add 3 bytes to frag:
564 1 extra opcode byte, 2 displacement bytes. */
565 {0, 0, 3, 0},
567 /* COND_JUMP86 states. */
568 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG)},
569 {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG16)},
570 /* dword conditionals adds 5 bytes to frag:
571 1 extra opcode byte, 4 displacement bytes. */
572 {0, 0, 5, 0},
573 /* word conditionals add 4 bytes to frag:
574 1 displacement byte and a 3 byte long branch insn. */
575 {0, 0, 4, 0}
578 static const arch_entry cpu_arch[] =
580 /* Do not replace the first two entries - i386_target_format()
581 relies on them being there in this order. */
582 { STRING_COMMA_LEN ("generic32"), PROCESSOR_GENERIC32,
583 CPU_GENERIC32_FLAGS, 0, 0 },
584 { STRING_COMMA_LEN ("generic64"), PROCESSOR_GENERIC64,
585 CPU_GENERIC64_FLAGS, 0, 0 },
586 { STRING_COMMA_LEN ("i8086"), PROCESSOR_UNKNOWN,
587 CPU_NONE_FLAGS, 0, 0 },
588 { STRING_COMMA_LEN ("i186"), PROCESSOR_UNKNOWN,
589 CPU_I186_FLAGS, 0, 0 },
590 { STRING_COMMA_LEN ("i286"), PROCESSOR_UNKNOWN,
591 CPU_I286_FLAGS, 0, 0 },
592 { STRING_COMMA_LEN ("i386"), PROCESSOR_I386,
593 CPU_I386_FLAGS, 0, 0 },
594 { STRING_COMMA_LEN ("i486"), PROCESSOR_I486,
595 CPU_I486_FLAGS, 0, 0 },
596 { STRING_COMMA_LEN ("i586"), PROCESSOR_PENTIUM,
597 CPU_I586_FLAGS, 0, 0 },
598 { STRING_COMMA_LEN ("i686"), PROCESSOR_PENTIUMPRO,
599 CPU_I686_FLAGS, 0, 0 },
600 { STRING_COMMA_LEN ("pentium"), PROCESSOR_PENTIUM,
601 CPU_I586_FLAGS, 0, 0 },
602 { STRING_COMMA_LEN ("pentiumpro"), PROCESSOR_PENTIUMPRO,
603 CPU_PENTIUMPRO_FLAGS, 0, 0 },
604 { STRING_COMMA_LEN ("pentiumii"), PROCESSOR_PENTIUMPRO,
605 CPU_P2_FLAGS, 0, 0 },
606 { STRING_COMMA_LEN ("pentiumiii"),PROCESSOR_PENTIUMPRO,
607 CPU_P3_FLAGS, 0, 0 },
608 { STRING_COMMA_LEN ("pentium4"), PROCESSOR_PENTIUM4,
609 CPU_P4_FLAGS, 0, 0 },
610 { STRING_COMMA_LEN ("prescott"), PROCESSOR_NOCONA,
611 CPU_CORE_FLAGS, 0, 0 },
612 { STRING_COMMA_LEN ("nocona"), PROCESSOR_NOCONA,
613 CPU_NOCONA_FLAGS, 0, 0 },
614 { STRING_COMMA_LEN ("yonah"), PROCESSOR_CORE,
615 CPU_CORE_FLAGS, 1, 0 },
616 { STRING_COMMA_LEN ("core"), PROCESSOR_CORE,
617 CPU_CORE_FLAGS, 0, 0 },
618 { STRING_COMMA_LEN ("merom"), PROCESSOR_CORE2,
619 CPU_CORE2_FLAGS, 1, 0 },
620 { STRING_COMMA_LEN ("core2"), PROCESSOR_CORE2,
621 CPU_CORE2_FLAGS, 0, 0 },
622 { STRING_COMMA_LEN ("corei7"), PROCESSOR_COREI7,
623 CPU_COREI7_FLAGS, 0, 0 },
624 { STRING_COMMA_LEN ("l1om"), PROCESSOR_L1OM,
625 CPU_L1OM_FLAGS, 0, 0 },
626 { STRING_COMMA_LEN ("k6"), PROCESSOR_K6,
627 CPU_K6_FLAGS, 0, 0 },
628 { STRING_COMMA_LEN ("k6_2"), PROCESSOR_K6,
629 CPU_K6_2_FLAGS, 0, 0 },
630 { STRING_COMMA_LEN ("athlon"), PROCESSOR_ATHLON,
631 CPU_ATHLON_FLAGS, 0, 0 },
632 { STRING_COMMA_LEN ("sledgehammer"), PROCESSOR_K8,
633 CPU_K8_FLAGS, 1, 0 },
634 { STRING_COMMA_LEN ("opteron"), PROCESSOR_K8,
635 CPU_K8_FLAGS, 0, 0 },
636 { STRING_COMMA_LEN ("k8"), PROCESSOR_K8,
637 CPU_K8_FLAGS, 0, 0 },
638 { STRING_COMMA_LEN ("amdfam10"), PROCESSOR_AMDFAM10,
639 CPU_AMDFAM10_FLAGS, 0, 0 },
640 { STRING_COMMA_LEN ("bdver1"), PROCESSOR_BDVER1,
641 CPU_BDVER1_FLAGS, 0, 0 },
642 { STRING_COMMA_LEN (".8087"), PROCESSOR_UNKNOWN,
643 CPU_8087_FLAGS, 0, 0 },
644 { STRING_COMMA_LEN (".287"), PROCESSOR_UNKNOWN,
645 CPU_287_FLAGS, 0, 0 },
646 { STRING_COMMA_LEN (".387"), PROCESSOR_UNKNOWN,
647 CPU_387_FLAGS, 0, 0 },
648 { STRING_COMMA_LEN (".no87"), PROCESSOR_UNKNOWN,
649 CPU_ANY87_FLAGS, 0, 1 },
650 { STRING_COMMA_LEN (".mmx"), PROCESSOR_UNKNOWN,
651 CPU_MMX_FLAGS, 0, 0 },
652 { STRING_COMMA_LEN (".nommx"), PROCESSOR_UNKNOWN,
653 CPU_3DNOWA_FLAGS, 0, 1 },
654 { STRING_COMMA_LEN (".sse"), PROCESSOR_UNKNOWN,
655 CPU_SSE_FLAGS, 0, 0 },
656 { STRING_COMMA_LEN (".sse2"), PROCESSOR_UNKNOWN,
657 CPU_SSE2_FLAGS, 0, 0 },
658 { STRING_COMMA_LEN (".sse3"), PROCESSOR_UNKNOWN,
659 CPU_SSE3_FLAGS, 0, 0 },
660 { STRING_COMMA_LEN (".ssse3"), PROCESSOR_UNKNOWN,
661 CPU_SSSE3_FLAGS, 0, 0 },
662 { STRING_COMMA_LEN (".sse4.1"), PROCESSOR_UNKNOWN,
663 CPU_SSE4_1_FLAGS, 0, 0 },
664 { STRING_COMMA_LEN (".sse4.2"), PROCESSOR_UNKNOWN,
665 CPU_SSE4_2_FLAGS, 0, 0 },
666 { STRING_COMMA_LEN (".sse4"), PROCESSOR_UNKNOWN,
667 CPU_SSE4_2_FLAGS, 0, 0 },
668 { STRING_COMMA_LEN (".nosse"), PROCESSOR_UNKNOWN,
669 CPU_ANY_SSE_FLAGS, 0, 1 },
670 { STRING_COMMA_LEN (".avx"), PROCESSOR_UNKNOWN,
671 CPU_AVX_FLAGS, 0, 0 },
672 { STRING_COMMA_LEN (".noavx"), PROCESSOR_UNKNOWN,
673 CPU_ANY_AVX_FLAGS, 0, 1 },
674 { STRING_COMMA_LEN (".vmx"), PROCESSOR_UNKNOWN,
675 CPU_VMX_FLAGS, 0, 0 },
676 { STRING_COMMA_LEN (".smx"), PROCESSOR_UNKNOWN,
677 CPU_SMX_FLAGS, 0, 0 },
678 { STRING_COMMA_LEN (".xsave"), PROCESSOR_UNKNOWN,
679 CPU_XSAVE_FLAGS, 0, 0 },
680 { STRING_COMMA_LEN (".xsaveopt"), PROCESSOR_UNKNOWN,
681 CPU_XSAVEOPT_FLAGS, 0, 0 },
682 { STRING_COMMA_LEN (".aes"), PROCESSOR_UNKNOWN,
683 CPU_AES_FLAGS, 0, 0 },
684 { STRING_COMMA_LEN (".pclmul"), PROCESSOR_UNKNOWN,
685 CPU_PCLMUL_FLAGS, 0, 0 },
686 { STRING_COMMA_LEN (".clmul"), PROCESSOR_UNKNOWN,
687 CPU_PCLMUL_FLAGS, 1, 0 },
688 { STRING_COMMA_LEN (".fsgsbase"), PROCESSOR_UNKNOWN,
689 CPU_FSGSBASE_FLAGS, 0, 0 },
690 { STRING_COMMA_LEN (".rdrnd"), PROCESSOR_UNKNOWN,
691 CPU_RDRND_FLAGS, 0, 0 },
692 { STRING_COMMA_LEN (".f16c"), PROCESSOR_UNKNOWN,
693 CPU_F16C_FLAGS, 0, 0 },
694 { STRING_COMMA_LEN (".fma"), PROCESSOR_UNKNOWN,
695 CPU_FMA_FLAGS, 0, 0 },
696 { STRING_COMMA_LEN (".fma4"), PROCESSOR_UNKNOWN,
697 CPU_FMA4_FLAGS, 0, 0 },
698 { STRING_COMMA_LEN (".xop"), PROCESSOR_UNKNOWN,
699 CPU_XOP_FLAGS, 0, 0 },
700 { STRING_COMMA_LEN (".lwp"), PROCESSOR_UNKNOWN,
701 CPU_LWP_FLAGS, 0, 0 },
702 { STRING_COMMA_LEN (".movbe"), PROCESSOR_UNKNOWN,
703 CPU_MOVBE_FLAGS, 0, 0 },
704 { STRING_COMMA_LEN (".ept"), PROCESSOR_UNKNOWN,
705 CPU_EPT_FLAGS, 0, 0 },
706 { STRING_COMMA_LEN (".clflush"), PROCESSOR_UNKNOWN,
707 CPU_CLFLUSH_FLAGS, 0, 0 },
708 { STRING_COMMA_LEN (".nop"), PROCESSOR_UNKNOWN,
709 CPU_NOP_FLAGS, 0, 0 },
710 { STRING_COMMA_LEN (".syscall"), PROCESSOR_UNKNOWN,
711 CPU_SYSCALL_FLAGS, 0, 0 },
712 { STRING_COMMA_LEN (".rdtscp"), PROCESSOR_UNKNOWN,
713 CPU_RDTSCP_FLAGS, 0, 0 },
714 { STRING_COMMA_LEN (".3dnow"), PROCESSOR_UNKNOWN,
715 CPU_3DNOW_FLAGS, 0, 0 },
716 { STRING_COMMA_LEN (".3dnowa"), PROCESSOR_UNKNOWN,
717 CPU_3DNOWA_FLAGS, 0, 0 },
718 { STRING_COMMA_LEN (".padlock"), PROCESSOR_UNKNOWN,
719 CPU_PADLOCK_FLAGS, 0, 0 },
720 { STRING_COMMA_LEN (".pacifica"), PROCESSOR_UNKNOWN,
721 CPU_SVME_FLAGS, 1, 0 },
722 { STRING_COMMA_LEN (".svme"), PROCESSOR_UNKNOWN,
723 CPU_SVME_FLAGS, 0, 0 },
724 { STRING_COMMA_LEN (".sse4a"), PROCESSOR_UNKNOWN,
725 CPU_SSE4A_FLAGS, 0, 0 },
726 { STRING_COMMA_LEN (".abm"), PROCESSOR_UNKNOWN,
727 CPU_ABM_FLAGS, 0, 0 },
730 #ifdef I386COFF
731 /* Like s_lcomm_internal in gas/read.c but the alignment string
732 is allowed to be optional. */
734 static symbolS *
735 pe_lcomm_internal (int needs_align, symbolS *symbolP, addressT size)
737 addressT align = 0;
739 SKIP_WHITESPACE ();
741 if (needs_align
742 && *input_line_pointer == ',')
744 align = parse_align (needs_align - 1);
746 if (align == (addressT) -1)
747 return NULL;
749 else
751 if (size >= 8)
752 align = 3;
753 else if (size >= 4)
754 align = 2;
755 else if (size >= 2)
756 align = 1;
757 else
758 align = 0;
761 bss_alloc (symbolP, size, align);
762 return symbolP;
765 static void
766 pe_lcomm (int needs_align)
768 s_comm_internal (needs_align * 2, pe_lcomm_internal);
770 #endif
772 const pseudo_typeS md_pseudo_table[] =
774 #if !defined(OBJ_AOUT) && !defined(USE_ALIGN_PTWO)
775 {"align", s_align_bytes, 0},
776 #else
777 {"align", s_align_ptwo, 0},
778 #endif
779 {"arch", set_cpu_arch, 0},
780 #ifndef I386COFF
781 {"bss", s_bss, 0},
782 #else
783 {"lcomm", pe_lcomm, 1},
784 #endif
785 {"ffloat", float_cons, 'f'},
786 {"dfloat", float_cons, 'd'},
787 {"tfloat", float_cons, 'x'},
788 {"value", cons, 2},
789 {"slong", signed_cons, 4},
790 {"noopt", s_ignore, 0},
791 {"optim", s_ignore, 0},
792 {"code16gcc", set_16bit_gcc_code_flag, CODE_16BIT},
793 {"code16", set_code_flag, CODE_16BIT},
794 {"code32", set_code_flag, CODE_32BIT},
795 {"code64", set_code_flag, CODE_64BIT},
796 {"intel_syntax", set_intel_syntax, 1},
797 {"att_syntax", set_intel_syntax, 0},
798 {"intel_mnemonic", set_intel_mnemonic, 1},
799 {"att_mnemonic", set_intel_mnemonic, 0},
800 {"allow_index_reg", set_allow_index_reg, 1},
801 {"disallow_index_reg", set_allow_index_reg, 0},
802 {"sse_check", set_sse_check, 0},
803 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
804 {"largecomm", handle_large_common, 0},
805 #else
806 {"file", (void (*) (int)) dwarf2_directive_file, 0},
807 {"loc", dwarf2_directive_loc, 0},
808 {"loc_mark_labels", dwarf2_directive_loc_mark_labels, 0},
809 #endif
810 #ifdef TE_PE
811 {"secrel32", pe_directive_secrel, 0},
812 #endif
813 {0, 0, 0}
816 /* For interface with expression (). */
817 extern char *input_line_pointer;
819 /* Hash table for instruction mnemonic lookup. */
820 static struct hash_control *op_hash;
822 /* Hash table for register lookup. */
823 static struct hash_control *reg_hash;
825 void
826 i386_align_code (fragS *fragP, int count)
828 /* Various efficient no-op patterns for aligning code labels.
829 Note: Don't try to assemble the instructions in the comments.
830 0L and 0w are not legal. */
831 static const char f32_1[] =
832 {0x90}; /* nop */
833 static const char f32_2[] =
834 {0x66,0x90}; /* xchg %ax,%ax */
835 static const char f32_3[] =
836 {0x8d,0x76,0x00}; /* leal 0(%esi),%esi */
837 static const char f32_4[] =
838 {0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
839 static const char f32_5[] =
840 {0x90, /* nop */
841 0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
842 static const char f32_6[] =
843 {0x8d,0xb6,0x00,0x00,0x00,0x00}; /* leal 0L(%esi),%esi */
844 static const char f32_7[] =
845 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
846 static const char f32_8[] =
847 {0x90, /* nop */
848 0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
849 static const char f32_9[] =
850 {0x89,0xf6, /* movl %esi,%esi */
851 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
852 static const char f32_10[] =
853 {0x8d,0x76,0x00, /* leal 0(%esi),%esi */
854 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
855 static const char f32_11[] =
856 {0x8d,0x74,0x26,0x00, /* leal 0(%esi,1),%esi */
857 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
858 static const char f32_12[] =
859 {0x8d,0xb6,0x00,0x00,0x00,0x00, /* leal 0L(%esi),%esi */
860 0x8d,0xbf,0x00,0x00,0x00,0x00}; /* leal 0L(%edi),%edi */
861 static const char f32_13[] =
862 {0x8d,0xb6,0x00,0x00,0x00,0x00, /* leal 0L(%esi),%esi */
863 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
864 static const char f32_14[] =
865 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00, /* leal 0L(%esi,1),%esi */
866 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
867 static const char f16_3[] =
868 {0x8d,0x74,0x00}; /* lea 0(%esi),%esi */
869 static const char f16_4[] =
870 {0x8d,0xb4,0x00,0x00}; /* lea 0w(%si),%si */
871 static const char f16_5[] =
872 {0x90, /* nop */
873 0x8d,0xb4,0x00,0x00}; /* lea 0w(%si),%si */
874 static const char f16_6[] =
875 {0x89,0xf6, /* mov %si,%si */
876 0x8d,0xbd,0x00,0x00}; /* lea 0w(%di),%di */
877 static const char f16_7[] =
878 {0x8d,0x74,0x00, /* lea 0(%si),%si */
879 0x8d,0xbd,0x00,0x00}; /* lea 0w(%di),%di */
880 static const char f16_8[] =
881 {0x8d,0xb4,0x00,0x00, /* lea 0w(%si),%si */
882 0x8d,0xbd,0x00,0x00}; /* lea 0w(%di),%di */
883 static const char jump_31[] =
884 {0xeb,0x1d,0x90,0x90,0x90,0x90,0x90, /* jmp .+31; lotsa nops */
885 0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
886 0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
887 0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90};
888 static const char *const f32_patt[] = {
889 f32_1, f32_2, f32_3, f32_4, f32_5, f32_6, f32_7, f32_8,
890 f32_9, f32_10, f32_11, f32_12, f32_13, f32_14
892 static const char *const f16_patt[] = {
893 f32_1, f32_2, f16_3, f16_4, f16_5, f16_6, f16_7, f16_8
895 /* nopl (%[re]ax) */
896 static const char alt_3[] =
897 {0x0f,0x1f,0x00};
898 /* nopl 0(%[re]ax) */
899 static const char alt_4[] =
900 {0x0f,0x1f,0x40,0x00};
901 /* nopl 0(%[re]ax,%[re]ax,1) */
902 static const char alt_5[] =
903 {0x0f,0x1f,0x44,0x00,0x00};
904 /* nopw 0(%[re]ax,%[re]ax,1) */
905 static const char alt_6[] =
906 {0x66,0x0f,0x1f,0x44,0x00,0x00};
907 /* nopl 0L(%[re]ax) */
908 static const char alt_7[] =
909 {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
910 /* nopl 0L(%[re]ax,%[re]ax,1) */
911 static const char alt_8[] =
912 {0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
913 /* nopw 0L(%[re]ax,%[re]ax,1) */
914 static const char alt_9[] =
915 {0x66,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
916 /* nopw %cs:0L(%[re]ax,%[re]ax,1) */
917 static const char alt_10[] =
918 {0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
919 /* data16
920 nopw %cs:0L(%[re]ax,%[re]ax,1) */
921 static const char alt_long_11[] =
922 {0x66,
923 0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
924 /* data16
925 data16
926 nopw %cs:0L(%[re]ax,%[re]ax,1) */
927 static const char alt_long_12[] =
928 {0x66,
929 0x66,
930 0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
931 /* data16
932 data16
933 data16
934 nopw %cs:0L(%[re]ax,%[re]ax,1) */
935 static const char alt_long_13[] =
936 {0x66,
937 0x66,
938 0x66,
939 0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
940 /* data16
941 data16
942 data16
943 data16
944 nopw %cs:0L(%[re]ax,%[re]ax,1) */
945 static const char alt_long_14[] =
946 {0x66,
947 0x66,
948 0x66,
949 0x66,
950 0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
951 /* data16
952 data16
953 data16
954 data16
955 data16
956 nopw %cs:0L(%[re]ax,%[re]ax,1) */
957 static const char alt_long_15[] =
958 {0x66,
959 0x66,
960 0x66,
961 0x66,
962 0x66,
963 0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
964 /* nopl 0(%[re]ax,%[re]ax,1)
965 nopw 0(%[re]ax,%[re]ax,1) */
966 static const char alt_short_11[] =
967 {0x0f,0x1f,0x44,0x00,0x00,
968 0x66,0x0f,0x1f,0x44,0x00,0x00};
969 /* nopw 0(%[re]ax,%[re]ax,1)
970 nopw 0(%[re]ax,%[re]ax,1) */
971 static const char alt_short_12[] =
972 {0x66,0x0f,0x1f,0x44,0x00,0x00,
973 0x66,0x0f,0x1f,0x44,0x00,0x00};
974 /* nopw 0(%[re]ax,%[re]ax,1)
975 nopl 0L(%[re]ax) */
976 static const char alt_short_13[] =
977 {0x66,0x0f,0x1f,0x44,0x00,0x00,
978 0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
979 /* nopl 0L(%[re]ax)
980 nopl 0L(%[re]ax) */
981 static const char alt_short_14[] =
982 {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00,
983 0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
984 /* nopl 0L(%[re]ax)
985 nopl 0L(%[re]ax,%[re]ax,1) */
986 static const char alt_short_15[] =
987 {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00,
988 0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
989 static const char *const alt_short_patt[] = {
990 f32_1, f32_2, alt_3, alt_4, alt_5, alt_6, alt_7, alt_8,
991 alt_9, alt_10, alt_short_11, alt_short_12, alt_short_13,
992 alt_short_14, alt_short_15
994 static const char *const alt_long_patt[] = {
995 f32_1, f32_2, alt_3, alt_4, alt_5, alt_6, alt_7, alt_8,
996 alt_9, alt_10, alt_long_11, alt_long_12, alt_long_13,
997 alt_long_14, alt_long_15
1000 /* Only align for at least a positive non-zero boundary. */
1001 if (count <= 0 || count > MAX_MEM_FOR_RS_ALIGN_CODE)
1002 return;
1004 /* We need to decide which NOP sequence to use for 32bit and
1005 64bit. When -mtune= is used:
1007 1. For PROCESSOR_I386, PROCESSOR_I486, PROCESSOR_PENTIUM and
1008 PROCESSOR_GENERIC32, f32_patt will be used.
1009 2. For PROCESSOR_PENTIUMPRO, PROCESSOR_PENTIUM4, PROCESSOR_NOCONA,
1010 PROCESSOR_CORE, PROCESSOR_CORE2, PROCESSOR_COREI7, and
1011 PROCESSOR_GENERIC64, alt_long_patt will be used.
1012 3. For PROCESSOR_ATHLON, PROCESSOR_K6, PROCESSOR_K8 and
1013 PROCESSOR_AMDFAM10, and PROCESSOR_BDVER1, alt_short_patt
1014 will be used.
1016 When -mtune= isn't used, alt_long_patt will be used if
1017 cpu_arch_isa_flags has CpuNop. Otherwise, f32_patt will
1018 be used.
1020 When -march= or .arch is used, we can't use anything beyond
1021 cpu_arch_isa_flags. */
1023 if (flag_code == CODE_16BIT)
1025 if (count > 8)
1027 memcpy (fragP->fr_literal + fragP->fr_fix,
1028 jump_31, count);
1029 /* Adjust jump offset. */
1030 fragP->fr_literal[fragP->fr_fix + 1] = count - 2;
1032 else
1033 memcpy (fragP->fr_literal + fragP->fr_fix,
1034 f16_patt[count - 1], count);
1036 else
1038 const char *const *patt = NULL;
1040 if (fragP->tc_frag_data.isa == PROCESSOR_UNKNOWN)
1042 /* PROCESSOR_UNKNOWN means that all ISAs may be used. */
1043 switch (cpu_arch_tune)
1045 case PROCESSOR_UNKNOWN:
1046 /* We use cpu_arch_isa_flags to check if we SHOULD
1047 optimize with nops. */
1048 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
1049 patt = alt_long_patt;
1050 else
1051 patt = f32_patt;
1052 break;
1053 case PROCESSOR_PENTIUMPRO:
1054 case PROCESSOR_PENTIUM4:
1055 case PROCESSOR_NOCONA:
1056 case PROCESSOR_CORE:
1057 case PROCESSOR_CORE2:
1058 case PROCESSOR_COREI7:
1059 case PROCESSOR_L1OM:
1060 case PROCESSOR_GENERIC64:
1061 patt = alt_long_patt;
1062 break;
1063 case PROCESSOR_K6:
1064 case PROCESSOR_ATHLON:
1065 case PROCESSOR_K8:
1066 case PROCESSOR_AMDFAM10:
1067 case PROCESSOR_BDVER1:
1068 patt = alt_short_patt;
1069 break;
1070 case PROCESSOR_I386:
1071 case PROCESSOR_I486:
1072 case PROCESSOR_PENTIUM:
1073 case PROCESSOR_GENERIC32:
1074 patt = f32_patt;
1075 break;
1078 else
1080 switch (fragP->tc_frag_data.tune)
1082 case PROCESSOR_UNKNOWN:
1083 /* When cpu_arch_isa is set, cpu_arch_tune shouldn't be
1084 PROCESSOR_UNKNOWN. */
1085 abort ();
1086 break;
1088 case PROCESSOR_I386:
1089 case PROCESSOR_I486:
1090 case PROCESSOR_PENTIUM:
1091 case PROCESSOR_K6:
1092 case PROCESSOR_ATHLON:
1093 case PROCESSOR_K8:
1094 case PROCESSOR_AMDFAM10:
1095 case PROCESSOR_BDVER1:
1096 case PROCESSOR_GENERIC32:
1097 /* We use cpu_arch_isa_flags to check if we CAN optimize
1098 with nops. */
1099 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
1100 patt = alt_short_patt;
1101 else
1102 patt = f32_patt;
1103 break;
1104 case PROCESSOR_PENTIUMPRO:
1105 case PROCESSOR_PENTIUM4:
1106 case PROCESSOR_NOCONA:
1107 case PROCESSOR_CORE:
1108 case PROCESSOR_CORE2:
1109 case PROCESSOR_COREI7:
1110 case PROCESSOR_L1OM:
1111 if (fragP->tc_frag_data.isa_flags.bitfield.cpunop)
1112 patt = alt_long_patt;
1113 else
1114 patt = f32_patt;
1115 break;
1116 case PROCESSOR_GENERIC64:
1117 patt = alt_long_patt;
1118 break;
1122 if (patt == f32_patt)
1124 /* If the padding is less than 15 bytes, we use the normal
1125 ones. Otherwise, we use a jump instruction and adjust
1126 its offset. */
1127 int limit;
1129 /* For 64bit, the limit is 3 bytes. */
1130 if (flag_code == CODE_64BIT
1131 && fragP->tc_frag_data.isa_flags.bitfield.cpulm)
1132 limit = 3;
1133 else
1134 limit = 15;
1135 if (count < limit)
1136 memcpy (fragP->fr_literal + fragP->fr_fix,
1137 patt[count - 1], count);
1138 else
1140 memcpy (fragP->fr_literal + fragP->fr_fix,
1141 jump_31, count);
1142 /* Adjust jump offset. */
1143 fragP->fr_literal[fragP->fr_fix + 1] = count - 2;
1146 else
1148 /* Maximum length of an instruction is 15 byte. If the
1149 padding is greater than 15 bytes and we don't use jump,
1150 we have to break it into smaller pieces. */
1151 int padding = count;
1152 while (padding > 15)
1154 padding -= 15;
1155 memcpy (fragP->fr_literal + fragP->fr_fix + padding,
1156 patt [14], 15);
1159 if (padding)
1160 memcpy (fragP->fr_literal + fragP->fr_fix,
1161 patt [padding - 1], padding);
1164 fragP->fr_var = count;
1167 static INLINE int
1168 operand_type_all_zero (const union i386_operand_type *x)
1170 switch (ARRAY_SIZE(x->array))
1172 case 3:
1173 if (x->array[2])
1174 return 0;
1175 case 2:
1176 if (x->array[1])
1177 return 0;
1178 case 1:
1179 return !x->array[0];
1180 default:
1181 abort ();
1185 static INLINE void
1186 operand_type_set (union i386_operand_type *x, unsigned int v)
1188 switch (ARRAY_SIZE(x->array))
1190 case 3:
1191 x->array[2] = v;
1192 case 2:
1193 x->array[1] = v;
1194 case 1:
1195 x->array[0] = v;
1196 break;
1197 default:
1198 abort ();
1202 static INLINE int
1203 operand_type_equal (const union i386_operand_type *x,
1204 const union i386_operand_type *y)
1206 switch (ARRAY_SIZE(x->array))
1208 case 3:
1209 if (x->array[2] != y->array[2])
1210 return 0;
1211 case 2:
1212 if (x->array[1] != y->array[1])
1213 return 0;
1214 case 1:
1215 return x->array[0] == y->array[0];
1216 break;
1217 default:
1218 abort ();
1222 static INLINE int
1223 cpu_flags_all_zero (const union i386_cpu_flags *x)
1225 switch (ARRAY_SIZE(x->array))
1227 case 3:
1228 if (x->array[2])
1229 return 0;
1230 case 2:
1231 if (x->array[1])
1232 return 0;
1233 case 1:
1234 return !x->array[0];
1235 default:
1236 abort ();
1240 static INLINE void
1241 cpu_flags_set (union i386_cpu_flags *x, unsigned int v)
1243 switch (ARRAY_SIZE(x->array))
1245 case 3:
1246 x->array[2] = v;
1247 case 2:
1248 x->array[1] = v;
1249 case 1:
1250 x->array[0] = v;
1251 break;
1252 default:
1253 abort ();
1257 static INLINE int
1258 cpu_flags_equal (const union i386_cpu_flags *x,
1259 const union i386_cpu_flags *y)
1261 switch (ARRAY_SIZE(x->array))
1263 case 3:
1264 if (x->array[2] != y->array[2])
1265 return 0;
1266 case 2:
1267 if (x->array[1] != y->array[1])
1268 return 0;
1269 case 1:
1270 return x->array[0] == y->array[0];
1271 break;
1272 default:
1273 abort ();
1277 static INLINE int
1278 cpu_flags_check_cpu64 (i386_cpu_flags f)
1280 return !((flag_code == CODE_64BIT && f.bitfield.cpuno64)
1281 || (flag_code != CODE_64BIT && f.bitfield.cpu64));
1284 static INLINE i386_cpu_flags
1285 cpu_flags_and (i386_cpu_flags x, i386_cpu_flags y)
1287 switch (ARRAY_SIZE (x.array))
1289 case 3:
1290 x.array [2] &= y.array [2];
1291 case 2:
1292 x.array [1] &= y.array [1];
1293 case 1:
1294 x.array [0] &= y.array [0];
1295 break;
1296 default:
1297 abort ();
1299 return x;
1302 static INLINE i386_cpu_flags
1303 cpu_flags_or (i386_cpu_flags x, i386_cpu_flags y)
1305 switch (ARRAY_SIZE (x.array))
1307 case 3:
1308 x.array [2] |= y.array [2];
1309 case 2:
1310 x.array [1] |= y.array [1];
1311 case 1:
1312 x.array [0] |= y.array [0];
1313 break;
1314 default:
1315 abort ();
1317 return x;
1320 static INLINE i386_cpu_flags
1321 cpu_flags_and_not (i386_cpu_flags x, i386_cpu_flags y)
1323 switch (ARRAY_SIZE (x.array))
1325 case 3:
1326 x.array [2] &= ~y.array [2];
1327 case 2:
1328 x.array [1] &= ~y.array [1];
1329 case 1:
1330 x.array [0] &= ~y.array [0];
1331 break;
1332 default:
1333 abort ();
1335 return x;
1338 #define CPU_FLAGS_ARCH_MATCH 0x1
1339 #define CPU_FLAGS_64BIT_MATCH 0x2
1340 #define CPU_FLAGS_AES_MATCH 0x4
1341 #define CPU_FLAGS_PCLMUL_MATCH 0x8
1342 #define CPU_FLAGS_AVX_MATCH 0x10
1344 #define CPU_FLAGS_32BIT_MATCH \
1345 (CPU_FLAGS_ARCH_MATCH | CPU_FLAGS_AES_MATCH \
1346 | CPU_FLAGS_PCLMUL_MATCH | CPU_FLAGS_AVX_MATCH)
1347 #define CPU_FLAGS_PERFECT_MATCH \
1348 (CPU_FLAGS_32BIT_MATCH | CPU_FLAGS_64BIT_MATCH)
1350 /* Return CPU flags match bits. */
1352 static int
1353 cpu_flags_match (const insn_template *t)
1355 i386_cpu_flags x = t->cpu_flags;
1356 int match = cpu_flags_check_cpu64 (x) ? CPU_FLAGS_64BIT_MATCH : 0;
1358 x.bitfield.cpu64 = 0;
1359 x.bitfield.cpuno64 = 0;
1361 if (cpu_flags_all_zero (&x))
1363 /* This instruction is available on all archs. */
1364 match |= CPU_FLAGS_32BIT_MATCH;
1366 else
1368 /* This instruction is available only on some archs. */
1369 i386_cpu_flags cpu = cpu_arch_flags;
1371 cpu.bitfield.cpu64 = 0;
1372 cpu.bitfield.cpuno64 = 0;
1373 cpu = cpu_flags_and (x, cpu);
1374 if (!cpu_flags_all_zero (&cpu))
1376 if (x.bitfield.cpuavx)
1378 /* We only need to check AES/PCLMUL/SSE2AVX with AVX. */
1379 if (cpu.bitfield.cpuavx)
1381 /* Check SSE2AVX. */
1382 if (!t->opcode_modifier.sse2avx|| sse2avx)
1384 match |= (CPU_FLAGS_ARCH_MATCH
1385 | CPU_FLAGS_AVX_MATCH);
1386 /* Check AES. */
1387 if (!x.bitfield.cpuaes || cpu.bitfield.cpuaes)
1388 match |= CPU_FLAGS_AES_MATCH;
1389 /* Check PCLMUL. */
1390 if (!x.bitfield.cpupclmul
1391 || cpu.bitfield.cpupclmul)
1392 match |= CPU_FLAGS_PCLMUL_MATCH;
1395 else
1396 match |= CPU_FLAGS_ARCH_MATCH;
1398 else
1399 match |= CPU_FLAGS_32BIT_MATCH;
1402 return match;
1405 static INLINE i386_operand_type
1406 operand_type_and (i386_operand_type x, i386_operand_type y)
1408 switch (ARRAY_SIZE (x.array))
1410 case 3:
1411 x.array [2] &= y.array [2];
1412 case 2:
1413 x.array [1] &= y.array [1];
1414 case 1:
1415 x.array [0] &= y.array [0];
1416 break;
1417 default:
1418 abort ();
1420 return x;
1423 static INLINE i386_operand_type
1424 operand_type_or (i386_operand_type x, i386_operand_type y)
1426 switch (ARRAY_SIZE (x.array))
1428 case 3:
1429 x.array [2] |= y.array [2];
1430 case 2:
1431 x.array [1] |= y.array [1];
1432 case 1:
1433 x.array [0] |= y.array [0];
1434 break;
1435 default:
1436 abort ();
1438 return x;
1441 static INLINE i386_operand_type
1442 operand_type_xor (i386_operand_type x, i386_operand_type y)
1444 switch (ARRAY_SIZE (x.array))
1446 case 3:
1447 x.array [2] ^= y.array [2];
1448 case 2:
1449 x.array [1] ^= y.array [1];
1450 case 1:
1451 x.array [0] ^= y.array [0];
1452 break;
1453 default:
1454 abort ();
1456 return x;
1459 static const i386_operand_type acc32 = OPERAND_TYPE_ACC32;
1460 static const i386_operand_type acc64 = OPERAND_TYPE_ACC64;
1461 static const i386_operand_type control = OPERAND_TYPE_CONTROL;
1462 static const i386_operand_type inoutportreg
1463 = OPERAND_TYPE_INOUTPORTREG;
1464 static const i386_operand_type reg16_inoutportreg
1465 = OPERAND_TYPE_REG16_INOUTPORTREG;
1466 static const i386_operand_type disp16 = OPERAND_TYPE_DISP16;
1467 static const i386_operand_type disp32 = OPERAND_TYPE_DISP32;
1468 static const i386_operand_type disp32s = OPERAND_TYPE_DISP32S;
1469 static const i386_operand_type disp16_32 = OPERAND_TYPE_DISP16_32;
1470 static const i386_operand_type anydisp
1471 = OPERAND_TYPE_ANYDISP;
1472 static const i386_operand_type regxmm = OPERAND_TYPE_REGXMM;
1473 static const i386_operand_type regymm = OPERAND_TYPE_REGYMM;
1474 static const i386_operand_type imm8 = OPERAND_TYPE_IMM8;
1475 static const i386_operand_type imm8s = OPERAND_TYPE_IMM8S;
1476 static const i386_operand_type imm16 = OPERAND_TYPE_IMM16;
1477 static const i386_operand_type imm32 = OPERAND_TYPE_IMM32;
1478 static const i386_operand_type imm32s = OPERAND_TYPE_IMM32S;
1479 static const i386_operand_type imm64 = OPERAND_TYPE_IMM64;
1480 static const i386_operand_type imm16_32 = OPERAND_TYPE_IMM16_32;
1481 static const i386_operand_type imm16_32s = OPERAND_TYPE_IMM16_32S;
1482 static const i386_operand_type imm16_32_32s = OPERAND_TYPE_IMM16_32_32S;
1483 static const i386_operand_type vec_imm4 = OPERAND_TYPE_VEC_IMM4;
1485 enum operand_type
1487 reg,
1488 imm,
1489 disp,
1490 anymem
1493 static INLINE int
1494 operand_type_check (i386_operand_type t, enum operand_type c)
1496 switch (c)
1498 case reg:
1499 return (t.bitfield.reg8
1500 || t.bitfield.reg16
1501 || t.bitfield.reg32
1502 || t.bitfield.reg64);
1504 case imm:
1505 return (t.bitfield.imm8
1506 || t.bitfield.imm8s
1507 || t.bitfield.imm16
1508 || t.bitfield.imm32
1509 || t.bitfield.imm32s
1510 || t.bitfield.imm64);
1512 case disp:
1513 return (t.bitfield.disp8
1514 || t.bitfield.disp16
1515 || t.bitfield.disp32
1516 || t.bitfield.disp32s
1517 || t.bitfield.disp64);
1519 case anymem:
1520 return (t.bitfield.disp8
1521 || t.bitfield.disp16
1522 || t.bitfield.disp32
1523 || t.bitfield.disp32s
1524 || t.bitfield.disp64
1525 || t.bitfield.baseindex);
1527 default:
1528 abort ();
1531 return 0;
1534 /* Return 1 if there is no conflict in 8bit/16bit/32bit/64bit on
1535 operand J for instruction template T. */
1537 static INLINE int
1538 match_reg_size (const insn_template *t, unsigned int j)
1540 return !((i.types[j].bitfield.byte
1541 && !t->operand_types[j].bitfield.byte)
1542 || (i.types[j].bitfield.word
1543 && !t->operand_types[j].bitfield.word)
1544 || (i.types[j].bitfield.dword
1545 && !t->operand_types[j].bitfield.dword)
1546 || (i.types[j].bitfield.qword
1547 && !t->operand_types[j].bitfield.qword));
1550 /* Return 1 if there is no conflict in any size on operand J for
1551 instruction template T. */
1553 static INLINE int
1554 match_mem_size (const insn_template *t, unsigned int j)
1556 return (match_reg_size (t, j)
1557 && !((i.types[j].bitfield.unspecified
1558 && !t->operand_types[j].bitfield.unspecified)
1559 || (i.types[j].bitfield.fword
1560 && !t->operand_types[j].bitfield.fword)
1561 || (i.types[j].bitfield.tbyte
1562 && !t->operand_types[j].bitfield.tbyte)
1563 || (i.types[j].bitfield.xmmword
1564 && !t->operand_types[j].bitfield.xmmword)
1565 || (i.types[j].bitfield.ymmword
1566 && !t->operand_types[j].bitfield.ymmword)));
1569 /* Return 1 if there is no size conflict on any operands for
1570 instruction template T. */
1572 static INLINE int
1573 operand_size_match (const insn_template *t)
1575 unsigned int j;
1576 int match = 1;
1578 /* Don't check jump instructions. */
1579 if (t->opcode_modifier.jump
1580 || t->opcode_modifier.jumpbyte
1581 || t->opcode_modifier.jumpdword
1582 || t->opcode_modifier.jumpintersegment)
1583 return match;
1585 /* Check memory and accumulator operand size. */
1586 for (j = 0; j < i.operands; j++)
1588 if (t->operand_types[j].bitfield.anysize)
1589 continue;
1591 if (t->operand_types[j].bitfield.acc && !match_reg_size (t, j))
1593 match = 0;
1594 break;
1597 if (i.types[j].bitfield.mem && !match_mem_size (t, j))
1599 match = 0;
1600 break;
1604 if (match)
1605 return match;
1606 else if (!t->opcode_modifier.d && !t->opcode_modifier.floatd)
1608 mismatch:
1609 i.error = operand_size_mismatch;
1610 return 0;
1613 /* Check reverse. */
1614 gas_assert (i.operands == 2);
1616 match = 1;
1617 for (j = 0; j < 2; j++)
1619 if (t->operand_types[j].bitfield.acc
1620 && !match_reg_size (t, j ? 0 : 1))
1621 goto mismatch;
1623 if (i.types[j].bitfield.mem
1624 && !match_mem_size (t, j ? 0 : 1))
1625 goto mismatch;
1628 return match;
1631 static INLINE int
1632 operand_type_match (i386_operand_type overlap,
1633 i386_operand_type given)
1635 i386_operand_type temp = overlap;
1637 temp.bitfield.jumpabsolute = 0;
1638 temp.bitfield.unspecified = 0;
1639 temp.bitfield.byte = 0;
1640 temp.bitfield.word = 0;
1641 temp.bitfield.dword = 0;
1642 temp.bitfield.fword = 0;
1643 temp.bitfield.qword = 0;
1644 temp.bitfield.tbyte = 0;
1645 temp.bitfield.xmmword = 0;
1646 temp.bitfield.ymmword = 0;
1647 if (operand_type_all_zero (&temp))
1648 goto mismatch;
1650 if (given.bitfield.baseindex == overlap.bitfield.baseindex
1651 && given.bitfield.jumpabsolute == overlap.bitfield.jumpabsolute)
1652 return 1;
1654 mismatch:
1655 i.error = operand_type_mismatch;
1656 return 0;
1659 /* If given types g0 and g1 are registers they must be of the same type
1660 unless the expected operand type register overlap is null.
1661 Note that Acc in a template matches every size of reg. */
1663 static INLINE int
1664 operand_type_register_match (i386_operand_type m0,
1665 i386_operand_type g0,
1666 i386_operand_type t0,
1667 i386_operand_type m1,
1668 i386_operand_type g1,
1669 i386_operand_type t1)
1671 if (!operand_type_check (g0, reg))
1672 return 1;
1674 if (!operand_type_check (g1, reg))
1675 return 1;
1677 if (g0.bitfield.reg8 == g1.bitfield.reg8
1678 && g0.bitfield.reg16 == g1.bitfield.reg16
1679 && g0.bitfield.reg32 == g1.bitfield.reg32
1680 && g0.bitfield.reg64 == g1.bitfield.reg64)
1681 return 1;
1683 if (m0.bitfield.acc)
1685 t0.bitfield.reg8 = 1;
1686 t0.bitfield.reg16 = 1;
1687 t0.bitfield.reg32 = 1;
1688 t0.bitfield.reg64 = 1;
1691 if (m1.bitfield.acc)
1693 t1.bitfield.reg8 = 1;
1694 t1.bitfield.reg16 = 1;
1695 t1.bitfield.reg32 = 1;
1696 t1.bitfield.reg64 = 1;
1699 if (!(t0.bitfield.reg8 & t1.bitfield.reg8)
1700 && !(t0.bitfield.reg16 & t1.bitfield.reg16)
1701 && !(t0.bitfield.reg32 & t1.bitfield.reg32)
1702 && !(t0.bitfield.reg64 & t1.bitfield.reg64))
1703 return 1;
1705 i.error = register_type_mismatch;
1707 return 0;
1710 static INLINE unsigned int
1711 mode_from_disp_size (i386_operand_type t)
1713 if (t.bitfield.disp8)
1714 return 1;
1715 else if (t.bitfield.disp16
1716 || t.bitfield.disp32
1717 || t.bitfield.disp32s)
1718 return 2;
1719 else
1720 return 0;
1723 static INLINE int
1724 fits_in_signed_byte (offsetT num)
1726 return (num >= -128) && (num <= 127);
1729 static INLINE int
1730 fits_in_unsigned_byte (offsetT num)
1732 return (num & 0xff) == num;
1735 static INLINE int
1736 fits_in_unsigned_word (offsetT num)
1738 return (num & 0xffff) == num;
1741 static INLINE int
1742 fits_in_signed_word (offsetT num)
1744 return (-32768 <= num) && (num <= 32767);
1747 static INLINE int
1748 fits_in_signed_long (offsetT num ATTRIBUTE_UNUSED)
1750 #ifndef BFD64
1751 return 1;
1752 #else
1753 return (!(((offsetT) -1 << 31) & num)
1754 || (((offsetT) -1 << 31) & num) == ((offsetT) -1 << 31));
1755 #endif
1756 } /* fits_in_signed_long() */
1758 static INLINE int
1759 fits_in_unsigned_long (offsetT num ATTRIBUTE_UNUSED)
1761 #ifndef BFD64
1762 return 1;
1763 #else
1764 return (num & (((offsetT) 2 << 31) - 1)) == num;
1765 #endif
1766 } /* fits_in_unsigned_long() */
1768 static INLINE int
1769 fits_in_imm4 (offsetT num)
1771 return (num & 0xf) == num;
1774 static i386_operand_type
1775 smallest_imm_type (offsetT num)
1777 i386_operand_type t;
1779 operand_type_set (&t, 0);
1780 t.bitfield.imm64 = 1;
1782 if (cpu_arch_tune != PROCESSOR_I486 && num == 1)
1784 /* This code is disabled on the 486 because all the Imm1 forms
1785 in the opcode table are slower on the i486. They're the
1786 versions with the implicitly specified single-position
1787 displacement, which has another syntax if you really want to
1788 use that form. */
1789 t.bitfield.imm1 = 1;
1790 t.bitfield.imm8 = 1;
1791 t.bitfield.imm8s = 1;
1792 t.bitfield.imm16 = 1;
1793 t.bitfield.imm32 = 1;
1794 t.bitfield.imm32s = 1;
1796 else if (fits_in_signed_byte (num))
1798 t.bitfield.imm8 = 1;
1799 t.bitfield.imm8s = 1;
1800 t.bitfield.imm16 = 1;
1801 t.bitfield.imm32 = 1;
1802 t.bitfield.imm32s = 1;
1804 else if (fits_in_unsigned_byte (num))
1806 t.bitfield.imm8 = 1;
1807 t.bitfield.imm16 = 1;
1808 t.bitfield.imm32 = 1;
1809 t.bitfield.imm32s = 1;
1811 else if (fits_in_signed_word (num) || fits_in_unsigned_word (num))
1813 t.bitfield.imm16 = 1;
1814 t.bitfield.imm32 = 1;
1815 t.bitfield.imm32s = 1;
1817 else if (fits_in_signed_long (num))
1819 t.bitfield.imm32 = 1;
1820 t.bitfield.imm32s = 1;
1822 else if (fits_in_unsigned_long (num))
1823 t.bitfield.imm32 = 1;
1825 return t;
1828 static offsetT
1829 offset_in_range (offsetT val, int size)
1831 addressT mask;
1833 switch (size)
1835 case 1: mask = ((addressT) 1 << 8) - 1; break;
1836 case 2: mask = ((addressT) 1 << 16) - 1; break;
1837 case 4: mask = ((addressT) 2 << 31) - 1; break;
1838 #ifdef BFD64
1839 case 8: mask = ((addressT) 2 << 63) - 1; break;
1840 #endif
1841 default: abort ();
1844 #ifdef BFD64
1845 /* If BFD64, sign extend val for 32bit address mode. */
1846 if (flag_code != CODE_64BIT
1847 || i.prefix[ADDR_PREFIX])
1848 if ((val & ~(((addressT) 2 << 31) - 1)) == 0)
1849 val = (val ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
1850 #endif
1852 if ((val & ~mask) != 0 && (val & ~mask) != ~mask)
1854 char buf1[40], buf2[40];
1856 sprint_value (buf1, val);
1857 sprint_value (buf2, val & mask);
1858 as_warn (_("%s shortened to %s"), buf1, buf2);
1860 return val & mask;
1863 enum PREFIX_GROUP
1865 PREFIX_EXIST = 0,
1866 PREFIX_LOCK,
1867 PREFIX_REP,
1868 PREFIX_OTHER
1871 /* Returns
1872 a. PREFIX_EXIST if attempting to add a prefix where one from the
1873 same class already exists.
1874 b. PREFIX_LOCK if lock prefix is added.
1875 c. PREFIX_REP if rep/repne prefix is added.
1876 d. PREFIX_OTHER if other prefix is added.
1879 static enum PREFIX_GROUP
1880 add_prefix (unsigned int prefix)
1882 enum PREFIX_GROUP ret = PREFIX_OTHER;
1883 unsigned int q;
1885 if (prefix >= REX_OPCODE && prefix < REX_OPCODE + 16
1886 && flag_code == CODE_64BIT)
1888 if ((i.prefix[REX_PREFIX] & prefix & REX_W)
1889 || ((i.prefix[REX_PREFIX] & (REX_R | REX_X | REX_B))
1890 && (prefix & (REX_R | REX_X | REX_B))))
1891 ret = PREFIX_EXIST;
1892 q = REX_PREFIX;
1894 else
1896 switch (prefix)
1898 default:
1899 abort ();
1901 case CS_PREFIX_OPCODE:
1902 case DS_PREFIX_OPCODE:
1903 case ES_PREFIX_OPCODE:
1904 case FS_PREFIX_OPCODE:
1905 case GS_PREFIX_OPCODE:
1906 case SS_PREFIX_OPCODE:
1907 q = SEG_PREFIX;
1908 break;
1910 case REPNE_PREFIX_OPCODE:
1911 case REPE_PREFIX_OPCODE:
1912 q = REP_PREFIX;
1913 ret = PREFIX_REP;
1914 break;
1916 case LOCK_PREFIX_OPCODE:
1917 q = LOCK_PREFIX;
1918 ret = PREFIX_LOCK;
1919 break;
1921 case FWAIT_OPCODE:
1922 q = WAIT_PREFIX;
1923 break;
1925 case ADDR_PREFIX_OPCODE:
1926 q = ADDR_PREFIX;
1927 break;
1929 case DATA_PREFIX_OPCODE:
1930 q = DATA_PREFIX;
1931 break;
1933 if (i.prefix[q] != 0)
1934 ret = PREFIX_EXIST;
1937 if (ret)
1939 if (!i.prefix[q])
1940 ++i.prefixes;
1941 i.prefix[q] |= prefix;
1943 else
1944 as_bad (_("same type of prefix used twice"));
1946 return ret;
1949 static void
1950 update_code_flag (int value, int check)
1952 PRINTF_LIKE ((*as_error));
1954 flag_code = (enum flag_code) value;
1955 if (flag_code == CODE_64BIT)
1957 cpu_arch_flags.bitfield.cpu64 = 1;
1958 cpu_arch_flags.bitfield.cpuno64 = 0;
1960 else
1962 cpu_arch_flags.bitfield.cpu64 = 0;
1963 cpu_arch_flags.bitfield.cpuno64 = 1;
1965 if (value == CODE_64BIT && !cpu_arch_flags.bitfield.cpulm )
1967 if (check)
1968 as_error = as_fatal;
1969 else
1970 as_error = as_bad;
1971 (*as_error) (_("64bit mode not supported on `%s'."),
1972 cpu_arch_name ? cpu_arch_name : default_arch);
1974 if (value == CODE_32BIT && !cpu_arch_flags.bitfield.cpui386)
1976 if (check)
1977 as_error = as_fatal;
1978 else
1979 as_error = as_bad;
1980 (*as_error) (_("32bit mode not supported on `%s'."),
1981 cpu_arch_name ? cpu_arch_name : default_arch);
1983 stackop_size = '\0';
1986 static void
1987 set_code_flag (int value)
1989 update_code_flag (value, 0);
1992 static void
1993 set_16bit_gcc_code_flag (int new_code_flag)
1995 flag_code = (enum flag_code) new_code_flag;
1996 if (flag_code != CODE_16BIT)
1997 abort ();
1998 cpu_arch_flags.bitfield.cpu64 = 0;
1999 cpu_arch_flags.bitfield.cpuno64 = 1;
2000 stackop_size = LONG_MNEM_SUFFIX;
2003 static void
2004 set_intel_syntax (int syntax_flag)
2006 /* Find out if register prefixing is specified. */
2007 int ask_naked_reg = 0;
2009 SKIP_WHITESPACE ();
2010 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2012 char *string = input_line_pointer;
2013 int e = get_symbol_end ();
2015 if (strcmp (string, "prefix") == 0)
2016 ask_naked_reg = 1;
2017 else if (strcmp (string, "noprefix") == 0)
2018 ask_naked_reg = -1;
2019 else
2020 as_bad (_("bad argument to syntax directive."));
2021 *input_line_pointer = e;
2023 demand_empty_rest_of_line ();
2025 intel_syntax = syntax_flag;
2027 if (ask_naked_reg == 0)
2028 allow_naked_reg = (intel_syntax
2029 && (bfd_get_symbol_leading_char (stdoutput) != '\0'));
2030 else
2031 allow_naked_reg = (ask_naked_reg < 0);
2033 expr_set_rank (O_full_ptr, syntax_flag ? 10 : 0);
2035 identifier_chars['%'] = intel_syntax && allow_naked_reg ? '%' : 0;
2036 identifier_chars['$'] = intel_syntax ? '$' : 0;
2037 register_prefix = allow_naked_reg ? "" : "%";
2040 static void
2041 set_intel_mnemonic (int mnemonic_flag)
2043 intel_mnemonic = mnemonic_flag;
2046 static void
2047 set_allow_index_reg (int flag)
2049 allow_index_reg = flag;
2052 static void
2053 set_sse_check (int dummy ATTRIBUTE_UNUSED)
2055 SKIP_WHITESPACE ();
2057 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2059 char *string = input_line_pointer;
2060 int e = get_symbol_end ();
2062 if (strcmp (string, "none") == 0)
2063 sse_check = sse_check_none;
2064 else if (strcmp (string, "warning") == 0)
2065 sse_check = sse_check_warning;
2066 else if (strcmp (string, "error") == 0)
2067 sse_check = sse_check_error;
2068 else
2069 as_bad (_("bad argument to sse_check directive."));
2070 *input_line_pointer = e;
2072 else
2073 as_bad (_("missing argument for sse_check directive"));
2075 demand_empty_rest_of_line ();
2078 static void
2079 check_cpu_arch_compatible (const char *name ATTRIBUTE_UNUSED,
2080 i386_cpu_flags new_flag ATTRIBUTE_UNUSED)
2082 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2083 static const char *arch;
2085 /* Intel LIOM is only supported on ELF. */
2086 if (!IS_ELF)
2087 return;
2089 if (!arch)
2091 /* Use cpu_arch_name if it is set in md_parse_option. Otherwise
2092 use default_arch. */
2093 arch = cpu_arch_name;
2094 if (!arch)
2095 arch = default_arch;
2098 /* If we are targeting Intel L1OM, we must enable it. */
2099 if (get_elf_backend_data (stdoutput)->elf_machine_code != EM_L1OM
2100 || new_flag.bitfield.cpul1om)
2101 return;
2103 as_bad (_("`%s' is not supported on `%s'"), name, arch);
2104 #endif
2107 static void
2108 set_cpu_arch (int dummy ATTRIBUTE_UNUSED)
2110 SKIP_WHITESPACE ();
2112 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2114 char *string = input_line_pointer;
2115 int e = get_symbol_end ();
2116 unsigned int j;
2117 i386_cpu_flags flags;
2119 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
2121 if (strcmp (string, cpu_arch[j].name) == 0)
2123 check_cpu_arch_compatible (string, cpu_arch[j].flags);
2125 if (*string != '.')
2127 cpu_arch_name = cpu_arch[j].name;
2128 cpu_sub_arch_name = NULL;
2129 cpu_arch_flags = cpu_arch[j].flags;
2130 if (flag_code == CODE_64BIT)
2132 cpu_arch_flags.bitfield.cpu64 = 1;
2133 cpu_arch_flags.bitfield.cpuno64 = 0;
2135 else
2137 cpu_arch_flags.bitfield.cpu64 = 0;
2138 cpu_arch_flags.bitfield.cpuno64 = 1;
2140 cpu_arch_isa = cpu_arch[j].type;
2141 cpu_arch_isa_flags = cpu_arch[j].flags;
2142 if (!cpu_arch_tune_set)
2144 cpu_arch_tune = cpu_arch_isa;
2145 cpu_arch_tune_flags = cpu_arch_isa_flags;
2147 break;
2150 if (!cpu_arch[j].negated)
2151 flags = cpu_flags_or (cpu_arch_flags,
2152 cpu_arch[j].flags);
2153 else
2154 flags = cpu_flags_and_not (cpu_arch_flags,
2155 cpu_arch[j].flags);
2156 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
2158 if (cpu_sub_arch_name)
2160 char *name = cpu_sub_arch_name;
2161 cpu_sub_arch_name = concat (name,
2162 cpu_arch[j].name,
2163 (const char *) NULL);
2164 free (name);
2166 else
2167 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
2168 cpu_arch_flags = flags;
2170 *input_line_pointer = e;
2171 demand_empty_rest_of_line ();
2172 return;
2175 if (j >= ARRAY_SIZE (cpu_arch))
2176 as_bad (_("no such architecture: `%s'"), string);
2178 *input_line_pointer = e;
2180 else
2181 as_bad (_("missing cpu architecture"));
2183 no_cond_jump_promotion = 0;
2184 if (*input_line_pointer == ','
2185 && !is_end_of_line[(unsigned char) input_line_pointer[1]])
2187 char *string = ++input_line_pointer;
2188 int e = get_symbol_end ();
2190 if (strcmp (string, "nojumps") == 0)
2191 no_cond_jump_promotion = 1;
2192 else if (strcmp (string, "jumps") == 0)
2194 else
2195 as_bad (_("no such architecture modifier: `%s'"), string);
2197 *input_line_pointer = e;
2200 demand_empty_rest_of_line ();
2203 enum bfd_architecture
2204 i386_arch (void)
2206 if (cpu_arch_isa == PROCESSOR_L1OM)
2208 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2209 || flag_code != CODE_64BIT)
2210 as_fatal (_("Intel L1OM is 64bit ELF only"));
2211 return bfd_arch_l1om;
2213 else
2214 return bfd_arch_i386;
2217 unsigned long
2218 i386_mach ()
2220 if (!strncmp (default_arch, "x86_64", 6))
2222 if (cpu_arch_isa == PROCESSOR_L1OM)
2224 if (OUTPUT_FLAVOR != bfd_target_elf_flavour
2225 || default_arch[6] != '\0')
2226 as_fatal (_("Intel L1OM is 64bit ELF only"));
2227 return bfd_mach_l1om;
2229 else if (default_arch[6] == '\0')
2230 return bfd_mach_x86_64;
2231 else
2232 return bfd_mach_x64_32;
2234 else if (!strcmp (default_arch, "i386"))
2235 return bfd_mach_i386_i386;
2236 else
2237 as_fatal (_("Unknown architecture"));
2240 void
2241 md_begin ()
2243 const char *hash_err;
2245 /* Initialize op_hash hash table. */
2246 op_hash = hash_new ();
2249 const insn_template *optab;
2250 templates *core_optab;
2252 /* Setup for loop. */
2253 optab = i386_optab;
2254 core_optab = (templates *) xmalloc (sizeof (templates));
2255 core_optab->start = optab;
2257 while (1)
2259 ++optab;
2260 if (optab->name == NULL
2261 || strcmp (optab->name, (optab - 1)->name) != 0)
2263 /* different name --> ship out current template list;
2264 add to hash table; & begin anew. */
2265 core_optab->end = optab;
2266 hash_err = hash_insert (op_hash,
2267 (optab - 1)->name,
2268 (void *) core_optab);
2269 if (hash_err)
2271 as_fatal (_("Internal Error: Can't hash %s: %s"),
2272 (optab - 1)->name,
2273 hash_err);
2275 if (optab->name == NULL)
2276 break;
2277 core_optab = (templates *) xmalloc (sizeof (templates));
2278 core_optab->start = optab;
2283 /* Initialize reg_hash hash table. */
2284 reg_hash = hash_new ();
2286 const reg_entry *regtab;
2287 unsigned int regtab_size = i386_regtab_size;
2289 for (regtab = i386_regtab; regtab_size--; regtab++)
2291 hash_err = hash_insert (reg_hash, regtab->reg_name, (void *) regtab);
2292 if (hash_err)
2293 as_fatal (_("Internal Error: Can't hash %s: %s"),
2294 regtab->reg_name,
2295 hash_err);
2299 /* Fill in lexical tables: mnemonic_chars, operand_chars. */
2301 int c;
2302 char *p;
2304 for (c = 0; c < 256; c++)
2306 if (ISDIGIT (c))
2308 digit_chars[c] = c;
2309 mnemonic_chars[c] = c;
2310 register_chars[c] = c;
2311 operand_chars[c] = c;
2313 else if (ISLOWER (c))
2315 mnemonic_chars[c] = c;
2316 register_chars[c] = c;
2317 operand_chars[c] = c;
2319 else if (ISUPPER (c))
2321 mnemonic_chars[c] = TOLOWER (c);
2322 register_chars[c] = mnemonic_chars[c];
2323 operand_chars[c] = c;
2326 if (ISALPHA (c) || ISDIGIT (c))
2327 identifier_chars[c] = c;
2328 else if (c >= 128)
2330 identifier_chars[c] = c;
2331 operand_chars[c] = c;
2335 #ifdef LEX_AT
2336 identifier_chars['@'] = '@';
2337 #endif
2338 #ifdef LEX_QM
2339 identifier_chars['?'] = '?';
2340 operand_chars['?'] = '?';
2341 #endif
2342 digit_chars['-'] = '-';
2343 mnemonic_chars['_'] = '_';
2344 mnemonic_chars['-'] = '-';
2345 mnemonic_chars['.'] = '.';
2346 identifier_chars['_'] = '_';
2347 identifier_chars['.'] = '.';
2349 for (p = operand_special_chars; *p != '\0'; p++)
2350 operand_chars[(unsigned char) *p] = *p;
2353 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2354 if (IS_ELF)
2356 record_alignment (text_section, 2);
2357 record_alignment (data_section, 2);
2358 record_alignment (bss_section, 2);
2360 #endif
2362 if (flag_code == CODE_64BIT)
2364 x86_dwarf2_return_column = 16;
2365 x86_cie_data_alignment = -8;
2367 else
2369 x86_dwarf2_return_column = 8;
2370 x86_cie_data_alignment = -4;
2374 void
2375 i386_print_statistics (FILE *file)
2377 hash_print_statistics (file, "i386 opcode", op_hash);
2378 hash_print_statistics (file, "i386 register", reg_hash);
2381 #ifdef DEBUG386
2383 /* Debugging routines for md_assemble. */
2384 static void pte (insn_template *);
2385 static void pt (i386_operand_type);
2386 static void pe (expressionS *);
2387 static void ps (symbolS *);
2389 static void
2390 pi (char *line, i386_insn *x)
2392 unsigned int j;
2394 fprintf (stdout, "%s: template ", line);
2395 pte (&x->tm);
2396 fprintf (stdout, " address: base %s index %s scale %x\n",
2397 x->base_reg ? x->base_reg->reg_name : "none",
2398 x->index_reg ? x->index_reg->reg_name : "none",
2399 x->log2_scale_factor);
2400 fprintf (stdout, " modrm: mode %x reg %x reg/mem %x\n",
2401 x->rm.mode, x->rm.reg, x->rm.regmem);
2402 fprintf (stdout, " sib: base %x index %x scale %x\n",
2403 x->sib.base, x->sib.index, x->sib.scale);
2404 fprintf (stdout, " rex: 64bit %x extX %x extY %x extZ %x\n",
2405 (x->rex & REX_W) != 0,
2406 (x->rex & REX_R) != 0,
2407 (x->rex & REX_X) != 0,
2408 (x->rex & REX_B) != 0);
2409 for (j = 0; j < x->operands; j++)
2411 fprintf (stdout, " #%d: ", j + 1);
2412 pt (x->types[j]);
2413 fprintf (stdout, "\n");
2414 if (x->types[j].bitfield.reg8
2415 || x->types[j].bitfield.reg16
2416 || x->types[j].bitfield.reg32
2417 || x->types[j].bitfield.reg64
2418 || x->types[j].bitfield.regmmx
2419 || x->types[j].bitfield.regxmm
2420 || x->types[j].bitfield.regymm
2421 || x->types[j].bitfield.sreg2
2422 || x->types[j].bitfield.sreg3
2423 || x->types[j].bitfield.control
2424 || x->types[j].bitfield.debug
2425 || x->types[j].bitfield.test)
2426 fprintf (stdout, "%s\n", x->op[j].regs->reg_name);
2427 if (operand_type_check (x->types[j], imm))
2428 pe (x->op[j].imms);
2429 if (operand_type_check (x->types[j], disp))
2430 pe (x->op[j].disps);
2434 static void
2435 pte (insn_template *t)
2437 unsigned int j;
2438 fprintf (stdout, " %d operands ", t->operands);
2439 fprintf (stdout, "opcode %x ", t->base_opcode);
2440 if (t->extension_opcode != None)
2441 fprintf (stdout, "ext %x ", t->extension_opcode);
2442 if (t->opcode_modifier.d)
2443 fprintf (stdout, "D");
2444 if (t->opcode_modifier.w)
2445 fprintf (stdout, "W");
2446 fprintf (stdout, "\n");
2447 for (j = 0; j < t->operands; j++)
2449 fprintf (stdout, " #%d type ", j + 1);
2450 pt (t->operand_types[j]);
2451 fprintf (stdout, "\n");
2455 static void
2456 pe (expressionS *e)
2458 fprintf (stdout, " operation %d\n", e->X_op);
2459 fprintf (stdout, " add_number %ld (%lx)\n",
2460 (long) e->X_add_number, (long) e->X_add_number);
2461 if (e->X_add_symbol)
2463 fprintf (stdout, " add_symbol ");
2464 ps (e->X_add_symbol);
2465 fprintf (stdout, "\n");
2467 if (e->X_op_symbol)
2469 fprintf (stdout, " op_symbol ");
2470 ps (e->X_op_symbol);
2471 fprintf (stdout, "\n");
2475 static void
2476 ps (symbolS *s)
2478 fprintf (stdout, "%s type %s%s",
2479 S_GET_NAME (s),
2480 S_IS_EXTERNAL (s) ? "EXTERNAL " : "",
2481 segment_name (S_GET_SEGMENT (s)));
2484 static struct type_name
2486 i386_operand_type mask;
2487 const char *name;
2489 const type_names[] =
2491 { OPERAND_TYPE_REG8, "r8" },
2492 { OPERAND_TYPE_REG16, "r16" },
2493 { OPERAND_TYPE_REG32, "r32" },
2494 { OPERAND_TYPE_REG64, "r64" },
2495 { OPERAND_TYPE_IMM8, "i8" },
2496 { OPERAND_TYPE_IMM8, "i8s" },
2497 { OPERAND_TYPE_IMM16, "i16" },
2498 { OPERAND_TYPE_IMM32, "i32" },
2499 { OPERAND_TYPE_IMM32S, "i32s" },
2500 { OPERAND_TYPE_IMM64, "i64" },
2501 { OPERAND_TYPE_IMM1, "i1" },
2502 { OPERAND_TYPE_BASEINDEX, "BaseIndex" },
2503 { OPERAND_TYPE_DISP8, "d8" },
2504 { OPERAND_TYPE_DISP16, "d16" },
2505 { OPERAND_TYPE_DISP32, "d32" },
2506 { OPERAND_TYPE_DISP32S, "d32s" },
2507 { OPERAND_TYPE_DISP64, "d64" },
2508 { OPERAND_TYPE_INOUTPORTREG, "InOutPortReg" },
2509 { OPERAND_TYPE_SHIFTCOUNT, "ShiftCount" },
2510 { OPERAND_TYPE_CONTROL, "control reg" },
2511 { OPERAND_TYPE_TEST, "test reg" },
2512 { OPERAND_TYPE_DEBUG, "debug reg" },
2513 { OPERAND_TYPE_FLOATREG, "FReg" },
2514 { OPERAND_TYPE_FLOATACC, "FAcc" },
2515 { OPERAND_TYPE_SREG2, "SReg2" },
2516 { OPERAND_TYPE_SREG3, "SReg3" },
2517 { OPERAND_TYPE_ACC, "Acc" },
2518 { OPERAND_TYPE_JUMPABSOLUTE, "Jump Absolute" },
2519 { OPERAND_TYPE_REGMMX, "rMMX" },
2520 { OPERAND_TYPE_REGXMM, "rXMM" },
2521 { OPERAND_TYPE_REGYMM, "rYMM" },
2522 { OPERAND_TYPE_ESSEG, "es" },
2525 static void
2526 pt (i386_operand_type t)
2528 unsigned int j;
2529 i386_operand_type a;
2531 for (j = 0; j < ARRAY_SIZE (type_names); j++)
2533 a = operand_type_and (t, type_names[j].mask);
2534 if (!operand_type_all_zero (&a))
2535 fprintf (stdout, "%s, ", type_names[j].name);
2537 fflush (stdout);
2540 #endif /* DEBUG386 */
2542 static bfd_reloc_code_real_type
2543 reloc (unsigned int size,
2544 int pcrel,
2545 int sign,
2546 bfd_reloc_code_real_type other)
2548 if (other != NO_RELOC)
2550 reloc_howto_type *rel;
2552 if (size == 8)
2553 switch (other)
2555 case BFD_RELOC_X86_64_GOT32:
2556 return BFD_RELOC_X86_64_GOT64;
2557 break;
2558 case BFD_RELOC_X86_64_PLTOFF64:
2559 return BFD_RELOC_X86_64_PLTOFF64;
2560 break;
2561 case BFD_RELOC_X86_64_GOTPC32:
2562 other = BFD_RELOC_X86_64_GOTPC64;
2563 break;
2564 case BFD_RELOC_X86_64_GOTPCREL:
2565 other = BFD_RELOC_X86_64_GOTPCREL64;
2566 break;
2567 case BFD_RELOC_X86_64_TPOFF32:
2568 other = BFD_RELOC_X86_64_TPOFF64;
2569 break;
2570 case BFD_RELOC_X86_64_DTPOFF32:
2571 other = BFD_RELOC_X86_64_DTPOFF64;
2572 break;
2573 default:
2574 break;
2577 /* Sign-checking 4-byte relocations in 16-/32-bit code is pointless. */
2578 if (size == 4 && flag_code != CODE_64BIT)
2579 sign = -1;
2581 rel = bfd_reloc_type_lookup (stdoutput, other);
2582 if (!rel)
2583 as_bad (_("unknown relocation (%u)"), other);
2584 else if (size != bfd_get_reloc_size (rel))
2585 as_bad (_("%u-byte relocation cannot be applied to %u-byte field"),
2586 bfd_get_reloc_size (rel),
2587 size);
2588 else if (pcrel && !rel->pc_relative)
2589 as_bad (_("non-pc-relative relocation for pc-relative field"));
2590 else if ((rel->complain_on_overflow == complain_overflow_signed
2591 && !sign)
2592 || (rel->complain_on_overflow == complain_overflow_unsigned
2593 && sign > 0))
2594 as_bad (_("relocated field and relocation type differ in signedness"));
2595 else
2596 return other;
2597 return NO_RELOC;
2600 if (pcrel)
2602 if (!sign)
2603 as_bad (_("there are no unsigned pc-relative relocations"));
2604 switch (size)
2606 case 1: return BFD_RELOC_8_PCREL;
2607 case 2: return BFD_RELOC_16_PCREL;
2608 case 4: return BFD_RELOC_32_PCREL;
2609 case 8: return BFD_RELOC_64_PCREL;
2611 as_bad (_("cannot do %u byte pc-relative relocation"), size);
2613 else
2615 if (sign > 0)
2616 switch (size)
2618 case 4: return BFD_RELOC_X86_64_32S;
2620 else
2621 switch (size)
2623 case 1: return BFD_RELOC_8;
2624 case 2: return BFD_RELOC_16;
2625 case 4: return BFD_RELOC_32;
2626 case 8: return BFD_RELOC_64;
2628 as_bad (_("cannot do %s %u byte relocation"),
2629 sign > 0 ? "signed" : "unsigned", size);
2632 return NO_RELOC;
2635 /* Here we decide which fixups can be adjusted to make them relative to
2636 the beginning of the section instead of the symbol. Basically we need
2637 to make sure that the dynamic relocations are done correctly, so in
2638 some cases we force the original symbol to be used. */
2641 tc_i386_fix_adjustable (fixS *fixP ATTRIBUTE_UNUSED)
2643 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2644 if (!IS_ELF)
2645 return 1;
2647 /* Don't adjust pc-relative references to merge sections in 64-bit
2648 mode. */
2649 if (use_rela_relocations
2650 && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0
2651 && fixP->fx_pcrel)
2652 return 0;
2654 /* The x86_64 GOTPCREL are represented as 32bit PCrel relocations
2655 and changed later by validate_fix. */
2656 if (GOT_symbol && fixP->fx_subsy == GOT_symbol
2657 && fixP->fx_r_type == BFD_RELOC_32_PCREL)
2658 return 0;
2660 /* adjust_reloc_syms doesn't know about the GOT. */
2661 if (fixP->fx_r_type == BFD_RELOC_386_GOTOFF
2662 || fixP->fx_r_type == BFD_RELOC_386_PLT32
2663 || fixP->fx_r_type == BFD_RELOC_386_GOT32
2664 || fixP->fx_r_type == BFD_RELOC_386_TLS_GD
2665 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDM
2666 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDO_32
2667 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE_32
2668 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE
2669 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTIE
2670 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE_32
2671 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE
2672 || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTDESC
2673 || fixP->fx_r_type == BFD_RELOC_386_TLS_DESC_CALL
2674 || fixP->fx_r_type == BFD_RELOC_X86_64_PLT32
2675 || fixP->fx_r_type == BFD_RELOC_X86_64_GOT32
2676 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCREL
2677 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSGD
2678 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSLD
2679 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF32
2680 || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF64
2681 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTTPOFF
2682 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF32
2683 || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF64
2684 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTOFF64
2685 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPC32_TLSDESC
2686 || fixP->fx_r_type == BFD_RELOC_X86_64_TLSDESC_CALL
2687 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
2688 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
2689 return 0;
2690 #endif
2691 return 1;
2694 static int
2695 intel_float_operand (const char *mnemonic)
2697 /* Note that the value returned is meaningful only for opcodes with (memory)
2698 operands, hence the code here is free to improperly handle opcodes that
2699 have no operands (for better performance and smaller code). */
2701 if (mnemonic[0] != 'f')
2702 return 0; /* non-math */
2704 switch (mnemonic[1])
2706 /* fclex, fdecstp, fdisi, femms, feni, fincstp, finit, fsetpm, and
2707 the fs segment override prefix not currently handled because no
2708 call path can make opcodes without operands get here */
2709 case 'i':
2710 return 2 /* integer op */;
2711 case 'l':
2712 if (mnemonic[2] == 'd' && (mnemonic[3] == 'c' || mnemonic[3] == 'e'))
2713 return 3; /* fldcw/fldenv */
2714 break;
2715 case 'n':
2716 if (mnemonic[2] != 'o' /* fnop */)
2717 return 3; /* non-waiting control op */
2718 break;
2719 case 'r':
2720 if (mnemonic[2] == 's')
2721 return 3; /* frstor/frstpm */
2722 break;
2723 case 's':
2724 if (mnemonic[2] == 'a')
2725 return 3; /* fsave */
2726 if (mnemonic[2] == 't')
2728 switch (mnemonic[3])
2730 case 'c': /* fstcw */
2731 case 'd': /* fstdw */
2732 case 'e': /* fstenv */
2733 case 's': /* fsts[gw] */
2734 return 3;
2737 break;
2738 case 'x':
2739 if (mnemonic[2] == 'r' || mnemonic[2] == 's')
2740 return 0; /* fxsave/fxrstor are not really math ops */
2741 break;
2744 return 1;
2747 /* Build the VEX prefix. */
2749 static void
2750 build_vex_prefix (const insn_template *t)
2752 unsigned int register_specifier;
2753 unsigned int implied_prefix;
2754 unsigned int vector_length;
2756 /* Check register specifier. */
2757 if (i.vex.register_specifier)
2759 register_specifier = i.vex.register_specifier->reg_num;
2760 if ((i.vex.register_specifier->reg_flags & RegRex))
2761 register_specifier += 8;
2762 register_specifier = ~register_specifier & 0xf;
2764 else
2765 register_specifier = 0xf;
2767 /* Use 2-byte VEX prefix by swappping destination and source
2768 operand. */
2769 if (!i.swap_operand
2770 && i.operands == i.reg_operands
2771 && i.tm.opcode_modifier.vexopcode == VEX0F
2772 && i.tm.opcode_modifier.s
2773 && i.rex == REX_B)
2775 unsigned int xchg = i.operands - 1;
2776 union i386_op temp_op;
2777 i386_operand_type temp_type;
2779 temp_type = i.types[xchg];
2780 i.types[xchg] = i.types[0];
2781 i.types[0] = temp_type;
2782 temp_op = i.op[xchg];
2783 i.op[xchg] = i.op[0];
2784 i.op[0] = temp_op;
2786 gas_assert (i.rm.mode == 3);
2788 i.rex = REX_R;
2789 xchg = i.rm.regmem;
2790 i.rm.regmem = i.rm.reg;
2791 i.rm.reg = xchg;
2793 /* Use the next insn. */
2794 i.tm = t[1];
2797 if (i.tm.opcode_modifier.vex == VEXScalar)
2798 vector_length = avxscalar;
2799 else
2800 vector_length = i.tm.opcode_modifier.vex == VEX256 ? 1 : 0;
2802 switch ((i.tm.base_opcode >> 8) & 0xff)
2804 case 0:
2805 implied_prefix = 0;
2806 break;
2807 case DATA_PREFIX_OPCODE:
2808 implied_prefix = 1;
2809 break;
2810 case REPE_PREFIX_OPCODE:
2811 implied_prefix = 2;
2812 break;
2813 case REPNE_PREFIX_OPCODE:
2814 implied_prefix = 3;
2815 break;
2816 default:
2817 abort ();
2820 /* Use 2-byte VEX prefix if possible. */
2821 if (i.tm.opcode_modifier.vexopcode == VEX0F
2822 && i.tm.opcode_modifier.vexw != VEXW1
2823 && (i.rex & (REX_W | REX_X | REX_B)) == 0)
2825 /* 2-byte VEX prefix. */
2826 unsigned int r;
2828 i.vex.length = 2;
2829 i.vex.bytes[0] = 0xc5;
2831 /* Check the REX.R bit. */
2832 r = (i.rex & REX_R) ? 0 : 1;
2833 i.vex.bytes[1] = (r << 7
2834 | register_specifier << 3
2835 | vector_length << 2
2836 | implied_prefix);
2838 else
2840 /* 3-byte VEX prefix. */
2841 unsigned int m, w;
2843 i.vex.length = 3;
2845 switch (i.tm.opcode_modifier.vexopcode)
2847 case VEX0F:
2848 m = 0x1;
2849 i.vex.bytes[0] = 0xc4;
2850 break;
2851 case VEX0F38:
2852 m = 0x2;
2853 i.vex.bytes[0] = 0xc4;
2854 break;
2855 case VEX0F3A:
2856 m = 0x3;
2857 i.vex.bytes[0] = 0xc4;
2858 break;
2859 case XOP08:
2860 m = 0x8;
2861 i.vex.bytes[0] = 0x8f;
2862 break;
2863 case XOP09:
2864 m = 0x9;
2865 i.vex.bytes[0] = 0x8f;
2866 break;
2867 case XOP0A:
2868 m = 0xa;
2869 i.vex.bytes[0] = 0x8f;
2870 break;
2871 default:
2872 abort ();
2875 /* The high 3 bits of the second VEX byte are 1's compliment
2876 of RXB bits from REX. */
2877 i.vex.bytes[1] = (~i.rex & 0x7) << 5 | m;
2879 /* Check the REX.W bit. */
2880 w = (i.rex & REX_W) ? 1 : 0;
2881 if (i.tm.opcode_modifier.vexw)
2883 if (w)
2884 abort ();
2886 if (i.tm.opcode_modifier.vexw == VEXW1)
2887 w = 1;
2890 i.vex.bytes[2] = (w << 7
2891 | register_specifier << 3
2892 | vector_length << 2
2893 | implied_prefix);
2897 static void
2898 process_immext (void)
2900 expressionS *exp;
2902 if (i.tm.cpu_flags.bitfield.cpusse3 && i.operands > 0)
2904 /* SSE3 Instructions have the fixed operands with an opcode
2905 suffix which is coded in the same place as an 8-bit immediate
2906 field would be. Here we check those operands and remove them
2907 afterwards. */
2908 unsigned int x;
2910 for (x = 0; x < i.operands; x++)
2911 if (i.op[x].regs->reg_num != x)
2912 as_bad (_("can't use register '%s%s' as operand %d in '%s'."),
2913 register_prefix, i.op[x].regs->reg_name, x + 1,
2914 i.tm.name);
2916 i.operands = 0;
2919 /* These AMD 3DNow! and SSE2 instructions have an opcode suffix
2920 which is coded in the same place as an 8-bit immediate field
2921 would be. Here we fake an 8-bit immediate operand from the
2922 opcode suffix stored in tm.extension_opcode.
2924 AVX instructions also use this encoding, for some of
2925 3 argument instructions. */
2927 gas_assert (i.imm_operands == 0
2928 && (i.operands <= 2
2929 || (i.tm.opcode_modifier.vex
2930 && i.operands <= 4)));
2932 exp = &im_expressions[i.imm_operands++];
2933 i.op[i.operands].imms = exp;
2934 i.types[i.operands] = imm8;
2935 i.operands++;
2936 exp->X_op = O_constant;
2937 exp->X_add_number = i.tm.extension_opcode;
2938 i.tm.extension_opcode = None;
2941 /* This is the guts of the machine-dependent assembler. LINE points to a
2942 machine dependent instruction. This function is supposed to emit
2943 the frags/bytes it assembles to. */
2945 void
2946 md_assemble (char *line)
2948 unsigned int j;
2949 char mnemonic[MAX_MNEM_SIZE];
2950 const insn_template *t;
2952 /* Initialize globals. */
2953 memset (&i, '\0', sizeof (i));
2954 for (j = 0; j < MAX_OPERANDS; j++)
2955 i.reloc[j] = NO_RELOC;
2956 memset (disp_expressions, '\0', sizeof (disp_expressions));
2957 memset (im_expressions, '\0', sizeof (im_expressions));
2958 save_stack_p = save_stack;
2960 /* First parse an instruction mnemonic & call i386_operand for the operands.
2961 We assume that the scrubber has arranged it so that line[0] is the valid
2962 start of a (possibly prefixed) mnemonic. */
2964 line = parse_insn (line, mnemonic);
2965 if (line == NULL)
2966 return;
2968 line = parse_operands (line, mnemonic);
2969 this_operand = -1;
2970 if (line == NULL)
2971 return;
2973 /* Now we've parsed the mnemonic into a set of templates, and have the
2974 operands at hand. */
2976 /* All intel opcodes have reversed operands except for "bound" and
2977 "enter". We also don't reverse intersegment "jmp" and "call"
2978 instructions with 2 immediate operands so that the immediate segment
2979 precedes the offset, as it does when in AT&T mode. */
2980 if (intel_syntax
2981 && i.operands > 1
2982 && (strcmp (mnemonic, "bound") != 0)
2983 && (strcmp (mnemonic, "invlpga") != 0)
2984 && !(operand_type_check (i.types[0], imm)
2985 && operand_type_check (i.types[1], imm)))
2986 swap_operands ();
2988 /* The order of the immediates should be reversed
2989 for 2 immediates extrq and insertq instructions */
2990 if (i.imm_operands == 2
2991 && (strcmp (mnemonic, "extrq") == 0
2992 || strcmp (mnemonic, "insertq") == 0))
2993 swap_2_operands (0, 1);
2995 if (i.imm_operands)
2996 optimize_imm ();
2998 /* Don't optimize displacement for movabs since it only takes 64bit
2999 displacement. */
3000 if (i.disp_operands
3001 && !i.disp32_encoding
3002 && (flag_code != CODE_64BIT
3003 || strcmp (mnemonic, "movabs") != 0))
3004 optimize_disp ();
3006 /* Next, we find a template that matches the given insn,
3007 making sure the overlap of the given operands types is consistent
3008 with the template operand types. */
3010 if (!(t = match_template ()))
3011 return;
3013 if (sse_check != sse_check_none
3014 && !i.tm.opcode_modifier.noavx
3015 && (i.tm.cpu_flags.bitfield.cpusse
3016 || i.tm.cpu_flags.bitfield.cpusse2
3017 || i.tm.cpu_flags.bitfield.cpusse3
3018 || i.tm.cpu_flags.bitfield.cpussse3
3019 || i.tm.cpu_flags.bitfield.cpusse4_1
3020 || i.tm.cpu_flags.bitfield.cpusse4_2))
3022 (sse_check == sse_check_warning
3023 ? as_warn
3024 : as_bad) (_("SSE instruction `%s' is used"), i.tm.name);
3027 /* Zap movzx and movsx suffix. The suffix has been set from
3028 "word ptr" or "byte ptr" on the source operand in Intel syntax
3029 or extracted from mnemonic in AT&T syntax. But we'll use
3030 the destination register to choose the suffix for encoding. */
3031 if ((i.tm.base_opcode & ~9) == 0x0fb6)
3033 /* In Intel syntax, there must be a suffix. In AT&T syntax, if
3034 there is no suffix, the default will be byte extension. */
3035 if (i.reg_operands != 2
3036 && !i.suffix
3037 && intel_syntax)
3038 as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
3040 i.suffix = 0;
3043 if (i.tm.opcode_modifier.fwait)
3044 if (!add_prefix (FWAIT_OPCODE))
3045 return;
3047 /* Check for lock without a lockable instruction. Destination operand
3048 must be memory unless it is xchg (0x86). */
3049 if (i.prefix[LOCK_PREFIX]
3050 && (!i.tm.opcode_modifier.islockable
3051 || i.mem_operands == 0
3052 || (i.tm.base_opcode != 0x86
3053 && !operand_type_check (i.types[i.operands - 1], anymem))))
3055 as_bad (_("expecting lockable instruction after `lock'"));
3056 return;
3059 /* Check string instruction segment overrides. */
3060 if (i.tm.opcode_modifier.isstring && i.mem_operands != 0)
3062 if (!check_string ())
3063 return;
3064 i.disp_operands = 0;
3067 if (!process_suffix ())
3068 return;
3070 /* Update operand types. */
3071 for (j = 0; j < i.operands; j++)
3072 i.types[j] = operand_type_and (i.types[j], i.tm.operand_types[j]);
3074 /* Make still unresolved immediate matches conform to size of immediate
3075 given in i.suffix. */
3076 if (!finalize_imm ())
3077 return;
3079 if (i.types[0].bitfield.imm1)
3080 i.imm_operands = 0; /* kludge for shift insns. */
3082 /* We only need to check those implicit registers for instructions
3083 with 3 operands or less. */
3084 if (i.operands <= 3)
3085 for (j = 0; j < i.operands; j++)
3086 if (i.types[j].bitfield.inoutportreg
3087 || i.types[j].bitfield.shiftcount
3088 || i.types[j].bitfield.acc
3089 || i.types[j].bitfield.floatacc)
3090 i.reg_operands--;
3092 /* ImmExt should be processed after SSE2AVX. */
3093 if (!i.tm.opcode_modifier.sse2avx
3094 && i.tm.opcode_modifier.immext)
3095 process_immext ();
3097 /* For insns with operands there are more diddles to do to the opcode. */
3098 if (i.operands)
3100 if (!process_operands ())
3101 return;
3103 else if (!quiet_warnings && i.tm.opcode_modifier.ugh)
3105 /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. */
3106 as_warn (_("translating to `%sp'"), i.tm.name);
3109 if (i.tm.opcode_modifier.vex)
3110 build_vex_prefix (t);
3112 /* Handle conversion of 'int $3' --> special int3 insn. XOP or FMA4
3113 instructions may define INT_OPCODE as well, so avoid this corner
3114 case for those instructions that use MODRM. */
3115 if (i.tm.base_opcode == INT_OPCODE
3116 && !i.tm.opcode_modifier.modrm
3117 && i.op[0].imms->X_add_number == 3)
3119 i.tm.base_opcode = INT3_OPCODE;
3120 i.imm_operands = 0;
3123 if ((i.tm.opcode_modifier.jump
3124 || i.tm.opcode_modifier.jumpbyte
3125 || i.tm.opcode_modifier.jumpdword)
3126 && i.op[0].disps->X_op == O_constant)
3128 /* Convert "jmp constant" (and "call constant") to a jump (call) to
3129 the absolute address given by the constant. Since ix86 jumps and
3130 calls are pc relative, we need to generate a reloc. */
3131 i.op[0].disps->X_add_symbol = &abs_symbol;
3132 i.op[0].disps->X_op = O_symbol;
3135 if (i.tm.opcode_modifier.rex64)
3136 i.rex |= REX_W;
3138 /* For 8 bit registers we need an empty rex prefix. Also if the
3139 instruction already has a prefix, we need to convert old
3140 registers to new ones. */
3142 if ((i.types[0].bitfield.reg8
3143 && (i.op[0].regs->reg_flags & RegRex64) != 0)
3144 || (i.types[1].bitfield.reg8
3145 && (i.op[1].regs->reg_flags & RegRex64) != 0)
3146 || ((i.types[0].bitfield.reg8
3147 || i.types[1].bitfield.reg8)
3148 && i.rex != 0))
3150 int x;
3152 i.rex |= REX_OPCODE;
3153 for (x = 0; x < 2; x++)
3155 /* Look for 8 bit operand that uses old registers. */
3156 if (i.types[x].bitfield.reg8
3157 && (i.op[x].regs->reg_flags & RegRex64) == 0)
3159 /* In case it is "hi" register, give up. */
3160 if (i.op[x].regs->reg_num > 3)
3161 as_bad (_("can't encode register '%s%s' in an "
3162 "instruction requiring REX prefix."),
3163 register_prefix, i.op[x].regs->reg_name);
3165 /* Otherwise it is equivalent to the extended register.
3166 Since the encoding doesn't change this is merely
3167 cosmetic cleanup for debug output. */
3169 i.op[x].regs = i.op[x].regs + 8;
3174 if (i.rex != 0)
3175 add_prefix (REX_OPCODE | i.rex);
3177 /* We are ready to output the insn. */
3178 output_insn ();
3181 static char *
3182 parse_insn (char *line, char *mnemonic)
3184 char *l = line;
3185 char *token_start = l;
3186 char *mnem_p;
3187 int supported;
3188 const insn_template *t;
3189 char *dot_p = NULL;
3191 /* Non-zero if we found a prefix only acceptable with string insns. */
3192 const char *expecting_string_instruction = NULL;
3194 while (1)
3196 mnem_p = mnemonic;
3197 while ((*mnem_p = mnemonic_chars[(unsigned char) *l]) != 0)
3199 if (*mnem_p == '.')
3200 dot_p = mnem_p;
3201 mnem_p++;
3202 if (mnem_p >= mnemonic + MAX_MNEM_SIZE)
3204 as_bad (_("no such instruction: `%s'"), token_start);
3205 return NULL;
3207 l++;
3209 if (!is_space_char (*l)
3210 && *l != END_OF_INSN
3211 && (intel_syntax
3212 || (*l != PREFIX_SEPARATOR
3213 && *l != ',')))
3215 as_bad (_("invalid character %s in mnemonic"),
3216 output_invalid (*l));
3217 return NULL;
3219 if (token_start == l)
3221 if (!intel_syntax && *l == PREFIX_SEPARATOR)
3222 as_bad (_("expecting prefix; got nothing"));
3223 else
3224 as_bad (_("expecting mnemonic; got nothing"));
3225 return NULL;
3228 /* Look up instruction (or prefix) via hash table. */
3229 current_templates = (const templates *) hash_find (op_hash, mnemonic);
3231 if (*l != END_OF_INSN
3232 && (!is_space_char (*l) || l[1] != END_OF_INSN)
3233 && current_templates
3234 && current_templates->start->opcode_modifier.isprefix)
3236 if (!cpu_flags_check_cpu64 (current_templates->start->cpu_flags))
3238 as_bad ((flag_code != CODE_64BIT
3239 ? _("`%s' is only supported in 64-bit mode")
3240 : _("`%s' is not supported in 64-bit mode")),
3241 current_templates->start->name);
3242 return NULL;
3244 /* If we are in 16-bit mode, do not allow addr16 or data16.
3245 Similarly, in 32-bit mode, do not allow addr32 or data32. */
3246 if ((current_templates->start->opcode_modifier.size16
3247 || current_templates->start->opcode_modifier.size32)
3248 && flag_code != CODE_64BIT
3249 && (current_templates->start->opcode_modifier.size32
3250 ^ (flag_code == CODE_16BIT)))
3252 as_bad (_("redundant %s prefix"),
3253 current_templates->start->name);
3254 return NULL;
3256 /* Add prefix, checking for repeated prefixes. */
3257 switch (add_prefix (current_templates->start->base_opcode))
3259 case PREFIX_EXIST:
3260 return NULL;
3261 case PREFIX_REP:
3262 expecting_string_instruction = current_templates->start->name;
3263 break;
3264 default:
3265 break;
3267 /* Skip past PREFIX_SEPARATOR and reset token_start. */
3268 token_start = ++l;
3270 else
3271 break;
3274 if (!current_templates)
3276 /* Check if we should swap operand or force 32bit displacement in
3277 encoding. */
3278 if (mnem_p - 2 == dot_p && dot_p[1] == 's')
3279 i.swap_operand = 1;
3280 else if (mnem_p - 4 == dot_p
3281 && dot_p[1] == 'd'
3282 && dot_p[2] == '3'
3283 && dot_p[3] == '2')
3284 i.disp32_encoding = 1;
3285 else
3286 goto check_suffix;
3287 mnem_p = dot_p;
3288 *dot_p = '\0';
3289 current_templates = (const templates *) hash_find (op_hash, mnemonic);
3292 if (!current_templates)
3294 check_suffix:
3295 /* See if we can get a match by trimming off a suffix. */
3296 switch (mnem_p[-1])
3298 case WORD_MNEM_SUFFIX:
3299 if (intel_syntax && (intel_float_operand (mnemonic) & 2))
3300 i.suffix = SHORT_MNEM_SUFFIX;
3301 else
3302 case BYTE_MNEM_SUFFIX:
3303 case QWORD_MNEM_SUFFIX:
3304 i.suffix = mnem_p[-1];
3305 mnem_p[-1] = '\0';
3306 current_templates = (const templates *) hash_find (op_hash,
3307 mnemonic);
3308 break;
3309 case SHORT_MNEM_SUFFIX:
3310 case LONG_MNEM_SUFFIX:
3311 if (!intel_syntax)
3313 i.suffix = mnem_p[-1];
3314 mnem_p[-1] = '\0';
3315 current_templates = (const templates *) hash_find (op_hash,
3316 mnemonic);
3318 break;
3320 /* Intel Syntax. */
3321 case 'd':
3322 if (intel_syntax)
3324 if (intel_float_operand (mnemonic) == 1)
3325 i.suffix = SHORT_MNEM_SUFFIX;
3326 else
3327 i.suffix = LONG_MNEM_SUFFIX;
3328 mnem_p[-1] = '\0';
3329 current_templates = (const templates *) hash_find (op_hash,
3330 mnemonic);
3332 break;
3334 if (!current_templates)
3336 as_bad (_("no such instruction: `%s'"), token_start);
3337 return NULL;
3341 if (current_templates->start->opcode_modifier.jump
3342 || current_templates->start->opcode_modifier.jumpbyte)
3344 /* Check for a branch hint. We allow ",pt" and ",pn" for
3345 predict taken and predict not taken respectively.
3346 I'm not sure that branch hints actually do anything on loop
3347 and jcxz insns (JumpByte) for current Pentium4 chips. They
3348 may work in the future and it doesn't hurt to accept them
3349 now. */
3350 if (l[0] == ',' && l[1] == 'p')
3352 if (l[2] == 't')
3354 if (!add_prefix (DS_PREFIX_OPCODE))
3355 return NULL;
3356 l += 3;
3358 else if (l[2] == 'n')
3360 if (!add_prefix (CS_PREFIX_OPCODE))
3361 return NULL;
3362 l += 3;
3366 /* Any other comma loses. */
3367 if (*l == ',')
3369 as_bad (_("invalid character %s in mnemonic"),
3370 output_invalid (*l));
3371 return NULL;
3374 /* Check if instruction is supported on specified architecture. */
3375 supported = 0;
3376 for (t = current_templates->start; t < current_templates->end; ++t)
3378 supported |= cpu_flags_match (t);
3379 if (supported == CPU_FLAGS_PERFECT_MATCH)
3380 goto skip;
3383 if (!(supported & CPU_FLAGS_64BIT_MATCH))
3385 as_bad (flag_code == CODE_64BIT
3386 ? _("`%s' is not supported in 64-bit mode")
3387 : _("`%s' is only supported in 64-bit mode"),
3388 current_templates->start->name);
3389 return NULL;
3391 if (supported != CPU_FLAGS_PERFECT_MATCH)
3393 as_bad (_("`%s' is not supported on `%s%s'"),
3394 current_templates->start->name,
3395 cpu_arch_name ? cpu_arch_name : default_arch,
3396 cpu_sub_arch_name ? cpu_sub_arch_name : "");
3397 return NULL;
3400 skip:
3401 if (!cpu_arch_flags.bitfield.cpui386
3402 && (flag_code != CODE_16BIT))
3404 as_warn (_("use .code16 to ensure correct addressing mode"));
3407 /* Check for rep/repne without a string instruction. */
3408 if (expecting_string_instruction)
3410 static templates override;
3412 for (t = current_templates->start; t < current_templates->end; ++t)
3413 if (t->opcode_modifier.isstring)
3414 break;
3415 if (t >= current_templates->end)
3417 as_bad (_("expecting string instruction after `%s'"),
3418 expecting_string_instruction);
3419 return NULL;
3421 for (override.start = t; t < current_templates->end; ++t)
3422 if (!t->opcode_modifier.isstring)
3423 break;
3424 override.end = t;
3425 current_templates = &override;
3428 return l;
3431 static char *
3432 parse_operands (char *l, const char *mnemonic)
3434 char *token_start;
3436 /* 1 if operand is pending after ','. */
3437 unsigned int expecting_operand = 0;
3439 /* Non-zero if operand parens not balanced. */
3440 unsigned int paren_not_balanced;
3442 while (*l != END_OF_INSN)
3444 /* Skip optional white space before operand. */
3445 if (is_space_char (*l))
3446 ++l;
3447 if (!is_operand_char (*l) && *l != END_OF_INSN)
3449 as_bad (_("invalid character %s before operand %d"),
3450 output_invalid (*l),
3451 i.operands + 1);
3452 return NULL;
3454 token_start = l; /* after white space */
3455 paren_not_balanced = 0;
3456 while (paren_not_balanced || *l != ',')
3458 if (*l == END_OF_INSN)
3460 if (paren_not_balanced)
3462 if (!intel_syntax)
3463 as_bad (_("unbalanced parenthesis in operand %d."),
3464 i.operands + 1);
3465 else
3466 as_bad (_("unbalanced brackets in operand %d."),
3467 i.operands + 1);
3468 return NULL;
3470 else
3471 break; /* we are done */
3473 else if (!is_operand_char (*l) && !is_space_char (*l))
3475 as_bad (_("invalid character %s in operand %d"),
3476 output_invalid (*l),
3477 i.operands + 1);
3478 return NULL;
3480 if (!intel_syntax)
3482 if (*l == '(')
3483 ++paren_not_balanced;
3484 if (*l == ')')
3485 --paren_not_balanced;
3487 else
3489 if (*l == '[')
3490 ++paren_not_balanced;
3491 if (*l == ']')
3492 --paren_not_balanced;
3494 l++;
3496 if (l != token_start)
3497 { /* Yes, we've read in another operand. */
3498 unsigned int operand_ok;
3499 this_operand = i.operands++;
3500 i.types[this_operand].bitfield.unspecified = 1;
3501 if (i.operands > MAX_OPERANDS)
3503 as_bad (_("spurious operands; (%d operands/instruction max)"),
3504 MAX_OPERANDS);
3505 return NULL;
3507 /* Now parse operand adding info to 'i' as we go along. */
3508 END_STRING_AND_SAVE (l);
3510 if (intel_syntax)
3511 operand_ok =
3512 i386_intel_operand (token_start,
3513 intel_float_operand (mnemonic));
3514 else
3515 operand_ok = i386_att_operand (token_start);
3517 RESTORE_END_STRING (l);
3518 if (!operand_ok)
3519 return NULL;
3521 else
3523 if (expecting_operand)
3525 expecting_operand_after_comma:
3526 as_bad (_("expecting operand after ','; got nothing"));
3527 return NULL;
3529 if (*l == ',')
3531 as_bad (_("expecting operand before ','; got nothing"));
3532 return NULL;
3536 /* Now *l must be either ',' or END_OF_INSN. */
3537 if (*l == ',')
3539 if (*++l == END_OF_INSN)
3541 /* Just skip it, if it's \n complain. */
3542 goto expecting_operand_after_comma;
3544 expecting_operand = 1;
3547 return l;
3550 static void
3551 swap_2_operands (int xchg1, int xchg2)
3553 union i386_op temp_op;
3554 i386_operand_type temp_type;
3555 enum bfd_reloc_code_real temp_reloc;
3557 temp_type = i.types[xchg2];
3558 i.types[xchg2] = i.types[xchg1];
3559 i.types[xchg1] = temp_type;
3560 temp_op = i.op[xchg2];
3561 i.op[xchg2] = i.op[xchg1];
3562 i.op[xchg1] = temp_op;
3563 temp_reloc = i.reloc[xchg2];
3564 i.reloc[xchg2] = i.reloc[xchg1];
3565 i.reloc[xchg1] = temp_reloc;
3568 static void
3569 swap_operands (void)
3571 switch (i.operands)
3573 case 5:
3574 case 4:
3575 swap_2_operands (1, i.operands - 2);
3576 case 3:
3577 case 2:
3578 swap_2_operands (0, i.operands - 1);
3579 break;
3580 default:
3581 abort ();
3584 if (i.mem_operands == 2)
3586 const seg_entry *temp_seg;
3587 temp_seg = i.seg[0];
3588 i.seg[0] = i.seg[1];
3589 i.seg[1] = temp_seg;
3593 /* Try to ensure constant immediates are represented in the smallest
3594 opcode possible. */
3595 static void
3596 optimize_imm (void)
3598 char guess_suffix = 0;
3599 int op;
3601 if (i.suffix)
3602 guess_suffix = i.suffix;
3603 else if (i.reg_operands)
3605 /* Figure out a suffix from the last register operand specified.
3606 We can't do this properly yet, ie. excluding InOutPortReg,
3607 but the following works for instructions with immediates.
3608 In any case, we can't set i.suffix yet. */
3609 for (op = i.operands; --op >= 0;)
3610 if (i.types[op].bitfield.reg8)
3612 guess_suffix = BYTE_MNEM_SUFFIX;
3613 break;
3615 else if (i.types[op].bitfield.reg16)
3617 guess_suffix = WORD_MNEM_SUFFIX;
3618 break;
3620 else if (i.types[op].bitfield.reg32)
3622 guess_suffix = LONG_MNEM_SUFFIX;
3623 break;
3625 else if (i.types[op].bitfield.reg64)
3627 guess_suffix = QWORD_MNEM_SUFFIX;
3628 break;
3631 else if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
3632 guess_suffix = WORD_MNEM_SUFFIX;
3634 for (op = i.operands; --op >= 0;)
3635 if (operand_type_check (i.types[op], imm))
3637 switch (i.op[op].imms->X_op)
3639 case O_constant:
3640 /* If a suffix is given, this operand may be shortened. */
3641 switch (guess_suffix)
3643 case LONG_MNEM_SUFFIX:
3644 i.types[op].bitfield.imm32 = 1;
3645 i.types[op].bitfield.imm64 = 1;
3646 break;
3647 case WORD_MNEM_SUFFIX:
3648 i.types[op].bitfield.imm16 = 1;
3649 i.types[op].bitfield.imm32 = 1;
3650 i.types[op].bitfield.imm32s = 1;
3651 i.types[op].bitfield.imm64 = 1;
3652 break;
3653 case BYTE_MNEM_SUFFIX:
3654 i.types[op].bitfield.imm8 = 1;
3655 i.types[op].bitfield.imm8s = 1;
3656 i.types[op].bitfield.imm16 = 1;
3657 i.types[op].bitfield.imm32 = 1;
3658 i.types[op].bitfield.imm32s = 1;
3659 i.types[op].bitfield.imm64 = 1;
3660 break;
3663 /* If this operand is at most 16 bits, convert it
3664 to a signed 16 bit number before trying to see
3665 whether it will fit in an even smaller size.
3666 This allows a 16-bit operand such as $0xffe0 to
3667 be recognised as within Imm8S range. */
3668 if ((i.types[op].bitfield.imm16)
3669 && (i.op[op].imms->X_add_number & ~(offsetT) 0xffff) == 0)
3671 i.op[op].imms->X_add_number =
3672 (((i.op[op].imms->X_add_number & 0xffff) ^ 0x8000) - 0x8000);
3674 if ((i.types[op].bitfield.imm32)
3675 && ((i.op[op].imms->X_add_number & ~(((offsetT) 2 << 31) - 1))
3676 == 0))
3678 i.op[op].imms->X_add_number = ((i.op[op].imms->X_add_number
3679 ^ ((offsetT) 1 << 31))
3680 - ((offsetT) 1 << 31));
3682 i.types[op]
3683 = operand_type_or (i.types[op],
3684 smallest_imm_type (i.op[op].imms->X_add_number));
3686 /* We must avoid matching of Imm32 templates when 64bit
3687 only immediate is available. */
3688 if (guess_suffix == QWORD_MNEM_SUFFIX)
3689 i.types[op].bitfield.imm32 = 0;
3690 break;
3692 case O_absent:
3693 case O_register:
3694 abort ();
3696 /* Symbols and expressions. */
3697 default:
3698 /* Convert symbolic operand to proper sizes for matching, but don't
3699 prevent matching a set of insns that only supports sizes other
3700 than those matching the insn suffix. */
3702 i386_operand_type mask, allowed;
3703 const insn_template *t;
3705 operand_type_set (&mask, 0);
3706 operand_type_set (&allowed, 0);
3708 for (t = current_templates->start;
3709 t < current_templates->end;
3710 ++t)
3711 allowed = operand_type_or (allowed,
3712 t->operand_types[op]);
3713 switch (guess_suffix)
3715 case QWORD_MNEM_SUFFIX:
3716 mask.bitfield.imm64 = 1;
3717 mask.bitfield.imm32s = 1;
3718 break;
3719 case LONG_MNEM_SUFFIX:
3720 mask.bitfield.imm32 = 1;
3721 break;
3722 case WORD_MNEM_SUFFIX:
3723 mask.bitfield.imm16 = 1;
3724 break;
3725 case BYTE_MNEM_SUFFIX:
3726 mask.bitfield.imm8 = 1;
3727 break;
3728 default:
3729 break;
3731 allowed = operand_type_and (mask, allowed);
3732 if (!operand_type_all_zero (&allowed))
3733 i.types[op] = operand_type_and (i.types[op], mask);
3735 break;
3740 /* Try to use the smallest displacement type too. */
3741 static void
3742 optimize_disp (void)
3744 int op;
3746 for (op = i.operands; --op >= 0;)
3747 if (operand_type_check (i.types[op], disp))
3749 if (i.op[op].disps->X_op == O_constant)
3751 offsetT op_disp = i.op[op].disps->X_add_number;
3753 if (i.types[op].bitfield.disp16
3754 && (op_disp & ~(offsetT) 0xffff) == 0)
3756 /* If this operand is at most 16 bits, convert
3757 to a signed 16 bit number and don't use 64bit
3758 displacement. */
3759 op_disp = (((op_disp & 0xffff) ^ 0x8000) - 0x8000);
3760 i.types[op].bitfield.disp64 = 0;
3762 if (i.types[op].bitfield.disp32
3763 && (op_disp & ~(((offsetT) 2 << 31) - 1)) == 0)
3765 /* If this operand is at most 32 bits, convert
3766 to a signed 32 bit number and don't use 64bit
3767 displacement. */
3768 op_disp &= (((offsetT) 2 << 31) - 1);
3769 op_disp = (op_disp ^ ((offsetT) 1 << 31)) - ((addressT) 1 << 31);
3770 i.types[op].bitfield.disp64 = 0;
3772 if (!op_disp && i.types[op].bitfield.baseindex)
3774 i.types[op].bitfield.disp8 = 0;
3775 i.types[op].bitfield.disp16 = 0;
3776 i.types[op].bitfield.disp32 = 0;
3777 i.types[op].bitfield.disp32s = 0;
3778 i.types[op].bitfield.disp64 = 0;
3779 i.op[op].disps = 0;
3780 i.disp_operands--;
3782 else if (flag_code == CODE_64BIT)
3784 if (fits_in_signed_long (op_disp))
3786 i.types[op].bitfield.disp64 = 0;
3787 i.types[op].bitfield.disp32s = 1;
3789 if (i.prefix[ADDR_PREFIX]
3790 && fits_in_unsigned_long (op_disp))
3791 i.types[op].bitfield.disp32 = 1;
3793 if ((i.types[op].bitfield.disp32
3794 || i.types[op].bitfield.disp32s
3795 || i.types[op].bitfield.disp16)
3796 && fits_in_signed_byte (op_disp))
3797 i.types[op].bitfield.disp8 = 1;
3799 else if (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
3800 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL)
3802 fix_new_exp (frag_now, frag_more (0) - frag_now->fr_literal, 0,
3803 i.op[op].disps, 0, i.reloc[op]);
3804 i.types[op].bitfield.disp8 = 0;
3805 i.types[op].bitfield.disp16 = 0;
3806 i.types[op].bitfield.disp32 = 0;
3807 i.types[op].bitfield.disp32s = 0;
3808 i.types[op].bitfield.disp64 = 0;
3810 else
3811 /* We only support 64bit displacement on constants. */
3812 i.types[op].bitfield.disp64 = 0;
3816 /* Check if operands are valid for the instruction. Update VEX
3817 operand types. */
3819 static int
3820 VEX_check_operands (const insn_template *t)
3822 if (!t->opcode_modifier.vex)
3823 return 0;
3825 /* Only check VEX_Imm4, which must be the first operand. */
3826 if (t->operand_types[0].bitfield.vec_imm4)
3828 if (i.op[0].imms->X_op != O_constant
3829 || !fits_in_imm4 (i.op[0].imms->X_add_number))
3831 i.error = bad_imm4;
3832 return 1;
3835 /* Turn off Imm8 so that update_imm won't complain. */
3836 i.types[0] = vec_imm4;
3839 return 0;
3842 static const insn_template *
3843 match_template (void)
3845 /* Points to template once we've found it. */
3846 const insn_template *t;
3847 i386_operand_type overlap0, overlap1, overlap2, overlap3;
3848 i386_operand_type overlap4;
3849 unsigned int found_reverse_match;
3850 i386_opcode_modifier suffix_check;
3851 i386_operand_type operand_types [MAX_OPERANDS];
3852 int addr_prefix_disp;
3853 unsigned int j;
3854 unsigned int found_cpu_match;
3855 unsigned int check_register;
3857 #if MAX_OPERANDS != 5
3858 # error "MAX_OPERANDS must be 5."
3859 #endif
3861 found_reverse_match = 0;
3862 addr_prefix_disp = -1;
3864 memset (&suffix_check, 0, sizeof (suffix_check));
3865 if (i.suffix == BYTE_MNEM_SUFFIX)
3866 suffix_check.no_bsuf = 1;
3867 else if (i.suffix == WORD_MNEM_SUFFIX)
3868 suffix_check.no_wsuf = 1;
3869 else if (i.suffix == SHORT_MNEM_SUFFIX)
3870 suffix_check.no_ssuf = 1;
3871 else if (i.suffix == LONG_MNEM_SUFFIX)
3872 suffix_check.no_lsuf = 1;
3873 else if (i.suffix == QWORD_MNEM_SUFFIX)
3874 suffix_check.no_qsuf = 1;
3875 else if (i.suffix == LONG_DOUBLE_MNEM_SUFFIX)
3876 suffix_check.no_ldsuf = 1;
3878 /* Must have right number of operands. */
3879 i.error = number_of_operands_mismatch;
3881 for (t = current_templates->start; t < current_templates->end; t++)
3883 addr_prefix_disp = -1;
3885 if (i.operands != t->operands)
3886 continue;
3888 /* Check processor support. */
3889 i.error = unsupported;
3890 found_cpu_match = (cpu_flags_match (t)
3891 == CPU_FLAGS_PERFECT_MATCH);
3892 if (!found_cpu_match)
3893 continue;
3895 /* Check old gcc support. */
3896 i.error = old_gcc_only;
3897 if (!old_gcc && t->opcode_modifier.oldgcc)
3898 continue;
3900 /* Check AT&T mnemonic. */
3901 i.error = unsupported_with_intel_mnemonic;
3902 if (intel_mnemonic && t->opcode_modifier.attmnemonic)
3903 continue;
3905 /* Check AT&T/Intel syntax. */
3906 i.error = unsupported_syntax;
3907 if ((intel_syntax && t->opcode_modifier.attsyntax)
3908 || (!intel_syntax && t->opcode_modifier.intelsyntax))
3909 continue;
3911 /* Check the suffix, except for some instructions in intel mode. */
3912 i.error = invalid_instruction_suffix;
3913 if ((!intel_syntax || !t->opcode_modifier.ignoresize)
3914 && ((t->opcode_modifier.no_bsuf && suffix_check.no_bsuf)
3915 || (t->opcode_modifier.no_wsuf && suffix_check.no_wsuf)
3916 || (t->opcode_modifier.no_lsuf && suffix_check.no_lsuf)
3917 || (t->opcode_modifier.no_ssuf && suffix_check.no_ssuf)
3918 || (t->opcode_modifier.no_qsuf && suffix_check.no_qsuf)
3919 || (t->opcode_modifier.no_ldsuf && suffix_check.no_ldsuf)))
3920 continue;
3922 if (!operand_size_match (t))
3923 continue;
3925 for (j = 0; j < MAX_OPERANDS; j++)
3926 operand_types[j] = t->operand_types[j];
3928 /* In general, don't allow 64-bit operands in 32-bit mode. */
3929 if (i.suffix == QWORD_MNEM_SUFFIX
3930 && flag_code != CODE_64BIT
3931 && (intel_syntax
3932 ? (!t->opcode_modifier.ignoresize
3933 && !intel_float_operand (t->name))
3934 : intel_float_operand (t->name) != 2)
3935 && ((!operand_types[0].bitfield.regmmx
3936 && !operand_types[0].bitfield.regxmm
3937 && !operand_types[0].bitfield.regymm)
3938 || (!operand_types[t->operands > 1].bitfield.regmmx
3939 && !!operand_types[t->operands > 1].bitfield.regxmm
3940 && !!operand_types[t->operands > 1].bitfield.regymm))
3941 && (t->base_opcode != 0x0fc7
3942 || t->extension_opcode != 1 /* cmpxchg8b */))
3943 continue;
3945 /* In general, don't allow 32-bit operands on pre-386. */
3946 else if (i.suffix == LONG_MNEM_SUFFIX
3947 && !cpu_arch_flags.bitfield.cpui386
3948 && (intel_syntax
3949 ? (!t->opcode_modifier.ignoresize
3950 && !intel_float_operand (t->name))
3951 : intel_float_operand (t->name) != 2)
3952 && ((!operand_types[0].bitfield.regmmx
3953 && !operand_types[0].bitfield.regxmm)
3954 || (!operand_types[t->operands > 1].bitfield.regmmx
3955 && !!operand_types[t->operands > 1].bitfield.regxmm)))
3956 continue;
3958 /* Do not verify operands when there are none. */
3959 else
3961 if (!t->operands)
3962 /* We've found a match; break out of loop. */
3963 break;
3966 /* Address size prefix will turn Disp64/Disp32/Disp16 operand
3967 into Disp32/Disp16/Disp32 operand. */
3968 if (i.prefix[ADDR_PREFIX] != 0)
3970 /* There should be only one Disp operand. */
3971 switch (flag_code)
3973 case CODE_16BIT:
3974 for (j = 0; j < MAX_OPERANDS; j++)
3976 if (operand_types[j].bitfield.disp16)
3978 addr_prefix_disp = j;
3979 operand_types[j].bitfield.disp32 = 1;
3980 operand_types[j].bitfield.disp16 = 0;
3981 break;
3984 break;
3985 case CODE_32BIT:
3986 for (j = 0; j < MAX_OPERANDS; j++)
3988 if (operand_types[j].bitfield.disp32)
3990 addr_prefix_disp = j;
3991 operand_types[j].bitfield.disp32 = 0;
3992 operand_types[j].bitfield.disp16 = 1;
3993 break;
3996 break;
3997 case CODE_64BIT:
3998 for (j = 0; j < MAX_OPERANDS; j++)
4000 if (operand_types[j].bitfield.disp64)
4002 addr_prefix_disp = j;
4003 operand_types[j].bitfield.disp64 = 0;
4004 operand_types[j].bitfield.disp32 = 1;
4005 break;
4008 break;
4012 /* We check register size if needed. */
4013 check_register = t->opcode_modifier.checkregsize;
4014 overlap0 = operand_type_and (i.types[0], operand_types[0]);
4015 switch (t->operands)
4017 case 1:
4018 if (!operand_type_match (overlap0, i.types[0]))
4019 continue;
4020 break;
4021 case 2:
4022 /* xchg %eax, %eax is a special case. It is an aliase for nop
4023 only in 32bit mode and we can use opcode 0x90. In 64bit
4024 mode, we can't use 0x90 for xchg %eax, %eax since it should
4025 zero-extend %eax to %rax. */
4026 if (flag_code == CODE_64BIT
4027 && t->base_opcode == 0x90
4028 && operand_type_equal (&i.types [0], &acc32)
4029 && operand_type_equal (&i.types [1], &acc32))
4030 continue;
4031 if (i.swap_operand)
4033 /* If we swap operand in encoding, we either match
4034 the next one or reverse direction of operands. */
4035 if (t->opcode_modifier.s)
4036 continue;
4037 else if (t->opcode_modifier.d)
4038 goto check_reverse;
4041 case 3:
4042 /* If we swap operand in encoding, we match the next one. */
4043 if (i.swap_operand && t->opcode_modifier.s)
4044 continue;
4045 case 4:
4046 case 5:
4047 overlap1 = operand_type_and (i.types[1], operand_types[1]);
4048 if (!operand_type_match (overlap0, i.types[0])
4049 || !operand_type_match (overlap1, i.types[1])
4050 || (check_register
4051 && !operand_type_register_match (overlap0, i.types[0],
4052 operand_types[0],
4053 overlap1, i.types[1],
4054 operand_types[1])))
4056 /* Check if other direction is valid ... */
4057 if (!t->opcode_modifier.d && !t->opcode_modifier.floatd)
4058 continue;
4060 check_reverse:
4061 /* Try reversing direction of operands. */
4062 overlap0 = operand_type_and (i.types[0], operand_types[1]);
4063 overlap1 = operand_type_and (i.types[1], operand_types[0]);
4064 if (!operand_type_match (overlap0, i.types[0])
4065 || !operand_type_match (overlap1, i.types[1])
4066 || (check_register
4067 && !operand_type_register_match (overlap0,
4068 i.types[0],
4069 operand_types[1],
4070 overlap1,
4071 i.types[1],
4072 operand_types[0])))
4074 /* Does not match either direction. */
4075 continue;
4077 /* found_reverse_match holds which of D or FloatDR
4078 we've found. */
4079 if (t->opcode_modifier.d)
4080 found_reverse_match = Opcode_D;
4081 else if (t->opcode_modifier.floatd)
4082 found_reverse_match = Opcode_FloatD;
4083 else
4084 found_reverse_match = 0;
4085 if (t->opcode_modifier.floatr)
4086 found_reverse_match |= Opcode_FloatR;
4088 else
4090 /* Found a forward 2 operand match here. */
4091 switch (t->operands)
4093 case 5:
4094 overlap4 = operand_type_and (i.types[4],
4095 operand_types[4]);
4096 case 4:
4097 overlap3 = operand_type_and (i.types[3],
4098 operand_types[3]);
4099 case 3:
4100 overlap2 = operand_type_and (i.types[2],
4101 operand_types[2]);
4102 break;
4105 switch (t->operands)
4107 case 5:
4108 if (!operand_type_match (overlap4, i.types[4])
4109 || !operand_type_register_match (overlap3,
4110 i.types[3],
4111 operand_types[3],
4112 overlap4,
4113 i.types[4],
4114 operand_types[4]))
4115 continue;
4116 case 4:
4117 if (!operand_type_match (overlap3, i.types[3])
4118 || (check_register
4119 && !operand_type_register_match (overlap2,
4120 i.types[2],
4121 operand_types[2],
4122 overlap3,
4123 i.types[3],
4124 operand_types[3])))
4125 continue;
4126 case 3:
4127 /* Here we make use of the fact that there are no
4128 reverse match 3 operand instructions, and all 3
4129 operand instructions only need to be checked for
4130 register consistency between operands 2 and 3. */
4131 if (!operand_type_match (overlap2, i.types[2])
4132 || (check_register
4133 && !operand_type_register_match (overlap1,
4134 i.types[1],
4135 operand_types[1],
4136 overlap2,
4137 i.types[2],
4138 operand_types[2])))
4139 continue;
4140 break;
4143 /* Found either forward/reverse 2, 3 or 4 operand match here:
4144 slip through to break. */
4146 if (!found_cpu_match)
4148 found_reverse_match = 0;
4149 continue;
4152 /* Check if VEX operands are valid. */
4153 if (VEX_check_operands (t))
4154 continue;
4156 /* We've found a match; break out of loop. */
4157 break;
4160 if (t == current_templates->end)
4162 /* We found no match. */
4163 const char *err_msg;
4164 switch (i.error)
4166 default:
4167 abort ();
4168 case operand_size_mismatch:
4169 err_msg = _("operand size mismatch");
4170 break;
4171 case operand_type_mismatch:
4172 err_msg = _("operand type mismatch");
4173 break;
4174 case register_type_mismatch:
4175 err_msg = _("register type mismatch");
4176 break;
4177 case number_of_operands_mismatch:
4178 err_msg = _("number of operands mismatch");
4179 break;
4180 case invalid_instruction_suffix:
4181 err_msg = _("invalid instruction suffix");
4182 break;
4183 case bad_imm4:
4184 err_msg = _("Imm4 isn't the first operand");
4185 break;
4186 case old_gcc_only:
4187 err_msg = _("only supported with old gcc");
4188 break;
4189 case unsupported_with_intel_mnemonic:
4190 err_msg = _("unsupported with Intel mnemonic");
4191 break;
4192 case unsupported_syntax:
4193 err_msg = _("unsupported syntax");
4194 break;
4195 case unsupported:
4196 err_msg = _("unsupported");
4197 break;
4199 as_bad (_("%s for `%s'"), err_msg,
4200 current_templates->start->name);
4201 return NULL;
4204 if (!quiet_warnings)
4206 if (!intel_syntax
4207 && (i.types[0].bitfield.jumpabsolute
4208 != operand_types[0].bitfield.jumpabsolute))
4210 as_warn (_("indirect %s without `*'"), t->name);
4213 if (t->opcode_modifier.isprefix
4214 && t->opcode_modifier.ignoresize)
4216 /* Warn them that a data or address size prefix doesn't
4217 affect assembly of the next line of code. */
4218 as_warn (_("stand-alone `%s' prefix"), t->name);
4222 /* Copy the template we found. */
4223 i.tm = *t;
4225 if (addr_prefix_disp != -1)
4226 i.tm.operand_types[addr_prefix_disp]
4227 = operand_types[addr_prefix_disp];
4229 if (found_reverse_match)
4231 /* If we found a reverse match we must alter the opcode
4232 direction bit. found_reverse_match holds bits to change
4233 (different for int & float insns). */
4235 i.tm.base_opcode ^= found_reverse_match;
4237 i.tm.operand_types[0] = operand_types[1];
4238 i.tm.operand_types[1] = operand_types[0];
4241 return t;
4244 static int
4245 check_string (void)
4247 int mem_op = operand_type_check (i.types[0], anymem) ? 0 : 1;
4248 if (i.tm.operand_types[mem_op].bitfield.esseg)
4250 if (i.seg[0] != NULL && i.seg[0] != &es)
4252 as_bad (_("`%s' operand %d must use `%ses' segment"),
4253 i.tm.name,
4254 mem_op + 1,
4255 register_prefix);
4256 return 0;
4258 /* There's only ever one segment override allowed per instruction.
4259 This instruction possibly has a legal segment override on the
4260 second operand, so copy the segment to where non-string
4261 instructions store it, allowing common code. */
4262 i.seg[0] = i.seg[1];
4264 else if (i.tm.operand_types[mem_op + 1].bitfield.esseg)
4266 if (i.seg[1] != NULL && i.seg[1] != &es)
4268 as_bad (_("`%s' operand %d must use `%ses' segment"),
4269 i.tm.name,
4270 mem_op + 2,
4271 register_prefix);
4272 return 0;
4275 return 1;
4278 static int
4279 process_suffix (void)
4281 /* If matched instruction specifies an explicit instruction mnemonic
4282 suffix, use it. */
4283 if (i.tm.opcode_modifier.size16)
4284 i.suffix = WORD_MNEM_SUFFIX;
4285 else if (i.tm.opcode_modifier.size32)
4286 i.suffix = LONG_MNEM_SUFFIX;
4287 else if (i.tm.opcode_modifier.size64)
4288 i.suffix = QWORD_MNEM_SUFFIX;
4289 else if (i.reg_operands)
4291 /* If there's no instruction mnemonic suffix we try to invent one
4292 based on register operands. */
4293 if (!i.suffix)
4295 /* We take i.suffix from the last register operand specified,
4296 Destination register type is more significant than source
4297 register type. crc32 in SSE4.2 prefers source register
4298 type. */
4299 if (i.tm.base_opcode == 0xf20f38f1)
4301 if (i.types[0].bitfield.reg16)
4302 i.suffix = WORD_MNEM_SUFFIX;
4303 else if (i.types[0].bitfield.reg32)
4304 i.suffix = LONG_MNEM_SUFFIX;
4305 else if (i.types[0].bitfield.reg64)
4306 i.suffix = QWORD_MNEM_SUFFIX;
4308 else if (i.tm.base_opcode == 0xf20f38f0)
4310 if (i.types[0].bitfield.reg8)
4311 i.suffix = BYTE_MNEM_SUFFIX;
4314 if (!i.suffix)
4316 int op;
4318 if (i.tm.base_opcode == 0xf20f38f1
4319 || i.tm.base_opcode == 0xf20f38f0)
4321 /* We have to know the operand size for crc32. */
4322 as_bad (_("ambiguous memory operand size for `%s`"),
4323 i.tm.name);
4324 return 0;
4327 for (op = i.operands; --op >= 0;)
4328 if (!i.tm.operand_types[op].bitfield.inoutportreg)
4330 if (i.types[op].bitfield.reg8)
4332 i.suffix = BYTE_MNEM_SUFFIX;
4333 break;
4335 else if (i.types[op].bitfield.reg16)
4337 i.suffix = WORD_MNEM_SUFFIX;
4338 break;
4340 else if (i.types[op].bitfield.reg32)
4342 i.suffix = LONG_MNEM_SUFFIX;
4343 break;
4345 else if (i.types[op].bitfield.reg64)
4347 i.suffix = QWORD_MNEM_SUFFIX;
4348 break;
4353 else if (i.suffix == BYTE_MNEM_SUFFIX)
4355 if (intel_syntax
4356 && i.tm.opcode_modifier.ignoresize
4357 && i.tm.opcode_modifier.no_bsuf)
4358 i.suffix = 0;
4359 else if (!check_byte_reg ())
4360 return 0;
4362 else if (i.suffix == LONG_MNEM_SUFFIX)
4364 if (intel_syntax
4365 && i.tm.opcode_modifier.ignoresize
4366 && i.tm.opcode_modifier.no_lsuf)
4367 i.suffix = 0;
4368 else if (!check_long_reg ())
4369 return 0;
4371 else if (i.suffix == QWORD_MNEM_SUFFIX)
4373 if (intel_syntax
4374 && i.tm.opcode_modifier.ignoresize
4375 && i.tm.opcode_modifier.no_qsuf)
4376 i.suffix = 0;
4377 else if (!check_qword_reg ())
4378 return 0;
4380 else if (i.suffix == WORD_MNEM_SUFFIX)
4382 if (intel_syntax
4383 && i.tm.opcode_modifier.ignoresize
4384 && i.tm.opcode_modifier.no_wsuf)
4385 i.suffix = 0;
4386 else if (!check_word_reg ())
4387 return 0;
4389 else if (i.suffix == XMMWORD_MNEM_SUFFIX
4390 || i.suffix == YMMWORD_MNEM_SUFFIX)
4392 /* Skip if the instruction has x/y suffix. match_template
4393 should check if it is a valid suffix. */
4395 else if (intel_syntax && i.tm.opcode_modifier.ignoresize)
4396 /* Do nothing if the instruction is going to ignore the prefix. */
4398 else
4399 abort ();
4401 else if (i.tm.opcode_modifier.defaultsize
4402 && !i.suffix
4403 /* exclude fldenv/frstor/fsave/fstenv */
4404 && i.tm.opcode_modifier.no_ssuf)
4406 i.suffix = stackop_size;
4408 else if (intel_syntax
4409 && !i.suffix
4410 && (i.tm.operand_types[0].bitfield.jumpabsolute
4411 || i.tm.opcode_modifier.jumpbyte
4412 || i.tm.opcode_modifier.jumpintersegment
4413 || (i.tm.base_opcode == 0x0f01 /* [ls][gi]dt */
4414 && i.tm.extension_opcode <= 3)))
4416 switch (flag_code)
4418 case CODE_64BIT:
4419 if (!i.tm.opcode_modifier.no_qsuf)
4421 i.suffix = QWORD_MNEM_SUFFIX;
4422 break;
4424 case CODE_32BIT:
4425 if (!i.tm.opcode_modifier.no_lsuf)
4426 i.suffix = LONG_MNEM_SUFFIX;
4427 break;
4428 case CODE_16BIT:
4429 if (!i.tm.opcode_modifier.no_wsuf)
4430 i.suffix = WORD_MNEM_SUFFIX;
4431 break;
4435 if (!i.suffix)
4437 if (!intel_syntax)
4439 if (i.tm.opcode_modifier.w)
4441 as_bad (_("no instruction mnemonic suffix given and "
4442 "no register operands; can't size instruction"));
4443 return 0;
4446 else
4448 unsigned int suffixes;
4450 suffixes = !i.tm.opcode_modifier.no_bsuf;
4451 if (!i.tm.opcode_modifier.no_wsuf)
4452 suffixes |= 1 << 1;
4453 if (!i.tm.opcode_modifier.no_lsuf)
4454 suffixes |= 1 << 2;
4455 if (!i.tm.opcode_modifier.no_ldsuf)
4456 suffixes |= 1 << 3;
4457 if (!i.tm.opcode_modifier.no_ssuf)
4458 suffixes |= 1 << 4;
4459 if (!i.tm.opcode_modifier.no_qsuf)
4460 suffixes |= 1 << 5;
4462 /* There are more than suffix matches. */
4463 if (i.tm.opcode_modifier.w
4464 || ((suffixes & (suffixes - 1))
4465 && !i.tm.opcode_modifier.defaultsize
4466 && !i.tm.opcode_modifier.ignoresize))
4468 as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
4469 return 0;
4474 /* Change the opcode based on the operand size given by i.suffix;
4475 We don't need to change things for byte insns. */
4477 if (i.suffix
4478 && i.suffix != BYTE_MNEM_SUFFIX
4479 && i.suffix != XMMWORD_MNEM_SUFFIX
4480 && i.suffix != YMMWORD_MNEM_SUFFIX)
4482 /* It's not a byte, select word/dword operation. */
4483 if (i.tm.opcode_modifier.w)
4485 if (i.tm.opcode_modifier.shortform)
4486 i.tm.base_opcode |= 8;
4487 else
4488 i.tm.base_opcode |= 1;
4491 /* Now select between word & dword operations via the operand
4492 size prefix, except for instructions that will ignore this
4493 prefix anyway. */
4494 if (i.tm.opcode_modifier.addrprefixop0)
4496 /* The address size override prefix changes the size of the
4497 first operand. */
4498 if ((flag_code == CODE_32BIT
4499 && i.op->regs[0].reg_type.bitfield.reg16)
4500 || (flag_code != CODE_32BIT
4501 && i.op->regs[0].reg_type.bitfield.reg32))
4502 if (!add_prefix (ADDR_PREFIX_OPCODE))
4503 return 0;
4505 else if (i.suffix != QWORD_MNEM_SUFFIX
4506 && i.suffix != LONG_DOUBLE_MNEM_SUFFIX
4507 && !i.tm.opcode_modifier.ignoresize
4508 && !i.tm.opcode_modifier.floatmf
4509 && ((i.suffix == LONG_MNEM_SUFFIX) == (flag_code == CODE_16BIT)
4510 || (flag_code == CODE_64BIT
4511 && i.tm.opcode_modifier.jumpbyte)))
4513 unsigned int prefix = DATA_PREFIX_OPCODE;
4515 if (i.tm.opcode_modifier.jumpbyte) /* jcxz, loop */
4516 prefix = ADDR_PREFIX_OPCODE;
4518 if (!add_prefix (prefix))
4519 return 0;
4522 /* Set mode64 for an operand. */
4523 if (i.suffix == QWORD_MNEM_SUFFIX
4524 && flag_code == CODE_64BIT
4525 && !i.tm.opcode_modifier.norex64)
4527 /* Special case for xchg %rax,%rax. It is NOP and doesn't
4528 need rex64. cmpxchg8b is also a special case. */
4529 if (! (i.operands == 2
4530 && i.tm.base_opcode == 0x90
4531 && i.tm.extension_opcode == None
4532 && operand_type_equal (&i.types [0], &acc64)
4533 && operand_type_equal (&i.types [1], &acc64))
4534 && ! (i.operands == 1
4535 && i.tm.base_opcode == 0xfc7
4536 && i.tm.extension_opcode == 1
4537 && !operand_type_check (i.types [0], reg)
4538 && operand_type_check (i.types [0], anymem)))
4539 i.rex |= REX_W;
4542 /* Size floating point instruction. */
4543 if (i.suffix == LONG_MNEM_SUFFIX)
4544 if (i.tm.opcode_modifier.floatmf)
4545 i.tm.base_opcode ^= 4;
4548 return 1;
4551 static int
4552 check_byte_reg (void)
4554 int op;
4556 for (op = i.operands; --op >= 0;)
4558 /* If this is an eight bit register, it's OK. If it's the 16 or
4559 32 bit version of an eight bit register, we will just use the
4560 low portion, and that's OK too. */
4561 if (i.types[op].bitfield.reg8)
4562 continue;
4564 /* crc32 doesn't generate this warning. */
4565 if (i.tm.base_opcode == 0xf20f38f0)
4566 continue;
4568 if ((i.types[op].bitfield.reg16
4569 || i.types[op].bitfield.reg32
4570 || i.types[op].bitfield.reg64)
4571 && i.op[op].regs->reg_num < 4)
4573 /* Prohibit these changes in the 64bit mode, since the
4574 lowering is more complicated. */
4575 if (flag_code == CODE_64BIT
4576 && !i.tm.operand_types[op].bitfield.inoutportreg)
4578 as_bad (_("Incorrect register `%s%s' used with `%c' suffix"),
4579 register_prefix, i.op[op].regs->reg_name,
4580 i.suffix);
4581 return 0;
4583 #if REGISTER_WARNINGS
4584 if (!quiet_warnings
4585 && !i.tm.operand_types[op].bitfield.inoutportreg)
4586 as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
4587 register_prefix,
4588 (i.op[op].regs + (i.types[op].bitfield.reg16
4589 ? REGNAM_AL - REGNAM_AX
4590 : REGNAM_AL - REGNAM_EAX))->reg_name,
4591 register_prefix,
4592 i.op[op].regs->reg_name,
4593 i.suffix);
4594 #endif
4595 continue;
4597 /* Any other register is bad. */
4598 if (i.types[op].bitfield.reg16
4599 || i.types[op].bitfield.reg32
4600 || i.types[op].bitfield.reg64
4601 || i.types[op].bitfield.regmmx
4602 || i.types[op].bitfield.regxmm
4603 || i.types[op].bitfield.regymm
4604 || i.types[op].bitfield.sreg2
4605 || i.types[op].bitfield.sreg3
4606 || i.types[op].bitfield.control
4607 || i.types[op].bitfield.debug
4608 || i.types[op].bitfield.test
4609 || i.types[op].bitfield.floatreg
4610 || i.types[op].bitfield.floatacc)
4612 as_bad (_("`%s%s' not allowed with `%s%c'"),
4613 register_prefix,
4614 i.op[op].regs->reg_name,
4615 i.tm.name,
4616 i.suffix);
4617 return 0;
4620 return 1;
4623 static int
4624 check_long_reg (void)
4626 int op;
4628 for (op = i.operands; --op >= 0;)
4629 /* Reject eight bit registers, except where the template requires
4630 them. (eg. movzb) */
4631 if (i.types[op].bitfield.reg8
4632 && (i.tm.operand_types[op].bitfield.reg16
4633 || i.tm.operand_types[op].bitfield.reg32
4634 || i.tm.operand_types[op].bitfield.acc))
4636 as_bad (_("`%s%s' not allowed with `%s%c'"),
4637 register_prefix,
4638 i.op[op].regs->reg_name,
4639 i.tm.name,
4640 i.suffix);
4641 return 0;
4643 /* Warn if the e prefix on a general reg is missing. */
4644 else if ((!quiet_warnings || flag_code == CODE_64BIT)
4645 && i.types[op].bitfield.reg16
4646 && (i.tm.operand_types[op].bitfield.reg32
4647 || i.tm.operand_types[op].bitfield.acc))
4649 /* Prohibit these changes in the 64bit mode, since the
4650 lowering is more complicated. */
4651 if (flag_code == CODE_64BIT)
4653 as_bad (_("Incorrect register `%s%s' used with `%c' suffix"),
4654 register_prefix, i.op[op].regs->reg_name,
4655 i.suffix);
4656 return 0;
4658 #if REGISTER_WARNINGS
4659 else
4660 as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
4661 register_prefix,
4662 (i.op[op].regs + REGNAM_EAX - REGNAM_AX)->reg_name,
4663 register_prefix,
4664 i.op[op].regs->reg_name,
4665 i.suffix);
4666 #endif
4668 /* Warn if the r prefix on a general reg is missing. */
4669 else if (i.types[op].bitfield.reg64
4670 && (i.tm.operand_types[op].bitfield.reg32
4671 || i.tm.operand_types[op].bitfield.acc))
4673 if (intel_syntax
4674 && i.tm.opcode_modifier.toqword
4675 && !i.types[0].bitfield.regxmm)
4677 /* Convert to QWORD. We want REX byte. */
4678 i.suffix = QWORD_MNEM_SUFFIX;
4680 else
4682 as_bad (_("Incorrect register `%s%s' used with `%c' suffix"),
4683 register_prefix, i.op[op].regs->reg_name,
4684 i.suffix);
4685 return 0;
4688 return 1;
4691 static int
4692 check_qword_reg (void)
4694 int op;
4696 for (op = i.operands; --op >= 0; )
4697 /* Reject eight bit registers, except where the template requires
4698 them. (eg. movzb) */
4699 if (i.types[op].bitfield.reg8
4700 && (i.tm.operand_types[op].bitfield.reg16
4701 || i.tm.operand_types[op].bitfield.reg32
4702 || i.tm.operand_types[op].bitfield.acc))
4704 as_bad (_("`%s%s' not allowed with `%s%c'"),
4705 register_prefix,
4706 i.op[op].regs->reg_name,
4707 i.tm.name,
4708 i.suffix);
4709 return 0;
4711 /* Warn if the e prefix on a general reg is missing. */
4712 else if ((i.types[op].bitfield.reg16
4713 || i.types[op].bitfield.reg32)
4714 && (i.tm.operand_types[op].bitfield.reg32
4715 || i.tm.operand_types[op].bitfield.acc))
4717 /* Prohibit these changes in the 64bit mode, since the
4718 lowering is more complicated. */
4719 if (intel_syntax
4720 && i.tm.opcode_modifier.todword
4721 && !i.types[0].bitfield.regxmm)
4723 /* Convert to DWORD. We don't want REX byte. */
4724 i.suffix = LONG_MNEM_SUFFIX;
4726 else
4728 as_bad (_("Incorrect register `%s%s' used with `%c' suffix"),
4729 register_prefix, i.op[op].regs->reg_name,
4730 i.suffix);
4731 return 0;
4734 return 1;
4737 static int
4738 check_word_reg (void)
4740 int op;
4741 for (op = i.operands; --op >= 0;)
4742 /* Reject eight bit registers, except where the template requires
4743 them. (eg. movzb) */
4744 if (i.types[op].bitfield.reg8
4745 && (i.tm.operand_types[op].bitfield.reg16
4746 || i.tm.operand_types[op].bitfield.reg32
4747 || i.tm.operand_types[op].bitfield.acc))
4749 as_bad (_("`%s%s' not allowed with `%s%c'"),
4750 register_prefix,
4751 i.op[op].regs->reg_name,
4752 i.tm.name,
4753 i.suffix);
4754 return 0;
4756 /* Warn if the e prefix on a general reg is present. */
4757 else if ((!quiet_warnings || flag_code == CODE_64BIT)
4758 && i.types[op].bitfield.reg32
4759 && (i.tm.operand_types[op].bitfield.reg16
4760 || i.tm.operand_types[op].bitfield.acc))
4762 /* Prohibit these changes in the 64bit mode, since the
4763 lowering is more complicated. */
4764 if (flag_code == CODE_64BIT)
4766 as_bad (_("Incorrect register `%s%s' used with `%c' suffix"),
4767 register_prefix, i.op[op].regs->reg_name,
4768 i.suffix);
4769 return 0;
4771 else
4772 #if REGISTER_WARNINGS
4773 as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
4774 register_prefix,
4775 (i.op[op].regs + REGNAM_AX - REGNAM_EAX)->reg_name,
4776 register_prefix,
4777 i.op[op].regs->reg_name,
4778 i.suffix);
4779 #endif
4781 return 1;
4784 static int
4785 update_imm (unsigned int j)
4787 i386_operand_type overlap = i.types[j];
4788 if ((overlap.bitfield.imm8
4789 || overlap.bitfield.imm8s
4790 || overlap.bitfield.imm16
4791 || overlap.bitfield.imm32
4792 || overlap.bitfield.imm32s
4793 || overlap.bitfield.imm64)
4794 && !operand_type_equal (&overlap, &imm8)
4795 && !operand_type_equal (&overlap, &imm8s)
4796 && !operand_type_equal (&overlap, &imm16)
4797 && !operand_type_equal (&overlap, &imm32)
4798 && !operand_type_equal (&overlap, &imm32s)
4799 && !operand_type_equal (&overlap, &imm64))
4801 if (i.suffix)
4803 i386_operand_type temp;
4805 operand_type_set (&temp, 0);
4806 if (i.suffix == BYTE_MNEM_SUFFIX)
4808 temp.bitfield.imm8 = overlap.bitfield.imm8;
4809 temp.bitfield.imm8s = overlap.bitfield.imm8s;
4811 else if (i.suffix == WORD_MNEM_SUFFIX)
4812 temp.bitfield.imm16 = overlap.bitfield.imm16;
4813 else if (i.suffix == QWORD_MNEM_SUFFIX)
4815 temp.bitfield.imm64 = overlap.bitfield.imm64;
4816 temp.bitfield.imm32s = overlap.bitfield.imm32s;
4818 else
4819 temp.bitfield.imm32 = overlap.bitfield.imm32;
4820 overlap = temp;
4822 else if (operand_type_equal (&overlap, &imm16_32_32s)
4823 || operand_type_equal (&overlap, &imm16_32)
4824 || operand_type_equal (&overlap, &imm16_32s))
4826 if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
4827 overlap = imm16;
4828 else
4829 overlap = imm32s;
4831 if (!operand_type_equal (&overlap, &imm8)
4832 && !operand_type_equal (&overlap, &imm8s)
4833 && !operand_type_equal (&overlap, &imm16)
4834 && !operand_type_equal (&overlap, &imm32)
4835 && !operand_type_equal (&overlap, &imm32s)
4836 && !operand_type_equal (&overlap, &imm64))
4838 as_bad (_("no instruction mnemonic suffix given; "
4839 "can't determine immediate size"));
4840 return 0;
4843 i.types[j] = overlap;
4845 return 1;
4848 static int
4849 finalize_imm (void)
4851 unsigned int j, n;
4853 /* Update the first 2 immediate operands. */
4854 n = i.operands > 2 ? 2 : i.operands;
4855 if (n)
4857 for (j = 0; j < n; j++)
4858 if (update_imm (j) == 0)
4859 return 0;
4861 /* The 3rd operand can't be immediate operand. */
4862 gas_assert (operand_type_check (i.types[2], imm) == 0);
4865 return 1;
4868 static int
4869 bad_implicit_operand (int xmm)
4871 const char *ireg = xmm ? "xmm0" : "ymm0";
4873 if (intel_syntax)
4874 as_bad (_("the last operand of `%s' must be `%s%s'"),
4875 i.tm.name, register_prefix, ireg);
4876 else
4877 as_bad (_("the first operand of `%s' must be `%s%s'"),
4878 i.tm.name, register_prefix, ireg);
4879 return 0;
4882 static int
4883 process_operands (void)
4885 /* Default segment register this instruction will use for memory
4886 accesses. 0 means unknown. This is only for optimizing out
4887 unnecessary segment overrides. */
4888 const seg_entry *default_seg = 0;
4890 if (i.tm.opcode_modifier.sse2avx && i.tm.opcode_modifier.vexvvvv)
4892 unsigned int dupl = i.operands;
4893 unsigned int dest = dupl - 1;
4894 unsigned int j;
4896 /* The destination must be an xmm register. */
4897 gas_assert (i.reg_operands
4898 && MAX_OPERANDS > dupl
4899 && operand_type_equal (&i.types[dest], &regxmm));
4901 if (i.tm.opcode_modifier.firstxmm0)
4903 /* The first operand is implicit and must be xmm0. */
4904 gas_assert (operand_type_equal (&i.types[0], &regxmm));
4905 if (i.op[0].regs->reg_num != 0)
4906 return bad_implicit_operand (1);
4908 if (i.tm.opcode_modifier.vexsources == VEX3SOURCES)
4910 /* Keep xmm0 for instructions with VEX prefix and 3
4911 sources. */
4912 goto duplicate;
4914 else
4916 /* We remove the first xmm0 and keep the number of
4917 operands unchanged, which in fact duplicates the
4918 destination. */
4919 for (j = 1; j < i.operands; j++)
4921 i.op[j - 1] = i.op[j];
4922 i.types[j - 1] = i.types[j];
4923 i.tm.operand_types[j - 1] = i.tm.operand_types[j];
4927 else if (i.tm.opcode_modifier.implicit1stxmm0)
4929 gas_assert ((MAX_OPERANDS - 1) > dupl
4930 && (i.tm.opcode_modifier.vexsources
4931 == VEX3SOURCES));
4933 /* Add the implicit xmm0 for instructions with VEX prefix
4934 and 3 sources. */
4935 for (j = i.operands; j > 0; j--)
4937 i.op[j] = i.op[j - 1];
4938 i.types[j] = i.types[j - 1];
4939 i.tm.operand_types[j] = i.tm.operand_types[j - 1];
4941 i.op[0].regs
4942 = (const reg_entry *) hash_find (reg_hash, "xmm0");
4943 i.types[0] = regxmm;
4944 i.tm.operand_types[0] = regxmm;
4946 i.operands += 2;
4947 i.reg_operands += 2;
4948 i.tm.operands += 2;
4950 dupl++;
4951 dest++;
4952 i.op[dupl] = i.op[dest];
4953 i.types[dupl] = i.types[dest];
4954 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
4956 else
4958 duplicate:
4959 i.operands++;
4960 i.reg_operands++;
4961 i.tm.operands++;
4963 i.op[dupl] = i.op[dest];
4964 i.types[dupl] = i.types[dest];
4965 i.tm.operand_types[dupl] = i.tm.operand_types[dest];
4968 if (i.tm.opcode_modifier.immext)
4969 process_immext ();
4971 else if (i.tm.opcode_modifier.firstxmm0)
4973 unsigned int j;
4975 /* The first operand is implicit and must be xmm0/ymm0. */
4976 gas_assert (i.reg_operands
4977 && (operand_type_equal (&i.types[0], &regxmm)
4978 || operand_type_equal (&i.types[0], &regymm)));
4979 if (i.op[0].regs->reg_num != 0)
4980 return bad_implicit_operand (i.types[0].bitfield.regxmm);
4982 for (j = 1; j < i.operands; j++)
4984 i.op[j - 1] = i.op[j];
4985 i.types[j - 1] = i.types[j];
4987 /* We need to adjust fields in i.tm since they are used by
4988 build_modrm_byte. */
4989 i.tm.operand_types [j - 1] = i.tm.operand_types [j];
4992 i.operands--;
4993 i.reg_operands--;
4994 i.tm.operands--;
4996 else if (i.tm.opcode_modifier.regkludge)
4998 /* The imul $imm, %reg instruction is converted into
4999 imul $imm, %reg, %reg, and the clr %reg instruction
5000 is converted into xor %reg, %reg. */
5002 unsigned int first_reg_op;
5004 if (operand_type_check (i.types[0], reg))
5005 first_reg_op = 0;
5006 else
5007 first_reg_op = 1;
5008 /* Pretend we saw the extra register operand. */
5009 gas_assert (i.reg_operands == 1
5010 && i.op[first_reg_op + 1].regs == 0);
5011 i.op[first_reg_op + 1].regs = i.op[first_reg_op].regs;
5012 i.types[first_reg_op + 1] = i.types[first_reg_op];
5013 i.operands++;
5014 i.reg_operands++;
5017 if (i.tm.opcode_modifier.shortform)
5019 if (i.types[0].bitfield.sreg2
5020 || i.types[0].bitfield.sreg3)
5022 if (i.tm.base_opcode == POP_SEG_SHORT
5023 && i.op[0].regs->reg_num == 1)
5025 as_bad (_("you can't `pop %scs'"), register_prefix);
5026 return 0;
5028 i.tm.base_opcode |= (i.op[0].regs->reg_num << 3);
5029 if ((i.op[0].regs->reg_flags & RegRex) != 0)
5030 i.rex |= REX_B;
5032 else
5034 /* The register or float register operand is in operand
5035 0 or 1. */
5036 unsigned int op;
5038 if (i.types[0].bitfield.floatreg
5039 || operand_type_check (i.types[0], reg))
5040 op = 0;
5041 else
5042 op = 1;
5043 /* Register goes in low 3 bits of opcode. */
5044 i.tm.base_opcode |= i.op[op].regs->reg_num;
5045 if ((i.op[op].regs->reg_flags & RegRex) != 0)
5046 i.rex |= REX_B;
5047 if (!quiet_warnings && i.tm.opcode_modifier.ugh)
5049 /* Warn about some common errors, but press on regardless.
5050 The first case can be generated by gcc (<= 2.8.1). */
5051 if (i.operands == 2)
5053 /* Reversed arguments on faddp, fsubp, etc. */
5054 as_warn (_("translating to `%s %s%s,%s%s'"), i.tm.name,
5055 register_prefix, i.op[!intel_syntax].regs->reg_name,
5056 register_prefix, i.op[intel_syntax].regs->reg_name);
5058 else
5060 /* Extraneous `l' suffix on fp insn. */
5061 as_warn (_("translating to `%s %s%s'"), i.tm.name,
5062 register_prefix, i.op[0].regs->reg_name);
5067 else if (i.tm.opcode_modifier.modrm)
5069 /* The opcode is completed (modulo i.tm.extension_opcode which
5070 must be put into the modrm byte). Now, we make the modrm and
5071 index base bytes based on all the info we've collected. */
5073 default_seg = build_modrm_byte ();
5075 else if ((i.tm.base_opcode & ~0x3) == MOV_AX_DISP32)
5077 default_seg = &ds;
5079 else if (i.tm.opcode_modifier.isstring)
5081 /* For the string instructions that allow a segment override
5082 on one of their operands, the default segment is ds. */
5083 default_seg = &ds;
5086 if (i.tm.base_opcode == 0x8d /* lea */
5087 && i.seg[0]
5088 && !quiet_warnings)
5089 as_warn (_("segment override on `%s' is ineffectual"), i.tm.name);
5091 /* If a segment was explicitly specified, and the specified segment
5092 is not the default, use an opcode prefix to select it. If we
5093 never figured out what the default segment is, then default_seg
5094 will be zero at this point, and the specified segment prefix will
5095 always be used. */
5096 if ((i.seg[0]) && (i.seg[0] != default_seg))
5098 if (!add_prefix (i.seg[0]->seg_prefix))
5099 return 0;
5101 return 1;
5104 static const seg_entry *
5105 build_modrm_byte (void)
5107 const seg_entry *default_seg = 0;
5108 unsigned int source, dest;
5109 int vex_3_sources;
5111 /* The first operand of instructions with VEX prefix and 3 sources
5112 must be VEX_Imm4. */
5113 vex_3_sources = i.tm.opcode_modifier.vexsources == VEX3SOURCES;
5114 if (vex_3_sources)
5116 unsigned int nds, reg_slot;
5117 expressionS *exp;
5119 if (i.tm.opcode_modifier.veximmext
5120 && i.tm.opcode_modifier.immext)
5122 dest = i.operands - 2;
5123 gas_assert (dest == 3);
5125 else
5126 dest = i.operands - 1;
5127 nds = dest - 1;
5129 /* There are 2 kinds of instructions:
5130 1. 5 operands: 4 register operands or 3 register operands
5131 plus 1 memory operand plus one Vec_Imm4 operand, VexXDS, and
5132 VexW0 or VexW1. The destination must be either XMM or YMM
5133 register.
5134 2. 4 operands: 4 register operands or 3 register operands
5135 plus 1 memory operand, VexXDS, and VexImmExt */
5136 gas_assert ((i.reg_operands == 4
5137 || (i.reg_operands == 3 && i.mem_operands == 1))
5138 && i.tm.opcode_modifier.vexvvvv == VEXXDS
5139 && (i.tm.opcode_modifier.veximmext
5140 || (i.imm_operands == 1
5141 && i.types[0].bitfield.vec_imm4
5142 && (i.tm.opcode_modifier.vexw == VEXW0
5143 || i.tm.opcode_modifier.vexw == VEXW1)
5144 && (operand_type_equal (&i.tm.operand_types[dest], &regxmm)
5145 || operand_type_equal (&i.tm.operand_types[dest], &regymm)))));
5147 if (i.imm_operands == 0)
5149 /* When there is no immediate operand, generate an 8bit
5150 immediate operand to encode the first operand. */
5151 exp = &im_expressions[i.imm_operands++];
5152 i.op[i.operands].imms = exp;
5153 i.types[i.operands] = imm8;
5154 i.operands++;
5155 /* If VexW1 is set, the first operand is the source and
5156 the second operand is encoded in the immediate operand. */
5157 if (i.tm.opcode_modifier.vexw == VEXW1)
5159 source = 0;
5160 reg_slot = 1;
5162 else
5164 source = 1;
5165 reg_slot = 0;
5168 /* FMA swaps REG and NDS. */
5169 if (i.tm.cpu_flags.bitfield.cpufma)
5171 unsigned int tmp;
5172 tmp = reg_slot;
5173 reg_slot = nds;
5174 nds = tmp;
5177 gas_assert (operand_type_equal (&i.tm.operand_types[reg_slot],
5178 &regxmm)
5179 || operand_type_equal (&i.tm.operand_types[reg_slot],
5180 &regymm));
5181 exp->X_op = O_constant;
5182 exp->X_add_number
5183 = ((i.op[reg_slot].regs->reg_num
5184 + ((i.op[reg_slot].regs->reg_flags & RegRex) ? 8 : 0))
5185 << 4);
5187 else
5189 unsigned int imm_slot;
5191 if (i.tm.opcode_modifier.vexw == VEXW0)
5193 /* If VexW0 is set, the third operand is the source and
5194 the second operand is encoded in the immediate
5195 operand. */
5196 source = 2;
5197 reg_slot = 1;
5199 else
5201 /* VexW1 is set, the second operand is the source and
5202 the third operand is encoded in the immediate
5203 operand. */
5204 source = 1;
5205 reg_slot = 2;
5208 if (i.tm.opcode_modifier.immext)
5210 /* When ImmExt is set, the immdiate byte is the last
5211 operand. */
5212 imm_slot = i.operands - 1;
5213 source--;
5214 reg_slot--;
5216 else
5218 imm_slot = 0;
5220 /* Turn on Imm8 so that output_imm will generate it. */
5221 i.types[imm_slot].bitfield.imm8 = 1;
5224 gas_assert (operand_type_equal (&i.tm.operand_types[reg_slot],
5225 &regxmm)
5226 || operand_type_equal (&i.tm.operand_types[reg_slot],
5227 &regymm));
5228 i.op[imm_slot].imms->X_add_number
5229 |= ((i.op[reg_slot].regs->reg_num
5230 + ((i.op[reg_slot].regs->reg_flags & RegRex) ? 8 : 0))
5231 << 4);
5234 gas_assert (operand_type_equal (&i.tm.operand_types[nds], &regxmm)
5235 || operand_type_equal (&i.tm.operand_types[nds],
5236 &regymm));
5237 i.vex.register_specifier = i.op[nds].regs;
5239 else
5240 source = dest = 0;
5242 /* i.reg_operands MUST be the number of real register operands;
5243 implicit registers do not count. If there are 3 register
5244 operands, it must be a instruction with VexNDS. For a
5245 instruction with VexNDD, the destination register is encoded
5246 in VEX prefix. If there are 4 register operands, it must be
5247 a instruction with VEX prefix and 3 sources. */
5248 if (i.mem_operands == 0
5249 && ((i.reg_operands == 2
5250 && i.tm.opcode_modifier.vexvvvv <= VEXXDS)
5251 || (i.reg_operands == 3
5252 && i.tm.opcode_modifier.vexvvvv == VEXXDS)
5253 || (i.reg_operands == 4 && vex_3_sources)))
5255 switch (i.operands)
5257 case 2:
5258 source = 0;
5259 break;
5260 case 3:
5261 /* When there are 3 operands, one of them may be immediate,
5262 which may be the first or the last operand. Otherwise,
5263 the first operand must be shift count register (cl) or it
5264 is an instruction with VexNDS. */
5265 gas_assert (i.imm_operands == 1
5266 || (i.imm_operands == 0
5267 && (i.tm.opcode_modifier.vexvvvv == VEXXDS
5268 || i.types[0].bitfield.shiftcount)));
5269 if (operand_type_check (i.types[0], imm)
5270 || i.types[0].bitfield.shiftcount)
5271 source = 1;
5272 else
5273 source = 0;
5274 break;
5275 case 4:
5276 /* When there are 4 operands, the first two must be 8bit
5277 immediate operands. The source operand will be the 3rd
5278 one.
5280 For instructions with VexNDS, if the first operand
5281 an imm8, the source operand is the 2nd one. If the last
5282 operand is imm8, the source operand is the first one. */
5283 gas_assert ((i.imm_operands == 2
5284 && i.types[0].bitfield.imm8
5285 && i.types[1].bitfield.imm8)
5286 || (i.tm.opcode_modifier.vexvvvv == VEXXDS
5287 && i.imm_operands == 1
5288 && (i.types[0].bitfield.imm8
5289 || i.types[i.operands - 1].bitfield.imm8)));
5290 if (i.imm_operands == 2)
5291 source = 2;
5292 else
5294 if (i.types[0].bitfield.imm8)
5295 source = 1;
5296 else
5297 source = 0;
5299 break;
5300 case 5:
5301 break;
5302 default:
5303 abort ();
5306 if (!vex_3_sources)
5308 dest = source + 1;
5310 if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
5312 /* For instructions with VexNDS, the register-only
5313 source operand must be XMM or YMM register. It is
5314 encoded in VEX prefix. We need to clear RegMem bit
5315 before calling operand_type_equal. */
5316 i386_operand_type op = i.tm.operand_types[dest];
5317 op.bitfield.regmem = 0;
5318 if ((dest + 1) >= i.operands
5319 || (!operand_type_equal (&op, &regxmm)
5320 && !operand_type_equal (&op, &regymm)))
5321 abort ();
5322 i.vex.register_specifier = i.op[dest].regs;
5323 dest++;
5327 i.rm.mode = 3;
5328 /* One of the register operands will be encoded in the i.tm.reg
5329 field, the other in the combined i.tm.mode and i.tm.regmem
5330 fields. If no form of this instruction supports a memory
5331 destination operand, then we assume the source operand may
5332 sometimes be a memory operand and so we need to store the
5333 destination in the i.rm.reg field. */
5334 if (!i.tm.operand_types[dest].bitfield.regmem
5335 && operand_type_check (i.tm.operand_types[dest], anymem) == 0)
5337 i.rm.reg = i.op[dest].regs->reg_num;
5338 i.rm.regmem = i.op[source].regs->reg_num;
5339 if ((i.op[dest].regs->reg_flags & RegRex) != 0)
5340 i.rex |= REX_R;
5341 if ((i.op[source].regs->reg_flags & RegRex) != 0)
5342 i.rex |= REX_B;
5344 else
5346 i.rm.reg = i.op[source].regs->reg_num;
5347 i.rm.regmem = i.op[dest].regs->reg_num;
5348 if ((i.op[dest].regs->reg_flags & RegRex) != 0)
5349 i.rex |= REX_B;
5350 if ((i.op[source].regs->reg_flags & RegRex) != 0)
5351 i.rex |= REX_R;
5353 if (flag_code != CODE_64BIT && (i.rex & (REX_R | REX_B)))
5355 if (!i.types[0].bitfield.control
5356 && !i.types[1].bitfield.control)
5357 abort ();
5358 i.rex &= ~(REX_R | REX_B);
5359 add_prefix (LOCK_PREFIX_OPCODE);
5362 else
5363 { /* If it's not 2 reg operands... */
5364 unsigned int mem;
5366 if (i.mem_operands)
5368 unsigned int fake_zero_displacement = 0;
5369 unsigned int op;
5371 for (op = 0; op < i.operands; op++)
5372 if (operand_type_check (i.types[op], anymem))
5373 break;
5374 gas_assert (op < i.operands);
5376 default_seg = &ds;
5378 if (i.base_reg == 0)
5380 i.rm.mode = 0;
5381 if (!i.disp_operands)
5382 fake_zero_displacement = 1;
5383 if (i.index_reg == 0)
5385 /* Operand is just <disp> */
5386 if (flag_code == CODE_64BIT)
5388 /* 64bit mode overwrites the 32bit absolute
5389 addressing by RIP relative addressing and
5390 absolute addressing is encoded by one of the
5391 redundant SIB forms. */
5392 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
5393 i.sib.base = NO_BASE_REGISTER;
5394 i.sib.index = NO_INDEX_REGISTER;
5395 i.types[op] = ((i.prefix[ADDR_PREFIX] == 0)
5396 ? disp32s : disp32);
5398 else if ((flag_code == CODE_16BIT)
5399 ^ (i.prefix[ADDR_PREFIX] != 0))
5401 i.rm.regmem = NO_BASE_REGISTER_16;
5402 i.types[op] = disp16;
5404 else
5406 i.rm.regmem = NO_BASE_REGISTER;
5407 i.types[op] = disp32;
5410 else /* !i.base_reg && i.index_reg */
5412 if (i.index_reg->reg_num == RegEiz
5413 || i.index_reg->reg_num == RegRiz)
5414 i.sib.index = NO_INDEX_REGISTER;
5415 else
5416 i.sib.index = i.index_reg->reg_num;
5417 i.sib.base = NO_BASE_REGISTER;
5418 i.sib.scale = i.log2_scale_factor;
5419 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
5420 i.types[op].bitfield.disp8 = 0;
5421 i.types[op].bitfield.disp16 = 0;
5422 i.types[op].bitfield.disp64 = 0;
5423 if (flag_code != CODE_64BIT)
5425 /* Must be 32 bit */
5426 i.types[op].bitfield.disp32 = 1;
5427 i.types[op].bitfield.disp32s = 0;
5429 else
5431 i.types[op].bitfield.disp32 = 0;
5432 i.types[op].bitfield.disp32s = 1;
5434 if ((i.index_reg->reg_flags & RegRex) != 0)
5435 i.rex |= REX_X;
5438 /* RIP addressing for 64bit mode. */
5439 else if (i.base_reg->reg_num == RegRip ||
5440 i.base_reg->reg_num == RegEip)
5442 i.rm.regmem = NO_BASE_REGISTER;
5443 i.types[op].bitfield.disp8 = 0;
5444 i.types[op].bitfield.disp16 = 0;
5445 i.types[op].bitfield.disp32 = 0;
5446 i.types[op].bitfield.disp32s = 1;
5447 i.types[op].bitfield.disp64 = 0;
5448 i.flags[op] |= Operand_PCrel;
5449 if (! i.disp_operands)
5450 fake_zero_displacement = 1;
5452 else if (i.base_reg->reg_type.bitfield.reg16)
5454 switch (i.base_reg->reg_num)
5456 case 3: /* (%bx) */
5457 if (i.index_reg == 0)
5458 i.rm.regmem = 7;
5459 else /* (%bx,%si) -> 0, or (%bx,%di) -> 1 */
5460 i.rm.regmem = i.index_reg->reg_num - 6;
5461 break;
5462 case 5: /* (%bp) */
5463 default_seg = &ss;
5464 if (i.index_reg == 0)
5466 i.rm.regmem = 6;
5467 if (operand_type_check (i.types[op], disp) == 0)
5469 /* fake (%bp) into 0(%bp) */
5470 i.types[op].bitfield.disp8 = 1;
5471 fake_zero_displacement = 1;
5474 else /* (%bp,%si) -> 2, or (%bp,%di) -> 3 */
5475 i.rm.regmem = i.index_reg->reg_num - 6 + 2;
5476 break;
5477 default: /* (%si) -> 4 or (%di) -> 5 */
5478 i.rm.regmem = i.base_reg->reg_num - 6 + 4;
5480 i.rm.mode = mode_from_disp_size (i.types[op]);
5482 else /* i.base_reg and 32/64 bit mode */
5484 if (flag_code == CODE_64BIT
5485 && operand_type_check (i.types[op], disp))
5487 i386_operand_type temp;
5488 operand_type_set (&temp, 0);
5489 temp.bitfield.disp8 = i.types[op].bitfield.disp8;
5490 i.types[op] = temp;
5491 if (i.prefix[ADDR_PREFIX] == 0)
5492 i.types[op].bitfield.disp32s = 1;
5493 else
5494 i.types[op].bitfield.disp32 = 1;
5497 i.rm.regmem = i.base_reg->reg_num;
5498 if ((i.base_reg->reg_flags & RegRex) != 0)
5499 i.rex |= REX_B;
5500 i.sib.base = i.base_reg->reg_num;
5501 /* x86-64 ignores REX prefix bit here to avoid decoder
5502 complications. */
5503 if ((i.base_reg->reg_num & 7) == EBP_REG_NUM)
5505 default_seg = &ss;
5506 if (i.disp_operands == 0)
5508 fake_zero_displacement = 1;
5509 i.types[op].bitfield.disp8 = 1;
5512 else if (i.base_reg->reg_num == ESP_REG_NUM)
5514 default_seg = &ss;
5516 i.sib.scale = i.log2_scale_factor;
5517 if (i.index_reg == 0)
5519 /* <disp>(%esp) becomes two byte modrm with no index
5520 register. We've already stored the code for esp
5521 in i.rm.regmem ie. ESCAPE_TO_TWO_BYTE_ADDRESSING.
5522 Any base register besides %esp will not use the
5523 extra modrm byte. */
5524 i.sib.index = NO_INDEX_REGISTER;
5526 else
5528 if (i.index_reg->reg_num == RegEiz
5529 || i.index_reg->reg_num == RegRiz)
5530 i.sib.index = NO_INDEX_REGISTER;
5531 else
5532 i.sib.index = i.index_reg->reg_num;
5533 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
5534 if ((i.index_reg->reg_flags & RegRex) != 0)
5535 i.rex |= REX_X;
5538 if (i.disp_operands
5539 && (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
5540 || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL))
5541 i.rm.mode = 0;
5542 else
5543 i.rm.mode = mode_from_disp_size (i.types[op]);
5546 if (fake_zero_displacement)
5548 /* Fakes a zero displacement assuming that i.types[op]
5549 holds the correct displacement size. */
5550 expressionS *exp;
5552 gas_assert (i.op[op].disps == 0);
5553 exp = &disp_expressions[i.disp_operands++];
5554 i.op[op].disps = exp;
5555 exp->X_op = O_constant;
5556 exp->X_add_number = 0;
5557 exp->X_add_symbol = (symbolS *) 0;
5558 exp->X_op_symbol = (symbolS *) 0;
5561 mem = op;
5563 else
5564 mem = ~0;
5566 if (i.tm.opcode_modifier.vexsources == XOP2SOURCES)
5568 if (operand_type_check (i.types[0], imm))
5569 i.vex.register_specifier = NULL;
5570 else
5572 /* VEX.vvvv encodes one of the sources when the first
5573 operand is not an immediate. */
5574 if (i.tm.opcode_modifier.vexw == VEXW0)
5575 i.vex.register_specifier = i.op[0].regs;
5576 else
5577 i.vex.register_specifier = i.op[1].regs;
5580 /* Destination is a XMM register encoded in the ModRM.reg
5581 and VEX.R bit. */
5582 i.rm.reg = i.op[2].regs->reg_num;
5583 if ((i.op[2].regs->reg_flags & RegRex) != 0)
5584 i.rex |= REX_R;
5586 /* ModRM.rm and VEX.B encodes the other source. */
5587 if (!i.mem_operands)
5589 i.rm.mode = 3;
5591 if (i.tm.opcode_modifier.vexw == VEXW0)
5592 i.rm.regmem = i.op[1].regs->reg_num;
5593 else
5594 i.rm.regmem = i.op[0].regs->reg_num;
5596 if ((i.op[1].regs->reg_flags & RegRex) != 0)
5597 i.rex |= REX_B;
5600 else if (i.tm.opcode_modifier.vexvvvv == VEXLWP)
5602 i.vex.register_specifier = i.op[2].regs;
5603 if (!i.mem_operands)
5605 i.rm.mode = 3;
5606 i.rm.regmem = i.op[1].regs->reg_num;
5607 if ((i.op[1].regs->reg_flags & RegRex) != 0)
5608 i.rex |= REX_B;
5611 /* Fill in i.rm.reg or i.rm.regmem field with register operand
5612 (if any) based on i.tm.extension_opcode. Again, we must be
5613 careful to make sure that segment/control/debug/test/MMX
5614 registers are coded into the i.rm.reg field. */
5615 else if (i.reg_operands)
5617 unsigned int op;
5618 unsigned int vex_reg = ~0;
5620 for (op = 0; op < i.operands; op++)
5621 if (i.types[op].bitfield.reg8
5622 || i.types[op].bitfield.reg16
5623 || i.types[op].bitfield.reg32
5624 || i.types[op].bitfield.reg64
5625 || i.types[op].bitfield.regmmx
5626 || i.types[op].bitfield.regxmm
5627 || i.types[op].bitfield.regymm
5628 || i.types[op].bitfield.sreg2
5629 || i.types[op].bitfield.sreg3
5630 || i.types[op].bitfield.control
5631 || i.types[op].bitfield.debug
5632 || i.types[op].bitfield.test)
5633 break;
5635 if (vex_3_sources)
5636 op = dest;
5637 else if (i.tm.opcode_modifier.vexvvvv == VEXXDS)
5639 /* For instructions with VexNDS, the register-only
5640 source operand is encoded in VEX prefix. */
5641 gas_assert (mem != (unsigned int) ~0);
5643 if (op > mem)
5645 vex_reg = op++;
5646 gas_assert (op < i.operands);
5648 else
5650 vex_reg = op + 1;
5651 gas_assert (vex_reg < i.operands);
5654 else if (i.tm.opcode_modifier.vexvvvv == VEXNDD)
5656 /* For instructions with VexNDD, there should be
5657 no memory operand and the register destination
5658 is encoded in VEX prefix. */
5659 gas_assert (i.mem_operands == 0
5660 && (op + 2) == i.operands);
5661 vex_reg = op + 1;
5663 else
5664 gas_assert (op < i.operands);
5666 if (vex_reg != (unsigned int) ~0)
5668 gas_assert (i.reg_operands == 2);
5670 if (!operand_type_equal (&i.tm.operand_types[vex_reg],
5671 &regxmm)
5672 && !operand_type_equal (&i.tm.operand_types[vex_reg],
5673 &regymm))
5674 abort ();
5676 i.vex.register_specifier = i.op[vex_reg].regs;
5679 /* Don't set OP operand twice. */
5680 if (vex_reg != op)
5682 /* If there is an extension opcode to put here, the
5683 register number must be put into the regmem field. */
5684 if (i.tm.extension_opcode != None)
5686 i.rm.regmem = i.op[op].regs->reg_num;
5687 if ((i.op[op].regs->reg_flags & RegRex) != 0)
5688 i.rex |= REX_B;
5690 else
5692 i.rm.reg = i.op[op].regs->reg_num;
5693 if ((i.op[op].regs->reg_flags & RegRex) != 0)
5694 i.rex |= REX_R;
5698 /* Now, if no memory operand has set i.rm.mode = 0, 1, 2 we
5699 must set it to 3 to indicate this is a register operand
5700 in the regmem field. */
5701 if (!i.mem_operands)
5702 i.rm.mode = 3;
5705 /* Fill in i.rm.reg field with extension opcode (if any). */
5706 if (i.tm.extension_opcode != None)
5707 i.rm.reg = i.tm.extension_opcode;
5709 return default_seg;
5712 static void
5713 output_branch (void)
5715 char *p;
5716 int size;
5717 int code16;
5718 int prefix;
5719 relax_substateT subtype;
5720 symbolS *sym;
5721 offsetT off;
5723 code16 = flag_code == CODE_16BIT ? CODE16 : 0;
5724 size = i.disp32_encoding ? BIG : SMALL;
5726 prefix = 0;
5727 if (i.prefix[DATA_PREFIX] != 0)
5729 prefix = 1;
5730 i.prefixes -= 1;
5731 code16 ^= CODE16;
5733 /* Pentium4 branch hints. */
5734 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
5735 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
5737 prefix++;
5738 i.prefixes--;
5740 if (i.prefix[REX_PREFIX] != 0)
5742 prefix++;
5743 i.prefixes--;
5746 if (i.prefixes != 0 && !intel_syntax)
5747 as_warn (_("skipping prefixes on this instruction"));
5749 /* It's always a symbol; End frag & setup for relax.
5750 Make sure there is enough room in this frag for the largest
5751 instruction we may generate in md_convert_frag. This is 2
5752 bytes for the opcode and room for the prefix and largest
5753 displacement. */
5754 frag_grow (prefix + 2 + 4);
5755 /* Prefix and 1 opcode byte go in fr_fix. */
5756 p = frag_more (prefix + 1);
5757 if (i.prefix[DATA_PREFIX] != 0)
5758 *p++ = DATA_PREFIX_OPCODE;
5759 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE
5760 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE)
5761 *p++ = i.prefix[SEG_PREFIX];
5762 if (i.prefix[REX_PREFIX] != 0)
5763 *p++ = i.prefix[REX_PREFIX];
5764 *p = i.tm.base_opcode;
5766 if ((unsigned char) *p == JUMP_PC_RELATIVE)
5767 subtype = ENCODE_RELAX_STATE (UNCOND_JUMP, size);
5768 else if (cpu_arch_flags.bitfield.cpui386)
5769 subtype = ENCODE_RELAX_STATE (COND_JUMP, size);
5770 else
5771 subtype = ENCODE_RELAX_STATE (COND_JUMP86, size);
5772 subtype |= code16;
5774 sym = i.op[0].disps->X_add_symbol;
5775 off = i.op[0].disps->X_add_number;
5777 if (i.op[0].disps->X_op != O_constant
5778 && i.op[0].disps->X_op != O_symbol)
5780 /* Handle complex expressions. */
5781 sym = make_expr_symbol (i.op[0].disps);
5782 off = 0;
5785 /* 1 possible extra opcode + 4 byte displacement go in var part.
5786 Pass reloc in fr_var. */
5787 frag_var (rs_machine_dependent, 5, i.reloc[0], subtype, sym, off, p);
5790 static void
5791 output_jump (void)
5793 char *p;
5794 int size;
5795 fixS *fixP;
5797 if (i.tm.opcode_modifier.jumpbyte)
5799 /* This is a loop or jecxz type instruction. */
5800 size = 1;
5801 if (i.prefix[ADDR_PREFIX] != 0)
5803 FRAG_APPEND_1_CHAR (ADDR_PREFIX_OPCODE);
5804 i.prefixes -= 1;
5806 /* Pentium4 branch hints. */
5807 if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
5808 || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
5810 FRAG_APPEND_1_CHAR (i.prefix[SEG_PREFIX]);
5811 i.prefixes--;
5814 else
5816 int code16;
5818 code16 = 0;
5819 if (flag_code == CODE_16BIT)
5820 code16 = CODE16;
5822 if (i.prefix[DATA_PREFIX] != 0)
5824 FRAG_APPEND_1_CHAR (DATA_PREFIX_OPCODE);
5825 i.prefixes -= 1;
5826 code16 ^= CODE16;
5829 size = 4;
5830 if (code16)
5831 size = 2;
5834 if (i.prefix[REX_PREFIX] != 0)
5836 FRAG_APPEND_1_CHAR (i.prefix[REX_PREFIX]);
5837 i.prefixes -= 1;
5840 if (i.prefixes != 0 && !intel_syntax)
5841 as_warn (_("skipping prefixes on this instruction"));
5843 p = frag_more (1 + size);
5844 *p++ = i.tm.base_opcode;
5846 fixP = fix_new_exp (frag_now, p - frag_now->fr_literal, size,
5847 i.op[0].disps, 1, reloc (size, 1, 1, i.reloc[0]));
5849 /* All jumps handled here are signed, but don't use a signed limit
5850 check for 32 and 16 bit jumps as we want to allow wrap around at
5851 4G and 64k respectively. */
5852 if (size == 1)
5853 fixP->fx_signed = 1;
5856 static void
5857 output_interseg_jump (void)
5859 char *p;
5860 int size;
5861 int prefix;
5862 int code16;
5864 code16 = 0;
5865 if (flag_code == CODE_16BIT)
5866 code16 = CODE16;
5868 prefix = 0;
5869 if (i.prefix[DATA_PREFIX] != 0)
5871 prefix = 1;
5872 i.prefixes -= 1;
5873 code16 ^= CODE16;
5875 if (i.prefix[REX_PREFIX] != 0)
5877 prefix++;
5878 i.prefixes -= 1;
5881 size = 4;
5882 if (code16)
5883 size = 2;
5885 if (i.prefixes != 0 && !intel_syntax)
5886 as_warn (_("skipping prefixes on this instruction"));
5888 /* 1 opcode; 2 segment; offset */
5889 p = frag_more (prefix + 1 + 2 + size);
5891 if (i.prefix[DATA_PREFIX] != 0)
5892 *p++ = DATA_PREFIX_OPCODE;
5894 if (i.prefix[REX_PREFIX] != 0)
5895 *p++ = i.prefix[REX_PREFIX];
5897 *p++ = i.tm.base_opcode;
5898 if (i.op[1].imms->X_op == O_constant)
5900 offsetT n = i.op[1].imms->X_add_number;
5902 if (size == 2
5903 && !fits_in_unsigned_word (n)
5904 && !fits_in_signed_word (n))
5906 as_bad (_("16-bit jump out of range"));
5907 return;
5909 md_number_to_chars (p, n, size);
5911 else
5912 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
5913 i.op[1].imms, 0, reloc (size, 0, 0, i.reloc[1]));
5914 if (i.op[0].imms->X_op != O_constant)
5915 as_bad (_("can't handle non absolute segment in `%s'"),
5916 i.tm.name);
5917 md_number_to_chars (p + size, (valueT) i.op[0].imms->X_add_number, 2);
5920 static void
5921 output_insn (void)
5923 fragS *insn_start_frag;
5924 offsetT insn_start_off;
5926 /* Tie dwarf2 debug info to the address at the start of the insn.
5927 We can't do this after the insn has been output as the current
5928 frag may have been closed off. eg. by frag_var. */
5929 dwarf2_emit_insn (0);
5931 insn_start_frag = frag_now;
5932 insn_start_off = frag_now_fix ();
5934 /* Output jumps. */
5935 if (i.tm.opcode_modifier.jump)
5936 output_branch ();
5937 else if (i.tm.opcode_modifier.jumpbyte
5938 || i.tm.opcode_modifier.jumpdword)
5939 output_jump ();
5940 else if (i.tm.opcode_modifier.jumpintersegment)
5941 output_interseg_jump ();
5942 else
5944 /* Output normal instructions here. */
5945 char *p;
5946 unsigned char *q;
5947 unsigned int j;
5948 unsigned int prefix;
5950 /* Since the VEX prefix contains the implicit prefix, we don't
5951 need the explicit prefix. */
5952 if (!i.tm.opcode_modifier.vex)
5954 switch (i.tm.opcode_length)
5956 case 3:
5957 if (i.tm.base_opcode & 0xff000000)
5959 prefix = (i.tm.base_opcode >> 24) & 0xff;
5960 goto check_prefix;
5962 break;
5963 case 2:
5964 if ((i.tm.base_opcode & 0xff0000) != 0)
5966 prefix = (i.tm.base_opcode >> 16) & 0xff;
5967 if (i.tm.cpu_flags.bitfield.cpupadlock)
5969 check_prefix:
5970 if (prefix != REPE_PREFIX_OPCODE
5971 || (i.prefix[REP_PREFIX]
5972 != REPE_PREFIX_OPCODE))
5973 add_prefix (prefix);
5975 else
5976 add_prefix (prefix);
5978 break;
5979 case 1:
5980 break;
5981 default:
5982 abort ();
5985 /* The prefix bytes. */
5986 for (j = ARRAY_SIZE (i.prefix), q = i.prefix; j > 0; j--, q++)
5987 if (*q)
5988 FRAG_APPEND_1_CHAR (*q);
5991 if (i.tm.opcode_modifier.vex)
5993 for (j = 0, q = i.prefix; j < ARRAY_SIZE (i.prefix); j++, q++)
5994 if (*q)
5995 switch (j)
5997 case REX_PREFIX:
5998 /* REX byte is encoded in VEX prefix. */
5999 break;
6000 case SEG_PREFIX:
6001 case ADDR_PREFIX:
6002 FRAG_APPEND_1_CHAR (*q);
6003 break;
6004 default:
6005 /* There should be no other prefixes for instructions
6006 with VEX prefix. */
6007 abort ();
6010 /* Now the VEX prefix. */
6011 p = frag_more (i.vex.length);
6012 for (j = 0; j < i.vex.length; j++)
6013 p[j] = i.vex.bytes[j];
6016 /* Now the opcode; be careful about word order here! */
6017 if (i.tm.opcode_length == 1)
6019 FRAG_APPEND_1_CHAR (i.tm.base_opcode);
6021 else
6023 switch (i.tm.opcode_length)
6025 case 3:
6026 p = frag_more (3);
6027 *p++ = (i.tm.base_opcode >> 16) & 0xff;
6028 break;
6029 case 2:
6030 p = frag_more (2);
6031 break;
6032 default:
6033 abort ();
6034 break;
6037 /* Put out high byte first: can't use md_number_to_chars! */
6038 *p++ = (i.tm.base_opcode >> 8) & 0xff;
6039 *p = i.tm.base_opcode & 0xff;
6042 /* Now the modrm byte and sib byte (if present). */
6043 if (i.tm.opcode_modifier.modrm)
6045 FRAG_APPEND_1_CHAR ((i.rm.regmem << 0
6046 | i.rm.reg << 3
6047 | i.rm.mode << 6));
6048 /* If i.rm.regmem == ESP (4)
6049 && i.rm.mode != (Register mode)
6050 && not 16 bit
6051 ==> need second modrm byte. */
6052 if (i.rm.regmem == ESCAPE_TO_TWO_BYTE_ADDRESSING
6053 && i.rm.mode != 3
6054 && !(i.base_reg && i.base_reg->reg_type.bitfield.reg16))
6055 FRAG_APPEND_1_CHAR ((i.sib.base << 0
6056 | i.sib.index << 3
6057 | i.sib.scale << 6));
6060 if (i.disp_operands)
6061 output_disp (insn_start_frag, insn_start_off);
6063 if (i.imm_operands)
6064 output_imm (insn_start_frag, insn_start_off);
6067 #ifdef DEBUG386
6068 if (flag_debug)
6070 pi ("" /*line*/, &i);
6072 #endif /* DEBUG386 */
6075 /* Return the size of the displacement operand N. */
6077 static int
6078 disp_size (unsigned int n)
6080 int size = 4;
6081 if (i.types[n].bitfield.disp64)
6082 size = 8;
6083 else if (i.types[n].bitfield.disp8)
6084 size = 1;
6085 else if (i.types[n].bitfield.disp16)
6086 size = 2;
6087 return size;
6090 /* Return the size of the immediate operand N. */
6092 static int
6093 imm_size (unsigned int n)
6095 int size = 4;
6096 if (i.types[n].bitfield.imm64)
6097 size = 8;
6098 else if (i.types[n].bitfield.imm8 || i.types[n].bitfield.imm8s)
6099 size = 1;
6100 else if (i.types[n].bitfield.imm16)
6101 size = 2;
6102 return size;
6105 static void
6106 output_disp (fragS *insn_start_frag, offsetT insn_start_off)
6108 char *p;
6109 unsigned int n;
6111 for (n = 0; n < i.operands; n++)
6113 if (operand_type_check (i.types[n], disp))
6115 if (i.op[n].disps->X_op == O_constant)
6117 int size = disp_size (n);
6118 offsetT val;
6120 val = offset_in_range (i.op[n].disps->X_add_number,
6121 size);
6122 p = frag_more (size);
6123 md_number_to_chars (p, val, size);
6125 else
6127 enum bfd_reloc_code_real reloc_type;
6128 int size = disp_size (n);
6129 int sign = i.types[n].bitfield.disp32s;
6130 int pcrel = (i.flags[n] & Operand_PCrel) != 0;
6132 /* We can't have 8 bit displacement here. */
6133 gas_assert (!i.types[n].bitfield.disp8);
6135 /* The PC relative address is computed relative
6136 to the instruction boundary, so in case immediate
6137 fields follows, we need to adjust the value. */
6138 if (pcrel && i.imm_operands)
6140 unsigned int n1;
6141 int sz = 0;
6143 for (n1 = 0; n1 < i.operands; n1++)
6144 if (operand_type_check (i.types[n1], imm))
6146 /* Only one immediate is allowed for PC
6147 relative address. */
6148 gas_assert (sz == 0);
6149 sz = imm_size (n1);
6150 i.op[n].disps->X_add_number -= sz;
6152 /* We should find the immediate. */
6153 gas_assert (sz != 0);
6156 p = frag_more (size);
6157 reloc_type = reloc (size, pcrel, sign, i.reloc[n]);
6158 if (GOT_symbol
6159 && GOT_symbol == i.op[n].disps->X_add_symbol
6160 && (((reloc_type == BFD_RELOC_32
6161 || reloc_type == BFD_RELOC_X86_64_32S
6162 || (reloc_type == BFD_RELOC_64
6163 && object_64bit))
6164 && (i.op[n].disps->X_op == O_symbol
6165 || (i.op[n].disps->X_op == O_add
6166 && ((symbol_get_value_expression
6167 (i.op[n].disps->X_op_symbol)->X_op)
6168 == O_subtract))))
6169 || reloc_type == BFD_RELOC_32_PCREL))
6171 offsetT add;
6173 if (insn_start_frag == frag_now)
6174 add = (p - frag_now->fr_literal) - insn_start_off;
6175 else
6177 fragS *fr;
6179 add = insn_start_frag->fr_fix - insn_start_off;
6180 for (fr = insn_start_frag->fr_next;
6181 fr && fr != frag_now; fr = fr->fr_next)
6182 add += fr->fr_fix;
6183 add += p - frag_now->fr_literal;
6186 if (!object_64bit)
6188 reloc_type = BFD_RELOC_386_GOTPC;
6189 i.op[n].imms->X_add_number += add;
6191 else if (reloc_type == BFD_RELOC_64)
6192 reloc_type = BFD_RELOC_X86_64_GOTPC64;
6193 else
6194 /* Don't do the adjustment for x86-64, as there
6195 the pcrel addressing is relative to the _next_
6196 insn, and that is taken care of in other code. */
6197 reloc_type = BFD_RELOC_X86_64_GOTPC32;
6199 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
6200 i.op[n].disps, pcrel, reloc_type);
6206 static void
6207 output_imm (fragS *insn_start_frag, offsetT insn_start_off)
6209 char *p;
6210 unsigned int n;
6212 for (n = 0; n < i.operands; n++)
6214 if (operand_type_check (i.types[n], imm))
6216 if (i.op[n].imms->X_op == O_constant)
6218 int size = imm_size (n);
6219 offsetT val;
6221 val = offset_in_range (i.op[n].imms->X_add_number,
6222 size);
6223 p = frag_more (size);
6224 md_number_to_chars (p, val, size);
6226 else
6228 /* Not absolute_section.
6229 Need a 32-bit fixup (don't support 8bit
6230 non-absolute imms). Try to support other
6231 sizes ... */
6232 enum bfd_reloc_code_real reloc_type;
6233 int size = imm_size (n);
6234 int sign;
6236 if (i.types[n].bitfield.imm32s
6237 && (i.suffix == QWORD_MNEM_SUFFIX
6238 || (!i.suffix && i.tm.opcode_modifier.no_lsuf)))
6239 sign = 1;
6240 else
6241 sign = 0;
6243 p = frag_more (size);
6244 reloc_type = reloc (size, 0, sign, i.reloc[n]);
6246 /* This is tough to explain. We end up with this one if we
6247 * have operands that look like
6248 * "_GLOBAL_OFFSET_TABLE_+[.-.L284]". The goal here is to
6249 * obtain the absolute address of the GOT, and it is strongly
6250 * preferable from a performance point of view to avoid using
6251 * a runtime relocation for this. The actual sequence of
6252 * instructions often look something like:
6254 * call .L66
6255 * .L66:
6256 * popl %ebx
6257 * addl $_GLOBAL_OFFSET_TABLE_+[.-.L66],%ebx
6259 * The call and pop essentially return the absolute address
6260 * of the label .L66 and store it in %ebx. The linker itself
6261 * will ultimately change the first operand of the addl so
6262 * that %ebx points to the GOT, but to keep things simple, the
6263 * .o file must have this operand set so that it generates not
6264 * the absolute address of .L66, but the absolute address of
6265 * itself. This allows the linker itself simply treat a GOTPC
6266 * relocation as asking for a pcrel offset to the GOT to be
6267 * added in, and the addend of the relocation is stored in the
6268 * operand field for the instruction itself.
6270 * Our job here is to fix the operand so that it would add
6271 * the correct offset so that %ebx would point to itself. The
6272 * thing that is tricky is that .-.L66 will point to the
6273 * beginning of the instruction, so we need to further modify
6274 * the operand so that it will point to itself. There are
6275 * other cases where you have something like:
6277 * .long $_GLOBAL_OFFSET_TABLE_+[.-.L66]
6279 * and here no correction would be required. Internally in
6280 * the assembler we treat operands of this form as not being
6281 * pcrel since the '.' is explicitly mentioned, and I wonder
6282 * whether it would simplify matters to do it this way. Who
6283 * knows. In earlier versions of the PIC patches, the
6284 * pcrel_adjust field was used to store the correction, but
6285 * since the expression is not pcrel, I felt it would be
6286 * confusing to do it this way. */
6288 if ((reloc_type == BFD_RELOC_32
6289 || reloc_type == BFD_RELOC_X86_64_32S
6290 || reloc_type == BFD_RELOC_64)
6291 && GOT_symbol
6292 && GOT_symbol == i.op[n].imms->X_add_symbol
6293 && (i.op[n].imms->X_op == O_symbol
6294 || (i.op[n].imms->X_op == O_add
6295 && ((symbol_get_value_expression
6296 (i.op[n].imms->X_op_symbol)->X_op)
6297 == O_subtract))))
6299 offsetT add;
6301 if (insn_start_frag == frag_now)
6302 add = (p - frag_now->fr_literal) - insn_start_off;
6303 else
6305 fragS *fr;
6307 add = insn_start_frag->fr_fix - insn_start_off;
6308 for (fr = insn_start_frag->fr_next;
6309 fr && fr != frag_now; fr = fr->fr_next)
6310 add += fr->fr_fix;
6311 add += p - frag_now->fr_literal;
6314 if (!object_64bit)
6315 reloc_type = BFD_RELOC_386_GOTPC;
6316 else if (size == 4)
6317 reloc_type = BFD_RELOC_X86_64_GOTPC32;
6318 else if (size == 8)
6319 reloc_type = BFD_RELOC_X86_64_GOTPC64;
6320 i.op[n].imms->X_add_number += add;
6322 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
6323 i.op[n].imms, 0, reloc_type);
6329 /* x86_cons_fix_new is called via the expression parsing code when a
6330 reloc is needed. We use this hook to get the correct .got reloc. */
6331 static enum bfd_reloc_code_real got_reloc = NO_RELOC;
6332 static int cons_sign = -1;
6334 void
6335 x86_cons_fix_new (fragS *frag, unsigned int off, unsigned int len,
6336 expressionS *exp)
6338 enum bfd_reloc_code_real r = reloc (len, 0, cons_sign, got_reloc);
6340 got_reloc = NO_RELOC;
6342 #ifdef TE_PE
6343 if (exp->X_op == O_secrel)
6345 exp->X_op = O_symbol;
6346 r = BFD_RELOC_32_SECREL;
6348 #endif
6350 fix_new_exp (frag, off, len, exp, 0, r);
6353 #if (!defined (OBJ_ELF) && !defined (OBJ_MAYBE_ELF)) || defined (LEX_AT)
6354 # define lex_got(reloc, adjust, types) NULL
6355 #else
6356 /* Parse operands of the form
6357 <symbol>@GOTOFF+<nnn>
6358 and similar .plt or .got references.
6360 If we find one, set up the correct relocation in RELOC and copy the
6361 input string, minus the `@GOTOFF' into a malloc'd buffer for
6362 parsing by the calling routine. Return this buffer, and if ADJUST
6363 is non-null set it to the length of the string we removed from the
6364 input line. Otherwise return NULL. */
6365 static char *
6366 lex_got (enum bfd_reloc_code_real *rel,
6367 int *adjust,
6368 i386_operand_type *types)
6370 /* Some of the relocations depend on the size of what field is to
6371 be relocated. But in our callers i386_immediate and i386_displacement
6372 we don't yet know the operand size (this will be set by insn
6373 matching). Hence we record the word32 relocation here,
6374 and adjust the reloc according to the real size in reloc(). */
6375 static const struct {
6376 const char *str;
6377 int len;
6378 const enum bfd_reloc_code_real rel[2];
6379 const i386_operand_type types64;
6380 } gotrel[] = {
6381 { STRING_COMMA_LEN ("PLTOFF"), { _dummy_first_bfd_reloc_code_real,
6382 BFD_RELOC_X86_64_PLTOFF64 },
6383 OPERAND_TYPE_IMM64 },
6384 { STRING_COMMA_LEN ("PLT"), { BFD_RELOC_386_PLT32,
6385 BFD_RELOC_X86_64_PLT32 },
6386 OPERAND_TYPE_IMM32_32S_DISP32 },
6387 { STRING_COMMA_LEN ("GOTPLT"), { _dummy_first_bfd_reloc_code_real,
6388 BFD_RELOC_X86_64_GOTPLT64 },
6389 OPERAND_TYPE_IMM64_DISP64 },
6390 { STRING_COMMA_LEN ("GOTOFF"), { BFD_RELOC_386_GOTOFF,
6391 BFD_RELOC_X86_64_GOTOFF64 },
6392 OPERAND_TYPE_IMM64_DISP64 },
6393 { STRING_COMMA_LEN ("GOTPCREL"), { _dummy_first_bfd_reloc_code_real,
6394 BFD_RELOC_X86_64_GOTPCREL },
6395 OPERAND_TYPE_IMM32_32S_DISP32 },
6396 { STRING_COMMA_LEN ("TLSGD"), { BFD_RELOC_386_TLS_GD,
6397 BFD_RELOC_X86_64_TLSGD },
6398 OPERAND_TYPE_IMM32_32S_DISP32 },
6399 { STRING_COMMA_LEN ("TLSLDM"), { BFD_RELOC_386_TLS_LDM,
6400 _dummy_first_bfd_reloc_code_real },
6401 OPERAND_TYPE_NONE },
6402 { STRING_COMMA_LEN ("TLSLD"), { _dummy_first_bfd_reloc_code_real,
6403 BFD_RELOC_X86_64_TLSLD },
6404 OPERAND_TYPE_IMM32_32S_DISP32 },
6405 { STRING_COMMA_LEN ("GOTTPOFF"), { BFD_RELOC_386_TLS_IE_32,
6406 BFD_RELOC_X86_64_GOTTPOFF },
6407 OPERAND_TYPE_IMM32_32S_DISP32 },
6408 { STRING_COMMA_LEN ("TPOFF"), { BFD_RELOC_386_TLS_LE_32,
6409 BFD_RELOC_X86_64_TPOFF32 },
6410 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
6411 { STRING_COMMA_LEN ("NTPOFF"), { BFD_RELOC_386_TLS_LE,
6412 _dummy_first_bfd_reloc_code_real },
6413 OPERAND_TYPE_NONE },
6414 { STRING_COMMA_LEN ("DTPOFF"), { BFD_RELOC_386_TLS_LDO_32,
6415 BFD_RELOC_X86_64_DTPOFF32 },
6416 OPERAND_TYPE_IMM32_32S_64_DISP32_64 },
6417 { STRING_COMMA_LEN ("GOTNTPOFF"),{ BFD_RELOC_386_TLS_GOTIE,
6418 _dummy_first_bfd_reloc_code_real },
6419 OPERAND_TYPE_NONE },
6420 { STRING_COMMA_LEN ("INDNTPOFF"),{ BFD_RELOC_386_TLS_IE,
6421 _dummy_first_bfd_reloc_code_real },
6422 OPERAND_TYPE_NONE },
6423 { STRING_COMMA_LEN ("GOT"), { BFD_RELOC_386_GOT32,
6424 BFD_RELOC_X86_64_GOT32 },
6425 OPERAND_TYPE_IMM32_32S_64_DISP32 },
6426 { STRING_COMMA_LEN ("TLSDESC"), { BFD_RELOC_386_TLS_GOTDESC,
6427 BFD_RELOC_X86_64_GOTPC32_TLSDESC },
6428 OPERAND_TYPE_IMM32_32S_DISP32 },
6429 { STRING_COMMA_LEN ("TLSCALL"), { BFD_RELOC_386_TLS_DESC_CALL,
6430 BFD_RELOC_X86_64_TLSDESC_CALL },
6431 OPERAND_TYPE_IMM32_32S_DISP32 },
6433 char *cp;
6434 unsigned int j;
6436 if (!IS_ELF)
6437 return NULL;
6439 for (cp = input_line_pointer; *cp != '@'; cp++)
6440 if (is_end_of_line[(unsigned char) *cp] || *cp == ',')
6441 return NULL;
6443 for (j = 0; j < ARRAY_SIZE (gotrel); j++)
6445 int len = gotrel[j].len;
6446 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
6448 if (gotrel[j].rel[object_64bit] != 0)
6450 int first, second;
6451 char *tmpbuf, *past_reloc;
6453 *rel = gotrel[j].rel[object_64bit];
6454 if (adjust)
6455 *adjust = len;
6457 if (types)
6459 if (flag_code != CODE_64BIT)
6461 types->bitfield.imm32 = 1;
6462 types->bitfield.disp32 = 1;
6464 else
6465 *types = gotrel[j].types64;
6468 if (GOT_symbol == NULL)
6469 GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
6471 /* The length of the first part of our input line. */
6472 first = cp - input_line_pointer;
6474 /* The second part goes from after the reloc token until
6475 (and including) an end_of_line char or comma. */
6476 past_reloc = cp + 1 + len;
6477 cp = past_reloc;
6478 while (!is_end_of_line[(unsigned char) *cp] && *cp != ',')
6479 ++cp;
6480 second = cp + 1 - past_reloc;
6482 /* Allocate and copy string. The trailing NUL shouldn't
6483 be necessary, but be safe. */
6484 tmpbuf = (char *) xmalloc (first + second + 2);
6485 memcpy (tmpbuf, input_line_pointer, first);
6486 if (second != 0 && *past_reloc != ' ')
6487 /* Replace the relocation token with ' ', so that
6488 errors like foo@GOTOFF1 will be detected. */
6489 tmpbuf[first++] = ' ';
6490 memcpy (tmpbuf + first, past_reloc, second);
6491 tmpbuf[first + second] = '\0';
6492 return tmpbuf;
6495 as_bad (_("@%s reloc is not supported with %d-bit output format"),
6496 gotrel[j].str, 1 << (5 + object_64bit));
6497 return NULL;
6501 /* Might be a symbol version string. Don't as_bad here. */
6502 return NULL;
6505 void
6506 x86_cons (expressionS *exp, int size)
6508 intel_syntax = -intel_syntax;
6510 exp->X_md = 0;
6511 if (size == 4 || (object_64bit && size == 8))
6513 /* Handle @GOTOFF and the like in an expression. */
6514 char *save;
6515 char *gotfree_input_line;
6516 int adjust;
6518 save = input_line_pointer;
6519 gotfree_input_line = lex_got (&got_reloc, &adjust, NULL);
6520 if (gotfree_input_line)
6521 input_line_pointer = gotfree_input_line;
6523 expression (exp);
6525 if (gotfree_input_line)
6527 /* expression () has merrily parsed up to the end of line,
6528 or a comma - in the wrong buffer. Transfer how far
6529 input_line_pointer has moved to the right buffer. */
6530 input_line_pointer = (save
6531 + (input_line_pointer - gotfree_input_line)
6532 + adjust);
6533 free (gotfree_input_line);
6534 if (exp->X_op == O_constant
6535 || exp->X_op == O_absent
6536 || exp->X_op == O_illegal
6537 || exp->X_op == O_register
6538 || exp->X_op == O_big)
6540 char c = *input_line_pointer;
6541 *input_line_pointer = 0;
6542 as_bad (_("missing or invalid expression `%s'"), save);
6543 *input_line_pointer = c;
6547 else
6548 expression (exp);
6550 intel_syntax = -intel_syntax;
6552 if (intel_syntax)
6553 i386_intel_simplify (exp);
6555 #endif
6557 static void
6558 signed_cons (int size)
6560 if (flag_code == CODE_64BIT)
6561 cons_sign = 1;
6562 cons (size);
6563 cons_sign = -1;
6566 #ifdef TE_PE
6567 static void
6568 pe_directive_secrel (dummy)
6569 int dummy ATTRIBUTE_UNUSED;
6571 expressionS exp;
6575 expression (&exp);
6576 if (exp.X_op == O_symbol)
6577 exp.X_op = O_secrel;
6579 emit_expr (&exp, 4);
6581 while (*input_line_pointer++ == ',');
6583 input_line_pointer--;
6584 demand_empty_rest_of_line ();
6586 #endif
6588 static int
6589 i386_immediate (char *imm_start)
6591 char *save_input_line_pointer;
6592 char *gotfree_input_line;
6593 segT exp_seg = 0;
6594 expressionS *exp;
6595 i386_operand_type types;
6597 operand_type_set (&types, ~0);
6599 if (i.imm_operands == MAX_IMMEDIATE_OPERANDS)
6601 as_bad (_("at most %d immediate operands are allowed"),
6602 MAX_IMMEDIATE_OPERANDS);
6603 return 0;
6606 exp = &im_expressions[i.imm_operands++];
6607 i.op[this_operand].imms = exp;
6609 if (is_space_char (*imm_start))
6610 ++imm_start;
6612 save_input_line_pointer = input_line_pointer;
6613 input_line_pointer = imm_start;
6615 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
6616 if (gotfree_input_line)
6617 input_line_pointer = gotfree_input_line;
6619 exp_seg = expression (exp);
6621 SKIP_WHITESPACE ();
6622 if (*input_line_pointer)
6623 as_bad (_("junk `%s' after expression"), input_line_pointer);
6625 input_line_pointer = save_input_line_pointer;
6626 if (gotfree_input_line)
6628 free (gotfree_input_line);
6630 if (exp->X_op == O_constant || exp->X_op == O_register)
6631 exp->X_op = O_illegal;
6634 return i386_finalize_immediate (exp_seg, exp, types, imm_start);
6637 static int
6638 i386_finalize_immediate (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
6639 i386_operand_type types, const char *imm_start)
6641 if (exp->X_op == O_absent || exp->X_op == O_illegal || exp->X_op == O_big)
6643 if (imm_start)
6644 as_bad (_("missing or invalid immediate expression `%s'"),
6645 imm_start);
6646 return 0;
6648 else if (exp->X_op == O_constant)
6650 /* Size it properly later. */
6651 i.types[this_operand].bitfield.imm64 = 1;
6652 /* If not 64bit, sign extend val. */
6653 if (flag_code != CODE_64BIT
6654 && (exp->X_add_number & ~(((addressT) 2 << 31) - 1)) == 0)
6655 exp->X_add_number
6656 = (exp->X_add_number ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
6658 #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
6659 else if (OUTPUT_FLAVOR == bfd_target_aout_flavour
6660 && exp_seg != absolute_section
6661 && exp_seg != text_section
6662 && exp_seg != data_section
6663 && exp_seg != bss_section
6664 && exp_seg != undefined_section
6665 && !bfd_is_com_section (exp_seg))
6667 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
6668 return 0;
6670 #endif
6671 else if (!intel_syntax && exp->X_op == O_register)
6673 if (imm_start)
6674 as_bad (_("illegal immediate register operand %s"), imm_start);
6675 return 0;
6677 else
6679 /* This is an address. The size of the address will be
6680 determined later, depending on destination register,
6681 suffix, or the default for the section. */
6682 i.types[this_operand].bitfield.imm8 = 1;
6683 i.types[this_operand].bitfield.imm16 = 1;
6684 i.types[this_operand].bitfield.imm32 = 1;
6685 i.types[this_operand].bitfield.imm32s = 1;
6686 i.types[this_operand].bitfield.imm64 = 1;
6687 i.types[this_operand] = operand_type_and (i.types[this_operand],
6688 types);
6691 return 1;
6694 static char *
6695 i386_scale (char *scale)
6697 offsetT val;
6698 char *save = input_line_pointer;
6700 input_line_pointer = scale;
6701 val = get_absolute_expression ();
6703 switch (val)
6705 case 1:
6706 i.log2_scale_factor = 0;
6707 break;
6708 case 2:
6709 i.log2_scale_factor = 1;
6710 break;
6711 case 4:
6712 i.log2_scale_factor = 2;
6713 break;
6714 case 8:
6715 i.log2_scale_factor = 3;
6716 break;
6717 default:
6719 char sep = *input_line_pointer;
6721 *input_line_pointer = '\0';
6722 as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
6723 scale);
6724 *input_line_pointer = sep;
6725 input_line_pointer = save;
6726 return NULL;
6729 if (i.log2_scale_factor != 0 && i.index_reg == 0)
6731 as_warn (_("scale factor of %d without an index register"),
6732 1 << i.log2_scale_factor);
6733 i.log2_scale_factor = 0;
6735 scale = input_line_pointer;
6736 input_line_pointer = save;
6737 return scale;
6740 static int
6741 i386_displacement (char *disp_start, char *disp_end)
6743 expressionS *exp;
6744 segT exp_seg = 0;
6745 char *save_input_line_pointer;
6746 char *gotfree_input_line;
6747 int override;
6748 i386_operand_type bigdisp, types = anydisp;
6749 int ret;
6751 if (i.disp_operands == MAX_MEMORY_OPERANDS)
6753 as_bad (_("at most %d displacement operands are allowed"),
6754 MAX_MEMORY_OPERANDS);
6755 return 0;
6758 operand_type_set (&bigdisp, 0);
6759 if ((i.types[this_operand].bitfield.jumpabsolute)
6760 || (!current_templates->start->opcode_modifier.jump
6761 && !current_templates->start->opcode_modifier.jumpdword))
6763 bigdisp.bitfield.disp32 = 1;
6764 override = (i.prefix[ADDR_PREFIX] != 0);
6765 if (flag_code == CODE_64BIT)
6767 if (!override)
6769 bigdisp.bitfield.disp32s = 1;
6770 bigdisp.bitfield.disp64 = 1;
6773 else if ((flag_code == CODE_16BIT) ^ override)
6775 bigdisp.bitfield.disp32 = 0;
6776 bigdisp.bitfield.disp16 = 1;
6779 else
6781 /* For PC-relative branches, the width of the displacement
6782 is dependent upon data size, not address size. */
6783 override = (i.prefix[DATA_PREFIX] != 0);
6784 if (flag_code == CODE_64BIT)
6786 if (override || i.suffix == WORD_MNEM_SUFFIX)
6787 bigdisp.bitfield.disp16 = 1;
6788 else
6790 bigdisp.bitfield.disp32 = 1;
6791 bigdisp.bitfield.disp32s = 1;
6794 else
6796 if (!override)
6797 override = (i.suffix == (flag_code != CODE_16BIT
6798 ? WORD_MNEM_SUFFIX
6799 : LONG_MNEM_SUFFIX));
6800 bigdisp.bitfield.disp32 = 1;
6801 if ((flag_code == CODE_16BIT) ^ override)
6803 bigdisp.bitfield.disp32 = 0;
6804 bigdisp.bitfield.disp16 = 1;
6808 i.types[this_operand] = operand_type_or (i.types[this_operand],
6809 bigdisp);
6811 exp = &disp_expressions[i.disp_operands];
6812 i.op[this_operand].disps = exp;
6813 i.disp_operands++;
6814 save_input_line_pointer = input_line_pointer;
6815 input_line_pointer = disp_start;
6816 END_STRING_AND_SAVE (disp_end);
6818 #ifndef GCC_ASM_O_HACK
6819 #define GCC_ASM_O_HACK 0
6820 #endif
6821 #if GCC_ASM_O_HACK
6822 END_STRING_AND_SAVE (disp_end + 1);
6823 if (i.types[this_operand].bitfield.baseIndex
6824 && displacement_string_end[-1] == '+')
6826 /* This hack is to avoid a warning when using the "o"
6827 constraint within gcc asm statements.
6828 For instance:
6830 #define _set_tssldt_desc(n,addr,limit,type) \
6831 __asm__ __volatile__ ( \
6832 "movw %w2,%0\n\t" \
6833 "movw %w1,2+%0\n\t" \
6834 "rorl $16,%1\n\t" \
6835 "movb %b1,4+%0\n\t" \
6836 "movb %4,5+%0\n\t" \
6837 "movb $0,6+%0\n\t" \
6838 "movb %h1,7+%0\n\t" \
6839 "rorl $16,%1" \
6840 : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type))
6842 This works great except that the output assembler ends
6843 up looking a bit weird if it turns out that there is
6844 no offset. You end up producing code that looks like:
6846 #APP
6847 movw $235,(%eax)
6848 movw %dx,2+(%eax)
6849 rorl $16,%edx
6850 movb %dl,4+(%eax)
6851 movb $137,5+(%eax)
6852 movb $0,6+(%eax)
6853 movb %dh,7+(%eax)
6854 rorl $16,%edx
6855 #NO_APP
6857 So here we provide the missing zero. */
6859 *displacement_string_end = '0';
6861 #endif
6862 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
6863 if (gotfree_input_line)
6864 input_line_pointer = gotfree_input_line;
6866 exp_seg = expression (exp);
6868 SKIP_WHITESPACE ();
6869 if (*input_line_pointer)
6870 as_bad (_("junk `%s' after expression"), input_line_pointer);
6871 #if GCC_ASM_O_HACK
6872 RESTORE_END_STRING (disp_end + 1);
6873 #endif
6874 input_line_pointer = save_input_line_pointer;
6875 if (gotfree_input_line)
6877 free (gotfree_input_line);
6879 if (exp->X_op == O_constant || exp->X_op == O_register)
6880 exp->X_op = O_illegal;
6883 ret = i386_finalize_displacement (exp_seg, exp, types, disp_start);
6885 RESTORE_END_STRING (disp_end);
6887 return ret;
6890 static int
6891 i386_finalize_displacement (segT exp_seg ATTRIBUTE_UNUSED, expressionS *exp,
6892 i386_operand_type types, const char *disp_start)
6894 i386_operand_type bigdisp;
6895 int ret = 1;
6897 /* We do this to make sure that the section symbol is in
6898 the symbol table. We will ultimately change the relocation
6899 to be relative to the beginning of the section. */
6900 if (i.reloc[this_operand] == BFD_RELOC_386_GOTOFF
6901 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL
6902 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
6904 if (exp->X_op != O_symbol)
6905 goto inv_disp;
6907 if (S_IS_LOCAL (exp->X_add_symbol)
6908 && S_GET_SEGMENT (exp->X_add_symbol) != undefined_section
6909 && S_GET_SEGMENT (exp->X_add_symbol) != expr_section)
6910 section_symbol (S_GET_SEGMENT (exp->X_add_symbol));
6911 exp->X_op = O_subtract;
6912 exp->X_op_symbol = GOT_symbol;
6913 if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL)
6914 i.reloc[this_operand] = BFD_RELOC_32_PCREL;
6915 else if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
6916 i.reloc[this_operand] = BFD_RELOC_64;
6917 else
6918 i.reloc[this_operand] = BFD_RELOC_32;
6921 else if (exp->X_op == O_absent
6922 || exp->X_op == O_illegal
6923 || exp->X_op == O_big)
6925 inv_disp:
6926 as_bad (_("missing or invalid displacement expression `%s'"),
6927 disp_start);
6928 ret = 0;
6931 else if (flag_code == CODE_64BIT
6932 && !i.prefix[ADDR_PREFIX]
6933 && exp->X_op == O_constant)
6935 /* Since displacement is signed extended to 64bit, don't allow
6936 disp32 and turn off disp32s if they are out of range. */
6937 i.types[this_operand].bitfield.disp32 = 0;
6938 if (!fits_in_signed_long (exp->X_add_number))
6940 i.types[this_operand].bitfield.disp32s = 0;
6941 if (i.types[this_operand].bitfield.baseindex)
6943 as_bad (_("0x%lx out range of signed 32bit displacement"),
6944 (long) exp->X_add_number);
6945 ret = 0;
6950 #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
6951 else if (exp->X_op != O_constant
6952 && OUTPUT_FLAVOR == bfd_target_aout_flavour
6953 && exp_seg != absolute_section
6954 && exp_seg != text_section
6955 && exp_seg != data_section
6956 && exp_seg != bss_section
6957 && exp_seg != undefined_section
6958 && !bfd_is_com_section (exp_seg))
6960 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
6961 ret = 0;
6963 #endif
6965 /* Check if this is a displacement only operand. */
6966 bigdisp = i.types[this_operand];
6967 bigdisp.bitfield.disp8 = 0;
6968 bigdisp.bitfield.disp16 = 0;
6969 bigdisp.bitfield.disp32 = 0;
6970 bigdisp.bitfield.disp32s = 0;
6971 bigdisp.bitfield.disp64 = 0;
6972 if (operand_type_all_zero (&bigdisp))
6973 i.types[this_operand] = operand_type_and (i.types[this_operand],
6974 types);
6976 return ret;
6979 /* Make sure the memory operand we've been dealt is valid.
6980 Return 1 on success, 0 on a failure. */
6982 static int
6983 i386_index_check (const char *operand_string)
6985 int ok;
6986 const char *kind = "base/index";
6987 #if INFER_ADDR_PREFIX
6988 int fudged = 0;
6990 tryprefix:
6991 #endif
6992 ok = 1;
6993 if (current_templates->start->opcode_modifier.isstring
6994 && !current_templates->start->opcode_modifier.immext
6995 && (current_templates->end[-1].opcode_modifier.isstring
6996 || i.mem_operands))
6998 /* Memory operands of string insns are special in that they only allow
6999 a single register (rDI, rSI, or rBX) as their memory address. */
7000 unsigned int expected;
7002 kind = "string address";
7004 if (current_templates->start->opcode_modifier.w)
7006 i386_operand_type type = current_templates->end[-1].operand_types[0];
7008 if (!type.bitfield.baseindex
7009 || ((!i.mem_operands != !intel_syntax)
7010 && current_templates->end[-1].operand_types[1]
7011 .bitfield.baseindex))
7012 type = current_templates->end[-1].operand_types[1];
7013 expected = type.bitfield.esseg ? 7 /* rDI */ : 6 /* rSI */;
7015 else
7016 expected = 3 /* rBX */;
7018 if (!i.base_reg || i.index_reg
7019 || operand_type_check (i.types[this_operand], disp))
7020 ok = -1;
7021 else if (!(flag_code == CODE_64BIT
7022 ? i.prefix[ADDR_PREFIX]
7023 ? i.base_reg->reg_type.bitfield.reg32
7024 : i.base_reg->reg_type.bitfield.reg64
7025 : (flag_code == CODE_16BIT) ^ !i.prefix[ADDR_PREFIX]
7026 ? i.base_reg->reg_type.bitfield.reg32
7027 : i.base_reg->reg_type.bitfield.reg16))
7028 ok = 0;
7029 else if (i.base_reg->reg_num != expected)
7030 ok = -1;
7032 if (ok < 0)
7034 unsigned int j;
7036 for (j = 0; j < i386_regtab_size; ++j)
7037 if ((flag_code == CODE_64BIT
7038 ? i.prefix[ADDR_PREFIX]
7039 ? i386_regtab[j].reg_type.bitfield.reg32
7040 : i386_regtab[j].reg_type.bitfield.reg64
7041 : (flag_code == CODE_16BIT) ^ !i.prefix[ADDR_PREFIX]
7042 ? i386_regtab[j].reg_type.bitfield.reg32
7043 : i386_regtab[j].reg_type.bitfield.reg16)
7044 && i386_regtab[j].reg_num == expected)
7045 break;
7046 gas_assert (j < i386_regtab_size);
7047 as_warn (_("`%s' is not valid here (expected `%c%s%s%c')"),
7048 operand_string,
7049 intel_syntax ? '[' : '(',
7050 register_prefix,
7051 i386_regtab[j].reg_name,
7052 intel_syntax ? ']' : ')');
7053 ok = 1;
7056 else if (flag_code == CODE_64BIT)
7058 if ((i.base_reg
7059 && ((i.prefix[ADDR_PREFIX] == 0
7060 && !i.base_reg->reg_type.bitfield.reg64)
7061 || (i.prefix[ADDR_PREFIX]
7062 && !i.base_reg->reg_type.bitfield.reg32))
7063 && (i.index_reg
7064 || i.base_reg->reg_num !=
7065 (i.prefix[ADDR_PREFIX] == 0 ? RegRip : RegEip)))
7066 || (i.index_reg
7067 && (!i.index_reg->reg_type.bitfield.baseindex
7068 || (i.prefix[ADDR_PREFIX] == 0
7069 && i.index_reg->reg_num != RegRiz
7070 && !i.index_reg->reg_type.bitfield.reg64
7072 || (i.prefix[ADDR_PREFIX]
7073 && i.index_reg->reg_num != RegEiz
7074 && !i.index_reg->reg_type.bitfield.reg32))))
7075 ok = 0;
7077 else
7079 if ((flag_code == CODE_16BIT) ^ (i.prefix[ADDR_PREFIX] != 0))
7081 /* 16bit checks. */
7082 if ((i.base_reg
7083 && (!i.base_reg->reg_type.bitfield.reg16
7084 || !i.base_reg->reg_type.bitfield.baseindex))
7085 || (i.index_reg
7086 && (!i.index_reg->reg_type.bitfield.reg16
7087 || !i.index_reg->reg_type.bitfield.baseindex
7088 || !(i.base_reg
7089 && i.base_reg->reg_num < 6
7090 && i.index_reg->reg_num >= 6
7091 && i.log2_scale_factor == 0))))
7092 ok = 0;
7094 else
7096 /* 32bit checks. */
7097 if ((i.base_reg
7098 && !i.base_reg->reg_type.bitfield.reg32)
7099 || (i.index_reg
7100 && ((!i.index_reg->reg_type.bitfield.reg32
7101 && i.index_reg->reg_num != RegEiz)
7102 || !i.index_reg->reg_type.bitfield.baseindex)))
7103 ok = 0;
7106 if (!ok)
7108 #if INFER_ADDR_PREFIX
7109 if (!i.mem_operands && !i.prefix[ADDR_PREFIX])
7111 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
7112 i.prefixes += 1;
7113 /* Change the size of any displacement too. At most one of
7114 Disp16 or Disp32 is set.
7115 FIXME. There doesn't seem to be any real need for separate
7116 Disp16 and Disp32 flags. The same goes for Imm16 and Imm32.
7117 Removing them would probably clean up the code quite a lot. */
7118 if (flag_code != CODE_64BIT
7119 && (i.types[this_operand].bitfield.disp16
7120 || i.types[this_operand].bitfield.disp32))
7121 i.types[this_operand]
7122 = operand_type_xor (i.types[this_operand], disp16_32);
7123 fudged = 1;
7124 goto tryprefix;
7126 if (fudged)
7127 as_bad (_("`%s' is not a valid %s expression"),
7128 operand_string,
7129 kind);
7130 else
7131 #endif
7132 as_bad (_("`%s' is not a valid %s-bit %s expression"),
7133 operand_string,
7134 flag_code_names[i.prefix[ADDR_PREFIX]
7135 ? flag_code == CODE_32BIT
7136 ? CODE_16BIT
7137 : CODE_32BIT
7138 : flag_code],
7139 kind);
7141 return ok;
7144 /* Parse OPERAND_STRING into the i386_insn structure I. Returns zero
7145 on error. */
7147 static int
7148 i386_att_operand (char *operand_string)
7150 const reg_entry *r;
7151 char *end_op;
7152 char *op_string = operand_string;
7154 if (is_space_char (*op_string))
7155 ++op_string;
7157 /* We check for an absolute prefix (differentiating,
7158 for example, 'jmp pc_relative_label' from 'jmp *absolute_label'. */
7159 if (*op_string == ABSOLUTE_PREFIX)
7161 ++op_string;
7162 if (is_space_char (*op_string))
7163 ++op_string;
7164 i.types[this_operand].bitfield.jumpabsolute = 1;
7167 /* Check if operand is a register. */
7168 if ((r = parse_register (op_string, &end_op)) != NULL)
7170 i386_operand_type temp;
7172 /* Check for a segment override by searching for ':' after a
7173 segment register. */
7174 op_string = end_op;
7175 if (is_space_char (*op_string))
7176 ++op_string;
7177 if (*op_string == ':'
7178 && (r->reg_type.bitfield.sreg2
7179 || r->reg_type.bitfield.sreg3))
7181 switch (r->reg_num)
7183 case 0:
7184 i.seg[i.mem_operands] = &es;
7185 break;
7186 case 1:
7187 i.seg[i.mem_operands] = &cs;
7188 break;
7189 case 2:
7190 i.seg[i.mem_operands] = &ss;
7191 break;
7192 case 3:
7193 i.seg[i.mem_operands] = &ds;
7194 break;
7195 case 4:
7196 i.seg[i.mem_operands] = &fs;
7197 break;
7198 case 5:
7199 i.seg[i.mem_operands] = &gs;
7200 break;
7203 /* Skip the ':' and whitespace. */
7204 ++op_string;
7205 if (is_space_char (*op_string))
7206 ++op_string;
7208 if (!is_digit_char (*op_string)
7209 && !is_identifier_char (*op_string)
7210 && *op_string != '('
7211 && *op_string != ABSOLUTE_PREFIX)
7213 as_bad (_("bad memory operand `%s'"), op_string);
7214 return 0;
7216 /* Handle case of %es:*foo. */
7217 if (*op_string == ABSOLUTE_PREFIX)
7219 ++op_string;
7220 if (is_space_char (*op_string))
7221 ++op_string;
7222 i.types[this_operand].bitfield.jumpabsolute = 1;
7224 goto do_memory_reference;
7226 if (*op_string)
7228 as_bad (_("junk `%s' after register"), op_string);
7229 return 0;
7231 temp = r->reg_type;
7232 temp.bitfield.baseindex = 0;
7233 i.types[this_operand] = operand_type_or (i.types[this_operand],
7234 temp);
7235 i.types[this_operand].bitfield.unspecified = 0;
7236 i.op[this_operand].regs = r;
7237 i.reg_operands++;
7239 else if (*op_string == REGISTER_PREFIX)
7241 as_bad (_("bad register name `%s'"), op_string);
7242 return 0;
7244 else if (*op_string == IMMEDIATE_PREFIX)
7246 ++op_string;
7247 if (i.types[this_operand].bitfield.jumpabsolute)
7249 as_bad (_("immediate operand illegal with absolute jump"));
7250 return 0;
7252 if (!i386_immediate (op_string))
7253 return 0;
7255 else if (is_digit_char (*op_string)
7256 || is_identifier_char (*op_string)
7257 || *op_string == '(')
7259 /* This is a memory reference of some sort. */
7260 char *base_string;
7262 /* Start and end of displacement string expression (if found). */
7263 char *displacement_string_start;
7264 char *displacement_string_end;
7266 do_memory_reference:
7267 if ((i.mem_operands == 1
7268 && !current_templates->start->opcode_modifier.isstring)
7269 || i.mem_operands == 2)
7271 as_bad (_("too many memory references for `%s'"),
7272 current_templates->start->name);
7273 return 0;
7276 /* Check for base index form. We detect the base index form by
7277 looking for an ')' at the end of the operand, searching
7278 for the '(' matching it, and finding a REGISTER_PREFIX or ','
7279 after the '('. */
7280 base_string = op_string + strlen (op_string);
7282 --base_string;
7283 if (is_space_char (*base_string))
7284 --base_string;
7286 /* If we only have a displacement, set-up for it to be parsed later. */
7287 displacement_string_start = op_string;
7288 displacement_string_end = base_string + 1;
7290 if (*base_string == ')')
7292 char *temp_string;
7293 unsigned int parens_balanced = 1;
7294 /* We've already checked that the number of left & right ()'s are
7295 equal, so this loop will not be infinite. */
7298 base_string--;
7299 if (*base_string == ')')
7300 parens_balanced++;
7301 if (*base_string == '(')
7302 parens_balanced--;
7304 while (parens_balanced);
7306 temp_string = base_string;
7308 /* Skip past '(' and whitespace. */
7309 ++base_string;
7310 if (is_space_char (*base_string))
7311 ++base_string;
7313 if (*base_string == ','
7314 || ((i.base_reg = parse_register (base_string, &end_op))
7315 != NULL))
7317 displacement_string_end = temp_string;
7319 i.types[this_operand].bitfield.baseindex = 1;
7321 if (i.base_reg)
7323 base_string = end_op;
7324 if (is_space_char (*base_string))
7325 ++base_string;
7328 /* There may be an index reg or scale factor here. */
7329 if (*base_string == ',')
7331 ++base_string;
7332 if (is_space_char (*base_string))
7333 ++base_string;
7335 if ((i.index_reg = parse_register (base_string, &end_op))
7336 != NULL)
7338 base_string = end_op;
7339 if (is_space_char (*base_string))
7340 ++base_string;
7341 if (*base_string == ',')
7343 ++base_string;
7344 if (is_space_char (*base_string))
7345 ++base_string;
7347 else if (*base_string != ')')
7349 as_bad (_("expecting `,' or `)' "
7350 "after index register in `%s'"),
7351 operand_string);
7352 return 0;
7355 else if (*base_string == REGISTER_PREFIX)
7357 as_bad (_("bad register name `%s'"), base_string);
7358 return 0;
7361 /* Check for scale factor. */
7362 if (*base_string != ')')
7364 char *end_scale = i386_scale (base_string);
7366 if (!end_scale)
7367 return 0;
7369 base_string = end_scale;
7370 if (is_space_char (*base_string))
7371 ++base_string;
7372 if (*base_string != ')')
7374 as_bad (_("expecting `)' "
7375 "after scale factor in `%s'"),
7376 operand_string);
7377 return 0;
7380 else if (!i.index_reg)
7382 as_bad (_("expecting index register or scale factor "
7383 "after `,'; got '%c'"),
7384 *base_string);
7385 return 0;
7388 else if (*base_string != ')')
7390 as_bad (_("expecting `,' or `)' "
7391 "after base register in `%s'"),
7392 operand_string);
7393 return 0;
7396 else if (*base_string == REGISTER_PREFIX)
7398 as_bad (_("bad register name `%s'"), base_string);
7399 return 0;
7403 /* If there's an expression beginning the operand, parse it,
7404 assuming displacement_string_start and
7405 displacement_string_end are meaningful. */
7406 if (displacement_string_start != displacement_string_end)
7408 if (!i386_displacement (displacement_string_start,
7409 displacement_string_end))
7410 return 0;
7413 /* Special case for (%dx) while doing input/output op. */
7414 if (i.base_reg
7415 && operand_type_equal (&i.base_reg->reg_type,
7416 &reg16_inoutportreg)
7417 && i.index_reg == 0
7418 && i.log2_scale_factor == 0
7419 && i.seg[i.mem_operands] == 0
7420 && !operand_type_check (i.types[this_operand], disp))
7422 i.types[this_operand] = inoutportreg;
7423 return 1;
7426 if (i386_index_check (operand_string) == 0)
7427 return 0;
7428 i.types[this_operand].bitfield.mem = 1;
7429 i.mem_operands++;
7431 else
7433 /* It's not a memory operand; argh! */
7434 as_bad (_("invalid char %s beginning operand %d `%s'"),
7435 output_invalid (*op_string),
7436 this_operand + 1,
7437 op_string);
7438 return 0;
7440 return 1; /* Normal return. */
7443 /* md_estimate_size_before_relax()
7445 Called just before relax() for rs_machine_dependent frags. The x86
7446 assembler uses these frags to handle variable size jump
7447 instructions.
7449 Any symbol that is now undefined will not become defined.
7450 Return the correct fr_subtype in the frag.
7451 Return the initial "guess for variable size of frag" to caller.
7452 The guess is actually the growth beyond the fixed part. Whatever
7453 we do to grow the fixed or variable part contributes to our
7454 returned value. */
7457 md_estimate_size_before_relax (fragP, segment)
7458 fragS *fragP;
7459 segT segment;
7461 /* We've already got fragP->fr_subtype right; all we have to do is
7462 check for un-relaxable symbols. On an ELF system, we can't relax
7463 an externally visible symbol, because it may be overridden by a
7464 shared library. */
7465 if (S_GET_SEGMENT (fragP->fr_symbol) != segment
7466 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
7467 || (IS_ELF
7468 && (S_IS_EXTERNAL (fragP->fr_symbol)
7469 || S_IS_WEAK (fragP->fr_symbol)
7470 || ((symbol_get_bfdsym (fragP->fr_symbol)->flags
7471 & BSF_GNU_INDIRECT_FUNCTION))))
7472 #endif
7473 #if defined (OBJ_COFF) && defined (TE_PE)
7474 || (OUTPUT_FLAVOR == bfd_target_coff_flavour
7475 && S_IS_WEAK (fragP->fr_symbol))
7476 #endif
7479 /* Symbol is undefined in this segment, or we need to keep a
7480 reloc so that weak symbols can be overridden. */
7481 int size = (fragP->fr_subtype & CODE16) ? 2 : 4;
7482 enum bfd_reloc_code_real reloc_type;
7483 unsigned char *opcode;
7484 int old_fr_fix;
7486 if (fragP->fr_var != NO_RELOC)
7487 reloc_type = (enum bfd_reloc_code_real) fragP->fr_var;
7488 else if (size == 2)
7489 reloc_type = BFD_RELOC_16_PCREL;
7490 else
7491 reloc_type = BFD_RELOC_32_PCREL;
7493 old_fr_fix = fragP->fr_fix;
7494 opcode = (unsigned char *) fragP->fr_opcode;
7496 switch (TYPE_FROM_RELAX_STATE (fragP->fr_subtype))
7498 case UNCOND_JUMP:
7499 /* Make jmp (0xeb) a (d)word displacement jump. */
7500 opcode[0] = 0xe9;
7501 fragP->fr_fix += size;
7502 fix_new (fragP, old_fr_fix, size,
7503 fragP->fr_symbol,
7504 fragP->fr_offset, 1,
7505 reloc_type);
7506 break;
7508 case COND_JUMP86:
7509 if (size == 2
7510 && (!no_cond_jump_promotion || fragP->fr_var != NO_RELOC))
7512 /* Negate the condition, and branch past an
7513 unconditional jump. */
7514 opcode[0] ^= 1;
7515 opcode[1] = 3;
7516 /* Insert an unconditional jump. */
7517 opcode[2] = 0xe9;
7518 /* We added two extra opcode bytes, and have a two byte
7519 offset. */
7520 fragP->fr_fix += 2 + 2;
7521 fix_new (fragP, old_fr_fix + 2, 2,
7522 fragP->fr_symbol,
7523 fragP->fr_offset, 1,
7524 reloc_type);
7525 break;
7527 /* Fall through. */
7529 case COND_JUMP:
7530 if (no_cond_jump_promotion && fragP->fr_var == NO_RELOC)
7532 fixS *fixP;
7534 fragP->fr_fix += 1;
7535 fixP = fix_new (fragP, old_fr_fix, 1,
7536 fragP->fr_symbol,
7537 fragP->fr_offset, 1,
7538 BFD_RELOC_8_PCREL);
7539 fixP->fx_signed = 1;
7540 break;
7543 /* This changes the byte-displacement jump 0x7N
7544 to the (d)word-displacement jump 0x0f,0x8N. */
7545 opcode[1] = opcode[0] + 0x10;
7546 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
7547 /* We've added an opcode byte. */
7548 fragP->fr_fix += 1 + size;
7549 fix_new (fragP, old_fr_fix + 1, size,
7550 fragP->fr_symbol,
7551 fragP->fr_offset, 1,
7552 reloc_type);
7553 break;
7555 default:
7556 BAD_CASE (fragP->fr_subtype);
7557 break;
7559 frag_wane (fragP);
7560 return fragP->fr_fix - old_fr_fix;
7563 /* Guess size depending on current relax state. Initially the relax
7564 state will correspond to a short jump and we return 1, because
7565 the variable part of the frag (the branch offset) is one byte
7566 long. However, we can relax a section more than once and in that
7567 case we must either set fr_subtype back to the unrelaxed state,
7568 or return the value for the appropriate branch. */
7569 return md_relax_table[fragP->fr_subtype].rlx_length;
7572 /* Called after relax() is finished.
7574 In: Address of frag.
7575 fr_type == rs_machine_dependent.
7576 fr_subtype is what the address relaxed to.
7578 Out: Any fixSs and constants are set up.
7579 Caller will turn frag into a ".space 0". */
7581 void
7582 md_convert_frag (abfd, sec, fragP)
7583 bfd *abfd ATTRIBUTE_UNUSED;
7584 segT sec ATTRIBUTE_UNUSED;
7585 fragS *fragP;
7587 unsigned char *opcode;
7588 unsigned char *where_to_put_displacement = NULL;
7589 offsetT target_address;
7590 offsetT opcode_address;
7591 unsigned int extension = 0;
7592 offsetT displacement_from_opcode_start;
7594 opcode = (unsigned char *) fragP->fr_opcode;
7596 /* Address we want to reach in file space. */
7597 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
7599 /* Address opcode resides at in file space. */
7600 opcode_address = fragP->fr_address + fragP->fr_fix;
7602 /* Displacement from opcode start to fill into instruction. */
7603 displacement_from_opcode_start = target_address - opcode_address;
7605 if ((fragP->fr_subtype & BIG) == 0)
7607 /* Don't have to change opcode. */
7608 extension = 1; /* 1 opcode + 1 displacement */
7609 where_to_put_displacement = &opcode[1];
7611 else
7613 if (no_cond_jump_promotion
7614 && TYPE_FROM_RELAX_STATE (fragP->fr_subtype) != UNCOND_JUMP)
7615 as_warn_where (fragP->fr_file, fragP->fr_line,
7616 _("long jump required"));
7618 switch (fragP->fr_subtype)
7620 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG):
7621 extension = 4; /* 1 opcode + 4 displacement */
7622 opcode[0] = 0xe9;
7623 where_to_put_displacement = &opcode[1];
7624 break;
7626 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16):
7627 extension = 2; /* 1 opcode + 2 displacement */
7628 opcode[0] = 0xe9;
7629 where_to_put_displacement = &opcode[1];
7630 break;
7632 case ENCODE_RELAX_STATE (COND_JUMP, BIG):
7633 case ENCODE_RELAX_STATE (COND_JUMP86, BIG):
7634 extension = 5; /* 2 opcode + 4 displacement */
7635 opcode[1] = opcode[0] + 0x10;
7636 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
7637 where_to_put_displacement = &opcode[2];
7638 break;
7640 case ENCODE_RELAX_STATE (COND_JUMP, BIG16):
7641 extension = 3; /* 2 opcode + 2 displacement */
7642 opcode[1] = opcode[0] + 0x10;
7643 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
7644 where_to_put_displacement = &opcode[2];
7645 break;
7647 case ENCODE_RELAX_STATE (COND_JUMP86, BIG16):
7648 extension = 4;
7649 opcode[0] ^= 1;
7650 opcode[1] = 3;
7651 opcode[2] = 0xe9;
7652 where_to_put_displacement = &opcode[3];
7653 break;
7655 default:
7656 BAD_CASE (fragP->fr_subtype);
7657 break;
7661 /* If size if less then four we are sure that the operand fits,
7662 but if it's 4, then it could be that the displacement is larger
7663 then -/+ 2GB. */
7664 if (DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype) == 4
7665 && object_64bit
7666 && ((addressT) (displacement_from_opcode_start - extension
7667 + ((addressT) 1 << 31))
7668 > (((addressT) 2 << 31) - 1)))
7670 as_bad_where (fragP->fr_file, fragP->fr_line,
7671 _("jump target out of range"));
7672 /* Make us emit 0. */
7673 displacement_from_opcode_start = extension;
7675 /* Now put displacement after opcode. */
7676 md_number_to_chars ((char *) where_to_put_displacement,
7677 (valueT) (displacement_from_opcode_start - extension),
7678 DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
7679 fragP->fr_fix += extension;
7682 /* Apply a fixup (fixS) to segment data, once it has been determined
7683 by our caller that we have all the info we need to fix it up.
7685 On the 386, immediates, displacements, and data pointers are all in
7686 the same (little-endian) format, so we don't need to care about which
7687 we are handling. */
7689 void
7690 md_apply_fix (fixP, valP, seg)
7691 /* The fix we're to put in. */
7692 fixS *fixP;
7693 /* Pointer to the value of the bits. */
7694 valueT *valP;
7695 /* Segment fix is from. */
7696 segT seg ATTRIBUTE_UNUSED;
7698 char *p = fixP->fx_where + fixP->fx_frag->fr_literal;
7699 valueT value = *valP;
7701 #if !defined (TE_Mach)
7702 if (fixP->fx_pcrel)
7704 switch (fixP->fx_r_type)
7706 default:
7707 break;
7709 case BFD_RELOC_64:
7710 fixP->fx_r_type = BFD_RELOC_64_PCREL;
7711 break;
7712 case BFD_RELOC_32:
7713 case BFD_RELOC_X86_64_32S:
7714 fixP->fx_r_type = BFD_RELOC_32_PCREL;
7715 break;
7716 case BFD_RELOC_16:
7717 fixP->fx_r_type = BFD_RELOC_16_PCREL;
7718 break;
7719 case BFD_RELOC_8:
7720 fixP->fx_r_type = BFD_RELOC_8_PCREL;
7721 break;
7725 if (fixP->fx_addsy != NULL
7726 && (fixP->fx_r_type == BFD_RELOC_32_PCREL
7727 || fixP->fx_r_type == BFD_RELOC_64_PCREL
7728 || fixP->fx_r_type == BFD_RELOC_16_PCREL
7729 || fixP->fx_r_type == BFD_RELOC_8_PCREL)
7730 && !use_rela_relocations)
7732 /* This is a hack. There should be a better way to handle this.
7733 This covers for the fact that bfd_install_relocation will
7734 subtract the current location (for partial_inplace, PC relative
7735 relocations); see more below. */
7736 #ifndef OBJ_AOUT
7737 if (IS_ELF
7738 #ifdef TE_PE
7739 || OUTPUT_FLAVOR == bfd_target_coff_flavour
7740 #endif
7742 value += fixP->fx_where + fixP->fx_frag->fr_address;
7743 #endif
7744 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
7745 if (IS_ELF)
7747 segT sym_seg = S_GET_SEGMENT (fixP->fx_addsy);
7749 if ((sym_seg == seg
7750 || (symbol_section_p (fixP->fx_addsy)
7751 && sym_seg != absolute_section))
7752 && !generic_force_reloc (fixP))
7754 /* Yes, we add the values in twice. This is because
7755 bfd_install_relocation subtracts them out again. I think
7756 bfd_install_relocation is broken, but I don't dare change
7757 it. FIXME. */
7758 value += fixP->fx_where + fixP->fx_frag->fr_address;
7761 #endif
7762 #if defined (OBJ_COFF) && defined (TE_PE)
7763 /* For some reason, the PE format does not store a
7764 section address offset for a PC relative symbol. */
7765 if (S_GET_SEGMENT (fixP->fx_addsy) != seg
7766 || S_IS_WEAK (fixP->fx_addsy))
7767 value += md_pcrel_from (fixP);
7768 #endif
7770 #if defined (OBJ_COFF) && defined (TE_PE)
7771 if (fixP->fx_addsy != NULL && S_IS_WEAK (fixP->fx_addsy))
7773 value -= S_GET_VALUE (fixP->fx_addsy);
7775 #endif
7777 /* Fix a few things - the dynamic linker expects certain values here,
7778 and we must not disappoint it. */
7779 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
7780 if (IS_ELF && fixP->fx_addsy)
7781 switch (fixP->fx_r_type)
7783 case BFD_RELOC_386_PLT32:
7784 case BFD_RELOC_X86_64_PLT32:
7785 /* Make the jump instruction point to the address of the operand. At
7786 runtime we merely add the offset to the actual PLT entry. */
7787 value = -4;
7788 break;
7790 case BFD_RELOC_386_TLS_GD:
7791 case BFD_RELOC_386_TLS_LDM:
7792 case BFD_RELOC_386_TLS_IE_32:
7793 case BFD_RELOC_386_TLS_IE:
7794 case BFD_RELOC_386_TLS_GOTIE:
7795 case BFD_RELOC_386_TLS_GOTDESC:
7796 case BFD_RELOC_X86_64_TLSGD:
7797 case BFD_RELOC_X86_64_TLSLD:
7798 case BFD_RELOC_X86_64_GOTTPOFF:
7799 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
7800 value = 0; /* Fully resolved at runtime. No addend. */
7801 /* Fallthrough */
7802 case BFD_RELOC_386_TLS_LE:
7803 case BFD_RELOC_386_TLS_LDO_32:
7804 case BFD_RELOC_386_TLS_LE_32:
7805 case BFD_RELOC_X86_64_DTPOFF32:
7806 case BFD_RELOC_X86_64_DTPOFF64:
7807 case BFD_RELOC_X86_64_TPOFF32:
7808 case BFD_RELOC_X86_64_TPOFF64:
7809 S_SET_THREAD_LOCAL (fixP->fx_addsy);
7810 break;
7812 case BFD_RELOC_386_TLS_DESC_CALL:
7813 case BFD_RELOC_X86_64_TLSDESC_CALL:
7814 value = 0; /* Fully resolved at runtime. No addend. */
7815 S_SET_THREAD_LOCAL (fixP->fx_addsy);
7816 fixP->fx_done = 0;
7817 return;
7819 case BFD_RELOC_386_GOT32:
7820 case BFD_RELOC_X86_64_GOT32:
7821 value = 0; /* Fully resolved at runtime. No addend. */
7822 break;
7824 case BFD_RELOC_VTABLE_INHERIT:
7825 case BFD_RELOC_VTABLE_ENTRY:
7826 fixP->fx_done = 0;
7827 return;
7829 default:
7830 break;
7832 #endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) */
7833 *valP = value;
7834 #endif /* !defined (TE_Mach) */
7836 /* Are we finished with this relocation now? */
7837 if (fixP->fx_addsy == NULL)
7838 fixP->fx_done = 1;
7839 #if defined (OBJ_COFF) && defined (TE_PE)
7840 else if (fixP->fx_addsy != NULL && S_IS_WEAK (fixP->fx_addsy))
7842 fixP->fx_done = 0;
7843 /* Remember value for tc_gen_reloc. */
7844 fixP->fx_addnumber = value;
7845 /* Clear out the frag for now. */
7846 value = 0;
7848 #endif
7849 else if (use_rela_relocations)
7851 fixP->fx_no_overflow = 1;
7852 /* Remember value for tc_gen_reloc. */
7853 fixP->fx_addnumber = value;
7854 value = 0;
7857 md_number_to_chars (p, value, fixP->fx_size);
7860 char *
7861 md_atof (int type, char *litP, int *sizeP)
7863 /* This outputs the LITTLENUMs in REVERSE order;
7864 in accord with the bigendian 386. */
7865 return ieee_md_atof (type, litP, sizeP, FALSE);
7868 static char output_invalid_buf[sizeof (unsigned char) * 2 + 6];
7870 static char *
7871 output_invalid (int c)
7873 if (ISPRINT (c))
7874 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
7875 "'%c'", c);
7876 else
7877 snprintf (output_invalid_buf, sizeof (output_invalid_buf),
7878 "(0x%x)", (unsigned char) c);
7879 return output_invalid_buf;
7882 /* REG_STRING starts *before* REGISTER_PREFIX. */
7884 static const reg_entry *
7885 parse_real_register (char *reg_string, char **end_op)
7887 char *s = reg_string;
7888 char *p;
7889 char reg_name_given[MAX_REG_NAME_SIZE + 1];
7890 const reg_entry *r;
7892 /* Skip possible REGISTER_PREFIX and possible whitespace. */
7893 if (*s == REGISTER_PREFIX)
7894 ++s;
7896 if (is_space_char (*s))
7897 ++s;
7899 p = reg_name_given;
7900 while ((*p++ = register_chars[(unsigned char) *s]) != '\0')
7902 if (p >= reg_name_given + MAX_REG_NAME_SIZE)
7903 return (const reg_entry *) NULL;
7904 s++;
7907 /* For naked regs, make sure that we are not dealing with an identifier.
7908 This prevents confusing an identifier like `eax_var' with register
7909 `eax'. */
7910 if (allow_naked_reg && identifier_chars[(unsigned char) *s])
7911 return (const reg_entry *) NULL;
7913 *end_op = s;
7915 r = (const reg_entry *) hash_find (reg_hash, reg_name_given);
7917 /* Handle floating point regs, allowing spaces in the (i) part. */
7918 if (r == i386_regtab /* %st is first entry of table */)
7920 if (is_space_char (*s))
7921 ++s;
7922 if (*s == '(')
7924 ++s;
7925 if (is_space_char (*s))
7926 ++s;
7927 if (*s >= '0' && *s <= '7')
7929 int fpr = *s - '0';
7930 ++s;
7931 if (is_space_char (*s))
7932 ++s;
7933 if (*s == ')')
7935 *end_op = s + 1;
7936 r = (const reg_entry *) hash_find (reg_hash, "st(0)");
7937 know (r);
7938 return r + fpr;
7941 /* We have "%st(" then garbage. */
7942 return (const reg_entry *) NULL;
7946 if (r == NULL || allow_pseudo_reg)
7947 return r;
7949 if (operand_type_all_zero (&r->reg_type))
7950 return (const reg_entry *) NULL;
7952 if ((r->reg_type.bitfield.reg32
7953 || r->reg_type.bitfield.sreg3
7954 || r->reg_type.bitfield.control
7955 || r->reg_type.bitfield.debug
7956 || r->reg_type.bitfield.test)
7957 && !cpu_arch_flags.bitfield.cpui386)
7958 return (const reg_entry *) NULL;
7960 if (r->reg_type.bitfield.floatreg
7961 && !cpu_arch_flags.bitfield.cpu8087
7962 && !cpu_arch_flags.bitfield.cpu287
7963 && !cpu_arch_flags.bitfield.cpu387)
7964 return (const reg_entry *) NULL;
7966 if (r->reg_type.bitfield.regmmx && !cpu_arch_flags.bitfield.cpummx)
7967 return (const reg_entry *) NULL;
7969 if (r->reg_type.bitfield.regxmm && !cpu_arch_flags.bitfield.cpusse)
7970 return (const reg_entry *) NULL;
7972 if (r->reg_type.bitfield.regymm && !cpu_arch_flags.bitfield.cpuavx)
7973 return (const reg_entry *) NULL;
7975 /* Don't allow fake index register unless allow_index_reg isn't 0. */
7976 if (!allow_index_reg
7977 && (r->reg_num == RegEiz || r->reg_num == RegRiz))
7978 return (const reg_entry *) NULL;
7980 if (((r->reg_flags & (RegRex64 | RegRex))
7981 || r->reg_type.bitfield.reg64)
7982 && (!cpu_arch_flags.bitfield.cpulm
7983 || !operand_type_equal (&r->reg_type, &control))
7984 && flag_code != CODE_64BIT)
7985 return (const reg_entry *) NULL;
7987 if (r->reg_type.bitfield.sreg3 && r->reg_num == RegFlat && !intel_syntax)
7988 return (const reg_entry *) NULL;
7990 return r;
7993 /* REG_STRING starts *before* REGISTER_PREFIX. */
7995 static const reg_entry *
7996 parse_register (char *reg_string, char **end_op)
7998 const reg_entry *r;
8000 if (*reg_string == REGISTER_PREFIX || allow_naked_reg)
8001 r = parse_real_register (reg_string, end_op);
8002 else
8003 r = NULL;
8004 if (!r)
8006 char *save = input_line_pointer;
8007 char c;
8008 symbolS *symbolP;
8010 input_line_pointer = reg_string;
8011 c = get_symbol_end ();
8012 symbolP = symbol_find (reg_string);
8013 if (symbolP && S_GET_SEGMENT (symbolP) == reg_section)
8015 const expressionS *e = symbol_get_value_expression (symbolP);
8017 know (e->X_op == O_register);
8018 know (e->X_add_number >= 0
8019 && (valueT) e->X_add_number < i386_regtab_size);
8020 r = i386_regtab + e->X_add_number;
8021 *end_op = input_line_pointer;
8023 *input_line_pointer = c;
8024 input_line_pointer = save;
8026 return r;
8030 i386_parse_name (char *name, expressionS *e, char *nextcharP)
8032 const reg_entry *r;
8033 char *end = input_line_pointer;
8035 *end = *nextcharP;
8036 r = parse_register (name, &input_line_pointer);
8037 if (r && end <= input_line_pointer)
8039 *nextcharP = *input_line_pointer;
8040 *input_line_pointer = 0;
8041 e->X_op = O_register;
8042 e->X_add_number = r - i386_regtab;
8043 return 1;
8045 input_line_pointer = end;
8046 *end = 0;
8047 return intel_syntax ? i386_intel_parse_name (name, e) : 0;
8050 void
8051 md_operand (expressionS *e)
8053 char *end;
8054 const reg_entry *r;
8056 switch (*input_line_pointer)
8058 case REGISTER_PREFIX:
8059 r = parse_real_register (input_line_pointer, &end);
8060 if (r)
8062 e->X_op = O_register;
8063 e->X_add_number = r - i386_regtab;
8064 input_line_pointer = end;
8066 break;
8068 case '[':
8069 gas_assert (intel_syntax);
8070 end = input_line_pointer++;
8071 expression (e);
8072 if (*input_line_pointer == ']')
8074 ++input_line_pointer;
8075 e->X_op_symbol = make_expr_symbol (e);
8076 e->X_add_symbol = NULL;
8077 e->X_add_number = 0;
8078 e->X_op = O_index;
8080 else
8082 e->X_op = O_absent;
8083 input_line_pointer = end;
8085 break;
8090 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8091 const char *md_shortopts = "kVQ:sqn";
8092 #else
8093 const char *md_shortopts = "qn";
8094 #endif
8096 #define OPTION_32 (OPTION_MD_BASE + 0)
8097 #define OPTION_64 (OPTION_MD_BASE + 1)
8098 #define OPTION_DIVIDE (OPTION_MD_BASE + 2)
8099 #define OPTION_MARCH (OPTION_MD_BASE + 3)
8100 #define OPTION_MTUNE (OPTION_MD_BASE + 4)
8101 #define OPTION_MMNEMONIC (OPTION_MD_BASE + 5)
8102 #define OPTION_MSYNTAX (OPTION_MD_BASE + 6)
8103 #define OPTION_MINDEX_REG (OPTION_MD_BASE + 7)
8104 #define OPTION_MNAKED_REG (OPTION_MD_BASE + 8)
8105 #define OPTION_MOLD_GCC (OPTION_MD_BASE + 9)
8106 #define OPTION_MSSE2AVX (OPTION_MD_BASE + 10)
8107 #define OPTION_MSSE_CHECK (OPTION_MD_BASE + 11)
8108 #define OPTION_MAVXSCALAR (OPTION_MD_BASE + 12)
8109 #define OPTION_N32 (OPTION_MD_BASE + 13)
8111 struct option md_longopts[] =
8113 {"32", no_argument, NULL, OPTION_32},
8114 #if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
8115 || defined (TE_PE) || defined (TE_PEP))
8116 {"64", no_argument, NULL, OPTION_64},
8117 #endif
8118 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8119 {"n32", no_argument, NULL, OPTION_N32},
8120 #endif
8121 {"divide", no_argument, NULL, OPTION_DIVIDE},
8122 {"march", required_argument, NULL, OPTION_MARCH},
8123 {"mtune", required_argument, NULL, OPTION_MTUNE},
8124 {"mmnemonic", required_argument, NULL, OPTION_MMNEMONIC},
8125 {"msyntax", required_argument, NULL, OPTION_MSYNTAX},
8126 {"mindex-reg", no_argument, NULL, OPTION_MINDEX_REG},
8127 {"mnaked-reg", no_argument, NULL, OPTION_MNAKED_REG},
8128 {"mold-gcc", no_argument, NULL, OPTION_MOLD_GCC},
8129 {"msse2avx", no_argument, NULL, OPTION_MSSE2AVX},
8130 {"msse-check", required_argument, NULL, OPTION_MSSE_CHECK},
8131 {"mavxscalar", required_argument, NULL, OPTION_MAVXSCALAR},
8132 {NULL, no_argument, NULL, 0}
8134 size_t md_longopts_size = sizeof (md_longopts);
8137 md_parse_option (int c, char *arg)
8139 unsigned int j;
8140 char *arch, *next;
8142 switch (c)
8144 case 'n':
8145 optimize_align_code = 0;
8146 break;
8148 case 'q':
8149 quiet_warnings = 1;
8150 break;
8152 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8153 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
8154 should be emitted or not. FIXME: Not implemented. */
8155 case 'Q':
8156 break;
8158 /* -V: SVR4 argument to print version ID. */
8159 case 'V':
8160 print_version_id ();
8161 break;
8163 /* -k: Ignore for FreeBSD compatibility. */
8164 case 'k':
8165 break;
8167 case 's':
8168 /* -s: On i386 Solaris, this tells the native assembler to use
8169 .stab instead of .stab.excl. We always use .stab anyhow. */
8170 break;
8171 #endif
8172 #if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
8173 || defined (TE_PE) || defined (TE_PEP))
8174 case OPTION_64:
8176 const char **list, **l;
8178 list = bfd_target_list ();
8179 for (l = list; *l != NULL; l++)
8180 if (CONST_STRNEQ (*l, "elf64-x86-64")
8181 || strcmp (*l, "coff-x86-64") == 0
8182 || strcmp (*l, "pe-x86-64") == 0
8183 || strcmp (*l, "pei-x86-64") == 0)
8185 default_arch = "x86_64";
8186 break;
8188 if (*l == NULL)
8189 as_fatal (_("No compiled in support for x86_64"));
8190 free (list);
8192 break;
8193 #endif
8195 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8196 case OPTION_N32:
8197 if (IS_ELF)
8199 const char **list, **l;
8201 list = bfd_target_list ();
8202 for (l = list; *l != NULL; l++)
8203 if (CONST_STRNEQ (*l, "elf32-x86-64"))
8205 default_arch = "x86_64:32";
8206 break;
8208 if (*l == NULL)
8209 as_fatal (_("No compiled in support for 32bit x86_64"));
8210 free (list);
8212 else
8213 as_fatal (_("32bit x86_64 is only supported for ELF"));
8214 break;
8215 #endif
8217 case OPTION_32:
8218 default_arch = "i386";
8219 break;
8221 case OPTION_DIVIDE:
8222 #ifdef SVR4_COMMENT_CHARS
8224 char *n, *t;
8225 const char *s;
8227 n = (char *) xmalloc (strlen (i386_comment_chars) + 1);
8228 t = n;
8229 for (s = i386_comment_chars; *s != '\0'; s++)
8230 if (*s != '/')
8231 *t++ = *s;
8232 *t = '\0';
8233 i386_comment_chars = n;
8235 #endif
8236 break;
8238 case OPTION_MARCH:
8239 arch = xstrdup (arg);
8242 if (*arch == '.')
8243 as_fatal (_("Invalid -march= option: `%s'"), arg);
8244 next = strchr (arch, '+');
8245 if (next)
8246 *next++ = '\0';
8247 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
8249 if (strcmp (arch, cpu_arch [j].name) == 0)
8251 /* Processor. */
8252 if (! cpu_arch[j].flags.bitfield.cpui386)
8253 continue;
8255 cpu_arch_name = cpu_arch[j].name;
8256 cpu_sub_arch_name = NULL;
8257 cpu_arch_flags = cpu_arch[j].flags;
8258 cpu_arch_isa = cpu_arch[j].type;
8259 cpu_arch_isa_flags = cpu_arch[j].flags;
8260 if (!cpu_arch_tune_set)
8262 cpu_arch_tune = cpu_arch_isa;
8263 cpu_arch_tune_flags = cpu_arch_isa_flags;
8265 break;
8267 else if (*cpu_arch [j].name == '.'
8268 && strcmp (arch, cpu_arch [j].name + 1) == 0)
8270 /* ISA entension. */
8271 i386_cpu_flags flags;
8273 if (!cpu_arch[j].negated)
8274 flags = cpu_flags_or (cpu_arch_flags,
8275 cpu_arch[j].flags);
8276 else
8277 flags = cpu_flags_and_not (cpu_arch_flags,
8278 cpu_arch[j].flags);
8279 if (!cpu_flags_equal (&flags, &cpu_arch_flags))
8281 if (cpu_sub_arch_name)
8283 char *name = cpu_sub_arch_name;
8284 cpu_sub_arch_name = concat (name,
8285 cpu_arch[j].name,
8286 (const char *) NULL);
8287 free (name);
8289 else
8290 cpu_sub_arch_name = xstrdup (cpu_arch[j].name);
8291 cpu_arch_flags = flags;
8293 break;
8297 if (j >= ARRAY_SIZE (cpu_arch))
8298 as_fatal (_("Invalid -march= option: `%s'"), arg);
8300 arch = next;
8302 while (next != NULL );
8303 break;
8305 case OPTION_MTUNE:
8306 if (*arg == '.')
8307 as_fatal (_("Invalid -mtune= option: `%s'"), arg);
8308 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
8310 if (strcmp (arg, cpu_arch [j].name) == 0)
8312 cpu_arch_tune_set = 1;
8313 cpu_arch_tune = cpu_arch [j].type;
8314 cpu_arch_tune_flags = cpu_arch[j].flags;
8315 break;
8318 if (j >= ARRAY_SIZE (cpu_arch))
8319 as_fatal (_("Invalid -mtune= option: `%s'"), arg);
8320 break;
8322 case OPTION_MMNEMONIC:
8323 if (strcasecmp (arg, "att") == 0)
8324 intel_mnemonic = 0;
8325 else if (strcasecmp (arg, "intel") == 0)
8326 intel_mnemonic = 1;
8327 else
8328 as_fatal (_("Invalid -mmnemonic= option: `%s'"), arg);
8329 break;
8331 case OPTION_MSYNTAX:
8332 if (strcasecmp (arg, "att") == 0)
8333 intel_syntax = 0;
8334 else if (strcasecmp (arg, "intel") == 0)
8335 intel_syntax = 1;
8336 else
8337 as_fatal (_("Invalid -msyntax= option: `%s'"), arg);
8338 break;
8340 case OPTION_MINDEX_REG:
8341 allow_index_reg = 1;
8342 break;
8344 case OPTION_MNAKED_REG:
8345 allow_naked_reg = 1;
8346 break;
8348 case OPTION_MOLD_GCC:
8349 old_gcc = 1;
8350 break;
8352 case OPTION_MSSE2AVX:
8353 sse2avx = 1;
8354 break;
8356 case OPTION_MSSE_CHECK:
8357 if (strcasecmp (arg, "error") == 0)
8358 sse_check = sse_check_error;
8359 else if (strcasecmp (arg, "warning") == 0)
8360 sse_check = sse_check_warning;
8361 else if (strcasecmp (arg, "none") == 0)
8362 sse_check = sse_check_none;
8363 else
8364 as_fatal (_("Invalid -msse-check= option: `%s'"), arg);
8365 break;
8367 case OPTION_MAVXSCALAR:
8368 if (strcasecmp (arg, "128") == 0)
8369 avxscalar = vex128;
8370 else if (strcasecmp (arg, "256") == 0)
8371 avxscalar = vex256;
8372 else
8373 as_fatal (_("Invalid -mavxscalar= option: `%s'"), arg);
8374 break;
8376 default:
8377 return 0;
8379 return 1;
8382 #define MESSAGE_TEMPLATE \
8385 static void
8386 show_arch (FILE *stream, int ext, int check)
8388 static char message[] = MESSAGE_TEMPLATE;
8389 char *start = message + 27;
8390 char *p;
8391 int size = sizeof (MESSAGE_TEMPLATE);
8392 int left;
8393 const char *name;
8394 int len;
8395 unsigned int j;
8397 p = start;
8398 left = size - (start - message);
8399 for (j = 0; j < ARRAY_SIZE (cpu_arch); j++)
8401 /* Should it be skipped? */
8402 if (cpu_arch [j].skip)
8403 continue;
8405 name = cpu_arch [j].name;
8406 len = cpu_arch [j].len;
8407 if (*name == '.')
8409 /* It is an extension. Skip if we aren't asked to show it. */
8410 if (ext)
8412 name++;
8413 len--;
8415 else
8416 continue;
8418 else if (ext)
8420 /* It is an processor. Skip if we show only extension. */
8421 continue;
8423 else if (check && ! cpu_arch[j].flags.bitfield.cpui386)
8425 /* It is an impossible processor - skip. */
8426 continue;
8429 /* Reserve 2 spaces for ", " or ",\0" */
8430 left -= len + 2;
8432 /* Check if there is any room. */
8433 if (left >= 0)
8435 if (p != start)
8437 *p++ = ',';
8438 *p++ = ' ';
8440 p = mempcpy (p, name, len);
8442 else
8444 /* Output the current message now and start a new one. */
8445 *p++ = ',';
8446 *p = '\0';
8447 fprintf (stream, "%s\n", message);
8448 p = start;
8449 left = size - (start - message) - len - 2;
8451 gas_assert (left >= 0);
8453 p = mempcpy (p, name, len);
8457 *p = '\0';
8458 fprintf (stream, "%s\n", message);
8461 void
8462 md_show_usage (FILE *stream)
8464 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8465 fprintf (stream, _("\
8466 -Q ignored\n\
8467 -V print assembler version number\n\
8468 -k ignored\n"));
8469 #endif
8470 fprintf (stream, _("\
8471 -n Do not optimize code alignment\n\
8472 -q quieten some warnings\n"));
8473 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8474 fprintf (stream, _("\
8475 -s ignored\n"));
8476 #endif
8477 #if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
8478 || defined (TE_PE) || defined (TE_PEP))
8479 fprintf (stream, _("\
8480 --32/--64/--n32 generate 32bit/64bit/n32bit code\n"));
8481 #endif
8482 #ifdef SVR4_COMMENT_CHARS
8483 fprintf (stream, _("\
8484 --divide do not treat `/' as a comment character\n"));
8485 #else
8486 fprintf (stream, _("\
8487 --divide ignored\n"));
8488 #endif
8489 fprintf (stream, _("\
8490 -march=CPU[,+EXTENSION...]\n\
8491 generate code for CPU and EXTENSION, CPU is one of:\n"));
8492 show_arch (stream, 0, 1);
8493 fprintf (stream, _("\
8494 EXTENSION is combination of:\n"));
8495 show_arch (stream, 1, 0);
8496 fprintf (stream, _("\
8497 -mtune=CPU optimize for CPU, CPU is one of:\n"));
8498 show_arch (stream, 0, 0);
8499 fprintf (stream, _("\
8500 -msse2avx encode SSE instructions with VEX prefix\n"));
8501 fprintf (stream, _("\
8502 -msse-check=[none|error|warning]\n\
8503 check SSE instructions\n"));
8504 fprintf (stream, _("\
8505 -mavxscalar=[128|256] encode scalar AVX instructions with specific vector\n\
8506 length\n"));
8507 fprintf (stream, _("\
8508 -mmnemonic=[att|intel] use AT&T/Intel mnemonic\n"));
8509 fprintf (stream, _("\
8510 -msyntax=[att|intel] use AT&T/Intel syntax\n"));
8511 fprintf (stream, _("\
8512 -mindex-reg support pseudo index registers\n"));
8513 fprintf (stream, _("\
8514 -mnaked-reg don't require `%%' prefix for registers\n"));
8515 fprintf (stream, _("\
8516 -mold-gcc support old (<= 2.8.1) versions of gcc\n"));
8519 #if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
8520 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
8521 || defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
8523 /* Pick the target format to use. */
8525 const char *
8526 i386_target_format (void)
8528 if (!strncmp (default_arch, "x86_64", 6))
8530 update_code_flag (CODE_64BIT, 1);
8531 if (default_arch[6] == '\0')
8532 x86_elf_abi = X86_64_LP64_ABI;
8533 else
8534 x86_elf_abi = X86_64_ILP32_ABI;
8536 else if (!strcmp (default_arch, "i386"))
8537 update_code_flag (CODE_32BIT, 1);
8538 else
8539 as_fatal (_("Unknown architecture"));
8541 if (cpu_flags_all_zero (&cpu_arch_isa_flags))
8542 cpu_arch_isa_flags = cpu_arch[flag_code == CODE_64BIT].flags;
8543 if (cpu_flags_all_zero (&cpu_arch_tune_flags))
8544 cpu_arch_tune_flags = cpu_arch[flag_code == CODE_64BIT].flags;
8546 switch (OUTPUT_FLAVOR)
8548 #if defined (OBJ_MAYBE_AOUT) || defined (OBJ_AOUT)
8549 case bfd_target_aout_flavour:
8550 return AOUT_TARGET_FORMAT;
8551 #endif
8552 #if defined (OBJ_MAYBE_COFF) || defined (OBJ_COFF)
8553 # if defined (TE_PE) || defined (TE_PEP)
8554 case bfd_target_coff_flavour:
8555 return flag_code == CODE_64BIT ? "pe-x86-64" : "pe-i386";
8556 # elif defined (TE_GO32)
8557 case bfd_target_coff_flavour:
8558 return "coff-go32";
8559 # else
8560 case bfd_target_coff_flavour:
8561 return "coff-i386";
8562 # endif
8563 #endif
8564 #if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
8565 case bfd_target_elf_flavour:
8567 const char *format;
8569 switch (x86_elf_abi)
8571 default:
8572 format = ELF_TARGET_FORMAT;
8573 break;
8574 case X86_64_LP64_ABI:
8575 use_rela_relocations = 1;
8576 object_64bit = 1;
8577 format = ELF_TARGET_FORMAT64;
8578 break;
8579 case X86_64_ILP32_ABI:
8580 use_rela_relocations = 1;
8581 object_64bit = 1;
8582 format = ELF_TARGET_FORMAT32;
8583 break;
8585 if (cpu_arch_isa == PROCESSOR_L1OM)
8587 if (x86_elf_abi != X86_64_LP64_ABI)
8588 as_fatal (_("Intel L1OM is 64bit only"));
8589 return ELF_TARGET_L1OM_FORMAT;
8591 else
8592 return format;
8594 #endif
8595 #if defined (OBJ_MACH_O)
8596 case bfd_target_mach_o_flavour:
8597 return flag_code == CODE_64BIT ? "mach-o-x86-64" : "mach-o-i386";
8598 #endif
8599 default:
8600 abort ();
8601 return NULL;
8605 #endif /* OBJ_MAYBE_ more than one */
8607 #if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF))
8608 void
8609 i386_elf_emit_arch_note (void)
8611 if (IS_ELF && cpu_arch_name != NULL)
8613 char *p;
8614 asection *seg = now_seg;
8615 subsegT subseg = now_subseg;
8616 Elf_Internal_Note i_note;
8617 Elf_External_Note e_note;
8618 asection *note_secp;
8619 int len;
8621 /* Create the .note section. */
8622 note_secp = subseg_new (".note", 0);
8623 bfd_set_section_flags (stdoutput,
8624 note_secp,
8625 SEC_HAS_CONTENTS | SEC_READONLY);
8627 /* Process the arch string. */
8628 len = strlen (cpu_arch_name);
8630 i_note.namesz = len + 1;
8631 i_note.descsz = 0;
8632 i_note.type = NT_ARCH;
8633 p = frag_more (sizeof (e_note.namesz));
8634 md_number_to_chars (p, (valueT) i_note.namesz, sizeof (e_note.namesz));
8635 p = frag_more (sizeof (e_note.descsz));
8636 md_number_to_chars (p, (valueT) i_note.descsz, sizeof (e_note.descsz));
8637 p = frag_more (sizeof (e_note.type));
8638 md_number_to_chars (p, (valueT) i_note.type, sizeof (e_note.type));
8639 p = frag_more (len + 1);
8640 strcpy (p, cpu_arch_name);
8642 frag_align (2, 0, 0);
8644 subseg_set (seg, subseg);
8647 #endif
8649 symbolS *
8650 md_undefined_symbol (name)
8651 char *name;
8653 if (name[0] == GLOBAL_OFFSET_TABLE_NAME[0]
8654 && name[1] == GLOBAL_OFFSET_TABLE_NAME[1]
8655 && name[2] == GLOBAL_OFFSET_TABLE_NAME[2]
8656 && strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0)
8658 if (!GOT_symbol)
8660 if (symbol_find (name))
8661 as_bad (_("GOT already in symbol table"));
8662 GOT_symbol = symbol_new (name, undefined_section,
8663 (valueT) 0, &zero_address_frag);
8665 return GOT_symbol;
8667 return 0;
8670 /* Round up a section size to the appropriate boundary. */
8672 valueT
8673 md_section_align (segment, size)
8674 segT segment ATTRIBUTE_UNUSED;
8675 valueT size;
8677 #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
8678 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
8680 /* For a.out, force the section size to be aligned. If we don't do
8681 this, BFD will align it for us, but it will not write out the
8682 final bytes of the section. This may be a bug in BFD, but it is
8683 easier to fix it here since that is how the other a.out targets
8684 work. */
8685 int align;
8687 align = bfd_get_section_alignment (stdoutput, segment);
8688 size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
8690 #endif
8692 return size;
8695 /* On the i386, PC-relative offsets are relative to the start of the
8696 next instruction. That is, the address of the offset, plus its
8697 size, since the offset is always the last part of the insn. */
8699 long
8700 md_pcrel_from (fixS *fixP)
8702 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
8705 #ifndef I386COFF
8707 static void
8708 s_bss (int ignore ATTRIBUTE_UNUSED)
8710 int temp;
8712 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
8713 if (IS_ELF)
8714 obj_elf_section_change_hook ();
8715 #endif
8716 temp = get_absolute_expression ();
8717 subseg_set (bss_section, (subsegT) temp);
8718 demand_empty_rest_of_line ();
8721 #endif
8723 void
8724 i386_validate_fix (fixS *fixp)
8726 if (fixp->fx_subsy && fixp->fx_subsy == GOT_symbol)
8728 if (fixp->fx_r_type == BFD_RELOC_32_PCREL)
8730 if (!object_64bit)
8731 abort ();
8732 fixp->fx_r_type = BFD_RELOC_X86_64_GOTPCREL;
8734 else
8736 if (!object_64bit)
8737 fixp->fx_r_type = BFD_RELOC_386_GOTOFF;
8738 else
8739 fixp->fx_r_type = BFD_RELOC_X86_64_GOTOFF64;
8741 fixp->fx_subsy = 0;
8745 arelent *
8746 tc_gen_reloc (section, fixp)
8747 asection *section ATTRIBUTE_UNUSED;
8748 fixS *fixp;
8750 arelent *rel;
8751 bfd_reloc_code_real_type code;
8753 switch (fixp->fx_r_type)
8755 case BFD_RELOC_X86_64_PLT32:
8756 case BFD_RELOC_X86_64_GOT32:
8757 case BFD_RELOC_X86_64_GOTPCREL:
8758 case BFD_RELOC_386_PLT32:
8759 case BFD_RELOC_386_GOT32:
8760 case BFD_RELOC_386_GOTOFF:
8761 case BFD_RELOC_386_GOTPC:
8762 case BFD_RELOC_386_TLS_GD:
8763 case BFD_RELOC_386_TLS_LDM:
8764 case BFD_RELOC_386_TLS_LDO_32:
8765 case BFD_RELOC_386_TLS_IE_32:
8766 case BFD_RELOC_386_TLS_IE:
8767 case BFD_RELOC_386_TLS_GOTIE:
8768 case BFD_RELOC_386_TLS_LE_32:
8769 case BFD_RELOC_386_TLS_LE:
8770 case BFD_RELOC_386_TLS_GOTDESC:
8771 case BFD_RELOC_386_TLS_DESC_CALL:
8772 case BFD_RELOC_X86_64_TLSGD:
8773 case BFD_RELOC_X86_64_TLSLD:
8774 case BFD_RELOC_X86_64_DTPOFF32:
8775 case BFD_RELOC_X86_64_DTPOFF64:
8776 case BFD_RELOC_X86_64_GOTTPOFF:
8777 case BFD_RELOC_X86_64_TPOFF32:
8778 case BFD_RELOC_X86_64_TPOFF64:
8779 case BFD_RELOC_X86_64_GOTOFF64:
8780 case BFD_RELOC_X86_64_GOTPC32:
8781 case BFD_RELOC_X86_64_GOT64:
8782 case BFD_RELOC_X86_64_GOTPCREL64:
8783 case BFD_RELOC_X86_64_GOTPC64:
8784 case BFD_RELOC_X86_64_GOTPLT64:
8785 case BFD_RELOC_X86_64_PLTOFF64:
8786 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
8787 case BFD_RELOC_X86_64_TLSDESC_CALL:
8788 case BFD_RELOC_RVA:
8789 case BFD_RELOC_VTABLE_ENTRY:
8790 case BFD_RELOC_VTABLE_INHERIT:
8791 #ifdef TE_PE
8792 case BFD_RELOC_32_SECREL:
8793 #endif
8794 code = fixp->fx_r_type;
8795 break;
8796 case BFD_RELOC_X86_64_32S:
8797 if (!fixp->fx_pcrel)
8799 /* Don't turn BFD_RELOC_X86_64_32S into BFD_RELOC_32. */
8800 code = fixp->fx_r_type;
8801 break;
8803 default:
8804 if (fixp->fx_pcrel)
8806 switch (fixp->fx_size)
8808 default:
8809 as_bad_where (fixp->fx_file, fixp->fx_line,
8810 _("can not do %d byte pc-relative relocation"),
8811 fixp->fx_size);
8812 code = BFD_RELOC_32_PCREL;
8813 break;
8814 case 1: code = BFD_RELOC_8_PCREL; break;
8815 case 2: code = BFD_RELOC_16_PCREL; break;
8816 case 4: code = BFD_RELOC_32_PCREL; break;
8817 #ifdef BFD64
8818 case 8: code = BFD_RELOC_64_PCREL; break;
8819 #endif
8822 else
8824 switch (fixp->fx_size)
8826 default:
8827 as_bad_where (fixp->fx_file, fixp->fx_line,
8828 _("can not do %d byte relocation"),
8829 fixp->fx_size);
8830 code = BFD_RELOC_32;
8831 break;
8832 case 1: code = BFD_RELOC_8; break;
8833 case 2: code = BFD_RELOC_16; break;
8834 case 4: code = BFD_RELOC_32; break;
8835 #ifdef BFD64
8836 case 8: code = BFD_RELOC_64; break;
8837 #endif
8840 break;
8843 if ((code == BFD_RELOC_32
8844 || code == BFD_RELOC_32_PCREL
8845 || code == BFD_RELOC_X86_64_32S)
8846 && GOT_symbol
8847 && fixp->fx_addsy == GOT_symbol)
8849 if (!object_64bit)
8850 code = BFD_RELOC_386_GOTPC;
8851 else
8852 code = BFD_RELOC_X86_64_GOTPC32;
8854 if ((code == BFD_RELOC_64 || code == BFD_RELOC_64_PCREL)
8855 && GOT_symbol
8856 && fixp->fx_addsy == GOT_symbol)
8858 code = BFD_RELOC_X86_64_GOTPC64;
8861 rel = (arelent *) xmalloc (sizeof (arelent));
8862 rel->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
8863 *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
8865 rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
8867 if (!use_rela_relocations)
8869 /* HACK: Since i386 ELF uses Rel instead of Rela, encode the
8870 vtable entry to be used in the relocation's section offset. */
8871 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
8872 rel->address = fixp->fx_offset;
8873 #if defined (OBJ_COFF) && defined (TE_PE)
8874 else if (fixp->fx_addsy && S_IS_WEAK (fixp->fx_addsy))
8875 rel->addend = fixp->fx_addnumber - (S_GET_VALUE (fixp->fx_addsy) * 2);
8876 else
8877 #endif
8878 rel->addend = 0;
8880 /* Use the rela in 64bit mode. */
8881 else
8883 if (!fixp->fx_pcrel)
8884 rel->addend = fixp->fx_offset;
8885 else
8886 switch (code)
8888 case BFD_RELOC_X86_64_PLT32:
8889 case BFD_RELOC_X86_64_GOT32:
8890 case BFD_RELOC_X86_64_GOTPCREL:
8891 case BFD_RELOC_X86_64_TLSGD:
8892 case BFD_RELOC_X86_64_TLSLD:
8893 case BFD_RELOC_X86_64_GOTTPOFF:
8894 case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
8895 case BFD_RELOC_X86_64_TLSDESC_CALL:
8896 rel->addend = fixp->fx_offset - fixp->fx_size;
8897 break;
8898 default:
8899 rel->addend = (section->vma
8900 - fixp->fx_size
8901 + fixp->fx_addnumber
8902 + md_pcrel_from (fixp));
8903 break;
8907 rel->howto = bfd_reloc_type_lookup (stdoutput, code);
8908 if (rel->howto == NULL)
8910 as_bad_where (fixp->fx_file, fixp->fx_line,
8911 _("cannot represent relocation type %s"),
8912 bfd_get_reloc_code_name (code));
8913 /* Set howto to a garbage value so that we can keep going. */
8914 rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
8915 gas_assert (rel->howto != NULL);
8918 return rel;
8921 #include "tc-i386-intel.c"
8923 void
8924 tc_x86_parse_to_dw2regnum (expressionS *exp)
8926 int saved_naked_reg;
8927 char saved_register_dot;
8929 saved_naked_reg = allow_naked_reg;
8930 allow_naked_reg = 1;
8931 saved_register_dot = register_chars['.'];
8932 register_chars['.'] = '.';
8933 allow_pseudo_reg = 1;
8934 expression_and_evaluate (exp);
8935 allow_pseudo_reg = 0;
8936 register_chars['.'] = saved_register_dot;
8937 allow_naked_reg = saved_naked_reg;
8939 if (exp->X_op == O_register && exp->X_add_number >= 0)
8941 if ((addressT) exp->X_add_number < i386_regtab_size)
8943 exp->X_op = O_constant;
8944 exp->X_add_number = i386_regtab[exp->X_add_number]
8945 .dw2_regnum[flag_code >> 1];
8947 else
8948 exp->X_op = O_illegal;
8952 void
8953 tc_x86_frame_initial_instructions (void)
8955 static unsigned int sp_regno[2];
8957 if (!sp_regno[flag_code >> 1])
8959 char *saved_input = input_line_pointer;
8960 char sp[][4] = {"esp", "rsp"};
8961 expressionS exp;
8963 input_line_pointer = sp[flag_code >> 1];
8964 tc_x86_parse_to_dw2regnum (&exp);
8965 gas_assert (exp.X_op == O_constant);
8966 sp_regno[flag_code >> 1] = exp.X_add_number;
8967 input_line_pointer = saved_input;
8970 cfi_add_CFA_def_cfa (sp_regno[flag_code >> 1], -x86_cie_data_alignment);
8971 cfi_add_CFA_offset (x86_dwarf2_return_column, x86_cie_data_alignment);
8975 i386_elf_section_type (const char *str, size_t len)
8977 if (flag_code == CODE_64BIT
8978 && len == sizeof ("unwind") - 1
8979 && strncmp (str, "unwind", 6) == 0)
8980 return SHT_X86_64_UNWIND;
8982 return -1;
8985 #ifdef TE_SOLARIS
8986 void
8987 i386_solaris_fix_up_eh_frame (segT sec)
8989 if (flag_code == CODE_64BIT)
8990 elf_section_type (sec) = SHT_X86_64_UNWIND;
8992 #endif
8994 #ifdef TE_PE
8995 void
8996 tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
8998 expressionS exp;
9000 exp.X_op = O_secrel;
9001 exp.X_add_symbol = symbol;
9002 exp.X_add_number = 0;
9003 emit_expr (&exp, size);
9005 #endif
9007 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
9008 /* For ELF on x86-64, add support for SHF_X86_64_LARGE. */
9010 bfd_vma
9011 x86_64_section_letter (int letter, char **ptr_msg)
9013 if (flag_code == CODE_64BIT)
9015 if (letter == 'l')
9016 return SHF_X86_64_LARGE;
9018 *ptr_msg = _("bad .section directive: want a,l,w,x,M,S,G,T in string");
9020 else
9021 *ptr_msg = _("bad .section directive: want a,w,x,M,S,G,T in string");
9022 return -1;
9025 bfd_vma
9026 x86_64_section_word (char *str, size_t len)
9028 if (len == 5 && flag_code == CODE_64BIT && CONST_STRNEQ (str, "large"))
9029 return SHF_X86_64_LARGE;
9031 return -1;
9034 static void
9035 handle_large_common (int small ATTRIBUTE_UNUSED)
9037 if (flag_code != CODE_64BIT)
9039 s_comm_internal (0, elf_common_parse);
9040 as_warn (_(".largecomm supported only in 64bit mode, producing .comm"));
9042 else
9044 static segT lbss_section;
9045 asection *saved_com_section_ptr = elf_com_section_ptr;
9046 asection *saved_bss_section = bss_section;
9048 if (lbss_section == NULL)
9050 flagword applicable;
9051 segT seg = now_seg;
9052 subsegT subseg = now_subseg;
9054 /* The .lbss section is for local .largecomm symbols. */
9055 lbss_section = subseg_new (".lbss", 0);
9056 applicable = bfd_applicable_section_flags (stdoutput);
9057 bfd_set_section_flags (stdoutput, lbss_section,
9058 applicable & SEC_ALLOC);
9059 seg_info (lbss_section)->bss = 1;
9061 subseg_set (seg, subseg);
9064 elf_com_section_ptr = &_bfd_elf_large_com_section;
9065 bss_section = lbss_section;
9067 s_comm_internal (0, elf_common_parse);
9069 elf_com_section_ptr = saved_com_section_ptr;
9070 bss_section = saved_bss_section;
9073 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */