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