]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/binutils/gas/config/tc-i386.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / binutils / gas / config / tc-i386.c
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
4    Free Software Foundation, Inc.
5
6    This file is part of GAS, the GNU Assembler.
7
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 2, or (at your option)
11    any later version.
12
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.
17
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.  */
22
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.  */
29
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
37 #ifndef REGISTER_WARNINGS
38 #define REGISTER_WARNINGS 1
39 #endif
40
41 #ifndef INFER_ADDR_PREFIX
42 #define INFER_ADDR_PREFIX 1
43 #endif
44
45 #ifndef SCALE1_WHEN_NO_INDEX
46 /* Specifying a scale factor besides 1 when there is no index is
47    futile.  eg. `mov (%ebx,2),%al' does exactly the same as
48    `mov (%ebx),%al'.  To slavishly follow what the programmer
49    specified, set SCALE1_WHEN_NO_INDEX to 0.  */
50 #define SCALE1_WHEN_NO_INDEX 1
51 #endif
52
53 #ifndef DEFAULT_ARCH
54 #define DEFAULT_ARCH "i386"
55 #endif
56
57 #ifndef INLINE
58 #if __GNUC__ >= 2
59 #define INLINE __inline__
60 #else
61 #define INLINE
62 #endif
63 #endif
64
65 static void set_code_flag (int);
66 static void set_16bit_gcc_code_flag (int);
67 static void set_intel_syntax (int);
68 static void set_cpu_arch (int);
69 #ifdef TE_PE
70 static void pe_directive_secrel (int);
71 #endif
72 static void signed_cons (int);
73 static char *output_invalid (int c);
74 static int i386_operand (char *);
75 static int i386_intel_operand (char *, int);
76 static const reg_entry *parse_register (char *, char **);
77 static char *parse_insn (char *, char *);
78 static char *parse_operands (char *, const char *);
79 static void swap_operands (void);
80 static void swap_2_operands (int, int);
81 static void optimize_imm (void);
82 static void optimize_disp (void);
83 static int match_template (void);
84 static int check_string (void);
85 static int process_suffix (void);
86 static int check_byte_reg (void);
87 static int check_long_reg (void);
88 static int check_qword_reg (void);
89 static int check_word_reg (void);
90 static int finalize_imm (void);
91 static int process_operands (void);
92 static const seg_entry *build_modrm_byte (void);
93 static void output_insn (void);
94 static void output_imm (fragS *, offsetT);
95 static void output_disp (fragS *, offsetT);
96 #ifndef I386COFF
97 static void s_bss (int);
98 #endif
99 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
100 static void handle_large_common (int small ATTRIBUTE_UNUSED);
101 #endif
102
103 static const char *default_arch = DEFAULT_ARCH;
104
105 /* 'md_assemble ()' gathers together information and puts it into a
106    i386_insn.  */
107
108 union i386_op
109   {
110     expressionS *disps;
111     expressionS *imms;
112     const reg_entry *regs;
113   };
114
115 struct _i386_insn
116   {
117     /* TM holds the template for the insn were currently assembling.  */
118     template tm;
119
120     /* SUFFIX holds the instruction mnemonic suffix if given.
121        (e.g. 'l' for 'movl')  */
122     char suffix;
123
124     /* OPERANDS gives the number of given operands.  */
125     unsigned int operands;
126
127     /* REG_OPERANDS, DISP_OPERANDS, MEM_OPERANDS, IMM_OPERANDS give the number
128        of given register, displacement, memory operands and immediate
129        operands.  */
130     unsigned int reg_operands, disp_operands, mem_operands, imm_operands;
131
132     /* TYPES [i] is the type (see above #defines) which tells us how to
133        use OP[i] for the corresponding operand.  */
134     unsigned int types[MAX_OPERANDS];
135
136     /* Displacement expression, immediate expression, or register for each
137        operand.  */
138     union i386_op op[MAX_OPERANDS];
139
140     /* Flags for operands.  */
141     unsigned int flags[MAX_OPERANDS];
142 #define Operand_PCrel 1
143
144     /* Relocation type for operand */
145     enum bfd_reloc_code_real reloc[MAX_OPERANDS];
146
147     /* BASE_REG, INDEX_REG, and LOG2_SCALE_FACTOR are used to encode
148        the base index byte below.  */
149     const reg_entry *base_reg;
150     const reg_entry *index_reg;
151     unsigned int log2_scale_factor;
152
153     /* SEG gives the seg_entries of this insn.  They are zero unless
154        explicit segment overrides are given.  */
155     const seg_entry *seg[2];
156
157     /* PREFIX holds all the given prefix opcodes (usually null).
158        PREFIXES is the number of prefix opcodes.  */
159     unsigned int prefixes;
160     unsigned char prefix[MAX_PREFIXES];
161
162     /* RM and SIB are the modrm byte and the sib byte where the
163        addressing modes of this insn are encoded.  */
164
165     modrm_byte rm;
166     rex_byte rex;
167     sib_byte sib;
168   };
169
170 typedef struct _i386_insn i386_insn;
171
172 /* List of chars besides those in app.c:symbol_chars that can start an
173    operand.  Used to prevent the scrubber eating vital white-space.  */
174 const char extra_symbol_chars[] = "*%-(["
175 #ifdef LEX_AT
176         "@"
177 #endif
178 #ifdef LEX_QM
179         "?"
180 #endif
181         ;
182
183 #if (defined (TE_I386AIX)                               \
184      || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) \
185          && !defined (TE_GNU)                           \
186          && !defined (TE_LINUX)                         \
187          && !defined (TE_NETWARE)                       \
188          && !defined (TE_FreeBSD)                       \
189          && !defined (TE_NetBSD)))
190 /* This array holds the chars that always start a comment.  If the
191    pre-processor is disabled, these aren't very useful.  The option
192    --divide will remove '/' from this list.  */
193 const char *i386_comment_chars = "#/";
194 #define SVR4_COMMENT_CHARS 1
195 #define PREFIX_SEPARATOR '\\'
196
197 #else
198 const char *i386_comment_chars = "#";
199 #define PREFIX_SEPARATOR '/'
200 #endif
201
202 /* This array holds the chars that only start a comment at the beginning of
203    a line.  If the line seems to have the form '# 123 filename'
204    .line and .file directives will appear in the pre-processed output.
205    Note that input_file.c hand checks for '#' at the beginning of the
206    first line of the input file.  This is because the compiler outputs
207    #NO_APP at the beginning of its output.
208    Also note that comments started like this one will always work if
209    '/' isn't otherwise defined.  */
210 const char line_comment_chars[] = "#/";
211
212 const char line_separator_chars[] = ";";
213
214 /* Chars that can be used to separate mant from exp in floating point
215    nums.  */
216 const char EXP_CHARS[] = "eE";
217
218 /* Chars that mean this number is a floating point constant
219    As in 0f12.456
220    or    0d1.2345e12.  */
221 const char FLT_CHARS[] = "fFdDxX";
222
223 /* Tables for lexical analysis.  */
224 static char mnemonic_chars[256];
225 static char register_chars[256];
226 static char operand_chars[256];
227 static char identifier_chars[256];
228 static char digit_chars[256];
229
230 /* Lexical macros.  */
231 #define is_mnemonic_char(x) (mnemonic_chars[(unsigned char) x])
232 #define is_operand_char(x) (operand_chars[(unsigned char) x])
233 #define is_register_char(x) (register_chars[(unsigned char) x])
234 #define is_space_char(x) ((x) == ' ')
235 #define is_identifier_char(x) (identifier_chars[(unsigned char) x])
236 #define is_digit_char(x) (digit_chars[(unsigned char) x])
237
238 /* All non-digit non-letter characters that may occur in an operand.  */
239 static char operand_special_chars[] = "%$-+(,)*._~/<>|&^!:[@]";
240
241 /* md_assemble() always leaves the strings it's passed unaltered.  To
242    effect this we maintain a stack of saved characters that we've smashed
243    with '\0's (indicating end of strings for various sub-fields of the
244    assembler instruction).  */
245 static char save_stack[32];
246 static char *save_stack_p;
247 #define END_STRING_AND_SAVE(s) \
248         do { *save_stack_p++ = *(s); *(s) = '\0'; } while (0)
249 #define RESTORE_END_STRING(s) \
250         do { *(s) = *--save_stack_p; } while (0)
251
252 /* The instruction we're assembling.  */
253 static i386_insn i;
254
255 /* Possible templates for current insn.  */
256 static const templates *current_templates;
257
258 /* Per instruction expressionS buffers: max displacements & immediates.  */
259 static expressionS disp_expressions[MAX_MEMORY_OPERANDS];
260 static expressionS im_expressions[MAX_IMMEDIATE_OPERANDS];
261
262 /* Current operand we are working on.  */
263 static int this_operand;
264
265 /* We support four different modes.  FLAG_CODE variable is used to distinguish
266    these.  */
267
268 enum flag_code {
269         CODE_32BIT,
270         CODE_16BIT,
271         CODE_64BIT };
272 #define NUM_FLAG_CODE ((int) CODE_64BIT + 1)
273
274 static enum flag_code flag_code;
275 static unsigned int object_64bit;
276 static int use_rela_relocations = 0;
277
278 /* The names used to print error messages.  */
279 static const char *flag_code_names[] =
280   {
281     "32",
282     "16",
283     "64"
284   };
285
286 /* 1 for intel syntax,
287    0 if att syntax.  */
288 static int intel_syntax = 0;
289
290 /* 1 if register prefix % not required.  */
291 static int allow_naked_reg = 0;
292
293 /* Register prefix used for error message.  */
294 static const char *register_prefix = "%";
295
296 /* Used in 16 bit gcc mode to add an l suffix to call, ret, enter,
297    leave, push, and pop instructions so that gcc has the same stack
298    frame as in 32 bit mode.  */
299 static char stackop_size = '\0';
300
301 /* Non-zero to optimize code alignment.  */
302 int optimize_align_code = 1;
303
304 /* Non-zero to quieten some warnings.  */
305 static int quiet_warnings = 0;
306
307 /* CPU name.  */
308 static const char *cpu_arch_name = NULL;
309 static const char *cpu_sub_arch_name = NULL;
310
311 /* CPU feature flags.  */
312 static unsigned int cpu_arch_flags = CpuUnknownFlags | CpuNo64;
313
314 /* If we have selected a cpu we are generating instructions for.  */
315 static int cpu_arch_tune_set = 0;
316
317 /* Cpu we are generating instructions for.  */
318 static enum processor_type cpu_arch_tune = PROCESSOR_UNKNOWN;
319
320 /* CPU feature flags of cpu we are generating instructions for.  */
321 static unsigned int cpu_arch_tune_flags = 0;
322
323 /* CPU instruction set architecture used.  */
324 static enum processor_type cpu_arch_isa = PROCESSOR_UNKNOWN;
325
326 /* CPU feature flags of instruction set architecture used.  */
327 static unsigned int cpu_arch_isa_flags = 0;
328
329 /* If set, conditional jumps are not automatically promoted to handle
330    larger than a byte offset.  */
331 static unsigned int no_cond_jump_promotion = 0;
332
333 /* Pre-defined "_GLOBAL_OFFSET_TABLE_".  */
334 static symbolS *GOT_symbol;
335
336 /* The dwarf2 return column, adjusted for 32 or 64 bit.  */
337 unsigned int x86_dwarf2_return_column;
338
339 /* The dwarf2 data alignment, adjusted for 32 or 64 bit.  */
340 int x86_cie_data_alignment;
341
342 /* Interface to relax_segment.
343    There are 3 major relax states for 386 jump insns because the
344    different types of jumps add different sizes to frags when we're
345    figuring out what sort of jump to choose to reach a given label.  */
346
347 /* Types.  */
348 #define UNCOND_JUMP 0
349 #define COND_JUMP 1
350 #define COND_JUMP86 2
351
352 /* Sizes.  */
353 #define CODE16  1
354 #define SMALL   0
355 #define SMALL16 (SMALL | CODE16)
356 #define BIG     2
357 #define BIG16   (BIG | CODE16)
358
359 #ifndef INLINE
360 #ifdef __GNUC__
361 #define INLINE __inline__
362 #else
363 #define INLINE
364 #endif
365 #endif
366
367 #define ENCODE_RELAX_STATE(type, size) \
368   ((relax_substateT) (((type) << 2) | (size)))
369 #define TYPE_FROM_RELAX_STATE(s) \
370   ((s) >> 2)
371 #define DISP_SIZE_FROM_RELAX_STATE(s) \
372     ((((s) & 3) == BIG ? 4 : (((s) & 3) == BIG16 ? 2 : 1)))
373
374 /* This table is used by relax_frag to promote short jumps to long
375    ones where necessary.  SMALL (short) jumps may be promoted to BIG
376    (32 bit long) ones, and SMALL16 jumps to BIG16 (16 bit long).  We
377    don't allow a short jump in a 32 bit code segment to be promoted to
378    a 16 bit offset jump because it's slower (requires data size
379    prefix), and doesn't work, unless the destination is in the bottom
380    64k of the code segment (The top 16 bits of eip are zeroed).  */
381
382 const relax_typeS md_relax_table[] =
383 {
384   /* The fields are:
385      1) most positive reach of this state,
386      2) most negative reach of this state,
387      3) how many bytes this mode will have in the variable part of the frag
388      4) which index into the table to try if we can't fit into this one.  */
389
390   /* UNCOND_JUMP states.  */
391   {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG)},
392   {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16)},
393   /* dword jmp adds 4 bytes to frag:
394      0 extra opcode bytes, 4 displacement bytes.  */
395   {0, 0, 4, 0},
396   /* word jmp adds 2 byte2 to frag:
397      0 extra opcode bytes, 2 displacement bytes.  */
398   {0, 0, 2, 0},
399
400   /* COND_JUMP states.  */
401   {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG)},
402   {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP, BIG16)},
403   /* dword conditionals adds 5 bytes to frag:
404      1 extra opcode byte, 4 displacement bytes.  */
405   {0, 0, 5, 0},
406   /* word conditionals add 3 bytes to frag:
407      1 extra opcode byte, 2 displacement bytes.  */
408   {0, 0, 3, 0},
409
410   /* COND_JUMP86 states.  */
411   {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG)},
412   {127 + 1, -128 + 1, 1, ENCODE_RELAX_STATE (COND_JUMP86, BIG16)},
413   /* dword conditionals adds 5 bytes to frag:
414      1 extra opcode byte, 4 displacement bytes.  */
415   {0, 0, 5, 0},
416   /* word conditionals add 4 bytes to frag:
417      1 displacement byte and a 3 byte long branch insn.  */
418   {0, 0, 4, 0}
419 };
420
421 static const arch_entry cpu_arch[] =
422 {
423   {"generic32", PROCESSOR_GENERIC32,
424    Cpu186|Cpu286|Cpu386},
425   {"generic64", PROCESSOR_GENERIC64,
426    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX
427    |CpuMMX2|CpuSSE|CpuSSE2},
428   {"i8086", PROCESSOR_UNKNOWN,
429    0},
430   {"i186", PROCESSOR_UNKNOWN,
431    Cpu186},
432   {"i286", PROCESSOR_UNKNOWN,
433    Cpu186|Cpu286},
434   {"i386", PROCESSOR_GENERIC32,
435    Cpu186|Cpu286|Cpu386},
436   {"i486", PROCESSOR_I486,
437    Cpu186|Cpu286|Cpu386|Cpu486},
438   {"i586", PROCESSOR_PENTIUM,
439    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586},
440   {"i686", PROCESSOR_PENTIUMPRO,
441    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686},
442   {"pentium", PROCESSOR_PENTIUM,
443    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586},
444   {"pentiumpro",PROCESSOR_PENTIUMPRO,
445    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686},
446   {"pentiumii", PROCESSOR_PENTIUMPRO,
447    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuMMX},
448   {"pentiumiii",PROCESSOR_PENTIUMPRO,
449    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuMMX|CpuMMX2|CpuSSE},
450   {"pentium4", PROCESSOR_PENTIUM4,
451    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX
452    |CpuMMX2|CpuSSE|CpuSSE2},
453   {"prescott", PROCESSOR_NOCONA,
454    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX
455    |CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3},
456   {"nocona", PROCESSOR_NOCONA,
457    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX
458    |CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3},
459   {"yonah", PROCESSOR_CORE,
460    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX
461    |CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3},
462   {"core", PROCESSOR_CORE,
463    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX
464    |CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3},
465   {"merom", PROCESSOR_CORE2,
466    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX
467    |CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3},
468   {"core2", PROCESSOR_CORE2,
469    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX
470    |CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3},
471   {"k6", PROCESSOR_K6,
472    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|CpuK6|CpuMMX},
473   {"k6_2", PROCESSOR_K6,
474    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|CpuK6|CpuMMX|Cpu3dnow},
475   {"athlon", PROCESSOR_ATHLON,
476    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuK6
477    |CpuMMX|CpuMMX2|Cpu3dnow|Cpu3dnowA},
478   {"sledgehammer", PROCESSOR_K8,
479    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuK6
480    |CpuSledgehammer|CpuMMX|CpuMMX2|Cpu3dnow|Cpu3dnowA|CpuSSE|CpuSSE2},
481   {"opteron", PROCESSOR_K8,
482    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuK6
483    |CpuSledgehammer|CpuMMX|CpuMMX2|Cpu3dnow|Cpu3dnowA|CpuSSE|CpuSSE2},
484   {"k8", PROCESSOR_K8,
485    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuK6
486    |CpuSledgehammer|CpuMMX|CpuMMX2|Cpu3dnow|Cpu3dnowA|CpuSSE|CpuSSE2},
487   {"amdfam10", PROCESSOR_AMDFAM10,
488    Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuK6|CpuSledgehammer
489    |CpuMMX|CpuMMX2|Cpu3dnow|Cpu3dnowA|CpuSSE|CpuSSE2|CpuSSE3|CpuSSE4a
490    |CpuABM},
491   {".mmx", PROCESSOR_UNKNOWN,
492    CpuMMX},
493   {".sse", PROCESSOR_UNKNOWN,
494    CpuMMX|CpuMMX2|CpuSSE},
495   {".sse2", PROCESSOR_UNKNOWN,
496    CpuMMX|CpuMMX2|CpuSSE|CpuSSE2},
497   {".sse3", PROCESSOR_UNKNOWN,
498    CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3},
499   {".ssse3", PROCESSOR_UNKNOWN,
500    CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3},
501   {".sse4.1", PROCESSOR_UNKNOWN,
502    CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4_1},
503   {".sse4.2", PROCESSOR_UNKNOWN,
504    CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4},
505   {".sse4", PROCESSOR_UNKNOWN,
506    CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4},
507   {".3dnow", PROCESSOR_UNKNOWN,
508    CpuMMX|Cpu3dnow},
509   {".3dnowa", PROCESSOR_UNKNOWN,
510    CpuMMX|CpuMMX2|Cpu3dnow|Cpu3dnowA},
511   {".padlock", PROCESSOR_UNKNOWN,
512    CpuPadLock},
513   {".pacifica", PROCESSOR_UNKNOWN,
514    CpuSVME},
515   {".svme", PROCESSOR_UNKNOWN,
516    CpuSVME},
517   {".sse4a", PROCESSOR_UNKNOWN,
518    CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSE4a},
519   {".abm", PROCESSOR_UNKNOWN,
520    CpuABM},
521   {".xsave", PROCESSOR_UNKNOWN,
522    CpuXSAVE}
523 };
524
525 const pseudo_typeS md_pseudo_table[] =
526 {
527 #if !defined(OBJ_AOUT) && !defined(USE_ALIGN_PTWO)
528   {"align", s_align_bytes, 0},
529 #else
530   {"align", s_align_ptwo, 0},
531 #endif
532   {"arch", set_cpu_arch, 0},
533 #ifndef I386COFF
534   {"bss", s_bss, 0},
535 #endif
536   {"ffloat", float_cons, 'f'},
537   {"dfloat", float_cons, 'd'},
538   {"tfloat", float_cons, 'x'},
539   {"value", cons, 2},
540   {"slong", signed_cons, 4},
541   {"noopt", s_ignore, 0},
542   {"optim", s_ignore, 0},
543   {"code16gcc", set_16bit_gcc_code_flag, CODE_16BIT},
544   {"code16", set_code_flag, CODE_16BIT},
545   {"code32", set_code_flag, CODE_32BIT},
546   {"code64", set_code_flag, CODE_64BIT},
547   {"intel_syntax", set_intel_syntax, 1},
548   {"att_syntax", set_intel_syntax, 0},
549 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
550   {"largecomm", handle_large_common, 0},
551 #else
552   {"file", (void (*) (int)) dwarf2_directive_file, 0},
553   {"loc", dwarf2_directive_loc, 0},
554   {"loc_mark_labels", dwarf2_directive_loc_mark_labels, 0},
555 #endif
556 #ifdef TE_PE
557   {"secrel32", pe_directive_secrel, 0},
558 #endif
559   {0, 0, 0}
560 };
561
562 /* For interface with expression ().  */
563 extern char *input_line_pointer;
564
565 /* Hash table for instruction mnemonic lookup.  */
566 static struct hash_control *op_hash;
567
568 /* Hash table for register lookup.  */
569 static struct hash_control *reg_hash;
570 \f
571 void
572 i386_align_code (fragS *fragP, int count)
573 {
574   /* Various efficient no-op patterns for aligning code labels.
575      Note: Don't try to assemble the instructions in the comments.
576      0L and 0w are not legal.  */
577   static const char f32_1[] =
578     {0x90};                                     /* nop                  */
579   static const char f32_2[] =
580     {0x66,0x90};                                /* xchg %ax,%ax */
581   static const char f32_3[] =
582     {0x8d,0x76,0x00};                           /* leal 0(%esi),%esi    */
583   static const char f32_4[] =
584     {0x8d,0x74,0x26,0x00};                      /* leal 0(%esi,1),%esi  */
585   static const char f32_5[] =
586     {0x90,                                      /* nop                  */
587      0x8d,0x74,0x26,0x00};                      /* leal 0(%esi,1),%esi  */
588   static const char f32_6[] =
589     {0x8d,0xb6,0x00,0x00,0x00,0x00};            /* leal 0L(%esi),%esi   */
590   static const char f32_7[] =
591     {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00};       /* leal 0L(%esi,1),%esi */
592   static const char f32_8[] =
593     {0x90,                                      /* nop                  */
594      0x8d,0xb4,0x26,0x00,0x00,0x00,0x00};       /* leal 0L(%esi,1),%esi */
595   static const char f32_9[] =
596     {0x89,0xf6,                                 /* movl %esi,%esi       */
597      0x8d,0xbc,0x27,0x00,0x00,0x00,0x00};       /* leal 0L(%edi,1),%edi */
598   static const char f32_10[] =
599     {0x8d,0x76,0x00,                            /* leal 0(%esi),%esi    */
600      0x8d,0xbc,0x27,0x00,0x00,0x00,0x00};       /* leal 0L(%edi,1),%edi */
601   static const char f32_11[] =
602     {0x8d,0x74,0x26,0x00,                       /* leal 0(%esi,1),%esi  */
603      0x8d,0xbc,0x27,0x00,0x00,0x00,0x00};       /* leal 0L(%edi,1),%edi */
604   static const char f32_12[] =
605     {0x8d,0xb6,0x00,0x00,0x00,0x00,             /* leal 0L(%esi),%esi   */
606      0x8d,0xbf,0x00,0x00,0x00,0x00};            /* leal 0L(%edi),%edi   */
607   static const char f32_13[] =
608     {0x8d,0xb6,0x00,0x00,0x00,0x00,             /* leal 0L(%esi),%esi   */
609      0x8d,0xbc,0x27,0x00,0x00,0x00,0x00};       /* leal 0L(%edi,1),%edi */
610   static const char f32_14[] =
611     {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00,        /* leal 0L(%esi,1),%esi */
612      0x8d,0xbc,0x27,0x00,0x00,0x00,0x00};       /* leal 0L(%edi,1),%edi */
613   static const char f32_15[] =
614     {0xeb,0x0d,0x90,0x90,0x90,0x90,0x90,        /* jmp .+15; lotsa nops */
615      0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90};
616   static const char f16_3[] =
617     {0x8d,0x74,0x00};                           /* lea 0(%esi),%esi     */
618   static const char f16_4[] =
619     {0x8d,0xb4,0x00,0x00};                      /* lea 0w(%si),%si      */
620   static const char f16_5[] =
621     {0x90,                                      /* nop                  */
622      0x8d,0xb4,0x00,0x00};                      /* lea 0w(%si),%si      */
623   static const char f16_6[] =
624     {0x89,0xf6,                                 /* mov %si,%si          */
625      0x8d,0xbd,0x00,0x00};                      /* lea 0w(%di),%di      */
626   static const char f16_7[] =
627     {0x8d,0x74,0x00,                            /* lea 0(%si),%si       */
628      0x8d,0xbd,0x00,0x00};                      /* lea 0w(%di),%di      */
629   static const char f16_8[] =
630     {0x8d,0xb4,0x00,0x00,                       /* lea 0w(%si),%si      */
631      0x8d,0xbd,0x00,0x00};                      /* lea 0w(%di),%di      */
632   static const char *const f32_patt[] = {
633     f32_1, f32_2, f32_3, f32_4, f32_5, f32_6, f32_7, f32_8,
634     f32_9, f32_10, f32_11, f32_12, f32_13, f32_14, f32_15
635   };
636   static const char *const f16_patt[] = {
637     f32_1, f32_2, f16_3, f16_4, f16_5, f16_6, f16_7, f16_8,
638     f32_15, f32_15, f32_15, f32_15, f32_15, f32_15, f32_15
639   };
640   /* nopl (%[re]ax) */
641   static const char alt_3[] =
642     {0x0f,0x1f,0x00};
643   /* nopl 0(%[re]ax) */
644   static const char alt_4[] =
645     {0x0f,0x1f,0x40,0x00};
646   /* nopl 0(%[re]ax,%[re]ax,1) */
647   static const char alt_5[] =
648     {0x0f,0x1f,0x44,0x00,0x00};
649   /* nopw 0(%[re]ax,%[re]ax,1) */
650   static const char alt_6[] =
651     {0x66,0x0f,0x1f,0x44,0x00,0x00};
652   /* nopl 0L(%[re]ax) */
653   static const char alt_7[] =
654     {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
655   /* nopl 0L(%[re]ax,%[re]ax,1) */
656   static const char alt_8[] =
657     {0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
658   /* nopw 0L(%[re]ax,%[re]ax,1) */
659   static const char alt_9[] =
660     {0x66,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
661   /* nopw %cs:0L(%[re]ax,%[re]ax,1) */
662   static const char alt_10[] =
663     {0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
664   /* data16
665      nopw %cs:0L(%[re]ax,%[re]ax,1) */
666   static const char alt_long_11[] =
667     {0x66,
668      0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
669   /* data16
670      data16
671      nopw %cs:0L(%[re]ax,%[re]ax,1) */
672   static const char alt_long_12[] =
673     {0x66,
674      0x66,
675      0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
676   /* data16
677      data16
678      data16
679      nopw %cs:0L(%[re]ax,%[re]ax,1) */
680   static const char alt_long_13[] =
681     {0x66,
682      0x66,
683      0x66,
684      0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
685   /* data16
686      data16
687      data16
688      data16
689      nopw %cs:0L(%[re]ax,%[re]ax,1) */
690   static const char alt_long_14[] =
691     {0x66,
692      0x66,
693      0x66,
694      0x66,
695      0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
696   /* data16
697      data16
698      data16
699      data16
700      data16
701      nopw %cs:0L(%[re]ax,%[re]ax,1) */
702   static const char alt_long_15[] =
703     {0x66,
704      0x66,
705      0x66,
706      0x66,
707      0x66,
708      0x66,0x2e,0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
709   /* nopl 0(%[re]ax,%[re]ax,1)
710      nopw 0(%[re]ax,%[re]ax,1) */
711   static const char alt_short_11[] =
712     {0x0f,0x1f,0x44,0x00,0x00,
713      0x66,0x0f,0x1f,0x44,0x00,0x00};
714   /* nopw 0(%[re]ax,%[re]ax,1)
715      nopw 0(%[re]ax,%[re]ax,1) */
716   static const char alt_short_12[] =
717     {0x66,0x0f,0x1f,0x44,0x00,0x00,
718      0x66,0x0f,0x1f,0x44,0x00,0x00};
719   /* nopw 0(%[re]ax,%[re]ax,1)
720      nopl 0L(%[re]ax) */
721   static const char alt_short_13[] =
722     {0x66,0x0f,0x1f,0x44,0x00,0x00,
723      0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
724   /* nopl 0L(%[re]ax)
725      nopl 0L(%[re]ax) */
726   static const char alt_short_14[] =
727     {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00,
728      0x0f,0x1f,0x80,0x00,0x00,0x00,0x00};
729   /* nopl 0L(%[re]ax)
730      nopl 0L(%[re]ax,%[re]ax,1) */
731   static const char alt_short_15[] =
732     {0x0f,0x1f,0x80,0x00,0x00,0x00,0x00,
733      0x0f,0x1f,0x84,0x00,0x00,0x00,0x00,0x00};
734   static const char *const alt_short_patt[] = {
735     f32_1, f32_2, alt_3, alt_4, alt_5, alt_6, alt_7, alt_8,
736     alt_9, alt_10, alt_short_11, alt_short_12, alt_short_13,
737     alt_short_14, alt_short_15
738   };
739   static const char *const alt_long_patt[] = {
740     f32_1, f32_2, alt_3, alt_4, alt_5, alt_6, alt_7, alt_8,
741     alt_9, alt_10, alt_long_11, alt_long_12, alt_long_13,
742     alt_long_14, alt_long_15
743   };
744
745   if (count <= 0 || count > 15)
746     return;
747
748   /* We need to decide which NOP sequence to use for 32bit and
749      64bit. When -mtune= is used:
750
751      1. For PROCESSOR_I486, PROCESSOR_PENTIUM and PROCESSOR_GENERIC32,
752      f32_patt will be used.
753      2. For PROCESSOR_K8 and PROCESSOR_AMDFAM10 in 64bit, NOPs with
754      0x66 prefix will be used.
755      3. For PROCESSOR_CORE2, alt_long_patt will be used.
756      4. For PROCESSOR_PENTIUMPRO, PROCESSOR_PENTIUM4, PROCESSOR_NOCONA,
757      PROCESSOR_CORE, PROCESSOR_CORE2, PROCESSOR_K6, PROCESSOR_ATHLON
758      and PROCESSOR_GENERIC64, alt_short_patt will be used.
759
760      When -mtune= isn't used, alt_short_patt will be used if
761      cpu_arch_isa_flags has Cpu686. Otherwise, f32_patt will be used.
762
763      When -march= or .arch is used, we can't use anything beyond
764      cpu_arch_isa_flags.   */
765
766   if (flag_code == CODE_16BIT)
767     {
768       memcpy (fragP->fr_literal + fragP->fr_fix,
769               f16_patt[count - 1], count);
770       if (count > 8)
771         /* Adjust jump offset.  */
772         fragP->fr_literal[fragP->fr_fix + 1] = count - 2;
773     }
774   else if (flag_code == CODE_64BIT && cpu_arch_tune == PROCESSOR_K8)
775     {
776       int i;
777       int nnops = (count + 3) / 4;
778       int len = count / nnops;
779       int remains = count - nnops * len;
780       int pos = 0;
781
782       /* The recommended way to pad 64bit code is to use NOPs preceded
783          by maximally four 0x66 prefixes.  Balance the size of nops.  */
784       for (i = 0; i < remains; i++)
785         {
786           memset (fragP->fr_literal + fragP->fr_fix + pos, 0x66, len);
787           fragP->fr_literal[fragP->fr_fix + pos + len] = 0x90;
788           pos += len + 1;
789         }
790       for (; i < nnops; i++)
791         {
792           memset (fragP->fr_literal + fragP->fr_fix + pos, 0x66, len - 1);
793           fragP->fr_literal[fragP->fr_fix + pos + len - 1] = 0x90;
794           pos += len;
795         }
796     }
797   else
798     {
799       const char *const *patt = NULL;
800
801       if (cpu_arch_isa == PROCESSOR_UNKNOWN)
802         {
803           /* PROCESSOR_UNKNOWN means that all ISAs may be used.  */
804           switch (cpu_arch_tune)
805             {
806             case PROCESSOR_UNKNOWN:
807               /* We use cpu_arch_isa_flags to check if we SHOULD
808                  optimize for Cpu686.  */
809               if ((cpu_arch_isa_flags & Cpu686) != 0)
810                 patt = alt_short_patt;
811               else
812                 patt = f32_patt;
813               break;
814             case PROCESSOR_CORE2:
815               patt = alt_long_patt;
816               break;
817             case PROCESSOR_PENTIUMPRO:
818             case PROCESSOR_PENTIUM4:
819             case PROCESSOR_NOCONA:
820             case PROCESSOR_CORE:
821             case PROCESSOR_K6:
822             case PROCESSOR_ATHLON:
823             case PROCESSOR_K8:
824             case PROCESSOR_GENERIC64:
825             case PROCESSOR_AMDFAM10:
826               patt = alt_short_patt;
827               break;
828             case PROCESSOR_I486:
829             case PROCESSOR_PENTIUM:
830             case PROCESSOR_GENERIC32:
831               patt = f32_patt;
832               break;
833             }
834         }
835       else
836         {
837           switch (cpu_arch_tune)
838             {
839             case PROCESSOR_UNKNOWN:
840               /* When cpu_arch_isa is net, cpu_arch_tune shouldn't be
841                  PROCESSOR_UNKNOWN.  */
842               abort ();
843               break;
844
845             case PROCESSOR_I486:
846             case PROCESSOR_PENTIUM:
847             case PROCESSOR_PENTIUMPRO:
848             case PROCESSOR_PENTIUM4:
849             case PROCESSOR_NOCONA:
850             case PROCESSOR_CORE:
851             case PROCESSOR_K6:
852             case PROCESSOR_ATHLON:
853             case PROCESSOR_K8:
854             case PROCESSOR_AMDFAM10:
855             case PROCESSOR_GENERIC32:
856               /* We use cpu_arch_isa_flags to check if we CAN optimize
857                  for Cpu686.  */
858               if ((cpu_arch_isa_flags & Cpu686) != 0)
859                 patt = alt_short_patt;
860               else
861                 patt = f32_patt;
862               break;
863             case PROCESSOR_CORE2:
864               if ((cpu_arch_isa_flags & Cpu686) != 0)
865                 patt = alt_long_patt;
866               else
867                 patt = f32_patt;
868               break;
869             case PROCESSOR_GENERIC64:
870               patt = alt_short_patt;
871               break;
872             }
873         }
874
875       memcpy (fragP->fr_literal + fragP->fr_fix,
876               patt[count - 1], count);
877     }
878   fragP->fr_var = count;
879 }
880
881 static INLINE unsigned int
882 mode_from_disp_size (unsigned int t)
883 {
884   return (t & Disp8) ? 1 : (t & (Disp16 | Disp32 | Disp32S)) ? 2 : 0;
885 }
886
887 static INLINE int
888 fits_in_signed_byte (offsetT num)
889 {
890   return (num >= -128) && (num <= 127);
891 }
892
893 static INLINE int
894 fits_in_unsigned_byte (offsetT num)
895 {
896   return (num & 0xff) == num;
897 }
898
899 static INLINE int
900 fits_in_unsigned_word (offsetT num)
901 {
902   return (num & 0xffff) == num;
903 }
904
905 static INLINE int
906 fits_in_signed_word (offsetT num)
907 {
908   return (-32768 <= num) && (num <= 32767);
909 }
910
911 static INLINE int
912 fits_in_signed_long (offsetT num ATTRIBUTE_UNUSED)
913 {
914 #ifndef BFD64
915   return 1;
916 #else
917   return (!(((offsetT) -1 << 31) & num)
918           || (((offsetT) -1 << 31) & num) == ((offsetT) -1 << 31));
919 #endif
920 }                               /* fits_in_signed_long() */
921
922 static INLINE int
923 fits_in_unsigned_long (offsetT num ATTRIBUTE_UNUSED)
924 {
925 #ifndef BFD64
926   return 1;
927 #else
928   return (num & (((offsetT) 2 << 31) - 1)) == num;
929 #endif
930 }                               /* fits_in_unsigned_long() */
931
932 static unsigned int
933 smallest_imm_type (offsetT num)
934 {
935   if (cpu_arch_flags != (Cpu186 | Cpu286 | Cpu386 | Cpu486 | CpuNo64))
936     {
937       /* This code is disabled on the 486 because all the Imm1 forms
938          in the opcode table are slower on the i486.  They're the
939          versions with the implicitly specified single-position
940          displacement, which has another syntax if you really want to
941          use that form.  */
942       if (num == 1)
943         return Imm1 | Imm8 | Imm8S | Imm16 | Imm32 | Imm32S | Imm64;
944     }
945   return (fits_in_signed_byte (num)
946           ? (Imm8S | Imm8 | Imm16 | Imm32 | Imm32S | Imm64)
947           : fits_in_unsigned_byte (num)
948           ? (Imm8 | Imm16 | Imm32 | Imm32S | Imm64)
949           : (fits_in_signed_word (num) || fits_in_unsigned_word (num))
950           ? (Imm16 | Imm32 | Imm32S | Imm64)
951           : fits_in_signed_long (num)
952           ? (Imm32 | Imm32S | Imm64)
953           : fits_in_unsigned_long (num)
954           ? (Imm32 | Imm64)
955           : Imm64);
956 }
957
958 static offsetT
959 offset_in_range (offsetT val, int size)
960 {
961   addressT mask;
962
963   switch (size)
964     {
965     case 1: mask = ((addressT) 1 <<  8) - 1; break;
966     case 2: mask = ((addressT) 1 << 16) - 1; break;
967     case 4: mask = ((addressT) 2 << 31) - 1; break;
968 #ifdef BFD64
969     case 8: mask = ((addressT) 2 << 63) - 1; break;
970 #endif
971     default: abort ();
972     }
973
974   /* If BFD64, sign extend val.  */
975   if (!use_rela_relocations)
976     if ((val & ~(((addressT) 2 << 31) - 1)) == 0)
977       val = (val ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
978
979   if ((val & ~mask) != 0 && (val & ~mask) != ~mask)
980     {
981       char buf1[40], buf2[40];
982
983       sprint_value (buf1, val);
984       sprint_value (buf2, val & mask);
985       as_warn (_("%s shortened to %s"), buf1, buf2);
986     }
987   return val & mask;
988 }
989
990 /* Returns 0 if attempting to add a prefix where one from the same
991    class already exists, 1 if non rep/repne added, 2 if rep/repne
992    added.  */
993 static int
994 add_prefix (unsigned int prefix)
995 {
996   int ret = 1;
997   unsigned int q;
998
999   if (prefix >= REX_OPCODE && prefix < REX_OPCODE + 16
1000       && flag_code == CODE_64BIT)
1001     {
1002       if ((i.prefix[REX_PREFIX] & prefix & REX_W)
1003           || ((i.prefix[REX_PREFIX] & (REX_R | REX_X | REX_B))
1004               && (prefix & (REX_R | REX_X | REX_B))))
1005         ret = 0;
1006       q = REX_PREFIX;
1007     }
1008   else
1009     {
1010       switch (prefix)
1011         {
1012         default:
1013           abort ();
1014
1015         case CS_PREFIX_OPCODE:
1016         case DS_PREFIX_OPCODE:
1017         case ES_PREFIX_OPCODE:
1018         case FS_PREFIX_OPCODE:
1019         case GS_PREFIX_OPCODE:
1020         case SS_PREFIX_OPCODE:
1021           q = SEG_PREFIX;
1022           break;
1023
1024         case REPNE_PREFIX_OPCODE:
1025         case REPE_PREFIX_OPCODE:
1026           ret = 2;
1027           /* fall thru */
1028         case LOCK_PREFIX_OPCODE:
1029           q = LOCKREP_PREFIX;
1030           break;
1031
1032         case FWAIT_OPCODE:
1033           q = WAIT_PREFIX;
1034           break;
1035
1036         case ADDR_PREFIX_OPCODE:
1037           q = ADDR_PREFIX;
1038           break;
1039
1040         case DATA_PREFIX_OPCODE:
1041           q = DATA_PREFIX;
1042           break;
1043         }
1044       if (i.prefix[q] != 0)
1045         ret = 0;
1046     }
1047
1048   if (ret)
1049     {
1050       if (!i.prefix[q])
1051         ++i.prefixes;
1052       i.prefix[q] |= prefix;
1053     }
1054   else
1055     as_bad (_("same type of prefix used twice"));
1056
1057   return ret;
1058 }
1059
1060 static void
1061 set_code_flag (int value)
1062 {
1063   flag_code = value;
1064   cpu_arch_flags &= ~(Cpu64 | CpuNo64);
1065   cpu_arch_flags |= (flag_code == CODE_64BIT ? Cpu64 : CpuNo64);
1066   if (value == CODE_64BIT && !(cpu_arch_flags & CpuSledgehammer))
1067     {
1068       as_bad (_("64bit mode not supported on this CPU."));
1069     }
1070   if (value == CODE_32BIT && !(cpu_arch_flags & Cpu386))
1071     {
1072       as_bad (_("32bit mode not supported on this CPU."));
1073     }
1074   stackop_size = '\0';
1075 }
1076
1077 static void
1078 set_16bit_gcc_code_flag (int new_code_flag)
1079 {
1080   flag_code = new_code_flag;
1081   cpu_arch_flags &= ~(Cpu64 | CpuNo64);
1082   cpu_arch_flags |= (flag_code == CODE_64BIT ? Cpu64 : CpuNo64);
1083   stackop_size = LONG_MNEM_SUFFIX;
1084 }
1085
1086 static void
1087 set_intel_syntax (int syntax_flag)
1088 {
1089   /* Find out if register prefixing is specified.  */
1090   int ask_naked_reg = 0;
1091
1092   SKIP_WHITESPACE ();
1093   if (!is_end_of_line[(unsigned char) *input_line_pointer])
1094     {
1095       char *string = input_line_pointer;
1096       int e = get_symbol_end ();
1097
1098       if (strcmp (string, "prefix") == 0)
1099         ask_naked_reg = 1;
1100       else if (strcmp (string, "noprefix") == 0)
1101         ask_naked_reg = -1;
1102       else
1103         as_bad (_("bad argument to syntax directive."));
1104       *input_line_pointer = e;
1105     }
1106   demand_empty_rest_of_line ();
1107
1108   intel_syntax = syntax_flag;
1109
1110   if (ask_naked_reg == 0)
1111     allow_naked_reg = (intel_syntax
1112                        && (bfd_get_symbol_leading_char (stdoutput) != '\0'));
1113   else
1114     allow_naked_reg = (ask_naked_reg < 0);
1115
1116   identifier_chars['%'] = intel_syntax && allow_naked_reg ? '%' : 0;
1117   identifier_chars['$'] = intel_syntax ? '$' : 0;
1118   register_prefix = allow_naked_reg ? "" : "%";
1119 }
1120
1121 static void
1122 set_cpu_arch (int dummy ATTRIBUTE_UNUSED)
1123 {
1124   SKIP_WHITESPACE ();
1125
1126   if (!is_end_of_line[(unsigned char) *input_line_pointer])
1127     {
1128       char *string = input_line_pointer;
1129       int e = get_symbol_end ();
1130       unsigned int i;
1131
1132       for (i = 0; i < ARRAY_SIZE (cpu_arch); i++)
1133         {
1134           if (strcmp (string, cpu_arch[i].name) == 0)
1135             {
1136               if (*string != '.')
1137                 {
1138                   cpu_arch_name = cpu_arch[i].name;
1139                   cpu_sub_arch_name = NULL;
1140                   cpu_arch_flags = (cpu_arch[i].flags
1141                                     | (flag_code == CODE_64BIT
1142                                        ? Cpu64 : CpuNo64));
1143                   cpu_arch_isa = cpu_arch[i].type;
1144                   cpu_arch_isa_flags = cpu_arch[i].flags;
1145                   if (!cpu_arch_tune_set)
1146                     {
1147                       cpu_arch_tune = cpu_arch_isa;
1148                       cpu_arch_tune_flags = cpu_arch_isa_flags;
1149                     }
1150                   break;
1151                 }
1152               if ((cpu_arch_flags | cpu_arch[i].flags) != cpu_arch_flags)
1153                 {
1154                   cpu_sub_arch_name = cpu_arch[i].name;
1155                   cpu_arch_flags |= cpu_arch[i].flags;
1156                 }
1157               *input_line_pointer = e;
1158               demand_empty_rest_of_line ();
1159               return;
1160             }
1161         }
1162       if (i >= ARRAY_SIZE (cpu_arch))
1163         as_bad (_("no such architecture: `%s'"), string);
1164
1165       *input_line_pointer = e;
1166     }
1167   else
1168     as_bad (_("missing cpu architecture"));
1169
1170   no_cond_jump_promotion = 0;
1171   if (*input_line_pointer == ','
1172       && !is_end_of_line[(unsigned char) input_line_pointer[1]])
1173     {
1174       char *string = ++input_line_pointer;
1175       int e = get_symbol_end ();
1176
1177       if (strcmp (string, "nojumps") == 0)
1178         no_cond_jump_promotion = 1;
1179       else if (strcmp (string, "jumps") == 0)
1180         ;
1181       else
1182         as_bad (_("no such architecture modifier: `%s'"), string);
1183
1184       *input_line_pointer = e;
1185     }
1186
1187   demand_empty_rest_of_line ();
1188 }
1189
1190 unsigned long
1191 i386_mach ()
1192 {
1193   if (!strcmp (default_arch, "x86_64"))
1194     return bfd_mach_x86_64;
1195   else if (!strcmp (default_arch, "i386"))
1196     return bfd_mach_i386_i386;
1197   else
1198     as_fatal (_("Unknown architecture"));
1199 }
1200 \f
1201 void
1202 md_begin ()
1203 {
1204   const char *hash_err;
1205
1206   /* Initialize op_hash hash table.  */
1207   op_hash = hash_new ();
1208
1209   {
1210     const template *optab;
1211     templates *core_optab;
1212
1213     /* Setup for loop.  */
1214     optab = i386_optab;
1215     core_optab = (templates *) xmalloc (sizeof (templates));
1216     core_optab->start = optab;
1217
1218     while (1)
1219       {
1220         ++optab;
1221         if (optab->name == NULL
1222             || strcmp (optab->name, (optab - 1)->name) != 0)
1223           {
1224             /* different name --> ship out current template list;
1225                add to hash table; & begin anew.  */
1226             core_optab->end = optab;
1227             hash_err = hash_insert (op_hash,
1228                                     (optab - 1)->name,
1229                                     (PTR) core_optab);
1230             if (hash_err)
1231               {
1232                 as_fatal (_("Internal Error:  Can't hash %s: %s"),
1233                           (optab - 1)->name,
1234                           hash_err);
1235               }
1236             if (optab->name == NULL)
1237               break;
1238             core_optab = (templates *) xmalloc (sizeof (templates));
1239             core_optab->start = optab;
1240           }
1241       }
1242   }
1243
1244   /* Initialize reg_hash hash table.  */
1245   reg_hash = hash_new ();
1246   {
1247     const reg_entry *regtab;
1248     unsigned int regtab_size = i386_regtab_size;
1249
1250     for (regtab = i386_regtab; regtab_size--; regtab++)
1251       {
1252         hash_err = hash_insert (reg_hash, regtab->reg_name, (PTR) regtab);
1253         if (hash_err)
1254           as_fatal (_("Internal Error:  Can't hash %s: %s"),
1255                     regtab->reg_name,
1256                     hash_err);
1257       }
1258   }
1259
1260   /* Fill in lexical tables:  mnemonic_chars, operand_chars.  */
1261   {
1262     int c;
1263     char *p;
1264
1265     for (c = 0; c < 256; c++)
1266       {
1267         if (ISDIGIT (c))
1268           {
1269             digit_chars[c] = c;
1270             mnemonic_chars[c] = c;
1271             register_chars[c] = c;
1272             operand_chars[c] = c;
1273           }
1274         else if (ISLOWER (c))
1275           {
1276             mnemonic_chars[c] = c;
1277             register_chars[c] = c;
1278             operand_chars[c] = c;
1279           }
1280         else if (ISUPPER (c))
1281           {
1282             mnemonic_chars[c] = TOLOWER (c);
1283             register_chars[c] = mnemonic_chars[c];
1284             operand_chars[c] = c;
1285           }
1286
1287         if (ISALPHA (c) || ISDIGIT (c))
1288           identifier_chars[c] = c;
1289         else if (c >= 128)
1290           {
1291             identifier_chars[c] = c;
1292             operand_chars[c] = c;
1293           }
1294       }
1295
1296 #ifdef LEX_AT
1297     identifier_chars['@'] = '@';
1298 #endif
1299 #ifdef LEX_QM
1300     identifier_chars['?'] = '?';
1301     operand_chars['?'] = '?';
1302 #endif
1303     digit_chars['-'] = '-';
1304     mnemonic_chars['-'] = '-';
1305     mnemonic_chars['.'] = '.';
1306     identifier_chars['_'] = '_';
1307     identifier_chars['.'] = '.';
1308
1309     for (p = operand_special_chars; *p != '\0'; p++)
1310       operand_chars[(unsigned char) *p] = *p;
1311   }
1312
1313 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
1314   if (IS_ELF)
1315     {
1316       record_alignment (text_section, 2);
1317       record_alignment (data_section, 2);
1318       record_alignment (bss_section, 2);
1319     }
1320 #endif
1321
1322   if (flag_code == CODE_64BIT)
1323     {
1324       x86_dwarf2_return_column = 16;
1325       x86_cie_data_alignment = -8;
1326     }
1327   else
1328     {
1329       x86_dwarf2_return_column = 8;
1330       x86_cie_data_alignment = -4;
1331     }
1332 }
1333
1334 void
1335 i386_print_statistics (FILE *file)
1336 {
1337   hash_print_statistics (file, "i386 opcode", op_hash);
1338   hash_print_statistics (file, "i386 register", reg_hash);
1339 }
1340 \f
1341 #ifdef DEBUG386
1342
1343 /* Debugging routines for md_assemble.  */
1344 static void pte (template *);
1345 static void pt (unsigned int);
1346 static void pe (expressionS *);
1347 static void ps (symbolS *);
1348
1349 static void
1350 pi (char *line, i386_insn *x)
1351 {
1352   unsigned int i;
1353
1354   fprintf (stdout, "%s: template ", line);
1355   pte (&x->tm);
1356   fprintf (stdout, "  address: base %s  index %s  scale %x\n",
1357            x->base_reg ? x->base_reg->reg_name : "none",
1358            x->index_reg ? x->index_reg->reg_name : "none",
1359            x->log2_scale_factor);
1360   fprintf (stdout, "  modrm:  mode %x  reg %x  reg/mem %x\n",
1361            x->rm.mode, x->rm.reg, x->rm.regmem);
1362   fprintf (stdout, "  sib:  base %x  index %x  scale %x\n",
1363            x->sib.base, x->sib.index, x->sib.scale);
1364   fprintf (stdout, "  rex: 64bit %x  extX %x  extY %x  extZ %x\n",
1365            (x->rex & REX_W) != 0,
1366            (x->rex & REX_R) != 0,
1367            (x->rex & REX_X) != 0,
1368            (x->rex & REX_B) != 0);
1369   for (i = 0; i < x->operands; i++)
1370     {
1371       fprintf (stdout, "    #%d:  ", i + 1);
1372       pt (x->types[i]);
1373       fprintf (stdout, "\n");
1374       if (x->types[i]
1375           & (Reg | SReg2 | SReg3 | Control | Debug | Test | RegMMX | RegXMM))
1376         fprintf (stdout, "%s\n", x->op[i].regs->reg_name);
1377       if (x->types[i] & Imm)
1378         pe (x->op[i].imms);
1379       if (x->types[i] & Disp)
1380         pe (x->op[i].disps);
1381     }
1382 }
1383
1384 static void
1385 pte (template *t)
1386 {
1387   unsigned int i;
1388   fprintf (stdout, " %d operands ", t->operands);
1389   fprintf (stdout, "opcode %x ", t->base_opcode);
1390   if (t->extension_opcode != None)
1391     fprintf (stdout, "ext %x ", t->extension_opcode);
1392   if (t->opcode_modifier & D)
1393     fprintf (stdout, "D");
1394   if (t->opcode_modifier & W)
1395     fprintf (stdout, "W");
1396   fprintf (stdout, "\n");
1397   for (i = 0; i < t->operands; i++)
1398     {
1399       fprintf (stdout, "    #%d type ", i + 1);
1400       pt (t->operand_types[i]);
1401       fprintf (stdout, "\n");
1402     }
1403 }
1404
1405 static void
1406 pe (expressionS *e)
1407 {
1408   fprintf (stdout, "    operation     %d\n", e->X_op);
1409   fprintf (stdout, "    add_number    %ld (%lx)\n",
1410            (long) e->X_add_number, (long) e->X_add_number);
1411   if (e->X_add_symbol)
1412     {
1413       fprintf (stdout, "    add_symbol    ");
1414       ps (e->X_add_symbol);
1415       fprintf (stdout, "\n");
1416     }
1417   if (e->X_op_symbol)
1418     {
1419       fprintf (stdout, "    op_symbol    ");
1420       ps (e->X_op_symbol);
1421       fprintf (stdout, "\n");
1422     }
1423 }
1424
1425 static void
1426 ps (symbolS *s)
1427 {
1428   fprintf (stdout, "%s type %s%s",
1429            S_GET_NAME (s),
1430            S_IS_EXTERNAL (s) ? "EXTERNAL " : "",
1431            segment_name (S_GET_SEGMENT (s)));
1432 }
1433
1434 static struct type_name
1435   {
1436     unsigned int mask;
1437     char *tname;
1438   }
1439 const type_names[] =
1440 {
1441   { Reg8, "r8" },
1442   { Reg16, "r16" },
1443   { Reg32, "r32" },
1444   { Reg64, "r64" },
1445   { Imm8, "i8" },
1446   { Imm8S, "i8s" },
1447   { Imm16, "i16" },
1448   { Imm32, "i32" },
1449   { Imm32S, "i32s" },
1450   { Imm64, "i64" },
1451   { Imm1, "i1" },
1452   { BaseIndex, "BaseIndex" },
1453   { Disp8, "d8" },
1454   { Disp16, "d16" },
1455   { Disp32, "d32" },
1456   { Disp32S, "d32s" },
1457   { Disp64, "d64" },
1458   { InOutPortReg, "InOutPortReg" },
1459   { ShiftCount, "ShiftCount" },
1460   { Control, "control reg" },
1461   { Test, "test reg" },
1462   { Debug, "debug reg" },
1463   { FloatReg, "FReg" },
1464   { FloatAcc, "FAcc" },
1465   { SReg2, "SReg2" },
1466   { SReg3, "SReg3" },
1467   { Acc, "Acc" },
1468   { JumpAbsolute, "Jump Absolute" },
1469   { RegMMX, "rMMX" },
1470   { RegXMM, "rXMM" },
1471   { EsSeg, "es" },
1472   { 0, "" }
1473 };
1474
1475 static void
1476 pt (t)
1477      unsigned int t;
1478 {
1479   const struct type_name *ty;
1480
1481   for (ty = type_names; ty->mask; ty++)
1482     if (t & ty->mask)
1483       fprintf (stdout, "%s, ", ty->tname);
1484   fflush (stdout);
1485 }
1486
1487 #endif /* DEBUG386 */
1488 \f
1489 static bfd_reloc_code_real_type
1490 reloc (unsigned int size,
1491        int pcrel,
1492        int sign,
1493        bfd_reloc_code_real_type other)
1494 {
1495   if (other != NO_RELOC)
1496     {
1497       reloc_howto_type *reloc;
1498
1499       if (size == 8)
1500         switch (other)
1501           {
1502           case BFD_RELOC_X86_64_GOT32:
1503             return BFD_RELOC_X86_64_GOT64;
1504             break;
1505           case BFD_RELOC_X86_64_PLTOFF64:
1506             return BFD_RELOC_X86_64_PLTOFF64;
1507             break;
1508           case BFD_RELOC_X86_64_GOTPC32:
1509             other = BFD_RELOC_X86_64_GOTPC64;
1510             break;
1511           case BFD_RELOC_X86_64_GOTPCREL:
1512             other = BFD_RELOC_X86_64_GOTPCREL64;
1513             break;
1514           case BFD_RELOC_X86_64_TPOFF32:
1515             other = BFD_RELOC_X86_64_TPOFF64;
1516             break;
1517           case BFD_RELOC_X86_64_DTPOFF32:
1518             other = BFD_RELOC_X86_64_DTPOFF64;
1519             break;
1520           default:
1521             break;
1522           }
1523
1524       /* Sign-checking 4-byte relocations in 16-/32-bit code is pointless.  */
1525       if (size == 4 && flag_code != CODE_64BIT)
1526         sign = -1;
1527
1528       reloc = bfd_reloc_type_lookup (stdoutput, other);
1529       if (!reloc)
1530         as_bad (_("unknown relocation (%u)"), other);
1531       else if (size != bfd_get_reloc_size (reloc))
1532         as_bad (_("%u-byte relocation cannot be applied to %u-byte field"),
1533                 bfd_get_reloc_size (reloc),
1534                 size);
1535       else if (pcrel && !reloc->pc_relative)
1536         as_bad (_("non-pc-relative relocation for pc-relative field"));
1537       else if ((reloc->complain_on_overflow == complain_overflow_signed
1538                 && !sign)
1539                || (reloc->complain_on_overflow == complain_overflow_unsigned
1540                    && sign > 0))
1541         as_bad (_("relocated field and relocation type differ in signedness"));
1542       else
1543         return other;
1544       return NO_RELOC;
1545     }
1546
1547   if (pcrel)
1548     {
1549       if (!sign)
1550         as_bad (_("there are no unsigned pc-relative relocations"));
1551       switch (size)
1552         {
1553         case 1: return BFD_RELOC_8_PCREL;
1554         case 2: return BFD_RELOC_16_PCREL;
1555         case 4: return BFD_RELOC_32_PCREL;
1556         case 8: return BFD_RELOC_64_PCREL;
1557         }
1558       as_bad (_("cannot do %u byte pc-relative relocation"), size);
1559     }
1560   else
1561     {
1562       if (sign > 0)
1563         switch (size)
1564           {
1565           case 4: return BFD_RELOC_X86_64_32S;
1566           }
1567       else
1568         switch (size)
1569           {
1570           case 1: return BFD_RELOC_8;
1571           case 2: return BFD_RELOC_16;
1572           case 4: return BFD_RELOC_32;
1573           case 8: return BFD_RELOC_64;
1574           }
1575       as_bad (_("cannot do %s %u byte relocation"),
1576               sign > 0 ? "signed" : "unsigned", size);
1577     }
1578
1579   abort ();
1580   return BFD_RELOC_NONE;
1581 }
1582
1583 /* Here we decide which fixups can be adjusted to make them relative to
1584    the beginning of the section instead of the symbol.  Basically we need
1585    to make sure that the dynamic relocations are done correctly, so in
1586    some cases we force the original symbol to be used.  */
1587
1588 int
1589 tc_i386_fix_adjustable (fixS *fixP ATTRIBUTE_UNUSED)
1590 {
1591 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
1592   if (!IS_ELF)
1593     return 1;
1594
1595   /* Don't adjust pc-relative references to merge sections in 64-bit
1596      mode.  */
1597   if (use_rela_relocations
1598       && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0
1599       && fixP->fx_pcrel)
1600     return 0;
1601
1602   /* The x86_64 GOTPCREL are represented as 32bit PCrel relocations
1603      and changed later by validate_fix.  */
1604   if (GOT_symbol && fixP->fx_subsy == GOT_symbol
1605       && fixP->fx_r_type == BFD_RELOC_32_PCREL)
1606     return 0;
1607
1608   /* adjust_reloc_syms doesn't know about the GOT.  */
1609   if (fixP->fx_r_type == BFD_RELOC_386_GOTOFF
1610       || fixP->fx_r_type == BFD_RELOC_386_PLT32
1611       || fixP->fx_r_type == BFD_RELOC_386_GOT32
1612       || fixP->fx_r_type == BFD_RELOC_386_TLS_GD
1613       || fixP->fx_r_type == BFD_RELOC_386_TLS_LDM
1614       || fixP->fx_r_type == BFD_RELOC_386_TLS_LDO_32
1615       || fixP->fx_r_type == BFD_RELOC_386_TLS_IE_32
1616       || fixP->fx_r_type == BFD_RELOC_386_TLS_IE
1617       || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTIE
1618       || fixP->fx_r_type == BFD_RELOC_386_TLS_LE_32
1619       || fixP->fx_r_type == BFD_RELOC_386_TLS_LE
1620       || fixP->fx_r_type == BFD_RELOC_386_TLS_GOTDESC
1621       || fixP->fx_r_type == BFD_RELOC_386_TLS_DESC_CALL
1622       || fixP->fx_r_type == BFD_RELOC_X86_64_PLT32
1623       || fixP->fx_r_type == BFD_RELOC_X86_64_GOT32
1624       || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCREL
1625       || fixP->fx_r_type == BFD_RELOC_X86_64_TLSGD
1626       || fixP->fx_r_type == BFD_RELOC_X86_64_TLSLD
1627       || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF32
1628       || fixP->fx_r_type == BFD_RELOC_X86_64_DTPOFF64
1629       || fixP->fx_r_type == BFD_RELOC_X86_64_GOTTPOFF
1630       || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF32
1631       || fixP->fx_r_type == BFD_RELOC_X86_64_TPOFF64
1632       || fixP->fx_r_type == BFD_RELOC_X86_64_GOTOFF64
1633       || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPC32_TLSDESC
1634       || fixP->fx_r_type == BFD_RELOC_X86_64_TLSDESC_CALL
1635       || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
1636       || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
1637     return 0;
1638 #endif
1639   return 1;
1640 }
1641
1642 static int
1643 intel_float_operand (const char *mnemonic)
1644 {
1645   /* Note that the value returned is meaningful only for opcodes with (memory)
1646      operands, hence the code here is free to improperly handle opcodes that
1647      have no operands (for better performance and smaller code). */
1648
1649   if (mnemonic[0] != 'f')
1650     return 0; /* non-math */
1651
1652   switch (mnemonic[1])
1653     {
1654     /* fclex, fdecstp, fdisi, femms, feni, fincstp, finit, fsetpm, and
1655        the fs segment override prefix not currently handled because no
1656        call path can make opcodes without operands get here */
1657     case 'i':
1658       return 2 /* integer op */;
1659     case 'l':
1660       if (mnemonic[2] == 'd' && (mnemonic[3] == 'c' || mnemonic[3] == 'e'))
1661         return 3; /* fldcw/fldenv */
1662       break;
1663     case 'n':
1664       if (mnemonic[2] != 'o' /* fnop */)
1665         return 3; /* non-waiting control op */
1666       break;
1667     case 'r':
1668       if (mnemonic[2] == 's')
1669         return 3; /* frstor/frstpm */
1670       break;
1671     case 's':
1672       if (mnemonic[2] == 'a')
1673         return 3; /* fsave */
1674       if (mnemonic[2] == 't')
1675         {
1676           switch (mnemonic[3])
1677             {
1678             case 'c': /* fstcw */
1679             case 'd': /* fstdw */
1680             case 'e': /* fstenv */
1681             case 's': /* fsts[gw] */
1682               return 3;
1683             }
1684         }
1685       break;
1686     case 'x':
1687       if (mnemonic[2] == 'r' || mnemonic[2] == 's')
1688         return 0; /* fxsave/fxrstor are not really math ops */
1689       break;
1690     }
1691
1692   return 1;
1693 }
1694
1695 /* This is the guts of the machine-dependent assembler.  LINE points to a
1696    machine dependent instruction.  This function is supposed to emit
1697    the frags/bytes it assembles to.  */
1698
1699 void
1700 md_assemble (line)
1701      char *line;
1702 {
1703   int j;
1704   char mnemonic[MAX_MNEM_SIZE];
1705
1706   /* Initialize globals.  */
1707   memset (&i, '\0', sizeof (i));
1708   for (j = 0; j < MAX_OPERANDS; j++)
1709     i.reloc[j] = NO_RELOC;
1710   memset (disp_expressions, '\0', sizeof (disp_expressions));
1711   memset (im_expressions, '\0', sizeof (im_expressions));
1712   save_stack_p = save_stack;
1713
1714   /* First parse an instruction mnemonic & call i386_operand for the operands.
1715      We assume that the scrubber has arranged it so that line[0] is the valid
1716      start of a (possibly prefixed) mnemonic.  */
1717
1718   line = parse_insn (line, mnemonic);
1719   if (line == NULL)
1720     return;
1721
1722   line = parse_operands (line, mnemonic);
1723   if (line == NULL)
1724     return;
1725
1726   /* The order of the immediates should be reversed
1727      for 2 immediates extrq and insertq instructions */
1728   if ((i.imm_operands == 2)
1729       && ((strcmp (mnemonic, "extrq") == 0)
1730           || (strcmp (mnemonic, "insertq") == 0)))
1731     {
1732       swap_2_operands (0, 1);
1733       /* "extrq" and insertq" are the only two instructions whose operands
1734          have to be reversed even though they have two immediate operands.
1735       */
1736       if (intel_syntax)
1737         swap_operands ();
1738     }
1739
1740   /* Now we've parsed the mnemonic into a set of templates, and have the
1741      operands at hand.  */
1742
1743   /* All intel opcodes have reversed operands except for "bound" and
1744      "enter".  We also don't reverse intersegment "jmp" and "call"
1745      instructions with 2 immediate operands so that the immediate segment
1746      precedes the offset, as it does when in AT&T mode. */
1747   if (intel_syntax
1748       && i.operands > 1
1749       && (strcmp (mnemonic, "bound") != 0)
1750       && (strcmp (mnemonic, "invlpga") != 0)
1751       && !((i.types[0] & Imm) && (i.types[1] & Imm)))
1752     swap_operands ();
1753
1754   if (i.imm_operands)
1755     optimize_imm ();
1756
1757   /* Don't optimize displacement for movabs since it only takes 64bit
1758      displacement.  */
1759   if (i.disp_operands
1760       && (flag_code != CODE_64BIT
1761           || strcmp (mnemonic, "movabs") != 0))
1762     optimize_disp ();
1763
1764   /* Next, we find a template that matches the given insn,
1765      making sure the overlap of the given operands types is consistent
1766      with the template operand types.  */
1767
1768   if (!match_template ())
1769     return;
1770
1771   if (intel_syntax)
1772     {
1773       /* Undo SYSV386_COMPAT brokenness when in Intel mode.  See i386.h  */
1774       if (SYSV386_COMPAT
1775           && (i.tm.base_opcode & 0xfffffde0) == 0xdce0)
1776         i.tm.base_opcode ^= Opcode_FloatR;
1777
1778       /* Zap movzx and movsx suffix.  The suffix may have been set from
1779          "word ptr" or "byte ptr" on the source operand, but we'll use
1780          the suffix later to choose the destination register.  */
1781       if ((i.tm.base_opcode & ~9) == 0x0fb6)
1782         {
1783           if (i.reg_operands < 2
1784               && !i.suffix
1785               && (~i.tm.opcode_modifier
1786                   & (No_bSuf
1787                      | No_wSuf
1788                      | No_lSuf
1789                      | No_sSuf
1790                      | No_xSuf
1791                      | No_qSuf)))
1792             as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
1793
1794           i.suffix = 0;
1795         }
1796     }
1797
1798   if (i.tm.opcode_modifier & FWait)
1799     if (!add_prefix (FWAIT_OPCODE))
1800       return;
1801
1802   /* Check string instruction segment overrides.  */
1803   if ((i.tm.opcode_modifier & IsString) != 0 && i.mem_operands != 0)
1804     {
1805       if (!check_string ())
1806         return;
1807     }
1808
1809   if (!process_suffix ())
1810     return;
1811
1812   /* Make still unresolved immediate matches conform to size of immediate
1813      given in i.suffix.  */
1814   if (!finalize_imm ())
1815     return;
1816
1817   if (i.types[0] & Imm1)
1818     i.imm_operands = 0; /* kludge for shift insns.  */
1819   if (i.types[0] & ImplicitRegister)
1820     i.reg_operands--;
1821   if (i.types[1] & ImplicitRegister)
1822     i.reg_operands--;
1823   if (i.types[2] & ImplicitRegister)
1824     i.reg_operands--;
1825
1826   if (i.tm.opcode_modifier & ImmExt)
1827     {
1828       expressionS *exp;
1829
1830       if ((i.tm.cpu_flags & CpuSSE3) && i.operands > 0)
1831         {
1832           /* Streaming SIMD extensions 3 Instructions have the fixed
1833              operands with an opcode suffix which is coded in the same
1834              place as an 8-bit immediate field would be. Here we check
1835              those operands and remove them afterwards.  */
1836           unsigned int x;
1837
1838           for (x = 0; x < i.operands; x++)
1839             if (i.op[x].regs->reg_num != x)
1840               as_bad (_("can't use register '%s%s' as operand %d in '%s'."),
1841                       register_prefix,
1842                       i.op[x].regs->reg_name,
1843                       x + 1,
1844                       i.tm.name);
1845           i.operands = 0;
1846         }
1847
1848       /* These AMD 3DNow! and Intel Katmai New Instructions have an
1849          opcode suffix which is coded in the same place as an 8-bit
1850          immediate field would be.  Here we fake an 8-bit immediate
1851          operand from the opcode suffix stored in tm.extension_opcode.  */
1852
1853       assert (i.imm_operands == 0 && i.operands <= 2 && 2 < MAX_OPERANDS);
1854
1855       exp = &im_expressions[i.imm_operands++];
1856       i.op[i.operands].imms = exp;
1857       i.types[i.operands++] = Imm8;
1858       exp->X_op = O_constant;
1859       exp->X_add_number = i.tm.extension_opcode;
1860       i.tm.extension_opcode = None;
1861     }
1862
1863   /* For insns with operands there are more diddles to do to the opcode.  */
1864   if (i.operands)
1865     {
1866       if (!process_operands ())
1867         return;
1868     }
1869   else if (!quiet_warnings && (i.tm.opcode_modifier & Ugh) != 0)
1870     {
1871       /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc.  */
1872       as_warn (_("translating to `%sp'"), i.tm.name);
1873     }
1874
1875   /* Handle conversion of 'int $3' --> special int3 insn.  */
1876   if (i.tm.base_opcode == INT_OPCODE && i.op[0].imms->X_add_number == 3)
1877     {
1878       i.tm.base_opcode = INT3_OPCODE;
1879       i.imm_operands = 0;
1880     }
1881
1882   if ((i.tm.opcode_modifier & (Jump | JumpByte | JumpDword))
1883       && i.op[0].disps->X_op == O_constant)
1884     {
1885       /* Convert "jmp constant" (and "call constant") to a jump (call) to
1886          the absolute address given by the constant.  Since ix86 jumps and
1887          calls are pc relative, we need to generate a reloc.  */
1888       i.op[0].disps->X_add_symbol = &abs_symbol;
1889       i.op[0].disps->X_op = O_symbol;
1890     }
1891
1892   if ((i.tm.opcode_modifier & Rex64) != 0)
1893     i.rex |= REX_W;
1894
1895   /* For 8 bit registers we need an empty rex prefix.  Also if the
1896      instruction already has a prefix, we need to convert old
1897      registers to new ones.  */
1898
1899   if (((i.types[0] & Reg8) != 0
1900        && (i.op[0].regs->reg_flags & RegRex64) != 0)
1901       || ((i.types[1] & Reg8) != 0
1902           && (i.op[1].regs->reg_flags & RegRex64) != 0)
1903       || (((i.types[0] & Reg8) != 0 || (i.types[1] & Reg8) != 0)
1904           && i.rex != 0))
1905     {
1906       int x;
1907
1908       i.rex |= REX_OPCODE;
1909       for (x = 0; x < 2; x++)
1910         {
1911           /* Look for 8 bit operand that uses old registers.  */
1912           if ((i.types[x] & Reg8) != 0
1913               && (i.op[x].regs->reg_flags & RegRex64) == 0)
1914             {
1915               /* In case it is "hi" register, give up.  */
1916               if (i.op[x].regs->reg_num > 3)
1917                 as_bad (_("can't encode register '%s%s' in an "
1918                           "instruction requiring REX prefix."),
1919                         register_prefix, i.op[x].regs->reg_name);
1920
1921               /* Otherwise it is equivalent to the extended register.
1922                  Since the encoding doesn't change this is merely
1923                  cosmetic cleanup for debug output.  */
1924
1925               i.op[x].regs = i.op[x].regs + 8;
1926             }
1927         }
1928     }
1929
1930   if (i.rex != 0)
1931     add_prefix (REX_OPCODE | i.rex);
1932
1933   /* We are ready to output the insn.  */
1934   output_insn ();
1935 }
1936
1937 static char *
1938 parse_insn (char *line, char *mnemonic)
1939 {
1940   char *l = line;
1941   char *token_start = l;
1942   char *mnem_p;
1943   int supported;
1944   const template *t;
1945
1946   /* Non-zero if we found a prefix only acceptable with string insns.  */
1947   const char *expecting_string_instruction = NULL;
1948
1949   while (1)
1950     {
1951       mnem_p = mnemonic;
1952       while ((*mnem_p = mnemonic_chars[(unsigned char) *l]) != 0)
1953         {
1954           mnem_p++;
1955           if (mnem_p >= mnemonic + MAX_MNEM_SIZE)
1956             {
1957               as_bad (_("no such instruction: `%s'"), token_start);
1958               return NULL;
1959             }
1960           l++;
1961         }
1962       if (!is_space_char (*l)
1963           && *l != END_OF_INSN
1964           && (intel_syntax
1965               || (*l != PREFIX_SEPARATOR
1966                   && *l != ',')))
1967         {
1968           as_bad (_("invalid character %s in mnemonic"),
1969                   output_invalid (*l));
1970           return NULL;
1971         }
1972       if (token_start == l)
1973         {
1974           if (!intel_syntax && *l == PREFIX_SEPARATOR)
1975             as_bad (_("expecting prefix; got nothing"));
1976           else
1977             as_bad (_("expecting mnemonic; got nothing"));
1978           return NULL;
1979         }
1980
1981       /* Look up instruction (or prefix) via hash table.  */
1982       current_templates = hash_find (op_hash, mnemonic);
1983
1984       if (*l != END_OF_INSN
1985           && (!is_space_char (*l) || l[1] != END_OF_INSN)
1986           && current_templates
1987           && (current_templates->start->opcode_modifier & IsPrefix))
1988         {
1989           if (current_templates->start->cpu_flags
1990               & (flag_code != CODE_64BIT ? Cpu64 : CpuNo64))
1991             {
1992               as_bad ((flag_code != CODE_64BIT
1993                        ? _("`%s' is only supported in 64-bit mode")
1994                        : _("`%s' is not supported in 64-bit mode")),
1995                       current_templates->start->name);
1996               return NULL;
1997             }
1998           /* If we are in 16-bit mode, do not allow addr16 or data16.
1999              Similarly, in 32-bit mode, do not allow addr32 or data32.  */
2000           if ((current_templates->start->opcode_modifier & (Size16 | Size32))
2001               && flag_code != CODE_64BIT
2002               && (((current_templates->start->opcode_modifier & Size32) != 0)
2003                   ^ (flag_code == CODE_16BIT)))
2004             {
2005               as_bad (_("redundant %s prefix"),
2006                       current_templates->start->name);
2007               return NULL;
2008             }
2009           /* Add prefix, checking for repeated prefixes.  */
2010           switch (add_prefix (current_templates->start->base_opcode))
2011             {
2012             case 0:
2013               return NULL;
2014             case 2:
2015               expecting_string_instruction = current_templates->start->name;
2016               break;
2017             }
2018           /* Skip past PREFIX_SEPARATOR and reset token_start.  */
2019           token_start = ++l;
2020         }
2021       else
2022         break;
2023     }
2024
2025   if (!current_templates)
2026     {
2027       /* See if we can get a match by trimming off a suffix.  */
2028       switch (mnem_p[-1])
2029         {
2030         case WORD_MNEM_SUFFIX:
2031           if (intel_syntax && (intel_float_operand (mnemonic) & 2))
2032             i.suffix = SHORT_MNEM_SUFFIX;
2033           else
2034         case BYTE_MNEM_SUFFIX:
2035         case QWORD_MNEM_SUFFIX:
2036           i.suffix = mnem_p[-1];
2037           mnem_p[-1] = '\0';
2038           current_templates = hash_find (op_hash, mnemonic);
2039           break;
2040         case SHORT_MNEM_SUFFIX:
2041         case LONG_MNEM_SUFFIX:
2042           if (!intel_syntax)
2043             {
2044               i.suffix = mnem_p[-1];
2045               mnem_p[-1] = '\0';
2046               current_templates = hash_find (op_hash, mnemonic);
2047             }
2048           break;
2049
2050           /* Intel Syntax.  */
2051         case 'd':
2052           if (intel_syntax)
2053             {
2054               if (intel_float_operand (mnemonic) == 1)
2055                 i.suffix = SHORT_MNEM_SUFFIX;
2056               else
2057                 i.suffix = LONG_MNEM_SUFFIX;
2058               mnem_p[-1] = '\0';
2059               current_templates = hash_find (op_hash, mnemonic);
2060             }
2061           break;
2062         }
2063       if (!current_templates)
2064         {
2065           as_bad (_("no such instruction: `%s'"), token_start);
2066           return NULL;
2067         }
2068     }
2069
2070   if (current_templates->start->opcode_modifier & (Jump | JumpByte))
2071     {
2072       /* Check for a branch hint.  We allow ",pt" and ",pn" for
2073          predict taken and predict not taken respectively.
2074          I'm not sure that branch hints actually do anything on loop
2075          and jcxz insns (JumpByte) for current Pentium4 chips.  They
2076          may work in the future and it doesn't hurt to accept them
2077          now.  */
2078       if (l[0] == ',' && l[1] == 'p')
2079         {
2080           if (l[2] == 't')
2081             {
2082               if (!add_prefix (DS_PREFIX_OPCODE))
2083                 return NULL;
2084               l += 3;
2085             }
2086           else if (l[2] == 'n')
2087             {
2088               if (!add_prefix (CS_PREFIX_OPCODE))
2089                 return NULL;
2090               l += 3;
2091             }
2092         }
2093     }
2094   /* Any other comma loses.  */
2095   if (*l == ',')
2096     {
2097       as_bad (_("invalid character %s in mnemonic"),
2098               output_invalid (*l));
2099       return NULL;
2100     }
2101
2102   /* Check if instruction is supported on specified architecture.  */
2103   supported = 0;
2104   for (t = current_templates->start; t < current_templates->end; ++t)
2105     {
2106       if (!((t->cpu_flags & ~(Cpu64 | CpuNo64))
2107             & ~(cpu_arch_flags & ~(Cpu64 | CpuNo64))))
2108         supported |= 1;
2109       if (!(t->cpu_flags & (flag_code == CODE_64BIT ? CpuNo64 : Cpu64)))
2110         supported |= 2;
2111     }
2112   if (!(supported & 2))
2113     {
2114       as_bad (flag_code == CODE_64BIT
2115               ? _("`%s' is not supported in 64-bit mode")
2116               : _("`%s' is only supported in 64-bit mode"),
2117               current_templates->start->name);
2118       return NULL;
2119     }
2120   if (!(supported & 1))
2121     {
2122       as_warn (_("`%s' is not supported on `%s%s'"),
2123                current_templates->start->name,
2124                cpu_arch_name,
2125                cpu_sub_arch_name ? cpu_sub_arch_name : "");
2126     }
2127   else if ((Cpu386 & ~cpu_arch_flags) && (flag_code != CODE_16BIT))
2128     {
2129       as_warn (_("use .code16 to ensure correct addressing mode"));
2130     }
2131
2132   /* Check for rep/repne without a string instruction.  */
2133   if (expecting_string_instruction)
2134     {
2135       static templates override;
2136
2137       for (t = current_templates->start; t < current_templates->end; ++t)
2138         if (t->opcode_modifier & IsString)
2139           break;
2140       if (t >= current_templates->end)
2141         {
2142           as_bad (_("expecting string instruction after `%s'"),
2143                   expecting_string_instruction);
2144           return NULL;
2145         }
2146       for (override.start = t; t < current_templates->end; ++t)
2147         if (!(t->opcode_modifier & IsString))
2148           break;
2149       override.end = t;
2150       current_templates = &override;
2151     }
2152
2153   return l;
2154 }
2155
2156 static char *
2157 parse_operands (char *l, const char *mnemonic)
2158 {
2159   char *token_start;
2160
2161   /* 1 if operand is pending after ','.  */
2162   unsigned int expecting_operand = 0;
2163
2164   /* Non-zero if operand parens not balanced.  */
2165   unsigned int paren_not_balanced;
2166
2167   while (*l != END_OF_INSN)
2168     {
2169       /* Skip optional white space before operand.  */
2170       if (is_space_char (*l))
2171         ++l;
2172       if (!is_operand_char (*l) && *l != END_OF_INSN)
2173         {
2174           as_bad (_("invalid character %s before operand %d"),
2175                   output_invalid (*l),
2176                   i.operands + 1);
2177           return NULL;
2178         }
2179       token_start = l;  /* after white space */
2180       paren_not_balanced = 0;
2181       while (paren_not_balanced || *l != ',')
2182         {
2183           if (*l == END_OF_INSN)
2184             {
2185               if (paren_not_balanced)
2186                 {
2187                   if (!intel_syntax)
2188                     as_bad (_("unbalanced parenthesis in operand %d."),
2189                             i.operands + 1);
2190                   else
2191                     as_bad (_("unbalanced brackets in operand %d."),
2192                             i.operands + 1);
2193                   return NULL;
2194                 }
2195               else
2196                 break;  /* we are done */
2197             }
2198           else if (!is_operand_char (*l) && !is_space_char (*l))
2199             {
2200               as_bad (_("invalid character %s in operand %d"),
2201                       output_invalid (*l),
2202                       i.operands + 1);
2203               return NULL;
2204             }
2205           if (!intel_syntax)
2206             {
2207               if (*l == '(')
2208                 ++paren_not_balanced;
2209               if (*l == ')')
2210                 --paren_not_balanced;
2211             }
2212           else
2213             {
2214               if (*l == '[')
2215                 ++paren_not_balanced;
2216               if (*l == ']')
2217                 --paren_not_balanced;
2218             }
2219           l++;
2220         }
2221       if (l != token_start)
2222         {                       /* Yes, we've read in another operand.  */
2223           unsigned int operand_ok;
2224           this_operand = i.operands++;
2225           if (i.operands > MAX_OPERANDS)
2226             {
2227               as_bad (_("spurious operands; (%d operands/instruction max)"),
2228                       MAX_OPERANDS);
2229               return NULL;
2230             }
2231           /* Now parse operand adding info to 'i' as we go along.  */
2232           END_STRING_AND_SAVE (l);
2233
2234           if (intel_syntax)
2235             operand_ok =
2236               i386_intel_operand (token_start,
2237                                   intel_float_operand (mnemonic));
2238           else
2239             operand_ok = i386_operand (token_start);
2240
2241           RESTORE_END_STRING (l);
2242           if (!operand_ok)
2243             return NULL;
2244         }
2245       else
2246         {
2247           if (expecting_operand)
2248             {
2249             expecting_operand_after_comma:
2250               as_bad (_("expecting operand after ','; got nothing"));
2251               return NULL;
2252             }
2253           if (*l == ',')
2254             {
2255               as_bad (_("expecting operand before ','; got nothing"));
2256               return NULL;
2257             }
2258         }
2259
2260       /* Now *l must be either ',' or END_OF_INSN.  */
2261       if (*l == ',')
2262         {
2263           if (*++l == END_OF_INSN)
2264             {
2265               /* Just skip it, if it's \n complain.  */
2266               goto expecting_operand_after_comma;
2267             }
2268           expecting_operand = 1;
2269         }
2270     }
2271   return l;
2272 }
2273
2274 static void
2275 swap_2_operands (int xchg1, int xchg2)
2276 {
2277   union i386_op temp_op;
2278   unsigned int temp_type;
2279   enum bfd_reloc_code_real temp_reloc;
2280
2281   temp_type = i.types[xchg2];
2282   i.types[xchg2] = i.types[xchg1];
2283   i.types[xchg1] = temp_type;
2284   temp_op = i.op[xchg2];
2285   i.op[xchg2] = i.op[xchg1];
2286   i.op[xchg1] = temp_op;
2287   temp_reloc = i.reloc[xchg2];
2288   i.reloc[xchg2] = i.reloc[xchg1];
2289   i.reloc[xchg1] = temp_reloc;
2290 }
2291
2292 static void
2293 swap_operands (void)
2294 {
2295   switch (i.operands)
2296     {
2297     case 4:
2298       swap_2_operands (1, i.operands - 2);
2299     case 3:
2300     case 2:
2301       swap_2_operands (0, i.operands - 1);
2302       break;
2303     default:
2304       abort ();
2305     }
2306
2307   if (i.mem_operands == 2)
2308     {
2309       const seg_entry *temp_seg;
2310       temp_seg = i.seg[0];
2311       i.seg[0] = i.seg[1];
2312       i.seg[1] = temp_seg;
2313     }
2314 }
2315
2316 /* Try to ensure constant immediates are represented in the smallest
2317    opcode possible.  */
2318 static void
2319 optimize_imm (void)
2320 {
2321   char guess_suffix = 0;
2322   int op;
2323
2324   if (i.suffix)
2325     guess_suffix = i.suffix;
2326   else if (i.reg_operands)
2327     {
2328       /* Figure out a suffix from the last register operand specified.
2329          We can't do this properly yet, ie. excluding InOutPortReg,
2330          but the following works for instructions with immediates.
2331          In any case, we can't set i.suffix yet.  */
2332       for (op = i.operands; --op >= 0;)
2333         if (i.types[op] & Reg)
2334           {
2335             if (i.types[op] & Reg8)
2336               guess_suffix = BYTE_MNEM_SUFFIX;
2337             else if (i.types[op] & Reg16)
2338               guess_suffix = WORD_MNEM_SUFFIX;
2339             else if (i.types[op] & Reg32)
2340               guess_suffix = LONG_MNEM_SUFFIX;
2341             else if (i.types[op] & Reg64)
2342               guess_suffix = QWORD_MNEM_SUFFIX;
2343             break;
2344           }
2345     }
2346   else if ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0))
2347     guess_suffix = WORD_MNEM_SUFFIX;
2348
2349   for (op = i.operands; --op >= 0;)
2350     if (i.types[op] & Imm)
2351       {
2352         switch (i.op[op].imms->X_op)
2353           {
2354           case O_constant:
2355             /* If a suffix is given, this operand may be shortened.  */
2356             switch (guess_suffix)
2357               {
2358               case LONG_MNEM_SUFFIX:
2359                 i.types[op] |= Imm32 | Imm64;
2360                 break;
2361               case WORD_MNEM_SUFFIX:
2362                 i.types[op] |= Imm16 | Imm32S | Imm32 | Imm64;
2363                 break;
2364               case BYTE_MNEM_SUFFIX:
2365                 i.types[op] |= Imm16 | Imm8 | Imm8S | Imm32S | Imm32 | Imm64;
2366                 break;
2367               }
2368
2369             /* If this operand is at most 16 bits, convert it
2370                to a signed 16 bit number before trying to see
2371                whether it will fit in an even smaller size.
2372                This allows a 16-bit operand such as $0xffe0 to
2373                be recognised as within Imm8S range.  */
2374             if ((i.types[op] & Imm16)
2375                 && (i.op[op].imms->X_add_number & ~(offsetT) 0xffff) == 0)
2376               {
2377                 i.op[op].imms->X_add_number =
2378                   (((i.op[op].imms->X_add_number & 0xffff) ^ 0x8000) - 0x8000);
2379               }
2380             if ((i.types[op] & Imm32)
2381                 && ((i.op[op].imms->X_add_number & ~(((offsetT) 2 << 31) - 1))
2382                     == 0))
2383               {
2384                 i.op[op].imms->X_add_number = ((i.op[op].imms->X_add_number
2385                                                 ^ ((offsetT) 1 << 31))
2386                                                - ((offsetT) 1 << 31));
2387               }
2388             i.types[op] |= smallest_imm_type (i.op[op].imms->X_add_number);
2389
2390             /* We must avoid matching of Imm32 templates when 64bit
2391                only immediate is available.  */
2392             if (guess_suffix == QWORD_MNEM_SUFFIX)
2393               i.types[op] &= ~Imm32;
2394             break;
2395
2396           case O_absent:
2397           case O_register:
2398             abort ();
2399
2400             /* Symbols and expressions.  */
2401           default:
2402             /* Convert symbolic operand to proper sizes for matching, but don't
2403                prevent matching a set of insns that only supports sizes other
2404                than those matching the insn suffix.  */
2405             {
2406               unsigned int mask, allowed = 0;
2407               const template *t;
2408
2409               for (t = current_templates->start;
2410                    t < current_templates->end;
2411                    ++t)
2412                 allowed |= t->operand_types[op];
2413               switch (guess_suffix)
2414                 {
2415                 case QWORD_MNEM_SUFFIX:
2416                   mask = Imm64 | Imm32S;
2417                   break;
2418                 case LONG_MNEM_SUFFIX:
2419                   mask = Imm32;
2420                   break;
2421                 case WORD_MNEM_SUFFIX:
2422                   mask = Imm16;
2423                   break;
2424                 case BYTE_MNEM_SUFFIX:
2425                   mask = Imm8;
2426                   break;
2427                 default:
2428                   mask = 0;
2429                   break;
2430                 }
2431               if (mask & allowed)
2432                 i.types[op] &= mask;
2433             }
2434             break;
2435           }
2436       }
2437 }
2438
2439 /* Try to use the smallest displacement type too.  */
2440 static void
2441 optimize_disp (void)
2442 {
2443   int op;
2444
2445   for (op = i.operands; --op >= 0;)
2446     if (i.types[op] & Disp)
2447       {
2448         if (i.op[op].disps->X_op == O_constant)
2449           {
2450             offsetT disp = i.op[op].disps->X_add_number;
2451
2452             if ((i.types[op] & Disp16)
2453                 && (disp & ~(offsetT) 0xffff) == 0)
2454               {
2455                 /* If this operand is at most 16 bits, convert
2456                    to a signed 16 bit number and don't use 64bit
2457                    displacement.  */
2458                 disp = (((disp & 0xffff) ^ 0x8000) - 0x8000);
2459                 i.types[op] &= ~Disp64;
2460               }
2461             if ((i.types[op] & Disp32)
2462                 && (disp & ~(((offsetT) 2 << 31) - 1)) == 0)
2463               {
2464                 /* If this operand is at most 32 bits, convert
2465                    to a signed 32 bit number and don't use 64bit
2466                    displacement.  */
2467                 disp &= (((offsetT) 2 << 31) - 1);
2468                 disp = (disp ^ ((offsetT) 1 << 31)) - ((addressT) 1 << 31);
2469                 i.types[op] &= ~Disp64;
2470               }
2471             if (!disp && (i.types[op] & BaseIndex))
2472               {
2473                 i.types[op] &= ~Disp;
2474                 i.op[op].disps = 0;
2475                 i.disp_operands--;
2476               }
2477             else if (flag_code == CODE_64BIT)
2478               {
2479                 if (fits_in_signed_long (disp))
2480                   {
2481                     i.types[op] &= ~Disp64;
2482                     i.types[op] |= Disp32S;
2483                   }
2484                 if (fits_in_unsigned_long (disp))
2485                   i.types[op] |= Disp32;
2486               }
2487             if ((i.types[op] & (Disp32 | Disp32S | Disp16))
2488                 && fits_in_signed_byte (disp))
2489               i.types[op] |= Disp8;
2490           }
2491         else if (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
2492                  || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL)
2493           {
2494             fix_new_exp (frag_now, frag_more (0) - frag_now->fr_literal, 0,
2495                          i.op[op].disps, 0, i.reloc[op]);
2496             i.types[op] &= ~Disp;
2497           }
2498         else
2499           /* We only support 64bit displacement on constants.  */
2500           i.types[op] &= ~Disp64;
2501       }
2502 }
2503
2504 static int
2505 match_template (void)
2506 {
2507   /* Points to template once we've found it.  */
2508   const template *t;
2509   unsigned int overlap0, overlap1, overlap2, overlap3;
2510   unsigned int found_reverse_match;
2511   int suffix_check;
2512   unsigned int operand_types [MAX_OPERANDS];
2513   int addr_prefix_disp;
2514   unsigned int j;
2515
2516 #if MAX_OPERANDS != 4
2517 # error "MAX_OPERANDS must be 4."
2518 #endif
2519
2520 #define MATCH(overlap, given, template)                         \
2521   ((overlap & ~JumpAbsolute)                                    \
2522    && (((given) & (BaseIndex | JumpAbsolute))                   \
2523        == ((overlap) & (BaseIndex | JumpAbsolute))))
2524
2525   /* If given types r0 and r1 are registers they must be of the same type
2526      unless the expected operand type register overlap is null.
2527      Note that Acc in a template matches every size of reg.  */
2528 #define CONSISTENT_REGISTER_MATCH(m0, g0, t0, m1, g1, t1)       \
2529   (((g0) & Reg) == 0 || ((g1) & Reg) == 0                       \
2530    || ((g0) & Reg) == ((g1) & Reg)                              \
2531    || ((((m0) & Acc) ? Reg : (t0)) & (((m1) & Acc) ? Reg : (t1)) & Reg) == 0 )
2532
2533   overlap0 = 0;
2534   overlap1 = 0;
2535   overlap2 = 0;
2536   overlap3 = 0;
2537   found_reverse_match = 0;
2538   for (j = 0; j < MAX_OPERANDS; j++)
2539     operand_types [j] = 0;
2540   addr_prefix_disp = -1;
2541   suffix_check = (i.suffix == BYTE_MNEM_SUFFIX
2542                   ? No_bSuf
2543                   : (i.suffix == WORD_MNEM_SUFFIX
2544                      ? No_wSuf
2545                      : (i.suffix == SHORT_MNEM_SUFFIX
2546                         ? No_sSuf
2547                         : (i.suffix == LONG_MNEM_SUFFIX
2548                            ? No_lSuf
2549                            : (i.suffix == QWORD_MNEM_SUFFIX
2550                               ? No_qSuf
2551                               : (i.suffix == LONG_DOUBLE_MNEM_SUFFIX
2552                                  ? No_xSuf : 0))))));
2553
2554   for (t = current_templates->start; t < current_templates->end; t++)
2555     {
2556       addr_prefix_disp = -1;
2557
2558       /* Must have right number of operands.  */
2559       if (i.operands != t->operands)
2560         continue;
2561
2562       /* Check the suffix, except for some instructions in intel mode.  */
2563       if ((t->opcode_modifier & suffix_check)
2564           && !(intel_syntax
2565                && (t->opcode_modifier & IgnoreSize)))
2566         continue;
2567
2568       for (j = 0; j < MAX_OPERANDS; j++)
2569         operand_types [j] = t->operand_types [j];
2570
2571       /* In general, don't allow 64-bit operands in 32-bit mode.  */
2572       if (i.suffix == QWORD_MNEM_SUFFIX
2573           && flag_code != CODE_64BIT
2574           && (intel_syntax
2575               ? (!(t->opcode_modifier & IgnoreSize)
2576                  && !intel_float_operand (t->name))
2577               : intel_float_operand (t->name) != 2)
2578           && (!(operand_types[0] & (RegMMX | RegXMM))
2579               || !(operand_types[t->operands > 1] & (RegMMX | RegXMM)))
2580           && (t->base_opcode != 0x0fc7
2581               || t->extension_opcode != 1 /* cmpxchg8b */))
2582         continue;
2583
2584       /* Do not verify operands when there are none.  */
2585       else if (!t->operands)
2586         {
2587           if (t->cpu_flags & ~cpu_arch_flags)
2588             continue;
2589           /* We've found a match; break out of loop.  */
2590           break;
2591         }
2592
2593       /* Address size prefix will turn Disp64/Disp32/Disp16 operand
2594          into Disp32/Disp16/Disp32 operand.  */
2595       if (i.prefix[ADDR_PREFIX] != 0)
2596           {
2597             unsigned int DispOn = 0, DispOff = 0;
2598
2599             switch (flag_code)
2600             {
2601             case CODE_16BIT:
2602               DispOn = Disp32;
2603               DispOff = Disp16;
2604               break;
2605             case CODE_32BIT:
2606               DispOn = Disp16;
2607               DispOff = Disp32;
2608               break;
2609             case CODE_64BIT:
2610               DispOn = Disp32;
2611               DispOff = Disp64;
2612               break;
2613             }
2614
2615             for (j = 0; j < MAX_OPERANDS; j++)
2616               {
2617                 /* There should be only one Disp operand.  */
2618                 if ((operand_types[j] & DispOff))
2619                   {
2620                     addr_prefix_disp = j;
2621                     operand_types[j] |= DispOn;
2622                     operand_types[j] &= ~DispOff;
2623                     break;
2624                   }
2625               }
2626           }
2627
2628       overlap0 = i.types[0] & operand_types[0];
2629       switch (t->operands)
2630         {
2631         case 1:
2632           if (!MATCH (overlap0, i.types[0], operand_types[0]))
2633             continue;
2634           break;
2635         case 2:
2636           /* xchg %eax, %eax is a special case. It is an aliase for nop
2637              only in 32bit mode and we can use opcode 0x90.  In 64bit
2638              mode, we can't use 0x90 for xchg %eax, %eax since it should
2639              zero-extend %eax to %rax.  */
2640           if (flag_code == CODE_64BIT
2641               && t->base_opcode == 0x90
2642               && i.types [0] == (Acc | Reg32)
2643               && i.types [1] == (Acc | Reg32))
2644             continue;
2645         case 3:
2646         case 4:
2647           overlap1 = i.types[1] & operand_types[1];
2648           if (!MATCH (overlap0, i.types[0], operand_types[0])
2649               || !MATCH (overlap1, i.types[1], operand_types[1])
2650               /* monitor in SSE3 is a very special case.  The first
2651                  register and the second register may have different
2652                  sizes.  The same applies to crc32 in SSE4.2.  */
2653               || !((t->base_opcode == 0x0f01
2654                     && t->extension_opcode == 0xc8)
2655                    || t->base_opcode == 0xf20f38f1
2656                    || CONSISTENT_REGISTER_MATCH (overlap0, i.types[0],
2657                                                  operand_types[0],
2658                                                  overlap1, i.types[1],
2659                                                  operand_types[1])))
2660             {
2661               /* Check if other direction is valid ...  */
2662               if ((t->opcode_modifier & (D | FloatD)) == 0)
2663                 continue;
2664
2665               /* Try reversing direction of operands.  */
2666               overlap0 = i.types[0] & operand_types[1];
2667               overlap1 = i.types[1] & operand_types[0];
2668               if (!MATCH (overlap0, i.types[0], operand_types[1])
2669                   || !MATCH (overlap1, i.types[1], operand_types[0])
2670                   || !CONSISTENT_REGISTER_MATCH (overlap0, i.types[0],
2671                                                  operand_types[1],
2672                                                  overlap1, i.types[1],
2673                                                  operand_types[0]))
2674                 {
2675                   /* Does not match either direction.  */
2676                   continue;
2677                 }
2678               /* found_reverse_match holds which of D or FloatDR
2679                  we've found.  */
2680               if ((t->opcode_modifier & D))
2681                 found_reverse_match = Opcode_D;
2682               else if ((t->opcode_modifier & FloatD))
2683                 found_reverse_match = Opcode_FloatD;
2684               else
2685                 found_reverse_match = 0;
2686               if ((t->opcode_modifier & FloatR))
2687                 found_reverse_match |= Opcode_FloatR;
2688             }
2689           else
2690             {
2691               /* Found a forward 2 operand match here.  */
2692               switch (t->operands)
2693                 {
2694                 case 4:
2695                   overlap3 = i.types[3] & operand_types[3];
2696                 case 3:
2697                   overlap2 = i.types[2] & operand_types[2];
2698                   break;
2699                 }
2700
2701               switch (t->operands)
2702                 {
2703                 case 4:
2704                   if (!MATCH (overlap3, i.types[3], operand_types[3])
2705                       || !CONSISTENT_REGISTER_MATCH (overlap2,
2706                                                      i.types[2],
2707                                                      operand_types[2],
2708                                                      overlap3,
2709                                                      i.types[3],
2710                                                      operand_types[3]))
2711                     continue;
2712                 case 3:
2713                   /* Here we make use of the fact that there are no
2714                      reverse match 3 operand instructions, and all 3
2715                      operand instructions only need to be checked for
2716                      register consistency between operands 2 and 3.  */
2717                   if (!MATCH (overlap2, i.types[2], operand_types[2])
2718                       || !CONSISTENT_REGISTER_MATCH (overlap1,
2719                                                      i.types[1],
2720                                                      operand_types[1],
2721                                                      overlap2,
2722                                                      i.types[2],
2723                                                      operand_types[2]))
2724                     continue;
2725                   break;
2726                 }
2727             }
2728           /* Found either forward/reverse 2, 3 or 4 operand match here:
2729              slip through to break.  */
2730         }
2731       if (t->cpu_flags & ~cpu_arch_flags)
2732         {
2733           found_reverse_match = 0;
2734           continue;
2735         }
2736       /* We've found a match; break out of loop.  */
2737       break;
2738     }
2739
2740   if (t == current_templates->end)
2741     {
2742       /* We found no match.  */
2743       as_bad (_("suffix or operands invalid for `%s'"),
2744               current_templates->start->name);
2745       return 0;
2746     }
2747
2748   if (!quiet_warnings)
2749     {
2750       if (!intel_syntax
2751           && ((i.types[0] & JumpAbsolute)
2752               != (operand_types[0] & JumpAbsolute)))
2753         {
2754           as_warn (_("indirect %s without `*'"), t->name);
2755         }
2756
2757       if ((t->opcode_modifier & (IsPrefix | IgnoreSize))
2758           == (IsPrefix | IgnoreSize))
2759         {
2760           /* Warn them that a data or address size prefix doesn't
2761              affect assembly of the next line of code.  */
2762           as_warn (_("stand-alone `%s' prefix"), t->name);
2763         }
2764     }
2765
2766   /* Copy the template we found.  */
2767   i.tm = *t;
2768
2769   if (addr_prefix_disp != -1)
2770     i.tm.operand_types[addr_prefix_disp]
2771       = operand_types[addr_prefix_disp];
2772
2773   if (found_reverse_match)
2774     {
2775       /* If we found a reverse match we must alter the opcode
2776          direction bit.  found_reverse_match holds bits to change
2777          (different for int & float insns).  */
2778
2779       i.tm.base_opcode ^= found_reverse_match;
2780
2781       i.tm.operand_types[0] = operand_types[1];
2782       i.tm.operand_types[1] = operand_types[0];
2783     }
2784
2785   return 1;
2786 }
2787
2788 static int
2789 check_string (void)
2790 {
2791   int mem_op = (i.types[0] & AnyMem) ? 0 : 1;
2792   if ((i.tm.operand_types[mem_op] & EsSeg) != 0)
2793     {
2794       if (i.seg[0] != NULL && i.seg[0] != &es)
2795         {
2796           as_bad (_("`%s' operand %d must use `%%es' segment"),
2797                   i.tm.name,
2798                   mem_op + 1);
2799           return 0;
2800         }
2801       /* There's only ever one segment override allowed per instruction.
2802          This instruction possibly has a legal segment override on the
2803          second operand, so copy the segment to where non-string
2804          instructions store it, allowing common code.  */
2805       i.seg[0] = i.seg[1];
2806     }
2807   else if ((i.tm.operand_types[mem_op + 1] & EsSeg) != 0)
2808     {
2809       if (i.seg[1] != NULL && i.seg[1] != &es)
2810         {
2811           as_bad (_("`%s' operand %d must use `%%es' segment"),
2812                   i.tm.name,
2813                   mem_op + 2);
2814           return 0;
2815         }
2816     }
2817   return 1;
2818 }
2819
2820 static int
2821 process_suffix (void)
2822 {
2823   /* If matched instruction specifies an explicit instruction mnemonic
2824      suffix, use it.  */
2825   if (i.tm.opcode_modifier & (Size16 | Size32 | Size64))
2826     {
2827       if (i.tm.opcode_modifier & Size16)
2828         i.suffix = WORD_MNEM_SUFFIX;
2829       else if (i.tm.opcode_modifier & Size64)
2830         i.suffix = QWORD_MNEM_SUFFIX;
2831       else
2832         i.suffix = LONG_MNEM_SUFFIX;
2833     }
2834   else if (i.reg_operands)
2835     {
2836       /* If there's no instruction mnemonic suffix we try to invent one
2837          based on register operands.  */
2838       if (!i.suffix)
2839         {
2840           /* We take i.suffix from the last register operand specified,
2841              Destination register type is more significant than source
2842              register type.  crc32 in SSE4.2 prefers source register
2843              type. */
2844           if (i.tm.base_opcode == 0xf20f38f1)
2845             {
2846               if ((i.types[0] & Reg))
2847                 i.suffix = ((i.types[0] & Reg16) ? WORD_MNEM_SUFFIX :
2848                             LONG_MNEM_SUFFIX);
2849             }
2850           else if (i.tm.base_opcode == 0xf20f38f0)
2851             {
2852               if ((i.types[0] & Reg8))
2853                 i.suffix = BYTE_MNEM_SUFFIX;
2854             }
2855
2856           if (!i.suffix)
2857             {
2858               int op;
2859
2860               if (i.tm.base_opcode == 0xf20f38f1
2861                   || i.tm.base_opcode == 0xf20f38f0)
2862                 {
2863                   /* We have to know the operand size for crc32.  */
2864                   as_bad (_("ambiguous memory operand size for `%s`"),
2865                           i.tm.name);
2866                   return 0;
2867                 }
2868
2869               for (op = i.operands; --op >= 0;)
2870                 if ((i.types[op] & Reg)
2871                     && !(i.tm.operand_types[op] & InOutPortReg))
2872                   {
2873                     i.suffix = ((i.types[op] & Reg8) ? BYTE_MNEM_SUFFIX :
2874                                 (i.types[op] & Reg16) ? WORD_MNEM_SUFFIX :
2875                                 (i.types[op] & Reg64) ? QWORD_MNEM_SUFFIX :
2876                                 LONG_MNEM_SUFFIX);
2877                     break;
2878                   }
2879             }
2880         }
2881       else if (i.suffix == BYTE_MNEM_SUFFIX)
2882         {
2883           if (!check_byte_reg ())
2884             return 0;
2885         }
2886       else if (i.suffix == LONG_MNEM_SUFFIX)
2887         {
2888           if (!check_long_reg ())
2889             return 0;
2890         }
2891       else if (i.suffix == QWORD_MNEM_SUFFIX)
2892         {
2893           if (!check_qword_reg ())
2894             return 0;
2895         }
2896       else if (i.suffix == WORD_MNEM_SUFFIX)
2897         {
2898           if (!check_word_reg ())
2899             return 0;
2900         }
2901       else if (intel_syntax && (i.tm.opcode_modifier & IgnoreSize))
2902         /* Do nothing if the instruction is going to ignore the prefix.  */
2903         ;
2904       else
2905         abort ();
2906     }
2907   else if ((i.tm.opcode_modifier & DefaultSize)
2908            && !i.suffix
2909            /* exclude fldenv/frstor/fsave/fstenv */
2910            && (i.tm.opcode_modifier & No_sSuf))
2911     {
2912       i.suffix = stackop_size;
2913     }
2914   else if (intel_syntax
2915            && !i.suffix
2916            && ((i.tm.operand_types[0] & JumpAbsolute)
2917                || (i.tm.opcode_modifier & (JumpByte|JumpInterSegment))
2918                || (i.tm.base_opcode == 0x0f01 /* [ls][gi]dt */
2919                    && i.tm.extension_opcode <= 3)))
2920     {
2921       switch (flag_code)
2922         {
2923         case CODE_64BIT:
2924           if (!(i.tm.opcode_modifier & No_qSuf))
2925             {
2926               i.suffix = QWORD_MNEM_SUFFIX;
2927               break;
2928             }
2929         case CODE_32BIT:
2930           if (!(i.tm.opcode_modifier & No_lSuf))
2931             i.suffix = LONG_MNEM_SUFFIX;
2932           break;
2933         case CODE_16BIT:
2934           if (!(i.tm.opcode_modifier & No_wSuf))
2935             i.suffix = WORD_MNEM_SUFFIX;
2936           break;
2937         }
2938     }
2939
2940   if (!i.suffix)
2941     {
2942       if (!intel_syntax)
2943         {
2944           if (i.tm.opcode_modifier & W)
2945             {
2946               as_bad (_("no instruction mnemonic suffix given and "
2947                         "no register operands; can't size instruction"));
2948               return 0;
2949             }
2950         }
2951       else
2952         {
2953           unsigned int suffixes = (~i.tm.opcode_modifier
2954                                    & (No_bSuf
2955                                       | No_wSuf
2956                                       | No_lSuf
2957                                       | No_sSuf
2958                                       | No_xSuf
2959                                       | No_qSuf));
2960
2961           if ((i.tm.opcode_modifier & W)
2962               || ((suffixes & (suffixes - 1))
2963                   && !(i.tm.opcode_modifier & (DefaultSize | IgnoreSize))))
2964             {
2965               as_bad (_("ambiguous operand size for `%s'"), i.tm.name);
2966               return 0;
2967             }
2968         }
2969     }
2970
2971   /* Change the opcode based on the operand size given by i.suffix;
2972      We don't need to change things for byte insns.  */
2973
2974   if (i.suffix && i.suffix != BYTE_MNEM_SUFFIX)
2975     {
2976       /* It's not a byte, select word/dword operation.  */
2977       if (i.tm.opcode_modifier & W)
2978         {
2979           if (i.tm.opcode_modifier & ShortForm)
2980             i.tm.base_opcode |= 8;
2981           else
2982             i.tm.base_opcode |= 1;
2983         }
2984
2985       /* Now select between word & dword operations via the operand
2986          size prefix, except for instructions that will ignore this
2987          prefix anyway.  */
2988       if (i.tm.base_opcode == 0x0f01 && i.tm.extension_opcode == 0xc8)
2989         {
2990           /* monitor in SSE3 is a very special case. The default size
2991              of AX is the size of mode. The address size override
2992              prefix will change the size of AX.  */
2993           if (i.op->regs[0].reg_type &
2994               (flag_code == CODE_32BIT ? Reg16 : Reg32))
2995             if (!add_prefix (ADDR_PREFIX_OPCODE))
2996               return 0;
2997         }
2998       else if (i.suffix != QWORD_MNEM_SUFFIX
2999                && i.suffix != LONG_DOUBLE_MNEM_SUFFIX
3000                && !(i.tm.opcode_modifier & (IgnoreSize | FloatMF))
3001                && ((i.suffix == LONG_MNEM_SUFFIX) == (flag_code == CODE_16BIT)
3002                    || (flag_code == CODE_64BIT
3003                        && (i.tm.opcode_modifier & JumpByte))))
3004         {
3005           unsigned int prefix = DATA_PREFIX_OPCODE;
3006
3007           if (i.tm.opcode_modifier & JumpByte) /* jcxz, loop */
3008             prefix = ADDR_PREFIX_OPCODE;
3009
3010           if (!add_prefix (prefix))
3011             return 0;
3012         }
3013
3014       /* Set mode64 for an operand.  */
3015       if (i.suffix == QWORD_MNEM_SUFFIX
3016           && flag_code == CODE_64BIT
3017           && (i.tm.opcode_modifier & NoRex64) == 0)
3018         {
3019           /* Special case for xchg %rax,%rax.  It is NOP and doesn't
3020              need rex64.  */
3021           if (i.operands != 2
3022               || i.types [0] != (Acc | Reg64)
3023               || i.types [1] != (Acc | Reg64)
3024               || i.tm.base_opcode != 0x90)
3025             i.rex |= REX_W;
3026         }
3027
3028       /* Size floating point instruction.  */
3029       if (i.suffix == LONG_MNEM_SUFFIX)
3030         if (i.tm.opcode_modifier & FloatMF)
3031           i.tm.base_opcode ^= 4;
3032     }
3033
3034   return 1;
3035 }
3036
3037 static int
3038 check_byte_reg (void)
3039 {
3040   int op;
3041
3042   for (op = i.operands; --op >= 0;)
3043     {
3044       /* If this is an eight bit register, it's OK.  If it's the 16 or
3045          32 bit version of an eight bit register, we will just use the
3046          low portion, and that's OK too.  */
3047       if (i.types[op] & Reg8)
3048         continue;
3049
3050       /* movzx and movsx should not generate this warning.  */
3051       if (intel_syntax
3052           && (i.tm.base_opcode == 0xfb7
3053               || i.tm.base_opcode == 0xfb6
3054               || i.tm.base_opcode == 0x63
3055               || i.tm.base_opcode == 0xfbe
3056               || i.tm.base_opcode == 0xfbf))
3057         continue;
3058
3059       /* crc32 doesn't generate this warning.  */
3060       if (i.tm.base_opcode == 0xf20f38f0)
3061         continue;
3062
3063       if ((i.types[op] & WordReg) && i.op[op].regs->reg_num < 4)
3064         {
3065           /* Prohibit these changes in the 64bit mode, since the
3066              lowering is more complicated.  */
3067           if (flag_code == CODE_64BIT
3068               && (i.tm.operand_types[op] & InOutPortReg) == 0)
3069             {
3070               as_bad (_("Incorrect register `%s%s' used with `%c' suffix"),
3071                       register_prefix, i.op[op].regs->reg_name,
3072                       i.suffix);
3073               return 0;
3074             }
3075 #if REGISTER_WARNINGS
3076           if (!quiet_warnings
3077               && (i.tm.operand_types[op] & InOutPortReg) == 0)
3078             as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
3079                      register_prefix,
3080                      (i.op[op].regs + (i.types[op] & Reg16
3081                                        ? REGNAM_AL - REGNAM_AX
3082                                        : REGNAM_AL - REGNAM_EAX))->reg_name,
3083                      register_prefix,
3084                      i.op[op].regs->reg_name,
3085                      i.suffix);
3086 #endif
3087           continue;
3088         }
3089       /* Any other register is bad.  */
3090       if (i.types[op] & (Reg | RegMMX | RegXMM
3091                          | SReg2 | SReg3
3092                          | Control | Debug | Test
3093                          | FloatReg | FloatAcc))
3094         {
3095           as_bad (_("`%s%s' not allowed with `%s%c'"),
3096                   register_prefix,
3097                   i.op[op].regs->reg_name,
3098                   i.tm.name,
3099                   i.suffix);
3100           return 0;
3101         }
3102     }
3103   return 1;
3104 }
3105
3106 static int
3107 check_long_reg (void)
3108 {
3109   int op;
3110
3111   for (op = i.operands; --op >= 0;)
3112     /* Reject eight bit registers, except where the template requires
3113        them. (eg. movzb)  */
3114     if ((i.types[op] & Reg8) != 0
3115         && (i.tm.operand_types[op] & (Reg16 | Reg32 | Acc)) != 0)
3116       {
3117         as_bad (_("`%s%s' not allowed with `%s%c'"),
3118                 register_prefix,
3119                 i.op[op].regs->reg_name,
3120                 i.tm.name,
3121                 i.suffix);
3122         return 0;
3123       }
3124   /* Warn if the e prefix on a general reg is missing.  */
3125     else if ((!quiet_warnings || flag_code == CODE_64BIT)
3126              && (i.types[op] & Reg16) != 0
3127              && (i.tm.operand_types[op] & (Reg32 | Acc)) != 0)
3128       {
3129         /* Prohibit these changes in the 64bit mode, since the
3130            lowering is more complicated.  */
3131         if (flag_code == CODE_64BIT)
3132           {
3133             as_bad (_("Incorrect register `%s%s' used with `%c' suffix"),
3134                     register_prefix, i.op[op].regs->reg_name,
3135                     i.suffix);
3136             return 0;
3137           }
3138 #if REGISTER_WARNINGS
3139         else
3140           as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
3141                    register_prefix,
3142                    (i.op[op].regs + REGNAM_EAX - REGNAM_AX)->reg_name,
3143                    register_prefix,
3144                    i.op[op].regs->reg_name,
3145                    i.suffix);
3146 #endif
3147       }
3148   /* Warn if the r prefix on a general reg is missing.  */
3149     else if ((i.types[op] & Reg64) != 0
3150              && (i.tm.operand_types[op] & (Reg32 | Acc)) != 0)
3151       {
3152         as_bad (_("Incorrect register `%s%s' used with `%c' suffix"),
3153                 register_prefix, i.op[op].regs->reg_name,
3154                 i.suffix);
3155         return 0;
3156       }
3157   return 1;
3158 }
3159
3160 static int
3161 check_qword_reg (void)
3162 {
3163   int op;
3164
3165   for (op = i.operands; --op >= 0; )
3166     /* Reject eight bit registers, except where the template requires
3167        them. (eg. movzb)  */
3168     if ((i.types[op] & Reg8) != 0
3169         && (i.tm.operand_types[op] & (Reg16 | Reg32 | Acc)) != 0)
3170       {
3171         as_bad (_("`%s%s' not allowed with `%s%c'"),
3172                 register_prefix,
3173                 i.op[op].regs->reg_name,
3174                 i.tm.name,
3175                 i.suffix);
3176         return 0;
3177       }
3178   /* Warn if the e prefix on a general reg is missing.  */
3179     else if (((i.types[op] & Reg16) != 0
3180               || (i.types[op] & Reg32) != 0)
3181              && (i.tm.operand_types[op] & (Reg32 | Acc)) != 0)
3182       {
3183         /* Prohibit these changes in the 64bit mode, since the
3184            lowering is more complicated.  */
3185         as_bad (_("Incorrect register `%s%s' used with `%c' suffix"),
3186                 register_prefix, i.op[op].regs->reg_name,
3187                 i.suffix);
3188         return 0;
3189       }
3190   return 1;
3191 }
3192
3193 static int
3194 check_word_reg (void)
3195 {
3196   int op;
3197   for (op = i.operands; --op >= 0;)
3198     /* Reject eight bit registers, except where the template requires
3199        them. (eg. movzb)  */
3200     if ((i.types[op] & Reg8) != 0
3201         && (i.tm.operand_types[op] & (Reg16 | Reg32 | Acc)) != 0)
3202       {
3203         as_bad (_("`%s%s' not allowed with `%s%c'"),
3204                 register_prefix,
3205                 i.op[op].regs->reg_name,
3206                 i.tm.name,
3207                 i.suffix);
3208         return 0;
3209       }
3210   /* Warn if the e prefix on a general reg is present.  */
3211     else if ((!quiet_warnings || flag_code == CODE_64BIT)
3212              && (i.types[op] & Reg32) != 0
3213              && (i.tm.operand_types[op] & (Reg16 | Acc)) != 0)
3214       {
3215         /* Prohibit these changes in the 64bit mode, since the
3216            lowering is more complicated.  */
3217         if (flag_code == CODE_64BIT)
3218           {
3219             as_bad (_("Incorrect register `%s%s' used with `%c' suffix"),
3220                     register_prefix, i.op[op].regs->reg_name,
3221                     i.suffix);
3222             return 0;
3223           }
3224         else
3225 #if REGISTER_WARNINGS
3226           as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
3227                    register_prefix,
3228                    (i.op[op].regs + REGNAM_AX - REGNAM_EAX)->reg_name,
3229                    register_prefix,
3230                    i.op[op].regs->reg_name,
3231                    i.suffix);
3232 #endif
3233       }
3234   return 1;
3235 }
3236
3237 static int
3238 finalize_imm (void)
3239 {
3240   unsigned int overlap0, overlap1, overlap2;
3241
3242   overlap0 = i.types[0] & i.tm.operand_types[0];
3243   if ((overlap0 & (Imm8 | Imm8S | Imm16 | Imm32 | Imm32S | Imm64))
3244       && overlap0 != Imm8 && overlap0 != Imm8S
3245       && overlap0 != Imm16 && overlap0 != Imm32S
3246       && overlap0 != Imm32 && overlap0 != Imm64)
3247     {
3248       if (i.suffix)
3249         {
3250           overlap0 &= (i.suffix == BYTE_MNEM_SUFFIX
3251                        ? Imm8 | Imm8S
3252                        : (i.suffix == WORD_MNEM_SUFFIX
3253                           ? Imm16
3254                           : (i.suffix == QWORD_MNEM_SUFFIX
3255                              ? Imm64 | Imm32S
3256                              : Imm32)));
3257         }
3258       else if (overlap0 == (Imm16 | Imm32S | Imm32)
3259                || overlap0 == (Imm16 | Imm32)
3260                || overlap0 == (Imm16 | Imm32S))
3261         {
3262           overlap0 = ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0)
3263                       ? Imm16 : Imm32S);
3264         }
3265       if (overlap0 != Imm8 && overlap0 != Imm8S
3266           && overlap0 != Imm16 && overlap0 != Imm32S
3267           && overlap0 != Imm32 && overlap0 != Imm64)
3268         {
3269           as_bad (_("no instruction mnemonic suffix given; "
3270                     "can't determine immediate size"));
3271           return 0;
3272         }
3273     }
3274   i.types[0] = overlap0;
3275
3276   overlap1 = i.types[1] & i.tm.operand_types[1];
3277   if ((overlap1 & (Imm8 | Imm8S | Imm16 | Imm32S | Imm32 | Imm64))
3278       && overlap1 != Imm8 && overlap1 != Imm8S
3279       && overlap1 != Imm16 && overlap1 != Imm32S
3280       && overlap1 != Imm32 && overlap1 != Imm64)
3281     {
3282       if (i.suffix)
3283         {
3284           overlap1 &= (i.suffix == BYTE_MNEM_SUFFIX
3285                        ? Imm8 | Imm8S
3286                        : (i.suffix == WORD_MNEM_SUFFIX
3287                           ? Imm16
3288                           : (i.suffix == QWORD_MNEM_SUFFIX
3289                              ? Imm64 | Imm32S
3290                              : Imm32)));
3291         }
3292       else if (overlap1 == (Imm16 | Imm32 | Imm32S)
3293                || overlap1 == (Imm16 | Imm32)
3294                || overlap1 == (Imm16 | Imm32S))
3295         {
3296           overlap1 = ((flag_code == CODE_16BIT) ^ (i.prefix[DATA_PREFIX] != 0)
3297                       ? Imm16 : Imm32S);
3298         }
3299       if (overlap1 != Imm8 && overlap1 != Imm8S
3300           && overlap1 != Imm16 && overlap1 != Imm32S
3301           && overlap1 != Imm32 && overlap1 != Imm64)
3302         {
3303           as_bad (_("no instruction mnemonic suffix given; "
3304                     "can't determine immediate size %x %c"),
3305                   overlap1, i.suffix);
3306           return 0;
3307         }
3308     }
3309   i.types[1] = overlap1;
3310
3311   overlap2 = i.types[2] & i.tm.operand_types[2];
3312   assert ((overlap2 & Imm) == 0);
3313   i.types[2] = overlap2;
3314
3315   return 1;
3316 }
3317
3318 static int
3319 process_operands (void)
3320 {
3321   /* Default segment register this instruction will use for memory
3322      accesses.  0 means unknown.  This is only for optimizing out
3323      unnecessary segment overrides.  */
3324   const seg_entry *default_seg = 0;
3325
3326   /* The imul $imm, %reg instruction is converted into
3327      imul $imm, %reg, %reg, and the clr %reg instruction
3328      is converted into xor %reg, %reg.  */
3329   if (i.tm.opcode_modifier & RegKludge)
3330     {
3331        if ((i.tm.cpu_flags & CpuSSE4_1))
3332          {
3333            /* The first operand in instruction blendvpd, blendvps and
3334               pblendvb in SSE4.1 is implicit and must be xmm0.  */
3335            assert (i.operands == 3
3336                    && i.reg_operands >= 2
3337                    && i.types[0] == RegXMM);
3338            if (i.op[0].regs->reg_num != 0)
3339              {
3340                if (intel_syntax)
3341                  as_bad (_("the last operand of `%s' must be `%sxmm0'"),
3342                          i.tm.name, register_prefix);
3343                else
3344                  as_bad (_("the first operand of `%s' must be `%sxmm0'"),
3345                          i.tm.name, register_prefix);
3346                return 0;
3347              }
3348            i.op[0] = i.op[1];
3349            i.op[1] = i.op[2];
3350            i.types[0] = i.types[1];
3351            i.types[1] = i.types[2];
3352            i.operands--;
3353            i.reg_operands--;
3354
3355            /* We need to adjust fields in i.tm since they are used by
3356               build_modrm_byte.  */
3357            i.tm.operand_types [0] = i.tm.operand_types [1];
3358            i.tm.operand_types [1] = i.tm.operand_types [2];
3359            i.tm.operands--;
3360          }
3361        else
3362          {
3363            unsigned int first_reg_op = (i.types[0] & Reg) ? 0 : 1;
3364            /* Pretend we saw the extra register operand.  */
3365            assert (i.reg_operands == 1
3366                    && i.op[first_reg_op + 1].regs == 0);
3367            i.op[first_reg_op + 1].regs = i.op[first_reg_op].regs;
3368            i.types[first_reg_op + 1] = i.types[first_reg_op];
3369            i.operands++;
3370            i.reg_operands++;
3371          }
3372     }
3373
3374   if (i.tm.opcode_modifier & ShortForm)
3375     {
3376       if (i.types[0] & (SReg2 | SReg3))
3377         {
3378           if (i.tm.base_opcode == POP_SEG_SHORT
3379               && i.op[0].regs->reg_num == 1)
3380             {
3381               as_bad (_("you can't `pop %%cs'"));
3382               return 0;
3383             }
3384           i.tm.base_opcode |= (i.op[0].regs->reg_num << 3);
3385           if ((i.op[0].regs->reg_flags & RegRex) != 0)
3386             i.rex |= REX_B;
3387         }
3388       else
3389         {
3390           /* The register or float register operand is in operand 0 or 1.  */
3391           unsigned int op = (i.types[0] & (Reg | FloatReg)) ? 0 : 1;
3392           /* Register goes in low 3 bits of opcode.  */
3393           i.tm.base_opcode |= i.op[op].regs->reg_num;
3394           if ((i.op[op].regs->reg_flags & RegRex) != 0)
3395             i.rex |= REX_B;
3396           if (!quiet_warnings && (i.tm.opcode_modifier & Ugh) != 0)
3397             {
3398               /* Warn about some common errors, but press on regardless.
3399                  The first case can be generated by gcc (<= 2.8.1).  */
3400               if (i.operands == 2)
3401                 {
3402                   /* Reversed arguments on faddp, fsubp, etc.  */
3403                   as_warn (_("translating to `%s %s%s,%s%s'"), i.tm.name,
3404                            register_prefix, i.op[1].regs->reg_name,
3405                            register_prefix, i.op[0].regs->reg_name);
3406                 }
3407               else
3408                 {
3409                   /* Extraneous `l' suffix on fp insn.  */
3410                   as_warn (_("translating to `%s %s%s'"), i.tm.name,
3411                            register_prefix, i.op[0].regs->reg_name);
3412                 }
3413             }
3414         }
3415     }
3416   else if (i.tm.opcode_modifier & Modrm)
3417     {
3418       /* The opcode is completed (modulo i.tm.extension_opcode which
3419          must be put into the modrm byte).  Now, we make the modrm and
3420          index base bytes based on all the info we've collected.  */
3421
3422       default_seg = build_modrm_byte ();
3423     }
3424   else if ((i.tm.base_opcode & ~0x3) == MOV_AX_DISP32)
3425     {
3426       default_seg = &ds;
3427     }
3428   else if ((i.tm.opcode_modifier & IsString) != 0)
3429     {
3430       /* For the string instructions that allow a segment override
3431          on one of their operands, the default segment is ds.  */
3432       default_seg = &ds;
3433     }
3434
3435   if ((i.tm.base_opcode == 0x8d /* lea */
3436        || (i.tm.cpu_flags & CpuSVME))
3437       && i.seg[0] && !quiet_warnings)
3438     as_warn (_("segment override on `%s' is ineffectual"), i.tm.name);
3439
3440   /* If a segment was explicitly specified, and the specified segment
3441      is not the default, use an opcode prefix to select it.  If we
3442      never figured out what the default segment is, then default_seg
3443      will be zero at this point, and the specified segment prefix will
3444      always be used.  */
3445   if ((i.seg[0]) && (i.seg[0] != default_seg))
3446     {
3447       if (!add_prefix (i.seg[0]->seg_prefix))
3448         return 0;
3449     }
3450   return 1;
3451 }
3452
3453 static const seg_entry *
3454 build_modrm_byte (void)
3455 {
3456   const seg_entry *default_seg = 0;
3457
3458   /* i.reg_operands MUST be the number of real register operands;
3459      implicit registers do not count.  */
3460   if (i.reg_operands == 2)
3461     {
3462       unsigned int source, dest;
3463
3464       switch (i.operands)
3465         {
3466         case 2:
3467           source = 0;
3468           break;
3469         case 3:
3470           /* When there are 3 operands, one of them may be immediate,
3471              which may be the first or the last operand.  Otherwise,
3472              the first operand must be shift count register (cl). */
3473           assert (i.imm_operands == 1
3474                   || (i.imm_operands == 0
3475                       && (i.types[0] & ShiftCount)));
3476           source = (i.types[0] & (Imm | ShiftCount)) ? 1 : 0;
3477           break;
3478         case 4:
3479           /* When there are 4 operands, the first two must be immediate
3480              operands. The source operand will be the 3rd one.  */
3481           assert (i.imm_operands == 2
3482                   && (i.types[0] & Imm)
3483                   && (i.types[1] & Imm));
3484           source = 2;
3485           break;
3486         default:
3487           abort ();
3488         }
3489
3490       dest = source + 1;
3491
3492       i.rm.mode = 3;
3493       /* One of the register operands will be encoded in the i.tm.reg
3494          field, the other in the combined i.tm.mode and i.tm.regmem
3495          fields.  If no form of this instruction supports a memory
3496          destination operand, then we assume the source operand may
3497          sometimes be a memory operand and so we need to store the
3498          destination in the i.rm.reg field.  */
3499       if ((i.tm.operand_types[dest] & (AnyMem | RegMem)) == 0)
3500         {
3501           i.rm.reg = i.op[dest].regs->reg_num;
3502           i.rm.regmem = i.op[source].regs->reg_num;
3503           if ((i.op[dest].regs->reg_flags & RegRex) != 0)
3504             i.rex |= REX_R;
3505           if ((i.op[source].regs->reg_flags & RegRex) != 0)
3506             i.rex |= REX_B;
3507         }
3508       else
3509         {
3510           i.rm.reg = i.op[source].regs->reg_num;
3511           i.rm.regmem = i.op[dest].regs->reg_num;
3512           if ((i.op[dest].regs->reg_flags & RegRex) != 0)
3513             i.rex |= REX_B;
3514           if ((i.op[source].regs->reg_flags & RegRex) != 0)
3515             i.rex |= REX_R;
3516         }
3517       if (flag_code != CODE_64BIT && (i.rex & (REX_R | REX_B)))
3518         {
3519           if (!((i.types[0] | i.types[1]) & Control))
3520             abort ();
3521           i.rex &= ~(REX_R | REX_B);
3522           add_prefix (LOCK_PREFIX_OPCODE);
3523         }
3524     }
3525   else
3526     {                   /* If it's not 2 reg operands...  */
3527       if (i.mem_operands)
3528         {
3529           unsigned int fake_zero_displacement = 0;
3530           unsigned int op;
3531
3532           for (op = 0; op < i.operands; op++)
3533             if ((i.types[op] & AnyMem))
3534               break;
3535           assert (op < i.operands);
3536
3537           default_seg = &ds;
3538
3539           if (i.base_reg == 0)
3540             {
3541               i.rm.mode = 0;
3542               if (!i.disp_operands)
3543                 fake_zero_displacement = 1;
3544               if (i.index_reg == 0)
3545                 {
3546                   /* Operand is just <disp>  */
3547                   if (flag_code == CODE_64BIT)
3548                     {
3549                       /* 64bit mode overwrites the 32bit absolute
3550                          addressing by RIP relative addressing and
3551                          absolute addressing is encoded by one of the
3552                          redundant SIB forms.  */
3553                       i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
3554                       i.sib.base = NO_BASE_REGISTER;
3555                       i.sib.index = NO_INDEX_REGISTER;
3556                       i.types[op] = ((i.prefix[ADDR_PREFIX] == 0)
3557                                      ? Disp32S : Disp32);
3558                     }
3559                   else if ((flag_code == CODE_16BIT)
3560                            ^ (i.prefix[ADDR_PREFIX] != 0))
3561                     {
3562                       i.rm.regmem = NO_BASE_REGISTER_16;
3563                       i.types[op] = Disp16;
3564                     }
3565                   else
3566                     {
3567                       i.rm.regmem = NO_BASE_REGISTER;
3568                       i.types[op] = Disp32;
3569                     }
3570                 }
3571               else /* !i.base_reg && i.index_reg  */
3572                 {
3573                   i.sib.index = i.index_reg->reg_num;
3574                   i.sib.base = NO_BASE_REGISTER;
3575                   i.sib.scale = i.log2_scale_factor;
3576                   i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
3577                   i.types[op] &= ~Disp;
3578                   if (flag_code != CODE_64BIT)
3579                     i.types[op] |= Disp32;      /* Must be 32 bit */
3580                   else
3581                     i.types[op] |= Disp32S;
3582                   if ((i.index_reg->reg_flags & RegRex) != 0)
3583                     i.rex |= REX_X;
3584                 }
3585             }
3586           /* RIP addressing for 64bit mode.  */
3587           else if (i.base_reg->reg_type == BaseIndex)
3588             {
3589               i.rm.regmem = NO_BASE_REGISTER;
3590               i.types[op] &= ~ Disp;
3591               i.types[op] |= Disp32S;
3592               i.flags[op] |= Operand_PCrel;
3593               if (! i.disp_operands)
3594                 fake_zero_displacement = 1;
3595             }
3596           else if (i.base_reg->reg_type & Reg16)
3597             {
3598               switch (i.base_reg->reg_num)
3599                 {
3600                 case 3: /* (%bx)  */
3601                   if (i.index_reg == 0)
3602                     i.rm.regmem = 7;
3603                   else /* (%bx,%si) -> 0, or (%bx,%di) -> 1  */
3604                     i.rm.regmem = i.index_reg->reg_num - 6;
3605                   break;
3606                 case 5: /* (%bp)  */
3607                   default_seg = &ss;
3608                   if (i.index_reg == 0)
3609                     {
3610                       i.rm.regmem = 6;
3611                       if ((i.types[op] & Disp) == 0)
3612                         {
3613                           /* fake (%bp) into 0(%bp)  */
3614                           i.types[op] |= Disp8;
3615                           fake_zero_displacement = 1;
3616                         }
3617                     }
3618                   else /* (%bp,%si) -> 2, or (%bp,%di) -> 3  */
3619                     i.rm.regmem = i.index_reg->reg_num - 6 + 2;
3620                   break;
3621                 default: /* (%si) -> 4 or (%di) -> 5  */
3622                   i.rm.regmem = i.base_reg->reg_num - 6 + 4;
3623                 }
3624               i.rm.mode = mode_from_disp_size (i.types[op]);
3625             }
3626           else /* i.base_reg and 32/64 bit mode  */
3627             {
3628               if (flag_code == CODE_64BIT
3629                   && (i.types[op] & Disp))
3630                 i.types[op] = ((i.types[op] & Disp8)
3631                                | (i.prefix[ADDR_PREFIX] == 0
3632                                   ? Disp32S : Disp32));
3633
3634               i.rm.regmem = i.base_reg->reg_num;
3635               if ((i.base_reg->reg_flags & RegRex) != 0)
3636                 i.rex |= REX_B;
3637               i.sib.base = i.base_reg->reg_num;
3638               /* x86-64 ignores REX prefix bit here to avoid decoder
3639                  complications.  */
3640               if ((i.base_reg->reg_num & 7) == EBP_REG_NUM)
3641                 {
3642                   default_seg = &ss;
3643                   if (i.disp_operands == 0)
3644                     {
3645                       fake_zero_displacement = 1;
3646                       i.types[op] |= Disp8;
3647                     }
3648                 }
3649               else if (i.base_reg->reg_num == ESP_REG_NUM)
3650                 {
3651                   default_seg = &ss;
3652                 }
3653               i.sib.scale = i.log2_scale_factor;
3654               if (i.index_reg == 0)
3655                 {
3656                   /* <disp>(%esp) becomes two byte modrm with no index
3657                      register.  We've already stored the code for esp
3658                      in i.rm.regmem ie. ESCAPE_TO_TWO_BYTE_ADDRESSING.
3659                      Any base register besides %esp will not use the
3660                      extra modrm byte.  */
3661                   i.sib.index = NO_INDEX_REGISTER;
3662 #if !SCALE1_WHEN_NO_INDEX
3663                   /* Another case where we force the second modrm byte.  */
3664                   if (i.log2_scale_factor)
3665                     i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
3666 #endif
3667                 }
3668               else
3669                 {
3670                   i.sib.index = i.index_reg->reg_num;
3671                   i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
3672                   if ((i.index_reg->reg_flags & RegRex) != 0)
3673                     i.rex |= REX_X;
3674                 }
3675
3676               if (i.disp_operands
3677                   && (i.reloc[op] == BFD_RELOC_386_TLS_DESC_CALL
3678                       || i.reloc[op] == BFD_RELOC_X86_64_TLSDESC_CALL))
3679                 i.rm.mode = 0;
3680               else
3681                 i.rm.mode = mode_from_disp_size (i.types[op]);
3682             }
3683
3684           if (fake_zero_displacement)
3685             {
3686               /* Fakes a zero displacement assuming that i.types[op]
3687                  holds the correct displacement size.  */
3688               expressionS *exp;
3689
3690               assert (i.op[op].disps == 0);
3691               exp = &disp_expressions[i.disp_operands++];
3692               i.op[op].disps = exp;
3693               exp->X_op = O_constant;
3694               exp->X_add_number = 0;
3695               exp->X_add_symbol = (symbolS *) 0;
3696               exp->X_op_symbol = (symbolS *) 0;
3697             }
3698         }
3699
3700       /* Fill in i.rm.reg or i.rm.regmem field with register operand
3701          (if any) based on i.tm.extension_opcode.  Again, we must be
3702          careful to make sure that segment/control/debug/test/MMX
3703          registers are coded into the i.rm.reg field.  */
3704       if (i.reg_operands)
3705         {
3706           unsigned int op;
3707
3708           for (op = 0; op < i.operands; op++)
3709             if ((i.types[op] & (Reg | RegMMX | RegXMM
3710                                 | SReg2 | SReg3
3711                                 | Control | Debug | Test)))
3712               break;
3713           assert (op < i.operands);
3714
3715           /* If there is an extension opcode to put here, the register
3716              number must be put into the regmem field.  */
3717           if (i.tm.extension_opcode != None)
3718             {
3719               i.rm.regmem = i.op[op].regs->reg_num;
3720               if ((i.op[op].regs->reg_flags & RegRex) != 0)
3721                 i.rex |= REX_B;
3722             }
3723           else
3724             {
3725               i.rm.reg = i.op[op].regs->reg_num;
3726               if ((i.op[op].regs->reg_flags & RegRex) != 0)
3727                 i.rex |= REX_R;
3728             }
3729
3730           /* Now, if no memory operand has set i.rm.mode = 0, 1, 2 we
3731              must set it to 3 to indicate this is a register operand
3732              in the regmem field.  */
3733           if (!i.mem_operands)
3734             i.rm.mode = 3;
3735         }
3736
3737       /* Fill in i.rm.reg field with extension opcode (if any).  */
3738       if (i.tm.extension_opcode != None)
3739         i.rm.reg = i.tm.extension_opcode;
3740     }
3741   return default_seg;
3742 }
3743
3744 static void
3745 output_branch (void)
3746 {
3747   char *p;
3748   int code16;
3749   int prefix;
3750   relax_substateT subtype;
3751   symbolS *sym;
3752   offsetT off;
3753
3754   code16 = 0;
3755   if (flag_code == CODE_16BIT)
3756     code16 = CODE16;
3757
3758   prefix = 0;
3759   if (i.prefix[DATA_PREFIX] != 0)
3760     {
3761       prefix = 1;
3762       i.prefixes -= 1;
3763       code16 ^= CODE16;
3764     }
3765   /* Pentium4 branch hints.  */
3766   if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
3767       || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
3768     {
3769       prefix++;
3770       i.prefixes--;
3771     }
3772   if (i.prefix[REX_PREFIX] != 0)
3773     {
3774       prefix++;
3775       i.prefixes--;
3776     }
3777
3778   if (i.prefixes != 0 && !intel_syntax)
3779     as_warn (_("skipping prefixes on this instruction"));
3780
3781   /* It's always a symbol;  End frag & setup for relax.
3782      Make sure there is enough room in this frag for the largest
3783      instruction we may generate in md_convert_frag.  This is 2
3784      bytes for the opcode and room for the prefix and largest
3785      displacement.  */
3786   frag_grow (prefix + 2 + 4);
3787   /* Prefix and 1 opcode byte go in fr_fix.  */
3788   p = frag_more (prefix + 1);
3789   if (i.prefix[DATA_PREFIX] != 0)
3790     *p++ = DATA_PREFIX_OPCODE;
3791   if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE
3792       || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE)
3793     *p++ = i.prefix[SEG_PREFIX];
3794   if (i.prefix[REX_PREFIX] != 0)
3795     *p++ = i.prefix[REX_PREFIX];
3796   *p = i.tm.base_opcode;
3797
3798   if ((unsigned char) *p == JUMP_PC_RELATIVE)
3799     subtype = ENCODE_RELAX_STATE (UNCOND_JUMP, SMALL);
3800   else if ((cpu_arch_flags & Cpu386) != 0)
3801     subtype = ENCODE_RELAX_STATE (COND_JUMP, SMALL);
3802   else
3803     subtype = ENCODE_RELAX_STATE (COND_JUMP86, SMALL);
3804   subtype |= code16;
3805
3806   sym = i.op[0].disps->X_add_symbol;
3807   off = i.op[0].disps->X_add_number;
3808
3809   if (i.op[0].disps->X_op != O_constant
3810       && i.op[0].disps->X_op != O_symbol)
3811     {
3812       /* Handle complex expressions.  */
3813       sym = make_expr_symbol (i.op[0].disps);
3814       off = 0;
3815     }
3816
3817   /* 1 possible extra opcode + 4 byte displacement go in var part.
3818      Pass reloc in fr_var.  */
3819   frag_var (rs_machine_dependent, 5, i.reloc[0], subtype, sym, off, p);
3820 }
3821
3822 static void
3823 output_jump (void)
3824 {
3825   char *p;
3826   int size;
3827   fixS *fixP;
3828
3829   if (i.tm.opcode_modifier & JumpByte)
3830     {
3831       /* This is a loop or jecxz type instruction.  */
3832       size = 1;
3833       if (i.prefix[ADDR_PREFIX] != 0)
3834         {
3835           FRAG_APPEND_1_CHAR (ADDR_PREFIX_OPCODE);
3836           i.prefixes -= 1;
3837         }
3838       /* Pentium4 branch hints.  */
3839       if (i.prefix[SEG_PREFIX] == CS_PREFIX_OPCODE /* not taken */
3840           || i.prefix[SEG_PREFIX] == DS_PREFIX_OPCODE /* taken */)
3841         {
3842           FRAG_APPEND_1_CHAR (i.prefix[SEG_PREFIX]);
3843           i.prefixes--;
3844         }
3845     }
3846   else
3847     {
3848       int code16;
3849
3850       code16 = 0;
3851       if (flag_code == CODE_16BIT)
3852         code16 = CODE16;
3853
3854       if (i.prefix[DATA_PREFIX] != 0)
3855         {
3856           FRAG_APPEND_1_CHAR (DATA_PREFIX_OPCODE);
3857           i.prefixes -= 1;
3858           code16 ^= CODE16;
3859         }
3860
3861       size = 4;
3862       if (code16)
3863         size = 2;
3864     }
3865
3866   if (i.prefix[REX_PREFIX] != 0)
3867     {
3868       FRAG_APPEND_1_CHAR (i.prefix[REX_PREFIX]);
3869       i.prefixes -= 1;
3870     }
3871
3872   if (i.prefixes != 0 && !intel_syntax)
3873     as_warn (_("skipping prefixes on this instruction"));
3874
3875   p = frag_more (1 + size);
3876   *p++ = i.tm.base_opcode;
3877
3878   fixP = fix_new_exp (frag_now, p - frag_now->fr_literal, size,
3879                       i.op[0].disps, 1, reloc (size, 1, 1, i.reloc[0]));
3880
3881   /* All jumps handled here are signed, but don't use a signed limit
3882      check for 32 and 16 bit jumps as we want to allow wrap around at
3883      4G and 64k respectively.  */
3884   if (size == 1)
3885     fixP->fx_signed = 1;
3886 }
3887
3888 static void
3889 output_interseg_jump (void)
3890 {
3891   char *p;
3892   int size;
3893   int prefix;
3894   int code16;
3895
3896   code16 = 0;
3897   if (flag_code == CODE_16BIT)
3898     code16 = CODE16;
3899
3900   prefix = 0;
3901   if (i.prefix[DATA_PREFIX] != 0)
3902     {
3903       prefix = 1;
3904       i.prefixes -= 1;
3905       code16 ^= CODE16;
3906     }
3907   if (i.prefix[REX_PREFIX] != 0)
3908     {
3909       prefix++;
3910       i.prefixes -= 1;
3911     }
3912
3913   size = 4;
3914   if (code16)
3915     size = 2;
3916
3917   if (i.prefixes != 0 && !intel_syntax)
3918     as_warn (_("skipping prefixes on this instruction"));
3919
3920   /* 1 opcode; 2 segment; offset  */
3921   p = frag_more (prefix + 1 + 2 + size);
3922
3923   if (i.prefix[DATA_PREFIX] != 0)
3924     *p++ = DATA_PREFIX_OPCODE;
3925
3926   if (i.prefix[REX_PREFIX] != 0)
3927     *p++ = i.prefix[REX_PREFIX];
3928
3929   *p++ = i.tm.base_opcode;
3930   if (i.op[1].imms->X_op == O_constant)
3931     {
3932       offsetT n = i.op[1].imms->X_add_number;
3933
3934       if (size == 2
3935           && !fits_in_unsigned_word (n)
3936           && !fits_in_signed_word (n))
3937         {
3938           as_bad (_("16-bit jump out of range"));
3939           return;
3940         }
3941       md_number_to_chars (p, n, size);
3942     }
3943   else
3944     fix_new_exp (frag_now, p - frag_now->fr_literal, size,
3945                  i.op[1].imms, 0, reloc (size, 0, 0, i.reloc[1]));
3946   if (i.op[0].imms->X_op != O_constant)
3947     as_bad (_("can't handle non absolute segment in `%s'"),
3948             i.tm.name);
3949   md_number_to_chars (p + size, (valueT) i.op[0].imms->X_add_number, 2);
3950 }
3951
3952 static void
3953 output_insn (void)
3954 {
3955   fragS *insn_start_frag;
3956   offsetT insn_start_off;
3957
3958   /* Tie dwarf2 debug info to the address at the start of the insn.
3959      We can't do this after the insn has been output as the current
3960      frag may have been closed off.  eg. by frag_var.  */
3961   dwarf2_emit_insn (0);
3962
3963   insn_start_frag = frag_now;
3964   insn_start_off = frag_now_fix ();
3965
3966   /* Output jumps.  */
3967   if (i.tm.opcode_modifier & Jump)
3968     output_branch ();
3969   else if (i.tm.opcode_modifier & (JumpByte | JumpDword))
3970     output_jump ();
3971   else if (i.tm.opcode_modifier & JumpInterSegment)
3972     output_interseg_jump ();
3973   else
3974     {
3975       /* Output normal instructions here.  */
3976       char *p;
3977       unsigned char *q;
3978       unsigned int prefix;
3979
3980       /* All opcodes on i386 have either 1 or 2 bytes.  SSSE3 and
3981          SSE4 instructions have 3 bytes.  We may use one more higher
3982          byte to specify a prefix the instruction requires.  Exclude
3983          instructions which are in both SSE4 and ABM.  */
3984       if ((i.tm.cpu_flags & (CpuSSSE3 | CpuSSE4)) != 0
3985           && (i.tm.cpu_flags & CpuABM) == 0)
3986         {
3987           if (i.tm.base_opcode & 0xff000000)
3988             {
3989               prefix = (i.tm.base_opcode >> 24) & 0xff;
3990               goto check_prefix;
3991             }
3992         }
3993       else if (i.tm.base_opcode == 0x660f3880 || i.tm.base_opcode == 0x660f3881)
3994         {
3995           /* invept and invvpid are 3 byte instructions with a
3996              mandatory prefix. */
3997           if (i.tm.base_opcode & 0xff000000)
3998             {
3999               prefix = (i.tm.base_opcode >> 24) & 0xff;
4000               add_prefix (prefix);
4001             }
4002         }
4003       else if ((i.tm.base_opcode & 0xff0000) != 0)
4004         {
4005           prefix = (i.tm.base_opcode >> 16) & 0xff;
4006           if ((i.tm.cpu_flags & CpuPadLock) != 0)
4007             {
4008             check_prefix:
4009               if (prefix != REPE_PREFIX_OPCODE
4010                   || i.prefix[LOCKREP_PREFIX] != REPE_PREFIX_OPCODE)
4011                 add_prefix (prefix);
4012             }
4013           else
4014             add_prefix (prefix);
4015         }
4016
4017       /* The prefix bytes.  */
4018       for (q = i.prefix;
4019            q < i.prefix + sizeof (i.prefix) / sizeof (i.prefix[0]);
4020            q++)
4021         {
4022           if (*q)
4023             {
4024               p = frag_more (1);
4025               md_number_to_chars (p, (valueT) *q, 1);
4026             }
4027         }
4028
4029       /* Now the opcode; be careful about word order here!  */
4030       if (fits_in_unsigned_byte (i.tm.base_opcode))
4031         {
4032           FRAG_APPEND_1_CHAR (i.tm.base_opcode);
4033         }
4034       else
4035         {
4036           if ((i.tm.cpu_flags & (CpuSSSE3 | CpuSSE4)) != 0
4037               && (i.tm.cpu_flags & CpuABM) == 0)
4038             {
4039               p = frag_more (3);
4040               *p++ = (i.tm.base_opcode >> 16) & 0xff;
4041             }
4042           else if (i.tm.base_opcode == 0x660f3880 ||
4043                    i.tm.base_opcode == 0x660f3881)
4044             {
4045               p = frag_more (3);
4046               *p++ = (i.tm.base_opcode >> 16) & 0xff;
4047             }
4048           else
4049             p = frag_more (2);
4050
4051           /* Put out high byte first: can't use md_number_to_chars!  */
4052           *p++ = (i.tm.base_opcode >> 8) & 0xff;
4053           *p = i.tm.base_opcode & 0xff;
4054         }
4055
4056       /* Now the modrm byte and sib byte (if present).  */
4057       if (i.tm.opcode_modifier & Modrm)
4058         {
4059           p = frag_more (1);
4060           md_number_to_chars (p,
4061                               (valueT) (i.rm.regmem << 0
4062                                         | i.rm.reg << 3
4063                                         | i.rm.mode << 6),
4064                               1);
4065           /* If i.rm.regmem == ESP (4)
4066              && i.rm.mode != (Register mode)
4067              && not 16 bit
4068              ==> need second modrm byte.  */
4069           if (i.rm.regmem == ESCAPE_TO_TWO_BYTE_ADDRESSING
4070               && i.rm.mode != 3
4071               && !(i.base_reg && (i.base_reg->reg_type & Reg16) != 0))
4072             {
4073               p = frag_more (1);
4074               md_number_to_chars (p,
4075                                   (valueT) (i.sib.base << 0
4076                                             | i.sib.index << 3
4077                                             | i.sib.scale << 6),
4078                                   1);
4079             }
4080         }
4081
4082       if (i.disp_operands)
4083         output_disp (insn_start_frag, insn_start_off);
4084
4085       if (i.imm_operands)
4086         output_imm (insn_start_frag, insn_start_off);
4087     }
4088
4089 #ifdef DEBUG386
4090   if (flag_debug)
4091     {
4092       pi ("" /*line*/, &i);
4093     }
4094 #endif /* DEBUG386  */
4095 }
4096
4097 /* Return the size of the displacement operand N.  */
4098
4099 static int
4100 disp_size (unsigned int n)
4101 {
4102   int size = 4;
4103   if (i.types[n] & (Disp8 | Disp16 | Disp64))
4104     {
4105       size = 2;
4106       if (i.types[n] & Disp8)
4107         size = 1;
4108       if (i.types[n] & Disp64)
4109         size = 8;
4110     }
4111   return size;
4112 }
4113
4114 /* Return the size of the immediate operand N.  */
4115
4116 static int
4117 imm_size (unsigned int n)
4118 {
4119   int size = 4;
4120   if (i.types[n] & (Imm8 | Imm8S | Imm16 | Imm64))
4121     {
4122       size = 2;
4123       if (i.types[n] & (Imm8 | Imm8S))
4124         size = 1;
4125       if (i.types[n] & Imm64)
4126         size = 8;
4127     }
4128   return size;
4129 }
4130
4131 static void
4132 output_disp (fragS *insn_start_frag, offsetT insn_start_off)
4133 {
4134   char *p;
4135   unsigned int n;
4136
4137   for (n = 0; n < i.operands; n++)
4138     {
4139       if (i.types[n] & Disp)
4140         {
4141           if (i.op[n].disps->X_op == O_constant)
4142             {
4143               int size = disp_size (n);
4144               offsetT val;
4145
4146               val = offset_in_range (i.op[n].disps->X_add_number,
4147                                      size);
4148               p = frag_more (size);
4149               md_number_to_chars (p, val, size);
4150             }
4151           else
4152             {
4153               enum bfd_reloc_code_real reloc_type;
4154               int size = disp_size (n);
4155               int sign = (i.types[n] & Disp32S) != 0;
4156               int pcrel = (i.flags[n] & Operand_PCrel) != 0;
4157
4158               /* We can't have 8 bit displacement here.  */
4159               assert ((i.types[n] & Disp8) == 0);
4160
4161               /* The PC relative address is computed relative
4162                  to the instruction boundary, so in case immediate
4163                  fields follows, we need to adjust the value.  */
4164               if (pcrel && i.imm_operands)
4165                 {
4166                   unsigned int n1;
4167                   int sz = 0;
4168
4169                   for (n1 = 0; n1 < i.operands; n1++)
4170                     if (i.types[n1] & Imm)
4171                       {
4172                         /* Only one immediate is allowed for PC
4173                            relative address.  */
4174                         assert (sz == 0);
4175                         sz = imm_size (n1);
4176                         i.op[n].disps->X_add_number -= sz;
4177                       }
4178                   /* We should find the immediate.  */
4179                   assert (sz != 0);
4180                 }
4181
4182               p = frag_more (size);
4183               reloc_type = reloc (size, pcrel, sign, i.reloc[n]);
4184               if (GOT_symbol
4185                   && GOT_symbol == i.op[n].disps->X_add_symbol
4186                   && (((reloc_type == BFD_RELOC_32
4187                         || reloc_type == BFD_RELOC_X86_64_32S
4188                         || (reloc_type == BFD_RELOC_64
4189                             && object_64bit))
4190                        && (i.op[n].disps->X_op == O_symbol
4191                            || (i.op[n].disps->X_op == O_add
4192                                && ((symbol_get_value_expression
4193                                     (i.op[n].disps->X_op_symbol)->X_op)
4194                                    == O_subtract))))
4195                       || reloc_type == BFD_RELOC_32_PCREL))
4196                 {
4197                   offsetT add;
4198
4199                   if (insn_start_frag == frag_now)
4200                     add = (p - frag_now->fr_literal) - insn_start_off;
4201                   else
4202                     {
4203                       fragS *fr;
4204
4205                       add = insn_start_frag->fr_fix - insn_start_off;
4206                       for (fr = insn_start_frag->fr_next;
4207                            fr && fr != frag_now; fr = fr->fr_next)
4208                         add += fr->fr_fix;
4209                       add += p - frag_now->fr_literal;
4210                     }
4211
4212                   if (!object_64bit)
4213                     {
4214                       reloc_type = BFD_RELOC_386_GOTPC;
4215                       i.op[n].imms->X_add_number += add;
4216                     }
4217                   else if (reloc_type == BFD_RELOC_64)
4218                     reloc_type = BFD_RELOC_X86_64_GOTPC64;
4219                   else
4220                     /* Don't do the adjustment for x86-64, as there
4221                        the pcrel addressing is relative to the _next_
4222                        insn, and that is taken care of in other code.  */
4223                     reloc_type = BFD_RELOC_X86_64_GOTPC32;
4224                 }
4225               fix_new_exp (frag_now, p - frag_now->fr_literal, size,
4226                            i.op[n].disps, pcrel, reloc_type);
4227             }
4228         }
4229     }
4230 }
4231
4232 static void
4233 output_imm (fragS *insn_start_frag, offsetT insn_start_off)
4234 {
4235   char *p;
4236   unsigned int n;
4237
4238   for (n = 0; n < i.operands; n++)
4239     {
4240       if (i.types[n] & Imm)
4241         {
4242           if (i.op[n].imms->X_op == O_constant)
4243             {
4244               int size = imm_size (n);
4245               offsetT val;
4246
4247               val = offset_in_range (i.op[n].imms->X_add_number,
4248                                      size);
4249               p = frag_more (size);
4250               md_number_to_chars (p, val, size);
4251             }
4252           else
4253             {
4254               /* Not absolute_section.
4255                  Need a 32-bit fixup (don't support 8bit
4256                  non-absolute imms).  Try to support other
4257                  sizes ...  */
4258               enum bfd_reloc_code_real reloc_type;
4259               int size = imm_size (n);
4260               int sign;
4261
4262               if ((i.types[n] & (Imm32S))
4263                   && (i.suffix == QWORD_MNEM_SUFFIX
4264                       || (!i.suffix && (i.tm.opcode_modifier & No_lSuf))))
4265                 sign = 1;
4266               else
4267                 sign = 0;
4268
4269               p = frag_more (size);
4270               reloc_type = reloc (size, 0, sign, i.reloc[n]);
4271
4272               /*   This is tough to explain.  We end up with this one if we
4273                * have operands that look like
4274                * "_GLOBAL_OFFSET_TABLE_+[.-.L284]".  The goal here is to
4275                * obtain the absolute address of the GOT, and it is strongly
4276                * preferable from a performance point of view to avoid using
4277                * a runtime relocation for this.  The actual sequence of
4278                * instructions often look something like:
4279                *
4280                *        call    .L66
4281                * .L66:
4282                *        popl    %ebx
4283                *        addl    $_GLOBAL_OFFSET_TABLE_+[.-.L66],%ebx
4284                *
4285                *   The call and pop essentially return the absolute address
4286                * of the label .L66 and store it in %ebx.  The linker itself
4287                * will ultimately change the first operand of the addl so
4288                * that %ebx points to the GOT, but to keep things simple, the
4289                * .o file must have this operand set so that it generates not
4290                * the absolute address of .L66, but the absolute address of
4291                * itself.  This allows the linker itself simply treat a GOTPC
4292                * relocation as asking for a pcrel offset to the GOT to be
4293                * added in, and the addend of the relocation is stored in the
4294                * operand field for the instruction itself.
4295                *
4296                *   Our job here is to fix the operand so that it would add
4297                * the correct offset so that %ebx would point to itself.  The
4298                * thing that is tricky is that .-.L66 will point to the
4299                * beginning of the instruction, so we need to further modify
4300                * the operand so that it will point to itself.  There are
4301                * other cases where you have something like:
4302                *
4303                *        .long   $_GLOBAL_OFFSET_TABLE_+[.-.L66]
4304                *
4305                * and here no correction would be required.  Internally in
4306                * the assembler we treat operands of this form as not being
4307                * pcrel since the '.' is explicitly mentioned, and I wonder
4308                * whether it would simplify matters to do it this way.  Who
4309                * knows.  In earlier versions of the PIC patches, the
4310                * pcrel_adjust field was used to store the correction, but
4311                * since the expression is not pcrel, I felt it would be
4312                * confusing to do it this way.  */
4313
4314               if ((reloc_type == BFD_RELOC_32
4315                    || reloc_type == BFD_RELOC_X86_64_32S
4316                    || reloc_type == BFD_RELOC_64)
4317                   && GOT_symbol
4318                   && GOT_symbol == i.op[n].imms->X_add_symbol
4319                   && (i.op[n].imms->X_op == O_symbol
4320                       || (i.op[n].imms->X_op == O_add
4321                           && ((symbol_get_value_expression
4322                                (i.op[n].imms->X_op_symbol)->X_op)
4323                               == O_subtract))))
4324                 {
4325                   offsetT add;
4326
4327                   if (insn_start_frag == frag_now)
4328                     add = (p - frag_now->fr_literal) - insn_start_off;
4329                   else
4330                     {
4331                       fragS *fr;
4332
4333                       add = insn_start_frag->fr_fix - insn_start_off;
4334                       for (fr = insn_start_frag->fr_next;
4335                            fr && fr != frag_now; fr = fr->fr_next)
4336                         add += fr->fr_fix;
4337                       add += p - frag_now->fr_literal;
4338                     }
4339
4340                   if (!object_64bit)
4341                     reloc_type = BFD_RELOC_386_GOTPC;
4342                   else if (size == 4)
4343                     reloc_type = BFD_RELOC_X86_64_GOTPC32;
4344                   else if (size == 8)
4345                     reloc_type = BFD_RELOC_X86_64_GOTPC64;
4346                   i.op[n].imms->X_add_number += add;
4347                 }
4348               fix_new_exp (frag_now, p - frag_now->fr_literal, size,
4349                            i.op[n].imms, 0, reloc_type);
4350             }
4351         }
4352     }
4353 }
4354 \f
4355 /* x86_cons_fix_new is called via the expression parsing code when a
4356    reloc is needed.  We use this hook to get the correct .got reloc.  */
4357 static enum bfd_reloc_code_real got_reloc = NO_RELOC;
4358 static int cons_sign = -1;
4359
4360 void
4361 x86_cons_fix_new (fragS *frag, unsigned int off, unsigned int len,
4362                   expressionS *exp)
4363 {
4364   enum bfd_reloc_code_real r = reloc (len, 0, cons_sign, got_reloc);
4365
4366   got_reloc = NO_RELOC;
4367
4368 #ifdef TE_PE
4369   if (exp->X_op == O_secrel)
4370     {
4371       exp->X_op = O_symbol;
4372       r = BFD_RELOC_32_SECREL;
4373     }
4374 #endif
4375
4376   fix_new_exp (frag, off, len, exp, 0, r);
4377 }
4378
4379 #if (!defined (OBJ_ELF) && !defined (OBJ_MAYBE_ELF)) || defined (LEX_AT)
4380 # define lex_got(reloc, adjust, types) NULL
4381 #else
4382 /* Parse operands of the form
4383    <symbol>@GOTOFF+<nnn>
4384    and similar .plt or .got references.
4385
4386    If we find one, set up the correct relocation in RELOC and copy the
4387    input string, minus the `@GOTOFF' into a malloc'd buffer for
4388    parsing by the calling routine.  Return this buffer, and if ADJUST
4389    is non-null set it to the length of the string we removed from the
4390    input line.  Otherwise return NULL.  */
4391 static char *
4392 lex_got (enum bfd_reloc_code_real *reloc,
4393          int *adjust,
4394          unsigned int *types)
4395 {
4396   /* Some of the relocations depend on the size of what field is to
4397      be relocated.  But in our callers i386_immediate and i386_displacement
4398      we don't yet know the operand size (this will be set by insn
4399      matching).  Hence we record the word32 relocation here,
4400      and adjust the reloc according to the real size in reloc().  */
4401   static const struct {
4402     const char *str;
4403     const enum bfd_reloc_code_real rel[2];
4404     const unsigned int types64;
4405   } gotrel[] = {
4406     { "PLTOFF",   { 0,
4407                     BFD_RELOC_X86_64_PLTOFF64 },
4408       Imm64 },
4409     { "PLT",      { BFD_RELOC_386_PLT32,
4410                     BFD_RELOC_X86_64_PLT32    },
4411       Imm32 | Imm32S | Disp32 },
4412     { "GOTPLT",   { 0,
4413                     BFD_RELOC_X86_64_GOTPLT64 },
4414       Imm64 | Disp64 },
4415     { "GOTOFF",   { BFD_RELOC_386_GOTOFF,
4416                     BFD_RELOC_X86_64_GOTOFF64 },
4417       Imm64 | Disp64 },
4418     { "GOTPCREL", { 0,
4419                     BFD_RELOC_X86_64_GOTPCREL },
4420       Imm32 | Imm32S | Disp32 },
4421     { "TLSGD",    { BFD_RELOC_386_TLS_GD,
4422                     BFD_RELOC_X86_64_TLSGD    },
4423       Imm32 | Imm32S | Disp32 },
4424     { "TLSLDM",   { BFD_RELOC_386_TLS_LDM,
4425                     0                         },
4426       0 },
4427     { "TLSLD",    { 0,
4428                     BFD_RELOC_X86_64_TLSLD    },
4429       Imm32 | Imm32S | Disp32 },
4430     { "GOTTPOFF", { BFD_RELOC_386_TLS_IE_32,
4431                     BFD_RELOC_X86_64_GOTTPOFF },
4432       Imm32 | Imm32S | Disp32 },
4433     { "TPOFF",    { BFD_RELOC_386_TLS_LE_32,
4434                     BFD_RELOC_X86_64_TPOFF32  },
4435       Imm32 | Imm32S | Imm64 | Disp32 | Disp64 },
4436     { "NTPOFF",   { BFD_RELOC_386_TLS_LE,
4437                     0                         },
4438       0 },
4439     { "DTPOFF",   { BFD_RELOC_386_TLS_LDO_32,
4440                     BFD_RELOC_X86_64_DTPOFF32 },
4441       Imm32 | Imm32S | Imm64 | Disp32 | Disp64 },
4442     { "GOTNTPOFF",{ BFD_RELOC_386_TLS_GOTIE,
4443                     0                         },
4444       0 },
4445     { "INDNTPOFF",{ BFD_RELOC_386_TLS_IE,
4446                     0                         },
4447       0 },
4448     { "GOT",      { BFD_RELOC_386_GOT32,
4449                     BFD_RELOC_X86_64_GOT32    },
4450       Imm32 | Imm32S | Disp32 | Imm64 },
4451     { "TLSDESC",  { BFD_RELOC_386_TLS_GOTDESC,
4452                     BFD_RELOC_X86_64_GOTPC32_TLSDESC },
4453       Imm32 | Imm32S | Disp32 },
4454     { "TLSCALL",  { BFD_RELOC_386_TLS_DESC_CALL,
4455                     BFD_RELOC_X86_64_TLSDESC_CALL },
4456       Imm32 | Imm32S | Disp32 }
4457   };
4458   char *cp;
4459   unsigned int j;
4460
4461   if (!IS_ELF)
4462     return NULL;
4463
4464   for (cp = input_line_pointer; *cp != '@'; cp++)
4465     if (is_end_of_line[(unsigned char) *cp])
4466       return NULL;
4467
4468   for (j = 0; j < sizeof (gotrel) / sizeof (gotrel[0]); j++)
4469     {
4470       int len;
4471
4472       len = strlen (gotrel[j].str);
4473       if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
4474         {
4475           if (gotrel[j].rel[object_64bit] != 0)
4476             {
4477               int first, second;
4478               char *tmpbuf, *past_reloc;
4479
4480               *reloc = gotrel[j].rel[object_64bit];
4481               if (adjust)
4482                 *adjust = len;
4483
4484               if (types)
4485                 {
4486                   if (flag_code != CODE_64BIT)
4487                     *types = Imm32 | Disp32;
4488                   else
4489                     *types = gotrel[j].types64;
4490                 }
4491
4492               if (GOT_symbol == NULL)
4493                 GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
4494
4495               /* The length of the first part of our input line.  */
4496               first = cp - input_line_pointer;
4497
4498               /* The second part goes from after the reloc token until
4499                  (and including) an end_of_line char.  Don't use strlen
4500                  here as the end_of_line char may not be a NUL.  */
4501               past_reloc = cp + 1 + len;
4502               for (cp = past_reloc; !is_end_of_line[(unsigned char) *cp++]; )
4503                 ;
4504               second = cp - past_reloc;
4505
4506               /* Allocate and copy string.  The trailing NUL shouldn't
4507                  be necessary, but be safe.  */
4508               tmpbuf = xmalloc (first + second + 2);
4509               memcpy (tmpbuf, input_line_pointer, first);
4510               if (second != 0 && *past_reloc != ' ')
4511                 /* Replace the relocation token with ' ', so that
4512                    errors like foo@GOTOFF1 will be detected.  */
4513                 tmpbuf[first++] = ' ';
4514               memcpy (tmpbuf + first, past_reloc, second);
4515               tmpbuf[first + second] = '\0';
4516               return tmpbuf;
4517             }
4518
4519           as_bad (_("@%s reloc is not supported with %d-bit output format"),
4520                   gotrel[j].str, 1 << (5 + object_64bit));
4521           return NULL;
4522         }
4523     }
4524
4525   /* Might be a symbol version string.  Don't as_bad here.  */
4526   return NULL;
4527 }
4528
4529 void
4530 x86_cons (expressionS *exp, int size)
4531 {
4532   if (size == 4 || (object_64bit && size == 8))
4533     {
4534       /* Handle @GOTOFF and the like in an expression.  */
4535       char *save;
4536       char *gotfree_input_line;
4537       int adjust;
4538
4539       save = input_line_pointer;
4540       gotfree_input_line = lex_got (&got_reloc, &adjust, NULL);
4541       if (gotfree_input_line)
4542         input_line_pointer = gotfree_input_line;
4543
4544       expression (exp);
4545
4546       if (gotfree_input_line)
4547         {
4548           /* expression () has merrily parsed up to the end of line,
4549              or a comma - in the wrong buffer.  Transfer how far
4550              input_line_pointer has moved to the right buffer.  */
4551           input_line_pointer = (save
4552                                 + (input_line_pointer - gotfree_input_line)
4553                                 + adjust);
4554           free (gotfree_input_line);
4555         }
4556     }
4557   else
4558     expression (exp);
4559 }
4560 #endif
4561
4562 static void signed_cons (int size)
4563 {
4564   if (flag_code == CODE_64BIT)
4565     cons_sign = 1;
4566   cons (size);
4567   cons_sign = -1;
4568 }
4569
4570 #ifdef TE_PE
4571 static void
4572 pe_directive_secrel (dummy)
4573      int dummy ATTRIBUTE_UNUSED;
4574 {
4575   expressionS exp;
4576
4577   do
4578     {
4579       expression (&exp);
4580       if (exp.X_op == O_symbol)
4581         exp.X_op = O_secrel;
4582
4583       emit_expr (&exp, 4);
4584     }
4585   while (*input_line_pointer++ == ',');
4586
4587   input_line_pointer--;
4588   demand_empty_rest_of_line ();
4589 }
4590 #endif
4591
4592 static int
4593 i386_immediate (char *imm_start)
4594 {
4595   char *save_input_line_pointer;
4596   char *gotfree_input_line;
4597   segT exp_seg = 0;
4598   expressionS *exp;
4599   unsigned int types = ~0U;
4600
4601   if (i.imm_operands == MAX_IMMEDIATE_OPERANDS)
4602     {
4603       as_bad (_("at most %d immediate operands are allowed"),
4604               MAX_IMMEDIATE_OPERANDS);
4605       return 0;
4606     }
4607
4608   exp = &im_expressions[i.imm_operands++];
4609   i.op[this_operand].imms = exp;
4610
4611   if (is_space_char (*imm_start))
4612     ++imm_start;
4613
4614   save_input_line_pointer = input_line_pointer;
4615   input_line_pointer = imm_start;
4616
4617   gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
4618   if (gotfree_input_line)
4619     input_line_pointer = gotfree_input_line;
4620
4621   exp_seg = expression (exp);
4622
4623   SKIP_WHITESPACE ();
4624   if (*input_line_pointer)
4625     as_bad (_("junk `%s' after expression"), input_line_pointer);
4626
4627   input_line_pointer = save_input_line_pointer;
4628   if (gotfree_input_line)
4629     free (gotfree_input_line);
4630
4631   if (exp->X_op == O_absent || exp->X_op == O_big)
4632     {
4633       /* Missing or bad expr becomes absolute 0.  */
4634       as_bad (_("missing or invalid immediate expression `%s' taken as 0"),
4635               imm_start);
4636       exp->X_op = O_constant;
4637       exp->X_add_number = 0;
4638       exp->X_add_symbol = (symbolS *) 0;
4639       exp->X_op_symbol = (symbolS *) 0;
4640     }
4641   else if (exp->X_op == O_constant)
4642     {
4643       /* Size it properly later.  */
4644       i.types[this_operand] |= Imm64;
4645       /* If BFD64, sign extend val.  */
4646       if (!use_rela_relocations
4647           && (exp->X_add_number & ~(((addressT) 2 << 31) - 1)) == 0)
4648         exp->X_add_number
4649           = (exp->X_add_number ^ ((addressT) 1 << 31)) - ((addressT) 1 << 31);
4650     }
4651 #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
4652   else if (OUTPUT_FLAVOR == bfd_target_aout_flavour
4653            && exp_seg != absolute_section
4654            && exp_seg != text_section
4655            && exp_seg != data_section
4656            && exp_seg != bss_section
4657            && exp_seg != undefined_section
4658            && !bfd_is_com_section (exp_seg))
4659     {
4660       as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
4661       return 0;
4662     }
4663 #endif
4664   else if (!intel_syntax && exp->X_op == O_register)
4665     {
4666       as_bad (_("illegal immediate register operand %s"), imm_start);
4667       return 0;
4668     }
4669   else
4670     {
4671       /* This is an address.  The size of the address will be
4672          determined later, depending on destination register,
4673          suffix, or the default for the section.  */
4674       i.types[this_operand] |= Imm8 | Imm16 | Imm32 | Imm32S | Imm64;
4675       i.types[this_operand] &= types;
4676     }
4677
4678   return 1;
4679 }
4680
4681 static char *
4682 i386_scale (char *scale)
4683 {
4684   offsetT val;
4685   char *save = input_line_pointer;
4686
4687   input_line_pointer = scale;
4688   val = get_absolute_expression ();
4689
4690   switch (val)
4691     {
4692     case 1:
4693       i.log2_scale_factor = 0;
4694       break;
4695     case 2:
4696       i.log2_scale_factor = 1;
4697       break;
4698     case 4:
4699       i.log2_scale_factor = 2;
4700       break;
4701     case 8:
4702       i.log2_scale_factor = 3;
4703       break;
4704     default:
4705       {
4706         char sep = *input_line_pointer;
4707
4708         *input_line_pointer = '\0';
4709         as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
4710                 scale);
4711         *input_line_pointer = sep;
4712         input_line_pointer = save;
4713         return NULL;
4714       }
4715     }
4716   if (i.log2_scale_factor != 0 && i.index_reg == 0)
4717     {
4718       as_warn (_("scale factor of %d without an index register"),
4719                1 << i.log2_scale_factor);
4720 #if SCALE1_WHEN_NO_INDEX
4721       i.log2_scale_factor = 0;
4722 #endif
4723     }
4724   scale = input_line_pointer;
4725   input_line_pointer = save;
4726   return scale;
4727 }
4728
4729 static int
4730 i386_displacement (char *disp_start, char *disp_end)
4731 {
4732   expressionS *exp;
4733   segT exp_seg = 0;
4734   char *save_input_line_pointer;
4735   char *gotfree_input_line;
4736   int bigdisp, override;
4737   unsigned int types = Disp;
4738
4739   if (i.disp_operands == MAX_MEMORY_OPERANDS)
4740     {
4741       as_bad (_("at most %d displacement operands are allowed"),
4742               MAX_MEMORY_OPERANDS);
4743       return 0;
4744     }
4745
4746   if ((i.types[this_operand] & JumpAbsolute)
4747       || !(current_templates->start->opcode_modifier & (Jump | JumpDword)))
4748     {
4749       bigdisp = Disp32;
4750       override = (i.prefix[ADDR_PREFIX] != 0);
4751     }
4752   else
4753     {
4754       /* For PC-relative branches, the width of the displacement
4755          is dependent upon data size, not address size.  */
4756       bigdisp = 0;
4757       override = (i.prefix[DATA_PREFIX] != 0);
4758     }
4759   if (flag_code == CODE_64BIT)
4760     {
4761       if (!bigdisp)
4762         bigdisp = ((override || i.suffix == WORD_MNEM_SUFFIX)
4763                    ? Disp16
4764                    : Disp32S | Disp32);
4765       else if (!override)
4766         bigdisp = Disp64 | Disp32S | Disp32;
4767     }
4768   else
4769     {
4770       if (!bigdisp)
4771         {
4772           if (!override)
4773             override = (i.suffix == (flag_code != CODE_16BIT
4774                                      ? WORD_MNEM_SUFFIX
4775                                      : LONG_MNEM_SUFFIX));
4776           bigdisp = Disp32;
4777         }
4778       if ((flag_code == CODE_16BIT) ^ override)
4779         bigdisp = Disp16;
4780     }
4781   i.types[this_operand] |= bigdisp;
4782
4783   exp = &disp_expressions[i.disp_operands];
4784   i.op[this_operand].disps = exp;
4785   i.disp_operands++;
4786   save_input_line_pointer = input_line_pointer;
4787   input_line_pointer = disp_start;
4788   END_STRING_AND_SAVE (disp_end);
4789
4790 #ifndef GCC_ASM_O_HACK
4791 #define GCC_ASM_O_HACK 0
4792 #endif
4793 #if GCC_ASM_O_HACK
4794   END_STRING_AND_SAVE (disp_end + 1);
4795   if ((i.types[this_operand] & BaseIndex) != 0
4796       && displacement_string_end[-1] == '+')
4797     {
4798       /* This hack is to avoid a warning when using the "o"
4799          constraint within gcc asm statements.
4800          For instance:
4801
4802          #define _set_tssldt_desc(n,addr,limit,type) \
4803          __asm__ __volatile__ ( \
4804          "movw %w2,%0\n\t" \
4805          "movw %w1,2+%0\n\t" \
4806          "rorl $16,%1\n\t" \
4807          "movb %b1,4+%0\n\t" \
4808          "movb %4,5+%0\n\t" \
4809          "movb $0,6+%0\n\t" \
4810          "movb %h1,7+%0\n\t" \
4811          "rorl $16,%1" \
4812          : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type))
4813
4814          This works great except that the output assembler ends
4815          up looking a bit weird if it turns out that there is
4816          no offset.  You end up producing code that looks like:
4817
4818          #APP
4819          movw $235,(%eax)
4820          movw %dx,2+(%eax)
4821          rorl $16,%edx
4822          movb %dl,4+(%eax)
4823          movb $137,5+(%eax)
4824          movb $0,6+(%eax)
4825          movb %dh,7+(%eax)
4826          rorl $16,%edx
4827          #NO_APP
4828
4829          So here we provide the missing zero.  */
4830
4831       *displacement_string_end = '0';
4832     }
4833 #endif
4834   gotfree_input_line = lex_got (&i.reloc[this_operand], NULL, &types);
4835   if (gotfree_input_line)
4836     input_line_pointer = gotfree_input_line;
4837
4838   exp_seg = expression (exp);
4839
4840   SKIP_WHITESPACE ();
4841   if (*input_line_pointer)
4842     as_bad (_("junk `%s' after expression"), input_line_pointer);
4843 #if GCC_ASM_O_HACK
4844   RESTORE_END_STRING (disp_end + 1);
4845 #endif
4846   RESTORE_END_STRING (disp_end);
4847   input_line_pointer = save_input_line_pointer;
4848   if (gotfree_input_line)
4849     free (gotfree_input_line);
4850
4851   /* We do this to make sure that the section symbol is in
4852      the symbol table.  We will ultimately change the relocation
4853      to be relative to the beginning of the section.  */
4854   if (i.reloc[this_operand] == BFD_RELOC_386_GOTOFF
4855       || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL
4856       || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
4857     {
4858       if (exp->X_op != O_symbol)
4859         {
4860           as_bad (_("bad expression used with @%s"),
4861                   (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL
4862                    ? "GOTPCREL"
4863                    : "GOTOFF"));
4864           return 0;
4865         }
4866
4867       if (S_IS_LOCAL (exp->X_add_symbol)
4868           && S_GET_SEGMENT (exp->X_add_symbol) != undefined_section)
4869         section_symbol (S_GET_SEGMENT (exp->X_add_symbol));
4870       exp->X_op = O_subtract;
4871       exp->X_op_symbol = GOT_symbol;
4872       if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL)
4873         i.reloc[this_operand] = BFD_RELOC_32_PCREL;
4874       else if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTOFF64)
4875         i.reloc[this_operand] = BFD_RELOC_64;
4876       else
4877         i.reloc[this_operand] = BFD_RELOC_32;
4878     }
4879
4880   if (exp->X_op == O_absent || exp->X_op == O_big)
4881     {
4882       /* Missing or bad expr becomes absolute 0.  */
4883       as_bad (_("missing or invalid displacement expression `%s' taken as 0"),
4884               disp_start);
4885       exp->X_op = O_constant;
4886       exp->X_add_number = 0;
4887       exp->X_add_symbol = (symbolS *) 0;
4888       exp->X_op_symbol = (symbolS *) 0;
4889     }
4890
4891 #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
4892   if (exp->X_op != O_constant
4893       && OUTPUT_FLAVOR == bfd_target_aout_flavour
4894       && exp_seg != absolute_section
4895       && exp_seg != text_section
4896       && exp_seg != data_section
4897       && exp_seg != bss_section
4898       && exp_seg != undefined_section
4899       && !bfd_is_com_section (exp_seg))
4900     {
4901       as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
4902       return 0;
4903     }
4904 #endif
4905
4906   if (!(i.types[this_operand] & ~Disp))
4907     i.types[this_operand] &= types;
4908
4909   return 1;
4910 }
4911
4912 /* Make sure the memory operand we've been dealt is valid.
4913    Return 1 on success, 0 on a failure.  */
4914
4915 static int
4916 i386_index_check (const char *operand_string)
4917 {
4918   int ok;
4919 #if INFER_ADDR_PREFIX
4920   int fudged = 0;
4921
4922  tryprefix:
4923 #endif
4924   ok = 1;
4925   if ((current_templates->start->cpu_flags & CpuSVME)
4926       && current_templates->end[-1].operand_types[0] == AnyMem)
4927     {
4928       /* Memory operands of SVME insns are special in that they only allow
4929          rAX as their memory address and ignore any segment override.  */
4930       unsigned RegXX;
4931
4932       /* SKINIT is even more restrictive: it always requires EAX.  */
4933       if (strcmp (current_templates->start->name, "skinit") == 0)
4934         RegXX = Reg32;
4935       else if (flag_code == CODE_64BIT)
4936         RegXX = i.prefix[ADDR_PREFIX] == 0 ? Reg64 : Reg32;
4937       else
4938         RegXX = ((flag_code == CODE_16BIT) ^ (i.prefix[ADDR_PREFIX] != 0)
4939                  ? Reg16
4940                  : Reg32);
4941       if (!i.base_reg
4942           || !(i.base_reg->reg_type & Acc)
4943           || !(i.base_reg->reg_type & RegXX)
4944           || i.index_reg
4945           || (i.types[0] & Disp))
4946         ok = 0;
4947     }
4948   else if (flag_code == CODE_64BIT)
4949     {
4950       unsigned RegXX = (i.prefix[ADDR_PREFIX] == 0 ? Reg64 : Reg32);
4951
4952       if ((i.base_reg
4953            && ((i.base_reg->reg_type & RegXX) == 0)
4954            && (i.base_reg->reg_type != BaseIndex
4955                || i.index_reg))
4956           || (i.index_reg
4957               && ((i.index_reg->reg_type & (RegXX | BaseIndex))
4958                   != (RegXX | BaseIndex))))
4959         ok = 0;
4960     }
4961   else
4962     {
4963       if ((flag_code == CODE_16BIT) ^ (i.prefix[ADDR_PREFIX] != 0))
4964         {
4965           /* 16bit checks.  */
4966           if ((i.base_reg
4967                && ((i.base_reg->reg_type & (Reg16 | BaseIndex | RegRex))
4968                    != (Reg16 | BaseIndex)))
4969               || (i.index_reg
4970                   && (((i.index_reg->reg_type & (Reg16 | BaseIndex))
4971                        != (Reg16 | BaseIndex))
4972                       || !(i.base_reg
4973                            && i.base_reg->reg_num < 6
4974                            && i.index_reg->reg_num >= 6
4975                            && i.log2_scale_factor == 0))))
4976             ok = 0;
4977         }
4978       else
4979         {
4980           /* 32bit checks.  */
4981           if ((i.base_reg
4982                && (i.base_reg->reg_type & (Reg32 | RegRex)) != Reg32)
4983               || (i.index_reg
4984                   && ((i.index_reg->reg_type & (Reg32 | BaseIndex | RegRex))
4985                       != (Reg32 | BaseIndex))))
4986             ok = 0;
4987         }
4988     }
4989   if (!ok)
4990     {
4991 #if INFER_ADDR_PREFIX
4992       if (i.prefix[ADDR_PREFIX] == 0)
4993         {
4994           i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
4995           i.prefixes += 1;
4996           /* Change the size of any displacement too.  At most one of
4997              Disp16 or Disp32 is set.
4998              FIXME.  There doesn't seem to be any real need for separate
4999              Disp16 and Disp32 flags.  The same goes for Imm16 and Imm32.
5000              Removing them would probably clean up the code quite a lot.  */
5001           if (flag_code != CODE_64BIT
5002               && (i.types[this_operand] & (Disp16 | Disp32)))
5003             i.types[this_operand] ^= (Disp16 | Disp32);
5004           fudged = 1;
5005           goto tryprefix;
5006         }
5007       if (fudged)
5008         as_bad (_("`%s' is not a valid base/index expression"),
5009                 operand_string);
5010       else
5011 #endif
5012         as_bad (_("`%s' is not a valid %s bit base/index expression"),
5013                 operand_string,
5014                 flag_code_names[flag_code]);
5015     }
5016   return ok;
5017 }
5018
5019 /* Parse OPERAND_STRING into the i386_insn structure I.  Returns non-zero
5020    on error.  */
5021
5022 static int
5023 i386_operand (char *operand_string)
5024 {
5025   const reg_entry *r;
5026   char *end_op;
5027   char *op_string = operand_string;
5028
5029   if (is_space_char (*op_string))
5030     ++op_string;
5031
5032   /* We check for an absolute prefix (differentiating,
5033      for example, 'jmp pc_relative_label' from 'jmp *absolute_label'.  */
5034   if (*op_string == ABSOLUTE_PREFIX)
5035     {
5036       ++op_string;
5037       if (is_space_char (*op_string))
5038         ++op_string;
5039       i.types[this_operand] |= JumpAbsolute;
5040     }
5041
5042   /* Check if operand is a register.  */
5043   if ((r = parse_register (op_string, &end_op)) != NULL)
5044     {
5045       /* Check for a segment override by searching for ':' after a
5046          segment register.  */
5047       op_string = end_op;
5048       if (is_space_char (*op_string))
5049         ++op_string;
5050       if (*op_string == ':' && (r->reg_type & (SReg2 | SReg3)))
5051         {
5052           switch (r->reg_num)
5053             {
5054             case 0:
5055               i.seg[i.mem_operands] = &es;
5056               break;
5057             case 1:
5058               i.seg[i.mem_operands] = &cs;
5059               break;
5060             case 2:
5061               i.seg[i.mem_operands] = &ss;
5062               break;
5063             case 3:
5064               i.seg[i.mem_operands] = &ds;
5065               break;
5066             case 4:
5067               i.seg[i.mem_operands] = &fs;
5068               break;
5069             case 5:
5070               i.seg[i.mem_operands] = &gs;
5071               break;
5072             }
5073
5074           /* Skip the ':' and whitespace.  */
5075           ++op_string;
5076           if (is_space_char (*op_string))
5077             ++op_string;
5078
5079           if (!is_digit_char (*op_string)
5080               && !is_identifier_char (*op_string)
5081               && *op_string != '('
5082               && *op_string != ABSOLUTE_PREFIX)
5083             {
5084               as_bad (_("bad memory operand `%s'"), op_string);
5085               return 0;
5086             }
5087           /* Handle case of %es:*foo.  */
5088           if (*op_string == ABSOLUTE_PREFIX)
5089             {
5090               ++op_string;
5091               if (is_space_char (*op_string))
5092                 ++op_string;
5093               i.types[this_operand] |= JumpAbsolute;
5094             }
5095           goto do_memory_reference;
5096         }
5097       if (*op_string)
5098         {
5099           as_bad (_("junk `%s' after register"), op_string);
5100           return 0;
5101         }
5102       i.types[this_operand] |= r->reg_type & ~BaseIndex;
5103       i.op[this_operand].regs = r;
5104       i.reg_operands++;
5105     }
5106   else if (*op_string == REGISTER_PREFIX)
5107     {
5108       as_bad (_("bad register name `%s'"), op_string);
5109       return 0;
5110     }
5111   else if (*op_string == IMMEDIATE_PREFIX)
5112     {
5113       ++op_string;
5114       if (i.types[this_operand] & JumpAbsolute)
5115         {
5116           as_bad (_("immediate operand illegal with absolute jump"));
5117           return 0;
5118         }
5119       if (!i386_immediate (op_string))
5120         return 0;
5121     }
5122   else if (is_digit_char (*op_string)
5123            || is_identifier_char (*op_string)
5124            || *op_string == '(')
5125     {
5126       /* This is a memory reference of some sort.  */
5127       char *base_string;
5128
5129       /* Start and end of displacement string expression (if found).  */
5130       char *displacement_string_start;
5131       char *displacement_string_end;
5132
5133     do_memory_reference:
5134       if ((i.mem_operands == 1
5135            && (current_templates->start->opcode_modifier & IsString) == 0)
5136           || i.mem_operands == 2)
5137         {
5138           as_bad (_("too many memory references for `%s'"),
5139                   current_templates->start->name);
5140           return 0;
5141         }
5142
5143       /* Check for base index form.  We detect the base index form by
5144          looking for an ')' at the end of the operand, searching
5145          for the '(' matching it, and finding a REGISTER_PREFIX or ','
5146          after the '('.  */
5147       base_string = op_string + strlen (op_string);
5148
5149       --base_string;
5150       if (is_space_char (*base_string))
5151         --base_string;
5152
5153       /* If we only have a displacement, set-up for it to be parsed later.  */
5154       displacement_string_start = op_string;
5155       displacement_string_end = base_string + 1;
5156
5157       if (*base_string == ')')
5158         {
5159           char *temp_string;
5160           unsigned int parens_balanced = 1;
5161           /* We've already checked that the number of left & right ()'s are
5162              equal, so this loop will not be infinite.  */
5163           do
5164             {
5165               base_string--;
5166               if (*base_string == ')')
5167                 parens_balanced++;
5168               if (*base_string == '(')
5169                 parens_balanced--;
5170             }
5171           while (parens_balanced);
5172
5173           temp_string = base_string;
5174
5175           /* Skip past '(' and whitespace.  */
5176           ++base_string;
5177           if (is_space_char (*base_string))
5178             ++base_string;
5179
5180           if (*base_string == ','
5181               || ((i.base_reg = parse_register (base_string, &end_op))
5182                   != NULL))
5183             {
5184               displacement_string_end = temp_string;
5185
5186               i.types[this_operand] |= BaseIndex;
5187
5188               if (i.base_reg)
5189                 {
5190                   base_string = end_op;
5191                   if (is_space_char (*base_string))
5192                     ++base_string;
5193                 }
5194
5195               /* There may be an index reg or scale factor here.  */
5196               if (*base_string == ',')
5197                 {
5198                   ++base_string;
5199                   if (is_space_char (*base_string))
5200                     ++base_string;
5201
5202                   if ((i.index_reg = parse_register (base_string, &end_op))
5203                       != NULL)
5204                     {
5205                       base_string = end_op;
5206                       if (is_space_char (*base_string))
5207                         ++base_string;
5208                       if (*base_string == ',')
5209                         {
5210                           ++base_string;
5211                           if (is_space_char (*base_string))
5212                             ++base_string;
5213                         }
5214                       else if (*base_string != ')')
5215                         {
5216                           as_bad (_("expecting `,' or `)' "
5217                                     "after index register in `%s'"),
5218                                   operand_string);
5219                           return 0;
5220                         }
5221                     }
5222                   else if (*base_string == REGISTER_PREFIX)
5223                     {
5224                       as_bad (_("bad register name `%s'"), base_string);
5225                       return 0;
5226                     }
5227
5228                   /* Check for scale factor.  */
5229                   if (*base_string != ')')
5230                     {
5231                       char *end_scale = i386_scale (base_string);
5232
5233                       if (!end_scale)
5234                         return 0;
5235
5236                       base_string = end_scale;
5237                       if (is_space_char (*base_string))
5238                         ++base_string;
5239                       if (*base_string != ')')
5240                         {
5241                           as_bad (_("expecting `)' "
5242                                     "after scale factor in `%s'"),
5243                                   operand_string);
5244                           return 0;
5245                         }
5246                     }
5247                   else if (!i.index_reg)
5248                     {
5249                       as_bad (_("expecting index register or scale factor "
5250                                 "after `,'; got '%c'"),
5251                               *base_string);
5252                       return 0;
5253                     }
5254                 }
5255               else if (*base_string != ')')
5256                 {
5257                   as_bad (_("expecting `,' or `)' "
5258                             "after base register in `%s'"),
5259                           operand_string);
5260                   return 0;
5261                 }
5262             }
5263           else if (*base_string == REGISTER_PREFIX)
5264             {
5265               as_bad (_("bad register name `%s'"), base_string);
5266               return 0;
5267             }
5268         }
5269
5270       /* If there's an expression beginning the operand, parse it,
5271          assuming displacement_string_start and
5272          displacement_string_end are meaningful.  */
5273       if (displacement_string_start != displacement_string_end)
5274         {
5275           if (!i386_displacement (displacement_string_start,
5276                                   displacement_string_end))
5277             return 0;
5278         }
5279
5280       /* Special case for (%dx) while doing input/output op.  */
5281       if (i.base_reg
5282           && i.base_reg->reg_type == (Reg16 | InOutPortReg)
5283           && i.index_reg == 0
5284           && i.log2_scale_factor == 0
5285           && i.seg[i.mem_operands] == 0
5286           && (i.types[this_operand] & Disp) == 0)
5287         {
5288           i.types[this_operand] = InOutPortReg;
5289           return 1;
5290         }
5291
5292       if (i386_index_check (operand_string) == 0)
5293         return 0;
5294       i.mem_operands++;
5295     }
5296   else
5297     {
5298       /* It's not a memory operand; argh!  */
5299       as_bad (_("invalid char %s beginning operand %d `%s'"),
5300               output_invalid (*op_string),
5301               this_operand + 1,
5302               op_string);
5303       return 0;
5304     }
5305   return 1;                     /* Normal return.  */
5306 }
5307 \f
5308 /* md_estimate_size_before_relax()
5309
5310    Called just before relax() for rs_machine_dependent frags.  The x86
5311    assembler uses these frags to handle variable size jump
5312    instructions.
5313
5314    Any symbol that is now undefined will not become defined.
5315    Return the correct fr_subtype in the frag.
5316    Return the initial "guess for variable size of frag" to caller.
5317    The guess is actually the growth beyond the fixed part.  Whatever
5318    we do to grow the fixed or variable part contributes to our
5319    returned value.  */
5320
5321 int
5322 md_estimate_size_before_relax (fragP, segment)
5323      fragS *fragP;
5324      segT segment;
5325 {
5326   /* We've already got fragP->fr_subtype right;  all we have to do is
5327      check for un-relaxable symbols.  On an ELF system, we can't relax
5328      an externally visible symbol, because it may be overridden by a
5329      shared library.  */
5330   if (S_GET_SEGMENT (fragP->fr_symbol) != segment
5331 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
5332       || (IS_ELF
5333           && (S_IS_EXTERNAL (fragP->fr_symbol)
5334               || S_IS_WEAK (fragP->fr_symbol)))
5335 #endif
5336       )
5337     {
5338       /* Symbol is undefined in this segment, or we need to keep a
5339          reloc so that weak symbols can be overridden.  */
5340       int size = (fragP->fr_subtype & CODE16) ? 2 : 4;
5341       enum bfd_reloc_code_real reloc_type;
5342       unsigned char *opcode;
5343       int old_fr_fix;
5344
5345       if (fragP->fr_var != NO_RELOC)
5346         reloc_type = fragP->fr_var;
5347       else if (size == 2)
5348         reloc_type = BFD_RELOC_16_PCREL;
5349       else
5350         reloc_type = BFD_RELOC_32_PCREL;
5351
5352       old_fr_fix = fragP->fr_fix;
5353       opcode = (unsigned char *) fragP->fr_opcode;
5354
5355       switch (TYPE_FROM_RELAX_STATE (fragP->fr_subtype))
5356         {
5357         case UNCOND_JUMP:
5358           /* Make jmp (0xeb) a (d)word displacement jump.  */
5359           opcode[0] = 0xe9;
5360           fragP->fr_fix += size;
5361           fix_new (fragP, old_fr_fix, size,
5362                    fragP->fr_symbol,
5363                    fragP->fr_offset, 1,
5364                    reloc_type);
5365           break;
5366
5367         case COND_JUMP86:
5368           if (size == 2
5369               && (!no_cond_jump_promotion || fragP->fr_var != NO_RELOC))
5370             {
5371               /* Negate the condition, and branch past an
5372                  unconditional jump.  */
5373               opcode[0] ^= 1;
5374               opcode[1] = 3;
5375               /* Insert an unconditional jump.  */
5376               opcode[2] = 0xe9;
5377               /* We added two extra opcode bytes, and have a two byte
5378                  offset.  */
5379               fragP->fr_fix += 2 + 2;
5380               fix_new (fragP, old_fr_fix + 2, 2,
5381                        fragP->fr_symbol,
5382                        fragP->fr_offset, 1,
5383                        reloc_type);
5384               break;
5385             }
5386           /* Fall through.  */
5387
5388         case COND_JUMP:
5389           if (no_cond_jump_promotion && fragP->fr_var == NO_RELOC)
5390             {
5391               fixS *fixP;
5392
5393               fragP->fr_fix += 1;
5394               fixP = fix_new (fragP, old_fr_fix, 1,
5395                               fragP->fr_symbol,
5396                               fragP->fr_offset, 1,
5397                               BFD_RELOC_8_PCREL);
5398               fixP->fx_signed = 1;
5399               break;
5400             }
5401
5402           /* This changes the byte-displacement jump 0x7N
5403              to the (d)word-displacement jump 0x0f,0x8N.  */
5404           opcode[1] = opcode[0] + 0x10;
5405           opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
5406           /* We've added an opcode byte.  */
5407           fragP->fr_fix += 1 + size;
5408           fix_new (fragP, old_fr_fix + 1, size,
5409                    fragP->fr_symbol,
5410                    fragP->fr_offset, 1,
5411                    reloc_type);
5412           break;
5413
5414         default:
5415           BAD_CASE (fragP->fr_subtype);
5416           break;
5417         }
5418       frag_wane (fragP);
5419       return fragP->fr_fix - old_fr_fix;
5420     }
5421
5422   /* Guess size depending on current relax state.  Initially the relax
5423      state will correspond to a short jump and we return 1, because
5424      the variable part of the frag (the branch offset) is one byte
5425      long.  However, we can relax a section more than once and in that
5426      case we must either set fr_subtype back to the unrelaxed state,
5427      or return the value for the appropriate branch.  */
5428   return md_relax_table[fragP->fr_subtype].rlx_length;
5429 }
5430
5431 /* Called after relax() is finished.
5432
5433    In:  Address of frag.
5434         fr_type == rs_machine_dependent.
5435         fr_subtype is what the address relaxed to.
5436
5437    Out: Any fixSs and constants are set up.
5438         Caller will turn frag into a ".space 0".  */
5439
5440 void
5441 md_convert_frag (abfd, sec, fragP)
5442      bfd *abfd ATTRIBUTE_UNUSED;
5443      segT sec ATTRIBUTE_UNUSED;
5444      fragS *fragP;
5445 {
5446   unsigned char *opcode;
5447   unsigned char *where_to_put_displacement = NULL;
5448   offsetT target_address;
5449   offsetT opcode_address;
5450   unsigned int extension = 0;
5451   offsetT displacement_from_opcode_start;
5452
5453   opcode = (unsigned char *) fragP->fr_opcode;
5454
5455   /* Address we want to reach in file space.  */
5456   target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
5457
5458   /* Address opcode resides at in file space.  */
5459   opcode_address = fragP->fr_address + fragP->fr_fix;
5460
5461   /* Displacement from opcode start to fill into instruction.  */
5462   displacement_from_opcode_start = target_address - opcode_address;
5463
5464   if ((fragP->fr_subtype & BIG) == 0)
5465     {
5466       /* Don't have to change opcode.  */
5467       extension = 1;            /* 1 opcode + 1 displacement  */
5468       where_to_put_displacement = &opcode[1];
5469     }
5470   else
5471     {
5472       if (no_cond_jump_promotion
5473           && TYPE_FROM_RELAX_STATE (fragP->fr_subtype) != UNCOND_JUMP)
5474         as_warn_where (fragP->fr_file, fragP->fr_line,
5475                        _("long jump required"));
5476
5477       switch (fragP->fr_subtype)
5478         {
5479         case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG):
5480           extension = 4;                /* 1 opcode + 4 displacement  */
5481           opcode[0] = 0xe9;
5482           where_to_put_displacement = &opcode[1];
5483           break;
5484
5485         case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16):
5486           extension = 2;                /* 1 opcode + 2 displacement  */
5487           opcode[0] = 0xe9;
5488           where_to_put_displacement = &opcode[1];
5489           break;
5490
5491         case ENCODE_RELAX_STATE (COND_JUMP, BIG):
5492         case ENCODE_RELAX_STATE (COND_JUMP86, BIG):
5493           extension = 5;                /* 2 opcode + 4 displacement  */
5494           opcode[1] = opcode[0] + 0x10;
5495           opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
5496           where_to_put_displacement = &opcode[2];
5497           break;
5498
5499         case ENCODE_RELAX_STATE (COND_JUMP, BIG16):
5500           extension = 3;                /* 2 opcode + 2 displacement  */
5501           opcode[1] = opcode[0] + 0x10;
5502           opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
5503           where_to_put_displacement = &opcode[2];
5504           break;
5505
5506         case ENCODE_RELAX_STATE (COND_JUMP86, BIG16):
5507           extension = 4;
5508           opcode[0] ^= 1;
5509           opcode[1] = 3;
5510           opcode[2] = 0xe9;
5511           where_to_put_displacement = &opcode[3];
5512           break;
5513
5514         default:
5515           BAD_CASE (fragP->fr_subtype);
5516           break;
5517         }
5518     }
5519
5520   /* If size if less then four we are sure that the operand fits,
5521      but if it's 4, then it could be that the displacement is larger
5522      then -/+ 2GB.  */
5523   if (DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype) == 4
5524       && object_64bit
5525       && ((addressT) (displacement_from_opcode_start - extension
5526                       + ((addressT) 1 << 31))
5527           > (((addressT) 2 << 31) - 1)))
5528     {
5529       as_bad_where (fragP->fr_file, fragP->fr_line,
5530                     _("jump target out of range"));
5531       /* Make us emit 0.  */
5532       displacement_from_opcode_start = extension;
5533     }
5534   /* Now put displacement after opcode.  */
5535   md_number_to_chars ((char *) where_to_put_displacement,
5536                       (valueT) (displacement_from_opcode_start - extension),
5537                       DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
5538   fragP->fr_fix += extension;
5539 }
5540 \f
5541 /* Size of byte displacement jmp.  */
5542 int md_short_jump_size = 2;
5543
5544 /* Size of dword displacement jmp.  */
5545 int md_long_jump_size = 5;
5546
5547 void
5548 md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol)
5549      char *ptr;
5550      addressT from_addr, to_addr;
5551      fragS *frag ATTRIBUTE_UNUSED;
5552      symbolS *to_symbol ATTRIBUTE_UNUSED;
5553 {
5554   offsetT offset;
5555
5556   offset = to_addr - (from_addr + 2);
5557   /* Opcode for byte-disp jump.  */
5558   md_number_to_chars (ptr, (valueT) 0xeb, 1);
5559   md_number_to_chars (ptr + 1, (valueT) offset, 1);
5560 }
5561
5562 void
5563 md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
5564      char *ptr;
5565      addressT from_addr, to_addr;
5566      fragS *frag ATTRIBUTE_UNUSED;
5567      symbolS *to_symbol ATTRIBUTE_UNUSED;
5568 {
5569   offsetT offset;
5570
5571   offset = to_addr - (from_addr + 5);
5572   md_number_to_chars (ptr, (valueT) 0xe9, 1);
5573   md_number_to_chars (ptr + 1, (valueT) offset, 4);
5574 }
5575 \f
5576 /* Apply a fixup (fixS) to segment data, once it has been determined
5577    by our caller that we have all the info we need to fix it up.
5578
5579    On the 386, immediates, displacements, and data pointers are all in
5580    the same (little-endian) format, so we don't need to care about which
5581    we are handling.  */
5582
5583 void
5584 md_apply_fix (fixP, valP, seg)
5585      /* The fix we're to put in.  */
5586      fixS *fixP;
5587      /* Pointer to the value of the bits.  */
5588      valueT *valP;
5589      /* Segment fix is from.  */
5590      segT seg ATTRIBUTE_UNUSED;
5591 {
5592   char *p = fixP->fx_where + fixP->fx_frag->fr_literal;
5593   valueT value = *valP;
5594
5595 #if !defined (TE_Mach)
5596   if (fixP->fx_pcrel)
5597     {
5598       switch (fixP->fx_r_type)
5599         {
5600         default:
5601           break;
5602
5603         case BFD_RELOC_64:
5604           fixP->fx_r_type = BFD_RELOC_64_PCREL;
5605           break;
5606         case BFD_RELOC_32:
5607         case BFD_RELOC_X86_64_32S:
5608           fixP->fx_r_type = BFD_RELOC_32_PCREL;
5609           break;
5610         case BFD_RELOC_16:
5611           fixP->fx_r_type = BFD_RELOC_16_PCREL;
5612           break;
5613         case BFD_RELOC_8:
5614           fixP->fx_r_type = BFD_RELOC_8_PCREL;
5615           break;
5616         }
5617     }
5618
5619   if (fixP->fx_addsy != NULL
5620       && (fixP->fx_r_type == BFD_RELOC_32_PCREL
5621           || fixP->fx_r_type == BFD_RELOC_64_PCREL
5622           || fixP->fx_r_type == BFD_RELOC_16_PCREL
5623           || fixP->fx_r_type == BFD_RELOC_8_PCREL)
5624       && !use_rela_relocations)
5625     {
5626       /* This is a hack.  There should be a better way to handle this.
5627          This covers for the fact that bfd_install_relocation will
5628          subtract the current location (for partial_inplace, PC relative
5629          relocations); see more below.  */
5630 #ifndef OBJ_AOUT
5631       if (IS_ELF
5632 #ifdef TE_PE
5633           || OUTPUT_FLAVOR == bfd_target_coff_flavour
5634 #endif
5635           )
5636         value += fixP->fx_where + fixP->fx_frag->fr_address;
5637 #endif
5638 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
5639       if (IS_ELF)
5640         {
5641           segT sym_seg = S_GET_SEGMENT (fixP->fx_addsy);
5642
5643           if ((sym_seg == seg
5644                || (symbol_section_p (fixP->fx_addsy)
5645                    && sym_seg != absolute_section))
5646               && !generic_force_reloc (fixP))
5647             {
5648               /* Yes, we add the values in twice.  This is because
5649                  bfd_install_relocation subtracts them out again.  I think
5650                  bfd_install_relocation is broken, but I don't dare change
5651                  it.  FIXME.  */
5652               value += fixP->fx_where + fixP->fx_frag->fr_address;
5653             }
5654         }
5655 #endif
5656 #if defined (OBJ_COFF) && defined (TE_PE)
5657       /* For some reason, the PE format does not store a
5658          section address offset for a PC relative symbol.  */
5659       if (S_GET_SEGMENT (fixP->fx_addsy) != seg
5660           || S_IS_WEAK (fixP->fx_addsy))
5661         value += md_pcrel_from (fixP);
5662 #endif
5663     }
5664
5665   /* Fix a few things - the dynamic linker expects certain values here,
5666      and we must not disappoint it.  */
5667 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
5668   if (IS_ELF && fixP->fx_addsy)
5669     switch (fixP->fx_r_type)
5670       {
5671       case BFD_RELOC_386_PLT32:
5672       case BFD_RELOC_X86_64_PLT32:
5673         /* Make the jump instruction point to the address of the operand.  At
5674            runtime we merely add the offset to the actual PLT entry.  */
5675         value = -4;
5676         break;
5677
5678       case BFD_RELOC_386_TLS_GD:
5679       case BFD_RELOC_386_TLS_LDM:
5680       case BFD_RELOC_386_TLS_IE_32:
5681       case BFD_RELOC_386_TLS_IE:
5682       case BFD_RELOC_386_TLS_GOTIE:
5683       case BFD_RELOC_386_TLS_GOTDESC:
5684       case BFD_RELOC_X86_64_TLSGD:
5685       case BFD_RELOC_X86_64_TLSLD:
5686       case BFD_RELOC_X86_64_GOTTPOFF:
5687       case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
5688         value = 0; /* Fully resolved at runtime.  No addend.  */
5689         /* Fallthrough */
5690       case BFD_RELOC_386_TLS_LE:
5691       case BFD_RELOC_386_TLS_LDO_32:
5692       case BFD_RELOC_386_TLS_LE_32:
5693       case BFD_RELOC_X86_64_DTPOFF32:
5694       case BFD_RELOC_X86_64_DTPOFF64:
5695       case BFD_RELOC_X86_64_TPOFF32:
5696       case BFD_RELOC_X86_64_TPOFF64:
5697         S_SET_THREAD_LOCAL (fixP->fx_addsy);
5698         break;
5699
5700       case BFD_RELOC_386_TLS_DESC_CALL:
5701       case BFD_RELOC_X86_64_TLSDESC_CALL:
5702         value = 0; /* Fully resolved at runtime.  No addend.  */
5703         S_SET_THREAD_LOCAL (fixP->fx_addsy);
5704         fixP->fx_done = 0;
5705         return;
5706
5707       case BFD_RELOC_386_GOT32:
5708       case BFD_RELOC_X86_64_GOT32:
5709         value = 0; /* Fully resolved at runtime.  No addend.  */
5710         break;
5711
5712       case BFD_RELOC_VTABLE_INHERIT:
5713       case BFD_RELOC_VTABLE_ENTRY:
5714         fixP->fx_done = 0;
5715         return;
5716
5717       default:
5718         break;
5719       }
5720 #endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)  */
5721   *valP = value;
5722 #endif /* !defined (TE_Mach)  */
5723
5724   /* Are we finished with this relocation now?  */
5725   if (fixP->fx_addsy == NULL)
5726     fixP->fx_done = 1;
5727   else if (use_rela_relocations)
5728     {
5729       fixP->fx_no_overflow = 1;
5730       /* Remember value for tc_gen_reloc.  */
5731       fixP->fx_addnumber = value;
5732       value = 0;
5733     }
5734
5735   md_number_to_chars (p, value, fixP->fx_size);
5736 }
5737 \f
5738 #define MAX_LITTLENUMS 6
5739
5740 /* Turn the string pointed to by litP into a floating point constant
5741    of type TYPE, and emit the appropriate bytes.  The number of
5742    LITTLENUMS emitted is stored in *SIZEP.  An error message is
5743    returned, or NULL on OK.  */
5744
5745 char *
5746 md_atof (type, litP, sizeP)
5747      int type;
5748      char *litP;
5749      int *sizeP;
5750 {
5751   int prec;
5752   LITTLENUM_TYPE words[MAX_LITTLENUMS];
5753   LITTLENUM_TYPE *wordP;
5754   char *t;
5755
5756   switch (type)
5757     {
5758     case 'f':
5759     case 'F':
5760       prec = 2;
5761       break;
5762
5763     case 'd':
5764     case 'D':
5765       prec = 4;
5766       break;
5767
5768     case 'x':
5769     case 'X':
5770       prec = 5;
5771       break;
5772
5773     default:
5774       *sizeP = 0;
5775       return _("Bad call to md_atof ()");
5776     }
5777   t = atof_ieee (input_line_pointer, type, words);
5778   if (t)
5779     input_line_pointer = t;
5780
5781   *sizeP = prec * sizeof (LITTLENUM_TYPE);
5782   /* This loops outputs the LITTLENUMs in REVERSE order; in accord with
5783      the bigendian 386.  */
5784   for (wordP = words + prec - 1; prec--;)
5785     {
5786       md_number_to_chars (litP, (valueT) (*wordP--), sizeof (LITTLENUM_TYPE));
5787       litP += sizeof (LITTLENUM_TYPE);
5788     }
5789   return 0;
5790 }
5791 \f
5792 static char output_invalid_buf[sizeof (unsigned char) * 2 + 6];
5793
5794 static char *
5795 output_invalid (int c)
5796 {
5797   if (ISPRINT (c))
5798     snprintf (output_invalid_buf, sizeof (output_invalid_buf),
5799               "'%c'", c);
5800   else
5801     snprintf (output_invalid_buf, sizeof (output_invalid_buf),
5802               "(0x%x)", (unsigned char) c);
5803   return output_invalid_buf;
5804 }
5805
5806 /* REG_STRING starts *before* REGISTER_PREFIX.  */
5807
5808 static const reg_entry *
5809 parse_real_register (char *reg_string, char **end_op)
5810 {
5811   char *s = reg_string;
5812   char *p;
5813   char reg_name_given[MAX_REG_NAME_SIZE + 1];
5814   const reg_entry *r;
5815
5816   /* Skip possible REGISTER_PREFIX and possible whitespace.  */
5817   if (*s == REGISTER_PREFIX)
5818     ++s;
5819
5820   if (is_space_char (*s))
5821     ++s;
5822
5823   p = reg_name_given;
5824   while ((*p++ = register_chars[(unsigned char) *s]) != '\0')
5825     {
5826       if (p >= reg_name_given + MAX_REG_NAME_SIZE)
5827         return (const reg_entry *) NULL;
5828       s++;
5829     }
5830
5831   /* For naked regs, make sure that we are not dealing with an identifier.
5832      This prevents confusing an identifier like `eax_var' with register
5833      `eax'.  */
5834   if (allow_naked_reg && identifier_chars[(unsigned char) *s])
5835     return (const reg_entry *) NULL;
5836
5837   *end_op = s;
5838
5839   r = (const reg_entry *) hash_find (reg_hash, reg_name_given);
5840
5841   /* Handle floating point regs, allowing spaces in the (i) part.  */
5842   if (r == i386_regtab /* %st is first entry of table  */)
5843     {
5844       if (is_space_char (*s))
5845         ++s;
5846       if (*s == '(')
5847         {
5848           ++s;
5849           if (is_space_char (*s))
5850             ++s;
5851           if (*s >= '0' && *s <= '7')
5852             {
5853               int fpr = *s - '0';
5854               ++s;
5855               if (is_space_char (*s))
5856                 ++s;
5857               if (*s == ')')
5858                 {
5859                   *end_op = s + 1;
5860                   r = hash_find (reg_hash, "st(0)");
5861                   know (r);
5862                   return r + fpr;
5863                 }
5864             }
5865           /* We have "%st(" then garbage.  */
5866           return (const reg_entry *) NULL;
5867         }
5868     }
5869
5870   if (r != NULL
5871       && ((r->reg_flags & (RegRex64 | RegRex)) | (r->reg_type & Reg64)) != 0
5872       && (r->reg_type != Control || !(cpu_arch_flags & CpuSledgehammer))
5873       && flag_code != CODE_64BIT)
5874     return (const reg_entry *) NULL;
5875
5876   return r;
5877 }
5878
5879 /* REG_STRING starts *before* REGISTER_PREFIX.  */
5880
5881 static const reg_entry *
5882 parse_register (char *reg_string, char **end_op)
5883 {
5884   const reg_entry *r;
5885
5886   if (*reg_string == REGISTER_PREFIX || allow_naked_reg)
5887     r = parse_real_register (reg_string, end_op);
5888   else
5889     r = NULL;
5890   if (!r)
5891     {
5892       char *save = input_line_pointer;
5893       char c;
5894       symbolS *symbolP;
5895
5896       input_line_pointer = reg_string;
5897       c = get_symbol_end ();
5898       symbolP = symbol_find (reg_string);
5899       if (symbolP && S_GET_SEGMENT (symbolP) == reg_section)
5900         {
5901           const expressionS *e = symbol_get_value_expression (symbolP);
5902
5903           know (e->X_op == O_register);
5904           know (e->X_add_number >= 0
5905                 && (valueT) e->X_add_number < i386_regtab_size);
5906           r = i386_regtab + e->X_add_number;
5907           *end_op = input_line_pointer;
5908         }
5909       *input_line_pointer = c;
5910       input_line_pointer = save;
5911     }
5912   return r;
5913 }
5914
5915 int
5916 i386_parse_name (char *name, expressionS *e, char *nextcharP)
5917 {
5918   const reg_entry *r;
5919   char *end = input_line_pointer;
5920
5921   *end = *nextcharP;
5922   r = parse_register (name, &input_line_pointer);
5923   if (r && end <= input_line_pointer)
5924     {
5925       *nextcharP = *input_line_pointer;
5926       *input_line_pointer = 0;
5927       e->X_op = O_register;
5928       e->X_add_number = r - i386_regtab;
5929       return 1;
5930     }
5931   input_line_pointer = end;
5932   *end = 0;
5933   return 0;
5934 }
5935
5936 void
5937 md_operand (expressionS *e)
5938 {
5939   if (*input_line_pointer == REGISTER_PREFIX)
5940     {
5941       char *end;
5942       const reg_entry *r = parse_real_register (input_line_pointer, &end);
5943
5944       if (r)
5945         {
5946           e->X_op = O_register;
5947           e->X_add_number = r - i386_regtab;
5948           input_line_pointer = end;
5949         }
5950     }
5951 }
5952
5953 \f
5954 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
5955 const char *md_shortopts = "kVQ:sqn";
5956 #else
5957 const char *md_shortopts = "qn";
5958 #endif
5959
5960 #define OPTION_32 (OPTION_MD_BASE + 0)
5961 #define OPTION_64 (OPTION_MD_BASE + 1)
5962 #define OPTION_DIVIDE (OPTION_MD_BASE + 2)
5963 #define OPTION_MARCH (OPTION_MD_BASE + 3)
5964 #define OPTION_MTUNE (OPTION_MD_BASE + 4)
5965
5966 struct option md_longopts[] =
5967 {
5968   {"32", no_argument, NULL, OPTION_32},
5969 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined(TE_PEP)
5970   {"64", no_argument, NULL, OPTION_64},
5971 #endif
5972   {"divide", no_argument, NULL, OPTION_DIVIDE},
5973   {"march", required_argument, NULL, OPTION_MARCH},
5974   {"mtune", required_argument, NULL, OPTION_MTUNE},
5975   {NULL, no_argument, NULL, 0}
5976 };
5977 size_t md_longopts_size = sizeof (md_longopts);
5978
5979 int
5980 md_parse_option (int c, char *arg)
5981 {
5982   unsigned int i;
5983
5984   switch (c)
5985     {
5986     case 'n':
5987       optimize_align_code = 0;
5988       break;
5989
5990     case 'q':
5991       quiet_warnings = 1;
5992       break;
5993
5994 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
5995       /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
5996          should be emitted or not.  FIXME: Not implemented.  */
5997     case 'Q':
5998       break;
5999
6000       /* -V: SVR4 argument to print version ID.  */
6001     case 'V':
6002       print_version_id ();
6003       break;
6004
6005       /* -k: Ignore for FreeBSD compatibility.  */
6006     case 'k':
6007       break;
6008
6009     case 's':
6010       /* -s: On i386 Solaris, this tells the native assembler to use
6011          .stab instead of .stab.excl.  We always use .stab anyhow.  */
6012       break;
6013 #endif
6014 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined(TE_PEP)
6015     case OPTION_64:
6016       {
6017         const char **list, **l;
6018
6019         list = bfd_target_list ();
6020         for (l = list; *l != NULL; l++)
6021           if (CONST_STRNEQ (*l, "elf64-x86-64")
6022               || strcmp (*l, "coff-x86-64") == 0
6023               || strcmp (*l, "pe-x86-64") == 0
6024               || strcmp (*l, "pei-x86-64") == 0)
6025             {
6026               default_arch = "x86_64";
6027               break;
6028             }
6029         if (*l == NULL)
6030           as_fatal (_("No compiled in support for x86_64"));
6031         free (list);
6032       }
6033       break;
6034 #endif
6035
6036     case OPTION_32:
6037       default_arch = "i386";
6038       break;
6039
6040     case OPTION_DIVIDE:
6041 #ifdef SVR4_COMMENT_CHARS
6042       {
6043         char *n, *t;
6044         const char *s;
6045
6046         n = (char *) xmalloc (strlen (i386_comment_chars) + 1);
6047         t = n;
6048         for (s = i386_comment_chars; *s != '\0'; s++)
6049           if (*s != '/')
6050             *t++ = *s;
6051         *t = '\0';
6052         i386_comment_chars = n;
6053       }
6054 #endif
6055       break;
6056
6057     case OPTION_MARCH:
6058       if (*arg == '.')
6059         as_fatal (_("Invalid -march= option: `%s'"), arg);
6060       for (i = 0; i < ARRAY_SIZE (cpu_arch); i++)
6061         {
6062           if (strcmp (arg, cpu_arch [i].name) == 0)
6063             {
6064               cpu_arch_isa = cpu_arch[i].type;
6065               cpu_arch_isa_flags = cpu_arch[i].flags;
6066               if (!cpu_arch_tune_set)
6067                 {
6068                   cpu_arch_tune = cpu_arch_isa;
6069                   cpu_arch_tune_flags = cpu_arch_isa_flags;
6070                 }
6071               break;
6072             }
6073         }
6074       if (i >= ARRAY_SIZE (cpu_arch))
6075         as_fatal (_("Invalid -march= option: `%s'"), arg);
6076       break;
6077
6078     case OPTION_MTUNE:
6079       if (*arg == '.')
6080         as_fatal (_("Invalid -mtune= option: `%s'"), arg);
6081       for (i = 0; i < ARRAY_SIZE (cpu_arch); i++)
6082         {
6083           if (strcmp (arg, cpu_arch [i].name) == 0)
6084             {
6085               cpu_arch_tune_set = 1;
6086               cpu_arch_tune = cpu_arch [i].type;
6087               cpu_arch_tune_flags = cpu_arch[i].flags;
6088               break;
6089             }
6090         }
6091       if (i >= ARRAY_SIZE (cpu_arch))
6092         as_fatal (_("Invalid -mtune= option: `%s'"), arg);
6093       break;
6094
6095     default:
6096       return 0;
6097     }
6098   return 1;
6099 }
6100
6101 void
6102 md_show_usage (stream)
6103      FILE *stream;
6104 {
6105 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
6106   fprintf (stream, _("\
6107   -Q                      ignored\n\
6108   -V                      print assembler version number\n\
6109   -k                      ignored\n"));
6110 #endif
6111   fprintf (stream, _("\
6112   -n                      Do not optimize code alignment\n\
6113   -q                      quieten some warnings\n"));
6114 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
6115   fprintf (stream, _("\
6116   -s                      ignored\n"));
6117 #endif
6118 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined(TE_PEP)
6119   fprintf (stream, _("\
6120   --32/--64               generate 32bit/64bit code\n"));
6121 #endif
6122 #ifdef SVR4_COMMENT_CHARS
6123   fprintf (stream, _("\
6124   --divide                do not treat `/' as a comment character\n"));
6125 #else
6126   fprintf (stream, _("\
6127   --divide                ignored\n"));
6128 #endif
6129   fprintf (stream, _("\
6130   -march=CPU/-mtune=CPU   generate code/optimize for CPU, where CPU is one of:\n\
6131                            i386, i486, pentium, pentiumpro, pentium4, nocona,\n\
6132                            core, core2, k6, athlon, k8, generic32, generic64\n"));
6133
6134 }
6135
6136 #if defined(TE_PEP)
6137 const char *
6138 x86_64_target_format (void)
6139 {
6140   if (strcmp (default_arch, "x86_64") == 0)
6141     {
6142       set_code_flag (CODE_64BIT);
6143       return COFF_TARGET_FORMAT;
6144     }
6145   else if (strcmp (default_arch, "i386") == 0)
6146     {
6147       set_code_flag (CODE_32BIT);
6148       return "coff-i386";
6149     }
6150
6151   as_fatal (_("Unknown architecture"));
6152   return NULL;
6153 }
6154 #endif
6155
6156 #if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
6157      || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF))
6158
6159 /* Pick the target format to use.  */
6160
6161 const char *
6162 i386_target_format (void)
6163 {
6164   if (!strcmp (default_arch, "x86_64"))
6165     {
6166       set_code_flag (CODE_64BIT);
6167       if (cpu_arch_isa_flags == 0)
6168         cpu_arch_isa_flags = Cpu186|Cpu286|Cpu386|Cpu486
6169                              |Cpu586|Cpu686|CpuP4|CpuMMX|CpuMMX2
6170                              |CpuSSE|CpuSSE2;
6171       if (cpu_arch_tune_flags == 0)
6172         cpu_arch_tune_flags = Cpu186|Cpu286|Cpu386|Cpu486
6173                               |Cpu586|Cpu686|CpuP4|CpuMMX|CpuMMX2
6174                               |CpuSSE|CpuSSE2;
6175     }
6176   else if (!strcmp (default_arch, "i386"))
6177     {
6178       set_code_flag (CODE_32BIT);
6179       if (cpu_arch_isa_flags == 0)
6180         cpu_arch_isa_flags = Cpu186|Cpu286|Cpu386;
6181       if (cpu_arch_tune_flags == 0)
6182         cpu_arch_tune_flags = Cpu186|Cpu286|Cpu386;
6183     }
6184   else
6185     as_fatal (_("Unknown architecture"));
6186   switch (OUTPUT_FLAVOR)
6187     {
6188 #ifdef OBJ_MAYBE_AOUT
6189     case bfd_target_aout_flavour:
6190       return AOUT_TARGET_FORMAT;
6191 #endif
6192 #ifdef OBJ_MAYBE_COFF
6193     case bfd_target_coff_flavour:
6194       return "coff-i386";
6195 #endif
6196 #if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
6197     case bfd_target_elf_flavour:
6198       {
6199         if (flag_code == CODE_64BIT)
6200           {
6201             object_64bit = 1;
6202             use_rela_relocations = 1;
6203           }
6204         return flag_code == CODE_64BIT ? ELF_TARGET_FORMAT64 : ELF_TARGET_FORMAT;
6205       }
6206 #endif
6207     default:
6208       abort ();
6209       return NULL;
6210     }
6211 }
6212
6213 #endif /* OBJ_MAYBE_ more than one  */
6214
6215 #if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF))
6216 void
6217 i386_elf_emit_arch_note (void)
6218 {
6219   if (IS_ELF && cpu_arch_name != NULL)
6220     {
6221       char *p;
6222       asection *seg = now_seg;
6223       subsegT subseg = now_subseg;
6224       Elf_Internal_Note i_note;
6225       Elf_External_Note e_note;
6226       asection *note_secp;
6227       int len;
6228
6229       /* Create the .note section.  */
6230       note_secp = subseg_new (".note", 0);
6231       bfd_set_section_flags (stdoutput,
6232                              note_secp,
6233                              SEC_HAS_CONTENTS | SEC_READONLY);
6234
6235       /* Process the arch string.  */
6236       len = strlen (cpu_arch_name);
6237
6238       i_note.namesz = len + 1;
6239       i_note.descsz = 0;
6240       i_note.type = NT_ARCH;
6241       p = frag_more (sizeof (e_note.namesz));
6242       md_number_to_chars (p, (valueT) i_note.namesz, sizeof (e_note.namesz));
6243       p = frag_more (sizeof (e_note.descsz));
6244       md_number_to_chars (p, (valueT) i_note.descsz, sizeof (e_note.descsz));
6245       p = frag_more (sizeof (e_note.type));
6246       md_number_to_chars (p, (valueT) i_note.type, sizeof (e_note.type));
6247       p = frag_more (len + 1);
6248       strcpy (p, cpu_arch_name);
6249
6250       frag_align (2, 0, 0);
6251
6252       subseg_set (seg, subseg);
6253     }
6254 }
6255 #endif
6256 \f
6257 symbolS *
6258 md_undefined_symbol (name)
6259      char *name;
6260 {
6261   if (name[0] == GLOBAL_OFFSET_TABLE_NAME[0]
6262       && name[1] == GLOBAL_OFFSET_TABLE_NAME[1]
6263       && name[2] == GLOBAL_OFFSET_TABLE_NAME[2]
6264       && strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0)
6265     {
6266       if (!GOT_symbol)
6267         {
6268           if (symbol_find (name))
6269             as_bad (_("GOT already in symbol table"));
6270           GOT_symbol = symbol_new (name, undefined_section,
6271                                    (valueT) 0, &zero_address_frag);
6272         };
6273       return GOT_symbol;
6274     }
6275   return 0;
6276 }
6277
6278 /* Round up a section size to the appropriate boundary.  */
6279
6280 valueT
6281 md_section_align (segment, size)
6282      segT segment ATTRIBUTE_UNUSED;
6283      valueT size;
6284 {
6285 #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
6286   if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
6287     {
6288       /* For a.out, force the section size to be aligned.  If we don't do
6289          this, BFD will align it for us, but it will not write out the
6290          final bytes of the section.  This may be a bug in BFD, but it is
6291          easier to fix it here since that is how the other a.out targets
6292          work.  */
6293       int align;
6294
6295       align = bfd_get_section_alignment (stdoutput, segment);
6296       size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
6297     }
6298 #endif
6299
6300   return size;
6301 }
6302
6303 /* On the i386, PC-relative offsets are relative to the start of the
6304    next instruction.  That is, the address of the offset, plus its
6305    size, since the offset is always the last part of the insn.  */
6306
6307 long
6308 md_pcrel_from (fixS *fixP)
6309 {
6310   return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
6311 }
6312
6313 #ifndef I386COFF
6314
6315 static void
6316 s_bss (int ignore ATTRIBUTE_UNUSED)
6317 {
6318   int temp;
6319
6320 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
6321   if (IS_ELF)
6322     obj_elf_section_change_hook ();
6323 #endif
6324   temp = get_absolute_expression ();
6325   subseg_set (bss_section, (subsegT) temp);
6326   demand_empty_rest_of_line ();
6327 }
6328
6329 #endif
6330
6331 void
6332 i386_validate_fix (fixS *fixp)
6333 {
6334   if (fixp->fx_subsy && fixp->fx_subsy == GOT_symbol)
6335     {
6336       if (fixp->fx_r_type == BFD_RELOC_32_PCREL)
6337         {
6338           if (!object_64bit)
6339             abort ();
6340           fixp->fx_r_type = BFD_RELOC_X86_64_GOTPCREL;
6341         }
6342       else
6343         {
6344           if (!object_64bit)
6345             fixp->fx_r_type = BFD_RELOC_386_GOTOFF;
6346           else
6347             fixp->fx_r_type = BFD_RELOC_X86_64_GOTOFF64;
6348         }
6349       fixp->fx_subsy = 0;
6350     }
6351 }
6352
6353 arelent *
6354 tc_gen_reloc (section, fixp)
6355      asection *section ATTRIBUTE_UNUSED;
6356      fixS *fixp;
6357 {
6358   arelent *rel;
6359   bfd_reloc_code_real_type code;
6360
6361   switch (fixp->fx_r_type)
6362     {
6363     case BFD_RELOC_X86_64_PLT32:
6364     case BFD_RELOC_X86_64_GOT32:
6365     case BFD_RELOC_X86_64_GOTPCREL:
6366     case BFD_RELOC_386_PLT32:
6367     case BFD_RELOC_386_GOT32:
6368     case BFD_RELOC_386_GOTOFF:
6369     case BFD_RELOC_386_GOTPC:
6370     case BFD_RELOC_386_TLS_GD:
6371     case BFD_RELOC_386_TLS_LDM:
6372     case BFD_RELOC_386_TLS_LDO_32:
6373     case BFD_RELOC_386_TLS_IE_32:
6374     case BFD_RELOC_386_TLS_IE:
6375     case BFD_RELOC_386_TLS_GOTIE:
6376     case BFD_RELOC_386_TLS_LE_32:
6377     case BFD_RELOC_386_TLS_LE:
6378     case BFD_RELOC_386_TLS_GOTDESC:
6379     case BFD_RELOC_386_TLS_DESC_CALL:
6380     case BFD_RELOC_X86_64_TLSGD:
6381     case BFD_RELOC_X86_64_TLSLD:
6382     case BFD_RELOC_X86_64_DTPOFF32:
6383     case BFD_RELOC_X86_64_DTPOFF64:
6384     case BFD_RELOC_X86_64_GOTTPOFF:
6385     case BFD_RELOC_X86_64_TPOFF32:
6386     case BFD_RELOC_X86_64_TPOFF64:
6387     case BFD_RELOC_X86_64_GOTOFF64:
6388     case BFD_RELOC_X86_64_GOTPC32:
6389     case BFD_RELOC_X86_64_GOT64:
6390     case BFD_RELOC_X86_64_GOTPCREL64:
6391     case BFD_RELOC_X86_64_GOTPC64:
6392     case BFD_RELOC_X86_64_GOTPLT64:
6393     case BFD_RELOC_X86_64_PLTOFF64:
6394     case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
6395     case BFD_RELOC_X86_64_TLSDESC_CALL:
6396     case BFD_RELOC_RVA:
6397     case BFD_RELOC_VTABLE_ENTRY:
6398     case BFD_RELOC_VTABLE_INHERIT:
6399 #ifdef TE_PE
6400     case BFD_RELOC_32_SECREL:
6401 #endif
6402       code = fixp->fx_r_type;
6403       break;
6404     case BFD_RELOC_X86_64_32S:
6405       if (!fixp->fx_pcrel)
6406         {
6407           /* Don't turn BFD_RELOC_X86_64_32S into BFD_RELOC_32.  */
6408           code = fixp->fx_r_type;
6409           break;
6410         }
6411     default:
6412       if (fixp->fx_pcrel)
6413         {
6414           switch (fixp->fx_size)
6415             {
6416             default:
6417               as_bad_where (fixp->fx_file, fixp->fx_line,
6418                             _("can not do %d byte pc-relative relocation"),
6419                             fixp->fx_size);
6420               code = BFD_RELOC_32_PCREL;
6421               break;
6422             case 1: code = BFD_RELOC_8_PCREL;  break;
6423             case 2: code = BFD_RELOC_16_PCREL; break;
6424             case 4: code = BFD_RELOC_32_PCREL; break;
6425 #ifdef BFD64
6426             case 8: code = BFD_RELOC_64_PCREL; break;
6427 #endif
6428             }
6429         }
6430       else
6431         {
6432           switch (fixp->fx_size)
6433             {
6434             default:
6435               as_bad_where (fixp->fx_file, fixp->fx_line,
6436                             _("can not do %d byte relocation"),
6437                             fixp->fx_size);
6438               code = BFD_RELOC_32;
6439               break;
6440             case 1: code = BFD_RELOC_8;  break;
6441             case 2: code = BFD_RELOC_16; break;
6442             case 4: code = BFD_RELOC_32; break;
6443 #ifdef BFD64
6444             case 8: code = BFD_RELOC_64; break;
6445 #endif
6446             }
6447         }
6448       break;
6449     }
6450
6451   if ((code == BFD_RELOC_32
6452        || code == BFD_RELOC_32_PCREL
6453        || code == BFD_RELOC_X86_64_32S)
6454       && GOT_symbol
6455       && fixp->fx_addsy == GOT_symbol)
6456     {
6457       if (!object_64bit)
6458         code = BFD_RELOC_386_GOTPC;
6459       else
6460         code = BFD_RELOC_X86_64_GOTPC32;
6461     }
6462   if ((code == BFD_RELOC_64 || code == BFD_RELOC_64_PCREL)
6463       && GOT_symbol
6464       && fixp->fx_addsy == GOT_symbol)
6465     {
6466       code = BFD_RELOC_X86_64_GOTPC64;
6467     }
6468
6469   rel = (arelent *) xmalloc (sizeof (arelent));
6470   rel->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
6471   *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
6472
6473   rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
6474
6475   if (!use_rela_relocations)
6476     {
6477       /* HACK: Since i386 ELF uses Rel instead of Rela, encode the
6478          vtable entry to be used in the relocation's section offset.  */
6479       if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
6480         rel->address = fixp->fx_offset;
6481
6482       rel->addend = 0;
6483     }
6484   /* Use the rela in 64bit mode.  */
6485   else
6486     {
6487       if (!fixp->fx_pcrel)
6488         rel->addend = fixp->fx_offset;
6489       else
6490         switch (code)
6491           {
6492           case BFD_RELOC_X86_64_PLT32:
6493           case BFD_RELOC_X86_64_GOT32:
6494           case BFD_RELOC_X86_64_GOTPCREL:
6495           case BFD_RELOC_X86_64_TLSGD:
6496           case BFD_RELOC_X86_64_TLSLD:
6497           case BFD_RELOC_X86_64_GOTTPOFF:
6498           case BFD_RELOC_X86_64_GOTPC32_TLSDESC:
6499           case BFD_RELOC_X86_64_TLSDESC_CALL:
6500             rel->addend = fixp->fx_offset - fixp->fx_size;
6501             break;
6502           default:
6503             rel->addend = (section->vma
6504                            - fixp->fx_size
6505                            + fixp->fx_addnumber
6506                            + md_pcrel_from (fixp));
6507             break;
6508           }
6509     }
6510
6511   rel->howto = bfd_reloc_type_lookup (stdoutput, code);
6512   if (rel->howto == NULL)
6513     {
6514       as_bad_where (fixp->fx_file, fixp->fx_line,
6515                     _("cannot represent relocation type %s"),
6516                     bfd_get_reloc_code_name (code));
6517       /* Set howto to a garbage value so that we can keep going.  */
6518       rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
6519       assert (rel->howto != NULL);
6520     }
6521
6522   return rel;
6523 }
6524
6525 \f
6526 /* Parse operands using Intel syntax. This implements a recursive descent
6527    parser based on the BNF grammar published in Appendix B of the MASM 6.1
6528    Programmer's Guide.
6529
6530    FIXME: We do not recognize the full operand grammar defined in the MASM
6531           documentation.  In particular, all the structure/union and
6532           high-level macro operands are missing.
6533
6534    Uppercase words are terminals, lower case words are non-terminals.
6535    Objects surrounded by double brackets '[[' ']]' are optional. Vertical
6536    bars '|' denote choices. Most grammar productions are implemented in
6537    functions called 'intel_<production>'.
6538
6539    Initial production is 'expr'.
6540
6541     addOp               + | -
6542
6543     alpha               [a-zA-Z]
6544
6545     binOp               & | AND | \| | OR | ^ | XOR
6546
6547     byteRegister        AL | AH | BL | BH | CL | CH | DL | DH
6548
6549     constant            digits [[ radixOverride ]]
6550
6551     dataType            BYTE | WORD | DWORD | FWORD | QWORD | TBYTE | OWORD | XMMWORD
6552
6553     digits              decdigit
6554                         | digits decdigit
6555                         | digits hexdigit
6556
6557     decdigit            [0-9]
6558
6559     e04                 e04 addOp e05
6560                         | e05
6561
6562     e05                 e05 binOp e06
6563                         | e06
6564
6565     e06                 e06 mulOp e09
6566                         | e09
6567
6568     e09                 OFFSET e10
6569                         | SHORT e10
6570                         | + e10
6571                         | - e10
6572                         | ~ e10
6573                         | NOT e10
6574                         | e09 PTR e10
6575                         | e09 : e10
6576                         | e10
6577
6578     e10                 e10 [ expr ]
6579                         | e11
6580
6581     e11                 ( expr )
6582                         | [ expr ]
6583                         | constant
6584                         | dataType
6585                         | id
6586                         | $
6587                         | register
6588
6589  => expr                expr cmpOp e04
6590                         | e04
6591
6592     gpRegister          AX | EAX | BX | EBX | CX | ECX | DX | EDX
6593                         | BP | EBP | SP | ESP | DI | EDI | SI | ESI
6594
6595     hexdigit            a | b | c | d | e | f
6596                         | A | B | C | D | E | F
6597
6598     id                  alpha
6599                         | id alpha
6600                         | id decdigit
6601
6602     mulOp               * | / | % | MOD | << | SHL | >> | SHR
6603
6604     quote               " | '
6605
6606     register            specialRegister
6607                         | gpRegister
6608                         | byteRegister
6609
6610     segmentRegister     CS | DS | ES | FS | GS | SS
6611
6612     specialRegister     CR0 | CR2 | CR3 | CR4
6613                         | DR0 | DR1 | DR2 | DR3 | DR6 | DR7
6614                         | TR3 | TR4 | TR5 | TR6 | TR7
6615
6616     We simplify the grammar in obvious places (e.g., register parsing is
6617     done by calling parse_register) and eliminate immediate left recursion
6618     to implement a recursive-descent parser.
6619
6620     expr        e04 expr'
6621
6622     expr'       cmpOp e04 expr'
6623                 | Empty
6624
6625     e04         e05 e04'
6626
6627     e04'        addOp e05 e04'
6628                 | Empty
6629
6630     e05         e06 e05'
6631
6632     e05'        binOp e06 e05'
6633                 | Empty
6634
6635     e06         e09 e06'
6636
6637     e06'        mulOp e09 e06'
6638                 | Empty
6639
6640     e09         OFFSET e10 e09'
6641                 | SHORT e10'
6642                 | + e10'
6643                 | - e10'
6644                 | ~ e10'
6645                 | NOT e10'
6646                 | e10 e09'
6647
6648     e09'        PTR e10 e09'
6649                 | : e10 e09'
6650                 | Empty
6651
6652     e10         e11 e10'
6653
6654     e10'        [ expr ] e10'
6655                 | Empty
6656
6657     e11         ( expr )
6658                 | [ expr ]
6659                 | BYTE
6660                 | WORD
6661                 | DWORD
6662                 | FWORD
6663                 | QWORD
6664                 | TBYTE
6665                 | OWORD
6666                 | XMMWORD
6667                 | .
6668                 | $
6669                 | register
6670                 | id
6671                 | constant  */
6672
6673 /* Parsing structure for the intel syntax parser. Used to implement the
6674    semantic actions for the operand grammar.  */
6675 struct intel_parser_s
6676   {
6677     char *op_string;            /* The string being parsed.  */
6678     int got_a_float;            /* Whether the operand is a float.  */
6679     int op_modifier;            /* Operand modifier.  */
6680     int is_mem;                 /* 1 if operand is memory reference.  */
6681     int in_offset;              /* >=1 if parsing operand of offset.  */
6682     int in_bracket;             /* >=1 if parsing operand in brackets.  */
6683     const reg_entry *reg;       /* Last register reference found.  */
6684     char *disp;                 /* Displacement string being built.  */
6685     char *next_operand;         /* Resume point when splitting operands.  */
6686   };
6687
6688 static struct intel_parser_s intel_parser;
6689
6690 /* Token structure for parsing intel syntax.  */
6691 struct intel_token
6692   {
6693     int code;                   /* Token code.  */
6694     const reg_entry *reg;       /* Register entry for register tokens.  */
6695     char *str;                  /* String representation.  */
6696   };
6697
6698 static struct intel_token cur_token, prev_token;
6699
6700 /* Token codes for the intel parser. Since T_SHORT is already used
6701    by COFF, undefine it first to prevent a warning.  */
6702 #define T_NIL           -1
6703 #define T_CONST         1
6704 #define T_REG           2
6705 #define T_BYTE          3
6706 #define T_WORD          4
6707 #define T_DWORD         5
6708 #define T_FWORD         6
6709 #define T_QWORD         7
6710 #define T_TBYTE         8
6711 #define T_XMMWORD       9
6712 #undef  T_SHORT
6713 #define T_SHORT         10
6714 #define T_OFFSET        11
6715 #define T_PTR           12
6716 #define T_ID            13
6717 #define T_SHL           14
6718 #define T_SHR           15
6719
6720 /* Prototypes for intel parser functions.  */
6721 static int intel_match_token (int);
6722 static void intel_putback_token (void);
6723 static void intel_get_token (void);
6724 static int intel_expr (void);
6725 static int intel_e04 (void);
6726 static int intel_e05 (void);
6727 static int intel_e06 (void);
6728 static int intel_e09 (void);
6729 static int intel_e10 (void);
6730 static int intel_e11 (void);
6731
6732 static int
6733 i386_intel_operand (char *operand_string, int got_a_float)
6734 {
6735   int ret;
6736   char *p;
6737
6738   p = intel_parser.op_string = xstrdup (operand_string);
6739   intel_parser.disp = (char *) xmalloc (strlen (operand_string) + 1);
6740
6741   for (;;)
6742     {
6743       /* Initialize token holders.  */
6744       cur_token.code = prev_token.code = T_NIL;
6745       cur_token.reg = prev_token.reg = NULL;
6746       cur_token.str = prev_token.str = NULL;
6747
6748       /* Initialize parser structure.  */
6749       intel_parser.got_a_float = got_a_float;
6750       intel_parser.op_modifier = 0;
6751       intel_parser.is_mem = 0;
6752       intel_parser.in_offset = 0;
6753       intel_parser.in_bracket = 0;
6754       intel_parser.reg = NULL;
6755       intel_parser.disp[0] = '\0';
6756       intel_parser.next_operand = NULL;
6757
6758       /* Read the first token and start the parser.  */
6759       intel_get_token ();
6760       ret = intel_expr ();
6761
6762       if (!ret)
6763         break;
6764
6765       if (cur_token.code != T_NIL)
6766         {
6767           as_bad (_("invalid operand for '%s' ('%s' unexpected)"),
6768                   current_templates->start->name, cur_token.str);
6769           ret = 0;
6770         }
6771       /* If we found a memory reference, hand it over to i386_displacement
6772          to fill in the rest of the operand fields.  */
6773       else if (intel_parser.is_mem)
6774         {
6775           if ((i.mem_operands == 1
6776                && (current_templates->start->opcode_modifier & IsString) == 0)
6777               || i.mem_operands == 2)
6778             {
6779               as_bad (_("too many memory references for '%s'"),
6780                       current_templates->start->name);
6781               ret = 0;
6782             }
6783           else
6784             {
6785               char *s = intel_parser.disp;
6786               i.mem_operands++;
6787
6788               if (!quiet_warnings && intel_parser.is_mem < 0)
6789                 /* See the comments in intel_bracket_expr.  */
6790                 as_warn (_("Treating `%s' as memory reference"), operand_string);
6791
6792               /* Add the displacement expression.  */
6793               if (*s != '\0')
6794                 ret = i386_displacement (s, s + strlen (s));
6795               if (ret)
6796                 {
6797                   /* Swap base and index in 16-bit memory operands like
6798                      [si+bx]. Since i386_index_check is also used in AT&T
6799                      mode we have to do that here.  */
6800                   if (i.base_reg
6801                       && i.index_reg
6802                       && (i.base_reg->reg_type & Reg16)
6803                       && (i.index_reg->reg_type & Reg16)
6804                       && i.base_reg->reg_num >= 6
6805                       && i.index_reg->reg_num < 6)
6806                     {
6807                       const reg_entry *base = i.index_reg;
6808
6809                       i.index_reg = i.base_reg;
6810                       i.base_reg = base;
6811                     }
6812                   ret = i386_index_check (operand_string);
6813                 }
6814             }
6815         }
6816
6817       /* Constant and OFFSET expressions are handled by i386_immediate.  */
6818       else if ((intel_parser.op_modifier & (1 << T_OFFSET))
6819                || intel_parser.reg == NULL)
6820         ret = i386_immediate (intel_parser.disp);
6821
6822       if (intel_parser.next_operand && this_operand >= MAX_OPERANDS - 1)
6823         ret = 0;
6824       if (!ret || !intel_parser.next_operand)
6825         break;
6826       intel_parser.op_string = intel_parser.next_operand;
6827       this_operand = i.operands++;
6828     }
6829
6830   free (p);
6831   free (intel_parser.disp);
6832
6833   return ret;
6834 }
6835
6836 #define NUM_ADDRESS_REGS (!!i.base_reg + !!i.index_reg)
6837
6838 /* expr e04 expr'
6839
6840    expr'  cmpOp e04 expr'
6841         | Empty  */
6842 static int
6843 intel_expr (void)
6844 {
6845   /* XXX Implement the comparison operators.  */
6846   return intel_e04 ();
6847 }
6848
6849 /* e04  e05 e04'
6850
6851    e04' addOp e05 e04'
6852         | Empty  */
6853 static int
6854 intel_e04 (void)
6855 {
6856   int nregs = -1;
6857
6858   for (;;)
6859     {
6860       if (!intel_e05())
6861         return 0;
6862
6863       if (nregs >= 0 && NUM_ADDRESS_REGS > nregs)
6864         i.base_reg = i386_regtab + REGNAM_AL; /* al is invalid as base */
6865
6866       if (cur_token.code == '+')
6867         nregs = -1;
6868       else if (cur_token.code == '-')
6869         nregs = NUM_ADDRESS_REGS;
6870       else
6871         return 1;
6872
6873       strcat (intel_parser.disp, cur_token.str);
6874       intel_match_token (cur_token.code);
6875     }
6876 }
6877
6878 /* e05  e06 e05'
6879
6880    e05' binOp e06 e05'
6881         | Empty  */
6882 static int
6883 intel_e05 (void)
6884 {
6885   int nregs = ~NUM_ADDRESS_REGS;
6886
6887   for (;;)
6888     {
6889       if (!intel_e06())
6890         return 0;
6891
6892       if (cur_token.code == '&'
6893           || cur_token.code == '|'
6894           || cur_token.code == '^')
6895         {
6896           char str[2];
6897
6898           str[0] = cur_token.code;
6899           str[1] = 0;
6900           strcat (intel_parser.disp, str);
6901         }
6902       else
6903         break;
6904
6905       intel_match_token (cur_token.code);
6906
6907       if (nregs < 0)
6908         nregs = ~nregs;
6909     }
6910   if (nregs >= 0 && NUM_ADDRESS_REGS > nregs)
6911     i.base_reg = i386_regtab + REGNAM_AL + 1; /* cl is invalid as base */
6912   return 1;
6913 }
6914
6915 /* e06  e09 e06'
6916
6917    e06' mulOp e09 e06'
6918         | Empty  */
6919 static int
6920 intel_e06 (void)
6921 {
6922   int nregs = ~NUM_ADDRESS_REGS;
6923
6924   for (;;)
6925     {
6926       if (!intel_e09())
6927         return 0;
6928
6929       if (cur_token.code == '*'
6930           || cur_token.code == '/'
6931           || cur_token.code == '%')
6932         {
6933           char str[2];
6934
6935           str[0] = cur_token.code;
6936           str[1] = 0;
6937           strcat (intel_parser.disp, str);
6938         }
6939       else if (cur_token.code == T_SHL)
6940         strcat (intel_parser.disp, "<<");
6941       else if (cur_token.code == T_SHR)
6942         strcat (intel_parser.disp, ">>");
6943       else
6944         break;
6945
6946       intel_match_token (cur_token.code);
6947
6948       if (nregs < 0)
6949         nregs = ~nregs;
6950     }
6951   if (nregs >= 0 && NUM_ADDRESS_REGS > nregs)
6952     i.base_reg = i386_regtab + REGNAM_AL + 2; /* dl is invalid as base */
6953   return 1;
6954 }
6955
6956 /* e09  OFFSET e09
6957         | SHORT e09
6958         | + e09
6959         | - e09
6960         | ~ e09
6961         | NOT e09
6962         | e10 e09'
6963
6964    e09' PTR e10 e09'
6965         | : e10 e09'
6966         | Empty */
6967 static int
6968 intel_e09 (void)
6969 {
6970   int nregs = ~NUM_ADDRESS_REGS;
6971   int in_offset = 0;
6972
6973   for (;;)
6974     {
6975       /* Don't consume constants here.  */
6976       if (cur_token.code == '+' || cur_token.code == '-')
6977         {
6978           /* Need to look one token ahead - if the next token
6979              is a constant, the current token is its sign.  */
6980           int next_code;
6981
6982           intel_match_token (cur_token.code);
6983           next_code = cur_token.code;
6984           intel_putback_token ();
6985           if (next_code == T_CONST)
6986             break;
6987         }
6988
6989       /* e09  OFFSET e09  */
6990       if (cur_token.code == T_OFFSET)
6991         {
6992           if (!in_offset++)
6993             ++intel_parser.in_offset;
6994         }
6995
6996       /* e09  SHORT e09  */
6997       else if (cur_token.code == T_SHORT)
6998         intel_parser.op_modifier |= 1 << T_SHORT;
6999
7000       /* e09  + e09  */
7001       else if (cur_token.code == '+')
7002         strcat (intel_parser.disp, "+");
7003
7004       /* e09  - e09
7005               | ~ e09
7006               | NOT e09  */
7007       else if (cur_token.code == '-' || cur_token.code == '~')
7008         {
7009           char str[2];
7010
7011           if (nregs < 0)
7012             nregs = ~nregs;
7013           str[0] = cur_token.code;
7014           str[1] = 0;
7015           strcat (intel_parser.disp, str);
7016         }
7017
7018       /* e09  e10 e09'  */
7019       else
7020         break;
7021
7022       intel_match_token (cur_token.code);
7023     }
7024
7025   for (;;)
7026     {
7027       if (!intel_e10 ())
7028         return 0;
7029
7030       /* e09'  PTR e10 e09' */
7031       if (cur_token.code == T_PTR)
7032         {
7033           char suffix;
7034
7035           if (prev_token.code == T_BYTE)
7036             suffix = BYTE_MNEM_SUFFIX;
7037
7038           else if (prev_token.code == T_WORD)
7039             {
7040               if (current_templates->start->name[0] == 'l'
7041                   && current_templates->start->name[2] == 's'
7042                   && current_templates->start->name[3] == 0)
7043                 suffix = BYTE_MNEM_SUFFIX; /* so it will cause an error */
7044               else if (intel_parser.got_a_float == 2)   /* "fi..." */
7045                 suffix = SHORT_MNEM_SUFFIX;
7046               else
7047                 suffix = WORD_MNEM_SUFFIX;
7048             }
7049
7050           else if (prev_token.code == T_DWORD)
7051             {
7052               if (current_templates->start->name[0] == 'l'
7053                   && current_templates->start->name[2] == 's'
7054                   && current_templates->start->name[3] == 0)
7055                 suffix = WORD_MNEM_SUFFIX;
7056               else if (flag_code == CODE_16BIT
7057                        && (current_templates->start->opcode_modifier
7058                            & (Jump | JumpDword)))
7059                 suffix = LONG_DOUBLE_MNEM_SUFFIX;
7060               else if (intel_parser.got_a_float == 1)   /* "f..." */
7061                 suffix = SHORT_MNEM_SUFFIX;
7062               else
7063                 suffix = LONG_MNEM_SUFFIX;
7064             }
7065
7066           else if (prev_token.code == T_FWORD)
7067             {
7068               if (current_templates->start->name[0] == 'l'
7069                   && current_templates->start->name[2] == 's'
7070                   && current_templates->start->name[3] == 0)
7071                 suffix = LONG_MNEM_SUFFIX;
7072               else if (!intel_parser.got_a_float)
7073                 {
7074                   if (flag_code == CODE_16BIT)
7075                     add_prefix (DATA_PREFIX_OPCODE);
7076                   suffix = LONG_DOUBLE_MNEM_SUFFIX;
7077                 }
7078               else
7079                 suffix = BYTE_MNEM_SUFFIX; /* so it will cause an error */
7080             }
7081
7082           else if (prev_token.code == T_QWORD)
7083             {
7084               if (intel_parser.got_a_float == 1)        /* "f..." */
7085                 suffix = LONG_MNEM_SUFFIX;
7086               else
7087                 suffix = QWORD_MNEM_SUFFIX;
7088             }
7089
7090           else if (prev_token.code == T_TBYTE)
7091             {
7092               if (intel_parser.got_a_float == 1)
7093                 suffix = LONG_DOUBLE_MNEM_SUFFIX;
7094               else
7095                 suffix = BYTE_MNEM_SUFFIX; /* so it will cause an error */
7096             }
7097
7098           else if (prev_token.code == T_XMMWORD)
7099             {
7100               /* XXX ignored for now, but accepted since gcc uses it */
7101               suffix = 0;
7102             }
7103
7104           else
7105             {
7106               as_bad (_("Unknown operand modifier `%s'"), prev_token.str);
7107               return 0;
7108             }
7109
7110           /* Operands for jump/call using 'ptr' notation denote absolute
7111              addresses.  */
7112           if (current_templates->start->opcode_modifier & (Jump | JumpDword))
7113             i.types[this_operand] |= JumpAbsolute;
7114
7115           if (current_templates->start->base_opcode == 0x8d /* lea */)
7116             ;
7117           else if (!i.suffix)
7118             i.suffix = suffix;
7119           else if (i.suffix != suffix)
7120             {
7121               as_bad (_("Conflicting operand modifiers"));
7122               return 0;
7123             }
7124
7125         }
7126
7127       /* e09'  : e10 e09'  */
7128       else if (cur_token.code == ':')
7129         {
7130           if (prev_token.code != T_REG)
7131             {
7132               /* While {call,jmp} SSSS:OOOO is MASM syntax only when SSSS is a
7133                  segment/group identifier (which we don't have), using comma
7134                  as the operand separator there is even less consistent, since
7135                  there all branches only have a single operand.  */
7136               if (this_operand != 0
7137                   || intel_parser.in_offset
7138                   || intel_parser.in_bracket
7139                   || (!(current_templates->start->opcode_modifier
7140                         & (Jump|JumpDword|JumpInterSegment))
7141                       && !(current_templates->start->operand_types[0]
7142                            & JumpAbsolute)))
7143                 return intel_match_token (T_NIL);
7144               /* Remember the start of the 2nd operand and terminate 1st
7145                  operand here.
7146                  XXX This isn't right, yet (when SSSS:OOOO is right operand of
7147                  another expression), but it gets at least the simplest case
7148                  (a plain number or symbol on the left side) right.  */
7149               intel_parser.next_operand = intel_parser.op_string;
7150               *--intel_parser.op_string = '\0';
7151               return intel_match_token (':');
7152             }
7153         }
7154
7155       /* e09'  Empty  */
7156       else
7157         break;
7158
7159       intel_match_token (cur_token.code);
7160
7161     }
7162
7163   if (in_offset)
7164     {
7165       --intel_parser.in_offset;
7166       if (nregs < 0)
7167         nregs = ~nregs;
7168       if (NUM_ADDRESS_REGS > nregs)
7169         {
7170           as_bad (_("Invalid operand to `OFFSET'"));
7171           return 0;
7172         }
7173       intel_parser.op_modifier |= 1 << T_OFFSET;
7174     }
7175
7176   if (nregs >= 0 && NUM_ADDRESS_REGS > nregs)
7177     i.base_reg = i386_regtab + REGNAM_AL + 3; /* bl is invalid as base */
7178   return 1;
7179 }
7180
7181 static int
7182 intel_bracket_expr (void)
7183 {
7184   int was_offset = intel_parser.op_modifier & (1 << T_OFFSET);
7185   const char *start = intel_parser.op_string;
7186   int len;
7187
7188   if (i.op[this_operand].regs)
7189     return intel_match_token (T_NIL);
7190
7191   intel_match_token ('[');
7192
7193   /* Mark as a memory operand only if it's not already known to be an
7194      offset expression.  If it's an offset expression, we need to keep
7195      the brace in.  */
7196   if (!intel_parser.in_offset)
7197     {
7198       ++intel_parser.in_bracket;
7199
7200       /* Operands for jump/call inside brackets denote absolute addresses.  */
7201       if (current_templates->start->opcode_modifier & (Jump | JumpDword))
7202         i.types[this_operand] |= JumpAbsolute;
7203
7204       /* Unfortunately gas always diverged from MASM in a respect that can't
7205          be easily fixed without risking to break code sequences likely to be
7206          encountered (the testsuite even check for this): MASM doesn't consider
7207          an expression inside brackets unconditionally as a memory reference.
7208          When that is e.g. a constant, an offset expression, or the sum of the
7209          two, this is still taken as a constant load. gas, however, always
7210          treated these as memory references. As a compromise, we'll try to make
7211          offset expressions inside brackets work the MASM way (since that's
7212          less likely to be found in real world code), but make constants alone
7213          continue to work the traditional gas way. In either case, issue a
7214          warning.  */
7215       intel_parser.op_modifier &= ~was_offset;
7216     }
7217   else
7218     strcat (intel_parser.disp, "[");
7219
7220   /* Add a '+' to the displacement string if necessary.  */
7221   if (*intel_parser.disp != '\0'
7222       && *(intel_parser.disp + strlen (intel_parser.disp) - 1) != '+')
7223     strcat (intel_parser.disp, "+");
7224
7225   if (intel_expr ()
7226       && (len = intel_parser.op_string - start - 1,
7227           intel_match_token (']')))
7228     {
7229       /* Preserve brackets when the operand is an offset expression.  */
7230       if (intel_parser.in_offset)
7231         strcat (intel_parser.disp, "]");
7232       else
7233         {
7234           --intel_parser.in_bracket;
7235           if (i.base_reg || i.index_reg)
7236             intel_parser.is_mem = 1;
7237           if (!intel_parser.is_mem)
7238             {
7239               if (!(intel_parser.op_modifier & (1 << T_OFFSET)))
7240                 /* Defer the warning until all of the operand was parsed.  */
7241                 intel_parser.is_mem = -1;
7242               else if (!quiet_warnings)
7243                 as_warn (_("`[%.*s]' taken to mean just `%.*s'"),
7244                          len, start, len, start);
7245             }
7246         }
7247       intel_parser.op_modifier |= was_offset;
7248
7249       return 1;
7250     }
7251   return 0;
7252 }
7253
7254 /* e10  e11 e10'
7255
7256    e10' [ expr ] e10'
7257         | Empty  */
7258 static int
7259 intel_e10 (void)
7260 {
7261   if (!intel_e11 ())
7262     return 0;
7263
7264   while (cur_token.code == '[')
7265     {
7266       if (!intel_bracket_expr ())
7267         return 0;
7268     }
7269
7270   return 1;
7271 }
7272
7273 /* e11  ( expr )
7274         | [ expr ]
7275         | BYTE
7276         | WORD
7277         | DWORD
7278         | FWORD
7279         | QWORD
7280         | TBYTE
7281         | OWORD
7282         | XMMWORD
7283         | $
7284         | .
7285         | register
7286         | id
7287         | constant  */
7288 static int
7289 intel_e11 (void)
7290 {
7291   switch (cur_token.code)
7292     {
7293     /* e11  ( expr ) */
7294     case '(':
7295       intel_match_token ('(');
7296       strcat (intel_parser.disp, "(");
7297
7298       if (intel_expr () && intel_match_token (')'))
7299         {
7300           strcat (intel_parser.disp, ")");
7301           return 1;
7302         }
7303       return 0;
7304
7305     /* e11  [ expr ] */
7306     case '[':
7307       return intel_bracket_expr ();
7308
7309     /* e11  $
7310             | .  */
7311     case '.':
7312       strcat (intel_parser.disp, cur_token.str);
7313       intel_match_token (cur_token.code);
7314
7315       /* Mark as a memory operand only if it's not already known to be an
7316          offset expression.  */
7317       if (!intel_parser.in_offset)
7318         intel_parser.is_mem = 1;
7319
7320       return 1;
7321
7322     /* e11  register  */
7323     case T_REG:
7324       {
7325         const reg_entry *reg = intel_parser.reg = cur_token.reg;
7326
7327         intel_match_token (T_REG);
7328
7329         /* Check for segment change.  */
7330         if (cur_token.code == ':')
7331           {
7332             if (!(reg->reg_type & (SReg2 | SReg3)))
7333               {
7334                 as_bad (_("`%s' is not a valid segment register"),
7335                         reg->reg_name);
7336                 return 0;
7337               }
7338             else if (i.seg[i.mem_operands])
7339               as_warn (_("Extra segment override ignored"));
7340             else
7341               {
7342                 if (!intel_parser.in_offset)
7343                   intel_parser.is_mem = 1;
7344                 switch (reg->reg_num)
7345                   {
7346                   case 0:
7347                     i.seg[i.mem_operands] = &es;
7348                     break;
7349                   case 1:
7350                     i.seg[i.mem_operands] = &cs;
7351                     break;
7352                   case 2:
7353                     i.seg[i.mem_operands] = &ss;
7354                     break;
7355                   case 3:
7356                     i.seg[i.mem_operands] = &ds;
7357                     break;
7358                   case 4:
7359                     i.seg[i.mem_operands] = &fs;
7360                     break;
7361                   case 5:
7362                     i.seg[i.mem_operands] = &gs;
7363                     break;
7364                   }
7365               }
7366           }
7367
7368         /* Not a segment register. Check for register scaling.  */
7369         else if (cur_token.code == '*')
7370           {
7371             if (!intel_parser.in_bracket)
7372               {
7373                 as_bad (_("Register scaling only allowed in memory operands"));
7374                 return 0;
7375               }
7376
7377             if (reg->reg_type & Reg16) /* Disallow things like [si*1]. */
7378               reg = i386_regtab + REGNAM_AX + 4; /* sp is invalid as index */
7379             else if (i.index_reg)
7380               reg = i386_regtab + REGNAM_EAX + 4; /* esp is invalid as index */
7381
7382             /* What follows must be a valid scale.  */
7383             intel_match_token ('*');
7384             i.index_reg = reg;
7385             i.types[this_operand] |= BaseIndex;
7386
7387             /* Set the scale after setting the register (otherwise,
7388                i386_scale will complain)  */
7389             if (cur_token.code == '+' || cur_token.code == '-')
7390               {
7391                 char *str, sign = cur_token.code;
7392                 intel_match_token (cur_token.code);
7393                 if (cur_token.code != T_CONST)
7394                   {
7395                     as_bad (_("Syntax error: Expecting a constant, got `%s'"),
7396                             cur_token.str);
7397                     return 0;
7398                   }
7399                 str = (char *) xmalloc (strlen (cur_token.str) + 2);
7400                 strcpy (str + 1, cur_token.str);
7401                 *str = sign;
7402                 if (!i386_scale (str))
7403                   return 0;
7404                 free (str);
7405               }
7406             else if (!i386_scale (cur_token.str))
7407               return 0;
7408             intel_match_token (cur_token.code);
7409           }
7410
7411         /* No scaling. If this is a memory operand, the register is either a
7412            base register (first occurrence) or an index register (second
7413            occurrence).  */
7414         else if (intel_parser.in_bracket)
7415           {
7416
7417             if (!i.base_reg)
7418               i.base_reg = reg;
7419             else if (!i.index_reg)
7420               i.index_reg = reg;
7421             else
7422               {
7423                 as_bad (_("Too many register references in memory operand"));
7424                 return 0;
7425               }
7426
7427             i.types[this_operand] |= BaseIndex;
7428           }
7429
7430         /* It's neither base nor index.  */
7431         else if (!intel_parser.in_offset && !intel_parser.is_mem)
7432           {
7433             i.types[this_operand] |= reg->reg_type & ~BaseIndex;
7434             i.op[this_operand].regs = reg;
7435             i.reg_operands++;
7436           }
7437         else
7438           {
7439             as_bad (_("Invalid use of register"));
7440             return 0;
7441           }
7442
7443         /* Since registers are not part of the displacement string (except
7444            when we're parsing offset operands), we may need to remove any
7445            preceding '+' from the displacement string.  */
7446         if (*intel_parser.disp != '\0'
7447             && !intel_parser.in_offset)
7448           {
7449             char *s = intel_parser.disp;
7450             s += strlen (s) - 1;
7451             if (*s == '+')
7452               *s = '\0';
7453           }
7454
7455         return 1;
7456       }
7457
7458     /* e11  BYTE
7459             | WORD
7460             | DWORD
7461             | FWORD
7462             | QWORD
7463             | TBYTE
7464             | OWORD
7465             | XMMWORD  */
7466     case T_BYTE:
7467     case T_WORD:
7468     case T_DWORD:
7469     case T_FWORD:
7470     case T_QWORD:
7471     case T_TBYTE:
7472     case T_XMMWORD:
7473       intel_match_token (cur_token.code);
7474
7475       if (cur_token.code == T_PTR)
7476         return 1;
7477
7478       /* It must have been an identifier.  */
7479       intel_putback_token ();
7480       cur_token.code = T_ID;
7481       /* FALLTHRU */
7482
7483     /* e11  id
7484             | constant  */
7485     case T_ID:
7486       if (!intel_parser.in_offset && intel_parser.is_mem <= 0)
7487         {
7488           symbolS *symbolP;
7489
7490           /* The identifier represents a memory reference only if it's not
7491              preceded by an offset modifier and if it's not an equate.  */
7492           symbolP = symbol_find(cur_token.str);
7493           if (!symbolP || S_GET_SEGMENT(symbolP) != absolute_section)
7494             intel_parser.is_mem = 1;
7495         }
7496         /* FALLTHRU */
7497
7498     case T_CONST:
7499     case '-':
7500     case '+':
7501       {
7502         char *save_str, sign = 0;
7503
7504         /* Allow constants that start with `+' or `-'.  */
7505         if (cur_token.code == '-' || cur_token.code == '+')
7506           {
7507             sign = cur_token.code;
7508             intel_match_token (cur_token.code);
7509             if (cur_token.code != T_CONST)
7510               {
7511                 as_bad (_("Syntax error: Expecting a constant, got `%s'"),
7512                         cur_token.str);
7513                 return 0;
7514               }
7515           }
7516
7517         save_str = (char *) xmalloc (strlen (cur_token.str) + 2);
7518         strcpy (save_str + !!sign, cur_token.str);
7519         if (sign)
7520           *save_str = sign;
7521
7522         /* Get the next token to check for register scaling.  */
7523         intel_match_token (cur_token.code);
7524
7525         /* Check if this constant is a scaling factor for an
7526            index register.  */
7527         if (cur_token.code == '*')
7528           {
7529             if (intel_match_token ('*') && cur_token.code == T_REG)
7530               {
7531                 const reg_entry *reg = cur_token.reg;
7532
7533                 if (!intel_parser.in_bracket)
7534                   {
7535                     as_bad (_("Register scaling only allowed "
7536                               "in memory operands"));
7537                     return 0;
7538                   }
7539
7540                  /* Disallow things like [1*si].
7541                     sp and esp are invalid as index.  */
7542                 if (reg->reg_type & Reg16)
7543                   reg = i386_regtab + REGNAM_AX + 4;
7544                 else if (i.index_reg)
7545                   reg = i386_regtab + REGNAM_EAX + 4;
7546
7547                 /* The constant is followed by `* reg', so it must be
7548                    a valid scale.  */
7549                 i.index_reg = reg;
7550                 i.types[this_operand] |= BaseIndex;
7551
7552                 /* Set the scale after setting the register (otherwise,
7553                    i386_scale will complain)  */
7554                 if (!i386_scale (save_str))
7555                   return 0;
7556                 intel_match_token (T_REG);
7557
7558                 /* Since registers are not part of the displacement
7559                    string, we may need to remove any preceding '+' from
7560                    the displacement string.  */
7561                 if (*intel_parser.disp != '\0')
7562                   {
7563                     char *s = intel_parser.disp;
7564                     s += strlen (s) - 1;
7565                     if (*s == '+')
7566                       *s = '\0';
7567                   }
7568
7569                 free (save_str);
7570
7571                 return 1;
7572               }
7573
7574             /* The constant was not used for register scaling. Since we have
7575                already consumed the token following `*' we now need to put it
7576                back in the stream.  */
7577             intel_putback_token ();
7578           }
7579
7580         /* Add the constant to the displacement string.  */
7581         strcat (intel_parser.disp, save_str);
7582         free (save_str);
7583
7584         return 1;
7585       }
7586     }
7587
7588   as_bad (_("Unrecognized token '%s'"), cur_token.str);
7589   return 0;
7590 }
7591
7592 /* Match the given token against cur_token. If they match, read the next
7593    token from the operand string.  */
7594 static int
7595 intel_match_token (int code)
7596 {
7597   if (cur_token.code == code)
7598     {
7599       intel_get_token ();
7600       return 1;
7601     }
7602   else
7603     {
7604       as_bad (_("Unexpected token `%s'"), cur_token.str);
7605       return 0;
7606     }
7607 }
7608
7609 /* Read a new token from intel_parser.op_string and store it in cur_token.  */
7610 static void
7611 intel_get_token (void)
7612 {
7613   char *end_op;
7614   const reg_entry *reg;
7615   struct intel_token new_token;
7616
7617   new_token.code = T_NIL;
7618   new_token.reg = NULL;
7619   new_token.str = NULL;
7620
7621   /* Free the memory allocated to the previous token and move
7622      cur_token to prev_token.  */
7623   if (prev_token.str)
7624     free (prev_token.str);
7625
7626   prev_token = cur_token;
7627
7628   /* Skip whitespace.  */
7629   while (is_space_char (*intel_parser.op_string))
7630     intel_parser.op_string++;
7631
7632   /* Return an empty token if we find nothing else on the line.  */
7633   if (*intel_parser.op_string == '\0')
7634     {
7635       cur_token = new_token;
7636       return;
7637     }
7638
7639   /* The new token cannot be larger than the remainder of the operand
7640      string.  */
7641   new_token.str = (char *) xmalloc (strlen (intel_parser.op_string) + 1);
7642   new_token.str[0] = '\0';
7643
7644   if (strchr ("0123456789", *intel_parser.op_string))
7645     {
7646       char *p = new_token.str;
7647       char *q = intel_parser.op_string;
7648       new_token.code = T_CONST;
7649
7650       /* Allow any kind of identifier char to encompass floating point and
7651          hexadecimal numbers.  */
7652       while (is_identifier_char (*q))
7653         *p++ = *q++;
7654       *p = '\0';
7655
7656       /* Recognize special symbol names [0-9][bf].  */
7657       if (strlen (intel_parser.op_string) == 2
7658           && (intel_parser.op_string[1] == 'b'
7659               || intel_parser.op_string[1] == 'f'))
7660         new_token.code = T_ID;
7661     }
7662
7663   else if ((reg = parse_register (intel_parser.op_string, &end_op)) != NULL)
7664     {
7665       size_t len = end_op - intel_parser.op_string;
7666
7667       new_token.code = T_REG;
7668       new_token.reg = reg;
7669
7670       memcpy (new_token.str, intel_parser.op_string, len);
7671       new_token.str[len] = '\0';
7672     }
7673
7674   else if (is_identifier_char (*intel_parser.op_string))
7675     {
7676       char *p = new_token.str;
7677       char *q = intel_parser.op_string;
7678
7679       /* A '.' or '$' followed by an identifier char is an identifier.
7680          Otherwise, it's operator '.' followed by an expression.  */
7681       if ((*q == '.' || *q == '$') && !is_identifier_char (*(q + 1)))
7682         {
7683           new_token.code = '.';
7684           new_token.str[0] = '.';
7685           new_token.str[1] = '\0';
7686         }
7687       else
7688         {
7689           while (is_identifier_char (*q) || *q == '@')
7690             *p++ = *q++;
7691           *p = '\0';
7692
7693           if (strcasecmp (new_token.str, "NOT") == 0)
7694             new_token.code = '~';
7695
7696           else if (strcasecmp (new_token.str, "MOD") == 0)
7697             new_token.code = '%';
7698
7699           else if (strcasecmp (new_token.str, "AND") == 0)
7700             new_token.code = '&';
7701
7702           else if (strcasecmp (new_token.str, "OR") == 0)
7703             new_token.code = '|';
7704
7705           else if (strcasecmp (new_token.str, "XOR") == 0)
7706             new_token.code = '^';
7707
7708           else if (strcasecmp (new_token.str, "SHL") == 0)
7709             new_token.code = T_SHL;
7710
7711           else if (strcasecmp (new_token.str, "SHR") == 0)
7712             new_token.code = T_SHR;
7713
7714           else if (strcasecmp (new_token.str, "BYTE") == 0)
7715             new_token.code = T_BYTE;
7716
7717           else if (strcasecmp (new_token.str, "WORD") == 0)
7718             new_token.code = T_WORD;
7719
7720           else if (strcasecmp (new_token.str, "DWORD") == 0)
7721             new_token.code = T_DWORD;
7722
7723           else if (strcasecmp (new_token.str, "FWORD") == 0)
7724             new_token.code = T_FWORD;
7725
7726           else if (strcasecmp (new_token.str, "QWORD") == 0)
7727             new_token.code = T_QWORD;
7728
7729           else if (strcasecmp (new_token.str, "TBYTE") == 0
7730                    /* XXX remove (gcc still uses it) */
7731                    || strcasecmp (new_token.str, "XWORD") == 0)
7732             new_token.code = T_TBYTE;
7733
7734           else if (strcasecmp (new_token.str, "XMMWORD") == 0
7735                    || strcasecmp (new_token.str, "OWORD") == 0)
7736             new_token.code = T_XMMWORD;
7737
7738           else if (strcasecmp (new_token.str, "PTR") == 0)
7739             new_token.code = T_PTR;
7740
7741           else if (strcasecmp (new_token.str, "SHORT") == 0)
7742             new_token.code = T_SHORT;
7743
7744           else if (strcasecmp (new_token.str, "OFFSET") == 0)
7745             {
7746               new_token.code = T_OFFSET;
7747
7748               /* ??? This is not mentioned in the MASM grammar but gcc
7749                      makes use of it with -mintel-syntax.  OFFSET may be
7750                      followed by FLAT:  */
7751               if (strncasecmp (q, " FLAT:", 6) == 0)
7752                 strcat (new_token.str, " FLAT:");
7753             }
7754
7755           /* ??? This is not mentioned in the MASM grammar.  */
7756           else if (strcasecmp (new_token.str, "FLAT") == 0)
7757             {
7758               new_token.code = T_OFFSET;
7759               if (*q == ':')
7760                 strcat (new_token.str, ":");
7761               else
7762                 as_bad (_("`:' expected"));
7763             }
7764
7765           else
7766             new_token.code = T_ID;
7767         }
7768     }
7769
7770   else if (strchr ("+-/*%|&^:[]()~", *intel_parser.op_string))
7771     {
7772       new_token.code = *intel_parser.op_string;
7773       new_token.str[0] = *intel_parser.op_string;
7774       new_token.str[1] = '\0';
7775     }
7776
7777   else if (strchr ("<>", *intel_parser.op_string)
7778            && *intel_parser.op_string == *(intel_parser.op_string + 1))
7779     {
7780       new_token.code = *intel_parser.op_string == '<' ? T_SHL : T_SHR;
7781       new_token.str[0] = *intel_parser.op_string;
7782       new_token.str[1] = *intel_parser.op_string;
7783       new_token.str[2] = '\0';
7784     }
7785
7786   else
7787     as_bad (_("Unrecognized token `%s'"), intel_parser.op_string);
7788
7789   intel_parser.op_string += strlen (new_token.str);
7790   cur_token = new_token;
7791 }
7792
7793 /* Put cur_token back into the token stream and make cur_token point to
7794    prev_token.  */
7795 static void
7796 intel_putback_token (void)
7797 {
7798   if (cur_token.code != T_NIL)
7799     {
7800       intel_parser.op_string -= strlen (cur_token.str);
7801       free (cur_token.str);
7802     }
7803   cur_token = prev_token;
7804
7805   /* Forget prev_token.  */
7806   prev_token.code = T_NIL;
7807   prev_token.reg = NULL;
7808   prev_token.str = NULL;
7809 }
7810
7811 int
7812 tc_x86_regname_to_dw2regnum (char *regname)
7813 {
7814   unsigned int regnum;
7815   unsigned int regnames_count;
7816   static const char *const regnames_32[] =
7817     {
7818       "eax", "ecx", "edx", "ebx",
7819       "esp", "ebp", "esi", "edi",
7820       "eip", "eflags", NULL,
7821       "st0", "st1", "st2", "st3",
7822       "st4", "st5", "st6", "st7",
7823       NULL, NULL,
7824       "xmm0", "xmm1", "xmm2", "xmm3",
7825       "xmm4", "xmm5", "xmm6", "xmm7",
7826       "mm0", "mm1", "mm2", "mm3",
7827       "mm4", "mm5", "mm6", "mm7",
7828       "fcw", "fsw", "mxcsr",
7829       "es", "cs", "ss", "ds", "fs", "gs", NULL, NULL,
7830       "tr", "ldtr"
7831     };
7832   static const char *const regnames_64[] =
7833     {
7834       "rax", "rdx", "rcx", "rbx",
7835       "rsi", "rdi", "rbp", "rsp",
7836       "r8",  "r9",  "r10", "r11",
7837       "r12", "r13", "r14", "r15",
7838       "rip",
7839       "xmm0",  "xmm1",  "xmm2",  "xmm3",
7840       "xmm4",  "xmm5",  "xmm6",  "xmm7",
7841       "xmm8",  "xmm9",  "xmm10", "xmm11",
7842       "xmm12", "xmm13", "xmm14", "xmm15",
7843       "st0", "st1", "st2", "st3",
7844       "st4", "st5", "st6", "st7",
7845       "mm0", "mm1", "mm2", "mm3",
7846       "mm4", "mm5", "mm6", "mm7",
7847       "rflags",
7848       "es", "cs", "ss", "ds", "fs", "gs", NULL, NULL,
7849       "fs.base", "gs.base", NULL, NULL,
7850       "tr", "ldtr",
7851       "mxcsr", "fcw", "fsw"
7852     };
7853   const char *const *regnames;
7854
7855   if (flag_code == CODE_64BIT)
7856     {
7857       regnames = regnames_64;
7858       regnames_count = ARRAY_SIZE (regnames_64);
7859     }
7860   else
7861     {
7862       regnames = regnames_32;
7863       regnames_count = ARRAY_SIZE (regnames_32);
7864     }
7865
7866   for (regnum = 0; regnum < regnames_count; regnum++)
7867     if (regnames[regnum] != NULL
7868         && strcmp (regname, regnames[regnum]) == 0)
7869       return regnum;
7870
7871   return -1;
7872 }
7873
7874 void
7875 tc_x86_frame_initial_instructions (void)
7876 {
7877   static unsigned int sp_regno;
7878
7879   if (!sp_regno)
7880     sp_regno = tc_x86_regname_to_dw2regnum (flag_code == CODE_64BIT
7881                                             ? "rsp" : "esp");
7882
7883   cfi_add_CFA_def_cfa (sp_regno, -x86_cie_data_alignment);
7884   cfi_add_CFA_offset (x86_dwarf2_return_column, x86_cie_data_alignment);
7885 }
7886
7887 int
7888 i386_elf_section_type (const char *str, size_t len)
7889 {
7890   if (flag_code == CODE_64BIT
7891       && len == sizeof ("unwind") - 1
7892       && strncmp (str, "unwind", 6) == 0)
7893     return SHT_X86_64_UNWIND;
7894
7895   return -1;
7896 }
7897
7898 #ifdef TE_PE
7899 void
7900 tc_pe_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
7901 {
7902   expressionS expr;
7903
7904   expr.X_op = O_secrel;
7905   expr.X_add_symbol = symbol;
7906   expr.X_add_number = 0;
7907   emit_expr (&expr, size);
7908 }
7909 #endif
7910
7911 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
7912 /* For ELF on x86-64, add support for SHF_X86_64_LARGE.  */
7913
7914 int
7915 x86_64_section_letter (int letter, char **ptr_msg)
7916 {
7917   if (flag_code == CODE_64BIT)
7918     {
7919       if (letter == 'l')
7920         return SHF_X86_64_LARGE;
7921
7922       *ptr_msg = _("Bad .section directive: want a,l,w,x,M,S,G,T in string");
7923     }
7924   else
7925     *ptr_msg = _("Bad .section directive: want a,w,x,M,S,G,T in string");
7926   return -1;
7927 }
7928
7929 int
7930 x86_64_section_word (char *str, size_t len)
7931 {
7932   if (len == 5 && flag_code == CODE_64BIT && CONST_STRNEQ (str, "large"))
7933     return SHF_X86_64_LARGE;
7934
7935   return -1;
7936 }
7937
7938 static void
7939 handle_large_common (int small ATTRIBUTE_UNUSED)
7940 {
7941   if (flag_code != CODE_64BIT)
7942     {
7943       s_comm_internal (0, elf_common_parse);
7944       as_warn (_(".largecomm supported only in 64bit mode, producing .comm"));
7945     }
7946   else
7947     {
7948       static segT lbss_section;
7949       asection *saved_com_section_ptr = elf_com_section_ptr;
7950       asection *saved_bss_section = bss_section;
7951
7952       if (lbss_section == NULL)
7953         {
7954           flagword applicable;
7955           segT seg = now_seg;
7956           subsegT subseg = now_subseg;
7957
7958           /* The .lbss section is for local .largecomm symbols.  */
7959           lbss_section = subseg_new (".lbss", 0);
7960           applicable = bfd_applicable_section_flags (stdoutput);
7961           bfd_set_section_flags (stdoutput, lbss_section,
7962                                  applicable & SEC_ALLOC);
7963           seg_info (lbss_section)->bss = 1;
7964
7965           subseg_set (seg, subseg);
7966         }
7967
7968       elf_com_section_ptr = &_bfd_elf_large_com_section;
7969       bss_section = lbss_section;
7970
7971       s_comm_internal (0, elf_common_parse);
7972
7973       elf_com_section_ptr = saved_com_section_ptr;
7974       bss_section = saved_bss_section;
7975     }
7976 }
7977 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */