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