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