gas reloc rewrite.
[deliverable/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 ATTRIBUTE_UNUSED;
1211 {
1212 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
1213 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
1214 return 1;
1215
1216 /* Don't adjust pc-relative references to merge sections in 64-bit
1217 mode. */
1218 if (use_rela_relocations
1219 && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0
1220 && fixP->fx_pcrel)
1221 return 0;
1222
1223 /* adjust_reloc_syms doesn't know about the GOT. */
1224 if (fixP->fx_r_type == BFD_RELOC_386_GOTOFF
1225 || fixP->fx_r_type == BFD_RELOC_386_PLT32
1226 || fixP->fx_r_type == BFD_RELOC_386_GOT32
1227 || fixP->fx_r_type == BFD_RELOC_386_TLS_GD
1228 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDM
1229 || fixP->fx_r_type == BFD_RELOC_386_TLS_LDO_32
1230 || fixP->fx_r_type == BFD_RELOC_386_TLS_IE_32
1231 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE_32
1232 || fixP->fx_r_type == BFD_RELOC_386_TLS_LE
1233 || fixP->fx_r_type == BFD_RELOC_X86_64_PLT32
1234 || fixP->fx_r_type == BFD_RELOC_X86_64_GOT32
1235 || fixP->fx_r_type == BFD_RELOC_X86_64_GOTPCREL
1236 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
1237 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
1238 return 0;
1239 #endif
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 != absolute_section
3672 && exp_seg != text_section
3673 && exp_seg != data_section
3674 && exp_seg != bss_section
3675 && exp_seg != undefined_section
3676 #ifdef BFD_ASSEMBLER
3677 && !bfd_is_com_section (exp_seg)
3678 #endif
3679 )
3680 {
3681 #ifdef BFD_ASSEMBLER
3682 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
3683 #else
3684 as_bad (_("unimplemented segment type %d in operand"), exp_seg);
3685 #endif
3686 return 0;
3687 }
3688 #endif
3689 else
3690 {
3691 /* This is an address. The size of the address will be
3692 determined later, depending on destination register,
3693 suffix, or the default for the section. */
3694 i.types[this_operand] |= Imm8 | Imm16 | Imm32 | Imm32S | Imm64;
3695 }
3696
3697 return 1;
3698 }
3699
3700 static char *i386_scale PARAMS ((char *));
3701
3702 static char *
3703 i386_scale (scale)
3704 char *scale;
3705 {
3706 offsetT val;
3707 char *save = input_line_pointer;
3708
3709 input_line_pointer = scale;
3710 val = get_absolute_expression ();
3711
3712 switch (val)
3713 {
3714 case 0:
3715 case 1:
3716 i.log2_scale_factor = 0;
3717 break;
3718 case 2:
3719 i.log2_scale_factor = 1;
3720 break;
3721 case 4:
3722 i.log2_scale_factor = 2;
3723 break;
3724 case 8:
3725 i.log2_scale_factor = 3;
3726 break;
3727 default:
3728 as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
3729 scale);
3730 input_line_pointer = save;
3731 return NULL;
3732 }
3733 if (i.log2_scale_factor != 0 && i.index_reg == 0)
3734 {
3735 as_warn (_("scale factor of %d without an index register"),
3736 1 << i.log2_scale_factor);
3737 #if SCALE1_WHEN_NO_INDEX
3738 i.log2_scale_factor = 0;
3739 #endif
3740 }
3741 scale = input_line_pointer;
3742 input_line_pointer = save;
3743 return scale;
3744 }
3745
3746 static int i386_displacement PARAMS ((char *, char *));
3747
3748 static int
3749 i386_displacement (disp_start, disp_end)
3750 char *disp_start;
3751 char *disp_end;
3752 {
3753 expressionS *exp;
3754 segT exp_seg = 0;
3755 char *save_input_line_pointer;
3756 #ifndef LEX_AT
3757 char *gotfree_input_line;
3758 #endif
3759 int bigdisp = Disp32;
3760
3761 if (flag_code == CODE_64BIT)
3762 {
3763 if (i.prefix[ADDR_PREFIX] == 0)
3764 bigdisp = Disp64;
3765 }
3766 else if ((flag_code == CODE_16BIT) ^ (i.prefix[ADDR_PREFIX] != 0))
3767 bigdisp = Disp16;
3768 i.types[this_operand] |= bigdisp;
3769
3770 exp = &disp_expressions[i.disp_operands];
3771 i.op[this_operand].disps = exp;
3772 i.disp_operands++;
3773 save_input_line_pointer = input_line_pointer;
3774 input_line_pointer = disp_start;
3775 END_STRING_AND_SAVE (disp_end);
3776
3777 #ifndef GCC_ASM_O_HACK
3778 #define GCC_ASM_O_HACK 0
3779 #endif
3780 #if GCC_ASM_O_HACK
3781 END_STRING_AND_SAVE (disp_end + 1);
3782 if ((i.types[this_operand] & BaseIndex) != 0
3783 && displacement_string_end[-1] == '+')
3784 {
3785 /* This hack is to avoid a warning when using the "o"
3786 constraint within gcc asm statements.
3787 For instance:
3788
3789 #define _set_tssldt_desc(n,addr,limit,type) \
3790 __asm__ __volatile__ ( \
3791 "movw %w2,%0\n\t" \
3792 "movw %w1,2+%0\n\t" \
3793 "rorl $16,%1\n\t" \
3794 "movb %b1,4+%0\n\t" \
3795 "movb %4,5+%0\n\t" \
3796 "movb $0,6+%0\n\t" \
3797 "movb %h1,7+%0\n\t" \
3798 "rorl $16,%1" \
3799 : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type))
3800
3801 This works great except that the output assembler ends
3802 up looking a bit weird if it turns out that there is
3803 no offset. You end up producing code that looks like:
3804
3805 #APP
3806 movw $235,(%eax)
3807 movw %dx,2+(%eax)
3808 rorl $16,%edx
3809 movb %dl,4+(%eax)
3810 movb $137,5+(%eax)
3811 movb $0,6+(%eax)
3812 movb %dh,7+(%eax)
3813 rorl $16,%edx
3814 #NO_APP
3815
3816 So here we provide the missing zero. */
3817
3818 *displacement_string_end = '0';
3819 }
3820 #endif
3821 #ifndef LEX_AT
3822 gotfree_input_line = lex_got (&i.reloc[this_operand], NULL);
3823 if (gotfree_input_line)
3824 input_line_pointer = gotfree_input_line;
3825 #endif
3826
3827 exp_seg = expression (exp);
3828
3829 SKIP_WHITESPACE ();
3830 if (*input_line_pointer)
3831 as_bad (_("junk `%s' after expression"), input_line_pointer);
3832 #if GCC_ASM_O_HACK
3833 RESTORE_END_STRING (disp_end + 1);
3834 #endif
3835 RESTORE_END_STRING (disp_end);
3836 input_line_pointer = save_input_line_pointer;
3837 #ifndef LEX_AT
3838 if (gotfree_input_line)
3839 free (gotfree_input_line);
3840 #endif
3841
3842 #ifdef BFD_ASSEMBLER
3843 /* We do this to make sure that the section symbol is in
3844 the symbol table. We will ultimately change the relocation
3845 to be relative to the beginning of the section. */
3846 if (i.reloc[this_operand] == BFD_RELOC_386_GOTOFF
3847 || i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL)
3848 {
3849 if (exp->X_op != O_symbol)
3850 {
3851 as_bad (_("bad expression used with @%s"),
3852 (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL
3853 ? "GOTPCREL"
3854 : "GOTOFF"));
3855 return 0;
3856 }
3857
3858 if (S_IS_LOCAL (exp->X_add_symbol)
3859 && S_GET_SEGMENT (exp->X_add_symbol) != undefined_section)
3860 section_symbol (S_GET_SEGMENT (exp->X_add_symbol));
3861 exp->X_op = O_subtract;
3862 exp->X_op_symbol = GOT_symbol;
3863 if (i.reloc[this_operand] == BFD_RELOC_X86_64_GOTPCREL)
3864 i.reloc[this_operand] = BFD_RELOC_32_PCREL;
3865 else
3866 i.reloc[this_operand] = BFD_RELOC_32;
3867 }
3868 #endif
3869
3870 if (exp->X_op == O_absent || exp->X_op == O_big)
3871 {
3872 /* Missing or bad expr becomes absolute 0. */
3873 as_bad (_("missing or invalid displacement expression `%s' taken as 0"),
3874 disp_start);
3875 exp->X_op = O_constant;
3876 exp->X_add_number = 0;
3877 exp->X_add_symbol = (symbolS *) 0;
3878 exp->X_op_symbol = (symbolS *) 0;
3879 }
3880
3881 #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
3882 if (exp->X_op != O_constant
3883 #ifdef BFD_ASSEMBLER
3884 && OUTPUT_FLAVOR == bfd_target_aout_flavour
3885 #endif
3886 && exp_seg != absolute_section
3887 && exp_seg != text_section
3888 && exp_seg != data_section
3889 && exp_seg != bss_section
3890 && exp_seg != undefined_section
3891 #ifdef BFD_ASSEMBLER
3892 && !bfd_is_com_section (exp_seg)
3893 #endif
3894 )
3895 {
3896 #ifdef BFD_ASSEMBLER
3897 as_bad (_("unimplemented segment %s in operand"), exp_seg->name);
3898 #else
3899 as_bad (_("unimplemented segment type %d in operand"), exp_seg);
3900 #endif
3901 return 0;
3902 }
3903 #endif
3904 else if (flag_code == CODE_64BIT)
3905 i.types[this_operand] |= Disp32S | Disp32;
3906 return 1;
3907 }
3908
3909 static int i386_index_check PARAMS ((const char *));
3910
3911 /* Make sure the memory operand we've been dealt is valid.
3912 Return 1 on success, 0 on a failure. */
3913
3914 static int
3915 i386_index_check (operand_string)
3916 const char *operand_string;
3917 {
3918 int ok;
3919 #if INFER_ADDR_PREFIX
3920 int fudged = 0;
3921
3922 tryprefix:
3923 #endif
3924 ok = 1;
3925 if (flag_code == CODE_64BIT)
3926 {
3927 if (i.prefix[ADDR_PREFIX] == 0)
3928 {
3929 /* 64bit checks. */
3930 if ((i.base_reg
3931 && ((i.base_reg->reg_type & Reg64) == 0)
3932 && (i.base_reg->reg_type != BaseIndex
3933 || i.index_reg))
3934 || (i.index_reg
3935 && ((i.index_reg->reg_type & (Reg64 | BaseIndex))
3936 != (Reg64 | BaseIndex))))
3937 ok = 0;
3938 }
3939 else
3940 {
3941 /* 32bit checks. */
3942 if ((i.base_reg
3943 && (i.base_reg->reg_type & (Reg32 | RegRex)) != Reg32)
3944 || (i.index_reg
3945 && ((i.index_reg->reg_type & (Reg32 | BaseIndex | RegRex))
3946 != (Reg32 | BaseIndex))))
3947 ok = 0;
3948 }
3949 }
3950 else
3951 {
3952 if ((flag_code == CODE_16BIT) ^ (i.prefix[ADDR_PREFIX] != 0))
3953 {
3954 /* 16bit checks. */
3955 if ((i.base_reg
3956 && ((i.base_reg->reg_type & (Reg16 | BaseIndex | RegRex))
3957 != (Reg16 | BaseIndex)))
3958 || (i.index_reg
3959 && (((i.index_reg->reg_type & (Reg16 | BaseIndex))
3960 != (Reg16 | BaseIndex))
3961 || !(i.base_reg
3962 && i.base_reg->reg_num < 6
3963 && i.index_reg->reg_num >= 6
3964 && i.log2_scale_factor == 0))))
3965 ok = 0;
3966 }
3967 else
3968 {
3969 /* 32bit checks. */
3970 if ((i.base_reg
3971 && (i.base_reg->reg_type & (Reg32 | RegRex)) != Reg32)
3972 || (i.index_reg
3973 && ((i.index_reg->reg_type & (Reg32 | BaseIndex | RegRex))
3974 != (Reg32 | BaseIndex))))
3975 ok = 0;
3976 }
3977 }
3978 if (!ok)
3979 {
3980 #if INFER_ADDR_PREFIX
3981 if (flag_code != CODE_64BIT
3982 && i.prefix[ADDR_PREFIX] == 0 && stackop_size != '\0')
3983 {
3984 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
3985 i.prefixes += 1;
3986 /* Change the size of any displacement too. At most one of
3987 Disp16 or Disp32 is set.
3988 FIXME. There doesn't seem to be any real need for separate
3989 Disp16 and Disp32 flags. The same goes for Imm16 and Imm32.
3990 Removing them would probably clean up the code quite a lot. */
3991 if (i.types[this_operand] & (Disp16 | Disp32))
3992 i.types[this_operand] ^= (Disp16 | Disp32);
3993 fudged = 1;
3994 goto tryprefix;
3995 }
3996 if (fudged)
3997 as_bad (_("`%s' is not a valid base/index expression"),
3998 operand_string);
3999 else
4000 #endif
4001 as_bad (_("`%s' is not a valid %s bit base/index expression"),
4002 operand_string,
4003 flag_code_names[flag_code]);
4004 return 0;
4005 }
4006 return 1;
4007 }
4008
4009 /* Parse OPERAND_STRING into the i386_insn structure I. Returns non-zero
4010 on error. */
4011
4012 static int
4013 i386_operand (operand_string)
4014 char *operand_string;
4015 {
4016 const reg_entry *r;
4017 char *end_op;
4018 char *op_string = operand_string;
4019
4020 if (is_space_char (*op_string))
4021 ++op_string;
4022
4023 /* We check for an absolute prefix (differentiating,
4024 for example, 'jmp pc_relative_label' from 'jmp *absolute_label'. */
4025 if (*op_string == ABSOLUTE_PREFIX)
4026 {
4027 ++op_string;
4028 if (is_space_char (*op_string))
4029 ++op_string;
4030 i.types[this_operand] |= JumpAbsolute;
4031 }
4032
4033 /* Check if operand is a register. */
4034 if ((*op_string == REGISTER_PREFIX || allow_naked_reg)
4035 && (r = parse_register (op_string, &end_op)) != NULL)
4036 {
4037 /* Check for a segment override by searching for ':' after a
4038 segment register. */
4039 op_string = end_op;
4040 if (is_space_char (*op_string))
4041 ++op_string;
4042 if (*op_string == ':' && (r->reg_type & (SReg2 | SReg3)))
4043 {
4044 switch (r->reg_num)
4045 {
4046 case 0:
4047 i.seg[i.mem_operands] = &es;
4048 break;
4049 case 1:
4050 i.seg[i.mem_operands] = &cs;
4051 break;
4052 case 2:
4053 i.seg[i.mem_operands] = &ss;
4054 break;
4055 case 3:
4056 i.seg[i.mem_operands] = &ds;
4057 break;
4058 case 4:
4059 i.seg[i.mem_operands] = &fs;
4060 break;
4061 case 5:
4062 i.seg[i.mem_operands] = &gs;
4063 break;
4064 }
4065
4066 /* Skip the ':' and whitespace. */
4067 ++op_string;
4068 if (is_space_char (*op_string))
4069 ++op_string;
4070
4071 if (!is_digit_char (*op_string)
4072 && !is_identifier_char (*op_string)
4073 && *op_string != '('
4074 && *op_string != ABSOLUTE_PREFIX)
4075 {
4076 as_bad (_("bad memory operand `%s'"), op_string);
4077 return 0;
4078 }
4079 /* Handle case of %es:*foo. */
4080 if (*op_string == ABSOLUTE_PREFIX)
4081 {
4082 ++op_string;
4083 if (is_space_char (*op_string))
4084 ++op_string;
4085 i.types[this_operand] |= JumpAbsolute;
4086 }
4087 goto do_memory_reference;
4088 }
4089 if (*op_string)
4090 {
4091 as_bad (_("junk `%s' after register"), op_string);
4092 return 0;
4093 }
4094 i.types[this_operand] |= r->reg_type & ~BaseIndex;
4095 i.op[this_operand].regs = r;
4096 i.reg_operands++;
4097 }
4098 else if (*op_string == REGISTER_PREFIX)
4099 {
4100 as_bad (_("bad register name `%s'"), op_string);
4101 return 0;
4102 }
4103 else if (*op_string == IMMEDIATE_PREFIX)
4104 {
4105 ++op_string;
4106 if (i.types[this_operand] & JumpAbsolute)
4107 {
4108 as_bad (_("immediate operand illegal with absolute jump"));
4109 return 0;
4110 }
4111 if (!i386_immediate (op_string))
4112 return 0;
4113 }
4114 else if (is_digit_char (*op_string)
4115 || is_identifier_char (*op_string)
4116 || *op_string == '(')
4117 {
4118 /* This is a memory reference of some sort. */
4119 char *base_string;
4120
4121 /* Start and end of displacement string expression (if found). */
4122 char *displacement_string_start;
4123 char *displacement_string_end;
4124
4125 do_memory_reference:
4126 if ((i.mem_operands == 1
4127 && (current_templates->start->opcode_modifier & IsString) == 0)
4128 || i.mem_operands == 2)
4129 {
4130 as_bad (_("too many memory references for `%s'"),
4131 current_templates->start->name);
4132 return 0;
4133 }
4134
4135 /* Check for base index form. We detect the base index form by
4136 looking for an ')' at the end of the operand, searching
4137 for the '(' matching it, and finding a REGISTER_PREFIX or ','
4138 after the '('. */
4139 base_string = op_string + strlen (op_string);
4140
4141 --base_string;
4142 if (is_space_char (*base_string))
4143 --base_string;
4144
4145 /* If we only have a displacement, set-up for it to be parsed later. */
4146 displacement_string_start = op_string;
4147 displacement_string_end = base_string + 1;
4148
4149 if (*base_string == ')')
4150 {
4151 char *temp_string;
4152 unsigned int parens_balanced = 1;
4153 /* We've already checked that the number of left & right ()'s are
4154 equal, so this loop will not be infinite. */
4155 do
4156 {
4157 base_string--;
4158 if (*base_string == ')')
4159 parens_balanced++;
4160 if (*base_string == '(')
4161 parens_balanced--;
4162 }
4163 while (parens_balanced);
4164
4165 temp_string = base_string;
4166
4167 /* Skip past '(' and whitespace. */
4168 ++base_string;
4169 if (is_space_char (*base_string))
4170 ++base_string;
4171
4172 if (*base_string == ','
4173 || ((*base_string == REGISTER_PREFIX || allow_naked_reg)
4174 && (i.base_reg = parse_register (base_string, &end_op)) != NULL))
4175 {
4176 displacement_string_end = temp_string;
4177
4178 i.types[this_operand] |= BaseIndex;
4179
4180 if (i.base_reg)
4181 {
4182 base_string = end_op;
4183 if (is_space_char (*base_string))
4184 ++base_string;
4185 }
4186
4187 /* There may be an index reg or scale factor here. */
4188 if (*base_string == ',')
4189 {
4190 ++base_string;
4191 if (is_space_char (*base_string))
4192 ++base_string;
4193
4194 if ((*base_string == REGISTER_PREFIX || allow_naked_reg)
4195 && (i.index_reg = parse_register (base_string, &end_op)) != NULL)
4196 {
4197 base_string = end_op;
4198 if (is_space_char (*base_string))
4199 ++base_string;
4200 if (*base_string == ',')
4201 {
4202 ++base_string;
4203 if (is_space_char (*base_string))
4204 ++base_string;
4205 }
4206 else if (*base_string != ')')
4207 {
4208 as_bad (_("expecting `,' or `)' after index register in `%s'"),
4209 operand_string);
4210 return 0;
4211 }
4212 }
4213 else if (*base_string == REGISTER_PREFIX)
4214 {
4215 as_bad (_("bad register name `%s'"), base_string);
4216 return 0;
4217 }
4218
4219 /* Check for scale factor. */
4220 if (*base_string != ')')
4221 {
4222 char *end_scale = i386_scale (base_string);
4223
4224 if (!end_scale)
4225 return 0;
4226
4227 base_string = end_scale;
4228 if (is_space_char (*base_string))
4229 ++base_string;
4230 if (*base_string != ')')
4231 {
4232 as_bad (_("expecting `)' after scale factor in `%s'"),
4233 operand_string);
4234 return 0;
4235 }
4236 }
4237 else if (!i.index_reg)
4238 {
4239 as_bad (_("expecting index register or scale factor after `,'; got '%c'"),
4240 *base_string);
4241 return 0;
4242 }
4243 }
4244 else if (*base_string != ')')
4245 {
4246 as_bad (_("expecting `,' or `)' after base register in `%s'"),
4247 operand_string);
4248 return 0;
4249 }
4250 }
4251 else if (*base_string == REGISTER_PREFIX)
4252 {
4253 as_bad (_("bad register name `%s'"), base_string);
4254 return 0;
4255 }
4256 }
4257
4258 /* If there's an expression beginning the operand, parse it,
4259 assuming displacement_string_start and
4260 displacement_string_end are meaningful. */
4261 if (displacement_string_start != displacement_string_end)
4262 {
4263 if (!i386_displacement (displacement_string_start,
4264 displacement_string_end))
4265 return 0;
4266 }
4267
4268 /* Special case for (%dx) while doing input/output op. */
4269 if (i.base_reg
4270 && i.base_reg->reg_type == (Reg16 | InOutPortReg)
4271 && i.index_reg == 0
4272 && i.log2_scale_factor == 0
4273 && i.seg[i.mem_operands] == 0
4274 && (i.types[this_operand] & Disp) == 0)
4275 {
4276 i.types[this_operand] = InOutPortReg;
4277 return 1;
4278 }
4279
4280 if (i386_index_check (operand_string) == 0)
4281 return 0;
4282 i.mem_operands++;
4283 }
4284 else
4285 {
4286 /* It's not a memory operand; argh! */
4287 as_bad (_("invalid char %s beginning operand %d `%s'"),
4288 output_invalid (*op_string),
4289 this_operand + 1,
4290 op_string);
4291 return 0;
4292 }
4293 return 1; /* Normal return. */
4294 }
4295 \f
4296 /* md_estimate_size_before_relax()
4297
4298 Called just before relax() for rs_machine_dependent frags. The x86
4299 assembler uses these frags to handle variable size jump
4300 instructions.
4301
4302 Any symbol that is now undefined will not become defined.
4303 Return the correct fr_subtype in the frag.
4304 Return the initial "guess for variable size of frag" to caller.
4305 The guess is actually the growth beyond the fixed part. Whatever
4306 we do to grow the fixed or variable part contributes to our
4307 returned value. */
4308
4309 int
4310 md_estimate_size_before_relax (fragP, segment)
4311 fragS *fragP;
4312 segT segment;
4313 {
4314 /* We've already got fragP->fr_subtype right; all we have to do is
4315 check for un-relaxable symbols. On an ELF system, we can't relax
4316 an externally visible symbol, because it may be overridden by a
4317 shared library. */
4318 if (S_GET_SEGMENT (fragP->fr_symbol) != segment
4319 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4320 || (OUTPUT_FLAVOR == bfd_target_elf_flavour
4321 && (S_IS_EXTERNAL (fragP->fr_symbol)
4322 || S_IS_WEAK (fragP->fr_symbol)))
4323 #endif
4324 )
4325 {
4326 /* Symbol is undefined in this segment, or we need to keep a
4327 reloc so that weak symbols can be overridden. */
4328 int size = (fragP->fr_subtype & CODE16) ? 2 : 4;
4329 RELOC_ENUM reloc_type;
4330 unsigned char *opcode;
4331 int old_fr_fix;
4332
4333 if (fragP->fr_var != NO_RELOC)
4334 reloc_type = fragP->fr_var;
4335 else if (size == 2)
4336 reloc_type = BFD_RELOC_16_PCREL;
4337 else
4338 reloc_type = BFD_RELOC_32_PCREL;
4339
4340 old_fr_fix = fragP->fr_fix;
4341 opcode = (unsigned char *) fragP->fr_opcode;
4342
4343 switch (TYPE_FROM_RELAX_STATE (fragP->fr_subtype))
4344 {
4345 case UNCOND_JUMP:
4346 /* Make jmp (0xeb) a (d)word displacement jump. */
4347 opcode[0] = 0xe9;
4348 fragP->fr_fix += size;
4349 fix_new (fragP, old_fr_fix, size,
4350 fragP->fr_symbol,
4351 fragP->fr_offset, 1,
4352 reloc_type);
4353 break;
4354
4355 case COND_JUMP86:
4356 if (size == 2
4357 && (!no_cond_jump_promotion || fragP->fr_var != NO_RELOC))
4358 {
4359 /* Negate the condition, and branch past an
4360 unconditional jump. */
4361 opcode[0] ^= 1;
4362 opcode[1] = 3;
4363 /* Insert an unconditional jump. */
4364 opcode[2] = 0xe9;
4365 /* We added two extra opcode bytes, and have a two byte
4366 offset. */
4367 fragP->fr_fix += 2 + 2;
4368 fix_new (fragP, old_fr_fix + 2, 2,
4369 fragP->fr_symbol,
4370 fragP->fr_offset, 1,
4371 reloc_type);
4372 break;
4373 }
4374 /* Fall through. */
4375
4376 case COND_JUMP:
4377 if (no_cond_jump_promotion && fragP->fr_var == NO_RELOC)
4378 {
4379 fragP->fr_fix += 1;
4380 fix_new (fragP, old_fr_fix, 1,
4381 fragP->fr_symbol,
4382 fragP->fr_offset, 1,
4383 BFD_RELOC_8_PCREL);
4384 break;
4385 }
4386
4387 /* This changes the byte-displacement jump 0x7N
4388 to the (d)word-displacement jump 0x0f,0x8N. */
4389 opcode[1] = opcode[0] + 0x10;
4390 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
4391 /* We've added an opcode byte. */
4392 fragP->fr_fix += 1 + size;
4393 fix_new (fragP, old_fr_fix + 1, size,
4394 fragP->fr_symbol,
4395 fragP->fr_offset, 1,
4396 reloc_type);
4397 break;
4398
4399 default:
4400 BAD_CASE (fragP->fr_subtype);
4401 break;
4402 }
4403 frag_wane (fragP);
4404 return fragP->fr_fix - old_fr_fix;
4405 }
4406
4407 /* Guess size depending on current relax state. Initially the relax
4408 state will correspond to a short jump and we return 1, because
4409 the variable part of the frag (the branch offset) is one byte
4410 long. However, we can relax a section more than once and in that
4411 case we must either set fr_subtype back to the unrelaxed state,
4412 or return the value for the appropriate branch. */
4413 return md_relax_table[fragP->fr_subtype].rlx_length;
4414 }
4415
4416 /* Called after relax() is finished.
4417
4418 In: Address of frag.
4419 fr_type == rs_machine_dependent.
4420 fr_subtype is what the address relaxed to.
4421
4422 Out: Any fixSs and constants are set up.
4423 Caller will turn frag into a ".space 0". */
4424
4425 #ifndef BFD_ASSEMBLER
4426 void
4427 md_convert_frag (headers, sec, fragP)
4428 object_headers *headers ATTRIBUTE_UNUSED;
4429 segT sec ATTRIBUTE_UNUSED;
4430 fragS *fragP;
4431 #else
4432 void
4433 md_convert_frag (abfd, sec, fragP)
4434 bfd *abfd ATTRIBUTE_UNUSED;
4435 segT sec ATTRIBUTE_UNUSED;
4436 fragS *fragP;
4437 #endif
4438 {
4439 unsigned char *opcode;
4440 unsigned char *where_to_put_displacement = NULL;
4441 offsetT target_address;
4442 offsetT opcode_address;
4443 unsigned int extension = 0;
4444 offsetT displacement_from_opcode_start;
4445
4446 opcode = (unsigned char *) fragP->fr_opcode;
4447
4448 /* Address we want to reach in file space. */
4449 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
4450
4451 /* Address opcode resides at in file space. */
4452 opcode_address = fragP->fr_address + fragP->fr_fix;
4453
4454 /* Displacement from opcode start to fill into instruction. */
4455 displacement_from_opcode_start = target_address - opcode_address;
4456
4457 if ((fragP->fr_subtype & BIG) == 0)
4458 {
4459 /* Don't have to change opcode. */
4460 extension = 1; /* 1 opcode + 1 displacement */
4461 where_to_put_displacement = &opcode[1];
4462 }
4463 else
4464 {
4465 if (no_cond_jump_promotion
4466 && TYPE_FROM_RELAX_STATE (fragP->fr_subtype) != UNCOND_JUMP)
4467 as_warn_where (fragP->fr_file, fragP->fr_line, _("long jump required"));
4468
4469 switch (fragP->fr_subtype)
4470 {
4471 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG):
4472 extension = 4; /* 1 opcode + 4 displacement */
4473 opcode[0] = 0xe9;
4474 where_to_put_displacement = &opcode[1];
4475 break;
4476
4477 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16):
4478 extension = 2; /* 1 opcode + 2 displacement */
4479 opcode[0] = 0xe9;
4480 where_to_put_displacement = &opcode[1];
4481 break;
4482
4483 case ENCODE_RELAX_STATE (COND_JUMP, BIG):
4484 case ENCODE_RELAX_STATE (COND_JUMP86, BIG):
4485 extension = 5; /* 2 opcode + 4 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_JUMP, BIG16):
4492 extension = 3; /* 2 opcode + 2 displacement */
4493 opcode[1] = opcode[0] + 0x10;
4494 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
4495 where_to_put_displacement = &opcode[2];
4496 break;
4497
4498 case ENCODE_RELAX_STATE (COND_JUMP86, BIG16):
4499 extension = 4;
4500 opcode[0] ^= 1;
4501 opcode[1] = 3;
4502 opcode[2] = 0xe9;
4503 where_to_put_displacement = &opcode[3];
4504 break;
4505
4506 default:
4507 BAD_CASE (fragP->fr_subtype);
4508 break;
4509 }
4510 }
4511
4512 /* Now put displacement after opcode. */
4513 md_number_to_chars ((char *) where_to_put_displacement,
4514 (valueT) (displacement_from_opcode_start - extension),
4515 DISP_SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
4516 fragP->fr_fix += extension;
4517 }
4518 \f
4519 /* Size of byte displacement jmp. */
4520 int md_short_jump_size = 2;
4521
4522 /* Size of dword displacement jmp. */
4523 int md_long_jump_size = 5;
4524
4525 /* Size of relocation record. */
4526 const int md_reloc_size = 8;
4527
4528 void
4529 md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol)
4530 char *ptr;
4531 addressT from_addr, to_addr;
4532 fragS *frag ATTRIBUTE_UNUSED;
4533 symbolS *to_symbol ATTRIBUTE_UNUSED;
4534 {
4535 offsetT offset;
4536
4537 offset = to_addr - (from_addr + 2);
4538 /* Opcode for byte-disp jump. */
4539 md_number_to_chars (ptr, (valueT) 0xeb, 1);
4540 md_number_to_chars (ptr + 1, (valueT) offset, 1);
4541 }
4542
4543 void
4544 md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
4545 char *ptr;
4546 addressT from_addr, to_addr;
4547 fragS *frag ATTRIBUTE_UNUSED;
4548 symbolS *to_symbol ATTRIBUTE_UNUSED;
4549 {
4550 offsetT offset;
4551
4552 offset = to_addr - (from_addr + 5);
4553 md_number_to_chars (ptr, (valueT) 0xe9, 1);
4554 md_number_to_chars (ptr + 1, (valueT) offset, 4);
4555 }
4556 \f
4557 /* Apply a fixup (fixS) to segment data, once it has been determined
4558 by our caller that we have all the info we need to fix it up.
4559
4560 On the 386, immediates, displacements, and data pointers are all in
4561 the same (little-endian) format, so we don't need to care about which
4562 we are handling. */
4563
4564 void
4565 md_apply_fix3 (fixP, valP, seg)
4566 /* The fix we're to put in. */
4567 fixS *fixP;
4568 /* Pointer to the value of the bits. */
4569 valueT *valP;
4570 /* Segment fix is from. */
4571 segT seg ATTRIBUTE_UNUSED;
4572 {
4573 char *p = fixP->fx_where + fixP->fx_frag->fr_literal;
4574 valueT value = *valP;
4575
4576 #if defined (BFD_ASSEMBLER) && !defined (TE_Mach)
4577 if (fixP->fx_pcrel)
4578 {
4579 switch (fixP->fx_r_type)
4580 {
4581 default:
4582 break;
4583
4584 case BFD_RELOC_32:
4585 fixP->fx_r_type = BFD_RELOC_32_PCREL;
4586 break;
4587 case BFD_RELOC_16:
4588 fixP->fx_r_type = BFD_RELOC_16_PCREL;
4589 break;
4590 case BFD_RELOC_8:
4591 fixP->fx_r_type = BFD_RELOC_8_PCREL;
4592 break;
4593 }
4594 }
4595
4596 if (fixP->fx_addsy != NULL
4597 && (fixP->fx_r_type == BFD_RELOC_32_PCREL
4598 || fixP->fx_r_type == BFD_RELOC_16_PCREL
4599 || fixP->fx_r_type == BFD_RELOC_8_PCREL)
4600 && !use_rela_relocations)
4601 {
4602 /* This is a hack. There should be a better way to handle this.
4603 This covers for the fact that bfd_install_relocation will
4604 subtract the current location (for partial_inplace, PC relative
4605 relocations); see more below. */
4606 #ifndef OBJ_AOUT
4607 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
4608 #ifdef TE_PE
4609 || OUTPUT_FLAVOR == bfd_target_coff_flavour
4610 #endif
4611 )
4612 value += fixP->fx_where + fixP->fx_frag->fr_address;
4613 #endif
4614 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4615 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
4616 {
4617 segT fseg = S_GET_SEGMENT (fixP->fx_addsy);
4618
4619 if ((fseg == seg
4620 || (symbol_section_p (fixP->fx_addsy)
4621 && fseg != absolute_section))
4622 && !S_IS_EXTERNAL (fixP->fx_addsy)
4623 && !S_IS_WEAK (fixP->fx_addsy)
4624 && S_IS_DEFINED (fixP->fx_addsy)
4625 && !S_IS_COMMON (fixP->fx_addsy))
4626 {
4627 /* Yes, we add the values in twice. This is because
4628 bfd_perform_relocation subtracts them out again. I think
4629 bfd_perform_relocation is broken, but I don't dare change
4630 it. FIXME. */
4631 value += fixP->fx_where + fixP->fx_frag->fr_address;
4632 }
4633 }
4634 #endif
4635 #if defined (OBJ_COFF) && defined (TE_PE)
4636 /* For some reason, the PE format does not store a section
4637 address offset for a PC relative symbol. */
4638 if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
4639 value += md_pcrel_from (fixP);
4640 #endif
4641 }
4642
4643 /* Fix a few things - the dynamic linker expects certain values here,
4644 and we must not dissappoint it. */
4645 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4646 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
4647 && fixP->fx_addsy)
4648 switch (fixP->fx_r_type)
4649 {
4650 case BFD_RELOC_386_PLT32:
4651 case BFD_RELOC_X86_64_PLT32:
4652 /* Make the jump instruction point to the address of the operand. At
4653 runtime we merely add the offset to the actual PLT entry. */
4654 value = -4;
4655 break;
4656
4657 case BFD_RELOC_386_GOT32:
4658 case BFD_RELOC_386_TLS_GD:
4659 case BFD_RELOC_386_TLS_LDM:
4660 case BFD_RELOC_386_TLS_LDO_32:
4661 case BFD_RELOC_386_TLS_IE_32:
4662 case BFD_RELOC_386_TLS_LE_32:
4663 case BFD_RELOC_386_TLS_LE:
4664 case BFD_RELOC_X86_64_GOT32:
4665 value = 0; /* Fully resolved at runtime. No addend. */
4666 break;
4667
4668 case BFD_RELOC_VTABLE_INHERIT:
4669 case BFD_RELOC_VTABLE_ENTRY:
4670 fixP->fx_done = 0;
4671 return;
4672
4673 default:
4674 break;
4675 }
4676 #endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) */
4677 *valP = value;
4678 #endif /* defined (BFD_ASSEMBLER) && !defined (TE_Mach) */
4679
4680 /* Are we finished with this relocation now? */
4681 if (fixP->fx_addsy == NULL)
4682 fixP->fx_done = 1;
4683 #ifdef BFD_ASSEMBLER
4684 else if (use_rela_relocations)
4685 {
4686 fixP->fx_no_overflow = 1;
4687 /* Remember value for tc_gen_reloc. */
4688 fixP->fx_addnumber = value;
4689 value = 0;
4690 }
4691 #endif
4692 md_number_to_chars (p, value, fixP->fx_size);
4693 }
4694 \f
4695 #define MAX_LITTLENUMS 6
4696
4697 /* Turn the string pointed to by litP into a floating point constant
4698 of type TYPE, and emit the appropriate bytes. The number of
4699 LITTLENUMS emitted is stored in *SIZEP. An error message is
4700 returned, or NULL on OK. */
4701
4702 char *
4703 md_atof (type, litP, sizeP)
4704 int type;
4705 char *litP;
4706 int *sizeP;
4707 {
4708 int prec;
4709 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4710 LITTLENUM_TYPE *wordP;
4711 char *t;
4712
4713 switch (type)
4714 {
4715 case 'f':
4716 case 'F':
4717 prec = 2;
4718 break;
4719
4720 case 'd':
4721 case 'D':
4722 prec = 4;
4723 break;
4724
4725 case 'x':
4726 case 'X':
4727 prec = 5;
4728 break;
4729
4730 default:
4731 *sizeP = 0;
4732 return _("Bad call to md_atof ()");
4733 }
4734 t = atof_ieee (input_line_pointer, type, words);
4735 if (t)
4736 input_line_pointer = t;
4737
4738 *sizeP = prec * sizeof (LITTLENUM_TYPE);
4739 /* This loops outputs the LITTLENUMs in REVERSE order; in accord with
4740 the bigendian 386. */
4741 for (wordP = words + prec - 1; prec--;)
4742 {
4743 md_number_to_chars (litP, (valueT) (*wordP--), sizeof (LITTLENUM_TYPE));
4744 litP += sizeof (LITTLENUM_TYPE);
4745 }
4746 return 0;
4747 }
4748 \f
4749 char output_invalid_buf[8];
4750
4751 static char *
4752 output_invalid (c)
4753 int c;
4754 {
4755 if (ISPRINT (c))
4756 sprintf (output_invalid_buf, "'%c'", c);
4757 else
4758 sprintf (output_invalid_buf, "(0x%x)", (unsigned) c);
4759 return output_invalid_buf;
4760 }
4761
4762 /* REG_STRING starts *before* REGISTER_PREFIX. */
4763
4764 static const reg_entry *
4765 parse_register (reg_string, end_op)
4766 char *reg_string;
4767 char **end_op;
4768 {
4769 char *s = reg_string;
4770 char *p;
4771 char reg_name_given[MAX_REG_NAME_SIZE + 1];
4772 const reg_entry *r;
4773
4774 /* Skip possible REGISTER_PREFIX and possible whitespace. */
4775 if (*s == REGISTER_PREFIX)
4776 ++s;
4777
4778 if (is_space_char (*s))
4779 ++s;
4780
4781 p = reg_name_given;
4782 while ((*p++ = register_chars[(unsigned char) *s]) != '\0')
4783 {
4784 if (p >= reg_name_given + MAX_REG_NAME_SIZE)
4785 return (const reg_entry *) NULL;
4786 s++;
4787 }
4788
4789 /* For naked regs, make sure that we are not dealing with an identifier.
4790 This prevents confusing an identifier like `eax_var' with register
4791 `eax'. */
4792 if (allow_naked_reg && identifier_chars[(unsigned char) *s])
4793 return (const reg_entry *) NULL;
4794
4795 *end_op = s;
4796
4797 r = (const reg_entry *) hash_find (reg_hash, reg_name_given);
4798
4799 /* Handle floating point regs, allowing spaces in the (i) part. */
4800 if (r == i386_regtab /* %st is first entry of table */)
4801 {
4802 if (is_space_char (*s))
4803 ++s;
4804 if (*s == '(')
4805 {
4806 ++s;
4807 if (is_space_char (*s))
4808 ++s;
4809 if (*s >= '0' && *s <= '7')
4810 {
4811 r = &i386_float_regtab[*s - '0'];
4812 ++s;
4813 if (is_space_char (*s))
4814 ++s;
4815 if (*s == ')')
4816 {
4817 *end_op = s + 1;
4818 return r;
4819 }
4820 }
4821 /* We have "%st(" then garbage. */
4822 return (const reg_entry *) NULL;
4823 }
4824 }
4825
4826 if (r != NULL
4827 && (r->reg_flags & (RegRex64 | RegRex)) != 0
4828 && flag_code != CODE_64BIT)
4829 {
4830 return (const reg_entry *) NULL;
4831 }
4832
4833 return r;
4834 }
4835 \f
4836 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4837 const char *md_shortopts = "kVQ:sq";
4838 #else
4839 const char *md_shortopts = "q";
4840 #endif
4841
4842 struct option md_longopts[] = {
4843 #define OPTION_32 (OPTION_MD_BASE + 0)
4844 {"32", no_argument, NULL, OPTION_32},
4845 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4846 #define OPTION_64 (OPTION_MD_BASE + 1)
4847 {"64", no_argument, NULL, OPTION_64},
4848 #endif
4849 {NULL, no_argument, NULL, 0}
4850 };
4851 size_t md_longopts_size = sizeof (md_longopts);
4852
4853 int
4854 md_parse_option (c, arg)
4855 int c;
4856 char *arg ATTRIBUTE_UNUSED;
4857 {
4858 switch (c)
4859 {
4860 case 'q':
4861 quiet_warnings = 1;
4862 break;
4863
4864 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4865 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
4866 should be emitted or not. FIXME: Not implemented. */
4867 case 'Q':
4868 break;
4869
4870 /* -V: SVR4 argument to print version ID. */
4871 case 'V':
4872 print_version_id ();
4873 break;
4874
4875 /* -k: Ignore for FreeBSD compatibility. */
4876 case 'k':
4877 break;
4878
4879 case 's':
4880 /* -s: On i386 Solaris, this tells the native assembler to use
4881 .stab instead of .stab.excl. We always use .stab anyhow. */
4882 break;
4883
4884 case OPTION_64:
4885 {
4886 const char **list, **l;
4887
4888 list = bfd_target_list ();
4889 for (l = list; *l != NULL; l++)
4890 if (strcmp (*l, "elf64-x86-64") == 0)
4891 {
4892 default_arch = "x86_64";
4893 break;
4894 }
4895 if (*l == NULL)
4896 as_fatal (_("No compiled in support for x86_64"));
4897 free (list);
4898 }
4899 break;
4900 #endif
4901
4902 case OPTION_32:
4903 default_arch = "i386";
4904 break;
4905
4906 default:
4907 return 0;
4908 }
4909 return 1;
4910 }
4911
4912 void
4913 md_show_usage (stream)
4914 FILE *stream;
4915 {
4916 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4917 fprintf (stream, _("\
4918 -Q ignored\n\
4919 -V print assembler version number\n\
4920 -k ignored\n\
4921 -q quieten some warnings\n\
4922 -s ignored\n"));
4923 #else
4924 fprintf (stream, _("\
4925 -q quieten some warnings\n"));
4926 #endif
4927 }
4928
4929 #ifdef BFD_ASSEMBLER
4930 #if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
4931 || defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF))
4932
4933 /* Pick the target format to use. */
4934
4935 const char *
4936 i386_target_format ()
4937 {
4938 if (!strcmp (default_arch, "x86_64"))
4939 set_code_flag (CODE_64BIT);
4940 else if (!strcmp (default_arch, "i386"))
4941 set_code_flag (CODE_32BIT);
4942 else
4943 as_fatal (_("Unknown architecture"));
4944 switch (OUTPUT_FLAVOR)
4945 {
4946 #ifdef OBJ_MAYBE_AOUT
4947 case bfd_target_aout_flavour:
4948 return AOUT_TARGET_FORMAT;
4949 #endif
4950 #ifdef OBJ_MAYBE_COFF
4951 case bfd_target_coff_flavour:
4952 return "coff-i386";
4953 #endif
4954 #if defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF)
4955 case bfd_target_elf_flavour:
4956 {
4957 if (flag_code == CODE_64BIT)
4958 use_rela_relocations = 1;
4959 return flag_code == CODE_64BIT ? "elf64-x86-64" : "elf32-i386";
4960 }
4961 #endif
4962 default:
4963 abort ();
4964 return NULL;
4965 }
4966 }
4967
4968 #endif /* OBJ_MAYBE_ more than one */
4969
4970 #if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF))
4971 void i386_elf_emit_arch_note ()
4972 {
4973 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
4974 && cpu_arch_name != NULL)
4975 {
4976 char *p;
4977 asection *seg = now_seg;
4978 subsegT subseg = now_subseg;
4979 Elf_Internal_Note i_note;
4980 Elf_External_Note e_note;
4981 asection *note_secp;
4982 int len;
4983
4984 /* Create the .note section. */
4985 note_secp = subseg_new (".note", 0);
4986 bfd_set_section_flags (stdoutput,
4987 note_secp,
4988 SEC_HAS_CONTENTS | SEC_READONLY);
4989
4990 /* Process the arch string. */
4991 len = strlen (cpu_arch_name);
4992
4993 i_note.namesz = len + 1;
4994 i_note.descsz = 0;
4995 i_note.type = NT_ARCH;
4996 p = frag_more (sizeof (e_note.namesz));
4997 md_number_to_chars (p, (valueT) i_note.namesz, sizeof (e_note.namesz));
4998 p = frag_more (sizeof (e_note.descsz));
4999 md_number_to_chars (p, (valueT) i_note.descsz, sizeof (e_note.descsz));
5000 p = frag_more (sizeof (e_note.type));
5001 md_number_to_chars (p, (valueT) i_note.type, sizeof (e_note.type));
5002 p = frag_more (len + 1);
5003 strcpy (p, cpu_arch_name);
5004
5005 frag_align (2, 0, 0);
5006
5007 subseg_set (seg, subseg);
5008 }
5009 }
5010 #endif
5011 #endif /* BFD_ASSEMBLER */
5012 \f
5013 symbolS *
5014 md_undefined_symbol (name)
5015 char *name;
5016 {
5017 if (name[0] == GLOBAL_OFFSET_TABLE_NAME[0]
5018 && name[1] == GLOBAL_OFFSET_TABLE_NAME[1]
5019 && name[2] == GLOBAL_OFFSET_TABLE_NAME[2]
5020 && strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0)
5021 {
5022 if (!GOT_symbol)
5023 {
5024 if (symbol_find (name))
5025 as_bad (_("GOT already in symbol table"));
5026 GOT_symbol = symbol_new (name, undefined_section,
5027 (valueT) 0, &zero_address_frag);
5028 };
5029 return GOT_symbol;
5030 }
5031 return 0;
5032 }
5033
5034 /* Round up a section size to the appropriate boundary. */
5035
5036 valueT
5037 md_section_align (segment, size)
5038 segT segment ATTRIBUTE_UNUSED;
5039 valueT size;
5040 {
5041 #ifdef BFD_ASSEMBLER
5042 #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
5043 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
5044 {
5045 /* For a.out, force the section size to be aligned. If we don't do
5046 this, BFD will align it for us, but it will not write out the
5047 final bytes of the section. This may be a bug in BFD, but it is
5048 easier to fix it here since that is how the other a.out targets
5049 work. */
5050 int align;
5051
5052 align = bfd_get_section_alignment (stdoutput, segment);
5053 size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
5054 }
5055 #endif
5056 #endif
5057
5058 return size;
5059 }
5060
5061 /* On the i386, PC-relative offsets are relative to the start of the
5062 next instruction. That is, the address of the offset, plus its
5063 size, since the offset is always the last part of the insn. */
5064
5065 long
5066 md_pcrel_from (fixP)
5067 fixS *fixP;
5068 {
5069 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
5070 }
5071
5072 #ifndef I386COFF
5073
5074 static void
5075 s_bss (ignore)
5076 int ignore ATTRIBUTE_UNUSED;
5077 {
5078 int temp;
5079
5080 temp = get_absolute_expression ();
5081 subseg_set (bss_section, (subsegT) temp);
5082 demand_empty_rest_of_line ();
5083 }
5084
5085 #endif
5086
5087 #ifdef BFD_ASSEMBLER
5088
5089 void
5090 i386_validate_fix (fixp)
5091 fixS *fixp;
5092 {
5093 if (fixp->fx_subsy && fixp->fx_subsy == GOT_symbol)
5094 {
5095 /* GOTOFF relocation are nonsense in 64bit mode. */
5096 if (fixp->fx_r_type == BFD_RELOC_32_PCREL)
5097 {
5098 if (flag_code != CODE_64BIT)
5099 abort ();
5100 fixp->fx_r_type = BFD_RELOC_X86_64_GOTPCREL;
5101 }
5102 else
5103 {
5104 if (flag_code == CODE_64BIT)
5105 abort ();
5106 fixp->fx_r_type = BFD_RELOC_386_GOTOFF;
5107 }
5108 fixp->fx_subsy = 0;
5109 }
5110 }
5111
5112 boolean
5113 i386_force_relocation (fixp)
5114 fixS *fixp;
5115 {
5116 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
5117 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
5118 return 1;
5119
5120 return S_FORCE_RELOC (fixp->fx_addsy);
5121 }
5122
5123 arelent *
5124 tc_gen_reloc (section, fixp)
5125 asection *section ATTRIBUTE_UNUSED;
5126 fixS *fixp;
5127 {
5128 arelent *rel;
5129 bfd_reloc_code_real_type code;
5130
5131 switch (fixp->fx_r_type)
5132 {
5133 case BFD_RELOC_X86_64_PLT32:
5134 case BFD_RELOC_X86_64_GOT32:
5135 case BFD_RELOC_X86_64_GOTPCREL:
5136 case BFD_RELOC_386_PLT32:
5137 case BFD_RELOC_386_GOT32:
5138 case BFD_RELOC_386_GOTOFF:
5139 case BFD_RELOC_386_GOTPC:
5140 case BFD_RELOC_386_TLS_GD:
5141 case BFD_RELOC_386_TLS_LDM:
5142 case BFD_RELOC_386_TLS_LDO_32:
5143 case BFD_RELOC_386_TLS_IE_32:
5144 case BFD_RELOC_386_TLS_LE_32:
5145 case BFD_RELOC_386_TLS_LE:
5146 case BFD_RELOC_X86_64_32S:
5147 case BFD_RELOC_RVA:
5148 case BFD_RELOC_VTABLE_ENTRY:
5149 case BFD_RELOC_VTABLE_INHERIT:
5150 code = fixp->fx_r_type;
5151 break;
5152 default:
5153 if (fixp->fx_pcrel)
5154 {
5155 switch (fixp->fx_size)
5156 {
5157 default:
5158 as_bad_where (fixp->fx_file, fixp->fx_line,
5159 _("can not do %d byte pc-relative relocation"),
5160 fixp->fx_size);
5161 code = BFD_RELOC_32_PCREL;
5162 break;
5163 case 1: code = BFD_RELOC_8_PCREL; break;
5164 case 2: code = BFD_RELOC_16_PCREL; break;
5165 case 4: code = BFD_RELOC_32_PCREL; break;
5166 }
5167 }
5168 else
5169 {
5170 switch (fixp->fx_size)
5171 {
5172 default:
5173 as_bad_where (fixp->fx_file, fixp->fx_line,
5174 _("can not do %d byte relocation"),
5175 fixp->fx_size);
5176 code = BFD_RELOC_32;
5177 break;
5178 case 1: code = BFD_RELOC_8; break;
5179 case 2: code = BFD_RELOC_16; break;
5180 case 4: code = BFD_RELOC_32; break;
5181 #ifdef BFD64
5182 case 8: code = BFD_RELOC_64; break;
5183 #endif
5184 }
5185 }
5186 break;
5187 }
5188
5189 if (code == BFD_RELOC_32
5190 && GOT_symbol
5191 && fixp->fx_addsy == GOT_symbol)
5192 {
5193 /* We don't support GOTPC on 64bit targets. */
5194 if (flag_code == CODE_64BIT)
5195 abort ();
5196 code = BFD_RELOC_386_GOTPC;
5197 }
5198
5199 rel = (arelent *) xmalloc (sizeof (arelent));
5200 rel->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
5201 *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
5202
5203 rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
5204 if (!use_rela_relocations)
5205 {
5206 /* HACK: Since i386 ELF uses Rel instead of Rela, encode the
5207 vtable entry to be used in the relocation's section offset. */
5208 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
5209 rel->address = fixp->fx_offset;
5210
5211 rel->addend = 0;
5212 }
5213 /* Use the rela in 64bit mode. */
5214 else
5215 {
5216 if (!fixp->fx_pcrel)
5217 rel->addend = fixp->fx_offset;
5218 else
5219 switch (code)
5220 {
5221 case BFD_RELOC_X86_64_PLT32:
5222 case BFD_RELOC_X86_64_GOT32:
5223 case BFD_RELOC_X86_64_GOTPCREL:
5224 rel->addend = fixp->fx_offset - fixp->fx_size;
5225 break;
5226 default:
5227 rel->addend = (section->vma
5228 - fixp->fx_size
5229 + fixp->fx_addnumber
5230 + md_pcrel_from (fixp));
5231 break;
5232 }
5233 }
5234
5235 rel->howto = bfd_reloc_type_lookup (stdoutput, code);
5236 if (rel->howto == NULL)
5237 {
5238 as_bad_where (fixp->fx_file, fixp->fx_line,
5239 _("cannot represent relocation type %s"),
5240 bfd_get_reloc_code_name (code));
5241 /* Set howto to a garbage value so that we can keep going. */
5242 rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
5243 assert (rel->howto != NULL);
5244 }
5245
5246 return rel;
5247 }
5248
5249 #else /* !BFD_ASSEMBLER */
5250
5251 #if (defined(OBJ_AOUT) | defined(OBJ_BOUT))
5252 void
5253 tc_aout_fix_to_chars (where, fixP, segment_address_in_file)
5254 char *where;
5255 fixS *fixP;
5256 relax_addressT segment_address_in_file;
5257 {
5258 /* In: length of relocation (or of address) in chars: 1, 2 or 4.
5259 Out: GNU LD relocation length code: 0, 1, or 2. */
5260
5261 static const unsigned char nbytes_r_length[] = { 42, 0, 1, 42, 2 };
5262 long r_symbolnum;
5263
5264 know (fixP->fx_addsy != NULL);
5265
5266 md_number_to_chars (where,
5267 (valueT) (fixP->fx_frag->fr_address
5268 + fixP->fx_where - segment_address_in_file),
5269 4);
5270
5271 r_symbolnum = (S_IS_DEFINED (fixP->fx_addsy)
5272 ? S_GET_TYPE (fixP->fx_addsy)
5273 : fixP->fx_addsy->sy_number);
5274
5275 where[6] = (r_symbolnum >> 16) & 0x0ff;
5276 where[5] = (r_symbolnum >> 8) & 0x0ff;
5277 where[4] = r_symbolnum & 0x0ff;
5278 where[7] = ((((!S_IS_DEFINED (fixP->fx_addsy)) << 3) & 0x08)
5279 | ((nbytes_r_length[fixP->fx_size] << 1) & 0x06)
5280 | (((fixP->fx_pcrel << 0) & 0x01) & 0x0f));
5281 }
5282
5283 #endif /* OBJ_AOUT or OBJ_BOUT. */
5284
5285 #if defined (I386COFF)
5286
5287 short
5288 tc_coff_fix2rtype (fixP)
5289 fixS *fixP;
5290 {
5291 if (fixP->fx_r_type == R_IMAGEBASE)
5292 return R_IMAGEBASE;
5293
5294 return (fixP->fx_pcrel ?
5295 (fixP->fx_size == 1 ? R_PCRBYTE :
5296 fixP->fx_size == 2 ? R_PCRWORD :
5297 R_PCRLONG) :
5298 (fixP->fx_size == 1 ? R_RELBYTE :
5299 fixP->fx_size == 2 ? R_RELWORD :
5300 R_DIR32));
5301 }
5302
5303 int
5304 tc_coff_sizemachdep (frag)
5305 fragS *frag;
5306 {
5307 if (frag->fr_next)
5308 return (frag->fr_next->fr_address - frag->fr_address);
5309 else
5310 return 0;
5311 }
5312
5313 #endif /* I386COFF */
5314
5315 #endif /* !BFD_ASSEMBLER */
5316 \f
5317 /* Parse operands using Intel syntax. This implements a recursive descent
5318 parser based on the BNF grammar published in Appendix B of the MASM 6.1
5319 Programmer's Guide.
5320
5321 FIXME: We do not recognize the full operand grammar defined in the MASM
5322 documentation. In particular, all the structure/union and
5323 high-level macro operands are missing.
5324
5325 Uppercase words are terminals, lower case words are non-terminals.
5326 Objects surrounded by double brackets '[[' ']]' are optional. Vertical
5327 bars '|' denote choices. Most grammar productions are implemented in
5328 functions called 'intel_<production>'.
5329
5330 Initial production is 'expr'.
5331
5332 addOp + | -
5333
5334 alpha [a-zA-Z]
5335
5336 byteRegister AL | AH | BL | BH | CL | CH | DL | DH
5337
5338 constant digits [[ radixOverride ]]
5339
5340 dataType BYTE | WORD | DWORD | QWORD | XWORD
5341
5342 digits decdigit
5343 | digits decdigit
5344 | digits hexdigit
5345
5346 decdigit [0-9]
5347
5348 e05 e05 addOp e06
5349 | e06
5350
5351 e06 e06 mulOp e09
5352 | e09
5353
5354 e09 OFFSET e10
5355 | e09 PTR e10
5356 | e09 : e10
5357 | e10
5358
5359 e10 e10 [ expr ]
5360 | e11
5361
5362 e11 ( expr )
5363 | [ expr ]
5364 | constant
5365 | dataType
5366 | id
5367 | $
5368 | register
5369
5370 => expr SHORT e05
5371 | e05
5372
5373 gpRegister AX | EAX | BX | EBX | CX | ECX | DX | EDX
5374 | BP | EBP | SP | ESP | DI | EDI | SI | ESI
5375
5376 hexdigit a | b | c | d | e | f
5377 | A | B | C | D | E | F
5378
5379 id alpha
5380 | id alpha
5381 | id decdigit
5382
5383 mulOp * | / | MOD
5384
5385 quote " | '
5386
5387 register specialRegister
5388 | gpRegister
5389 | byteRegister
5390
5391 segmentRegister CS | DS | ES | FS | GS | SS
5392
5393 specialRegister CR0 | CR2 | CR3
5394 | DR0 | DR1 | DR2 | DR3 | DR6 | DR7
5395 | TR3 | TR4 | TR5 | TR6 | TR7
5396
5397 We simplify the grammar in obvious places (e.g., register parsing is
5398 done by calling parse_register) and eliminate immediate left recursion
5399 to implement a recursive-descent parser.
5400
5401 expr SHORT e05
5402 | e05
5403
5404 e05 e06 e05'
5405
5406 e05' addOp e06 e05'
5407 | Empty
5408
5409 e06 e09 e06'
5410
5411 e06' mulOp e09 e06'
5412 | Empty
5413
5414 e09 OFFSET e10 e09'
5415 | e10 e09'
5416
5417 e09' PTR e10 e09'
5418 | : e10 e09'
5419 | Empty
5420
5421 e10 e11 e10'
5422
5423 e10' [ expr ] e10'
5424 | Empty
5425
5426 e11 ( expr )
5427 | [ expr ]
5428 | BYTE
5429 | WORD
5430 | DWORD
5431 | QWORD
5432 | XWORD
5433 | .
5434 | $
5435 | register
5436 | id
5437 | constant */
5438
5439 /* Parsing structure for the intel syntax parser. Used to implement the
5440 semantic actions for the operand grammar. */
5441 struct intel_parser_s
5442 {
5443 char *op_string; /* The string being parsed. */
5444 int got_a_float; /* Whether the operand is a float. */
5445 int op_modifier; /* Operand modifier. */
5446 int is_mem; /* 1 if operand is memory reference. */
5447 const reg_entry *reg; /* Last register reference found. */
5448 char *disp; /* Displacement string being built. */
5449 };
5450
5451 static struct intel_parser_s intel_parser;
5452
5453 /* Token structure for parsing intel syntax. */
5454 struct intel_token
5455 {
5456 int code; /* Token code. */
5457 const reg_entry *reg; /* Register entry for register tokens. */
5458 char *str; /* String representation. */
5459 };
5460
5461 static struct intel_token cur_token, prev_token;
5462
5463 /* Token codes for the intel parser. Since T_SHORT is already used
5464 by COFF, undefine it first to prevent a warning. */
5465 #define T_NIL -1
5466 #define T_CONST 1
5467 #define T_REG 2
5468 #define T_BYTE 3
5469 #define T_WORD 4
5470 #define T_DWORD 5
5471 #define T_QWORD 6
5472 #define T_XWORD 7
5473 #undef T_SHORT
5474 #define T_SHORT 8
5475 #define T_OFFSET 9
5476 #define T_PTR 10
5477 #define T_ID 11
5478
5479 /* Prototypes for intel parser functions. */
5480 static int intel_match_token PARAMS ((int code));
5481 static void intel_get_token PARAMS ((void));
5482 static void intel_putback_token PARAMS ((void));
5483 static int intel_expr PARAMS ((void));
5484 static int intel_e05 PARAMS ((void));
5485 static int intel_e05_1 PARAMS ((void));
5486 static int intel_e06 PARAMS ((void));
5487 static int intel_e06_1 PARAMS ((void));
5488 static int intel_e09 PARAMS ((void));
5489 static int intel_e09_1 PARAMS ((void));
5490 static int intel_e10 PARAMS ((void));
5491 static int intel_e10_1 PARAMS ((void));
5492 static int intel_e11 PARAMS ((void));
5493
5494 static int
5495 i386_intel_operand (operand_string, got_a_float)
5496 char *operand_string;
5497 int got_a_float;
5498 {
5499 int ret;
5500 char *p;
5501
5502 /* Initialize token holders. */
5503 cur_token.code = prev_token.code = T_NIL;
5504 cur_token.reg = prev_token.reg = NULL;
5505 cur_token.str = prev_token.str = NULL;
5506
5507 /* Initialize parser structure. */
5508 p = intel_parser.op_string = (char *) malloc (strlen (operand_string) + 1);
5509 if (p == NULL)
5510 abort ();
5511 strcpy (intel_parser.op_string, operand_string);
5512 intel_parser.got_a_float = got_a_float;
5513 intel_parser.op_modifier = -1;
5514 intel_parser.is_mem = 0;
5515 intel_parser.reg = NULL;
5516 intel_parser.disp = (char *) malloc (strlen (operand_string) + 1);
5517 if (intel_parser.disp == NULL)
5518 abort ();
5519 intel_parser.disp[0] = '\0';
5520
5521 /* Read the first token and start the parser. */
5522 intel_get_token ();
5523 ret = intel_expr ();
5524
5525 if (ret)
5526 {
5527 /* If we found a memory reference, hand it over to i386_displacement
5528 to fill in the rest of the operand fields. */
5529 if (intel_parser.is_mem)
5530 {
5531 if ((i.mem_operands == 1
5532 && (current_templates->start->opcode_modifier & IsString) == 0)
5533 || i.mem_operands == 2)
5534 {
5535 as_bad (_("too many memory references for '%s'"),
5536 current_templates->start->name);
5537 ret = 0;
5538 }
5539 else
5540 {
5541 char *s = intel_parser.disp;
5542 i.mem_operands++;
5543
5544 /* Add the displacement expression. */
5545 if (*s != '\0')
5546 ret = i386_displacement (s, s + strlen (s))
5547 && i386_index_check (s);
5548 }
5549 }
5550
5551 /* Constant and OFFSET expressions are handled by i386_immediate. */
5552 else if (intel_parser.op_modifier == OFFSET_FLAT
5553 || intel_parser.reg == NULL)
5554 ret = i386_immediate (intel_parser.disp);
5555 }
5556
5557 free (p);
5558 free (intel_parser.disp);
5559
5560 return ret;
5561 }
5562
5563 /* expr SHORT e05
5564 | e05 */
5565 static int
5566 intel_expr ()
5567 {
5568 /* expr SHORT e05 */
5569 if (cur_token.code == T_SHORT)
5570 {
5571 intel_parser.op_modifier = SHORT;
5572 intel_match_token (T_SHORT);
5573
5574 return (intel_e05 ());
5575 }
5576
5577 /* expr e05 */
5578 else
5579 return intel_e05 ();
5580 }
5581
5582 /* e05 e06 e05'
5583
5584 e05' addOp e06 e05'
5585 | Empty */
5586 static int
5587 intel_e05 ()
5588 {
5589 return (intel_e06 () && intel_e05_1 ());
5590 }
5591
5592 static int
5593 intel_e05_1 ()
5594 {
5595 /* e05' addOp e06 e05' */
5596 if (cur_token.code == '+' || cur_token.code == '-')
5597 {
5598 strcat (intel_parser.disp, cur_token.str);
5599 intel_match_token (cur_token.code);
5600
5601 return (intel_e06 () && intel_e05_1 ());
5602 }
5603
5604 /* e05' Empty */
5605 else
5606 return 1;
5607 }
5608
5609 /* e06 e09 e06'
5610
5611 e06' mulOp e09 e06'
5612 | Empty */
5613 static int
5614 intel_e06 ()
5615 {
5616 return (intel_e09 () && intel_e06_1 ());
5617 }
5618
5619 static int
5620 intel_e06_1 ()
5621 {
5622 /* e06' mulOp e09 e06' */
5623 if (cur_token.code == '*' || cur_token.code == '/')
5624 {
5625 strcat (intel_parser.disp, cur_token.str);
5626 intel_match_token (cur_token.code);
5627
5628 return (intel_e09 () && intel_e06_1 ());
5629 }
5630
5631 /* e06' Empty */
5632 else
5633 return 1;
5634 }
5635
5636 /* e09 OFFSET e10 e09'
5637 | e10 e09'
5638
5639 e09' PTR e10 e09'
5640 | : e10 e09'
5641 | Empty */
5642 static int
5643 intel_e09 ()
5644 {
5645 /* e09 OFFSET e10 e09' */
5646 if (cur_token.code == T_OFFSET)
5647 {
5648 intel_parser.is_mem = 0;
5649 intel_parser.op_modifier = OFFSET_FLAT;
5650 intel_match_token (T_OFFSET);
5651
5652 return (intel_e10 () && intel_e09_1 ());
5653 }
5654
5655 /* e09 e10 e09' */
5656 else
5657 return (intel_e10 () && intel_e09_1 ());
5658 }
5659
5660 static int
5661 intel_e09_1 ()
5662 {
5663 /* e09' PTR e10 e09' */
5664 if (cur_token.code == T_PTR)
5665 {
5666 if (prev_token.code == T_BYTE)
5667 i.suffix = BYTE_MNEM_SUFFIX;
5668
5669 else if (prev_token.code == T_WORD)
5670 {
5671 if (intel_parser.got_a_float == 2) /* "fi..." */
5672 i.suffix = SHORT_MNEM_SUFFIX;
5673 else
5674 i.suffix = WORD_MNEM_SUFFIX;
5675 }
5676
5677 else if (prev_token.code == T_DWORD)
5678 {
5679 if (intel_parser.got_a_float == 1) /* "f..." */
5680 i.suffix = SHORT_MNEM_SUFFIX;
5681 else
5682 i.suffix = LONG_MNEM_SUFFIX;
5683 }
5684
5685 else if (prev_token.code == T_QWORD)
5686 {
5687 if (intel_parser.got_a_float == 1) /* "f..." */
5688 i.suffix = LONG_MNEM_SUFFIX;
5689 else
5690 i.suffix = QWORD_MNEM_SUFFIX;
5691 }
5692
5693 else if (prev_token.code == T_XWORD)
5694 i.suffix = LONG_DOUBLE_MNEM_SUFFIX;
5695
5696 else
5697 {
5698 as_bad (_("Unknown operand modifier `%s'\n"), prev_token.str);
5699 return 0;
5700 }
5701
5702 intel_match_token (T_PTR);
5703
5704 return (intel_e10 () && intel_e09_1 ());
5705 }
5706
5707 /* e09 : e10 e09' */
5708 else if (cur_token.code == ':')
5709 {
5710 /* Mark as a memory operand only if it's not already known to be an
5711 offset expression. */
5712 if (intel_parser.op_modifier != OFFSET_FLAT)
5713 intel_parser.is_mem = 1;
5714
5715 return (intel_match_token (':') && intel_e10 () && intel_e09_1 ());
5716 }
5717
5718 /* e09' Empty */
5719 else
5720 return 1;
5721 }
5722
5723 /* e10 e11 e10'
5724
5725 e10' [ expr ] e10'
5726 | Empty */
5727 static int
5728 intel_e10 ()
5729 {
5730 return (intel_e11 () && intel_e10_1 ());
5731 }
5732
5733 static int
5734 intel_e10_1 ()
5735 {
5736 /* e10' [ expr ] e10' */
5737 if (cur_token.code == '[')
5738 {
5739 intel_match_token ('[');
5740
5741 /* Mark as a memory operand only if it's not already known to be an
5742 offset expression. If it's an offset expression, we need to keep
5743 the brace in. */
5744 if (intel_parser.op_modifier != OFFSET_FLAT)
5745 intel_parser.is_mem = 1;
5746 else
5747 strcat (intel_parser.disp, "[");
5748
5749 /* Add a '+' to the displacement string if necessary. */
5750 if (*intel_parser.disp != '\0'
5751 && *(intel_parser.disp + strlen (intel_parser.disp) - 1) != '+')
5752 strcat (intel_parser.disp, "+");
5753
5754 if (intel_expr () && intel_match_token (']'))
5755 {
5756 /* Preserve brackets when the operand is an offset expression. */
5757 if (intel_parser.op_modifier == OFFSET_FLAT)
5758 strcat (intel_parser.disp, "]");
5759
5760 return intel_e10_1 ();
5761 }
5762 else
5763 return 0;
5764 }
5765
5766 /* e10' Empty */
5767 else
5768 return 1;
5769 }
5770
5771 /* e11 ( expr )
5772 | [ expr ]
5773 | BYTE
5774 | WORD
5775 | DWORD
5776 | QWORD
5777 | XWORD
5778 | $
5779 | .
5780 | register
5781 | id
5782 | constant */
5783 static int
5784 intel_e11 ()
5785 {
5786 /* e11 ( expr ) */
5787 if (cur_token.code == '(')
5788 {
5789 intel_match_token ('(');
5790 strcat (intel_parser.disp, "(");
5791
5792 if (intel_expr () && intel_match_token (')'))
5793 {
5794 strcat (intel_parser.disp, ")");
5795 return 1;
5796 }
5797 else
5798 return 0;
5799 }
5800
5801 /* e11 [ expr ] */
5802 else if (cur_token.code == '[')
5803 {
5804 intel_match_token ('[');
5805
5806 /* Mark as a memory operand only if it's not already known to be an
5807 offset expression. If it's an offset expression, we need to keep
5808 the brace in. */
5809 if (intel_parser.op_modifier != OFFSET_FLAT)
5810 intel_parser.is_mem = 1;
5811 else
5812 strcat (intel_parser.disp, "[");
5813
5814 /* Operands for jump/call inside brackets denote absolute addresses. */
5815 if (current_templates->start->opcode_modifier & Jump
5816 || current_templates->start->opcode_modifier & JumpDword
5817 || current_templates->start->opcode_modifier & JumpByte
5818 || current_templates->start->opcode_modifier & JumpInterSegment)
5819 i.types[this_operand] |= JumpAbsolute;
5820
5821 /* Add a '+' to the displacement string if necessary. */
5822 if (*intel_parser.disp != '\0'
5823 && *(intel_parser.disp + strlen (intel_parser.disp) - 1) != '+')
5824 strcat (intel_parser.disp, "+");
5825
5826 if (intel_expr () && intel_match_token (']'))
5827 {
5828 /* Preserve brackets when the operand is an offset expression. */
5829 if (intel_parser.op_modifier == OFFSET_FLAT)
5830 strcat (intel_parser.disp, "]");
5831
5832 return 1;
5833 }
5834 else
5835 return 0;
5836 }
5837
5838 /* e11 BYTE
5839 | WORD
5840 | DWORD
5841 | QWORD
5842 | XWORD */
5843 else if (cur_token.code == T_BYTE
5844 || cur_token.code == T_WORD
5845 || cur_token.code == T_DWORD
5846 || cur_token.code == T_QWORD
5847 || cur_token.code == T_XWORD)
5848 {
5849 intel_match_token (cur_token.code);
5850
5851 return 1;
5852 }
5853
5854 /* e11 $
5855 | . */
5856 else if (cur_token.code == '$' || cur_token.code == '.')
5857 {
5858 strcat (intel_parser.disp, cur_token.str);
5859 intel_match_token (cur_token.code);
5860
5861 /* Mark as a memory operand only if it's not already known to be an
5862 offset expression. */
5863 if (intel_parser.op_modifier != OFFSET_FLAT)
5864 intel_parser.is_mem = 1;
5865
5866 return 1;
5867 }
5868
5869 /* e11 register */
5870 else if (cur_token.code == T_REG)
5871 {
5872 const reg_entry *reg = intel_parser.reg = cur_token.reg;
5873
5874 intel_match_token (T_REG);
5875
5876 /* Check for segment change. */
5877 if (cur_token.code == ':')
5878 {
5879 if (reg->reg_type & (SReg2 | SReg3))
5880 {
5881 switch (reg->reg_num)
5882 {
5883 case 0:
5884 i.seg[i.mem_operands] = &es;
5885 break;
5886 case 1:
5887 i.seg[i.mem_operands] = &cs;
5888 break;
5889 case 2:
5890 i.seg[i.mem_operands] = &ss;
5891 break;
5892 case 3:
5893 i.seg[i.mem_operands] = &ds;
5894 break;
5895 case 4:
5896 i.seg[i.mem_operands] = &fs;
5897 break;
5898 case 5:
5899 i.seg[i.mem_operands] = &gs;
5900 break;
5901 }
5902 }
5903 else
5904 {
5905 as_bad (_("`%s' is not a valid segment register"), reg->reg_name);
5906 return 0;
5907 }
5908 }
5909
5910 /* Not a segment register. Check for register scaling. */
5911 else if (cur_token.code == '*')
5912 {
5913 if (!intel_parser.is_mem)
5914 {
5915 as_bad (_("Register scaling only allowed in memory operands."));
5916 return 0;
5917 }
5918
5919 /* What follows must be a valid scale. */
5920 if (intel_match_token ('*')
5921 && strchr ("01248", *cur_token.str))
5922 {
5923 i.index_reg = reg;
5924 i.types[this_operand] |= BaseIndex;
5925
5926 /* Set the scale after setting the register (otherwise,
5927 i386_scale will complain) */
5928 i386_scale (cur_token.str);
5929 intel_match_token (T_CONST);
5930 }
5931 else
5932 {
5933 as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
5934 cur_token.str);
5935 return 0;
5936 }
5937 }
5938
5939 /* No scaling. If this is a memory operand, the register is either a
5940 base register (first occurrence) or an index register (second
5941 occurrence). */
5942 else if (intel_parser.is_mem && !(reg->reg_type & (SReg2 | SReg3)))
5943 {
5944 if (i.base_reg && i.index_reg)
5945 {
5946 as_bad (_("Too many register references in memory operand.\n"));
5947 return 0;
5948 }
5949
5950 if (i.base_reg == NULL)
5951 i.base_reg = reg;
5952 else
5953 i.index_reg = reg;
5954
5955 i.types[this_operand] |= BaseIndex;
5956 }
5957
5958 /* Offset modifier. Add the register to the displacement string to be
5959 parsed as an immediate expression after we're done. */
5960 else if (intel_parser.op_modifier == OFFSET_FLAT)
5961 strcat (intel_parser.disp, reg->reg_name);
5962
5963 /* It's neither base nor index nor offset. */
5964 else
5965 {
5966 i.types[this_operand] |= reg->reg_type & ~BaseIndex;
5967 i.op[this_operand].regs = reg;
5968 i.reg_operands++;
5969 }
5970
5971 /* Since registers are not part of the displacement string (except
5972 when we're parsing offset operands), we may need to remove any
5973 preceding '+' from the displacement string. */
5974 if (*intel_parser.disp != '\0'
5975 && intel_parser.op_modifier != OFFSET_FLAT)
5976 {
5977 char *s = intel_parser.disp;
5978 s += strlen (s) - 1;
5979 if (*s == '+')
5980 *s = '\0';
5981 }
5982
5983 return 1;
5984 }
5985
5986 /* e11 id */
5987 else if (cur_token.code == T_ID)
5988 {
5989 /* Add the identifier to the displacement string. */
5990 strcat (intel_parser.disp, cur_token.str);
5991 intel_match_token (T_ID);
5992
5993 /* The identifier represents a memory reference only if it's not
5994 preceded by an offset modifier. */
5995 if (intel_parser.op_modifier != OFFSET_FLAT)
5996 intel_parser.is_mem = 1;
5997
5998 return 1;
5999 }
6000
6001 /* e11 constant */
6002 else if (cur_token.code == T_CONST
6003 || cur_token.code == '-'
6004 || cur_token.code == '+')
6005 {
6006 char *save_str;
6007
6008 /* Allow constants that start with `+' or `-'. */
6009 if (cur_token.code == '-' || cur_token.code == '+')
6010 {
6011 strcat (intel_parser.disp, cur_token.str);
6012 intel_match_token (cur_token.code);
6013 if (cur_token.code != T_CONST)
6014 {
6015 as_bad (_("Syntax error. Expecting a constant. Got `%s'.\n"),
6016 cur_token.str);
6017 return 0;
6018 }
6019 }
6020
6021 save_str = (char *) malloc (strlen (cur_token.str) + 1);
6022 if (save_str == NULL)
6023 abort ();
6024 strcpy (save_str, cur_token.str);
6025
6026 /* Get the next token to check for register scaling. */
6027 intel_match_token (cur_token.code);
6028
6029 /* Check if this constant is a scaling factor for an index register. */
6030 if (cur_token.code == '*')
6031 {
6032 if (intel_match_token ('*') && cur_token.code == T_REG)
6033 {
6034 if (!intel_parser.is_mem)
6035 {
6036 as_bad (_("Register scaling only allowed in memory operands."));
6037 return 0;
6038 }
6039
6040 /* The constant is followed by `* reg', so it must be
6041 a valid scale. */
6042 if (strchr ("01248", *save_str))
6043 {
6044 i.index_reg = cur_token.reg;
6045 i.types[this_operand] |= BaseIndex;
6046
6047 /* Set the scale after setting the register (otherwise,
6048 i386_scale will complain) */
6049 i386_scale (save_str);
6050 intel_match_token (T_REG);
6051
6052 /* Since registers are not part of the displacement
6053 string, we may need to remove any preceding '+' from
6054 the displacement string. */
6055 if (*intel_parser.disp != '\0')
6056 {
6057 char *s = intel_parser.disp;
6058 s += strlen (s) - 1;
6059 if (*s == '+')
6060 *s = '\0';
6061 }
6062
6063 free (save_str);
6064
6065 return 1;
6066 }
6067 else
6068 return 0;
6069 }
6070
6071 /* The constant was not used for register scaling. Since we have
6072 already consumed the token following `*' we now need to put it
6073 back in the stream. */
6074 else
6075 intel_putback_token ();
6076 }
6077
6078 /* Add the constant to the displacement string. */
6079 strcat (intel_parser.disp, save_str);
6080 free (save_str);
6081
6082 return 1;
6083 }
6084
6085 as_bad (_("Unrecognized token '%s'"), cur_token.str);
6086 return 0;
6087 }
6088
6089 /* Match the given token against cur_token. If they match, read the next
6090 token from the operand string. */
6091 static int
6092 intel_match_token (code)
6093 int code;
6094 {
6095 if (cur_token.code == code)
6096 {
6097 intel_get_token ();
6098 return 1;
6099 }
6100 else
6101 {
6102 as_bad (_("Unexpected token `%s'\n"), cur_token.str);
6103 return 0;
6104 }
6105 }
6106
6107 /* Read a new token from intel_parser.op_string and store it in cur_token. */
6108 static void
6109 intel_get_token ()
6110 {
6111 char *end_op;
6112 const reg_entry *reg;
6113 struct intel_token new_token;
6114
6115 new_token.code = T_NIL;
6116 new_token.reg = NULL;
6117 new_token.str = NULL;
6118
6119 /* Free the memory allocated to the previous token and move
6120 cur_token to prev_token. */
6121 if (prev_token.str)
6122 free (prev_token.str);
6123
6124 prev_token = cur_token;
6125
6126 /* Skip whitespace. */
6127 while (is_space_char (*intel_parser.op_string))
6128 intel_parser.op_string++;
6129
6130 /* Return an empty token if we find nothing else on the line. */
6131 if (*intel_parser.op_string == '\0')
6132 {
6133 cur_token = new_token;
6134 return;
6135 }
6136
6137 /* The new token cannot be larger than the remainder of the operand
6138 string. */
6139 new_token.str = (char *) malloc (strlen (intel_parser.op_string) + 1);
6140 if (new_token.str == NULL)
6141 abort ();
6142 new_token.str[0] = '\0';
6143
6144 if (strchr ("0123456789", *intel_parser.op_string))
6145 {
6146 char *p = new_token.str;
6147 char *q = intel_parser.op_string;
6148 new_token.code = T_CONST;
6149
6150 /* Allow any kind of identifier char to encompass floating point and
6151 hexadecimal numbers. */
6152 while (is_identifier_char (*q))
6153 *p++ = *q++;
6154 *p = '\0';
6155
6156 /* Recognize special symbol names [0-9][bf]. */
6157 if (strlen (intel_parser.op_string) == 2
6158 && (intel_parser.op_string[1] == 'b'
6159 || intel_parser.op_string[1] == 'f'))
6160 new_token.code = T_ID;
6161 }
6162
6163 else if (strchr ("+-/*:[]()", *intel_parser.op_string))
6164 {
6165 new_token.code = *intel_parser.op_string;
6166 new_token.str[0] = *intel_parser.op_string;
6167 new_token.str[1] = '\0';
6168 }
6169
6170 else if ((*intel_parser.op_string == REGISTER_PREFIX || allow_naked_reg)
6171 && ((reg = parse_register (intel_parser.op_string, &end_op)) != NULL))
6172 {
6173 new_token.code = T_REG;
6174 new_token.reg = reg;
6175
6176 if (*intel_parser.op_string == REGISTER_PREFIX)
6177 {
6178 new_token.str[0] = REGISTER_PREFIX;
6179 new_token.str[1] = '\0';
6180 }
6181
6182 strcat (new_token.str, reg->reg_name);
6183 }
6184
6185 else if (is_identifier_char (*intel_parser.op_string))
6186 {
6187 char *p = new_token.str;
6188 char *q = intel_parser.op_string;
6189
6190 /* A '.' or '$' followed by an identifier char is an identifier.
6191 Otherwise, it's operator '.' followed by an expression. */
6192 if ((*q == '.' || *q == '$') && !is_identifier_char (*(q + 1)))
6193 {
6194 new_token.code = *q;
6195 new_token.str[0] = *q;
6196 new_token.str[1] = '\0';
6197 }
6198 else
6199 {
6200 while (is_identifier_char (*q) || *q == '@')
6201 *p++ = *q++;
6202 *p = '\0';
6203
6204 if (strcasecmp (new_token.str, "BYTE") == 0)
6205 new_token.code = T_BYTE;
6206
6207 else if (strcasecmp (new_token.str, "WORD") == 0)
6208 new_token.code = T_WORD;
6209
6210 else if (strcasecmp (new_token.str, "DWORD") == 0)
6211 new_token.code = T_DWORD;
6212
6213 else if (strcasecmp (new_token.str, "QWORD") == 0)
6214 new_token.code = T_QWORD;
6215
6216 else if (strcasecmp (new_token.str, "XWORD") == 0)
6217 new_token.code = T_XWORD;
6218
6219 else if (strcasecmp (new_token.str, "PTR") == 0)
6220 new_token.code = T_PTR;
6221
6222 else if (strcasecmp (new_token.str, "SHORT") == 0)
6223 new_token.code = T_SHORT;
6224
6225 else if (strcasecmp (new_token.str, "OFFSET") == 0)
6226 {
6227 new_token.code = T_OFFSET;
6228
6229 /* ??? This is not mentioned in the MASM grammar but gcc
6230 makes use of it with -mintel-syntax. OFFSET may be
6231 followed by FLAT: */
6232 if (strncasecmp (q, " FLAT:", 6) == 0)
6233 strcat (new_token.str, " FLAT:");
6234 }
6235
6236 /* ??? This is not mentioned in the MASM grammar. */
6237 else if (strcasecmp (new_token.str, "FLAT") == 0)
6238 new_token.code = T_OFFSET;
6239
6240 else
6241 new_token.code = T_ID;
6242 }
6243 }
6244
6245 else
6246 as_bad (_("Unrecognized token `%s'\n"), intel_parser.op_string);
6247
6248 intel_parser.op_string += strlen (new_token.str);
6249 cur_token = new_token;
6250 }
6251
6252 /* Put cur_token back into the token stream and make cur_token point to
6253 prev_token. */
6254 static void
6255 intel_putback_token ()
6256 {
6257 intel_parser.op_string -= strlen (cur_token.str);
6258 free (cur_token.str);
6259 cur_token = prev_token;
6260
6261 /* Forget prev_token. */
6262 prev_token.code = T_NIL;
6263 prev_token.reg = NULL;
6264 prev_token.str = NULL;
6265 }
This page took 0.179289 seconds and 4 git commands to generate.