]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-i386.c
import gdb-2000-01-26 snapshot
[thirdparty/binutils-gdb.git] / gas / config / tc-i386.c
CommitLineData
252b5132
RH
1/* i386.c -- Assemble code for the Intel 80386
2 Copyright (C) 1989, 91, 92, 93, 94, 95, 96, 97, 98, 1999
3 Free Software Foundation.
4
5 This file is part of GAS, the GNU Assembler.
6
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
21
22/*
23 Intel 80386 machine specific gas.
24 Written by Eliot Dresselhaus (eliot@mgm.mit.edu).
25 Bugs & suggestions are completely welcome. This is free software.
26 Please help us make it better.
27 */
28
29#include <ctype.h>
30
31#include "as.h"
32#include "subsegs.h"
33#include "opcode/i386.h"
34
35#ifndef TC_RELOC
36#define TC_RELOC(X,Y) (Y)
37#endif
38
39#ifndef REGISTER_WARNINGS
40#define REGISTER_WARNINGS 1
41#endif
42
c3332e24 43#ifndef INFER_ADDR_PREFIX
eecb386c 44#define INFER_ADDR_PREFIX 1
c3332e24
AM
45#endif
46
252b5132
RH
47#ifndef SCALE1_WHEN_NO_INDEX
48/* Specifying a scale factor besides 1 when there is no index is
49 futile. eg. `mov (%ebx,2),%al' does exactly the same as
50 `mov (%ebx),%al'. To slavishly follow what the programmer
51 specified, set SCALE1_WHEN_NO_INDEX to 0. */
52#define SCALE1_WHEN_NO_INDEX 1
53#endif
54
55#define true 1
56#define false 0
57
58static unsigned int mode_from_disp_size PARAMS ((unsigned int));
59static int fits_in_signed_byte PARAMS ((long));
60static int fits_in_unsigned_byte PARAMS ((long));
61static int fits_in_unsigned_word PARAMS ((long));
62static int fits_in_signed_word PARAMS ((long));
63static int smallest_imm_type PARAMS ((long));
64static int add_prefix PARAMS ((unsigned int));
65static void set_16bit_code_flag PARAMS ((int));
eecb386c 66static void set_16bit_gcc_code_flag PARAMS((int));
252b5132
RH
67static void set_intel_syntax PARAMS ((int));
68
69#ifdef BFD_ASSEMBLER
70static bfd_reloc_code_real_type reloc
71 PARAMS ((int, int, bfd_reloc_code_real_type));
72#endif
73
74/* 'md_assemble ()' gathers together information and puts it into a
75 i386_insn. */
76
77struct _i386_insn
78 {
79 /* TM holds the template for the insn were currently assembling. */
80 template tm;
81
82 /* SUFFIX holds the instruction mnemonic suffix if given.
83 (e.g. 'l' for 'movl') */
84 char suffix;
85
86 /* Operands are coded with OPERANDS, TYPES, DISPS, IMMS, and REGS. */
87
88 /* OPERANDS gives the number of given operands. */
89 unsigned int operands;
90
91 /* REG_OPERANDS, DISP_OPERANDS, MEM_OPERANDS, IMM_OPERANDS give the number
92 of given register, displacement, memory operands and immediate
93 operands. */
94 unsigned int reg_operands, disp_operands, mem_operands, imm_operands;
95
96 /* TYPES [i] is the type (see above #defines) which tells us how to
97 search through DISPS [i] & IMMS [i] & REGS [i] for the required
98 operand. */
99 unsigned int types[MAX_OPERANDS];
100
101 /* Displacements (if given) for each operand. */
102 expressionS *disps[MAX_OPERANDS];
103
104 /* Relocation type for operand */
105#ifdef BFD_ASSEMBLER
106 enum bfd_reloc_code_real disp_reloc[MAX_OPERANDS];
107#else
108 int disp_reloc[MAX_OPERANDS];
109#endif
110
111 /* Immediate operands (if given) for each operand. */
112 expressionS *imms[MAX_OPERANDS];
113
114 /* Register operands (if given) for each operand. */
115 const reg_entry *regs[MAX_OPERANDS];
116
117 /* BASE_REG, INDEX_REG, and LOG2_SCALE_FACTOR are used to encode
118 the base index byte below. */
119 const reg_entry *base_reg;
120 const reg_entry *index_reg;
121 unsigned int log2_scale_factor;
122
123 /* SEG gives the seg_entries of this insn. They are zero unless
124 explicit segment overrides are given. */
125 const seg_entry *seg[2]; /* segments for memory operands (if given) */
126
127 /* PREFIX holds all the given prefix opcodes (usually null).
128 PREFIXES is the number of prefix opcodes. */
129 unsigned int prefixes;
130 unsigned char prefix[MAX_PREFIXES];
131
132 /* RM and SIB are the modrm byte and the sib byte where the
133 addressing modes of this insn are encoded. */
134
135 modrm_byte rm;
136 sib_byte sib;
137 };
138
139typedef struct _i386_insn i386_insn;
140
141/* List of chars besides those in app.c:symbol_chars that can start an
142 operand. Used to prevent the scrubber eating vital white-space. */
143#ifdef LEX_AT
144const char extra_symbol_chars[] = "*%-(@";
145#else
146const char extra_symbol_chars[] = "*%-(";
147#endif
148
149/* This array holds the chars that always start a comment. If the
150 pre-processor is disabled, these aren't very useful */
151#if defined (TE_I386AIX) || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) && ! defined (TE_LINUX))
152/* Putting '/' here makes it impossible to use the divide operator.
153 However, we need it for compatibility with SVR4 systems. */
154const char comment_chars[] = "#/";
155#define PREFIX_SEPARATOR '\\'
156#else
157const char comment_chars[] = "#";
158#define PREFIX_SEPARATOR '/'
159#endif
160
161/* This array holds the chars that only start a comment at the beginning of
162 a line. If the line seems to have the form '# 123 filename'
163 .line and .file directives will appear in the pre-processed output */
164/* Note that input_file.c hand checks for '#' at the beginning of the
165 first line of the input file. This is because the compiler outputs
166 #NO_APP at the beginning of its output. */
167/* Also note that comments started like this one will always work if
168 '/' isn't otherwise defined. */
169#if defined (TE_I386AIX) || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) && ! defined (TE_LINUX))
170const char line_comment_chars[] = "";
171#else
172const char line_comment_chars[] = "/";
173#endif
174
175const char line_separator_chars[] = "";
176
177/* Chars that can be used to separate mant from exp in floating point nums */
178const char EXP_CHARS[] = "eE";
179
180/* Chars that mean this number is a floating point constant */
181/* As in 0f12.456 */
182/* or 0d1.2345e12 */
183const char FLT_CHARS[] = "fFdDxX";
184
185/* tables for lexical analysis */
186static char mnemonic_chars[256];
187static char register_chars[256];
188static char operand_chars[256];
189static char identifier_chars[256];
190static char digit_chars[256];
191
192/* lexical macros */
193#define is_mnemonic_char(x) (mnemonic_chars[(unsigned char) x])
194#define is_operand_char(x) (operand_chars[(unsigned char) x])
195#define is_register_char(x) (register_chars[(unsigned char) x])
196#define is_space_char(x) ((x) == ' ')
197#define is_identifier_char(x) (identifier_chars[(unsigned char) x])
198#define is_digit_char(x) (digit_chars[(unsigned char) x])
199
200/* put here all non-digit non-letter charcters that may occur in an operand */
201static char operand_special_chars[] = "%$-+(,)*._~/<>|&^!:[@]";
202
203/* md_assemble() always leaves the strings it's passed unaltered. To
204 effect this we maintain a stack of saved characters that we've smashed
205 with '\0's (indicating end of strings for various sub-fields of the
206 assembler instruction). */
207static char save_stack[32];
208static char *save_stack_p; /* stack pointer */
209#define END_STRING_AND_SAVE(s) \
210 do { *save_stack_p++ = *(s); *(s) = '\0'; } while (0)
211#define RESTORE_END_STRING(s) \
212 do { *(s) = *--save_stack_p; } while (0)
213
214/* The instruction we're assembling. */
215static i386_insn i;
216
217/* Possible templates for current insn. */
218static const templates *current_templates;
219
220/* Per instruction expressionS buffers: 2 displacements & 2 immediate max. */
221static expressionS disp_expressions[2], im_expressions[2];
222
223static int this_operand; /* current operand we are working on */
224
225static int flag_do_long_jump; /* FIXME what does this do? */
226
227static int flag_16bit_code; /* 1 if we're writing 16-bit code, 0 if 32-bit */
228
229static int intel_syntax = 0; /* 1 for intel syntax, 0 if att syntax */
230
231static int allow_naked_reg = 0; /* 1 if register prefix % not required */
232
eecb386c
AM
233static char stackop_size = '\0'; /* Used in 16 bit gcc mode to add an l
234 suffix to call, ret, enter, leave, push,
add0c677
AM
235 and pop instructions so that gcc has the
236 same stack frame as in 32 bit mode. */
eecb386c 237
252b5132
RH
238/* Interface to relax_segment.
239 There are 2 relax states for 386 jump insns: one for conditional &
a217f122
AM
240 one for unconditional jumps. This is because these two types of
241 jumps add different sizes to frags when we're figuring out what
252b5132
RH
242 sort of jump to choose to reach a given label. */
243
244/* types */
245#define COND_JUMP 1 /* conditional jump */
246#define UNCOND_JUMP 2 /* unconditional jump */
247/* sizes */
248#define CODE16 1
249#define SMALL 0
250#define SMALL16 (SMALL|CODE16)
251#define BIG 2
252#define BIG16 (BIG|CODE16)
253
254#ifndef INLINE
255#ifdef __GNUC__
256#define INLINE __inline__
257#else
258#define INLINE
259#endif
260#endif
261
262#define ENCODE_RELAX_STATE(type,size) \
263 ((relax_substateT)((type<<2) | (size)))
264#define SIZE_FROM_RELAX_STATE(s) \
265 ( (((s) & 0x3) == BIG ? 4 : (((s) & 0x3) == BIG16 ? 2 : 1)) )
266
267/* This table is used by relax_frag to promote short jumps to long
268 ones where necessary. SMALL (short) jumps may be promoted to BIG
269 (32 bit long) ones, and SMALL16 jumps to BIG16 (16 bit long). We
270 don't allow a short jump in a 32 bit code segment to be promoted to
271 a 16 bit offset jump because it's slower (requires data size
272 prefix), and doesn't work, unless the destination is in the bottom
273 64k of the code segment (The top 16 bits of eip are zeroed). */
274
275const relax_typeS md_relax_table[] =
276{
24eab124
AM
277 /* The fields are:
278 1) most positive reach of this state,
279 2) most negative reach of this state,
280 3) how many bytes this mode will add to the size of the current frag
281 4) which index into the table to try if we can't fit into this one.
282 */
252b5132
RH
283 {1, 1, 0, 0},
284 {1, 1, 0, 0},
285 {1, 1, 0, 0},
286 {1, 1, 0, 0},
287
288 {127 + 1, -128 + 1, 0, ENCODE_RELAX_STATE (COND_JUMP, BIG)},
289 {127 + 1, -128 + 1, 0, ENCODE_RELAX_STATE (COND_JUMP, BIG16)},
290 /* dword conditionals adds 4 bytes to frag:
291 1 extra opcode byte, 3 extra displacement bytes. */
292 {0, 0, 4, 0},
293 /* word conditionals add 2 bytes to frag:
294 1 extra opcode byte, 1 extra displacement byte. */
295 {0, 0, 2, 0},
296
297 {127 + 1, -128 + 1, 0, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG)},
298 {127 + 1, -128 + 1, 0, ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16)},
299 /* dword jmp adds 3 bytes to frag:
300 0 extra opcode bytes, 3 extra displacement bytes. */
301 {0, 0, 3, 0},
302 /* word jmp adds 1 byte to frag:
303 0 extra opcode bytes, 1 extra displacement byte. */
304 {0, 0, 1, 0}
305
306};
307
308
309void
310i386_align_code (fragP, count)
311 fragS *fragP;
312 int count;
313{
314 /* Various efficient no-op patterns for aligning code labels. */
315 /* Note: Don't try to assemble the instructions in the comments. */
316 /* 0L and 0w are not legal */
317 static const char f32_1[] =
318 {0x90}; /* nop */
319 static const char f32_2[] =
320 {0x89,0xf6}; /* movl %esi,%esi */
321 static const char f32_3[] =
322 {0x8d,0x76,0x00}; /* leal 0(%esi),%esi */
323 static const char f32_4[] =
324 {0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
325 static const char f32_5[] =
326 {0x90, /* nop */
327 0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
328 static const char f32_6[] =
329 {0x8d,0xb6,0x00,0x00,0x00,0x00}; /* leal 0L(%esi),%esi */
330 static const char f32_7[] =
331 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
332 static const char f32_8[] =
333 {0x90, /* nop */
334 0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
335 static const char f32_9[] =
336 {0x89,0xf6, /* movl %esi,%esi */
337 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
338 static const char f32_10[] =
339 {0x8d,0x76,0x00, /* leal 0(%esi),%esi */
340 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
341 static const char f32_11[] =
342 {0x8d,0x74,0x26,0x00, /* leal 0(%esi,1),%esi */
343 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
344 static const char f32_12[] =
345 {0x8d,0xb6,0x00,0x00,0x00,0x00, /* leal 0L(%esi),%esi */
346 0x8d,0xbf,0x00,0x00,0x00,0x00}; /* leal 0L(%edi),%edi */
347 static const char f32_13[] =
348 {0x8d,0xb6,0x00,0x00,0x00,0x00, /* leal 0L(%esi),%esi */
349 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
350 static const char f32_14[] =
351 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00, /* leal 0L(%esi,1),%esi */
352 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
353 static const char f32_15[] =
354 {0xeb,0x0d,0x90,0x90,0x90,0x90,0x90, /* jmp .+15; lotsa nops */
355 0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90};
c3332e24
AM
356 static const char f16_3[] =
357 {0x8d,0x74,0x00}; /* lea 0(%esi),%esi */
252b5132
RH
358 static const char f16_4[] =
359 {0x8d,0xb4,0x00,0x00}; /* lea 0w(%si),%si */
360 static const char f16_5[] =
361 {0x90, /* nop */
362 0x8d,0xb4,0x00,0x00}; /* lea 0w(%si),%si */
363 static const char f16_6[] =
364 {0x89,0xf6, /* mov %si,%si */
365 0x8d,0xbd,0x00,0x00}; /* lea 0w(%di),%di */
366 static const char f16_7[] =
367 {0x8d,0x74,0x00, /* lea 0(%si),%si */
368 0x8d,0xbd,0x00,0x00}; /* lea 0w(%di),%di */
369 static const char f16_8[] =
370 {0x8d,0xb4,0x00,0x00, /* lea 0w(%si),%si */
371 0x8d,0xbd,0x00,0x00}; /* lea 0w(%di),%di */
372 static const char *const f32_patt[] = {
373 f32_1, f32_2, f32_3, f32_4, f32_5, f32_6, f32_7, f32_8,
374 f32_9, f32_10, f32_11, f32_12, f32_13, f32_14, f32_15
375 };
376 static const char *const f16_patt[] = {
c3332e24 377 f32_1, f32_2, f16_3, f16_4, f16_5, f16_6, f16_7, f16_8,
252b5132
RH
378 f32_15, f32_15, f32_15, f32_15, f32_15, f32_15, f32_15
379 };
380
381 if (count > 0 && count <= 15)
382 {
383 if (flag_16bit_code)
384 {
385 memcpy(fragP->fr_literal + fragP->fr_fix,
386 f16_patt[count - 1], count);
387 if (count > 8) /* adjust jump offset */
388 fragP->fr_literal[fragP->fr_fix + 1] = count - 2;
389 }
390 else
391 memcpy(fragP->fr_literal + fragP->fr_fix,
392 f32_patt[count - 1], count);
393 fragP->fr_var = count;
394 }
395}
396
397static char *output_invalid PARAMS ((int c));
398static int i386_operand PARAMS ((char *operand_string));
399static int i386_intel_operand PARAMS ((char *operand_string, int got_a_float));
400static const reg_entry *parse_register PARAMS ((char *reg_string,
401 char **end_op));
402
403#ifndef I386COFF
404static void s_bss PARAMS ((int));
405#endif
406
407symbolS *GOT_symbol; /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
408
409static INLINE unsigned int
410mode_from_disp_size (t)
411 unsigned int t;
412{
413 return (t & Disp8) ? 1 : (t & (Disp16|Disp32)) ? 2 : 0;
414}
415
416static INLINE int
417fits_in_signed_byte (num)
418 long num;
419{
420 return (num >= -128) && (num <= 127);
421} /* fits_in_signed_byte() */
422
423static INLINE int
424fits_in_unsigned_byte (num)
425 long num;
426{
427 return (num & 0xff) == num;
428} /* fits_in_unsigned_byte() */
429
430static INLINE int
431fits_in_unsigned_word (num)
432 long num;
433{
434 return (num & 0xffff) == num;
435} /* fits_in_unsigned_word() */
436
437static INLINE int
438fits_in_signed_word (num)
439 long num;
440{
441 return (-32768 <= num) && (num <= 32767);
442} /* fits_in_signed_word() */
443
444static int
445smallest_imm_type (num)
446 long num;
447{
448#if 0
449 /* This code is disabled because all the Imm1 forms in the opcode table
450 are slower on the i486, and they're the versions with the implicitly
451 specified single-position displacement, which has another syntax if
452 you really want to use that form. If you really prefer to have the
453 one-byte-shorter Imm1 form despite these problems, re-enable this
454 code. */
455 if (num == 1)
456 return Imm1 | Imm8 | Imm8S | Imm16 | Imm32;
457#endif
458 return (fits_in_signed_byte (num)
459 ? (Imm8S | Imm8 | Imm16 | Imm32)
460 : fits_in_unsigned_byte (num)
461 ? (Imm8 | Imm16 | Imm32)
462 : (fits_in_signed_word (num) || fits_in_unsigned_word (num))
463 ? (Imm16 | Imm32)
464 : (Imm32));
465} /* smallest_imm_type() */
466
467/* Returns 0 if attempting to add a prefix where one from the same
468 class already exists, 1 if non rep/repne added, 2 if rep/repne
469 added. */
470static int
471add_prefix (prefix)
472 unsigned int prefix;
473{
474 int ret = 1;
475 int q;
476
477 switch (prefix)
478 {
479 default:
480 abort ();
481
482 case CS_PREFIX_OPCODE:
483 case DS_PREFIX_OPCODE:
484 case ES_PREFIX_OPCODE:
485 case FS_PREFIX_OPCODE:
486 case GS_PREFIX_OPCODE:
487 case SS_PREFIX_OPCODE:
488 q = SEG_PREFIX;
489 break;
490
491 case REPNE_PREFIX_OPCODE:
492 case REPE_PREFIX_OPCODE:
493 ret = 2;
494 /* fall thru */
495 case LOCK_PREFIX_OPCODE:
496 q = LOCKREP_PREFIX;
497 break;
498
499 case FWAIT_OPCODE:
500 q = WAIT_PREFIX;
501 break;
502
503 case ADDR_PREFIX_OPCODE:
504 q = ADDR_PREFIX;
505 break;
506
507 case DATA_PREFIX_OPCODE:
508 q = DATA_PREFIX;
509 break;
510 }
511
512 if (i.prefix[q])
513 {
514 as_bad (_("same type of prefix used twice"));
515 return 0;
516 }
517
518 i.prefixes += 1;
519 i.prefix[q] = prefix;
520 return ret;
521}
522
523static void
524set_16bit_code_flag (new_16bit_code_flag)
eecb386c
AM
525 int new_16bit_code_flag;
526{
527 flag_16bit_code = new_16bit_code_flag;
528 stackop_size = '\0';
529}
530
531static void
532set_16bit_gcc_code_flag (new_16bit_code_flag)
533 int new_16bit_code_flag;
252b5132
RH
534{
535 flag_16bit_code = new_16bit_code_flag;
eecb386c 536 stackop_size = new_16bit_code_flag ? 'l' : '\0';
252b5132
RH
537}
538
539static void
540set_intel_syntax (syntax_flag)
eecb386c 541 int syntax_flag;
252b5132
RH
542{
543 /* Find out if register prefixing is specified. */
544 int ask_naked_reg = 0;
545
546 SKIP_WHITESPACE ();
547 if (! is_end_of_line[(unsigned char) *input_line_pointer])
548 {
549 char *string = input_line_pointer;
550 int e = get_symbol_end ();
551
552 if (strcmp(string, "prefix") == 0)
553 ask_naked_reg = 1;
554 else if (strcmp(string, "noprefix") == 0)
555 ask_naked_reg = -1;
556 else
557 as_bad (_("Bad argument to syntax directive."));
558 *input_line_pointer = e;
559 }
560 demand_empty_rest_of_line ();
c3332e24 561
252b5132
RH
562 intel_syntax = syntax_flag;
563
564 if (ask_naked_reg == 0)
565 {
566#ifdef BFD_ASSEMBLER
567 allow_naked_reg = (intel_syntax
24eab124 568 && (bfd_get_symbol_leading_char (stdoutput) != '\0'));
252b5132
RH
569#else
570 allow_naked_reg = 0; /* conservative default */
571#endif
572 }
573 else
574 allow_naked_reg = (ask_naked_reg < 0);
575}
576
577const pseudo_typeS md_pseudo_table[] =
578{
579#ifndef I386COFF
580 {"bss", s_bss, 0},
581#endif
582#if !defined(OBJ_AOUT) && !defined(USE_ALIGN_PTWO)
583 {"align", s_align_bytes, 0},
584#else
585 {"align", s_align_ptwo, 0},
586#endif
587 {"ffloat", float_cons, 'f'},
588 {"dfloat", float_cons, 'd'},
589 {"tfloat", float_cons, 'x'},
590 {"value", cons, 2},
591 {"noopt", s_ignore, 0},
592 {"optim", s_ignore, 0},
eecb386c 593 {"code16gcc", set_16bit_gcc_code_flag, 1},
252b5132
RH
594 {"code16", set_16bit_code_flag, 1},
595 {"code32", set_16bit_code_flag, 0},
596 {"intel_syntax", set_intel_syntax, 1},
597 {"att_syntax", set_intel_syntax, 0},
598 {0, 0, 0}
599};
600
601/* for interface with expression () */
602extern char *input_line_pointer;
603
604/* hash table for instruction mnemonic lookup */
605static struct hash_control *op_hash;
606/* hash table for register lookup */
607static struct hash_control *reg_hash;
608\f
609
610void
611md_begin ()
612{
613 const char *hash_err;
614
615 /* initialize op_hash hash table */
616 op_hash = hash_new ();
617
618 {
619 register const template *optab;
620 register templates *core_optab;
621
622 optab = i386_optab; /* setup for loop */
623 core_optab = (templates *) xmalloc (sizeof (templates));
624 core_optab->start = optab;
625
626 while (1)
627 {
628 ++optab;
629 if (optab->name == NULL
630 || strcmp (optab->name, (optab - 1)->name) != 0)
631 {
632 /* different name --> ship out current template list;
633 add to hash table; & begin anew */
634 core_optab->end = optab;
635 hash_err = hash_insert (op_hash,
636 (optab - 1)->name,
637 (PTR) core_optab);
638 if (hash_err)
639 {
640 hash_error:
641 as_fatal (_("Internal Error: Can't hash %s: %s"),
642 (optab - 1)->name,
643 hash_err);
644 }
645 if (optab->name == NULL)
646 break;
647 core_optab = (templates *) xmalloc (sizeof (templates));
648 core_optab->start = optab;
649 }
650 }
651 }
652
653 /* initialize reg_hash hash table */
654 reg_hash = hash_new ();
655 {
656 register const reg_entry *regtab;
657
658 for (regtab = i386_regtab;
659 regtab < i386_regtab + sizeof (i386_regtab) / sizeof (i386_regtab[0]);
660 regtab++)
661 {
662 hash_err = hash_insert (reg_hash, regtab->reg_name, (PTR) regtab);
663 if (hash_err)
664 goto hash_error;
665 }
666 }
667
668 /* fill in lexical tables: mnemonic_chars, operand_chars. */
669 {
670 register int c;
671 register char *p;
672
673 for (c = 0; c < 256; c++)
674 {
675 if (isdigit (c))
676 {
677 digit_chars[c] = c;
678 mnemonic_chars[c] = c;
679 register_chars[c] = c;
680 operand_chars[c] = c;
681 }
682 else if (islower (c))
683 {
684 mnemonic_chars[c] = c;
685 register_chars[c] = c;
686 operand_chars[c] = c;
687 }
688 else if (isupper (c))
689 {
690 mnemonic_chars[c] = tolower (c);
691 register_chars[c] = mnemonic_chars[c];
692 operand_chars[c] = c;
693 }
694
695 if (isalpha (c) || isdigit (c))
696 identifier_chars[c] = c;
697 else if (c >= 128)
698 {
699 identifier_chars[c] = c;
700 operand_chars[c] = c;
701 }
702 }
703
704#ifdef LEX_AT
705 identifier_chars['@'] = '@';
706#endif
252b5132
RH
707 digit_chars['-'] = '-';
708 identifier_chars['_'] = '_';
709 identifier_chars['.'] = '.';
710
711 for (p = operand_special_chars; *p != '\0'; p++)
712 operand_chars[(unsigned char) *p] = *p;
713 }
714
715#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
716 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
717 {
718 record_alignment (text_section, 2);
719 record_alignment (data_section, 2);
720 record_alignment (bss_section, 2);
721 }
722#endif
723}
724
725void
726i386_print_statistics (file)
727 FILE *file;
728{
729 hash_print_statistics (file, "i386 opcode", op_hash);
730 hash_print_statistics (file, "i386 register", reg_hash);
731}
732\f
733
734#ifdef DEBUG386
735
736/* debugging routines for md_assemble */
737static void pi PARAMS ((char *, i386_insn *));
738static void pte PARAMS ((template *));
739static void pt PARAMS ((unsigned int));
740static void pe PARAMS ((expressionS *));
741static void ps PARAMS ((symbolS *));
742
743static void
744pi (line, x)
745 char *line;
746 i386_insn *x;
747{
748 register template *p;
749 int i;
750
751 fprintf (stdout, "%s: template ", line);
752 pte (&x->tm);
753 fprintf (stdout, " modrm: mode %x reg %x reg/mem %x",
754 x->rm.mode, x->rm.reg, x->rm.regmem);
755 fprintf (stdout, " base %x index %x scale %x\n",
756 x->bi.base, x->bi.index, x->bi.scale);
757 for (i = 0; i < x->operands; i++)
758 {
759 fprintf (stdout, " #%d: ", i + 1);
760 pt (x->types[i]);
761 fprintf (stdout, "\n");
762 if (x->types[i]
3f4438ab 763 & (Reg | SReg2 | SReg3 | Control | Debug | Test | RegMMX | RegXMM))
252b5132
RH
764 fprintf (stdout, "%s\n", x->regs[i]->reg_name);
765 if (x->types[i] & Imm)
766 pe (x->imms[i]);
767 if (x->types[i] & Disp)
768 pe (x->disps[i]);
769 }
770}
771
772static void
773pte (t)
774 template *t;
775{
776 int i;
777 fprintf (stdout, " %d operands ", t->operands);
778 fprintf (stdout, "opcode %x ",
779 t->base_opcode);
780 if (t->extension_opcode != None)
781 fprintf (stdout, "ext %x ", t->extension_opcode);
782 if (t->opcode_modifier & D)
783 fprintf (stdout, "D");
784 if (t->opcode_modifier & W)
785 fprintf (stdout, "W");
786 fprintf (stdout, "\n");
787 for (i = 0; i < t->operands; i++)
788 {
789 fprintf (stdout, " #%d type ", i + 1);
790 pt (t->operand_types[i]);
791 fprintf (stdout, "\n");
792 }
793}
794
795static void
796pe (e)
797 expressionS *e;
798{
24eab124 799 fprintf (stdout, " operation %d\n", e->X_op);
b77ad1d4
AM
800 fprintf (stdout, " add_number %ld (%lx)\n",
801 (long) e->X_add_number, (long) e->X_add_number);
252b5132
RH
802 if (e->X_add_symbol)
803 {
804 fprintf (stdout, " add_symbol ");
805 ps (e->X_add_symbol);
806 fprintf (stdout, "\n");
807 }
808 if (e->X_op_symbol)
809 {
810 fprintf (stdout, " op_symbol ");
811 ps (e->X_op_symbol);
812 fprintf (stdout, "\n");
813 }
814}
815
816static void
817ps (s)
818 symbolS *s;
819{
820 fprintf (stdout, "%s type %s%s",
821 S_GET_NAME (s),
822 S_IS_EXTERNAL (s) ? "EXTERNAL " : "",
823 segment_name (S_GET_SEGMENT (s)));
824}
825
826struct type_name
827 {
828 unsigned int mask;
829 char *tname;
830 }
831
832type_names[] =
833{
834 { Reg8, "r8" },
835 { Reg16, "r16" },
836 { Reg32, "r32" },
837 { Imm8, "i8" },
838 { Imm8S, "i8s" },
839 { Imm16, "i16" },
840 { Imm32, "i32" },
841 { Imm1, "i1" },
842 { BaseIndex, "BaseIndex" },
843 { Disp8, "d8" },
844 { Disp16, "d16" },
845 { Disp32, "d32" },
846 { InOutPortReg, "InOutPortReg" },
847 { ShiftCount, "ShiftCount" },
848 { Control, "control reg" },
849 { Test, "test reg" },
850 { Debug, "debug reg" },
851 { FloatReg, "FReg" },
852 { FloatAcc, "FAcc" },
853 { SReg2, "SReg2" },
854 { SReg3, "SReg3" },
855 { Acc, "Acc" },
856 { JumpAbsolute, "Jump Absolute" },
857 { RegMMX, "rMMX" },
3f4438ab 858 { RegXMM, "rXMM" },
252b5132
RH
859 { EsSeg, "es" },
860 { 0, "" }
861};
862
863static void
864pt (t)
865 unsigned int t;
866{
867 register struct type_name *ty;
868
869 if (t == Unknown)
870 {
871 fprintf (stdout, _("Unknown"));
872 }
873 else
874 {
875 for (ty = type_names; ty->mask; ty++)
876 if (t & ty->mask)
877 fprintf (stdout, "%s, ", ty->tname);
878 }
879 fflush (stdout);
880}
881
882#endif /* DEBUG386 */
883\f
884int
885tc_i386_force_relocation (fixp)
886 struct fix *fixp;
887{
888#ifdef BFD_ASSEMBLER
889 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
890 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
891 return 1;
892 return 0;
893#else
894 /* For COFF */
895 return fixp->fx_r_type==7;
896#endif
897}
898
899#ifdef BFD_ASSEMBLER
900static bfd_reloc_code_real_type reloc
901 PARAMS ((int, int, bfd_reloc_code_real_type));
902
903static bfd_reloc_code_real_type
904reloc (size, pcrel, other)
905 int size;
906 int pcrel;
907 bfd_reloc_code_real_type other;
908{
909 if (other != NO_RELOC) return other;
910
911 if (pcrel)
912 {
913 switch (size)
914 {
915 case 1: return BFD_RELOC_8_PCREL;
916 case 2: return BFD_RELOC_16_PCREL;
917 case 4: return BFD_RELOC_32_PCREL;
918 }
919 as_bad (_("Can not do %d byte pc-relative relocation"), size);
920 }
921 else
922 {
923 switch (size)
924 {
925 case 1: return BFD_RELOC_8;
926 case 2: return BFD_RELOC_16;
927 case 4: return BFD_RELOC_32;
928 }
929 as_bad (_("Can not do %d byte relocation"), size);
930 }
931
932 return BFD_RELOC_NONE;
933}
934
935/*
936 * Here we decide which fixups can be adjusted to make them relative to
937 * the beginning of the section instead of the symbol. Basically we need
938 * to make sure that the dynamic relocations are done correctly, so in
939 * some cases we force the original symbol to be used.
940 */
941int
c0c949c7
ILT
942tc_i386_fix_adjustable (fixP)
943 fixS *fixP;
252b5132 944{
79d292aa
ILT
945#if defined (OBJ_ELF) || defined (TE_PE)
946 /* Prevent all adjustments to global symbols, or else dynamic
947 linking will not work correctly. */
252b5132
RH
948 if (S_IS_EXTERN (fixP->fx_addsy))
949 return 0;
950 if (S_IS_WEAK (fixP->fx_addsy))
951 return 0;
952#endif
953 /* adjust_reloc_syms doesn't know about the GOT */
954 if (fixP->fx_r_type == BFD_RELOC_386_GOTOFF
955 || fixP->fx_r_type == BFD_RELOC_386_PLT32
956 || fixP->fx_r_type == BFD_RELOC_386_GOT32
d33e1d24 957 || fixP->fx_r_type == BFD_RELOC_RVA
252b5132
RH
958 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
959 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
960 return 0;
961 return 1;
962}
963#else
964#define reloc(SIZE,PCREL,OTHER) 0
965#define BFD_RELOC_16 0
966#define BFD_RELOC_32 0
967#define BFD_RELOC_16_PCREL 0
968#define BFD_RELOC_32_PCREL 0
969#define BFD_RELOC_386_PLT32 0
970#define BFD_RELOC_386_GOT32 0
971#define BFD_RELOC_386_GOTOFF 0
972#endif
973
b4cac588
AM
974static int
975intel_float_operand PARAMS ((char *mnemonic));
976
977static int
252b5132
RH
978intel_float_operand (mnemonic)
979 char *mnemonic;
980{
981 if (mnemonic[0] == 'f' && mnemonic[1] =='i')
982 return 0;
983
984 if (mnemonic[0] == 'f')
985 return 1;
986
987 return 0;
988}
989
990/* This is the guts of the machine-dependent assembler. LINE points to a
991 machine dependent instruction. This function is supposed to emit
992 the frags/bytes it assembles to. */
993
994void
995md_assemble (line)
996 char *line;
997{
998 /* Points to template once we've found it. */
999 const template *t;
1000
1001 /* Count the size of the instruction generated. */
1002 int insn_size = 0;
1003
1004 int j;
1005
1006 char mnemonic[MAX_MNEM_SIZE];
1007
1008 /* Initialize globals. */
1009 memset (&i, '\0', sizeof (i));
1010 for (j = 0; j < MAX_OPERANDS; j++)
1011 i.disp_reloc[j] = NO_RELOC;
1012 memset (disp_expressions, '\0', sizeof (disp_expressions));
1013 memset (im_expressions, '\0', sizeof (im_expressions));
1014 save_stack_p = save_stack; /* reset stack pointer */
1015
1016 /* First parse an instruction mnemonic & call i386_operand for the operands.
1017 We assume that the scrubber has arranged it so that line[0] is the valid
1018 start of a (possibly prefixed) mnemonic. */
1019 {
1020 char *l = line;
1021 char *token_start = l;
1022 char *mnem_p;
1023
1024 /* Non-zero if we found a prefix only acceptable with string insns. */
1025 const char *expecting_string_instruction = NULL;
1026
1027 while (1)
1028 {
1029 mnem_p = mnemonic;
1030 while ((*mnem_p = mnemonic_chars[(unsigned char) *l]) != 0)
1031 {
1032 mnem_p++;
1033 if (mnem_p >= mnemonic + sizeof (mnemonic))
1034 {
1035 as_bad (_("no such 386 instruction: `%s'"), token_start);
1036 return;
1037 }
1038 l++;
1039 }
1040 if (!is_space_char (*l)
1041 && *l != END_OF_INSN
1042 && *l != PREFIX_SEPARATOR)
1043 {
1044 as_bad (_("invalid character %s in mnemonic"),
1045 output_invalid (*l));
1046 return;
1047 }
1048 if (token_start == l)
1049 {
1050 if (*l == PREFIX_SEPARATOR)
1051 as_bad (_("expecting prefix; got nothing"));
1052 else
1053 as_bad (_("expecting mnemonic; got nothing"));
1054 return;
1055 }
1056
1057 /* Look up instruction (or prefix) via hash table. */
1058 current_templates = hash_find (op_hash, mnemonic);
1059
1060 if (*l != END_OF_INSN
1061 && (! is_space_char (*l) || l[1] != END_OF_INSN)
1062 && current_templates
1063 && (current_templates->start->opcode_modifier & IsPrefix))
1064 {
1065 /* If we are in 16-bit mode, do not allow addr16 or data16.
1066 Similarly, in 32-bit mode, do not allow addr32 or data32. */
1067 if ((current_templates->start->opcode_modifier & (Size16 | Size32))
1068 && (((current_templates->start->opcode_modifier & Size32) != 0)
1069 ^ flag_16bit_code))
1070 {
1071 as_bad (_("redundant %s prefix"),
1072 current_templates->start->name);
1073 return;
1074 }
1075 /* Add prefix, checking for repeated prefixes. */
1076 switch (add_prefix (current_templates->start->base_opcode))
1077 {
1078 case 0:
1079 return;
1080 case 2:
1081 expecting_string_instruction =
1082 current_templates->start->name;
1083 break;
1084 }
1085 /* Skip past PREFIX_SEPARATOR and reset token_start. */
1086 token_start = ++l;
1087 }
1088 else
1089 break;
1090 }
1091
1092 if (!current_templates)
1093 {
24eab124 1094 /* See if we can get a match by trimming off a suffix. */
252b5132
RH
1095 switch (mnem_p[-1])
1096 {
252b5132
RH
1097 case WORD_MNEM_SUFFIX:
1098 case BYTE_MNEM_SUFFIX:
1099 case SHORT_MNEM_SUFFIX:
252b5132 1100 case LONG_MNEM_SUFFIX:
252b5132
RH
1101 i.suffix = mnem_p[-1];
1102 mnem_p[-1] = '\0';
1103 current_templates = hash_find (op_hash, mnemonic);
24eab124
AM
1104 break;
1105
1106 /* Intel Syntax */
add0c677 1107 case DWORD_MNEM_SUFFIX:
24eab124
AM
1108 if (intel_syntax)
1109 {
1110 i.suffix = mnem_p[-1];
1111 mnem_p[-1] = '\0';
1112 current_templates = hash_find (op_hash, mnemonic);
1113 break;
1114 }
252b5132
RH
1115 }
1116 if (!current_templates)
1117 {
1118 as_bad (_("no such 386 instruction: `%s'"), token_start);
1119 return;
1120 }
1121 }
1122
1123 /* check for rep/repne without a string instruction */
1124 if (expecting_string_instruction
1125 && !(current_templates->start->opcode_modifier & IsString))
1126 {
1127 as_bad (_("expecting string instruction after `%s'"),
1128 expecting_string_instruction);
1129 return;
1130 }
1131
1132 /* There may be operands to parse. */
1133 if (*l != END_OF_INSN)
1134 {
1135 /* parse operands */
1136
1137 /* 1 if operand is pending after ','. */
1138 unsigned int expecting_operand = 0;
1139
1140 /* Non-zero if operand parens not balanced. */
1141 unsigned int paren_not_balanced;
1142
1143 do
1144 {
1145 /* skip optional white space before operand */
1146 if (is_space_char (*l))
1147 ++l;
1148 if (!is_operand_char (*l) && *l != END_OF_INSN)
1149 {
1150 as_bad (_("invalid character %s before operand %d"),
1151 output_invalid (*l),
1152 i.operands + 1);
1153 return;
1154 }
1155 token_start = l; /* after white space */
1156 paren_not_balanced = 0;
1157 while (paren_not_balanced || *l != ',')
1158 {
1159 if (*l == END_OF_INSN)
1160 {
1161 if (paren_not_balanced)
1162 {
24eab124 1163 if (!intel_syntax)
252b5132
RH
1164 as_bad (_("unbalanced parenthesis in operand %d."),
1165 i.operands + 1);
24eab124 1166 else
252b5132
RH
1167 as_bad (_("unbalanced brackets in operand %d."),
1168 i.operands + 1);
1169 return;
1170 }
1171 else
1172 break; /* we are done */
1173 }
1174 else if (!is_operand_char (*l) && !is_space_char (*l))
1175 {
1176 as_bad (_("invalid character %s in operand %d"),
1177 output_invalid (*l),
1178 i.operands + 1);
1179 return;
1180 }
24eab124
AM
1181 if (!intel_syntax)
1182 {
252b5132
RH
1183 if (*l == '(')
1184 ++paren_not_balanced;
1185 if (*l == ')')
1186 --paren_not_balanced;
24eab124
AM
1187 }
1188 else
1189 {
252b5132
RH
1190 if (*l == '[')
1191 ++paren_not_balanced;
1192 if (*l == ']')
1193 --paren_not_balanced;
24eab124 1194 }
252b5132
RH
1195 l++;
1196 }
1197 if (l != token_start)
1198 { /* yes, we've read in another operand */
1199 unsigned int operand_ok;
1200 this_operand = i.operands++;
1201 if (i.operands > MAX_OPERANDS)
1202 {
1203 as_bad (_("spurious operands; (%d operands/instruction max)"),
1204 MAX_OPERANDS);
1205 return;
1206 }
1207 /* now parse operand adding info to 'i' as we go along */
1208 END_STRING_AND_SAVE (l);
1209
24eab124
AM
1210 if (intel_syntax)
1211 operand_ok = i386_intel_operand (token_start, intel_float_operand (mnemonic));
1212 else
1213 operand_ok = i386_operand (token_start);
252b5132
RH
1214
1215 RESTORE_END_STRING (l); /* restore old contents */
1216 if (!operand_ok)
1217 return;
1218 }
1219 else
1220 {
1221 if (expecting_operand)
1222 {
1223 expecting_operand_after_comma:
1224 as_bad (_("expecting operand after ','; got nothing"));
1225 return;
1226 }
1227 if (*l == ',')
1228 {
1229 as_bad (_("expecting operand before ','; got nothing"));
1230 return;
1231 }
1232 }
1233
1234 /* now *l must be either ',' or END_OF_INSN */
1235 if (*l == ',')
1236 {
1237 if (*++l == END_OF_INSN)
1238 { /* just skip it, if it's \n complain */
1239 goto expecting_operand_after_comma;
1240 }
1241 expecting_operand = 1;
1242 }
1243 }
1244 while (*l != END_OF_INSN); /* until we get end of insn */
1245 }
1246 }
1247
1248 /* Now we've parsed the mnemonic into a set of templates, and have the
1249 operands at hand.
1250
1251 Next, we find a template that matches the given insn,
1252 making sure the overlap of the given operands types is consistent
1253 with the template operand types. */
1254
1255#define MATCH(overlap, given, template) \
3138f287
AM
1256 ((overlap & ~JumpAbsolute) \
1257 && ((given) & (BaseIndex|JumpAbsolute)) == ((overlap) & (BaseIndex|JumpAbsolute)))
252b5132
RH
1258
1259 /* If given types r0 and r1 are registers they must be of the same type
1260 unless the expected operand type register overlap is null.
1261 Note that Acc in a template matches every size of reg. */
1262#define CONSISTENT_REGISTER_MATCH(m0, g0, t0, m1, g1, t1) \
1263 ( ((g0) & Reg) == 0 || ((g1) & Reg) == 0 || \
1264 ((g0) & Reg) == ((g1) & Reg) || \
1265 ((((m0) & Acc) ? Reg : (t0)) & (((m1) & Acc) ? Reg : (t1)) & Reg) == 0 )
1266
1267 {
1268 register unsigned int overlap0, overlap1;
252b5132
RH
1269 unsigned int overlap2;
1270 unsigned int found_reverse_match;
1271 int suffix_check;
1272
1273 /* All intel opcodes have reversed operands except for BOUND and ENTER */
1274 if (intel_syntax
24eab124
AM
1275 && (strcmp (mnemonic, "enter") != 0)
1276 && (strcmp (mnemonic, "bound") != 0)
1277 && (strncmp (mnemonic, "fsub", 4) !=0)
1278 && (strncmp (mnemonic, "fdiv", 4) !=0))
252b5132 1279 {
24eab124
AM
1280 const reg_entry *temp_reg = NULL;
1281 expressionS *temp_disp = NULL;
1282 expressionS *temp_imm = NULL;
1283 unsigned int temp_type;
1284 int xchg1 = 0;
ab9da554 1285 int xchg2 = 0;
252b5132 1286
24eab124
AM
1287 if (i.operands == 2)
1288 {
1289 xchg1 = 0;
1290 xchg2 = 1;
1291 }
1292 else if (i.operands == 3)
1293 {
1294 xchg1 = 0;
1295 xchg2 = 2;
1296 }
1297
1298 if (i.operands > 1)
1299 {
1300 temp_type = i.types[xchg2];
1301 if (temp_type & (Reg | FloatReg))
1302 temp_reg = i.regs[xchg2];
1303 else if (temp_type & Imm)
1304 temp_imm = i.imms[xchg2];
1305 else if (temp_type & Disp)
1306 temp_disp = i.disps[xchg2];
1307
1308 i.types[xchg2] = i.types[xchg1];
1309
1310 if (i.types[xchg1] & (Reg | FloatReg))
1311 {
1312 i.regs[xchg2] = i.regs[xchg1];
1313 i.regs[xchg1] = NULL;
1314 }
1315 else if (i.types[xchg2] & Imm)
1316 {
1317 i.imms[xchg2] = i.imms[xchg1];
1318 i.imms[xchg1] = NULL;
1319 }
1320 else if (i.types[xchg2] & Disp)
1321 {
1322 i.disps[xchg2] = i.disps[xchg1];
1323 i.disps[xchg1] = NULL;
1324 }
1325
1326 if (temp_type & (Reg | FloatReg))
1327 {
1328 i.regs[xchg1] = temp_reg;
1329 if (! (i.types[xchg1] & (Reg | FloatReg)))
1330 i.regs[xchg2] = NULL;
1331 }
1332 else if (temp_type & Imm)
1333 {
1334 i.imms[xchg1] = temp_imm;
1335 if (! (i.types[xchg1] & Imm))
1336 i.imms[xchg2] = NULL;
1337 }
1338 else if (temp_type & Disp)
1339 {
1340 i.disps[xchg1] = temp_disp;
1341 if (! (i.types[xchg1] & Disp))
1342 i.disps[xchg2] = NULL;
1343 }
1344
1345 i.types[xchg1] = temp_type;
1346 }
24eab124 1347 }
252b5132
RH
1348 overlap0 = 0;
1349 overlap1 = 0;
1350 overlap2 = 0;
1351 found_reverse_match = 0;
1352 suffix_check = (i.suffix == BYTE_MNEM_SUFFIX
1353 ? No_bSuf
1354 : (i.suffix == WORD_MNEM_SUFFIX
1355 ? No_wSuf
1356 : (i.suffix == SHORT_MNEM_SUFFIX
1357 ? No_sSuf
1358 : (i.suffix == LONG_MNEM_SUFFIX
24eab124 1359 ? No_lSuf
add0c677 1360 : (i.suffix == DWORD_MNEM_SUFFIX
24eab124
AM
1361 ? No_dSuf
1362 : (i.suffix == LONG_DOUBLE_MNEM_SUFFIX ? No_xSuf : 0))))));
252b5132
RH
1363
1364 for (t = current_templates->start;
1365 t < current_templates->end;
1366 t++)
1367 {
1368 /* Must have right number of operands. */
1369 if (i.operands != t->operands)
1370 continue;
1371
24eab124
AM
1372 /* For some opcodes, don't check the suffix */
1373 if (intel_syntax)
1374 {
1375 if (strcmp (t->name, "fnstcw")
1376 && strcmp (t->name, "fldcw")
1377 && (t->opcode_modifier & suffix_check))
1378 continue;
1379 }
1380 /* Must not have disallowed suffix. */
1381 else if ((t->opcode_modifier & suffix_check))
1382 continue;
252b5132
RH
1383
1384 else if (!t->operands)
1385 break; /* 0 operands always matches */
1386
1387 overlap0 = i.types[0] & t->operand_types[0];
1388 switch (t->operands)
1389 {
1390 case 1:
1391 if (!MATCH (overlap0, i.types[0], t->operand_types[0]))
1392 continue;
1393 break;
1394 case 2:
1395 case 3:
1396 overlap1 = i.types[1] & t->operand_types[1];
1397 if (!MATCH (overlap0, i.types[0], t->operand_types[0])
1398 || !MATCH (overlap1, i.types[1], t->operand_types[1])
1399 || !CONSISTENT_REGISTER_MATCH (overlap0, i.types[0],
1400 t->operand_types[0],
1401 overlap1, i.types[1],
1402 t->operand_types[1]))
1403 {
1404
1405 /* check if other direction is valid ... */
1406 if ((t->opcode_modifier & (D|FloatD)) == 0)
1407 continue;
1408
1409 /* try reversing direction of operands */
1410 overlap0 = i.types[0] & t->operand_types[1];
1411 overlap1 = i.types[1] & t->operand_types[0];
1412 if (!MATCH (overlap0, i.types[0], t->operand_types[1])
1413 || !MATCH (overlap1, i.types[1], t->operand_types[0])
1414 || !CONSISTENT_REGISTER_MATCH (overlap0, i.types[0],
1415 t->operand_types[1],
1416 overlap1, i.types[1],
1417 t->operand_types[0]))
1418 {
1419 /* does not match either direction */
1420 continue;
1421 }
1422 /* found_reverse_match holds which of D or FloatDR
1423 we've found. */
1424 found_reverse_match = t->opcode_modifier & (D|FloatDR);
1425 break;
1426 }
1427 /* found a forward 2 operand match here */
1428 if (t->operands == 3)
1429 {
1430 /* Here we make use of the fact that there are no
1431 reverse match 3 operand instructions, and all 3
1432 operand instructions only need to be checked for
1433 register consistency between operands 2 and 3. */
1434 overlap2 = i.types[2] & t->operand_types[2];
1435 if (!MATCH (overlap2, i.types[2], t->operand_types[2])
1436 || !CONSISTENT_REGISTER_MATCH (overlap1, i.types[1],
1437 t->operand_types[1],
1438 overlap2, i.types[2],
24eab124 1439 t->operand_types[2]))
252b5132 1440
24eab124 1441 continue;
252b5132
RH
1442 }
1443 /* found either forward/reverse 2 or 3 operand match here:
1444 slip through to break */
1445 }
1446 break; /* we've found a match; break out of loop */
1447 } /* for (t = ... */
1448 if (t == current_templates->end)
1449 { /* we found no match */
1450 as_bad (_("suffix or operands invalid for `%s'"),
1451 current_templates->start->name);
1452 return;
1453 }
1454
3138f287
AM
1455 if (!intel_syntax
1456 && (i.types[0] & JumpAbsolute) != (t->operand_types[0] & JumpAbsolute))
1457 {
1458 as_warn (_("Indirect %s without `*'"), t->name);
1459 }
1460
252b5132
RH
1461 if ((t->opcode_modifier & (IsPrefix|IgnoreSize)) == (IsPrefix|IgnoreSize))
1462 {
1463 /* Warn them that a data or address size prefix doesn't affect
1464 assembly of the next line of code. */
1465 as_warn (_("stand-alone `%s' prefix"), t->name);
1466 }
1467
1468 /* Copy the template we found. */
1469 i.tm = *t;
1470 if (found_reverse_match)
1471 {
1472 i.tm.operand_types[0] = t->operand_types[1];
1473 i.tm.operand_types[1] = t->operand_types[0];
1474 }
1475
1476
1477 if (i.tm.opcode_modifier & FWait)
1478 if (! add_prefix (FWAIT_OPCODE))
1479 return;
1480
1481 /* Check string instruction segment overrides */
1482 if ((i.tm.opcode_modifier & IsString) != 0 && i.mem_operands != 0)
1483 {
1484 int mem_op = (i.types[0] & AnyMem) ? 0 : 1;
1485 if ((i.tm.operand_types[mem_op] & EsSeg) != 0)
1486 {
1487 if (i.seg[0] != NULL && i.seg[0] != &es)
1488 {
1489 as_bad (_("`%s' operand %d must use `%%es' segment"),
1490 i.tm.name,
1491 mem_op + 1);
1492 return;
1493 }
1494 /* There's only ever one segment override allowed per instruction.
1495 This instruction possibly has a legal segment override on the
1496 second operand, so copy the segment to where non-string
1497 instructions store it, allowing common code. */
1498 i.seg[0] = i.seg[1];
1499 }
1500 else if ((i.tm.operand_types[mem_op + 1] & EsSeg) != 0)
1501 {
1502 if (i.seg[1] != NULL && i.seg[1] != &es)
1503 {
1504 as_bad (_("`%s' operand %d must use `%%es' segment"),
1505 i.tm.name,
1506 mem_op + 2);
1507 return;
1508 }
1509 }
1510 }
1511
1512 /* If matched instruction specifies an explicit instruction mnemonic
1513 suffix, use it. */
1514 if (i.tm.opcode_modifier & (Size16 | Size32))
1515 {
1516 if (i.tm.opcode_modifier & Size16)
1517 i.suffix = WORD_MNEM_SUFFIX;
1518 else
add0c677 1519 i.suffix = LONG_MNEM_SUFFIX;
252b5132
RH
1520 }
1521 else if (i.reg_operands)
1522 {
1523 /* If there's no instruction mnemonic suffix we try to invent one
1524 based on register operands. */
1525 if (!i.suffix)
1526 {
1527 /* We take i.suffix from the last register operand specified,
1528 Destination register type is more significant than source
1529 register type. */
1530 int op;
1531 for (op = i.operands; --op >= 0; )
1532 if (i.types[op] & Reg)
1533 {
1534 i.suffix = ((i.types[op] & Reg8) ? BYTE_MNEM_SUFFIX :
1535 (i.types[op] & Reg16) ? WORD_MNEM_SUFFIX :
add0c677 1536 LONG_MNEM_SUFFIX);
252b5132
RH
1537 break;
1538 }
1539 }
1540 else if (i.suffix == BYTE_MNEM_SUFFIX)
1541 {
1542 int op;
1543 for (op = i.operands; --op >= 0; )
1544 {
1545 /* If this is an eight bit register, it's OK. If it's
1546 the 16 or 32 bit version of an eight bit register,
1547 we will just use the low portion, and that's OK too. */
1548 if (i.types[op] & Reg8)
1549 continue;
1550
24eab124
AM
1551 /* movzx and movsx should not generate this warning. */
1552 if (intel_syntax
1553 && (i.tm.base_opcode == 0xfb7
1554 || i.tm.base_opcode == 0xfb6
1555 || i.tm.base_opcode == 0xfbe
1556 || i.tm.base_opcode == 0xfbf))
1557 continue;
252b5132
RH
1558
1559 if ((i.types[op] & WordReg) && i.regs[op]->reg_num < 4
1560#if 0
1561 /* Check that the template allows eight bit regs
1562 This kills insns such as `orb $1,%edx', which
1563 maybe should be allowed. */
1564 && (i.tm.operand_types[op] & (Reg8|InOutPortReg))
1565#endif
1566 )
1567 {
1568#if REGISTER_WARNINGS
1569 if ((i.tm.operand_types[op] & InOutPortReg) == 0)
1570 as_warn (_("using `%%%s' instead of `%%%s' due to `%c' suffix"),
1571 (i.regs[op] - (i.types[op] & Reg16 ? 8 : 16))->reg_name,
1572 i.regs[op]->reg_name,
1573 i.suffix);
1574#endif
1575 continue;
1576 }
1577 /* Any other register is bad */
3f4438ab
AM
1578 if (i.types[op] & (Reg | RegMMX | RegXMM
1579 | SReg2 | SReg3
1580 | Control | Debug | Test
1581 | FloatReg | FloatAcc))
252b5132
RH
1582 {
1583 as_bad (_("`%%%s' not allowed with `%s%c'"),
1584 i.regs[op]->reg_name,
1585 i.tm.name,
1586 i.suffix);
1587 return;
1588 }
1589 }
1590 }
add0c677 1591 else if (i.suffix == LONG_MNEM_SUFFIX)
252b5132
RH
1592 {
1593 int op;
1594 for (op = i.operands; --op >= 0; )
1595 /* Reject eight bit registers, except where the template
1596 requires them. (eg. movzb) */
1597 if ((i.types[op] & Reg8) != 0
1598 && (i.tm.operand_types[op] & (Reg16|Reg32|Acc)) != 0)
1599 {
1600 as_bad (_("`%%%s' not allowed with `%s%c'"),
1601 i.regs[op]->reg_name,
1602 i.tm.name,
1603 i.suffix);
1604 return;
1605 }
1606#if REGISTER_WARNINGS
1607 /* Warn if the e prefix on a general reg is missing. */
1608 else if ((i.types[op] & Reg16) != 0
1609 && (i.tm.operand_types[op] & (Reg32|Acc)) != 0)
1610 {
1611 as_warn (_("using `%%%s' instead of `%%%s' due to `%c' suffix"),
1612 (i.regs[op] + 8)->reg_name,
1613 i.regs[op]->reg_name,
1614 i.suffix);
1615 }
1616#endif
1617 }
1618 else if (i.suffix == WORD_MNEM_SUFFIX)
1619 {
1620 int op;
1621 for (op = i.operands; --op >= 0; )
1622 /* Reject eight bit registers, except where the template
1623 requires them. (eg. movzb) */
1624 if ((i.types[op] & Reg8) != 0
1625 && (i.tm.operand_types[op] & (Reg16|Reg32|Acc)) != 0)
1626 {
1627 as_bad (_("`%%%s' not allowed with `%s%c'"),
1628 i.regs[op]->reg_name,
1629 i.tm.name,
1630 i.suffix);
1631 return;
1632 }
1633#if REGISTER_WARNINGS
1634 /* Warn if the e prefix on a general reg is present. */
1635 else if ((i.types[op] & Reg32) != 0
1636 && (i.tm.operand_types[op] & (Reg16|Acc)) != 0)
1637 {
1638 as_warn (_("using `%%%s' instead of `%%%s' due to `%c' suffix"),
1639 (i.regs[op] - 8)->reg_name,
1640 i.regs[op]->reg_name,
1641 i.suffix);
1642 }
1643#endif
1644 }
1645 else
1646 abort();
1647 }
eecb386c
AM
1648 else if ((i.tm.opcode_modifier & DefaultSize) && !i.suffix)
1649 {
1650 i.suffix = stackop_size;
1651 }
252b5132
RH
1652
1653 /* Make still unresolved immediate matches conform to size of immediate
1654 given in i.suffix. Note: overlap2 cannot be an immediate! */
1655 if ((overlap0 & (Imm8 | Imm8S | Imm16 | Imm32))
1656 && overlap0 != Imm8 && overlap0 != Imm8S
1657 && overlap0 != Imm16 && overlap0 != Imm32)
1658 {
1659 if (i.suffix)
1660 {
24eab124
AM
1661 overlap0 &= (i.suffix == BYTE_MNEM_SUFFIX ? (Imm8 | Imm8S) :
1662 (i.suffix == WORD_MNEM_SUFFIX ? Imm16 : Imm32));
252b5132
RH
1663 }
1664 else if (overlap0 == (Imm16 | Imm32))
1665 {
24eab124 1666 overlap0 =
252b5132
RH
1667 (flag_16bit_code ^ (i.prefix[DATA_PREFIX] != 0)) ? Imm16 : Imm32;
1668 }
1669 else
1670 {
1671 as_bad (_("no instruction mnemonic suffix given; can't determine immediate size"));
1672 return;
1673 }
1674 }
1675 if ((overlap1 & (Imm8 | Imm8S | Imm16 | Imm32))
1676 && overlap1 != Imm8 && overlap1 != Imm8S
1677 && overlap1 != Imm16 && overlap1 != Imm32)
1678 {
1679 if (i.suffix)
1680 {
24eab124
AM
1681 overlap1 &= (i.suffix == BYTE_MNEM_SUFFIX ? (Imm8 | Imm8S) :
1682 (i.suffix == WORD_MNEM_SUFFIX ? Imm16 : Imm32));
252b5132
RH
1683 }
1684 else if (overlap1 == (Imm16 | Imm32))
1685 {
24eab124 1686 overlap1 =
252b5132
RH
1687 (flag_16bit_code ^ (i.prefix[DATA_PREFIX] != 0)) ? Imm16 : Imm32;
1688 }
1689 else
1690 {
1691 as_bad (_("no instruction mnemonic suffix given; can't determine immediate size"));
1692 return;
1693 }
1694 }
1695 assert ((overlap2 & Imm) == 0);
1696
1697 i.types[0] = overlap0;
1698 if (overlap0 & ImplicitRegister)
1699 i.reg_operands--;
1700 if (overlap0 & Imm1)
1701 i.imm_operands = 0; /* kludge for shift insns */
1702
1703 i.types[1] = overlap1;
1704 if (overlap1 & ImplicitRegister)
1705 i.reg_operands--;
1706
1707 i.types[2] = overlap2;
1708 if (overlap2 & ImplicitRegister)
1709 i.reg_operands--;
1710
1711 /* Finalize opcode. First, we change the opcode based on the operand
1712 size given by i.suffix: We need not change things for byte insns. */
1713
1714 if (!i.suffix && (i.tm.opcode_modifier & W))
1715 {
1716 as_bad (_("no instruction mnemonic suffix given and no register operands; can't size instruction"));
1717 return;
1718 }
1719
1720 /* For movzx and movsx, need to check the register type */
1721 if (intel_syntax
24eab124 1722 && (i.tm.base_opcode == 0xfb6 || i.tm.base_opcode == 0xfbe))
252b5132 1723 if (i.suffix && i.suffix == BYTE_MNEM_SUFFIX)
24eab124
AM
1724 {
1725 unsigned int prefix = DATA_PREFIX_OPCODE;
252b5132 1726
24eab124
AM
1727 if ((i.regs[1]->reg_type & Reg16) != 0)
1728 if (!add_prefix (prefix))
1729 return;
1730 }
252b5132
RH
1731
1732 if (i.suffix && i.suffix != BYTE_MNEM_SUFFIX)
1733 {
1734 /* It's not a byte, select word/dword operation. */
1735 if (i.tm.opcode_modifier & W)
1736 {
1737 if (i.tm.opcode_modifier & ShortForm)
1738 i.tm.base_opcode |= 8;
1739 else
1740 i.tm.base_opcode |= 1;
1741 }
1742 /* Now select between word & dword operations via the operand
1743 size prefix, except for instructions that will ignore this
1744 prefix anyway. */
add0c677 1745 if (((intel_syntax && (i.suffix == DWORD_MNEM_SUFFIX))
252b5132
RH
1746 || i.suffix == LONG_MNEM_SUFFIX) == flag_16bit_code
1747 && !(i.tm.opcode_modifier & IgnoreSize))
1748 {
1749 unsigned int prefix = DATA_PREFIX_OPCODE;
1750 if (i.tm.opcode_modifier & JumpByte) /* jcxz, loop */
1751 prefix = ADDR_PREFIX_OPCODE;
1752
1753 if (! add_prefix (prefix))
1754 return;
1755 }
1756 /* Size floating point instruction. */
1757 if (i.suffix == LONG_MNEM_SUFFIX
add0c677 1758 || (intel_syntax && i.suffix == DWORD_MNEM_SUFFIX))
252b5132
RH
1759 {
1760 if (i.tm.opcode_modifier & FloatMF)
1761 i.tm.base_opcode ^= 4;
1762 }
252b5132
RH
1763 }
1764
3f4438ab 1765 if (i.tm.opcode_modifier & ImmExt)
252b5132 1766 {
3f4438ab
AM
1767 /* These AMD 3DNow! and Intel Katmai New Instructions have an
1768 opcode suffix which is coded in the same place as an 8-bit
1769 immediate field would be. Here we fake an 8-bit immediate
1770 operand from the opcode suffix stored in tm.extension_opcode. */
252b5132
RH
1771
1772 expressionS *exp;
1773
1774 assert(i.imm_operands == 0 && i.operands <= 2);
1775
1776 exp = &im_expressions[i.imm_operands++];
1777 i.imms[i.operands] = exp;
1778 i.types[i.operands++] = Imm8;
1779 exp->X_op = O_constant;
1780 exp->X_add_number = i.tm.extension_opcode;
1781 i.tm.extension_opcode = None;
1782 }
1783
1784 /* For insns with operands there are more diddles to do to the opcode. */
1785 if (i.operands)
1786 {
24eab124 1787 /* Default segment register this instruction will use
252b5132
RH
1788 for memory accesses. 0 means unknown.
1789 This is only for optimizing out unnecessary segment overrides. */
1790 const seg_entry *default_seg = 0;
1791
1792 /* If we found a reverse match we must alter the opcode
1793 direction bit. found_reverse_match holds bits to change
1794 (different for int & float insns). */
1795
1796 i.tm.base_opcode ^= found_reverse_match;
1797
1798 /* The imul $imm, %reg instruction is converted into
1799 imul $imm, %reg, %reg, and the clr %reg instruction
1800 is converted into xor %reg, %reg. */
1801 if (i.tm.opcode_modifier & regKludge)
1802 {
1803 unsigned int first_reg_op = (i.types[0] & Reg) ? 0 : 1;
1804 /* Pretend we saw the extra register operand. */
1805 i.regs[first_reg_op+1] = i.regs[first_reg_op];
1806 i.reg_operands = 2;
1807 }
1808
1809 if (i.tm.opcode_modifier & ShortForm)
1810 {
1811 /* The register or float register operand is in operand 0 or 1. */
1812 unsigned int op = (i.types[0] & (Reg | FloatReg)) ? 0 : 1;
1813 /* Register goes in low 3 bits of opcode. */
1814 i.tm.base_opcode |= i.regs[op]->reg_num;
1815 if ((i.tm.opcode_modifier & Ugh) != 0)
1816 {
1817 /* Warn about some common errors, but press on regardless.
1818 The first case can be generated by gcc (<= 2.8.1). */
1819 if (i.operands == 2)
1820 {
1821 /* reversed arguments on faddp, fsubp, etc. */
1822 as_warn (_("translating to `%s %%%s,%%%s'"), i.tm.name,
1823 i.regs[1]->reg_name,
1824 i.regs[0]->reg_name);
1825 }
1826 else
1827 {
1828 /* extraneous `l' suffix on fp insn */
1829 as_warn (_("translating to `%s %%%s'"), i.tm.name,
1830 i.regs[0]->reg_name);
1831 }
1832 }
1833 }
1834 else if (i.tm.opcode_modifier & Modrm)
1835 {
1836 /* The opcode is completed (modulo i.tm.extension_opcode which
1837 must be put into the modrm byte).
1838 Now, we make the modrm & index base bytes based on all the
1839 info we've collected. */
1840
1841 /* i.reg_operands MUST be the number of real register operands;
1842 implicit registers do not count. */
1843 if (i.reg_operands == 2)
1844 {
1845 unsigned int source, dest;
1846 source = ((i.types[0]
3f4438ab
AM
1847 & (Reg | RegMMX | RegXMM
1848 | SReg2 | SReg3
1849 | Control | Debug | Test))
252b5132
RH
1850 ? 0 : 1);
1851 dest = source + 1;
1852
252b5132 1853 i.rm.mode = 3;
3f4438ab
AM
1854 /* One of the register operands will be encoded in the
1855 i.tm.reg field, the other in the combined i.tm.mode
1856 and i.tm.regmem fields. If no form of this
1857 instruction supports a memory destination operand,
1858 then we assume the source operand may sometimes be
1859 a memory operand and so we need to store the
1860 destination in the i.rm.reg field. */
1861 if ((i.tm.operand_types[dest] & AnyMem) == 0)
252b5132
RH
1862 {
1863 i.rm.reg = i.regs[dest]->reg_num;
1864 i.rm.regmem = i.regs[source]->reg_num;
1865 }
1866 else
1867 {
1868 i.rm.reg = i.regs[source]->reg_num;
1869 i.rm.regmem = i.regs[dest]->reg_num;
1870 }
1871 }
1872 else
1873 { /* if it's not 2 reg operands... */
1874 if (i.mem_operands)
1875 {
1876 unsigned int fake_zero_displacement = 0;
1877 unsigned int op = ((i.types[0] & AnyMem)
1878 ? 0
1879 : (i.types[1] & AnyMem) ? 1 : 2);
1880
1881 default_seg = &ds;
1882
1883 if (! i.base_reg)
1884 {
1885 i.rm.mode = 0;
1886 if (! i.disp_operands)
1887 fake_zero_displacement = 1;
1888 if (! i.index_reg)
1889 {
1890 /* Operand is just <disp> */
1891 if (flag_16bit_code ^ (i.prefix[ADDR_PREFIX] != 0))
1892 {
1893 i.rm.regmem = NO_BASE_REGISTER_16;
1894 i.types[op] &= ~Disp;
1895 i.types[op] |= Disp16;
1896 }
1897 else
1898 {
1899 i.rm.regmem = NO_BASE_REGISTER;
1900 i.types[op] &= ~Disp;
1901 i.types[op] |= Disp32;
1902 }
1903 }
1904 else /* ! i.base_reg && i.index_reg */
1905 {
1906 i.sib.index = i.index_reg->reg_num;
1907 i.sib.base = NO_BASE_REGISTER;
1908 i.sib.scale = i.log2_scale_factor;
1909 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
1910 i.types[op] &= ~Disp;
1911 i.types[op] |= Disp32; /* Must be 32 bit */
1912 }
1913 }
1914 else if (i.base_reg->reg_type & Reg16)
1915 {
1916 switch (i.base_reg->reg_num)
1917 {
1918 case 3: /* (%bx) */
1919 if (! i.index_reg)
1920 i.rm.regmem = 7;
1921 else /* (%bx,%si) -> 0, or (%bx,%di) -> 1 */
1922 i.rm.regmem = i.index_reg->reg_num - 6;
1923 break;
1924 case 5: /* (%bp) */
1925 default_seg = &ss;
1926 if (! i.index_reg)
1927 {
1928 i.rm.regmem = 6;
1929 if ((i.types[op] & Disp) == 0)
1930 {
1931 /* fake (%bp) into 0(%bp) */
1932 i.types[op] |= Disp8;
1933 fake_zero_displacement = 1;
1934 }
1935 }
1936 else /* (%bp,%si) -> 2, or (%bp,%di) -> 3 */
1937 i.rm.regmem = i.index_reg->reg_num - 6 + 2;
1938 break;
1939 default: /* (%si) -> 4 or (%di) -> 5 */
1940 i.rm.regmem = i.base_reg->reg_num - 6 + 4;
1941 }
1942 i.rm.mode = mode_from_disp_size (i.types[op]);
1943 }
1944 else /* i.base_reg and 32 bit mode */
1945 {
1946 i.rm.regmem = i.base_reg->reg_num;
1947 i.sib.base = i.base_reg->reg_num;
1948 if (i.base_reg->reg_num == EBP_REG_NUM)
1949 {
1950 default_seg = &ss;
1951 if (i.disp_operands == 0)
1952 {
1953 fake_zero_displacement = 1;
1954 i.types[op] |= Disp8;
1955 }
1956 }
1957 else if (i.base_reg->reg_num == ESP_REG_NUM)
1958 {
1959 default_seg = &ss;
1960 }
1961 i.sib.scale = i.log2_scale_factor;
1962 if (! i.index_reg)
1963 {
1964 /* <disp>(%esp) becomes two byte modrm
1965 with no index register. We've already
1966 stored the code for esp in i.rm.regmem
1967 ie. ESCAPE_TO_TWO_BYTE_ADDRESSING. Any
1968 base register besides %esp will not use
1969 the extra modrm byte. */
1970 i.sib.index = NO_INDEX_REGISTER;
1971#if ! SCALE1_WHEN_NO_INDEX
1972 /* Another case where we force the second
1973 modrm byte. */
1974 if (i.log2_scale_factor)
1975 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
1976#endif
1977 }
1978 else
1979 {
1980 i.sib.index = i.index_reg->reg_num;
1981 i.rm.regmem = ESCAPE_TO_TWO_BYTE_ADDRESSING;
1982 }
1983 i.rm.mode = mode_from_disp_size (i.types[op]);
1984 }
1985
1986 if (fake_zero_displacement)
1987 {
1988 /* Fakes a zero displacement assuming that i.types[op]
1989 holds the correct displacement size. */
b4cac588
AM
1990 expressionS *exp;
1991
252b5132
RH
1992 exp = &disp_expressions[i.disp_operands++];
1993 i.disps[op] = exp;
1994 exp->X_op = O_constant;
1995 exp->X_add_number = 0;
1996 exp->X_add_symbol = (symbolS *) 0;
1997 exp->X_op_symbol = (symbolS *) 0;
1998 }
1999 }
2000
2001 /* Fill in i.rm.reg or i.rm.regmem field with register
2002 operand (if any) based on i.tm.extension_opcode.
2003 Again, we must be careful to make sure that
2004 segment/control/debug/test/MMX registers are coded
2005 into the i.rm.reg field. */
2006 if (i.reg_operands)
2007 {
2008 unsigned int op =
2009 ((i.types[0]
3f4438ab
AM
2010 & (Reg | RegMMX | RegXMM
2011 | SReg2 | SReg3
2012 | Control | Debug | Test))
252b5132
RH
2013 ? 0
2014 : ((i.types[1]
3f4438ab
AM
2015 & (Reg | RegMMX | RegXMM
2016 | SReg2 | SReg3
2017 | Control | Debug | Test))
252b5132
RH
2018 ? 1
2019 : 2));
2020 /* If there is an extension opcode to put here, the
2021 register number must be put into the regmem field. */
2022 if (i.tm.extension_opcode != None)
2023 i.rm.regmem = i.regs[op]->reg_num;
2024 else
2025 i.rm.reg = i.regs[op]->reg_num;
2026
2027 /* Now, if no memory operand has set i.rm.mode = 0, 1, 2
2028 we must set it to 3 to indicate this is a register
2029 operand in the regmem field. */
2030 if (!i.mem_operands)
2031 i.rm.mode = 3;
2032 }
2033
2034 /* Fill in i.rm.reg field with extension opcode (if any). */
2035 if (i.tm.extension_opcode != None)
2036 i.rm.reg = i.tm.extension_opcode;
2037 }
2038 }
2039 else if (i.tm.opcode_modifier & (Seg2ShortForm | Seg3ShortForm))
2040 {
2041 if (i.tm.base_opcode == POP_SEG_SHORT && i.regs[0]->reg_num == 1)
2042 {
2043 as_bad (_("you can't `pop %%cs'"));
2044 return;
2045 }
2046 i.tm.base_opcode |= (i.regs[0]->reg_num << 3);
2047 }
2048 else if ((i.tm.base_opcode & ~(D|W)) == MOV_AX_DISP32)
2049 {
2050 default_seg = &ds;
2051 }
2052 else if ((i.tm.opcode_modifier & IsString) != 0)
2053 {
2054 /* For the string instructions that allow a segment override
2055 on one of their operands, the default segment is ds. */
2056 default_seg = &ds;
2057 }
2058
2059 /* If a segment was explicitly specified,
2060 and the specified segment is not the default,
2061 use an opcode prefix to select it.
2062 If we never figured out what the default segment is,
2063 then default_seg will be zero at this point,
2064 and the specified segment prefix will always be used. */
2065 if ((i.seg[0]) && (i.seg[0] != default_seg))
2066 {
2067 if (! add_prefix (i.seg[0]->seg_prefix))
2068 return;
2069 }
2070 }
2071 else if ((i.tm.opcode_modifier & Ugh) != 0)
2072 {
24eab124
AM
2073 /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. */
2074 as_warn (_("translating to `%sp'"), i.tm.name);
252b5132
RH
2075 }
2076 }
2077
2078 /* Handle conversion of 'int $3' --> special int3 insn. */
2079 if (i.tm.base_opcode == INT_OPCODE && i.imms[0]->X_add_number == 3)
2080 {
2081 i.tm.base_opcode = INT3_OPCODE;
2082 i.imm_operands = 0;
2083 }
2084
2f66722d
AM
2085 if ((i.tm.opcode_modifier & (Jump | JumpByte | JumpDword))
2086 && i.disps[0]->X_op == O_constant)
2087 {
2088 /* Convert "jmp constant" (and "call constant") to a jump (call) to
2089 the absolute address given by the constant. Since ix86 jumps and
2090 calls are pc relative, we need to generate a reloc. */
2091 i.disps[0]->X_add_symbol = &abs_symbol;
2092 i.disps[0]->X_op = O_symbol;
2093 }
2094
252b5132
RH
2095 /* We are ready to output the insn. */
2096 {
2097 register char *p;
2098
2099 /* Output jumps. */
2100 if (i.tm.opcode_modifier & Jump)
2101 {
a217f122
AM
2102 int size;
2103 int code16;
2104 int prefix;
252b5132 2105
a217f122
AM
2106 code16 = 0;
2107 if (flag_16bit_code)
2108 code16 = CODE16;
2109
2110 prefix = 0;
2111 if (i.prefix[DATA_PREFIX])
252b5132 2112 {
a217f122 2113 prefix = 1;
252b5132 2114 i.prefixes -= 1;
a217f122 2115 code16 ^= CODE16;
252b5132 2116 }
252b5132 2117
a217f122
AM
2118 size = 4;
2119 if (code16)
2120 size = 2;
2121
2122 if (i.prefixes != 0 && !intel_syntax)
252b5132
RH
2123 as_warn (_("skipping prefixes on this instruction"));
2124
2f66722d
AM
2125 /* It's always a symbol; End frag & setup for relax.
2126 Make sure there is enough room in this frag for the largest
2127 instruction we may generate in md_convert_frag. This is 2
2128 bytes for the opcode and room for the prefix and largest
2129 displacement. */
2130 frag_grow (prefix + 2 + size);
2131 insn_size += prefix + 1;
2132 /* Prefix and 1 opcode byte go in fr_fix. */
2133 p = frag_more (prefix + 1);
2134 if (prefix)
2135 *p++ = DATA_PREFIX_OPCODE;
2136 *p = i.tm.base_opcode;
2137 /* 1 possible extra opcode + displacement go in fr_var. */
2138 frag_var (rs_machine_dependent,
2139 1 + size,
2140 1,
2141 ((unsigned char) *p == JUMP_PC_RELATIVE
2142 ? ENCODE_RELAX_STATE (UNCOND_JUMP, SMALL) | code16
2143 : ENCODE_RELAX_STATE (COND_JUMP, SMALL) | code16),
2144 i.disps[0]->X_add_symbol,
2145 i.disps[0]->X_add_number,
2146 p);
252b5132
RH
2147 }
2148 else if (i.tm.opcode_modifier & (JumpByte | JumpDword))
2149 {
a217f122 2150 int size;
252b5132 2151
a217f122 2152 if (i.tm.opcode_modifier & JumpByte)
252b5132 2153 {
a217f122
AM
2154 /* This is a loop or jecxz type instruction. */
2155 size = 1;
252b5132
RH
2156 if (i.prefix[ADDR_PREFIX])
2157 {
2158 insn_size += 1;
2159 FRAG_APPEND_1_CHAR (ADDR_PREFIX_OPCODE);
2160 i.prefixes -= 1;
2161 }
2162 }
2163 else
2164 {
a217f122
AM
2165 int code16;
2166
2167 code16 = 0;
2168 if (flag_16bit_code)
2169 code16 = CODE16;
252b5132
RH
2170
2171 if (i.prefix[DATA_PREFIX])
2172 {
2173 insn_size += 1;
2174 FRAG_APPEND_1_CHAR (DATA_PREFIX_OPCODE);
2175 i.prefixes -= 1;
a217f122 2176 code16 ^= CODE16;
252b5132 2177 }
252b5132 2178
a217f122 2179 size = 4;
252b5132
RH
2180 if (code16)
2181 size = 2;
2182 }
2183
a217f122 2184 if (i.prefixes != 0 && !intel_syntax)
252b5132
RH
2185 as_warn (_("skipping prefixes on this instruction"));
2186
2187 if (fits_in_unsigned_byte (i.tm.base_opcode))
2188 {
2189 insn_size += 1 + size;
2190 p = frag_more (1 + size);
2191 }
2192 else
2193 {
a217f122
AM
2194 /* opcode can be at most two bytes */
2195 insn_size += 2 + size;
252b5132
RH
2196 p = frag_more (2 + size);
2197 *p++ = (i.tm.base_opcode >> 8) & 0xff;
2198 }
2199 *p++ = i.tm.base_opcode & 0xff;
2200
2f66722d
AM
2201 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
2202 i.disps[0], 1, reloc (size, 1, i.disp_reloc[0]));
252b5132
RH
2203 }
2204 else if (i.tm.opcode_modifier & JumpInterSegment)
2205 {
2206 int size;
2207 int reloc_type;
a217f122
AM
2208 int prefix;
2209 int code16;
252b5132 2210
a217f122
AM
2211 code16 = 0;
2212 if (flag_16bit_code)
2213 code16 = CODE16;
2214
2215 prefix = 0;
2216 if (i.prefix[DATA_PREFIX])
252b5132 2217 {
a217f122 2218 prefix = 1;
252b5132 2219 i.prefixes -= 1;
a217f122 2220 code16 ^= CODE16;
252b5132 2221 }
252b5132
RH
2222
2223 size = 4;
2224 reloc_type = BFD_RELOC_32;
2225 if (code16)
2226 {
2227 size = 2;
2228 reloc_type = BFD_RELOC_16;
2229 }
2230
a217f122 2231 if (i.prefixes != 0 && !intel_syntax)
252b5132
RH
2232 as_warn (_("skipping prefixes on this instruction"));
2233
2234 insn_size += prefix + 1 + 2 + size; /* 1 opcode; 2 segment; offset */
2235 p = frag_more (prefix + 1 + 2 + size);
2236 if (prefix)
2237 *p++ = DATA_PREFIX_OPCODE;
2238 *p++ = i.tm.base_opcode;
2239 if (i.imms[1]->X_op == O_constant)
2240 {
2241 long n = (long) i.imms[1]->X_add_number;
2242
2243 if (size == 2 && !fits_in_unsigned_word (n))
2244 {
2245 as_bad (_("16-bit jump out of range"));
2246 return;
2247 }
2248 md_number_to_chars (p, (valueT) n, size);
2249 }
2250 else
2251 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
2252 i.imms[1], 0, reloc_type);
2253 if (i.imms[0]->X_op != O_constant)
2254 as_bad (_("can't handle non absolute segment in `%s'"),
2255 i.tm.name);
2256 md_number_to_chars (p + size, (valueT) i.imms[0]->X_add_number, 2);
2257 }
2258 else
2259 {
2260 /* Output normal instructions here. */
2261 unsigned char *q;
2262
2263 /* The prefix bytes. */
2264 for (q = i.prefix;
2265 q < i.prefix + sizeof (i.prefix) / sizeof (i.prefix[0]);
2266 q++)
2267 {
2268 if (*q)
2269 {
2270 insn_size += 1;
2271 p = frag_more (1);
2272 md_number_to_chars (p, (valueT) *q, 1);
2273 }
2274 }
2275
2276 /* Now the opcode; be careful about word order here! */
2277 if (fits_in_unsigned_byte (i.tm.base_opcode))
2278 {
2279 insn_size += 1;
2280 FRAG_APPEND_1_CHAR (i.tm.base_opcode);
2281 }
2282 else if (fits_in_unsigned_word (i.tm.base_opcode))
2283 {
2284 insn_size += 2;
2285 p = frag_more (2);
2286 /* put out high byte first: can't use md_number_to_chars! */
2287 *p++ = (i.tm.base_opcode >> 8) & 0xff;
2288 *p = i.tm.base_opcode & 0xff;
2289 }
2290 else
2291 { /* opcode is either 3 or 4 bytes */
2292 if (i.tm.base_opcode & 0xff000000)
2293 {
2294 insn_size += 4;
2295 p = frag_more (4);
2296 *p++ = (i.tm.base_opcode >> 24) & 0xff;
2297 }
2298 else
2299 {
2300 insn_size += 3;
2301 p = frag_more (3);
2302 }
2303 *p++ = (i.tm.base_opcode >> 16) & 0xff;
2304 *p++ = (i.tm.base_opcode >> 8) & 0xff;
2305 *p = (i.tm.base_opcode) & 0xff;
2306 }
2307
2308 /* Now the modrm byte and sib byte (if present). */
2309 if (i.tm.opcode_modifier & Modrm)
2310 {
2311 insn_size += 1;
2312 p = frag_more (1);
2313 md_number_to_chars (p,
2314 (valueT) (i.rm.regmem << 0
2315 | i.rm.reg << 3
2316 | i.rm.mode << 6),
2317 1);
2318 /* If i.rm.regmem == ESP (4)
2319 && i.rm.mode != (Register mode)
2320 && not 16 bit
2321 ==> need second modrm byte. */
2322 if (i.rm.regmem == ESCAPE_TO_TWO_BYTE_ADDRESSING
2323 && i.rm.mode != 3
2324 && !(i.base_reg && (i.base_reg->reg_type & Reg16) != 0))
2325 {
2326 insn_size += 1;
2327 p = frag_more (1);
2328 md_number_to_chars (p,
2329 (valueT) (i.sib.base << 0
2330 | i.sib.index << 3
2331 | i.sib.scale << 6),
2332 1);
2333 }
2334 }
2335
2336 if (i.disp_operands)
2337 {
2338 register unsigned int n;
2339
2340 for (n = 0; n < i.operands; n++)
2341 {
2342 if (i.disps[n])
2343 {
2344 if (i.disps[n]->X_op == O_constant)
2345 {
b4cac588
AM
2346 int size = 4;
2347 long val = (long) i.disps[n]->X_add_number;
2348
2349 if (i.types[n] & (Disp8 | Disp16))
252b5132 2350 {
b4cac588
AM
2351 long mask;
2352
2353 size = 2;
2354 mask = ~ (long) 0xffff;
2355 if (i.types[n] & Disp8)
2356 {
2357 size = 1;
2358 mask = ~ (long) 0xff;
2359 }
2360
2361 if ((val & mask) != 0 && (val & mask) != mask)
24eab124
AM
2362 as_warn (_("%ld shortened to %ld"),
2363 val, val & ~mask);
252b5132 2364 }
b4cac588
AM
2365 insn_size += size;
2366 p = frag_more (size);
2367 md_number_to_chars (p, (valueT) val, size);
252b5132
RH
2368 }
2369 else if (i.types[n] & Disp32)
2370 {
2371 insn_size += 4;
2372 p = frag_more (4);
2373 fix_new_exp (frag_now, p - frag_now->fr_literal, 4,
2374 i.disps[n], 0,
2375 TC_RELOC (i.disp_reloc[n], BFD_RELOC_32));
2376 }
2377 else
2378 { /* must be Disp16 */
2379 insn_size += 2;
2380 p = frag_more (2);
2381 fix_new_exp (frag_now, p - frag_now->fr_literal, 2,
2382 i.disps[n], 0,
2383 TC_RELOC (i.disp_reloc[n], BFD_RELOC_16));
2384 }
2385 }
2386 }
2387 } /* end displacement output */
2388
2389 /* output immediate */
2390 if (i.imm_operands)
2391 {
2392 register unsigned int n;
2393
2394 for (n = 0; n < i.operands; n++)
2395 {
2396 if (i.imms[n])
2397 {
2398 if (i.imms[n]->X_op == O_constant)
2399 {
b4cac588
AM
2400 int size = 4;
2401 long val = (long) i.imms[n]->X_add_number;
2402
2403 if (i.types[n] & (Imm8 | Imm8S | Imm16))
252b5132 2404 {
b4cac588
AM
2405 long mask;
2406
2407 size = 2;
2408 mask = ~ (long) 0xffff;
2409 if (i.types[n] & (Imm8 | Imm8S))
2410 {
2411 size = 1;
2412 mask = ~ (long) 0xff;
2413 }
2414 if ((val & mask) != 0 && (val & mask) != mask)
24eab124
AM
2415 as_warn (_("%ld shortened to %ld"),
2416 val, val & ~mask);
252b5132 2417 }
b4cac588
AM
2418 insn_size += size;
2419 p = frag_more (size);
2420 md_number_to_chars (p, (valueT) val, size);
252b5132
RH
2421 }
2422 else
2423 { /* not absolute_section */
2424 /* Need a 32-bit fixup (don't support 8bit
2425 non-absolute ims). Try to support other
2426 sizes ... */
2427 int r_type;
2428 int size;
2429 int pcrel = 0;
2430
2431 if (i.types[n] & (Imm8 | Imm8S))
2432 size = 1;
2433 else if (i.types[n] & Imm16)
2434 size = 2;
2435 else
2436 size = 4;
2437 insn_size += size;
2438 p = frag_more (size);
2439 r_type = reloc (size, 0, i.disp_reloc[0]);
2440#ifdef BFD_ASSEMBLER
2441 if (r_type == BFD_RELOC_32
2442 && GOT_symbol
2443 && GOT_symbol == i.imms[n]->X_add_symbol
2444 && (i.imms[n]->X_op == O_symbol
2445 || (i.imms[n]->X_op == O_add
49309057
ILT
2446 && ((symbol_get_value_expression
2447 (i.imms[n]->X_op_symbol)->X_op)
252b5132
RH
2448 == O_subtract))))
2449 {
2450 r_type = BFD_RELOC_386_GOTPC;
2451 i.imms[n]->X_add_number += 3;
2452 }
2453#endif
2454 fix_new_exp (frag_now, p - frag_now->fr_literal, size,
2455 i.imms[n], pcrel, r_type);
2456 }
2457 }
2458 }
2459 } /* end immediate output */
2460 }
2461
2462#ifdef DEBUG386
2463 if (flag_debug)
2464 {
2465 pi (line, &i);
2466 }
2467#endif /* DEBUG386 */
2468 }
2469}
2470\f
252b5132
RH
2471static int i386_immediate PARAMS ((char *));
2472
2473static int
2474i386_immediate (imm_start)
2475 char *imm_start;
2476{
2477 char *save_input_line_pointer;
2478 segT exp_seg = 0;
2479 expressionS * exp;
2480
2481 if (i.imm_operands == MAX_IMMEDIATE_OPERANDS)
2482 {
2483 as_bad (_("Only 1 or 2 immediate operands are allowed"));
2484 return 0;
2485 }
2486
2487 exp = &im_expressions[i.imm_operands++];
2488 i.imms[this_operand] = exp;
2489
2490 if (is_space_char (*imm_start))
2491 ++imm_start;
2492
2493 save_input_line_pointer = input_line_pointer;
2494 input_line_pointer = imm_start;
2495
2496#ifndef LEX_AT
24eab124
AM
2497 {
2498 /*
2499 * We can have operands of the form
2500 * <symbol>@GOTOFF+<nnn>
2501 * Take the easy way out here and copy everything
2502 * into a temporary buffer...
2503 */
2504 register char *cp;
2505
2506 cp = strchr (input_line_pointer, '@');
2507 if (cp != NULL)
2508 {
2509 char *tmpbuf;
2510 int len = 0;
2511 int first;
2512
2513 /* GOT relocations are not supported in 16 bit mode */
2514 if (flag_16bit_code)
2515 as_bad (_("GOT relocations not supported in 16 bit mode"));
2516
2517 if (GOT_symbol == NULL)
2518 GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
2519
2520 if (strncmp (cp + 1, "PLT", 3) == 0)
2521 {
2522 i.disp_reloc[this_operand] = BFD_RELOC_386_PLT32;
2523 len = 3;
2524 }
2525 else if (strncmp (cp + 1, "GOTOFF", 6) == 0)
2526 {
2527 i.disp_reloc[this_operand] = BFD_RELOC_386_GOTOFF;
2528 len = 6;
2529 }
2530 else if (strncmp (cp + 1, "GOT", 3) == 0)
2531 {
2532 i.disp_reloc[this_operand] = BFD_RELOC_386_GOT32;
2533 len = 3;
2534 }
2535 else
2536 as_bad (_("Bad reloc specifier in expression"));
2537
2538 /* Replace the relocation token with ' ', so that errors like
2539 foo@GOTOFF1 will be detected. */
2540 first = cp - input_line_pointer;
2541 tmpbuf = (char *) alloca (strlen(input_line_pointer));
2542 memcpy (tmpbuf, input_line_pointer, first);
2543 tmpbuf[first] = ' ';
2544 strcpy (tmpbuf + first + 1, cp + 1 + len);
2545 input_line_pointer = tmpbuf;
2546 }
2547 }
252b5132
RH
2548#endif
2549
2550 exp_seg = expression (exp);
2551
83183c0c 2552 SKIP_WHITESPACE ();
252b5132
RH
2553 if (*input_line_pointer)
2554 as_bad (_("Ignoring junk `%s' after expression"), input_line_pointer);
2555
2556 input_line_pointer = save_input_line_pointer;
2557
2daf4fd8 2558 if (exp->X_op == O_absent || exp->X_op == O_big)
252b5132
RH
2559 {
2560 /* missing or bad expr becomes absolute 0 */
2561 as_bad (_("Missing or invalid immediate expression `%s' taken as 0"),
24eab124 2562 imm_start);
252b5132
RH
2563 exp->X_op = O_constant;
2564 exp->X_add_number = 0;
2565 exp->X_add_symbol = (symbolS *) 0;
2566 exp->X_op_symbol = (symbolS *) 0;
252b5132 2567 }
2daf4fd8
AM
2568
2569 if (exp->X_op == O_constant)
252b5132 2570 {
b4cac588
AM
2571 int bigimm = Imm32;
2572 if (flag_16bit_code ^ (i.prefix[DATA_PREFIX] != 0))
2573 bigimm = Imm16;
2574
252b5132 2575 i.types[this_operand] |=
b4cac588
AM
2576 (bigimm | smallest_imm_type ((long) exp->X_add_number));
2577
add0c677 2578 /* If a suffix is given, this operand may be shortened. */
252b5132 2579 switch (i.suffix)
24eab124
AM
2580 {
2581 case WORD_MNEM_SUFFIX:
2582 i.types[this_operand] |= Imm16;
2583 break;
2584 case BYTE_MNEM_SUFFIX:
2585 i.types[this_operand] |= Imm16 | Imm8 | Imm8S;
2586 break;
2587 }
252b5132
RH
2588 }
2589#ifdef OBJ_AOUT
2590 else if (exp_seg != text_section
24eab124
AM
2591 && exp_seg != data_section
2592 && exp_seg != bss_section
2593 && exp_seg != undefined_section
252b5132 2594#ifdef BFD_ASSEMBLER
24eab124 2595 && !bfd_is_com_section (exp_seg)
252b5132 2596#endif
24eab124 2597 )
252b5132 2598 {
252b5132
RH
2599 as_bad (_("Unimplemented segment type %d in operand"), exp_seg);
2600 return 0;
2601 }
2602#endif
2603 else
2604 {
2605 /* This is an address. The size of the address will be
24eab124
AM
2606 determined later, depending on destination register,
2607 suffix, or the default for the section. We exclude
2608 Imm8S here so that `push $foo' and other instructions
2609 with an Imm8S form will use Imm16 or Imm32. */
252b5132
RH
2610 i.types[this_operand] |= (Imm8 | Imm16 | Imm32);
2611 }
2612
2613 return 1;
2614}
2615
2616static int i386_scale PARAMS ((char *));
2617
2618static int
2619i386_scale (scale)
2620 char *scale;
2621{
2622 if (!isdigit (*scale))
2623 goto bad_scale;
2624
2625 switch (*scale)
2626 {
2627 case '0':
2628 case '1':
2629 i.log2_scale_factor = 0;
2630 break;
2631 case '2':
2632 i.log2_scale_factor = 1;
2633 break;
2634 case '4':
2635 i.log2_scale_factor = 2;
2636 break;
2637 case '8':
2638 i.log2_scale_factor = 3;
2639 break;
2640 default:
2641 bad_scale:
2642 as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
24eab124 2643 scale);
252b5132
RH
2644 return 0;
2645 }
2646 if (i.log2_scale_factor != 0 && ! i.index_reg)
2647 {
2648 as_warn (_("scale factor of %d without an index register"),
24eab124 2649 1 << i.log2_scale_factor);
252b5132
RH
2650#if SCALE1_WHEN_NO_INDEX
2651 i.log2_scale_factor = 0;
2652#endif
2653 }
2654 return 1;
2655}
2656
2657static int i386_displacement PARAMS ((char *, char *));
2658
2659static int
2660i386_displacement (disp_start, disp_end)
2661 char *disp_start;
2662 char *disp_end;
2663{
2664 register expressionS *exp;
2665 segT exp_seg = 0;
2666 char *save_input_line_pointer;
2667 int bigdisp = Disp32;
2668
252b5132
RH
2669 if (flag_16bit_code ^ (i.prefix[ADDR_PREFIX] != 0))
2670 bigdisp = Disp16;
2671 i.types[this_operand] |= bigdisp;
2672
2673 exp = &disp_expressions[i.disp_operands];
2674 i.disps[this_operand] = exp;
2675 i.disp_reloc[this_operand] = NO_RELOC;
2676 i.disp_operands++;
2677 save_input_line_pointer = input_line_pointer;
2678 input_line_pointer = disp_start;
2679 END_STRING_AND_SAVE (disp_end);
2680
2681#ifndef GCC_ASM_O_HACK
2682#define GCC_ASM_O_HACK 0
2683#endif
2684#if GCC_ASM_O_HACK
2685 END_STRING_AND_SAVE (disp_end + 1);
2686 if ((i.types[this_operand] & BaseIndex) != 0
24eab124 2687 && displacement_string_end[-1] == '+')
252b5132
RH
2688 {
2689 /* This hack is to avoid a warning when using the "o"
24eab124
AM
2690 constraint within gcc asm statements.
2691 For instance:
2692
2693 #define _set_tssldt_desc(n,addr,limit,type) \
2694 __asm__ __volatile__ ( \
2695 "movw %w2,%0\n\t" \
2696 "movw %w1,2+%0\n\t" \
2697 "rorl $16,%1\n\t" \
2698 "movb %b1,4+%0\n\t" \
2699 "movb %4,5+%0\n\t" \
2700 "movb $0,6+%0\n\t" \
2701 "movb %h1,7+%0\n\t" \
2702 "rorl $16,%1" \
2703 : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type))
2704
2705 This works great except that the output assembler ends
2706 up looking a bit weird if it turns out that there is
2707 no offset. You end up producing code that looks like:
2708
2709 #APP
2710 movw $235,(%eax)
2711 movw %dx,2+(%eax)
2712 rorl $16,%edx
2713 movb %dl,4+(%eax)
2714 movb $137,5+(%eax)
2715 movb $0,6+(%eax)
2716 movb %dh,7+(%eax)
2717 rorl $16,%edx
2718 #NO_APP
2719
2720 So here we provide the missing zero.
2721 */
2722
2723 *displacement_string_end = '0';
252b5132
RH
2724 }
2725#endif
2726#ifndef LEX_AT
24eab124
AM
2727 {
2728 /*
2729 * We can have operands of the form
2730 * <symbol>@GOTOFF+<nnn>
2731 * Take the easy way out here and copy everything
2732 * into a temporary buffer...
2733 */
2734 register char *cp;
2735
2736 cp = strchr (input_line_pointer, '@');
2737 if (cp != NULL)
2738 {
2739 char *tmpbuf;
2740 int len = 0;
2741 int first;
2742
2743 /* GOT relocations are not supported in 16 bit mode */
2744 if (flag_16bit_code)
2745 as_bad (_("GOT relocations not supported in 16 bit mode"));
2746
2747 if (GOT_symbol == NULL)
2748 GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
2749
2750 if (strncmp (cp + 1, "PLT", 3) == 0)
2751 {
2752 i.disp_reloc[this_operand] = BFD_RELOC_386_PLT32;
2753 len = 3;
2754 }
2755 else if (strncmp (cp + 1, "GOTOFF", 6) == 0)
2756 {
2757 i.disp_reloc[this_operand] = BFD_RELOC_386_GOTOFF;
2758 len = 6;
2759 }
2760 else if (strncmp (cp + 1, "GOT", 3) == 0)
2761 {
2762 i.disp_reloc[this_operand] = BFD_RELOC_386_GOT32;
2763 len = 3;
2764 }
2765 else
2766 as_bad (_("Bad reloc specifier in expression"));
2767
2768 /* Replace the relocation token with ' ', so that errors like
2769 foo@GOTOFF1 will be detected. */
2770 first = cp - input_line_pointer;
2771 tmpbuf = (char *) alloca (strlen(input_line_pointer));
2772 memcpy (tmpbuf, input_line_pointer, first);
2773 tmpbuf[first] = ' ';
2774 strcpy (tmpbuf + first + 1, cp + 1 + len);
2775 input_line_pointer = tmpbuf;
2776 }
2777 }
252b5132
RH
2778#endif
2779
24eab124 2780 exp_seg = expression (exp);
252b5132
RH
2781
2782#ifdef BFD_ASSEMBLER
24eab124
AM
2783 /* We do this to make sure that the section symbol is in
2784 the symbol table. We will ultimately change the relocation
2785 to be relative to the beginning of the section */
2786 if (i.disp_reloc[this_operand] == BFD_RELOC_386_GOTOFF)
2787 {
2788 if (S_IS_LOCAL(exp->X_add_symbol)
2789 && S_GET_SEGMENT (exp->X_add_symbol) != undefined_section)
2790 section_symbol (S_GET_SEGMENT (exp->X_add_symbol));
2791 assert (exp->X_op == O_symbol);
2792 exp->X_op = O_subtract;
2793 exp->X_op_symbol = GOT_symbol;
2794 i.disp_reloc[this_operand] = BFD_RELOC_32;
2795 }
252b5132
RH
2796#endif
2797
24eab124
AM
2798 SKIP_WHITESPACE ();
2799 if (*input_line_pointer)
2800 as_bad (_("Ignoring junk `%s' after expression"),
2801 input_line_pointer);
252b5132 2802#if GCC_ASM_O_HACK
24eab124 2803 RESTORE_END_STRING (disp_end + 1);
252b5132 2804#endif
24eab124
AM
2805 RESTORE_END_STRING (disp_end);
2806 input_line_pointer = save_input_line_pointer;
2807
2daf4fd8
AM
2808 if (exp->X_op == O_absent || exp->X_op == O_big)
2809 {
2810 /* missing or bad expr becomes absolute 0 */
2811 as_bad (_("Missing or invalid displacement expression `%s' taken as 0"),
2812 disp_start);
2813 exp->X_op = O_constant;
2814 exp->X_add_number = 0;
2815 exp->X_add_symbol = (symbolS *) 0;
2816 exp->X_op_symbol = (symbolS *) 0;
2817 }
2818
24eab124
AM
2819 if (exp->X_op == O_constant)
2820 {
2821 if (fits_in_signed_byte (exp->X_add_number))
2822 i.types[this_operand] |= Disp8;
2823 }
252b5132 2824#ifdef OBJ_AOUT
24eab124
AM
2825 else if (exp_seg != text_section
2826 && exp_seg != data_section
2827 && exp_seg != bss_section
2828 && exp_seg != undefined_section)
2829 {
2830 as_bad (_ ("Unimplemented segment type %d in operand"), exp_seg);
2831 return 0;
2832 }
252b5132
RH
2833#endif
2834 return 1;
2835}
2836
2837static int i386_operand_modifier PARAMS ((char **, int));
2838
2839static int
2840i386_operand_modifier (op_string, got_a_float)
2841 char **op_string;
2842 int got_a_float;
2843{
24eab124
AM
2844 if (!strncasecmp (*op_string, "BYTE PTR", 8))
2845 {
2846 i.suffix = BYTE_MNEM_SUFFIX;
2847 *op_string += 8;
2848 return BYTE_PTR;
252b5132 2849
24eab124
AM
2850 }
2851 else if (!strncasecmp (*op_string, "WORD PTR", 8))
2852 {
2853 i.suffix = WORD_MNEM_SUFFIX;
2854 *op_string += 8;
2855 return WORD_PTR;
2856 }
252b5132 2857
24eab124
AM
2858 else if (!strncasecmp (*op_string, "DWORD PTR", 9))
2859 {
2860 if (got_a_float)
2861 i.suffix = SHORT_MNEM_SUFFIX;
2862 else
add0c677 2863 i.suffix = LONG_MNEM_SUFFIX;
24eab124
AM
2864 *op_string += 9;
2865 return DWORD_PTR;
2866 }
252b5132 2867
24eab124
AM
2868 else if (!strncasecmp (*op_string, "QWORD PTR", 9))
2869 {
add0c677 2870 i.suffix = DWORD_MNEM_SUFFIX;
24eab124
AM
2871 *op_string += 9;
2872 return QWORD_PTR;
2873 }
252b5132 2874
24eab124
AM
2875 else if (!strncasecmp (*op_string, "XWORD PTR", 9))
2876 {
2877 i.suffix = LONG_DOUBLE_MNEM_SUFFIX;
2878 *op_string += 9;
2879 return XWORD_PTR;
2880 }
252b5132 2881
24eab124
AM
2882 else if (!strncasecmp (*op_string, "SHORT", 5))
2883 {
2884 *op_string += 5;
2885 return SHORT;
2886 }
252b5132 2887
24eab124
AM
2888 else if (!strncasecmp (*op_string, "OFFSET FLAT:", 12))
2889 {
2890 *op_string += 12;
2891 return OFFSET_FLAT;
2892 }
252b5132 2893
24eab124
AM
2894 else if (!strncasecmp (*op_string, "FLAT", 4))
2895 {
2896 *op_string += 4;
2897 return FLAT;
2898 }
252b5132 2899
24eab124 2900 else return NONE_FOUND;
c3332e24 2901}
252b5132
RH
2902
2903static char * build_displacement_string PARAMS ((int, char *));
2904
2905static char *
2906build_displacement_string (initial_disp, op_string)
2907 int initial_disp;
2908 char *op_string;
2909{
2910 char *temp_string = (char *) malloc (strlen (op_string) + 1);
2911 char *end_of_operand_string;
2912 char *tc;
2913 char *temp_disp;
2914
2915 temp_string[0] = '\0';
2916 tc = end_of_operand_string = strchr (op_string, '[');
2917 if ( initial_disp && !end_of_operand_string)
2918 {
2919 strcpy (temp_string, op_string);
2920 return (temp_string);
2921 }
2922
2923 /* Build the whole displacement string */
2924 if (initial_disp)
2925 {
2926 strncpy (temp_string, op_string, end_of_operand_string - op_string);
2927 temp_string[end_of_operand_string - op_string] = '\0';
2928 temp_disp = tc;
2929 }
c3332e24 2930 else
252b5132
RH
2931 temp_disp = op_string;
2932
2933 while (*temp_disp != '\0')
2934 {
af6bdddf 2935 char *end_op;
252b5132
RH
2936 int add_minus = (*temp_disp == '-');
2937
2938 if (*temp_disp == '+' || *temp_disp == '-' || *temp_disp == '[')
24eab124 2939 temp_disp++;
252b5132
RH
2940
2941 if (is_space_char (*temp_disp))
24eab124 2942 temp_disp++;
252b5132
RH
2943
2944 /* Don't consider registers */
af6bdddf
AM
2945 if ( !((*temp_disp == REGISTER_PREFIX || allow_naked_reg)
2946 && parse_register (temp_disp, &end_op)) )
24eab124
AM
2947 {
2948 char *string_start = temp_disp;
2949
2950 while (*temp_disp != ']'
2951 && *temp_disp != '+'
2952 && *temp_disp != '-'
2953 && *temp_disp != '*')
2954 ++temp_disp;
2955
2956 if (add_minus)
2957 strcat (temp_string, "-");
2958 else
2959 strcat (temp_string, "+");
2960
2961 strncat (temp_string, string_start, temp_disp - string_start);
2962 if (*temp_disp == '+' || *temp_disp == '-')
2963 --temp_disp;
2964 }
252b5132
RH
2965
2966 while (*temp_disp != '\0'
24eab124
AM
2967 && *temp_disp != '+'
2968 && *temp_disp != '-')
2969 ++temp_disp;
252b5132
RH
2970 }
2971
2972 return temp_string;
2973}
2974
2975static int i386_parse_seg PARAMS ((char *));
2976
2977static int
2978i386_parse_seg (op_string)
2979 char *op_string;
2980{
2981 if (is_space_char (*op_string))
2982 ++op_string;
2983
2984 /* Should be one of es, cs, ss, ds fs or gs */
2985 switch (*op_string++)
2986 {
2987 case 'e':
2988 i.seg[i.mem_operands] = &es;
2989 break;
2990 case 'c':
2991 i.seg[i.mem_operands] = &cs;
2992 break;
2993 case 's':
2994 i.seg[i.mem_operands] = &ss;
2995 break;
2996 case 'd':
2997 i.seg[i.mem_operands] = &ds;
2998 break;
2999 case 'f':
3000 i.seg[i.mem_operands] = &fs;
3001 break;
3002 case 'g':
3003 i.seg[i.mem_operands] = &gs;
3004 break;
3005 default:
3006 as_bad (_("bad segment name `%s'"), op_string);
3007 return 0;
3008 }
3009
3010 if (*op_string++ != 's')
3011 {
24eab124
AM
3012 as_bad (_("bad segment name `%s'"), op_string);
3013 return 0;
252b5132
RH
3014 }
3015
3016 if (is_space_char (*op_string))
3017 ++op_string;
3018
3019 if (*op_string != ':')
3020 {
24eab124
AM
3021 as_bad (_("bad segment name `%s'"), op_string);
3022 return 0;
252b5132
RH
3023 }
3024
c3332e24
AM
3025 return 1;
3026
252b5132
RH
3027}
3028
eecb386c 3029static int i386_index_check PARAMS((const char *));
252b5132 3030
eecb386c
AM
3031/* Make sure the memory operand we've been dealt is valid.
3032 Returns 1 on success, 0 on a failure.
3033*/
252b5132 3034static int
eecb386c
AM
3035i386_index_check (operand_string)
3036 const char *operand_string;
252b5132 3037{
24eab124 3038#if INFER_ADDR_PREFIX
eecb386c
AM
3039 int fudged = 0;
3040
24eab124
AM
3041 tryprefix:
3042#endif
3043 if (flag_16bit_code ^ (i.prefix[ADDR_PREFIX] != 0) ?
3044 /* 16 bit mode checks */
3045 ((i.base_reg
3046 && ((i.base_reg->reg_type & (Reg16|BaseIndex))
3047 != (Reg16|BaseIndex)))
3048 || (i.index_reg
3049 && (((i.index_reg->reg_type & (Reg16|BaseIndex))
3050 != (Reg16|BaseIndex))
3051 || ! (i.base_reg
3052 && i.base_reg->reg_num < 6
3053 && i.index_reg->reg_num >= 6
3054 && i.log2_scale_factor == 0)))) :
3055 /* 32 bit mode checks */
3056 ((i.base_reg
3057 && (i.base_reg->reg_type & Reg32) == 0)
3058 || (i.index_reg
3059 && ((i.index_reg->reg_type & (Reg32|BaseIndex))
3060 != (Reg32|BaseIndex)))))
3061 {
3062#if INFER_ADDR_PREFIX
eecb386c 3063 if (i.prefix[ADDR_PREFIX] == 0 && stackop_size != '\0')
24eab124
AM
3064 {
3065 i.prefix[ADDR_PREFIX] = ADDR_PREFIX_OPCODE;
3066 i.prefixes += 1;
b23bac36
AM
3067 /* Change the size of any displacement too. At most one of
3068 Disp16 or Disp32 is set.
3069 FIXME. There doesn't seem to be any real need for separate
3070 Disp16 and Disp32 flags. The same goes for Imm16 and Imm32.
3071 Removing them would probably clean up the code quite a lot.
3072 */
3073 if (i.types[this_operand] & (Disp16|Disp32))
3074 i.types[this_operand] ^= (Disp16|Disp32);
eecb386c 3075 fudged = 1;
24eab124
AM
3076 goto tryprefix;
3077 }
eecb386c
AM
3078 if (fudged)
3079 as_bad (_("`%s' is not a valid base/index expression"),
3080 operand_string);
3081 else
c388dee8 3082#endif
eecb386c
AM
3083 as_bad (_("`%s' is not a valid %s bit base/index expression"),
3084 operand_string,
3085 flag_16bit_code ^ (i.prefix[ADDR_PREFIX] != 0) ? "16" : "32");
3086 return 0;
24eab124
AM
3087 }
3088 return 1;
3089}
252b5132 3090
24eab124
AM
3091static int i386_intel_memory_operand PARAMS ((char *));
3092
3093static int
3094i386_intel_memory_operand (operand_string)
3095 char *operand_string;
3096{
3097 char *op_string = operand_string;
252b5132
RH
3098 char *end_of_operand_string;
3099
24eab124
AM
3100 if ((i.mem_operands == 1
3101 && (current_templates->start->opcode_modifier & IsString) == 0)
3102 || i.mem_operands == 2)
252b5132 3103 {
24eab124
AM
3104 as_bad (_("too many memory references for `%s'"),
3105 current_templates->start->name);
3106 return 0;
252b5132
RH
3107 }
3108
3109 /* Look for displacement preceding open bracket */
3110 if (*op_string != '[')
3111 {
3112 char *end_seg;
3113 char *temp_string;
3114
3115 end_seg = strchr (op_string, ':');
3116 if (end_seg)
24eab124
AM
3117 {
3118 if (!i386_parse_seg (op_string))
3119 return 0;
3120 op_string = end_seg + 1;
3121 }
252b5132
RH
3122
3123 temp_string = build_displacement_string (true, op_string);
24eab124
AM
3124
3125 if (i.disp_operands == 0 &&
3126 !i386_displacement (temp_string, temp_string + strlen (temp_string)))
3127 return 0;
252b5132
RH
3128
3129 end_of_operand_string = strchr (op_string, '[');
3130 if (!end_of_operand_string)
24eab124 3131 end_of_operand_string = op_string + strlen (op_string);
252b5132
RH
3132
3133 if (is_space_char (*end_of_operand_string))
24eab124 3134 --end_of_operand_string;
252b5132
RH
3135
3136 op_string = end_of_operand_string;
24eab124 3137 }
252b5132
RH
3138
3139 if (*op_string == '[')
3140 {
3141 ++op_string;
3142
3143 /* Pick off each component and figure out where it belongs */
3144
3145 end_of_operand_string = op_string;
3146
3147 while (*op_string != ']')
24eab124 3148 {
af6bdddf
AM
3149 const reg_entry *temp_reg;
3150 char *end_op;
3151 char *temp_string;
24eab124
AM
3152
3153 while (*end_of_operand_string != '+'
3154 && *end_of_operand_string != '-'
3155 && *end_of_operand_string != '*'
3156 && *end_of_operand_string != ']')
3157 end_of_operand_string++;
3158
af6bdddf
AM
3159 temp_string = op_string;
3160 if (*temp_string == '+')
24eab124 3161 {
af6bdddf 3162 ++temp_string;
24eab124
AM
3163 if (is_space_char (*temp_string))
3164 ++temp_string;
24eab124
AM
3165 }
3166
af6bdddf
AM
3167 if ((*temp_string == REGISTER_PREFIX || allow_naked_reg)
3168 && (temp_reg = parse_register (temp_string, &end_op)) != NULL)
24eab124 3169 {
24eab124
AM
3170 if (i.base_reg == NULL)
3171 i.base_reg = temp_reg;
3172 else
3173 i.index_reg = temp_reg;
3174
3175 i.types[this_operand] |= BaseIndex;
24eab124 3176 }
af6bdddf 3177 else if (*temp_string == REGISTER_PREFIX)
24eab124 3178 {
af6bdddf
AM
3179 as_bad (_("bad register name `%s'"), temp_string);
3180 return 0;
3181 }
3182 else if (is_digit_char (*op_string)
3183 || *op_string == '+' || *op_string == '-')
3184 {
3185 temp_string = build_displacement_string (false, op_string);
24eab124
AM
3186
3187 if (*temp_string == '+')
3188 ++temp_string;
3189
3190 if (i.disp_operands == 0 &&
3191 !i386_displacement (temp_string, temp_string + strlen (temp_string)))
3192 return 0;
3193
3194 ++op_string;
3195 end_of_operand_string = op_string;
3196 while (*end_of_operand_string != ']'
3197 && *end_of_operand_string != '+'
3198 && *end_of_operand_string != '-'
3199 && *end_of_operand_string != '*')
3200 ++end_of_operand_string;
3201 }
3202 else if (*op_string == '*')
3203 {
3204 ++op_string;
3205
3206 if (i.base_reg && !i.index_reg)
3207 {
3208 i.index_reg = i.base_reg;
3209 i.base_reg = 0;
3210 }
3211
3212 if (!i386_scale (op_string))
3213 return 0;
3214 }
3215 op_string = end_of_operand_string;
3216 ++end_of_operand_string;
3217 }
3218 }
3219
eecb386c
AM
3220 if (i386_index_check (operand_string) == 0)
3221 return 0;
252b5132 3222
24eab124 3223 i.mem_operands++;
252b5132
RH
3224 return 1;
3225}
3226
252b5132
RH
3227static int
3228i386_intel_operand (operand_string, got_a_float)
3229 char *operand_string;
3230 int got_a_float;
3231{
af6bdddf
AM
3232 const reg_entry * r;
3233 char *end_op;
252b5132
RH
3234 char *op_string = operand_string;
3235
3236 int operand_modifier = i386_operand_modifier (&op_string, got_a_float);
3237 if (is_space_char (*op_string))
3238 ++op_string;
3239
3240 switch (operand_modifier)
3241 {
3242 case BYTE_PTR:
3243 case WORD_PTR:
3244 case DWORD_PTR:
3245 case QWORD_PTR:
3246 case XWORD_PTR:
252b5132 3247 if (!i386_intel_memory_operand (op_string))
24eab124 3248 return 0;
252b5132
RH
3249 break;
3250
3251 case FLAT:
252b5132
RH
3252 case OFFSET_FLAT:
3253 if (!i386_immediate (op_string))
24eab124 3254 return 0;
252b5132
RH
3255 break;
3256
3257 case SHORT:
252b5132 3258 case NONE_FOUND:
c3332e24
AM
3259 /* Should be register or immediate */
3260 if (is_digit_char (*op_string)
3261 && strchr (op_string, '[') == 0)
3262 {
3263 if (!i386_immediate (op_string))
3264 return 0;
3265 }
af6bdddf
AM
3266 else if ((*op_string == REGISTER_PREFIX || allow_naked_reg)
3267 && (r = parse_register (op_string, &end_op)) != NULL)
c3332e24 3268 {
c3332e24
AM
3269 /* Check for a segment override by searching for ':' after a
3270 segment register. */
3271 op_string = end_op;
3272 if (is_space_char (*op_string))
3273 ++op_string;
3274 if (*op_string == ':' && (r->reg_type & (SReg2 | SReg3)))
3275 {
3276 switch (r->reg_num)
3277 {
3278 case 0:
3279 i.seg[i.mem_operands] = &es;
3280 break;
3281 case 1:
3282 i.seg[i.mem_operands] = &cs;
3283 break;
3284 case 2:
3285 i.seg[i.mem_operands] = &ss;
3286 break;
3287 case 3:
3288 i.seg[i.mem_operands] = &ds;
3289 break;
3290 case 4:
3291 i.seg[i.mem_operands] = &fs;
3292 break;
3293 case 5:
3294 i.seg[i.mem_operands] = &gs;
3295 break;
3296 }
252b5132 3297
c3332e24
AM
3298 }
3299 i.types[this_operand] |= r->reg_type & ~BaseIndex;
3300 i.regs[this_operand] = r;
3301 i.reg_operands++;
3302 }
af6bdddf 3303 else if (*op_string == REGISTER_PREFIX)
c3332e24 3304 {
af6bdddf
AM
3305 as_bad (_("bad register name `%s'"), op_string);
3306 return 0;
c3332e24 3307 }
af6bdddf
AM
3308 else if (!i386_intel_memory_operand (op_string))
3309 return 0;
3310
c3332e24 3311 break;
c3332e24 3312 } /* end switch */
24eab124 3313
252b5132
RH
3314 return 1;
3315}
3316
3317/* Parse OPERAND_STRING into the i386_insn structure I. Returns non-zero
3318 on error. */
3319
252b5132
RH
3320static int
3321i386_operand (operand_string)
3322 char *operand_string;
3323{
af6bdddf
AM
3324 const reg_entry *r;
3325 char *end_op;
24eab124 3326 char *op_string = operand_string;
252b5132 3327
24eab124 3328 if (is_space_char (*op_string))
252b5132
RH
3329 ++op_string;
3330
24eab124
AM
3331 /* We check for an absolute prefix (differentiating,
3332 for example, 'jmp pc_relative_label' from 'jmp *absolute_label'. */
3333 if (*op_string == ABSOLUTE_PREFIX)
3334 {
3335 ++op_string;
3336 if (is_space_char (*op_string))
3337 ++op_string;
3338 i.types[this_operand] |= JumpAbsolute;
3339 }
252b5132 3340
24eab124 3341 /* Check if operand is a register. */
af6bdddf
AM
3342 if ((*op_string == REGISTER_PREFIX || allow_naked_reg)
3343 && (r = parse_register (op_string, &end_op)) != NULL)
24eab124 3344 {
24eab124
AM
3345 /* Check for a segment override by searching for ':' after a
3346 segment register. */
3347 op_string = end_op;
3348 if (is_space_char (*op_string))
3349 ++op_string;
3350 if (*op_string == ':' && (r->reg_type & (SReg2 | SReg3)))
3351 {
3352 switch (r->reg_num)
3353 {
3354 case 0:
3355 i.seg[i.mem_operands] = &es;
3356 break;
3357 case 1:
3358 i.seg[i.mem_operands] = &cs;
3359 break;
3360 case 2:
3361 i.seg[i.mem_operands] = &ss;
3362 break;
3363 case 3:
3364 i.seg[i.mem_operands] = &ds;
3365 break;
3366 case 4:
3367 i.seg[i.mem_operands] = &fs;
3368 break;
3369 case 5:
3370 i.seg[i.mem_operands] = &gs;
3371 break;
3372 }
252b5132 3373
24eab124 3374 /* Skip the ':' and whitespace. */
252b5132
RH
3375 ++op_string;
3376 if (is_space_char (*op_string))
24eab124 3377 ++op_string;
252b5132 3378
24eab124
AM
3379 if (!is_digit_char (*op_string)
3380 && !is_identifier_char (*op_string)
3381 && *op_string != '('
3382 && *op_string != ABSOLUTE_PREFIX)
3383 {
3384 as_bad (_("bad memory operand `%s'"), op_string);
3385 return 0;
3386 }
3387 /* Handle case of %es:*foo. */
3388 if (*op_string == ABSOLUTE_PREFIX)
3389 {
3390 ++op_string;
3391 if (is_space_char (*op_string))
3392 ++op_string;
3393 i.types[this_operand] |= JumpAbsolute;
3394 }
3395 goto do_memory_reference;
3396 }
3397 if (*op_string)
3398 {
3399 as_bad (_("Junk `%s' after register"), op_string);
3400 return 0;
3401 }
3402 i.types[this_operand] |= r->reg_type & ~BaseIndex;
3403 i.regs[this_operand] = r;
3404 i.reg_operands++;
3405 }
af6bdddf
AM
3406 else if (*op_string == REGISTER_PREFIX)
3407 {
3408 as_bad (_("bad register name `%s'"), op_string);
3409 return 0;
3410 }
24eab124
AM
3411 else if (*op_string == IMMEDIATE_PREFIX)
3412 { /* ... or an immediate */
3413 ++op_string;
3414 if (i.types[this_operand] & JumpAbsolute)
3415 {
3416 as_bad (_("Immediate operand illegal with absolute jump"));
3417 return 0;
3418 }
3419 if (!i386_immediate (op_string))
3420 return 0;
3421 }
3422 else if (is_digit_char (*op_string)
3423 || is_identifier_char (*op_string)
3424 || *op_string == '(' )
3425 {
3426 /* This is a memory reference of some sort. */
af6bdddf 3427 char *base_string;
252b5132 3428
24eab124 3429 /* Start and end of displacement string expression (if found). */
eecb386c
AM
3430 char *displacement_string_start;
3431 char *displacement_string_end;
252b5132 3432
24eab124 3433 do_memory_reference:
24eab124
AM
3434 if ((i.mem_operands == 1
3435 && (current_templates->start->opcode_modifier & IsString) == 0)
3436 || i.mem_operands == 2)
3437 {
3438 as_bad (_("too many memory references for `%s'"),
3439 current_templates->start->name);
3440 return 0;
3441 }
252b5132 3442
24eab124
AM
3443 /* Check for base index form. We detect the base index form by
3444 looking for an ')' at the end of the operand, searching
3445 for the '(' matching it, and finding a REGISTER_PREFIX or ','
3446 after the '('. */
af6bdddf 3447 base_string = op_string + strlen (op_string);
c3332e24 3448
af6bdddf
AM
3449 --base_string;
3450 if (is_space_char (*base_string))
3451 --base_string;
252b5132 3452
af6bdddf
AM
3453 /* If we only have a displacement, set-up for it to be parsed later. */
3454 displacement_string_start = op_string;
3455 displacement_string_end = base_string + 1;
252b5132 3456
24eab124
AM
3457 if (*base_string == ')')
3458 {
af6bdddf 3459 char *temp_string;
24eab124
AM
3460 unsigned int parens_balanced = 1;
3461 /* We've already checked that the number of left & right ()'s are
3462 equal, so this loop will not be infinite. */
3463 do
3464 {
3465 base_string--;
3466 if (*base_string == ')')
3467 parens_balanced++;
3468 if (*base_string == '(')
3469 parens_balanced--;
3470 }
3471 while (parens_balanced);
c3332e24 3472
af6bdddf 3473 temp_string = base_string;
c3332e24 3474
24eab124 3475 /* Skip past '(' and whitespace. */
252b5132
RH
3476 ++base_string;
3477 if (is_space_char (*base_string))
24eab124 3478 ++base_string;
252b5132 3479
af6bdddf
AM
3480 if (*base_string == ','
3481 || ((*base_string == REGISTER_PREFIX || allow_naked_reg)
3482 && (i.base_reg = parse_register (base_string, &end_op)) != NULL))
252b5132 3483 {
af6bdddf 3484 displacement_string_end = temp_string;
252b5132 3485
af6bdddf 3486 i.types[this_operand] |= BaseIndex;
252b5132 3487
af6bdddf 3488 if (i.base_reg)
24eab124 3489 {
24eab124
AM
3490 base_string = end_op;
3491 if (is_space_char (*base_string))
3492 ++base_string;
af6bdddf
AM
3493 }
3494
3495 /* There may be an index reg or scale factor here. */
3496 if (*base_string == ',')
3497 {
3498 ++base_string;
3499 if (is_space_char (*base_string))
3500 ++base_string;
3501
3502 if ((*base_string == REGISTER_PREFIX || allow_naked_reg)
3503 && (i.index_reg = parse_register (base_string, &end_op)) != NULL)
24eab124 3504 {
af6bdddf 3505 base_string = end_op;
24eab124
AM
3506 if (is_space_char (*base_string))
3507 ++base_string;
af6bdddf
AM
3508 if (*base_string == ',')
3509 {
3510 ++base_string;
3511 if (is_space_char (*base_string))
3512 ++base_string;
3513 }
3514 else if (*base_string != ')' )
3515 {
3516 as_bad (_("expecting `,' or `)' after index register in `%s'"),
3517 operand_string);
3518 return 0;
3519 }
24eab124 3520 }
af6bdddf 3521 else if (*base_string == REGISTER_PREFIX)
24eab124 3522 {
af6bdddf 3523 as_bad (_("bad register name `%s'"), base_string);
24eab124
AM
3524 return 0;
3525 }
252b5132 3526
af6bdddf
AM
3527 /* Check for scale factor. */
3528 if (isdigit ((unsigned char) *base_string))
3529 {
3530 if (!i386_scale (base_string))
3531 return 0;
24eab124 3532
af6bdddf
AM
3533 ++base_string;
3534 if (is_space_char (*base_string))
3535 ++base_string;
3536 if (*base_string != ')')
3537 {
3538 as_bad (_("expecting `)' after scale factor in `%s'"),
3539 operand_string);
3540 return 0;
3541 }
3542 }
3543 else if (!i.index_reg)
24eab124 3544 {
af6bdddf
AM
3545 as_bad (_("expecting index register or scale factor after `,'; got '%c'"),
3546 *base_string);
24eab124
AM
3547 return 0;
3548 }
3549 }
af6bdddf 3550 else if (*base_string != ')')
24eab124 3551 {
af6bdddf
AM
3552 as_bad (_("expecting `,' or `)' after base register in `%s'"),
3553 operand_string);
24eab124
AM
3554 return 0;
3555 }
c3332e24 3556 }
af6bdddf 3557 else if (*base_string == REGISTER_PREFIX)
c3332e24 3558 {
af6bdddf 3559 as_bad (_("bad register name `%s'"), base_string);
24eab124 3560 return 0;
c3332e24 3561 }
24eab124
AM
3562 }
3563
3564 /* If there's an expression beginning the operand, parse it,
3565 assuming displacement_string_start and
3566 displacement_string_end are meaningful. */
3567 if (displacement_string_start != displacement_string_end)
3568 {
3569 if (!i386_displacement (displacement_string_start,
3570 displacement_string_end))
3571 return 0;
3572 }
3573
3574 /* Special case for (%dx) while doing input/output op. */
3575 if (i.base_reg
3576 && i.base_reg->reg_type == (Reg16 | InOutPortReg)
3577 && i.index_reg == 0
3578 && i.log2_scale_factor == 0
3579 && i.seg[i.mem_operands] == 0
3580 && (i.types[this_operand] & Disp) == 0)
3581 {
3582 i.types[this_operand] = InOutPortReg;
3583 return 1;
3584 }
3585
eecb386c
AM
3586 if (i386_index_check (operand_string) == 0)
3587 return 0;
24eab124
AM
3588 i.mem_operands++;
3589 }
3590 else
3591 { /* it's not a memory operand; argh! */
3592 as_bad (_("invalid char %s beginning operand %d `%s'"),
3593 output_invalid (*op_string),
3594 this_operand + 1,
3595 op_string);
3596 return 0;
3597 }
3598 return 1; /* normal return */
252b5132
RH
3599}
3600\f
3601/*
24eab124 3602 * md_estimate_size_before_relax()
252b5132
RH
3603 *
3604 * Called just before relax().
3605 * Any symbol that is now undefined will not become defined.
3606 * Return the correct fr_subtype in the frag.
3607 * Return the initial "guess for fr_var" to caller.
3608 * The guess for fr_var is ACTUALLY the growth beyond fr_fix.
3609 * Whatever we do to grow fr_fix or fr_var contributes to our returned value.
3610 * Although it may not be explicit in the frag, pretend fr_var starts with a
3611 * 0 value.
3612 */
3613int
3614md_estimate_size_before_relax (fragP, segment)
3615 register fragS *fragP;
3616 register segT segment;
3617{
3618 register unsigned char *opcode;
3619 register int old_fr_fix;
3620
3621 old_fr_fix = fragP->fr_fix;
3622 opcode = (unsigned char *) fragP->fr_opcode;
3623 /* We've already got fragP->fr_subtype right; all we have to do is
3624 check for un-relaxable symbols. */
3625 if (S_GET_SEGMENT (fragP->fr_symbol) != segment)
3626 {
3627 /* symbol is undefined in this segment */
3628 int code16 = fragP->fr_subtype & CODE16;
3629 int size = code16 ? 2 : 4;
3630 int pcrel_reloc = code16 ? BFD_RELOC_16_PCREL : BFD_RELOC_32_PCREL;
3631
3632 switch (opcode[0])
3633 {
3634 case JUMP_PC_RELATIVE: /* make jmp (0xeb) a dword displacement jump */
3635 opcode[0] = 0xe9; /* dword disp jmp */
3636 fragP->fr_fix += size;
3637 fix_new (fragP, old_fr_fix, size,
3638 fragP->fr_symbol,
3639 fragP->fr_offset, 1,
3640 (GOT_symbol && /* Not quite right - we should switch on
3641 presence of @PLT, but I cannot see how
3642 to get to that from here. We should have
3643 done this in md_assemble to really
3644 get it right all of the time, but I
3645 think it does not matter that much, as
3646 this will be right most of the time. ERY*/
3647 S_GET_SEGMENT(fragP->fr_symbol) == undefined_section)
3648 ? BFD_RELOC_386_PLT32 : pcrel_reloc);
3649 break;
3650
3651 default:
24eab124
AM
3652 /* This changes the byte-displacement jump 0x7N
3653 to the dword-displacement jump 0x0f8N. */
252b5132
RH
3654 opcode[1] = opcode[0] + 0x10;
3655 opcode[0] = TWO_BYTE_OPCODE_ESCAPE; /* two-byte escape */
3656 fragP->fr_fix += 1 + size; /* we've added an opcode byte */
3657 fix_new (fragP, old_fr_fix + 1, size,
3658 fragP->fr_symbol,
3659 fragP->fr_offset, 1,
3660 (GOT_symbol && /* Not quite right - we should switch on
24eab124
AM
3661 presence of @PLT, but I cannot see how
3662 to get to that from here. ERY */
252b5132
RH
3663 S_GET_SEGMENT(fragP->fr_symbol) == undefined_section)
3664 ? BFD_RELOC_386_PLT32 : pcrel_reloc);
3665 break;
3666 }
3667 frag_wane (fragP);
3668 }
3669 return (fragP->fr_var + fragP->fr_fix - old_fr_fix);
3670} /* md_estimate_size_before_relax() */
3671\f
3672/*
3673 * md_convert_frag();
3674 *
3675 * Called after relax() is finished.
3676 * In: Address of frag.
3677 * fr_type == rs_machine_dependent.
3678 * fr_subtype is what the address relaxed to.
3679 *
3680 * Out: Any fixSs and constants are set up.
3681 * Caller will turn frag into a ".space 0".
3682 */
3683#ifndef BFD_ASSEMBLER
3684void
3685md_convert_frag (headers, sec, fragP)
a04b544b
ILT
3686 object_headers *headers ATTRIBUTE_UNUSED;
3687 segT sec ATTRIBUTE_UNUSED;
252b5132
RH
3688 register fragS *fragP;
3689#else
3690void
3691md_convert_frag (abfd, sec, fragP)
ab9da554
ILT
3692 bfd *abfd ATTRIBUTE_UNUSED;
3693 segT sec ATTRIBUTE_UNUSED;
252b5132
RH
3694 register fragS *fragP;
3695#endif
3696{
3697 register unsigned char *opcode;
3698 unsigned char *where_to_put_displacement = NULL;
3699 unsigned int target_address;
3700 unsigned int opcode_address;
3701 unsigned int extension = 0;
3702 int displacement_from_opcode_start;
3703
3704 opcode = (unsigned char *) fragP->fr_opcode;
3705
3706 /* Address we want to reach in file space. */
3707 target_address = S_GET_VALUE (fragP->fr_symbol) + fragP->fr_offset;
3708#ifdef BFD_ASSEMBLER /* not needed otherwise? */
49309057 3709 target_address += symbol_get_frag (fragP->fr_symbol)->fr_address;
252b5132
RH
3710#endif
3711
3712 /* Address opcode resides at in file space. */
3713 opcode_address = fragP->fr_address + fragP->fr_fix;
3714
3715 /* Displacement from opcode start to fill into instruction. */
3716 displacement_from_opcode_start = target_address - opcode_address;
3717
3718 switch (fragP->fr_subtype)
3719 {
3720 case ENCODE_RELAX_STATE (COND_JUMP, SMALL):
3721 case ENCODE_RELAX_STATE (COND_JUMP, SMALL16):
3722 case ENCODE_RELAX_STATE (UNCOND_JUMP, SMALL):
3723 case ENCODE_RELAX_STATE (UNCOND_JUMP, SMALL16):
3724 /* don't have to change opcode */
3725 extension = 1; /* 1 opcode + 1 displacement */
3726 where_to_put_displacement = &opcode[1];
3727 break;
3728
3729 case ENCODE_RELAX_STATE (COND_JUMP, BIG):
3730 extension = 5; /* 2 opcode + 4 displacement */
3731 opcode[1] = opcode[0] + 0x10;
3732 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
3733 where_to_put_displacement = &opcode[2];
3734 break;
3735
3736 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG):
3737 extension = 4; /* 1 opcode + 4 displacement */
3738 opcode[0] = 0xe9;
3739 where_to_put_displacement = &opcode[1];
3740 break;
3741
3742 case ENCODE_RELAX_STATE (COND_JUMP, BIG16):
3743 extension = 3; /* 2 opcode + 2 displacement */
3744 opcode[1] = opcode[0] + 0x10;
3745 opcode[0] = TWO_BYTE_OPCODE_ESCAPE;
3746 where_to_put_displacement = &opcode[2];
3747 break;
3748
3749 case ENCODE_RELAX_STATE (UNCOND_JUMP, BIG16):
3750 extension = 2; /* 1 opcode + 2 displacement */
3751 opcode[0] = 0xe9;
3752 where_to_put_displacement = &opcode[1];
3753 break;
3754
3755 default:
3756 BAD_CASE (fragP->fr_subtype);
3757 break;
3758 }
3759 /* now put displacement after opcode */
3760 md_number_to_chars ((char *) where_to_put_displacement,
3761 (valueT) (displacement_from_opcode_start - extension),
3762 SIZE_FROM_RELAX_STATE (fragP->fr_subtype));
3763 fragP->fr_fix += extension;
3764}
3765\f
3766
3767int md_short_jump_size = 2; /* size of byte displacement jmp */
3768int md_long_jump_size = 5; /* size of dword displacement jmp */
3769const int md_reloc_size = 8; /* Size of relocation record */
3770
3771void
3772md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol)
3773 char *ptr;
3774 addressT from_addr, to_addr;
ab9da554
ILT
3775 fragS *frag ATTRIBUTE_UNUSED;
3776 symbolS *to_symbol ATTRIBUTE_UNUSED;
252b5132
RH
3777{
3778 long offset;
3779
3780 offset = to_addr - (from_addr + 2);
3781 md_number_to_chars (ptr, (valueT) 0xeb, 1); /* opcode for byte-disp jump */
3782 md_number_to_chars (ptr + 1, (valueT) offset, 1);
3783}
3784
3785void
3786md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
3787 char *ptr;
3788 addressT from_addr, to_addr;
3789 fragS *frag;
3790 symbolS *to_symbol;
3791{
3792 long offset;
3793
3794 if (flag_do_long_jump)
3795 {
3796 offset = to_addr - S_GET_VALUE (to_symbol);
3797 md_number_to_chars (ptr, (valueT) 0xe9, 1);/* opcode for long jmp */
3798 md_number_to_chars (ptr + 1, (valueT) offset, 4);
3799 fix_new (frag, (ptr + 1) - frag->fr_literal, 4,
3800 to_symbol, (offsetT) 0, 0, BFD_RELOC_32);
3801 }
3802 else
3803 {
3804 offset = to_addr - (from_addr + 5);
3805 md_number_to_chars (ptr, (valueT) 0xe9, 1);
3806 md_number_to_chars (ptr + 1, (valueT) offset, 4);
3807 }
3808}
3809\f
3810/* Apply a fixup (fixS) to segment data, once it has been determined
3811 by our caller that we have all the info we need to fix it up.
3812
3813 On the 386, immediates, displacements, and data pointers are all in
3814 the same (little-endian) format, so we don't need to care about which
3815 we are handling. */
3816
3817int
3818md_apply_fix3 (fixP, valp, seg)
3819 fixS *fixP; /* The fix we're to put in. */
3820 valueT *valp; /* Pointer to the value of the bits. */
a04b544b 3821 segT seg ATTRIBUTE_UNUSED; /* Segment fix is from. */
252b5132
RH
3822{
3823 register char *p = fixP->fx_where + fixP->fx_frag->fr_literal;
3824 valueT value = *valp;
3825
e1b283bb 3826#if defined (BFD_ASSEMBLER) && !defined (TE_Mach)
93382f6d
AM
3827 if (fixP->fx_pcrel)
3828 {
3829 switch (fixP->fx_r_type)
3830 {
5865bb77
ILT
3831 default:
3832 break;
3833
93382f6d
AM
3834 case BFD_RELOC_32:
3835 fixP->fx_r_type = BFD_RELOC_32_PCREL;
3836 break;
3837 case BFD_RELOC_16:
3838 fixP->fx_r_type = BFD_RELOC_16_PCREL;
3839 break;
3840 case BFD_RELOC_8:
3841 fixP->fx_r_type = BFD_RELOC_8_PCREL;
3842 break;
3843 }
3844 }
252b5132 3845
0723899b
ILT
3846 /* This is a hack. There should be a better way to handle this.
3847 This covers for the fact that bfd_install_relocation will
3848 subtract the current location (for partial_inplace, PC relative
3849 relocations); see more below. */
93382f6d
AM
3850 if ((fixP->fx_r_type == BFD_RELOC_32_PCREL
3851 || fixP->fx_r_type == BFD_RELOC_16_PCREL
3852 || fixP->fx_r_type == BFD_RELOC_8_PCREL)
3853 && fixP->fx_addsy)
252b5132
RH
3854 {
3855#ifndef OBJ_AOUT
3856 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
3857#ifdef TE_PE
3858 || OUTPUT_FLAVOR == bfd_target_coff_flavour
3859#endif
3860 )
3861 value += fixP->fx_where + fixP->fx_frag->fr_address;
3862#endif
3863#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
2f66722d 3864 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
252b5132 3865 {
2f66722d
AM
3866 segT fseg = S_GET_SEGMENT (fixP->fx_addsy);
3867
3868 if ((fseg == seg
3869 || (symbol_section_p (fixP->fx_addsy)
3870 && fseg != absolute_section))
3871 && ! S_IS_EXTERNAL (fixP->fx_addsy)
3872 && ! S_IS_WEAK (fixP->fx_addsy)
3873 && S_IS_DEFINED (fixP->fx_addsy)
3874 && ! S_IS_COMMON (fixP->fx_addsy))
3875 {
3876 /* Yes, we add the values in twice. This is because
3877 bfd_perform_relocation subtracts them out again. I think
3878 bfd_perform_relocation is broken, but I don't dare change
3879 it. FIXME. */
3880 value += fixP->fx_where + fixP->fx_frag->fr_address;
3881 }
252b5132
RH
3882 }
3883#endif
3884#if defined (OBJ_COFF) && defined (TE_PE)
3885 /* For some reason, the PE format does not store a section
24eab124 3886 address offset for a PC relative symbol. */
252b5132
RH
3887 if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
3888 value += md_pcrel_from (fixP);
c0c949c7
ILT
3889 else if (S_IS_EXTERNAL (fixP->fx_addsy)
3890 || S_IS_WEAK (fixP->fx_addsy))
3891 {
3892 /* We are generating an external relocation for this defined
3893 symbol. We add the address, because
3894 bfd_install_relocation will subtract it. VALUE already
3895 holds the symbol value, because fixup_segment added it
3896 in. We subtract it out, and then we subtract it out
3897 again because bfd_install_relocation will add it in
3898 again. */
3899 value += md_pcrel_from (fixP);
3900 value -= 2 * S_GET_VALUE (fixP->fx_addsy);
3901 }
252b5132
RH
3902#endif
3903 }
c0c949c7
ILT
3904#ifdef TE_PE
3905 else if (fixP->fx_addsy != NULL
3906 && S_IS_DEFINED (fixP->fx_addsy)
3907 && (S_IS_EXTERNAL (fixP->fx_addsy)
3908 || S_IS_WEAK (fixP->fx_addsy)))
3909 {
3910 /* We are generating an external relocation for this defined
3911 symbol. VALUE already holds the symbol value, and
3912 bfd_install_relocation will add it in again. We don't want
3913 either addition. */
3914 value -= 2 * S_GET_VALUE (fixP->fx_addsy);
3915 }
3916#endif
252b5132
RH
3917
3918 /* Fix a few things - the dynamic linker expects certain values here,
3919 and we must not dissappoint it. */
3920#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
3921 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
3922 && fixP->fx_addsy)
3923 switch (fixP->fx_r_type) {
3924 case BFD_RELOC_386_PLT32:
3925 /* Make the jump instruction point to the address of the operand. At
3926 runtime we merely add the offset to the actual PLT entry. */
3927 value = 0xfffffffc;
3928 break;
3929 case BFD_RELOC_386_GOTPC:
3930/*
24eab124 3931 * This is tough to explain. We end up with this one if we have
252b5132
RH
3932 * operands that look like "_GLOBAL_OFFSET_TABLE_+[.-.L284]". The goal
3933 * here is to obtain the absolute address of the GOT, and it is strongly
3934 * preferable from a performance point of view to avoid using a runtime
c3332e24 3935 * relocation for this. The actual sequence of instructions often look
252b5132 3936 * something like:
c3332e24 3937 *
24eab124 3938 * call .L66
252b5132 3939 * .L66:
24eab124
AM
3940 * popl %ebx
3941 * addl $_GLOBAL_OFFSET_TABLE_+[.-.L66],%ebx
c3332e24 3942 *
24eab124 3943 * The call and pop essentially return the absolute address of
252b5132
RH
3944 * the label .L66 and store it in %ebx. The linker itself will
3945 * ultimately change the first operand of the addl so that %ebx points to
3946 * the GOT, but to keep things simple, the .o file must have this operand
3947 * set so that it generates not the absolute address of .L66, but the
3948 * absolute address of itself. This allows the linker itself simply
3949 * treat a GOTPC relocation as asking for a pcrel offset to the GOT to be
3950 * added in, and the addend of the relocation is stored in the operand
3951 * field for the instruction itself.
c3332e24 3952 *
24eab124 3953 * Our job here is to fix the operand so that it would add the correct
252b5132
RH
3954 * offset so that %ebx would point to itself. The thing that is tricky is
3955 * that .-.L66 will point to the beginning of the instruction, so we need
3956 * to further modify the operand so that it will point to itself.
3957 * There are other cases where you have something like:
c3332e24 3958 *
24eab124 3959 * .long $_GLOBAL_OFFSET_TABLE_+[.-.L66]
c3332e24 3960 *
252b5132 3961 * and here no correction would be required. Internally in the assembler
c3332e24 3962 * we treat operands of this form as not being pcrel since the '.' is
252b5132
RH
3963 * explicitly mentioned, and I wonder whether it would simplify matters
3964 * to do it this way. Who knows. In earlier versions of the PIC patches,
3965 * the pcrel_adjust field was used to store the correction, but since the
3966 * expression is not pcrel, I felt it would be confusing to do it this way.
3967 */
3968 value -= 1;
3969 break;
3970 case BFD_RELOC_386_GOT32:
24eab124 3971 value = 0; /* Fully resolved at runtime. No addend. */
252b5132
RH
3972 break;
3973 case BFD_RELOC_386_GOTOFF:
3974 break;
3975
3976 case BFD_RELOC_VTABLE_INHERIT:
3977 case BFD_RELOC_VTABLE_ENTRY:
3978 fixP->fx_done = 0;
3979 return 1;
3980
3981 default:
3982 break;
3983 }
93382f6d
AM
3984#endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) */
3985 *valp = value;
3986#endif /* defined (BFD_ASSEMBLER) && !defined (TE_Mach) */
252b5132
RH
3987 md_number_to_chars (p, value, fixP->fx_size);
3988
3989 return 1;
3990}
3991
3992#if 0
3993/* This is never used. */
3994long /* Knows about the byte order in a word. */
3995md_chars_to_number (con, nbytes)
3996 unsigned char con[]; /* Low order byte 1st. */
3997 int nbytes; /* Number of bytes in the input. */
3998{
3999 long retval;
4000 for (retval = 0, con += nbytes - 1; nbytes--; con--)
4001 {
4002 retval <<= BITS_PER_CHAR;
4003 retval |= *con;
4004 }
4005 return retval;
4006}
4007#endif /* 0 */
4008\f
4009
4010#define MAX_LITTLENUMS 6
4011
4012/* Turn the string pointed to by litP into a floating point constant of type
4013 type, and emit the appropriate bytes. The number of LITTLENUMS emitted
4014 is stored in *sizeP . An error message is returned, or NULL on OK. */
4015char *
4016md_atof (type, litP, sizeP)
2ab9b79e 4017 int type;
252b5132
RH
4018 char *litP;
4019 int *sizeP;
4020{
4021 int prec;
4022 LITTLENUM_TYPE words[MAX_LITTLENUMS];
4023 LITTLENUM_TYPE *wordP;
4024 char *t;
4025
4026 switch (type)
4027 {
4028 case 'f':
4029 case 'F':
4030 prec = 2;
4031 break;
4032
4033 case 'd':
4034 case 'D':
4035 prec = 4;
4036 break;
4037
4038 case 'x':
4039 case 'X':
4040 prec = 5;
4041 break;
4042
4043 default:
4044 *sizeP = 0;
4045 return _("Bad call to md_atof ()");
4046 }
4047 t = atof_ieee (input_line_pointer, type, words);
4048 if (t)
4049 input_line_pointer = t;
4050
4051 *sizeP = prec * sizeof (LITTLENUM_TYPE);
4052 /* This loops outputs the LITTLENUMs in REVERSE order; in accord with
4053 the bigendian 386. */
4054 for (wordP = words + prec - 1; prec--;)
4055 {
4056 md_number_to_chars (litP, (valueT) (*wordP--), sizeof (LITTLENUM_TYPE));
4057 litP += sizeof (LITTLENUM_TYPE);
4058 }
4059 return 0;
4060}
4061\f
4062char output_invalid_buf[8];
4063
4064static char * output_invalid PARAMS ((int));
4065
4066static char *
4067output_invalid (c)
4068 int c;
4069{
4070 if (isprint (c))
4071 sprintf (output_invalid_buf, "'%c'", c);
4072 else
4073 sprintf (output_invalid_buf, "(0x%x)", (unsigned) c);
4074 return output_invalid_buf;
4075}
4076
252b5132 4077
af6bdddf 4078/* REG_STRING starts *before* REGISTER_PREFIX. */
252b5132
RH
4079
4080static const reg_entry *
4081parse_register (reg_string, end_op)
4082 char *reg_string;
4083 char **end_op;
4084{
af6bdddf
AM
4085 char *s = reg_string;
4086 char *p;
252b5132
RH
4087 char reg_name_given[MAX_REG_NAME_SIZE + 1];
4088 const reg_entry *r;
4089
4090 /* Skip possible REGISTER_PREFIX and possible whitespace. */
4091 if (*s == REGISTER_PREFIX)
4092 ++s;
4093
4094 if (is_space_char (*s))
4095 ++s;
4096
4097 p = reg_name_given;
af6bdddf 4098 while ((*p++ = register_chars[(unsigned char) *s]) != '\0')
252b5132
RH
4099 {
4100 if (p >= reg_name_given + MAX_REG_NAME_SIZE)
af6bdddf
AM
4101 return (const reg_entry *) NULL;
4102 s++;
252b5132
RH
4103 }
4104
af6bdddf 4105 *end_op = s;
252b5132
RH
4106
4107 r = (const reg_entry *) hash_find (reg_hash, reg_name_given);
4108
5f47d35b
AM
4109 /* Handle floating point regs, allowing spaces in the (i) part. */
4110 if (r == i386_regtab /* %st is first entry of table */)
4111 {
5f47d35b
AM
4112 if (is_space_char (*s))
4113 ++s;
4114 if (*s == '(')
4115 {
af6bdddf 4116 ++s;
5f47d35b
AM
4117 if (is_space_char (*s))
4118 ++s;
4119 if (*s >= '0' && *s <= '7')
4120 {
4121 r = &i386_float_regtab[*s - '0'];
af6bdddf 4122 ++s;
5f47d35b
AM
4123 if (is_space_char (*s))
4124 ++s;
4125 if (*s == ')')
4126 {
4127 *end_op = s + 1;
4128 return r;
4129 }
5f47d35b 4130 }
af6bdddf 4131 /* We have "%st(" then garbage */
5f47d35b
AM
4132 return (const reg_entry *) NULL;
4133 }
4134 }
4135
252b5132
RH
4136 return r;
4137}
4138\f
4cc782b5
ILT
4139#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4140CONST char *md_shortopts = "kmVQ:sq";
252b5132
RH
4141#else
4142CONST char *md_shortopts = "m";
4143#endif
4144struct option md_longopts[] = {
4145 {NULL, no_argument, NULL, 0}
4146};
4147size_t md_longopts_size = sizeof (md_longopts);
4148
4149int
4150md_parse_option (c, arg)
4151 int c;
ab9da554 4152 char *arg ATTRIBUTE_UNUSED;
252b5132
RH
4153{
4154 switch (c)
4155 {
4156 case 'm':
4157 flag_do_long_jump = 1;
4158 break;
4159
4160#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4161 /* -k: Ignore for FreeBSD compatibility. */
4162 case 'k':
4163 break;
4164
4165 /* -V: SVR4 argument to print version ID. */
4166 case 'V':
4167 print_version_id ();
4168 break;
4169
4170 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
4171 should be emitted or not. FIXME: Not implemented. */
4172 case 'Q':
4173 break;
4cc782b5
ILT
4174
4175 case 's':
4176 /* -s: On i386 Solaris, this tells the native assembler to use
4177 .stab instead of .stab.excl. We always use .stab anyhow. */
4178 break;
4179
4180 case 'q':
4181 /* -q: On i386 Solaris, this tells the native assembler does
4182 fewer checks. */
4183 break;
252b5132
RH
4184#endif
4185
4186 default:
4187 return 0;
4188 }
4189 return 1;
4190}
4191
4192void
4193md_show_usage (stream)
4194 FILE *stream;
4195{
4196 fprintf (stream, _("\
4cc782b5
ILT
4197 -m do long jump\n"));
4198#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4199 fprintf (stream, _("\
4200 -V print assembler version number\n\
4201 -k ignored\n\
4202 -Qy, -Qn ignored\n\
4203 -q ignored\n\
4204 -s ignored\n"));
4205#endif
252b5132
RH
4206}
4207
4208#ifdef BFD_ASSEMBLER
4209#ifdef OBJ_MAYBE_ELF
4210#ifdef OBJ_MAYBE_COFF
4211
4212/* Pick the target format to use. */
4213
4214const char *
4215i386_target_format ()
4216{
4217 switch (OUTPUT_FLAVOR)
4218 {
4219 case bfd_target_coff_flavour:
4220 return "coff-i386";
4221 case bfd_target_elf_flavour:
4222 return "elf32-i386";
4223 default:
4224 abort ();
4225 return NULL;
4226 }
4227}
4228
4229#endif /* OBJ_MAYBE_COFF */
4230#endif /* OBJ_MAYBE_ELF */
4231#endif /* BFD_ASSEMBLER */
4232\f
252b5132
RH
4233symbolS *
4234md_undefined_symbol (name)
4235 char *name;
4236{
18dc2407
ILT
4237 if (name[0] == GLOBAL_OFFSET_TABLE_NAME[0]
4238 && name[1] == GLOBAL_OFFSET_TABLE_NAME[1]
4239 && name[2] == GLOBAL_OFFSET_TABLE_NAME[2]
4240 && strcmp (name, GLOBAL_OFFSET_TABLE_NAME) == 0)
24eab124
AM
4241 {
4242 if (!GOT_symbol)
4243 {
4244 if (symbol_find (name))
4245 as_bad (_("GOT already in symbol table"));
4246 GOT_symbol = symbol_new (name, undefined_section,
4247 (valueT) 0, &zero_address_frag);
4248 };
4249 return GOT_symbol;
4250 }
252b5132
RH
4251 return 0;
4252}
4253
4254/* Round up a section size to the appropriate boundary. */
4255valueT
4256md_section_align (segment, size)
ab9da554 4257 segT segment ATTRIBUTE_UNUSED;
252b5132
RH
4258 valueT size;
4259{
4260#ifdef OBJ_AOUT
4261#ifdef BFD_ASSEMBLER
4262 /* For a.out, force the section size to be aligned. If we don't do
4263 this, BFD will align it for us, but it will not write out the
4264 final bytes of the section. This may be a bug in BFD, but it is
4265 easier to fix it here since that is how the other a.out targets
4266 work. */
4267 int align;
4268
4269 align = bfd_get_section_alignment (stdoutput, segment);
4270 size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
4271#endif
4272#endif
4273
4274 return size;
4275}
4276
4277/* On the i386, PC-relative offsets are relative to the start of the
4278 next instruction. That is, the address of the offset, plus its
4279 size, since the offset is always the last part of the insn. */
4280
4281long
4282md_pcrel_from (fixP)
4283 fixS *fixP;
4284{
4285 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
4286}
4287
4288#ifndef I386COFF
4289
4290static void
4291s_bss (ignore)
ab9da554 4292 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
4293{
4294 register int temp;
4295
4296 temp = get_absolute_expression ();
4297 subseg_set (bss_section, (subsegT) temp);
4298 demand_empty_rest_of_line ();
4299}
4300
4301#endif
4302
4303
4304#ifdef BFD_ASSEMBLER
4305
4306void
4307i386_validate_fix (fixp)
4308 fixS *fixp;
4309{
4310 if (fixp->fx_subsy && fixp->fx_subsy == GOT_symbol)
4311 {
4312 fixp->fx_r_type = BFD_RELOC_386_GOTOFF;
4313 fixp->fx_subsy = 0;
4314 }
4315}
4316
252b5132
RH
4317arelent *
4318tc_gen_reloc (section, fixp)
ab9da554 4319 asection *section ATTRIBUTE_UNUSED;
252b5132
RH
4320 fixS *fixp;
4321{
4322 arelent *rel;
4323 bfd_reloc_code_real_type code;
4324
4325 switch (fixp->fx_r_type)
4326 {
4327 case BFD_RELOC_386_PLT32:
4328 case BFD_RELOC_386_GOT32:
4329 case BFD_RELOC_386_GOTOFF:
4330 case BFD_RELOC_386_GOTPC:
4331 case BFD_RELOC_RVA:
4332 case BFD_RELOC_VTABLE_ENTRY:
4333 case BFD_RELOC_VTABLE_INHERIT:
4334 code = fixp->fx_r_type;
4335 break;
4336 default:
93382f6d 4337 if (fixp->fx_pcrel)
252b5132 4338 {
93382f6d
AM
4339 switch (fixp->fx_size)
4340 {
4341 default:
4342 as_bad (_("Can not do %d byte pc-relative relocation"),
4343 fixp->fx_size);
4344 code = BFD_RELOC_32_PCREL;
4345 break;
4346 case 1: code = BFD_RELOC_8_PCREL; break;
4347 case 2: code = BFD_RELOC_16_PCREL; break;
4348 case 4: code = BFD_RELOC_32_PCREL; break;
4349 }
4350 }
4351 else
4352 {
4353 switch (fixp->fx_size)
4354 {
4355 default:
4356 as_bad (_("Can not do %d byte relocation"), fixp->fx_size);
4357 code = BFD_RELOC_32;
4358 break;
4359 case 1: code = BFD_RELOC_8; break;
4360 case 2: code = BFD_RELOC_16; break;
4361 case 4: code = BFD_RELOC_32; break;
4362 }
252b5132
RH
4363 }
4364 break;
4365 }
252b5132
RH
4366
4367 if (code == BFD_RELOC_32
4368 && GOT_symbol
4369 && fixp->fx_addsy == GOT_symbol)
4370 code = BFD_RELOC_386_GOTPC;
4371
4372 rel = (arelent *) xmalloc (sizeof (arelent));
49309057
ILT
4373 rel->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
4374 *rel->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
4375
4376 rel->address = fixp->fx_frag->fr_address + fixp->fx_where;
4377 /* HACK: Since i386 ELF uses Rel instead of Rela, encode the
4378 vtable entry to be used in the relocation's section offset. */
4379 if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
4380 rel->address = fixp->fx_offset;
4381
4382 if (fixp->fx_pcrel)
4383 rel->addend = fixp->fx_addnumber;
4384 else
4385 rel->addend = 0;
4386
4387 rel->howto = bfd_reloc_type_lookup (stdoutput, code);
4388 if (rel->howto == NULL)
4389 {
4390 as_bad_where (fixp->fx_file, fixp->fx_line,
4391 _("Cannot represent relocation type %s"),
4392 bfd_get_reloc_code_name (code));
4393 /* Set howto to a garbage value so that we can keep going. */
4394 rel->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_32);
4395 assert (rel->howto != NULL);
4396 }
4397
4398 return rel;
4399}
4400
4401#else /* ! BFD_ASSEMBLER */
4402
4403#if (defined(OBJ_AOUT) | defined(OBJ_BOUT))
4404void
4405tc_aout_fix_to_chars (where, fixP, segment_address_in_file)
4406 char *where;
4407 fixS *fixP;
4408 relax_addressT segment_address_in_file;
4409{
4410 /*
4411 * In: length of relocation (or of address) in chars: 1, 2 or 4.
4412 * Out: GNU LD relocation length code: 0, 1, or 2.
4413 */
4414
4415 static const unsigned char nbytes_r_length[] = {42, 0, 1, 42, 2};
4416 long r_symbolnum;
4417
4418 know (fixP->fx_addsy != NULL);
4419
4420 md_number_to_chars (where,
4421 (valueT) (fixP->fx_frag->fr_address
4422 + fixP->fx_where - segment_address_in_file),
4423 4);
4424
4425 r_symbolnum = (S_IS_DEFINED (fixP->fx_addsy)
4426 ? S_GET_TYPE (fixP->fx_addsy)
4427 : fixP->fx_addsy->sy_number);
4428
4429 where[6] = (r_symbolnum >> 16) & 0x0ff;
4430 where[5] = (r_symbolnum >> 8) & 0x0ff;
4431 where[4] = r_symbolnum & 0x0ff;
4432 where[7] = ((((!S_IS_DEFINED (fixP->fx_addsy)) << 3) & 0x08)
4433 | ((nbytes_r_length[fixP->fx_size] << 1) & 0x06)
4434 | (((fixP->fx_pcrel << 0) & 0x01) & 0x0f));
4435}
4436
4437#endif /* OBJ_AOUT or OBJ_BOUT */
4438
4439#if defined (I386COFF)
4440
4441short
4442tc_coff_fix2rtype (fixP)
4443 fixS *fixP;
4444{
4445 if (fixP->fx_r_type == R_IMAGEBASE)
4446 return R_IMAGEBASE;
4447
4448 return (fixP->fx_pcrel ?
4449 (fixP->fx_size == 1 ? R_PCRBYTE :
4450 fixP->fx_size == 2 ? R_PCRWORD :
4451 R_PCRLONG) :
4452 (fixP->fx_size == 1 ? R_RELBYTE :
4453 fixP->fx_size == 2 ? R_RELWORD :
4454 R_DIR32));
4455}
4456
4457int
4458tc_coff_sizemachdep (frag)
4459 fragS *frag;
4460{
4461 if (frag->fr_next)
4462 return (frag->fr_next->fr_address - frag->fr_address);
4463 else
4464 return 0;
4465}
4466
4467#endif /* I386COFF */
4468
93382f6d 4469#endif /* ! BFD_ASSEMBLER */
252b5132
RH
4470\f
4471/* end of tc-i386.c */