1 /* i386.c -- Assemble code for the Intel 80386
2 Copyright (C) 1989, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
3 Free Software Foundation.
5 This file is part of GAS, the GNU Assembler.
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)
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.
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
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.
33 #include "opcode/i386.h"
35 #ifndef REGISTER_WARNINGS
36 #define REGISTER_WARNINGS 1
39 #ifndef INFER_ADDR_PREFIX
40 #define INFER_ADDR_PREFIX 1
43 #ifndef SCALE1_WHEN_NO_INDEX
44 /* Specifying a scale factor besides 1 when there is no index is
45 futile. eg. `mov (%ebx,2),%al' does exactly the same as
46 `mov (%ebx),%al'. To slavishly follow what the programmer
47 specified, set SCALE1_WHEN_NO_INDEX to 0. */
48 #define SCALE1_WHEN_NO_INDEX 1
54 static unsigned int mode_from_disp_size
PARAMS ((unsigned int));
55 static int fits_in_signed_byte
PARAMS ((offsetT
));
56 static int fits_in_unsigned_byte
PARAMS ((offsetT
));
57 static int fits_in_unsigned_word
PARAMS ((offsetT
));
58 static int fits_in_signed_word
PARAMS ((offsetT
));
59 static int smallest_imm_type
PARAMS ((offsetT
));
60 static offsetT offset_in_range
PARAMS ((offsetT
, int));
61 static int add_prefix
PARAMS ((unsigned int));
62 static void set_16bit_code_flag
PARAMS ((int));
63 static void set_16bit_gcc_code_flag
PARAMS((int));
64 static void set_intel_syntax
PARAMS ((int));
65 static void set_cpu_arch
PARAMS ((int));
68 static bfd_reloc_code_real_type reloc
69 PARAMS ((int, int, bfd_reloc_code_real_type
));
72 /* 'md_assemble ()' gathers together information and puts it into a
79 const reg_entry
*regs
;
84 /* TM holds the template for the insn were currently assembling. */
87 /* SUFFIX holds the instruction mnemonic suffix if given.
88 (e.g. 'l' for 'movl') */
91 /* OPERANDS gives the number of given operands. */
92 unsigned int operands
;
94 /* REG_OPERANDS, DISP_OPERANDS, MEM_OPERANDS, IMM_OPERANDS give the number
95 of given register, displacement, memory operands and immediate
97 unsigned int reg_operands
, disp_operands
, mem_operands
, imm_operands
;
99 /* TYPES [i] is the type (see above #defines) which tells us how to
100 use OP[i] for the corresponding operand. */
101 unsigned int types
[MAX_OPERANDS
];
103 /* Displacement expression, immediate expression, or register for each
105 union i386_op op
[MAX_OPERANDS
];
107 /* Relocation type for operand */
109 enum bfd_reloc_code_real disp_reloc
[MAX_OPERANDS
];
111 int disp_reloc
[MAX_OPERANDS
];
114 /* BASE_REG, INDEX_REG, and LOG2_SCALE_FACTOR are used to encode
115 the base index byte below. */
116 const reg_entry
*base_reg
;
117 const reg_entry
*index_reg
;
118 unsigned int log2_scale_factor
;
120 /* SEG gives the seg_entries of this insn. They are zero unless
121 explicit segment overrides are given. */
122 const seg_entry
*seg
[2]; /* segments for memory operands (if given) */
124 /* PREFIX holds all the given prefix opcodes (usually null).
125 PREFIXES is the number of prefix opcodes. */
126 unsigned int prefixes
;
127 unsigned char prefix
[MAX_PREFIXES
];
129 /* RM and SIB are the modrm byte and the sib byte where the
130 addressing modes of this insn are encoded. */
136 typedef struct _i386_insn i386_insn
;
138 /* List of chars besides those in app.c:symbol_chars that can start an
139 operand. Used to prevent the scrubber eating vital white-space. */
141 const char extra_symbol_chars
[] = "*%-(@";
143 const char extra_symbol_chars
[] = "*%-(";
146 /* This array holds the chars that always start a comment. If the
147 pre-processor is disabled, these aren't very useful */
148 #if defined (TE_I386AIX) || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) && !defined (TE_LINUX) && !defined(TE_FreeBSD))
149 /* Putting '/' here makes it impossible to use the divide operator.
150 However, we need it for compatibility with SVR4 systems. */
151 const char comment_chars
[] = "#/";
152 #define PREFIX_SEPARATOR '\\'
154 const char comment_chars
[] = "#";
155 #define PREFIX_SEPARATOR '/'
158 /* This array holds the chars that only start a comment at the beginning of
159 a line. If the line seems to have the form '# 123 filename'
160 .line and .file directives will appear in the pre-processed output */
161 /* Note that input_file.c hand checks for '#' at the beginning of the
162 first line of the input file. This is because the compiler outputs
163 #NO_APP at the beginning of its output. */
164 /* Also note that comments started like this one will always work if
165 '/' isn't otherwise defined. */
166 #if defined (TE_I386AIX) || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) && !defined (TE_LINUX) && !defined(TE_FreeBSD))
167 const char line_comment_chars
[] = "";
169 const char line_comment_chars
[] = "/";
172 const char line_separator_chars
[] = "";
174 /* Chars that can be used to separate mant from exp in floating point nums */
175 const char EXP_CHARS
[] = "eE";
177 /* Chars that mean this number is a floating point constant */
180 const char FLT_CHARS
[] = "fFdDxX";
182 /* tables for lexical analysis */
183 static char mnemonic_chars
[256];
184 static char register_chars
[256];
185 static char operand_chars
[256];
186 static char identifier_chars
[256];
187 static char digit_chars
[256];
190 #define is_mnemonic_char(x) (mnemonic_chars[(unsigned char) x])
191 #define is_operand_char(x) (operand_chars[(unsigned char) x])
192 #define is_register_char(x) (register_chars[(unsigned char) x])
193 #define is_space_char(x) ((x) == ' ')
194 #define is_identifier_char(x) (identifier_chars[(unsigned char) x])
195 #define is_digit_char(x) (digit_chars[(unsigned char) x])
197 /* put here all non-digit non-letter charcters that may occur in an operand */
198 static char operand_special_chars
[] = "%$-+(,)*._~/<>|&^!:[@]";
200 /* md_assemble() always leaves the strings it's passed unaltered. To
201 effect this we maintain a stack of saved characters that we've smashed
202 with '\0's (indicating end of strings for various sub-fields of the
203 assembler instruction). */
204 static char save_stack
[32];
205 static char *save_stack_p
; /* stack pointer */
206 #define END_STRING_AND_SAVE(s) \
207 do { *save_stack_p++ = *(s); *(s) = '\0'; } while (0)
208 #define RESTORE_END_STRING(s) \
209 do { *(s) = *--save_stack_p; } while (0)
211 /* The instruction we're assembling. */
214 /* Possible templates for current insn. */
215 static const templates
*current_templates
;
217 /* Per instruction expressionS buffers: 2 displacements & 2 immediate max. */
218 static expressionS disp_expressions
[2], im_expressions
[2];
220 static int this_operand
; /* Current operand we are working on. */
222 static int flag_16bit_code
; /* 1 if we're writing 16-bit code,
225 static int intel_syntax
= 0; /* 1 for intel syntax, 0 if att syntax. */
227 static int allow_naked_reg
= 0; /* 1 if register prefix % not required */
229 static char stackop_size
= '\0'; /* Used in 16 bit gcc mode to add an l
230 suffix to call, ret, enter, leave, push,
231 and pop instructions so that gcc has the
232 same stack frame as in 32 bit mode. */
234 static int quiet_warnings
= 0; /* Non-zero to quieten some warnings. */
236 static const char *cpu_arch_name
= NULL
; /* cpu name */
238 static unsigned int cpu_arch_flags
= 0; /* cpu feature flags */
240 /* Interface to relax_segment.
241 There are 2 relax states for 386 jump insns: one for conditional &
242 one for unconditional jumps. This is because these two types of
243 jumps add different sizes to frags when we're figuring out what
244 sort of jump to choose to reach a given label. */
247 #define COND_JUMP 1 /* conditional jump */
248 #define UNCOND_JUMP 2 /* unconditional jump */
252 #define SMALL16 (SMALL|CODE16)
254 #define BIG16 (BIG|CODE16)
258 #define INLINE __inline__
264 #define ENCODE_RELAX_STATE(type,size) \
265 ((relax_substateT)((type<<2) | (size)))
266 #define SIZE_FROM_RELAX_STATE(s) \
267 ( (((s) & 0x3) == BIG ? 4 : (((s) & 0x3) == BIG16 ? 2 : 1)) )
269 /* This table is used by relax_frag to promote short jumps to long
270 ones where necessary. SMALL (short) jumps may be promoted to BIG
271 (32 bit long) ones, and SMALL16 jumps to BIG16 (16 bit long). We
272 don't allow a short jump in a 32 bit code segment to be promoted to
273 a 16 bit offset jump because it's slower (requires data size
274 prefix), and doesn't work, unless the destination is in the bottom
275 64k of the code segment (The top 16 bits of eip are zeroed). */
277 const relax_typeS md_relax_table
[] =
280 1) most positive reach of this state,
281 2) most negative reach of this state,
282 3) how many bytes this mode will add to the size of the current frag
283 4) which index into the table to try if we can't fit into this one.
290 {127 + 1, -128 + 1, 0, ENCODE_RELAX_STATE (COND_JUMP
, BIG
)},
291 {127 + 1, -128 + 1, 0, ENCODE_RELAX_STATE (COND_JUMP
, BIG16
)},
292 /* dword conditionals adds 4 bytes to frag:
293 1 extra opcode byte, 3 extra displacement bytes. */
295 /* word conditionals add 2 bytes to frag:
296 1 extra opcode byte, 1 extra displacement byte. */
299 {127 + 1, -128 + 1, 0, ENCODE_RELAX_STATE (UNCOND_JUMP
, BIG
)},
300 {127 + 1, -128 + 1, 0, ENCODE_RELAX_STATE (UNCOND_JUMP
, BIG16
)},
301 /* dword jmp adds 3 bytes to frag:
302 0 extra opcode bytes, 3 extra displacement bytes. */
304 /* word jmp adds 1 byte to frag:
305 0 extra opcode bytes, 1 extra displacement byte. */
310 static const arch_entry cpu_arch
[] = {
312 {"i186", Cpu086
|Cpu186
},
313 {"i286", Cpu086
|Cpu186
|Cpu286
},
314 {"i386", Cpu086
|Cpu186
|Cpu286
|Cpu386
},
315 {"i486", Cpu086
|Cpu186
|Cpu286
|Cpu386
|Cpu486
},
316 {"i586", Cpu086
|Cpu186
|Cpu286
|Cpu386
|Cpu486
|Cpu586
|CpuMMX
},
317 {"i686", Cpu086
|Cpu186
|Cpu286
|Cpu386
|Cpu486
|Cpu586
|Cpu686
|CpuMMX
|CpuSSE
},
318 {"pentium", Cpu086
|Cpu186
|Cpu286
|Cpu386
|Cpu486
|Cpu586
|CpuMMX
},
319 {"pentiumpro",Cpu086
|Cpu186
|Cpu286
|Cpu386
|Cpu486
|Cpu586
|Cpu686
|CpuMMX
|CpuSSE
},
320 {"k6", Cpu086
|Cpu186
|Cpu286
|Cpu386
|Cpu486
|Cpu586
|CpuMMX
|Cpu3dnow
},
321 {"athlon", Cpu086
|Cpu186
|Cpu286
|Cpu386
|Cpu486
|Cpu586
|Cpu686
|CpuMMX
|Cpu3dnow
},
327 i386_align_code (fragP
, count
)
331 /* Various efficient no-op patterns for aligning code labels. */
332 /* Note: Don't try to assemble the instructions in the comments. */
333 /* 0L and 0w are not legal */
334 static const char f32_1
[] =
336 static const char f32_2
[] =
337 {0x89,0xf6}; /* movl %esi,%esi */
338 static const char f32_3
[] =
339 {0x8d,0x76,0x00}; /* leal 0(%esi),%esi */
340 static const char f32_4
[] =
341 {0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
342 static const char f32_5
[] =
344 0x8d,0x74,0x26,0x00}; /* leal 0(%esi,1),%esi */
345 static const char f32_6
[] =
346 {0x8d,0xb6,0x00,0x00,0x00,0x00}; /* leal 0L(%esi),%esi */
347 static const char f32_7
[] =
348 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
349 static const char f32_8
[] =
351 0x8d,0xb4,0x26,0x00,0x00,0x00,0x00}; /* leal 0L(%esi,1),%esi */
352 static const char f32_9
[] =
353 {0x89,0xf6, /* movl %esi,%esi */
354 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
355 static const char f32_10
[] =
356 {0x8d,0x76,0x00, /* leal 0(%esi),%esi */
357 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
358 static const char f32_11
[] =
359 {0x8d,0x74,0x26,0x00, /* leal 0(%esi,1),%esi */
360 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
361 static const char f32_12
[] =
362 {0x8d,0xb6,0x00,0x00,0x00,0x00, /* leal 0L(%esi),%esi */
363 0x8d,0xbf,0x00,0x00,0x00,0x00}; /* leal 0L(%edi),%edi */
364 static const char f32_13
[] =
365 {0x8d,0xb6,0x00,0x00,0x00,0x00, /* leal 0L(%esi),%esi */
366 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
367 static const char f32_14
[] =
368 {0x8d,0xb4,0x26,0x00,0x00,0x00,0x00, /* leal 0L(%esi,1),%esi */
369 0x8d,0xbc,0x27,0x00,0x00,0x00,0x00}; /* leal 0L(%edi,1),%edi */
370 static const char f32_15
[] =
371 {0xeb,0x0d,0x90,0x90,0x90,0x90,0x90, /* jmp .+15; lotsa nops */
372 0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90};
373 static const char f16_3
[] =
374 {0x8d,0x74,0x00}; /* lea 0(%esi),%esi */
375 static const char f16_4
[] =
376 {0x8d,0xb4,0x00,0x00}; /* lea 0w(%si),%si */
377 static const char f16_5
[] =
379 0x8d,0xb4,0x00,0x00}; /* lea 0w(%si),%si */
380 static const char f16_6
[] =
381 {0x89,0xf6, /* mov %si,%si */
382 0x8d,0xbd,0x00,0x00}; /* lea 0w(%di),%di */
383 static const char f16_7
[] =
384 {0x8d,0x74,0x00, /* lea 0(%si),%si */
385 0x8d,0xbd,0x00,0x00}; /* lea 0w(%di),%di */
386 static const char f16_8
[] =
387 {0x8d,0xb4,0x00,0x00, /* lea 0w(%si),%si */
388 0x8d,0xbd,0x00,0x00}; /* lea 0w(%di),%di */
389 static const char *const f32_patt
[] = {
390 f32_1
, f32_2
, f32_3
, f32_4
, f32_5
, f32_6
, f32_7
, f32_8
,
391 f32_9
, f32_10
, f32_11
, f32_12
, f32_13
, f32_14
, f32_15
393 static const char *const f16_patt
[] = {
394 f32_1
, f32_2
, f16_3
, f16_4
, f16_5
, f16_6
, f16_7
, f16_8
,
395 f32_15
, f32_15
, f32_15
, f32_15
, f32_15
, f32_15
, f32_15
398 if (count
> 0 && count
<= 15)
402 memcpy(fragP
->fr_literal
+ fragP
->fr_fix
,
403 f16_patt
[count
- 1], count
);
404 if (count
> 8) /* adjust jump offset */
405 fragP
->fr_literal
[fragP
->fr_fix
+ 1] = count
- 2;
408 memcpy(fragP
->fr_literal
+ fragP
->fr_fix
,
409 f32_patt
[count
- 1], count
);
410 fragP
->fr_var
= count
;
414 static char *output_invalid
PARAMS ((int c
));
415 static int i386_operand
PARAMS ((char *operand_string
));
416 static int i386_intel_operand
PARAMS ((char *operand_string
, int got_a_float
));
417 static const reg_entry
*parse_register
PARAMS ((char *reg_string
,
421 static void s_bss
PARAMS ((int));
424 symbolS
*GOT_symbol
; /* Pre-defined "_GLOBAL_OFFSET_TABLE_" */
426 static INLINE
unsigned int
427 mode_from_disp_size (t
)
430 return (t
& Disp8
) ? 1 : (t
& (Disp16
|Disp32
)) ? 2 : 0;
434 fits_in_signed_byte (num
)
437 return (num
>= -128) && (num
<= 127);
438 } /* fits_in_signed_byte() */
441 fits_in_unsigned_byte (num
)
444 return (num
& 0xff) == num
;
445 } /* fits_in_unsigned_byte() */
448 fits_in_unsigned_word (num
)
451 return (num
& 0xffff) == num
;
452 } /* fits_in_unsigned_word() */
455 fits_in_signed_word (num
)
458 return (-32768 <= num
) && (num
<= 32767);
459 } /* fits_in_signed_word() */
462 smallest_imm_type (num
)
465 if (cpu_arch_flags
!= 0
466 && cpu_arch_flags
!= (Cpu086
|Cpu186
|Cpu286
|Cpu386
|Cpu486
))
468 /* This code is disabled on the 486 because all the Imm1 forms
469 in the opcode table are slower on the i486. They're the
470 versions with the implicitly specified single-position
471 displacement, which has another syntax if you really want to
474 return Imm1
| Imm8
| Imm8S
| Imm16
| Imm32
;
476 return (fits_in_signed_byte (num
)
477 ? (Imm8S
| Imm8
| Imm16
| Imm32
)
478 : fits_in_unsigned_byte (num
)
479 ? (Imm8
| Imm16
| Imm32
)
480 : (fits_in_signed_word (num
) || fits_in_unsigned_word (num
))
483 } /* smallest_imm_type() */
486 offset_in_range (val
, size
)
494 case 1: mask
= ((addressT
) 1 << 8) - 1; break;
495 case 2: mask
= ((addressT
) 1 << 16) - 1; break;
496 case 4: mask
= ((addressT
) 2 << 31) - 1; break;
500 /* If BFD64, sign extend val. */
501 if ((val
& ~ (((addressT
) 2 << 31) - 1)) == 0)
502 val
= (val
^ ((addressT
) 1 << 31)) - ((addressT
) 1 << 31);
504 if ((val
& ~ mask
) != 0 && (val
& ~ mask
) != ~ mask
)
506 char buf1
[40], buf2
[40];
508 sprint_value (buf1
, val
);
509 sprint_value (buf2
, val
& mask
);
510 as_warn (_("%s shortened to %s"), buf1
, buf2
);
515 /* Returns 0 if attempting to add a prefix where one from the same
516 class already exists, 1 if non rep/repne added, 2 if rep/repne
530 case CS_PREFIX_OPCODE
:
531 case DS_PREFIX_OPCODE
:
532 case ES_PREFIX_OPCODE
:
533 case FS_PREFIX_OPCODE
:
534 case GS_PREFIX_OPCODE
:
535 case SS_PREFIX_OPCODE
:
539 case REPNE_PREFIX_OPCODE
:
540 case REPE_PREFIX_OPCODE
:
543 case LOCK_PREFIX_OPCODE
:
551 case ADDR_PREFIX_OPCODE
:
555 case DATA_PREFIX_OPCODE
:
562 as_bad (_("same type of prefix used twice"));
567 i
.prefix
[q
] = prefix
;
572 set_16bit_code_flag (new_16bit_code_flag
)
573 int new_16bit_code_flag
;
575 flag_16bit_code
= new_16bit_code_flag
;
580 set_16bit_gcc_code_flag (new_16bit_code_flag
)
581 int new_16bit_code_flag
;
583 flag_16bit_code
= new_16bit_code_flag
;
584 stackop_size
= new_16bit_code_flag
? 'l' : '\0';
588 set_intel_syntax (syntax_flag
)
591 /* Find out if register prefixing is specified. */
592 int ask_naked_reg
= 0;
595 if (! is_end_of_line
[(unsigned char) *input_line_pointer
])
597 char *string
= input_line_pointer
;
598 int e
= get_symbol_end ();
600 if (strcmp(string
, "prefix") == 0)
602 else if (strcmp(string
, "noprefix") == 0)
605 as_bad (_("bad argument to syntax directive."));
606 *input_line_pointer
= e
;
608 demand_empty_rest_of_line ();
610 intel_syntax
= syntax_flag
;
612 if (ask_naked_reg
== 0)
615 allow_naked_reg
= (intel_syntax
616 && (bfd_get_symbol_leading_char (stdoutput
) != '\0'));
618 allow_naked_reg
= 0; /* conservative default */
622 allow_naked_reg
= (ask_naked_reg
< 0);
627 int dummy ATTRIBUTE_UNUSED
;
631 if (! is_end_of_line
[(unsigned char) *input_line_pointer
])
633 char *string
= input_line_pointer
;
634 int e
= get_symbol_end ();
637 for (i
= 0; cpu_arch
[i
].name
; i
++)
639 if (strcmp (string
, cpu_arch
[i
].name
) == 0)
641 cpu_arch_name
= cpu_arch
[i
].name
;
642 cpu_arch_flags
= cpu_arch
[i
].flags
;
646 if (!cpu_arch
[i
].name
)
647 as_bad (_("no such architecture: `%s'"), string
);
649 *input_line_pointer
= e
;
652 as_bad (_("missing cpu architecture"));
654 demand_empty_rest_of_line ();
657 const pseudo_typeS md_pseudo_table
[] =
659 #if !defined(OBJ_AOUT) && !defined(USE_ALIGN_PTWO)
660 {"align", s_align_bytes
, 0},
662 {"align", s_align_ptwo
, 0},
664 {"arch", set_cpu_arch
, 0},
668 {"ffloat", float_cons
, 'f'},
669 {"dfloat", float_cons
, 'd'},
670 {"tfloat", float_cons
, 'x'},
672 {"noopt", s_ignore
, 0},
673 {"optim", s_ignore
, 0},
674 {"code16gcc", set_16bit_gcc_code_flag
, 1},
675 {"code16", set_16bit_code_flag
, 1},
676 {"code32", set_16bit_code_flag
, 0},
677 {"intel_syntax", set_intel_syntax
, 1},
678 {"att_syntax", set_intel_syntax
, 0},
682 /* for interface with expression () */
683 extern char *input_line_pointer
;
685 /* hash table for instruction mnemonic lookup */
686 static struct hash_control
*op_hash
;
687 /* hash table for register lookup */
688 static struct hash_control
*reg_hash
;
694 const char *hash_err
;
696 /* initialize op_hash hash table */
697 op_hash
= hash_new ();
700 register const template *optab
;
701 register templates
*core_optab
;
703 optab
= i386_optab
; /* setup for loop */
704 core_optab
= (templates
*) xmalloc (sizeof (templates
));
705 core_optab
->start
= optab
;
710 if (optab
->name
== NULL
711 || strcmp (optab
->name
, (optab
- 1)->name
) != 0)
713 /* different name --> ship out current template list;
714 add to hash table; & begin anew */
715 core_optab
->end
= optab
;
716 hash_err
= hash_insert (op_hash
,
722 as_fatal (_("Internal Error: Can't hash %s: %s"),
726 if (optab
->name
== NULL
)
728 core_optab
= (templates
*) xmalloc (sizeof (templates
));
729 core_optab
->start
= optab
;
734 /* initialize reg_hash hash table */
735 reg_hash
= hash_new ();
737 register const reg_entry
*regtab
;
739 for (regtab
= i386_regtab
;
740 regtab
< i386_regtab
+ sizeof (i386_regtab
) / sizeof (i386_regtab
[0]);
743 hash_err
= hash_insert (reg_hash
, regtab
->reg_name
, (PTR
) regtab
);
749 /* fill in lexical tables: mnemonic_chars, operand_chars. */
754 for (c
= 0; c
< 256; c
++)
759 mnemonic_chars
[c
] = c
;
760 register_chars
[c
] = c
;
761 operand_chars
[c
] = c
;
763 else if (islower (c
))
765 mnemonic_chars
[c
] = c
;
766 register_chars
[c
] = c
;
767 operand_chars
[c
] = c
;
769 else if (isupper (c
))
771 mnemonic_chars
[c
] = tolower (c
);
772 register_chars
[c
] = mnemonic_chars
[c
];
773 operand_chars
[c
] = c
;
776 if (isalpha (c
) || isdigit (c
))
777 identifier_chars
[c
] = c
;
780 identifier_chars
[c
] = c
;
781 operand_chars
[c
] = c
;
786 identifier_chars
['@'] = '@';
788 digit_chars
['-'] = '-';
789 identifier_chars
['_'] = '_';
790 identifier_chars
['.'] = '.';
792 for (p
= operand_special_chars
; *p
!= '\0'; p
++)
793 operand_chars
[(unsigned char) *p
] = *p
;
796 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
797 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
)
799 record_alignment (text_section
, 2);
800 record_alignment (data_section
, 2);
801 record_alignment (bss_section
, 2);
807 i386_print_statistics (file
)
810 hash_print_statistics (file
, "i386 opcode", op_hash
);
811 hash_print_statistics (file
, "i386 register", reg_hash
);
817 /* debugging routines for md_assemble */
818 static void pi
PARAMS ((char *, i386_insn
*));
819 static void pte
PARAMS ((template *));
820 static void pt
PARAMS ((unsigned int));
821 static void pe
PARAMS ((expressionS
*));
822 static void ps
PARAMS ((symbolS
*));
829 register template *p
;
832 fprintf (stdout
, "%s: template ", line
);
834 fprintf (stdout
, " modrm: mode %x reg %x reg/mem %x",
835 x
->rm
.mode
, x
->rm
.reg
, x
->rm
.regmem
);
836 fprintf (stdout
, " base %x index %x scale %x\n",
837 x
->bi
.base
, x
->bi
.index
, x
->bi
.scale
);
838 for (i
= 0; i
< x
->operands
; i
++)
840 fprintf (stdout
, " #%d: ", i
+ 1);
842 fprintf (stdout
, "\n");
844 & (Reg
| SReg2
| SReg3
| Control
| Debug
| Test
| RegMMX
| RegXMM
))
845 fprintf (stdout
, "%s\n", x
->op
[i
].regs
->reg_name
);
846 if (x
->types
[i
] & Imm
)
848 if (x
->types
[i
] & Disp
)
858 fprintf (stdout
, " %d operands ", t
->operands
);
859 fprintf (stdout
, "opcode %x ",
861 if (t
->extension_opcode
!= None
)
862 fprintf (stdout
, "ext %x ", t
->extension_opcode
);
863 if (t
->opcode_modifier
& D
)
864 fprintf (stdout
, "D");
865 if (t
->opcode_modifier
& W
)
866 fprintf (stdout
, "W");
867 fprintf (stdout
, "\n");
868 for (i
= 0; i
< t
->operands
; i
++)
870 fprintf (stdout
, " #%d type ", i
+ 1);
871 pt (t
->operand_types
[i
]);
872 fprintf (stdout
, "\n");
880 fprintf (stdout
, " operation %d\n", e
->X_op
);
881 fprintf (stdout
, " add_number %ld (%lx)\n",
882 (long) e
->X_add_number
, (long) e
->X_add_number
);
885 fprintf (stdout
, " add_symbol ");
886 ps (e
->X_add_symbol
);
887 fprintf (stdout
, "\n");
891 fprintf (stdout
, " op_symbol ");
893 fprintf (stdout
, "\n");
901 fprintf (stdout
, "%s type %s%s",
903 S_IS_EXTERNAL (s
) ? "EXTERNAL " : "",
904 segment_name (S_GET_SEGMENT (s
)));
923 { BaseIndex
, "BaseIndex" },
927 { InOutPortReg
, "InOutPortReg" },
928 { ShiftCount
, "ShiftCount" },
929 { Control
, "control reg" },
930 { Test
, "test reg" },
931 { Debug
, "debug reg" },
932 { FloatReg
, "FReg" },
933 { FloatAcc
, "FAcc" },
937 { JumpAbsolute
, "Jump Absolute" },
948 register struct type_name
*ty
;
952 fprintf (stdout
, _("Unknown"));
956 for (ty
= type_names
; ty
->mask
; ty
++)
958 fprintf (stdout
, "%s, ", ty
->tname
);
963 #endif /* DEBUG386 */
966 tc_i386_force_relocation (fixp
)
970 if (fixp
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
971 || fixp
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
976 return fixp
->fx_r_type
== 7;
981 static bfd_reloc_code_real_type reloc
982 PARAMS ((int, int, bfd_reloc_code_real_type
));
984 static bfd_reloc_code_real_type
985 reloc (size
, pcrel
, other
)
988 bfd_reloc_code_real_type other
;
990 if (other
!= NO_RELOC
) return other
;
996 case 1: return BFD_RELOC_8_PCREL
;
997 case 2: return BFD_RELOC_16_PCREL
;
998 case 4: return BFD_RELOC_32_PCREL
;
1000 as_bad (_("can not do %d byte pc-relative relocation"), size
);
1006 case 1: return BFD_RELOC_8
;
1007 case 2: return BFD_RELOC_16
;
1008 case 4: return BFD_RELOC_32
;
1010 as_bad (_("can not do %d byte relocation"), size
);
1013 return BFD_RELOC_NONE
;
1017 * Here we decide which fixups can be adjusted to make them relative to
1018 * the beginning of the section instead of the symbol. Basically we need
1019 * to make sure that the dynamic relocations are done correctly, so in
1020 * some cases we force the original symbol to be used.
1023 tc_i386_fix_adjustable (fixP
)
1026 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined (TE_PE)
1027 /* Prevent all adjustments to global symbols, or else dynamic
1028 linking will not work correctly. */
1029 if (S_IS_EXTERNAL (fixP
->fx_addsy
)
1030 || S_IS_WEAK (fixP
->fx_addsy
))
1033 /* adjust_reloc_syms doesn't know about the GOT */
1034 if (fixP
->fx_r_type
== BFD_RELOC_386_GOTOFF
1035 || fixP
->fx_r_type
== BFD_RELOC_386_PLT32
1036 || fixP
->fx_r_type
== BFD_RELOC_386_GOT32
1037 || fixP
->fx_r_type
== BFD_RELOC_RVA
1038 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
1039 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
1044 #define reloc(SIZE,PCREL,OTHER) 0
1045 #define BFD_RELOC_16 0
1046 #define BFD_RELOC_32 0
1047 #define BFD_RELOC_16_PCREL 0
1048 #define BFD_RELOC_32_PCREL 0
1049 #define BFD_RELOC_386_PLT32 0
1050 #define BFD_RELOC_386_GOT32 0
1051 #define BFD_RELOC_386_GOTOFF 0
1055 intel_float_operand
PARAMS ((char *mnemonic
));
1058 intel_float_operand (mnemonic
)
1061 if (mnemonic
[0] == 'f' && mnemonic
[1] =='i')
1064 if (mnemonic
[0] == 'f')
1070 /* This is the guts of the machine-dependent assembler. LINE points to a
1071 machine dependent instruction. This function is supposed to emit
1072 the frags/bytes it assembles to. */
1078 /* Points to template once we've found it. */
1081 /* Count the size of the instruction generated. */
1086 char mnemonic
[MAX_MNEM_SIZE
];
1088 /* Initialize globals. */
1089 memset (&i
, '\0', sizeof (i
));
1090 for (j
= 0; j
< MAX_OPERANDS
; j
++)
1091 i
.disp_reloc
[j
] = NO_RELOC
;
1092 memset (disp_expressions
, '\0', sizeof (disp_expressions
));
1093 memset (im_expressions
, '\0', sizeof (im_expressions
));
1094 save_stack_p
= save_stack
; /* reset stack pointer */
1096 /* First parse an instruction mnemonic & call i386_operand for the operands.
1097 We assume that the scrubber has arranged it so that line[0] is the valid
1098 start of a (possibly prefixed) mnemonic. */
1101 char *token_start
= l
;
1104 /* Non-zero if we found a prefix only acceptable with string insns. */
1105 const char *expecting_string_instruction
= NULL
;
1110 while ((*mnem_p
= mnemonic_chars
[(unsigned char) *l
]) != 0)
1113 if (mnem_p
>= mnemonic
+ sizeof (mnemonic
))
1115 as_bad (_("no such instruction: `%s'"), token_start
);
1120 if (!is_space_char (*l
)
1121 && *l
!= END_OF_INSN
1122 && *l
!= PREFIX_SEPARATOR
)
1124 as_bad (_("invalid character %s in mnemonic"),
1125 output_invalid (*l
));
1128 if (token_start
== l
)
1130 if (*l
== PREFIX_SEPARATOR
)
1131 as_bad (_("expecting prefix; got nothing"));
1133 as_bad (_("expecting mnemonic; got nothing"));
1137 /* Look up instruction (or prefix) via hash table. */
1138 current_templates
= hash_find (op_hash
, mnemonic
);
1140 if (*l
!= END_OF_INSN
1141 && (! is_space_char (*l
) || l
[1] != END_OF_INSN
)
1142 && current_templates
1143 && (current_templates
->start
->opcode_modifier
& IsPrefix
))
1145 /* If we are in 16-bit mode, do not allow addr16 or data16.
1146 Similarly, in 32-bit mode, do not allow addr32 or data32. */
1147 if ((current_templates
->start
->opcode_modifier
& (Size16
| Size32
))
1148 && (((current_templates
->start
->opcode_modifier
& Size32
) != 0)
1151 as_bad (_("redundant %s prefix"),
1152 current_templates
->start
->name
);
1155 /* Add prefix, checking for repeated prefixes. */
1156 switch (add_prefix (current_templates
->start
->base_opcode
))
1161 expecting_string_instruction
=
1162 current_templates
->start
->name
;
1165 /* Skip past PREFIX_SEPARATOR and reset token_start. */
1172 if (!current_templates
)
1174 /* See if we can get a match by trimming off a suffix. */
1177 case WORD_MNEM_SUFFIX
:
1178 case BYTE_MNEM_SUFFIX
:
1179 case SHORT_MNEM_SUFFIX
:
1180 case LONG_MNEM_SUFFIX
:
1181 i
.suffix
= mnem_p
[-1];
1183 current_templates
= hash_find (op_hash
, mnemonic
);
1187 case DWORD_MNEM_SUFFIX
:
1190 i
.suffix
= mnem_p
[-1];
1192 current_templates
= hash_find (op_hash
, mnemonic
);
1196 if (!current_templates
)
1198 as_bad (_("no such instruction: `%s'"), token_start
);
1203 /* Check if instruction is supported on specified architecture. */
1204 if (cpu_arch_flags
!= 0)
1206 if (current_templates
->start
->cpu_flags
& ~ cpu_arch_flags
)
1208 as_warn (_("`%s' is not supported on `%s'"),
1209 current_templates
->start
->name
, cpu_arch_name
);
1211 else if ((Cpu386
& ~ cpu_arch_flags
) && !flag_16bit_code
)
1213 as_warn (_("use .code16 to ensure correct addressing mode"));
1217 /* check for rep/repne without a string instruction */
1218 if (expecting_string_instruction
1219 && !(current_templates
->start
->opcode_modifier
& IsString
))
1221 as_bad (_("expecting string instruction after `%s'"),
1222 expecting_string_instruction
);
1226 /* There may be operands to parse. */
1227 if (*l
!= END_OF_INSN
)
1229 /* parse operands */
1231 /* 1 if operand is pending after ','. */
1232 unsigned int expecting_operand
= 0;
1234 /* Non-zero if operand parens not balanced. */
1235 unsigned int paren_not_balanced
;
1239 /* skip optional white space before operand */
1240 if (is_space_char (*l
))
1242 if (!is_operand_char (*l
) && *l
!= END_OF_INSN
)
1244 as_bad (_("invalid character %s before operand %d"),
1245 output_invalid (*l
),
1249 token_start
= l
; /* after white space */
1250 paren_not_balanced
= 0;
1251 while (paren_not_balanced
|| *l
!= ',')
1253 if (*l
== END_OF_INSN
)
1255 if (paren_not_balanced
)
1258 as_bad (_("unbalanced parenthesis in operand %d."),
1261 as_bad (_("unbalanced brackets in operand %d."),
1266 break; /* we are done */
1268 else if (!is_operand_char (*l
) && !is_space_char (*l
))
1270 as_bad (_("invalid character %s in operand %d"),
1271 output_invalid (*l
),
1278 ++paren_not_balanced
;
1280 --paren_not_balanced
;
1285 ++paren_not_balanced
;
1287 --paren_not_balanced
;
1291 if (l
!= token_start
)
1292 { /* yes, we've read in another operand */
1293 unsigned int operand_ok
;
1294 this_operand
= i
.operands
++;
1295 if (i
.operands
> MAX_OPERANDS
)
1297 as_bad (_("spurious operands; (%d operands/instruction max)"),
1301 /* now parse operand adding info to 'i' as we go along */
1302 END_STRING_AND_SAVE (l
);
1305 operand_ok
= i386_intel_operand (token_start
, intel_float_operand (mnemonic
));
1307 operand_ok
= i386_operand (token_start
);
1309 RESTORE_END_STRING (l
); /* restore old contents */
1315 if (expecting_operand
)
1317 expecting_operand_after_comma
:
1318 as_bad (_("expecting operand after ','; got nothing"));
1323 as_bad (_("expecting operand before ','; got nothing"));
1328 /* now *l must be either ',' or END_OF_INSN */
1331 if (*++l
== END_OF_INSN
)
1332 { /* just skip it, if it's \n complain */
1333 goto expecting_operand_after_comma
;
1335 expecting_operand
= 1;
1338 while (*l
!= END_OF_INSN
); /* until we get end of insn */
1342 /* Now we've parsed the mnemonic into a set of templates, and have the
1345 Next, we find a template that matches the given insn,
1346 making sure the overlap of the given operands types is consistent
1347 with the template operand types. */
1349 #define MATCH(overlap, given, template) \
1350 ((overlap & ~JumpAbsolute) \
1351 && ((given) & (BaseIndex|JumpAbsolute)) == ((overlap) & (BaseIndex|JumpAbsolute)))
1353 /* If given types r0 and r1 are registers they must be of the same type
1354 unless the expected operand type register overlap is null.
1355 Note that Acc in a template matches every size of reg. */
1356 #define CONSISTENT_REGISTER_MATCH(m0, g0, t0, m1, g1, t1) \
1357 ( ((g0) & Reg) == 0 || ((g1) & Reg) == 0 || \
1358 ((g0) & Reg) == ((g1) & Reg) || \
1359 ((((m0) & Acc) ? Reg : (t0)) & (((m1) & Acc) ? Reg : (t1)) & Reg) == 0 )
1362 register unsigned int overlap0
, overlap1
;
1363 unsigned int overlap2
;
1364 unsigned int found_reverse_match
;
1367 /* All intel opcodes have reversed operands except for "bound" and
1368 "enter". We also don't reverse intersegment "jmp" and "call"
1369 instructions with 2 immediate operands so that the immediate segment
1370 precedes the offset, as it does when in AT&T mode. "enter" and the
1371 intersegment "jmp" and "call" instructions are the only ones that
1372 have two immediate operands. */
1373 if (intel_syntax
&& i
.operands
> 1
1374 && (strcmp (mnemonic
, "bound") != 0)
1375 && !((i
.types
[0] & Imm
) && (i
.types
[1] & Imm
)))
1377 union i386_op temp_op
;
1378 unsigned int temp_type
;
1382 if (i
.operands
== 2)
1387 else if (i
.operands
== 3)
1392 temp_type
= i
.types
[xchg2
];
1393 i
.types
[xchg2
] = i
.types
[xchg1
];
1394 i
.types
[xchg1
] = temp_type
;
1395 temp_op
= i
.op
[xchg2
];
1396 i
.op
[xchg2
] = i
.op
[xchg1
];
1397 i
.op
[xchg1
] = temp_op
;
1399 if (i
.mem_operands
== 2)
1401 const seg_entry
*temp_seg
;
1402 temp_seg
= i
.seg
[0];
1403 i
.seg
[0] = i
.seg
[1];
1404 i
.seg
[1] = temp_seg
;
1410 /* Try to ensure constant immediates are represented in the smallest
1412 char guess_suffix
= 0;
1416 guess_suffix
= i
.suffix
;
1417 else if (i
.reg_operands
)
1419 /* Figure out a suffix from the last register operand specified.
1420 We can't do this properly yet, ie. excluding InOutPortReg,
1421 but the following works for instructions with immediates.
1422 In any case, we can't set i.suffix yet. */
1423 for (op
= i
.operands
; --op
>= 0; )
1424 if (i
.types
[op
] & Reg
)
1426 if (i
.types
[op
] & Reg8
)
1427 guess_suffix
= BYTE_MNEM_SUFFIX
;
1428 else if (i
.types
[op
] & Reg16
)
1429 guess_suffix
= WORD_MNEM_SUFFIX
;
1433 else if (flag_16bit_code
^ (i
.prefix
[DATA_PREFIX
] != 0))
1434 guess_suffix
= WORD_MNEM_SUFFIX
;
1436 for (op
= i
.operands
; --op
>= 0; )
1437 if ((i
.types
[op
] & Imm
)
1438 && i
.op
[op
].imms
->X_op
== O_constant
)
1440 /* If a suffix is given, this operand may be shortened. */
1441 switch (guess_suffix
)
1443 case WORD_MNEM_SUFFIX
:
1444 i
.types
[op
] |= Imm16
;
1446 case BYTE_MNEM_SUFFIX
:
1447 i
.types
[op
] |= Imm16
| Imm8
| Imm8S
;
1451 /* If this operand is at most 16 bits, convert it to a
1452 signed 16 bit number before trying to see whether it will
1453 fit in an even smaller size. This allows a 16-bit operand
1454 such as $0xffe0 to be recognised as within Imm8S range. */
1455 if ((i
.types
[op
] & Imm16
)
1456 && (i
.op
[op
].imms
->X_add_number
& ~(offsetT
)0xffff) == 0)
1458 i
.op
[op
].imms
->X_add_number
=
1459 (((i
.op
[op
].imms
->X_add_number
& 0xffff) ^ 0x8000) - 0x8000);
1461 i
.types
[op
] |= smallest_imm_type ((long) i
.op
[op
].imms
->X_add_number
);
1468 found_reverse_match
= 0;
1469 suffix_check
= (i
.suffix
== BYTE_MNEM_SUFFIX
1471 : (i
.suffix
== WORD_MNEM_SUFFIX
1473 : (i
.suffix
== SHORT_MNEM_SUFFIX
1475 : (i
.suffix
== LONG_MNEM_SUFFIX
1477 : (i
.suffix
== DWORD_MNEM_SUFFIX
1479 : (i
.suffix
== LONG_DOUBLE_MNEM_SUFFIX
? No_xSuf
: 0))))));
1481 for (t
= current_templates
->start
;
1482 t
< current_templates
->end
;
1485 /* Must have right number of operands. */
1486 if (i
.operands
!= t
->operands
)
1489 /* Check the suffix, except for some instructions in intel mode. */
1490 if ((t
->opcode_modifier
& suffix_check
)
1492 && t
->base_opcode
== 0xd9
1493 && (t
->extension_opcode
== 5 /* 0xd9,5 "fldcw" */
1494 || t
->extension_opcode
== 7))) /* 0xd9,7 "f{n}stcw" */
1497 else if (!t
->operands
)
1498 break; /* 0 operands always matches */
1500 overlap0
= i
.types
[0] & t
->operand_types
[0];
1501 switch (t
->operands
)
1504 if (!MATCH (overlap0
, i
.types
[0], t
->operand_types
[0]))
1509 overlap1
= i
.types
[1] & t
->operand_types
[1];
1510 if (!MATCH (overlap0
, i
.types
[0], t
->operand_types
[0])
1511 || !MATCH (overlap1
, i
.types
[1], t
->operand_types
[1])
1512 || !CONSISTENT_REGISTER_MATCH (overlap0
, i
.types
[0],
1513 t
->operand_types
[0],
1514 overlap1
, i
.types
[1],
1515 t
->operand_types
[1]))
1518 /* check if other direction is valid ... */
1519 if ((t
->opcode_modifier
& (D
|FloatD
)) == 0)
1522 /* try reversing direction of operands */
1523 overlap0
= i
.types
[0] & t
->operand_types
[1];
1524 overlap1
= i
.types
[1] & t
->operand_types
[0];
1525 if (!MATCH (overlap0
, i
.types
[0], t
->operand_types
[1])
1526 || !MATCH (overlap1
, i
.types
[1], t
->operand_types
[0])
1527 || !CONSISTENT_REGISTER_MATCH (overlap0
, i
.types
[0],
1528 t
->operand_types
[1],
1529 overlap1
, i
.types
[1],
1530 t
->operand_types
[0]))
1532 /* does not match either direction */
1535 /* found_reverse_match holds which of D or FloatDR
1537 found_reverse_match
= t
->opcode_modifier
& (D
|FloatDR
);
1540 /* found a forward 2 operand match here */
1541 if (t
->operands
== 3)
1543 /* Here we make use of the fact that there are no
1544 reverse match 3 operand instructions, and all 3
1545 operand instructions only need to be checked for
1546 register consistency between operands 2 and 3. */
1547 overlap2
= i
.types
[2] & t
->operand_types
[2];
1548 if (!MATCH (overlap2
, i
.types
[2], t
->operand_types
[2])
1549 || !CONSISTENT_REGISTER_MATCH (overlap1
, i
.types
[1],
1550 t
->operand_types
[1],
1551 overlap2
, i
.types
[2],
1552 t
->operand_types
[2]))
1556 /* found either forward/reverse 2 or 3 operand match here:
1557 slip through to break */
1559 break; /* we've found a match; break out of loop */
1560 } /* for (t = ... */
1561 if (t
== current_templates
->end
)
1562 { /* we found no match */
1563 as_bad (_("suffix or operands invalid for `%s'"),
1564 current_templates
->start
->name
);
1568 if (!quiet_warnings
)
1571 && ((i
.types
[0] & JumpAbsolute
)
1572 != (t
->operand_types
[0] & JumpAbsolute
)))
1574 as_warn (_("indirect %s without `*'"), t
->name
);
1577 if ((t
->opcode_modifier
& (IsPrefix
|IgnoreSize
))
1578 == (IsPrefix
|IgnoreSize
))
1580 /* Warn them that a data or address size prefix doesn't
1581 affect assembly of the next line of code. */
1582 as_warn (_("stand-alone `%s' prefix"), t
->name
);
1586 /* Copy the template we found. */
1588 if (found_reverse_match
)
1590 /* If we found a reverse match we must alter the opcode
1591 direction bit. found_reverse_match holds bits to change
1592 (different for int & float insns). */
1594 i
.tm
.base_opcode
^= found_reverse_match
;
1596 i
.tm
.operand_types
[0] = t
->operand_types
[1];
1597 i
.tm
.operand_types
[1] = t
->operand_types
[0];
1600 /* Undo SYSV386_COMPAT brokenness when in Intel mode. See i386.h */
1603 && (i
.tm
.base_opcode
& 0xfffffde0) == 0xdce0)
1604 i
.tm
.base_opcode
^= FloatR
;
1606 if (i
.tm
.opcode_modifier
& FWait
)
1607 if (! add_prefix (FWAIT_OPCODE
))
1610 /* Check string instruction segment overrides */
1611 if ((i
.tm
.opcode_modifier
& IsString
) != 0 && i
.mem_operands
!= 0)
1613 int mem_op
= (i
.types
[0] & AnyMem
) ? 0 : 1;
1614 if ((i
.tm
.operand_types
[mem_op
] & EsSeg
) != 0)
1616 if (i
.seg
[0] != NULL
&& i
.seg
[0] != &es
)
1618 as_bad (_("`%s' operand %d must use `%%es' segment"),
1623 /* There's only ever one segment override allowed per instruction.
1624 This instruction possibly has a legal segment override on the
1625 second operand, so copy the segment to where non-string
1626 instructions store it, allowing common code. */
1627 i
.seg
[0] = i
.seg
[1];
1629 else if ((i
.tm
.operand_types
[mem_op
+ 1] & EsSeg
) != 0)
1631 if (i
.seg
[1] != NULL
&& i
.seg
[1] != &es
)
1633 as_bad (_("`%s' operand %d must use `%%es' segment"),
1641 /* If matched instruction specifies an explicit instruction mnemonic
1643 if (i
.tm
.opcode_modifier
& (Size16
| Size32
))
1645 if (i
.tm
.opcode_modifier
& Size16
)
1646 i
.suffix
= WORD_MNEM_SUFFIX
;
1648 i
.suffix
= LONG_MNEM_SUFFIX
;
1650 else if (i
.reg_operands
)
1652 /* If there's no instruction mnemonic suffix we try to invent one
1653 based on register operands. */
1656 /* We take i.suffix from the last register operand specified,
1657 Destination register type is more significant than source
1660 for (op
= i
.operands
; --op
>= 0; )
1661 if ((i
.types
[op
] & Reg
)
1662 && !(i
.tm
.operand_types
[op
] & InOutPortReg
))
1664 i
.suffix
= ((i
.types
[op
] & Reg8
) ? BYTE_MNEM_SUFFIX
:
1665 (i
.types
[op
] & Reg16
) ? WORD_MNEM_SUFFIX
:
1670 else if (i
.suffix
== BYTE_MNEM_SUFFIX
)
1673 for (op
= i
.operands
; --op
>= 0; )
1675 /* If this is an eight bit register, it's OK. If it's
1676 the 16 or 32 bit version of an eight bit register,
1677 we will just use the low portion, and that's OK too. */
1678 if (i
.types
[op
] & Reg8
)
1681 /* movzx and movsx should not generate this warning. */
1683 && (i
.tm
.base_opcode
== 0xfb7
1684 || i
.tm
.base_opcode
== 0xfb6
1685 || i
.tm
.base_opcode
== 0xfbe
1686 || i
.tm
.base_opcode
== 0xfbf))
1689 if ((i
.types
[op
] & WordReg
) && i
.op
[op
].regs
->reg_num
< 4
1691 /* Check that the template allows eight bit regs
1692 This kills insns such as `orb $1,%edx', which
1693 maybe should be allowed. */
1694 && (i
.tm
.operand_types
[op
] & (Reg8
|InOutPortReg
))
1698 #if REGISTER_WARNINGS
1700 && (i
.tm
.operand_types
[op
] & InOutPortReg
) == 0)
1701 as_warn (_("using `%%%s' instead of `%%%s' due to `%c' suffix"),
1702 (i
.op
[op
].regs
- (i
.types
[op
] & Reg16
? 8 : 16))->reg_name
,
1703 i
.op
[op
].regs
->reg_name
,
1708 /* Any other register is bad */
1709 if (i
.types
[op
] & (Reg
| RegMMX
| RegXMM
1711 | Control
| Debug
| Test
1712 | FloatReg
| FloatAcc
))
1714 as_bad (_("`%%%s' not allowed with `%s%c'"),
1715 i
.op
[op
].regs
->reg_name
,
1722 else if (i
.suffix
== LONG_MNEM_SUFFIX
)
1725 for (op
= i
.operands
; --op
>= 0; )
1726 /* Reject eight bit registers, except where the template
1727 requires them. (eg. movzb) */
1728 if ((i
.types
[op
] & Reg8
) != 0
1729 && (i
.tm
.operand_types
[op
] & (Reg16
|Reg32
|Acc
)) != 0)
1731 as_bad (_("`%%%s' not allowed with `%s%c'"),
1732 i
.op
[op
].regs
->reg_name
,
1737 #if REGISTER_WARNINGS
1738 /* Warn if the e prefix on a general reg is missing. */
1739 else if (!quiet_warnings
1740 && (i
.types
[op
] & Reg16
) != 0
1741 && (i
.tm
.operand_types
[op
] & (Reg32
|Acc
)) != 0)
1743 as_warn (_("using `%%%s' instead of `%%%s' due to `%c' suffix"),
1744 (i
.op
[op
].regs
+ 8)->reg_name
,
1745 i
.op
[op
].regs
->reg_name
,
1750 else if (i
.suffix
== WORD_MNEM_SUFFIX
)
1753 for (op
= i
.operands
; --op
>= 0; )
1754 /* Reject eight bit registers, except where the template
1755 requires them. (eg. movzb) */
1756 if ((i
.types
[op
] & Reg8
) != 0
1757 && (i
.tm
.operand_types
[op
] & (Reg16
|Reg32
|Acc
)) != 0)
1759 as_bad (_("`%%%s' not allowed with `%s%c'"),
1760 i
.op
[op
].regs
->reg_name
,
1765 #if REGISTER_WARNINGS
1766 /* Warn if the e prefix on a general reg is present. */
1767 else if (!quiet_warnings
1768 && (i
.types
[op
] & Reg32
) != 0
1769 && (i
.tm
.operand_types
[op
] & (Reg16
|Acc
)) != 0)
1771 as_warn (_("using `%%%s' instead of `%%%s' due to `%c' suffix"),
1772 (i
.op
[op
].regs
- 8)->reg_name
,
1773 i
.op
[op
].regs
->reg_name
,
1781 else if ((i
.tm
.opcode_modifier
& DefaultSize
) && !i
.suffix
)
1783 i
.suffix
= stackop_size
;
1786 /* Make still unresolved immediate matches conform to size of immediate
1787 given in i.suffix. Note: overlap2 cannot be an immediate! */
1788 if ((overlap0
& (Imm8
| Imm8S
| Imm16
| Imm32
))
1789 && overlap0
!= Imm8
&& overlap0
!= Imm8S
1790 && overlap0
!= Imm16
&& overlap0
!= Imm32
)
1794 overlap0
&= (i
.suffix
== BYTE_MNEM_SUFFIX
? (Imm8
| Imm8S
) :
1795 (i
.suffix
== WORD_MNEM_SUFFIX
? Imm16
: Imm32
));
1797 else if (overlap0
== (Imm16
| Imm32
))
1800 (flag_16bit_code
^ (i
.prefix
[DATA_PREFIX
] != 0)) ? Imm16
: Imm32
;
1804 as_bad (_("no instruction mnemonic suffix given; can't determine immediate size"));
1808 if ((overlap1
& (Imm8
| Imm8S
| Imm16
| Imm32
))
1809 && overlap1
!= Imm8
&& overlap1
!= Imm8S
1810 && overlap1
!= Imm16
&& overlap1
!= Imm32
)
1814 overlap1
&= (i
.suffix
== BYTE_MNEM_SUFFIX
? (Imm8
| Imm8S
) :
1815 (i
.suffix
== WORD_MNEM_SUFFIX
? Imm16
: Imm32
));
1817 else if (overlap1
== (Imm16
| Imm32
))
1820 (flag_16bit_code
^ (i
.prefix
[DATA_PREFIX
] != 0)) ? Imm16
: Imm32
;
1824 as_bad (_("no instruction mnemonic suffix given; can't determine immediate size"));
1828 assert ((overlap2
& Imm
) == 0);
1830 i
.types
[0] = overlap0
;
1831 if (overlap0
& ImplicitRegister
)
1833 if (overlap0
& Imm1
)
1834 i
.imm_operands
= 0; /* kludge for shift insns */
1836 i
.types
[1] = overlap1
;
1837 if (overlap1
& ImplicitRegister
)
1840 i
.types
[2] = overlap2
;
1841 if (overlap2
& ImplicitRegister
)
1844 /* Finalize opcode. First, we change the opcode based on the operand
1845 size given by i.suffix: We need not change things for byte insns. */
1847 if (!i
.suffix
&& (i
.tm
.opcode_modifier
& W
))
1849 as_bad (_("no instruction mnemonic suffix given and no register operands; can't size instruction"));
1853 /* For movzx and movsx, need to check the register type */
1855 && (i
.tm
.base_opcode
== 0xfb6 || i
.tm
.base_opcode
== 0xfbe))
1856 if (i
.suffix
&& i
.suffix
== BYTE_MNEM_SUFFIX
)
1858 unsigned int prefix
= DATA_PREFIX_OPCODE
;
1860 if ((i
.op
[1].regs
->reg_type
& Reg16
) != 0)
1861 if (!add_prefix (prefix
))
1865 if (i
.suffix
&& i
.suffix
!= BYTE_MNEM_SUFFIX
)
1867 /* It's not a byte, select word/dword operation. */
1868 if (i
.tm
.opcode_modifier
& W
)
1870 if (i
.tm
.opcode_modifier
& ShortForm
)
1871 i
.tm
.base_opcode
|= 8;
1873 i
.tm
.base_opcode
|= 1;
1875 /* Now select between word & dword operations via the operand
1876 size prefix, except for instructions that will ignore this
1878 if (((intel_syntax
&& (i
.suffix
== DWORD_MNEM_SUFFIX
))
1879 || i
.suffix
== LONG_MNEM_SUFFIX
) == flag_16bit_code
1880 && !(i
.tm
.opcode_modifier
& IgnoreSize
))
1882 unsigned int prefix
= DATA_PREFIX_OPCODE
;
1883 if (i
.tm
.opcode_modifier
& JumpByte
) /* jcxz, loop */
1884 prefix
= ADDR_PREFIX_OPCODE
;
1886 if (! add_prefix (prefix
))
1889 /* Size floating point instruction. */
1890 if (i
.suffix
== LONG_MNEM_SUFFIX
1891 || (intel_syntax
&& i
.suffix
== DWORD_MNEM_SUFFIX
))
1893 if (i
.tm
.opcode_modifier
& FloatMF
)
1894 i
.tm
.base_opcode
^= 4;
1898 if (i
.tm
.opcode_modifier
& ImmExt
)
1900 /* These AMD 3DNow! and Intel Katmai New Instructions have an
1901 opcode suffix which is coded in the same place as an 8-bit
1902 immediate field would be. Here we fake an 8-bit immediate
1903 operand from the opcode suffix stored in tm.extension_opcode. */
1907 assert(i
.imm_operands
== 0 && i
.operands
<= 2 && 2 < MAX_OPERANDS
);
1909 exp
= &im_expressions
[i
.imm_operands
++];
1910 i
.op
[i
.operands
].imms
= exp
;
1911 i
.types
[i
.operands
++] = Imm8
;
1912 exp
->X_op
= O_constant
;
1913 exp
->X_add_number
= i
.tm
.extension_opcode
;
1914 i
.tm
.extension_opcode
= None
;
1917 /* For insns with operands there are more diddles to do to the opcode. */
1920 /* Default segment register this instruction will use
1921 for memory accesses. 0 means unknown.
1922 This is only for optimizing out unnecessary segment overrides. */
1923 const seg_entry
*default_seg
= 0;
1925 /* The imul $imm, %reg instruction is converted into
1926 imul $imm, %reg, %reg, and the clr %reg instruction
1927 is converted into xor %reg, %reg. */
1928 if (i
.tm
.opcode_modifier
& regKludge
)
1930 unsigned int first_reg_op
= (i
.types
[0] & Reg
) ? 0 : 1;
1931 /* Pretend we saw the extra register operand. */
1932 assert (i
.op
[first_reg_op
+1].regs
== 0);
1933 i
.op
[first_reg_op
+1].regs
= i
.op
[first_reg_op
].regs
;
1934 i
.types
[first_reg_op
+1] = i
.types
[first_reg_op
];
1938 if (i
.tm
.opcode_modifier
& ShortForm
)
1940 /* The register or float register operand is in operand 0 or 1. */
1941 unsigned int op
= (i
.types
[0] & (Reg
| FloatReg
)) ? 0 : 1;
1942 /* Register goes in low 3 bits of opcode. */
1943 i
.tm
.base_opcode
|= i
.op
[op
].regs
->reg_num
;
1944 if (!quiet_warnings
&& (i
.tm
.opcode_modifier
& Ugh
) != 0)
1946 /* Warn about some common errors, but press on regardless.
1947 The first case can be generated by gcc (<= 2.8.1). */
1948 if (i
.operands
== 2)
1950 /* reversed arguments on faddp, fsubp, etc. */
1951 as_warn (_("translating to `%s %%%s,%%%s'"), i
.tm
.name
,
1952 i
.op
[1].regs
->reg_name
,
1953 i
.op
[0].regs
->reg_name
);
1957 /* extraneous `l' suffix on fp insn */
1958 as_warn (_("translating to `%s %%%s'"), i
.tm
.name
,
1959 i
.op
[0].regs
->reg_name
);
1963 else if (i
.tm
.opcode_modifier
& Modrm
)
1965 /* The opcode is completed (modulo i.tm.extension_opcode which
1966 must be put into the modrm byte).
1967 Now, we make the modrm & index base bytes based on all the
1968 info we've collected. */
1970 /* i.reg_operands MUST be the number of real register operands;
1971 implicit registers do not count. */
1972 if (i
.reg_operands
== 2)
1974 unsigned int source
, dest
;
1975 source
= ((i
.types
[0]
1976 & (Reg
| RegMMX
| RegXMM
1978 | Control
| Debug
| Test
))
1983 /* One of the register operands will be encoded in the
1984 i.tm.reg field, the other in the combined i.tm.mode
1985 and i.tm.regmem fields. If no form of this
1986 instruction supports a memory destination operand,
1987 then we assume the source operand may sometimes be
1988 a memory operand and so we need to store the
1989 destination in the i.rm.reg field. */
1990 if ((i
.tm
.operand_types
[dest
] & AnyMem
) == 0)
1992 i
.rm
.reg
= i
.op
[dest
].regs
->reg_num
;
1993 i
.rm
.regmem
= i
.op
[source
].regs
->reg_num
;
1997 i
.rm
.reg
= i
.op
[source
].regs
->reg_num
;
1998 i
.rm
.regmem
= i
.op
[dest
].regs
->reg_num
;
2002 { /* if it's not 2 reg operands... */
2005 unsigned int fake_zero_displacement
= 0;
2006 unsigned int op
= ((i
.types
[0] & AnyMem
)
2008 : (i
.types
[1] & AnyMem
) ? 1 : 2);
2015 if (! i
.disp_operands
)
2016 fake_zero_displacement
= 1;
2019 /* Operand is just <disp> */
2020 if (flag_16bit_code
^ (i
.prefix
[ADDR_PREFIX
] != 0))
2022 i
.rm
.regmem
= NO_BASE_REGISTER_16
;
2023 i
.types
[op
] &= ~Disp
;
2024 i
.types
[op
] |= Disp16
;
2028 i
.rm
.regmem
= NO_BASE_REGISTER
;
2029 i
.types
[op
] &= ~Disp
;
2030 i
.types
[op
] |= Disp32
;
2033 else /* ! i.base_reg && i.index_reg */
2035 i
.sib
.index
= i
.index_reg
->reg_num
;
2036 i
.sib
.base
= NO_BASE_REGISTER
;
2037 i
.sib
.scale
= i
.log2_scale_factor
;
2038 i
.rm
.regmem
= ESCAPE_TO_TWO_BYTE_ADDRESSING
;
2039 i
.types
[op
] &= ~Disp
;
2040 i
.types
[op
] |= Disp32
; /* Must be 32 bit */
2043 else if (i
.base_reg
->reg_type
& Reg16
)
2045 switch (i
.base_reg
->reg_num
)
2050 else /* (%bx,%si) -> 0, or (%bx,%di) -> 1 */
2051 i
.rm
.regmem
= i
.index_reg
->reg_num
- 6;
2058 if ((i
.types
[op
] & Disp
) == 0)
2060 /* fake (%bp) into 0(%bp) */
2061 i
.types
[op
] |= Disp8
;
2062 fake_zero_displacement
= 1;
2065 else /* (%bp,%si) -> 2, or (%bp,%di) -> 3 */
2066 i
.rm
.regmem
= i
.index_reg
->reg_num
- 6 + 2;
2068 default: /* (%si) -> 4 or (%di) -> 5 */
2069 i
.rm
.regmem
= i
.base_reg
->reg_num
- 6 + 4;
2071 i
.rm
.mode
= mode_from_disp_size (i
.types
[op
]);
2073 else /* i.base_reg and 32 bit mode */
2075 i
.rm
.regmem
= i
.base_reg
->reg_num
;
2076 i
.sib
.base
= i
.base_reg
->reg_num
;
2077 if (i
.base_reg
->reg_num
== EBP_REG_NUM
)
2080 if (i
.disp_operands
== 0)
2082 fake_zero_displacement
= 1;
2083 i
.types
[op
] |= Disp8
;
2086 else if (i
.base_reg
->reg_num
== ESP_REG_NUM
)
2090 i
.sib
.scale
= i
.log2_scale_factor
;
2093 /* <disp>(%esp) becomes two byte modrm
2094 with no index register. We've already
2095 stored the code for esp in i.rm.regmem
2096 ie. ESCAPE_TO_TWO_BYTE_ADDRESSING. Any
2097 base register besides %esp will not use
2098 the extra modrm byte. */
2099 i
.sib
.index
= NO_INDEX_REGISTER
;
2100 #if ! SCALE1_WHEN_NO_INDEX
2101 /* Another case where we force the second
2103 if (i
.log2_scale_factor
)
2104 i
.rm
.regmem
= ESCAPE_TO_TWO_BYTE_ADDRESSING
;
2109 i
.sib
.index
= i
.index_reg
->reg_num
;
2110 i
.rm
.regmem
= ESCAPE_TO_TWO_BYTE_ADDRESSING
;
2112 i
.rm
.mode
= mode_from_disp_size (i
.types
[op
]);
2115 if (fake_zero_displacement
)
2117 /* Fakes a zero displacement assuming that i.types[op]
2118 holds the correct displacement size. */
2121 assert (i
.op
[op
].disps
== 0);
2122 exp
= &disp_expressions
[i
.disp_operands
++];
2123 i
.op
[op
].disps
= exp
;
2124 exp
->X_op
= O_constant
;
2125 exp
->X_add_number
= 0;
2126 exp
->X_add_symbol
= (symbolS
*) 0;
2127 exp
->X_op_symbol
= (symbolS
*) 0;
2131 /* Fill in i.rm.reg or i.rm.regmem field with register
2132 operand (if any) based on i.tm.extension_opcode.
2133 Again, we must be careful to make sure that
2134 segment/control/debug/test/MMX registers are coded
2135 into the i.rm.reg field. */
2140 & (Reg
| RegMMX
| RegXMM
2142 | Control
| Debug
| Test
))
2145 & (Reg
| RegMMX
| RegXMM
2147 | Control
| Debug
| Test
))
2150 /* If there is an extension opcode to put here, the
2151 register number must be put into the regmem field. */
2152 if (i
.tm
.extension_opcode
!= None
)
2153 i
.rm
.regmem
= i
.op
[op
].regs
->reg_num
;
2155 i
.rm
.reg
= i
.op
[op
].regs
->reg_num
;
2157 /* Now, if no memory operand has set i.rm.mode = 0, 1, 2
2158 we must set it to 3 to indicate this is a register
2159 operand in the regmem field. */
2160 if (!i
.mem_operands
)
2164 /* Fill in i.rm.reg field with extension opcode (if any). */
2165 if (i
.tm
.extension_opcode
!= None
)
2166 i
.rm
.reg
= i
.tm
.extension_opcode
;
2169 else if (i
.tm
.opcode_modifier
& (Seg2ShortForm
| Seg3ShortForm
))
2171 if (i
.tm
.base_opcode
== POP_SEG_SHORT
&& i
.op
[0].regs
->reg_num
== 1)
2173 as_bad (_("you can't `pop %%cs'"));
2176 i
.tm
.base_opcode
|= (i
.op
[0].regs
->reg_num
<< 3);
2178 else if ((i
.tm
.base_opcode
& ~(D
|W
)) == MOV_AX_DISP32
)
2182 else if ((i
.tm
.opcode_modifier
& IsString
) != 0)
2184 /* For the string instructions that allow a segment override
2185 on one of their operands, the default segment is ds. */
2189 /* If a segment was explicitly specified,
2190 and the specified segment is not the default,
2191 use an opcode prefix to select it.
2192 If we never figured out what the default segment is,
2193 then default_seg will be zero at this point,
2194 and the specified segment prefix will always be used. */
2195 if ((i
.seg
[0]) && (i
.seg
[0] != default_seg
))
2197 if (! add_prefix (i
.seg
[0]->seg_prefix
))
2201 else if (!quiet_warnings
&& (i
.tm
.opcode_modifier
& Ugh
) != 0)
2203 /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. */
2204 as_warn (_("translating to `%sp'"), i
.tm
.name
);
2208 /* Handle conversion of 'int $3' --> special int3 insn. */
2209 if (i
.tm
.base_opcode
== INT_OPCODE
&& i
.op
[0].imms
->X_add_number
== 3)
2211 i
.tm
.base_opcode
= INT3_OPCODE
;
2215 if ((i
.tm
.opcode_modifier
& (Jump
| JumpByte
| JumpDword
))
2216 && i
.op
[0].disps
->X_op
== O_constant
)
2218 /* Convert "jmp constant" (and "call constant") to a jump (call) to
2219 the absolute address given by the constant. Since ix86 jumps and
2220 calls are pc relative, we need to generate a reloc. */
2221 i
.op
[0].disps
->X_add_symbol
= &abs_symbol
;
2222 i
.op
[0].disps
->X_op
= O_symbol
;
2225 /* We are ready to output the insn. */
2230 if (i
.tm
.opcode_modifier
& Jump
)
2237 if (flag_16bit_code
)
2241 if (i
.prefix
[DATA_PREFIX
])
2252 if (i
.prefixes
!= 0 && !intel_syntax
)
2253 as_warn (_("skipping prefixes on this instruction"));
2255 /* It's always a symbol; End frag & setup for relax.
2256 Make sure there is enough room in this frag for the largest
2257 instruction we may generate in md_convert_frag. This is 2
2258 bytes for the opcode and room for the prefix and largest
2260 frag_grow (prefix
+ 2 + size
);
2261 insn_size
+= prefix
+ 1;
2262 /* Prefix and 1 opcode byte go in fr_fix. */
2263 p
= frag_more (prefix
+ 1);
2265 *p
++ = DATA_PREFIX_OPCODE
;
2266 *p
= i
.tm
.base_opcode
;
2267 /* 1 possible extra opcode + displacement go in var part.
2268 Pass reloc in fr_var. */
2269 frag_var (rs_machine_dependent
,
2272 ((unsigned char) *p
== JUMP_PC_RELATIVE
2273 ? ENCODE_RELAX_STATE (UNCOND_JUMP
, SMALL
) | code16
2274 : ENCODE_RELAX_STATE (COND_JUMP
, SMALL
) | code16
),
2275 i
.op
[0].disps
->X_add_symbol
,
2276 i
.op
[0].disps
->X_add_number
,
2279 else if (i
.tm
.opcode_modifier
& (JumpByte
| JumpDword
))
2283 if (i
.tm
.opcode_modifier
& JumpByte
)
2285 /* This is a loop or jecxz type instruction. */
2287 if (i
.prefix
[ADDR_PREFIX
])
2290 FRAG_APPEND_1_CHAR (ADDR_PREFIX_OPCODE
);
2299 if (flag_16bit_code
)
2302 if (i
.prefix
[DATA_PREFIX
])
2305 FRAG_APPEND_1_CHAR (DATA_PREFIX_OPCODE
);
2315 if (i
.prefixes
!= 0 && !intel_syntax
)
2316 as_warn (_("skipping prefixes on this instruction"));
2318 if (fits_in_unsigned_byte (i
.tm
.base_opcode
))
2320 insn_size
+= 1 + size
;
2321 p
= frag_more (1 + size
);
2325 /* opcode can be at most two bytes */
2326 insn_size
+= 2 + size
;
2327 p
= frag_more (2 + size
);
2328 *p
++ = (i
.tm
.base_opcode
>> 8) & 0xff;
2330 *p
++ = i
.tm
.base_opcode
& 0xff;
2332 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, size
,
2333 i
.op
[0].disps
, 1, reloc (size
, 1, i
.disp_reloc
[0]));
2335 else if (i
.tm
.opcode_modifier
& JumpInterSegment
)
2342 if (flag_16bit_code
)
2346 if (i
.prefix
[DATA_PREFIX
])
2357 if (i
.prefixes
!= 0 && !intel_syntax
)
2358 as_warn (_("skipping prefixes on this instruction"));
2360 insn_size
+= prefix
+ 1 + 2 + size
; /* 1 opcode; 2 segment; offset */
2361 p
= frag_more (prefix
+ 1 + 2 + size
);
2363 *p
++ = DATA_PREFIX_OPCODE
;
2364 *p
++ = i
.tm
.base_opcode
;
2365 if (i
.op
[1].imms
->X_op
== O_constant
)
2367 offsetT n
= i
.op
[1].imms
->X_add_number
;
2370 && !fits_in_unsigned_word (n
)
2371 && !fits_in_signed_word (n
))
2373 as_bad (_("16-bit jump out of range"));
2376 md_number_to_chars (p
, n
, size
);
2379 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, size
,
2380 i
.op
[1].imms
, 0, reloc (size
, 0, i
.disp_reloc
[0]));
2381 if (i
.op
[0].imms
->X_op
!= O_constant
)
2382 as_bad (_("can't handle non absolute segment in `%s'"),
2384 md_number_to_chars (p
+ size
, (valueT
) i
.op
[0].imms
->X_add_number
, 2);
2388 /* Output normal instructions here. */
2391 /* The prefix bytes. */
2393 q
< i
.prefix
+ sizeof (i
.prefix
) / sizeof (i
.prefix
[0]);
2400 md_number_to_chars (p
, (valueT
) *q
, 1);
2404 /* Now the opcode; be careful about word order here! */
2405 if (fits_in_unsigned_byte (i
.tm
.base_opcode
))
2408 FRAG_APPEND_1_CHAR (i
.tm
.base_opcode
);
2410 else if (fits_in_unsigned_word (i
.tm
.base_opcode
))
2414 /* put out high byte first: can't use md_number_to_chars! */
2415 *p
++ = (i
.tm
.base_opcode
>> 8) & 0xff;
2416 *p
= i
.tm
.base_opcode
& 0xff;
2419 { /* opcode is either 3 or 4 bytes */
2420 if (i
.tm
.base_opcode
& 0xff000000)
2424 *p
++ = (i
.tm
.base_opcode
>> 24) & 0xff;
2431 *p
++ = (i
.tm
.base_opcode
>> 16) & 0xff;
2432 *p
++ = (i
.tm
.base_opcode
>> 8) & 0xff;
2433 *p
= (i
.tm
.base_opcode
) & 0xff;
2436 /* Now the modrm byte and sib byte (if present). */
2437 if (i
.tm
.opcode_modifier
& Modrm
)
2441 md_number_to_chars (p
,
2442 (valueT
) (i
.rm
.regmem
<< 0
2446 /* If i.rm.regmem == ESP (4)
2447 && i.rm.mode != (Register mode)
2449 ==> need second modrm byte. */
2450 if (i
.rm
.regmem
== ESCAPE_TO_TWO_BYTE_ADDRESSING
2452 && !(i
.base_reg
&& (i
.base_reg
->reg_type
& Reg16
) != 0))
2456 md_number_to_chars (p
,
2457 (valueT
) (i
.sib
.base
<< 0
2459 | i
.sib
.scale
<< 6),
2464 if (i
.disp_operands
)
2466 register unsigned int n
;
2468 for (n
= 0; n
< i
.operands
; n
++)
2470 if (i
.types
[n
] & Disp
)
2472 if (i
.op
[n
].disps
->X_op
== O_constant
)
2478 if (i
.types
[n
] & (Disp8
| Disp16
))
2481 if (i
.types
[n
] & Disp8
)
2484 val
= offset_in_range (i
.op
[n
].disps
->X_add_number
,
2487 p
= frag_more (size
);
2488 md_number_to_chars (p
, val
, size
);
2494 if (i
.types
[n
] & Disp16
)
2498 p
= frag_more (size
);
2499 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, size
,
2501 reloc (size
, 0, i
.disp_reloc
[n
]));
2505 } /* end displacement output */
2507 /* output immediate */
2510 register unsigned int n
;
2512 for (n
= 0; n
< i
.operands
; n
++)
2514 if (i
.types
[n
] & Imm
)
2516 if (i
.op
[n
].imms
->X_op
== O_constant
)
2522 if (i
.types
[n
] & (Imm8
| Imm8S
| Imm16
))
2525 if (i
.types
[n
] & (Imm8
| Imm8S
))
2528 val
= offset_in_range (i
.op
[n
].imms
->X_add_number
,
2531 p
= frag_more (size
);
2532 md_number_to_chars (p
, val
, size
);
2535 { /* not absolute_section */
2536 /* Need a 32-bit fixup (don't support 8bit
2537 non-absolute imms). Try to support other
2539 #ifdef BFD_ASSEMBLER
2540 enum bfd_reloc_code_real reloc_type
;
2546 if (i
.types
[n
] & Imm16
)
2548 else if (i
.types
[n
] & (Imm8
| Imm8S
))
2552 p
= frag_more (size
);
2553 reloc_type
= reloc (size
, 0, i
.disp_reloc
[0]);
2554 #ifdef BFD_ASSEMBLER
2555 if (reloc_type
== BFD_RELOC_32
2557 && GOT_symbol
== i
.op
[n
].imms
->X_add_symbol
2558 && (i
.op
[n
].imms
->X_op
== O_symbol
2559 || (i
.op
[n
].imms
->X_op
== O_add
2560 && ((symbol_get_value_expression
2561 (i
.op
[n
].imms
->X_op_symbol
)->X_op
)
2564 reloc_type
= BFD_RELOC_386_GOTPC
;
2565 i
.op
[n
].imms
->X_add_number
+= 3;
2568 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, size
,
2569 i
.op
[n
].imms
, 0, reloc_type
);
2573 } /* end immediate output */
2581 #endif /* DEBUG386 */
2585 static int i386_immediate
PARAMS ((char *));
2588 i386_immediate (imm_start
)
2591 char *save_input_line_pointer
;
2595 if (i
.imm_operands
== MAX_IMMEDIATE_OPERANDS
)
2597 as_bad (_("only 1 or 2 immediate operands are allowed"));
2601 exp
= &im_expressions
[i
.imm_operands
++];
2602 i
.op
[this_operand
].imms
= exp
;
2604 if (is_space_char (*imm_start
))
2607 save_input_line_pointer
= input_line_pointer
;
2608 input_line_pointer
= imm_start
;
2613 * We can have operands of the form
2614 * <symbol>@GOTOFF+<nnn>
2615 * Take the easy way out here and copy everything
2616 * into a temporary buffer...
2620 cp
= strchr (input_line_pointer
, '@');
2627 /* GOT relocations are not supported in 16 bit mode */
2628 if (flag_16bit_code
)
2629 as_bad (_("GOT relocations not supported in 16 bit mode"));
2631 if (GOT_symbol
== NULL
)
2632 GOT_symbol
= symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME
);
2634 if (strncmp (cp
+ 1, "PLT", 3) == 0)
2636 i
.disp_reloc
[this_operand
] = BFD_RELOC_386_PLT32
;
2639 else if (strncmp (cp
+ 1, "GOTOFF", 6) == 0)
2641 i
.disp_reloc
[this_operand
] = BFD_RELOC_386_GOTOFF
;
2644 else if (strncmp (cp
+ 1, "GOT", 3) == 0)
2646 i
.disp_reloc
[this_operand
] = BFD_RELOC_386_GOT32
;
2650 as_bad (_("bad reloc specifier in expression"));
2652 /* Replace the relocation token with ' ', so that errors like
2653 foo@GOTOFF1 will be detected. */
2654 first
= cp
- input_line_pointer
;
2655 tmpbuf
= (char *) alloca (strlen(input_line_pointer
));
2656 memcpy (tmpbuf
, input_line_pointer
, first
);
2657 tmpbuf
[first
] = ' ';
2658 strcpy (tmpbuf
+ first
+ 1, cp
+ 1 + len
);
2659 input_line_pointer
= tmpbuf
;
2664 exp_seg
= expression (exp
);
2667 if (*input_line_pointer
)
2668 as_bad (_("ignoring junk `%s' after expression"), input_line_pointer
);
2670 input_line_pointer
= save_input_line_pointer
;
2672 if (exp
->X_op
== O_absent
|| exp
->X_op
== O_big
)
2674 /* missing or bad expr becomes absolute 0 */
2675 as_bad (_("missing or invalid immediate expression `%s' taken as 0"),
2677 exp
->X_op
= O_constant
;
2678 exp
->X_add_number
= 0;
2679 exp
->X_add_symbol
= (symbolS
*) 0;
2680 exp
->X_op_symbol
= (symbolS
*) 0;
2683 if (exp
->X_op
== O_constant
)
2685 i
.types
[this_operand
] |= Imm32
; /* Size it properly later. */
2687 #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
2689 #ifdef BFD_ASSEMBLER
2690 OUTPUT_FLAVOR
== bfd_target_aout_flavour
&&
2692 exp_seg
!= text_section
2693 && exp_seg
!= data_section
2694 && exp_seg
!= bss_section
2695 && exp_seg
!= undefined_section
2696 #ifdef BFD_ASSEMBLER
2697 && !bfd_is_com_section (exp_seg
)
2701 #ifdef BFD_ASSEMBLER
2702 as_bad (_("unimplemented segment %s in operand"), exp_seg
->name
);
2704 as_bad (_("unimplemented segment type %d in operand"), exp_seg
);
2711 /* This is an address. The size of the address will be
2712 determined later, depending on destination register,
2713 suffix, or the default for the section. We exclude
2714 Imm8S here so that `push $foo' and other instructions
2715 with an Imm8S form will use Imm16 or Imm32. */
2716 i
.types
[this_operand
] |= (Imm8
| Imm16
| Imm32
);
2722 static int i386_scale
PARAMS ((char *));
2728 if (!isdigit (*scale
))
2735 i
.log2_scale_factor
= 0;
2738 i
.log2_scale_factor
= 1;
2741 i
.log2_scale_factor
= 2;
2744 i
.log2_scale_factor
= 3;
2748 as_bad (_("expecting scale factor of 1, 2, 4, or 8: got `%s'"),
2752 if (i
.log2_scale_factor
!= 0 && ! i
.index_reg
)
2754 as_warn (_("scale factor of %d without an index register"),
2755 1 << i
.log2_scale_factor
);
2756 #if SCALE1_WHEN_NO_INDEX
2757 i
.log2_scale_factor
= 0;
2763 static int i386_displacement
PARAMS ((char *, char *));
2766 i386_displacement (disp_start
, disp_end
)
2770 register expressionS
*exp
;
2772 char *save_input_line_pointer
;
2773 int bigdisp
= Disp32
;
2775 if (flag_16bit_code
^ (i
.prefix
[ADDR_PREFIX
] != 0))
2777 i
.types
[this_operand
] |= bigdisp
;
2779 exp
= &disp_expressions
[i
.disp_operands
];
2780 i
.op
[this_operand
].disps
= exp
;
2782 save_input_line_pointer
= input_line_pointer
;
2783 input_line_pointer
= disp_start
;
2784 END_STRING_AND_SAVE (disp_end
);
2786 #ifndef GCC_ASM_O_HACK
2787 #define GCC_ASM_O_HACK 0
2790 END_STRING_AND_SAVE (disp_end
+ 1);
2791 if ((i
.types
[this_operand
] & BaseIndex
) != 0
2792 && displacement_string_end
[-1] == '+')
2794 /* This hack is to avoid a warning when using the "o"
2795 constraint within gcc asm statements.
2798 #define _set_tssldt_desc(n,addr,limit,type) \
2799 __asm__ __volatile__ ( \
2801 "movw %w1,2+%0\n\t" \
2803 "movb %b1,4+%0\n\t" \
2804 "movb %4,5+%0\n\t" \
2805 "movb $0,6+%0\n\t" \
2806 "movb %h1,7+%0\n\t" \
2808 : "=o"(*(n)) : "q" (addr), "ri"(limit), "i"(type))
2810 This works great except that the output assembler ends
2811 up looking a bit weird if it turns out that there is
2812 no offset. You end up producing code that looks like:
2825 So here we provide the missing zero.
2828 *displacement_string_end
= '0';
2834 * We can have operands of the form
2835 * <symbol>@GOTOFF+<nnn>
2836 * Take the easy way out here and copy everything
2837 * into a temporary buffer...
2841 cp
= strchr (input_line_pointer
, '@');
2848 /* GOT relocations are not supported in 16 bit mode */
2849 if (flag_16bit_code
)
2850 as_bad (_("GOT relocations not supported in 16 bit mode"));
2852 if (GOT_symbol
== NULL
)
2853 GOT_symbol
= symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME
);
2855 if (strncmp (cp
+ 1, "PLT", 3) == 0)
2857 i
.disp_reloc
[this_operand
] = BFD_RELOC_386_PLT32
;
2860 else if (strncmp (cp
+ 1, "GOTOFF", 6) == 0)
2862 i
.disp_reloc
[this_operand
] = BFD_RELOC_386_GOTOFF
;
2865 else if (strncmp (cp
+ 1, "GOT", 3) == 0)
2867 i
.disp_reloc
[this_operand
] = BFD_RELOC_386_GOT32
;
2871 as_bad (_("bad reloc specifier in expression"));
2873 /* Replace the relocation token with ' ', so that errors like
2874 foo@GOTOFF1 will be detected. */
2875 first
= cp
- input_line_pointer
;
2876 tmpbuf
= (char *) alloca (strlen(input_line_pointer
));
2877 memcpy (tmpbuf
, input_line_pointer
, first
);
2878 tmpbuf
[first
] = ' ';
2879 strcpy (tmpbuf
+ first
+ 1, cp
+ 1 + len
);
2880 input_line_pointer
= tmpbuf
;
2885 exp_seg
= expression (exp
);
2887 #ifdef BFD_ASSEMBLER
2888 /* We do this to make sure that the section symbol is in
2889 the symbol table. We will ultimately change the relocation
2890 to be relative to the beginning of the section */
2891 if (i
.disp_reloc
[this_operand
] == BFD_RELOC_386_GOTOFF
)
2893 if (S_IS_LOCAL(exp
->X_add_symbol
)
2894 && S_GET_SEGMENT (exp
->X_add_symbol
) != undefined_section
)
2895 section_symbol (S_GET_SEGMENT (exp
->X_add_symbol
));
2896 assert (exp
->X_op
== O_symbol
);
2897 exp
->X_op
= O_subtract
;
2898 exp
->X_op_symbol
= GOT_symbol
;
2899 i
.disp_reloc
[this_operand
] = BFD_RELOC_32
;
2904 if (*input_line_pointer
)
2905 as_bad (_("ignoring junk `%s' after expression"),
2906 input_line_pointer
);
2908 RESTORE_END_STRING (disp_end
+ 1);
2910 RESTORE_END_STRING (disp_end
);
2911 input_line_pointer
= save_input_line_pointer
;
2913 if (exp
->X_op
== O_absent
|| exp
->X_op
== O_big
)
2915 /* missing or bad expr becomes absolute 0 */
2916 as_bad (_("missing or invalid displacement expression `%s' taken as 0"),
2918 exp
->X_op
= O_constant
;
2919 exp
->X_add_number
= 0;
2920 exp
->X_add_symbol
= (symbolS
*) 0;
2921 exp
->X_op_symbol
= (symbolS
*) 0;
2924 if (exp
->X_op
== O_constant
)
2926 if (i
.types
[this_operand
] & Disp16
)
2928 /* We know this operand is at most 16 bits, so convert to a
2929 signed 16 bit number before trying to see whether it will
2930 fit in an even smaller size. */
2932 (((exp
->X_add_number
& 0xffff) ^ 0x8000) - 0x8000);
2934 if (fits_in_signed_byte (exp
->X_add_number
))
2935 i
.types
[this_operand
] |= Disp8
;
2937 #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
2939 #ifdef BFD_ASSEMBLER
2940 OUTPUT_FLAVOR
== bfd_target_aout_flavour
&&
2942 exp_seg
!= text_section
2943 && exp_seg
!= data_section
2944 && exp_seg
!= bss_section
2945 && exp_seg
!= undefined_section
)
2947 #ifdef BFD_ASSEMBLER
2948 as_bad (_("unimplemented segment %s in operand"), exp_seg
->name
);
2950 as_bad (_("unimplemented segment type %d in operand"), exp_seg
);
2958 static int i386_operand_modifier
PARAMS ((char **, int));
2961 i386_operand_modifier (op_string
, got_a_float
)
2965 if (!strncasecmp (*op_string
, "BYTE PTR", 8))
2967 i
.suffix
= BYTE_MNEM_SUFFIX
;
2972 else if (!strncasecmp (*op_string
, "WORD PTR", 8))
2974 if (got_a_float
== 2) /* "fi..." */
2975 i
.suffix
= SHORT_MNEM_SUFFIX
;
2977 i
.suffix
= WORD_MNEM_SUFFIX
;
2982 else if (!strncasecmp (*op_string
, "DWORD PTR", 9))
2984 if (got_a_float
== 1) /* "f..." */
2985 i
.suffix
= SHORT_MNEM_SUFFIX
;
2987 i
.suffix
= LONG_MNEM_SUFFIX
;
2992 else if (!strncasecmp (*op_string
, "QWORD PTR", 9))
2994 i
.suffix
= DWORD_MNEM_SUFFIX
;
2999 else if (!strncasecmp (*op_string
, "XWORD PTR", 9))
3001 i
.suffix
= LONG_DOUBLE_MNEM_SUFFIX
;
3006 else if (!strncasecmp (*op_string
, "SHORT", 5))
3012 else if (!strncasecmp (*op_string
, "OFFSET FLAT:", 12))
3018 else if (!strncasecmp (*op_string
, "FLAT", 4))
3024 else return NONE_FOUND
;
3027 static char * build_displacement_string
PARAMS ((int, char *));
3030 build_displacement_string (initial_disp
, op_string
)
3034 char *temp_string
= (char *) malloc (strlen (op_string
) + 1);
3035 char *end_of_operand_string
;
3039 temp_string
[0] = '\0';
3040 tc
= end_of_operand_string
= strchr (op_string
, '[');
3041 if (initial_disp
&& !end_of_operand_string
)
3043 strcpy (temp_string
, op_string
);
3047 /* Build the whole displacement string */
3050 strncpy (temp_string
, op_string
, end_of_operand_string
- op_string
);
3051 temp_string
[end_of_operand_string
- op_string
] = '\0';
3055 temp_disp
= op_string
;
3057 while (*temp_disp
!= '\0')
3060 int add_minus
= (*temp_disp
== '-');
3062 if (*temp_disp
== '+' || *temp_disp
== '-' || *temp_disp
== '[')
3065 if (is_space_char (*temp_disp
))
3068 /* Don't consider registers */
3069 if ( !((*temp_disp
== REGISTER_PREFIX
|| allow_naked_reg
)
3070 && parse_register (temp_disp
, &end_op
)) )
3072 char *string_start
= temp_disp
;
3074 while (*temp_disp
!= ']'
3075 && *temp_disp
!= '+'
3076 && *temp_disp
!= '-'
3077 && *temp_disp
!= '*')
3081 strcat (temp_string
, "-");
3083 strcat (temp_string
, "+");
3085 strncat (temp_string
, string_start
, temp_disp
- string_start
);
3086 if (*temp_disp
== '+' || *temp_disp
== '-')
3090 while (*temp_disp
!= '\0'
3091 && *temp_disp
!= '+'
3092 && *temp_disp
!= '-')
3099 static int i386_parse_seg
PARAMS ((char *));
3102 i386_parse_seg (op_string
)
3105 if (is_space_char (*op_string
))
3108 /* Should be one of es, cs, ss, ds fs or gs */
3109 switch (*op_string
++)
3112 i
.seg
[i
.mem_operands
] = &es
;
3115 i
.seg
[i
.mem_operands
] = &cs
;
3118 i
.seg
[i
.mem_operands
] = &ss
;
3121 i
.seg
[i
.mem_operands
] = &ds
;
3124 i
.seg
[i
.mem_operands
] = &fs
;
3127 i
.seg
[i
.mem_operands
] = &gs
;
3130 as_bad (_("bad segment name `%s'"), op_string
);
3134 if (*op_string
++ != 's')
3136 as_bad (_("bad segment name `%s'"), op_string
);
3140 if (is_space_char (*op_string
))
3143 if (*op_string
!= ':')
3145 as_bad (_("bad segment name `%s'"), op_string
);
3153 static int i386_index_check
PARAMS((const char *));
3155 /* Make sure the memory operand we've been dealt is valid.
3156 Returns 1 on success, 0 on a failure.
3159 i386_index_check (operand_string
)
3160 const char *operand_string
;
3162 #if INFER_ADDR_PREFIX
3167 if (flag_16bit_code
^ (i
.prefix
[ADDR_PREFIX
] != 0)
3168 /* 16 bit mode checks */
3170 && ((i
.base_reg
->reg_type
& (Reg16
|BaseIndex
))
3171 != (Reg16
|BaseIndex
)))
3173 && (((i
.index_reg
->reg_type
& (Reg16
|BaseIndex
))
3174 != (Reg16
|BaseIndex
))
3176 && i
.base_reg
->reg_num
< 6
3177 && i
.index_reg
->reg_num
>= 6
3178 && i
.log2_scale_factor
== 0))))
3179 /* 32 bit mode checks */
3181 && (i
.base_reg
->reg_type
& Reg32
) == 0)
3183 && ((i
.index_reg
->reg_type
& (Reg32
|BaseIndex
))
3184 != (Reg32
|BaseIndex
)))))
3186 #if INFER_ADDR_PREFIX
3187 if (i
.prefix
[ADDR_PREFIX
] == 0 && stackop_size
!= '\0')
3189 i
.prefix
[ADDR_PREFIX
] = ADDR_PREFIX_OPCODE
;
3191 /* Change the size of any displacement too. At most one of
3192 Disp16 or Disp32 is set.
3193 FIXME. There doesn't seem to be any real need for separate
3194 Disp16 and Disp32 flags. The same goes for Imm16 and Imm32.
3195 Removing them would probably clean up the code quite a lot.
3197 if (i
.types
[this_operand
] & (Disp16
|Disp32
))
3198 i
.types
[this_operand
] ^= (Disp16
|Disp32
);
3203 as_bad (_("`%s' is not a valid base/index expression"),
3207 as_bad (_("`%s' is not a valid %s bit base/index expression"),
3209 flag_16bit_code
^ (i
.prefix
[ADDR_PREFIX
] != 0) ? "16" : "32");
3215 static int i386_intel_memory_operand
PARAMS ((char *));
3218 i386_intel_memory_operand (operand_string
)
3219 char *operand_string
;
3221 char *op_string
= operand_string
;
3222 char *end_of_operand_string
;
3224 if ((i
.mem_operands
== 1
3225 && (current_templates
->start
->opcode_modifier
& IsString
) == 0)
3226 || i
.mem_operands
== 2)
3228 as_bad (_("too many memory references for `%s'"),
3229 current_templates
->start
->name
);
3233 /* First check for a segment override. */
3234 if (*op_string
!= '[')
3238 end_seg
= strchr (op_string
, ':');
3241 if (!i386_parse_seg (op_string
))
3243 op_string
= end_seg
+ 1;
3247 /* Look for displacement preceding open bracket */
3248 if (*op_string
!= '[')
3252 if (i
.disp_operands
)
3255 temp_string
= build_displacement_string (true, op_string
);
3257 if (!i386_displacement (temp_string
, temp_string
+ strlen (temp_string
)))
3264 end_of_operand_string
= strchr (op_string
, '[');
3265 if (!end_of_operand_string
)
3266 end_of_operand_string
= op_string
+ strlen (op_string
);
3268 if (is_space_char (*end_of_operand_string
))
3269 --end_of_operand_string
;
3271 op_string
= end_of_operand_string
;
3274 if (*op_string
== '[')
3278 /* Pick off each component and figure out where it belongs */
3280 end_of_operand_string
= op_string
;
3282 while (*op_string
!= ']')
3284 const reg_entry
*temp_reg
;
3288 while (*end_of_operand_string
!= '+'
3289 && *end_of_operand_string
!= '-'
3290 && *end_of_operand_string
!= '*'
3291 && *end_of_operand_string
!= ']')
3292 end_of_operand_string
++;
3294 temp_string
= op_string
;
3295 if (*temp_string
== '+')
3298 if (is_space_char (*temp_string
))
3302 if ((*temp_string
== REGISTER_PREFIX
|| allow_naked_reg
)
3303 && (temp_reg
= parse_register (temp_string
, &end_op
)) != NULL
)
3305 if (i
.base_reg
== NULL
)
3306 i
.base_reg
= temp_reg
;
3308 i
.index_reg
= temp_reg
;
3310 i
.types
[this_operand
] |= BaseIndex
;
3312 else if (*temp_string
== REGISTER_PREFIX
)
3314 as_bad (_("bad register name `%s'"), temp_string
);
3317 else if (is_digit_char (*op_string
)
3318 || *op_string
== '+' || *op_string
== '-')
3322 if (i
.disp_operands
!= 0)
3325 temp_string
= build_displacement_string (false, op_string
);
3327 temp_str
= temp_string
;
3328 if (*temp_str
== '+')
3331 if (!i386_displacement (temp_str
, temp_str
+ strlen (temp_str
)))
3339 end_of_operand_string
= op_string
;
3340 while (*end_of_operand_string
!= ']'
3341 && *end_of_operand_string
!= '+'
3342 && *end_of_operand_string
!= '-'
3343 && *end_of_operand_string
!= '*')
3344 ++end_of_operand_string
;
3346 else if (*op_string
== '*')
3350 if (i
.base_reg
&& !i
.index_reg
)
3352 i
.index_reg
= i
.base_reg
;
3356 if (!i386_scale (op_string
))
3359 op_string
= end_of_operand_string
;
3360 ++end_of_operand_string
;
3364 if (i386_index_check (operand_string
) == 0)
3372 i386_intel_operand (operand_string
, got_a_float
)
3373 char *operand_string
;
3376 const reg_entry
* r
;
3378 char *op_string
= operand_string
;
3380 int operand_modifier
= i386_operand_modifier (&op_string
, got_a_float
);
3381 if (is_space_char (*op_string
))
3384 switch (operand_modifier
)
3391 if (!i386_intel_memory_operand (op_string
))
3397 if (!i386_immediate (op_string
))
3403 /* Should be register or immediate */
3404 if (is_digit_char (*op_string
)
3405 && strchr (op_string
, '[') == 0)
3407 if (!i386_immediate (op_string
))
3410 else if ((*op_string
== REGISTER_PREFIX
|| allow_naked_reg
)
3411 && (r
= parse_register (op_string
, &end_op
)) != NULL
)
3413 /* Check for a segment override by searching for ':' after a
3414 segment register. */
3416 if (is_space_char (*op_string
))
3418 if (*op_string
== ':' && (r
->reg_type
& (SReg2
| SReg3
)))
3423 i
.seg
[i
.mem_operands
] = &es
;
3426 i
.seg
[i
.mem_operands
] = &cs
;
3429 i
.seg
[i
.mem_operands
] = &ss
;
3432 i
.seg
[i
.mem_operands
] = &ds
;
3435 i
.seg
[i
.mem_operands
] = &fs
;
3438 i
.seg
[i
.mem_operands
] = &gs
;
3443 i
.types
[this_operand
] |= r
->reg_type
& ~BaseIndex
;
3444 i
.op
[this_operand
].regs
= r
;
3447 else if (*op_string
== REGISTER_PREFIX
)
3449 as_bad (_("bad register name `%s'"), op_string
);
3452 else if (!i386_intel_memory_operand (op_string
))
3461 /* Parse OPERAND_STRING into the i386_insn structure I. Returns non-zero
3465 i386_operand (operand_string
)
3466 char *operand_string
;
3470 char *op_string
= operand_string
;
3472 if (is_space_char (*op_string
))
3475 /* We check for an absolute prefix (differentiating,
3476 for example, 'jmp pc_relative_label' from 'jmp *absolute_label'. */
3477 if (*op_string
== ABSOLUTE_PREFIX
)
3480 if (is_space_char (*op_string
))
3482 i
.types
[this_operand
] |= JumpAbsolute
;
3485 /* Check if operand is a register. */
3486 if ((*op_string
== REGISTER_PREFIX
|| allow_naked_reg
)
3487 && (r
= parse_register (op_string
, &end_op
)) != NULL
)
3489 /* Check for a segment override by searching for ':' after a
3490 segment register. */
3492 if (is_space_char (*op_string
))
3494 if (*op_string
== ':' && (r
->reg_type
& (SReg2
| SReg3
)))
3499 i
.seg
[i
.mem_operands
] = &es
;
3502 i
.seg
[i
.mem_operands
] = &cs
;
3505 i
.seg
[i
.mem_operands
] = &ss
;
3508 i
.seg
[i
.mem_operands
] = &ds
;
3511 i
.seg
[i
.mem_operands
] = &fs
;
3514 i
.seg
[i
.mem_operands
] = &gs
;
3518 /* Skip the ':' and whitespace. */
3520 if (is_space_char (*op_string
))
3523 if (!is_digit_char (*op_string
)
3524 && !is_identifier_char (*op_string
)
3525 && *op_string
!= '('
3526 && *op_string
!= ABSOLUTE_PREFIX
)
3528 as_bad (_("bad memory operand `%s'"), op_string
);
3531 /* Handle case of %es:*foo. */
3532 if (*op_string
== ABSOLUTE_PREFIX
)
3535 if (is_space_char (*op_string
))
3537 i
.types
[this_operand
] |= JumpAbsolute
;
3539 goto do_memory_reference
;
3543 as_bad (_("junk `%s' after register"), op_string
);
3546 i
.types
[this_operand
] |= r
->reg_type
& ~BaseIndex
;
3547 i
.op
[this_operand
].regs
= r
;
3550 else if (*op_string
== REGISTER_PREFIX
)
3552 as_bad (_("bad register name `%s'"), op_string
);
3555 else if (*op_string
== IMMEDIATE_PREFIX
)
3556 { /* ... or an immediate */
3558 if (i
.types
[this_operand
] & JumpAbsolute
)
3560 as_bad (_("immediate operand illegal with absolute jump"));
3563 if (!i386_immediate (op_string
))
3566 else if (is_digit_char (*op_string
)
3567 || is_identifier_char (*op_string
)
3568 || *op_string
== '(' )
3570 /* This is a memory reference of some sort. */
3573 /* Start and end of displacement string expression (if found). */
3574 char *displacement_string_start
;
3575 char *displacement_string_end
;
3577 do_memory_reference
:
3578 if ((i
.mem_operands
== 1
3579 && (current_templates
->start
->opcode_modifier
& IsString
) == 0)
3580 || i
.mem_operands
== 2)
3582 as_bad (_("too many memory references for `%s'"),
3583 current_templates
->start
->name
);
3587 /* Check for base index form. We detect the base index form by
3588 looking for an ')' at the end of the operand, searching
3589 for the '(' matching it, and finding a REGISTER_PREFIX or ','
3591 base_string
= op_string
+ strlen (op_string
);
3594 if (is_space_char (*base_string
))
3597 /* If we only have a displacement, set-up for it to be parsed later. */
3598 displacement_string_start
= op_string
;
3599 displacement_string_end
= base_string
+ 1;
3601 if (*base_string
== ')')
3604 unsigned int parens_balanced
= 1;
3605 /* We've already checked that the number of left & right ()'s are
3606 equal, so this loop will not be infinite. */
3610 if (*base_string
== ')')
3612 if (*base_string
== '(')
3615 while (parens_balanced
);
3617 temp_string
= base_string
;
3619 /* Skip past '(' and whitespace. */
3621 if (is_space_char (*base_string
))
3624 if (*base_string
== ','
3625 || ((*base_string
== REGISTER_PREFIX
|| allow_naked_reg
)
3626 && (i
.base_reg
= parse_register (base_string
, &end_op
)) != NULL
))
3628 displacement_string_end
= temp_string
;
3630 i
.types
[this_operand
] |= BaseIndex
;
3634 base_string
= end_op
;
3635 if (is_space_char (*base_string
))
3639 /* There may be an index reg or scale factor here. */
3640 if (*base_string
== ',')
3643 if (is_space_char (*base_string
))
3646 if ((*base_string
== REGISTER_PREFIX
|| allow_naked_reg
)
3647 && (i
.index_reg
= parse_register (base_string
, &end_op
)) != NULL
)
3649 base_string
= end_op
;
3650 if (is_space_char (*base_string
))
3652 if (*base_string
== ',')
3655 if (is_space_char (*base_string
))
3658 else if (*base_string
!= ')' )
3660 as_bad (_("expecting `,' or `)' after index register in `%s'"),
3665 else if (*base_string
== REGISTER_PREFIX
)
3667 as_bad (_("bad register name `%s'"), base_string
);
3671 /* Check for scale factor. */
3672 if (isdigit ((unsigned char) *base_string
))
3674 if (!i386_scale (base_string
))
3678 if (is_space_char (*base_string
))
3680 if (*base_string
!= ')')
3682 as_bad (_("expecting `)' after scale factor in `%s'"),
3687 else if (!i
.index_reg
)
3689 as_bad (_("expecting index register or scale factor after `,'; got '%c'"),
3694 else if (*base_string
!= ')')
3696 as_bad (_("expecting `,' or `)' after base register in `%s'"),
3701 else if (*base_string
== REGISTER_PREFIX
)
3703 as_bad (_("bad register name `%s'"), base_string
);
3708 /* If there's an expression beginning the operand, parse it,
3709 assuming displacement_string_start and
3710 displacement_string_end are meaningful. */
3711 if (displacement_string_start
!= displacement_string_end
)
3713 if (!i386_displacement (displacement_string_start
,
3714 displacement_string_end
))
3718 /* Special case for (%dx) while doing input/output op. */
3720 && i
.base_reg
->reg_type
== (Reg16
| InOutPortReg
)
3722 && i
.log2_scale_factor
== 0
3723 && i
.seg
[i
.mem_operands
] == 0
3724 && (i
.types
[this_operand
] & Disp
) == 0)
3726 i
.types
[this_operand
] = InOutPortReg
;
3730 if (i386_index_check (operand_string
) == 0)
3735 { /* it's not a memory operand; argh! */
3736 as_bad (_("invalid char %s beginning operand %d `%s'"),
3737 output_invalid (*op_string
),
3742 return 1; /* normal return */
3745 /* md_estimate_size_before_relax()
3747 Called just before relax() for rs_machine_dependent frags. The x86
3748 assembler uses these frags to handle variable size jump
3751 Any symbol that is now undefined will not become defined.
3752 Return the correct fr_subtype in the frag.
3753 Return the initial "guess for variable size of frag" to caller.
3754 The guess is actually the growth beyond the fixed part. Whatever
3755 we do to grow the fixed or variable part contributes to our
3759 md_estimate_size_before_relax (fragP
, segment
)
3760 register fragS
*fragP
;
3761 register segT segment
;
3763 /* We've already got fragP->fr_subtype right; all we have to do is
3764 check for un-relaxable symbols. On an ELF system, we can't relax
3765 an externally visible symbol, because it may be overridden by a
3767 if (S_GET_SEGMENT (fragP
->fr_symbol
) != segment
3768 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined (TE_PE)
3769 || S_IS_EXTERNAL (fragP
->fr_symbol
)
3770 || S_IS_WEAK (fragP
->fr_symbol
)
3774 /* Symbol is undefined in this segment, or we need to keep a
3775 reloc so that weak symbols can be overridden. */
3776 int size
= (fragP
->fr_subtype
& CODE16
) ? 2 : 4;
3777 #ifdef BFD_ASSEMBLER
3778 enum bfd_reloc_code_real reloc_type
;
3782 unsigned char *opcode
;
3785 if (fragP
->fr_var
!= NO_RELOC
)
3786 reloc_type
= fragP
->fr_var
;
3788 reloc_type
= BFD_RELOC_16_PCREL
;
3790 reloc_type
= BFD_RELOC_32_PCREL
;
3792 old_fr_fix
= fragP
->fr_fix
;
3793 opcode
= (unsigned char *) fragP
->fr_opcode
;
3797 case JUMP_PC_RELATIVE
: /* make jmp (0xeb) a dword displacement jump */
3798 opcode
[0] = 0xe9; /* dword disp jmp */
3799 fragP
->fr_fix
+= size
;
3800 fix_new (fragP
, old_fr_fix
, size
,
3802 fragP
->fr_offset
, 1,
3807 /* This changes the byte-displacement jump 0x7N
3808 to the dword-displacement jump 0x0f,0x8N. */
3809 opcode
[1] = opcode
[0] + 0x10;
3810 opcode
[0] = TWO_BYTE_OPCODE_ESCAPE
;
3811 fragP
->fr_fix
+= 1 + size
; /* we've added an opcode byte */
3812 fix_new (fragP
, old_fr_fix
+ 1, size
,
3814 fragP
->fr_offset
, 1,
3819 return fragP
->fr_fix
- old_fr_fix
;
3821 return 1; /* Guess a short jump. */
3825 * md_convert_frag();
3827 * Called after relax() is finished.
3828 * In: Address of frag.
3829 * fr_type == rs_machine_dependent.
3830 * fr_subtype is what the address relaxed to.
3832 * Out: Any fixSs and constants are set up.
3833 * Caller will turn frag into a ".space 0".
3835 #ifndef BFD_ASSEMBLER
3837 md_convert_frag (headers
, sec
, fragP
)
3838 object_headers
*headers ATTRIBUTE_UNUSED
;
3839 segT sec ATTRIBUTE_UNUSED
;
3840 register fragS
*fragP
;
3843 md_convert_frag (abfd
, sec
, fragP
)
3844 bfd
*abfd ATTRIBUTE_UNUSED
;
3845 segT sec ATTRIBUTE_UNUSED
;
3846 register fragS
*fragP
;
3849 register unsigned char *opcode
;
3850 unsigned char *where_to_put_displacement
= NULL
;
3851 offsetT target_address
;
3852 offsetT opcode_address
;
3853 unsigned int extension
= 0;
3854 offsetT displacement_from_opcode_start
;
3856 opcode
= (unsigned char *) fragP
->fr_opcode
;
3858 /* Address we want to reach in file space. */
3859 target_address
= S_GET_VALUE (fragP
->fr_symbol
) + fragP
->fr_offset
;
3860 #ifdef BFD_ASSEMBLER /* not needed otherwise? */
3861 target_address
+= symbol_get_frag (fragP
->fr_symbol
)->fr_address
;
3864 /* Address opcode resides at in file space. */
3865 opcode_address
= fragP
->fr_address
+ fragP
->fr_fix
;
3867 /* Displacement from opcode start to fill into instruction. */
3868 displacement_from_opcode_start
= target_address
- opcode_address
;
3870 switch (fragP
->fr_subtype
)
3872 case ENCODE_RELAX_STATE (COND_JUMP
, SMALL
):
3873 case ENCODE_RELAX_STATE (COND_JUMP
, SMALL16
):
3874 case ENCODE_RELAX_STATE (UNCOND_JUMP
, SMALL
):
3875 case ENCODE_RELAX_STATE (UNCOND_JUMP
, SMALL16
):
3876 /* don't have to change opcode */
3877 extension
= 1; /* 1 opcode + 1 displacement */
3878 where_to_put_displacement
= &opcode
[1];
3881 case ENCODE_RELAX_STATE (COND_JUMP
, BIG
):
3882 extension
= 5; /* 2 opcode + 4 displacement */
3883 opcode
[1] = opcode
[0] + 0x10;
3884 opcode
[0] = TWO_BYTE_OPCODE_ESCAPE
;
3885 where_to_put_displacement
= &opcode
[2];
3888 case ENCODE_RELAX_STATE (UNCOND_JUMP
, BIG
):
3889 extension
= 4; /* 1 opcode + 4 displacement */
3891 where_to_put_displacement
= &opcode
[1];
3894 case ENCODE_RELAX_STATE (COND_JUMP
, BIG16
):
3895 extension
= 3; /* 2 opcode + 2 displacement */
3896 opcode
[1] = opcode
[0] + 0x10;
3897 opcode
[0] = TWO_BYTE_OPCODE_ESCAPE
;
3898 where_to_put_displacement
= &opcode
[2];
3901 case ENCODE_RELAX_STATE (UNCOND_JUMP
, BIG16
):
3902 extension
= 2; /* 1 opcode + 2 displacement */
3904 where_to_put_displacement
= &opcode
[1];
3908 BAD_CASE (fragP
->fr_subtype
);
3911 /* now put displacement after opcode */
3912 md_number_to_chars ((char *) where_to_put_displacement
,
3913 (valueT
) (displacement_from_opcode_start
- extension
),
3914 SIZE_FROM_RELAX_STATE (fragP
->fr_subtype
));
3915 fragP
->fr_fix
+= extension
;
3919 int md_short_jump_size
= 2; /* size of byte displacement jmp */
3920 int md_long_jump_size
= 5; /* size of dword displacement jmp */
3921 const int md_reloc_size
= 8; /* Size of relocation record */
3924 md_create_short_jump (ptr
, from_addr
, to_addr
, frag
, to_symbol
)
3926 addressT from_addr
, to_addr
;
3927 fragS
*frag ATTRIBUTE_UNUSED
;
3928 symbolS
*to_symbol ATTRIBUTE_UNUSED
;
3932 offset
= to_addr
- (from_addr
+ 2);
3933 md_number_to_chars (ptr
, (valueT
) 0xeb, 1); /* opcode for byte-disp jump */
3934 md_number_to_chars (ptr
+ 1, (valueT
) offset
, 1);
3938 md_create_long_jump (ptr
, from_addr
, to_addr
, frag
, to_symbol
)
3940 addressT from_addr
, to_addr
;
3941 fragS
*frag ATTRIBUTE_UNUSED
;
3942 symbolS
*to_symbol ATTRIBUTE_UNUSED
;
3946 offset
= to_addr
- (from_addr
+ 5);
3947 md_number_to_chars (ptr
, (valueT
) 0xe9, 1);
3948 md_number_to_chars (ptr
+ 1, (valueT
) offset
, 4);
3951 /* Apply a fixup (fixS) to segment data, once it has been determined
3952 by our caller that we have all the info we need to fix it up.
3954 On the 386, immediates, displacements, and data pointers are all in
3955 the same (little-endian) format, so we don't need to care about which
3959 md_apply_fix3 (fixP
, valp
, seg
)
3960 fixS
*fixP
; /* The fix we're to put in. */
3961 valueT
*valp
; /* Pointer to the value of the bits. */
3962 segT seg ATTRIBUTE_UNUSED
; /* Segment fix is from. */
3964 register char *p
= fixP
->fx_where
+ fixP
->fx_frag
->fr_literal
;
3965 valueT value
= *valp
;
3967 #if defined (BFD_ASSEMBLER) && !defined (TE_Mach)
3970 switch (fixP
->fx_r_type
)
3976 fixP
->fx_r_type
= BFD_RELOC_32_PCREL
;
3979 fixP
->fx_r_type
= BFD_RELOC_16_PCREL
;
3982 fixP
->fx_r_type
= BFD_RELOC_8_PCREL
;
3987 /* This is a hack. There should be a better way to handle this.
3988 This covers for the fact that bfd_install_relocation will
3989 subtract the current location (for partial_inplace, PC relative
3990 relocations); see more below. */
3991 if ((fixP
->fx_r_type
== BFD_RELOC_32_PCREL
3992 || fixP
->fx_r_type
== BFD_RELOC_16_PCREL
3993 || fixP
->fx_r_type
== BFD_RELOC_8_PCREL
)
3997 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
3999 || OUTPUT_FLAVOR
== bfd_target_coff_flavour
4002 value
+= fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
4004 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4005 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
)
4007 segT fseg
= S_GET_SEGMENT (fixP
->fx_addsy
);
4010 || (symbol_section_p (fixP
->fx_addsy
)
4011 && fseg
!= absolute_section
))
4012 && ! S_IS_EXTERNAL (fixP
->fx_addsy
)
4013 && ! S_IS_WEAK (fixP
->fx_addsy
)
4014 && S_IS_DEFINED (fixP
->fx_addsy
)
4015 && ! S_IS_COMMON (fixP
->fx_addsy
))
4017 /* Yes, we add the values in twice. This is because
4018 bfd_perform_relocation subtracts them out again. I think
4019 bfd_perform_relocation is broken, but I don't dare change
4021 value
+= fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
4025 #if defined (OBJ_COFF) && defined (TE_PE)
4026 /* For some reason, the PE format does not store a section
4027 address offset for a PC relative symbol. */
4028 if (S_GET_SEGMENT (fixP
->fx_addsy
) != seg
)
4029 value
+= md_pcrel_from (fixP
);
4030 else if (S_IS_EXTERNAL (fixP
->fx_addsy
)
4031 || S_IS_WEAK (fixP
->fx_addsy
))
4033 /* We are generating an external relocation for this defined
4034 symbol. We add the address, because
4035 bfd_install_relocation will subtract it. VALUE already
4036 holds the symbol value, because fixup_segment added it
4037 in. We subtract it out, and then we subtract it out
4038 again because bfd_install_relocation will add it in
4040 value
+= md_pcrel_from (fixP
);
4041 value
-= 2 * S_GET_VALUE (fixP
->fx_addsy
);
4046 else if (fixP
->fx_addsy
!= NULL
4047 && S_IS_DEFINED (fixP
->fx_addsy
)
4048 && (S_IS_EXTERNAL (fixP
->fx_addsy
)
4049 || S_IS_WEAK (fixP
->fx_addsy
)))
4051 /* We are generating an external relocation for this defined
4052 symbol. VALUE already holds the symbol value, and
4053 bfd_install_relocation will add it in again. We don't want
4055 value
-= 2 * S_GET_VALUE (fixP
->fx_addsy
);
4059 /* Fix a few things - the dynamic linker expects certain values here,
4060 and we must not dissappoint it. */
4061 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4062 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
4064 switch (fixP
->fx_r_type
) {
4065 case BFD_RELOC_386_PLT32
:
4066 /* Make the jump instruction point to the address of the operand. At
4067 runtime we merely add the offset to the actual PLT entry. */
4070 case BFD_RELOC_386_GOTPC
:
4072 * This is tough to explain. We end up with this one if we have
4073 * operands that look like "_GLOBAL_OFFSET_TABLE_+[.-.L284]". The goal
4074 * here is to obtain the absolute address of the GOT, and it is strongly
4075 * preferable from a performance point of view to avoid using a runtime
4076 * relocation for this. The actual sequence of instructions often look
4082 * addl $_GLOBAL_OFFSET_TABLE_+[.-.L66],%ebx
4084 * The call and pop essentially return the absolute address of
4085 * the label .L66 and store it in %ebx. The linker itself will
4086 * ultimately change the first operand of the addl so that %ebx points to
4087 * the GOT, but to keep things simple, the .o file must have this operand
4088 * set so that it generates not the absolute address of .L66, but the
4089 * absolute address of itself. This allows the linker itself simply
4090 * treat a GOTPC relocation as asking for a pcrel offset to the GOT to be
4091 * added in, and the addend of the relocation is stored in the operand
4092 * field for the instruction itself.
4094 * Our job here is to fix the operand so that it would add the correct
4095 * offset so that %ebx would point to itself. The thing that is tricky is
4096 * that .-.L66 will point to the beginning of the instruction, so we need
4097 * to further modify the operand so that it will point to itself.
4098 * There are other cases where you have something like:
4100 * .long $_GLOBAL_OFFSET_TABLE_+[.-.L66]
4102 * and here no correction would be required. Internally in the assembler
4103 * we treat operands of this form as not being pcrel since the '.' is
4104 * explicitly mentioned, and I wonder whether it would simplify matters
4105 * to do it this way. Who knows. In earlier versions of the PIC patches,
4106 * the pcrel_adjust field was used to store the correction, but since the
4107 * expression is not pcrel, I felt it would be confusing to do it this way.
4111 case BFD_RELOC_386_GOT32
:
4112 value
= 0; /* Fully resolved at runtime. No addend. */
4114 case BFD_RELOC_386_GOTOFF
:
4117 case BFD_RELOC_VTABLE_INHERIT
:
4118 case BFD_RELOC_VTABLE_ENTRY
:
4125 #endif /* defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) */
4127 #endif /* defined (BFD_ASSEMBLER) && !defined (TE_Mach) */
4128 md_number_to_chars (p
, value
, fixP
->fx_size
);
4134 #define MAX_LITTLENUMS 6
4136 /* Turn the string pointed to by litP into a floating point constant of type
4137 type, and emit the appropriate bytes. The number of LITTLENUMS emitted
4138 is stored in *sizeP . An error message is returned, or NULL on OK. */
4140 md_atof (type
, litP
, sizeP
)
4146 LITTLENUM_TYPE words
[MAX_LITTLENUMS
];
4147 LITTLENUM_TYPE
*wordP
;
4169 return _("Bad call to md_atof ()");
4171 t
= atof_ieee (input_line_pointer
, type
, words
);
4173 input_line_pointer
= t
;
4175 *sizeP
= prec
* sizeof (LITTLENUM_TYPE
);
4176 /* This loops outputs the LITTLENUMs in REVERSE order; in accord with
4177 the bigendian 386. */
4178 for (wordP
= words
+ prec
- 1; prec
--;)
4180 md_number_to_chars (litP
, (valueT
) (*wordP
--), sizeof (LITTLENUM_TYPE
));
4181 litP
+= sizeof (LITTLENUM_TYPE
);
4186 char output_invalid_buf
[8];
4193 sprintf (output_invalid_buf
, "'%c'", c
);
4195 sprintf (output_invalid_buf
, "(0x%x)", (unsigned) c
);
4196 return output_invalid_buf
;
4200 /* REG_STRING starts *before* REGISTER_PREFIX. */
4202 static const reg_entry
*
4203 parse_register (reg_string
, end_op
)
4207 char *s
= reg_string
;
4209 char reg_name_given
[MAX_REG_NAME_SIZE
+ 1];
4212 /* Skip possible REGISTER_PREFIX and possible whitespace. */
4213 if (*s
== REGISTER_PREFIX
)
4216 if (is_space_char (*s
))
4220 while ((*p
++ = register_chars
[(unsigned char) *s
]) != '\0')
4222 if (p
>= reg_name_given
+ MAX_REG_NAME_SIZE
)
4223 return (const reg_entry
*) NULL
;
4229 r
= (const reg_entry
*) hash_find (reg_hash
, reg_name_given
);
4231 /* Handle floating point regs, allowing spaces in the (i) part. */
4232 if (r
== i386_regtab
/* %st is first entry of table */)
4234 if (is_space_char (*s
))
4239 if (is_space_char (*s
))
4241 if (*s
>= '0' && *s
<= '7')
4243 r
= &i386_float_regtab
[*s
- '0'];
4245 if (is_space_char (*s
))
4253 /* We have "%st(" then garbage */
4254 return (const reg_entry
*) NULL
;
4261 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4262 CONST
char *md_shortopts
= "kmVQ:sq";
4264 CONST
char *md_shortopts
= "m";
4266 struct option md_longopts
[] = {
4267 {NULL
, no_argument
, NULL
, 0}
4269 size_t md_longopts_size
= sizeof (md_longopts
);
4272 md_parse_option (c
, arg
)
4274 char *arg ATTRIBUTE_UNUSED
;
4282 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4283 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
4284 should be emitted or not. FIXME: Not implemented. */
4288 /* -V: SVR4 argument to print version ID. */
4290 print_version_id ();
4293 /* -k: Ignore for FreeBSD compatibility. */
4298 /* -s: On i386 Solaris, this tells the native assembler to use
4299 .stab instead of .stab.excl. We always use .stab anyhow. */
4310 md_show_usage (stream
)
4313 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
4314 fprintf (stream
, _("\
4316 -V print assembler version number\n\
4318 -q quieten some warnings\n\
4321 fprintf (stream
, _("\
4322 -q quieten some warnings\n"));
4326 #ifdef BFD_ASSEMBLER
4327 #if ((defined (OBJ_MAYBE_ELF) && defined (OBJ_MAYBE_COFF)) \
4328 || (defined (OBJ_MAYBE_ELF) && defined (OBJ_MAYBE_AOUT)) \
4329 || (defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)))
4331 /* Pick the target format to use. */
4334 i386_target_format ()
4336 switch (OUTPUT_FLAVOR
)
4338 #ifdef OBJ_MAYBE_AOUT
4339 case bfd_target_aout_flavour
:
4340 return AOUT_TARGET_FORMAT
;
4342 #ifdef OBJ_MAYBE_COFF
4343 case bfd_target_coff_flavour
:
4346 #ifdef OBJ_MAYBE_ELF
4347 case bfd_target_elf_flavour
:
4348 return "elf32-i386";
4356 #endif /* OBJ_MAYBE_ more than one */
4357 #endif /* BFD_ASSEMBLER */
4360 md_undefined_symbol (name
)
4363 if (name
[0] == GLOBAL_OFFSET_TABLE_NAME
[0]
4364 && name
[1] == GLOBAL_OFFSET_TABLE_NAME
[1]
4365 && name
[2] == GLOBAL_OFFSET_TABLE_NAME
[2]
4366 && strcmp (name
, GLOBAL_OFFSET_TABLE_NAME
) == 0)
4370 if (symbol_find (name
))
4371 as_bad (_("GOT already in symbol table"));
4372 GOT_symbol
= symbol_new (name
, undefined_section
,
4373 (valueT
) 0, &zero_address_frag
);
4380 /* Round up a section size to the appropriate boundary. */
4382 md_section_align (segment
, size
)
4383 segT segment ATTRIBUTE_UNUSED
;
4386 #ifdef BFD_ASSEMBLER
4387 #if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT))
4388 if (OUTPUT_FLAVOR
== bfd_target_aout_flavour
)
4390 /* For a.out, force the section size to be aligned. If we don't do
4391 this, BFD will align it for us, but it will not write out the
4392 final bytes of the section. This may be a bug in BFD, but it is
4393 easier to fix it here since that is how the other a.out targets
4397 align
= bfd_get_section_alignment (stdoutput
, segment
);
4398 size
= ((size
+ (1 << align
) - 1) & ((valueT
) -1 << align
));
4406 /* On the i386, PC-relative offsets are relative to the start of the
4407 next instruction. That is, the address of the offset, plus its
4408 size, since the offset is always the last part of the insn. */
4411 md_pcrel_from (fixP
)
4414 return fixP
->fx_size
+ fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
4421 int ignore ATTRIBUTE_UNUSED
;
4425 temp
= get_absolute_expression ();
4426 subseg_set (bss_section
, (subsegT
) temp
);
4427 demand_empty_rest_of_line ();
4433 #ifdef BFD_ASSEMBLER
4436 i386_validate_fix (fixp
)
4439 if (fixp
->fx_subsy
&& fixp
->fx_subsy
== GOT_symbol
)
4441 fixp
->fx_r_type
= BFD_RELOC_386_GOTOFF
;
4447 tc_gen_reloc (section
, fixp
)
4448 asection
*section ATTRIBUTE_UNUSED
;
4452 bfd_reloc_code_real_type code
;
4454 switch (fixp
->fx_r_type
)
4456 case BFD_RELOC_386_PLT32
:
4457 case BFD_RELOC_386_GOT32
:
4458 case BFD_RELOC_386_GOTOFF
:
4459 case BFD_RELOC_386_GOTPC
:
4461 case BFD_RELOC_VTABLE_ENTRY
:
4462 case BFD_RELOC_VTABLE_INHERIT
:
4463 code
= fixp
->fx_r_type
;
4468 switch (fixp
->fx_size
)
4471 as_bad (_("can not do %d byte pc-relative relocation"),
4473 code
= BFD_RELOC_32_PCREL
;
4475 case 1: code
= BFD_RELOC_8_PCREL
; break;
4476 case 2: code
= BFD_RELOC_16_PCREL
; break;
4477 case 4: code
= BFD_RELOC_32_PCREL
; break;
4482 switch (fixp
->fx_size
)
4485 as_bad (_("can not do %d byte relocation"), fixp
->fx_size
);
4486 code
= BFD_RELOC_32
;
4488 case 1: code
= BFD_RELOC_8
; break;
4489 case 2: code
= BFD_RELOC_16
; break;
4490 case 4: code
= BFD_RELOC_32
; break;
4496 if (code
== BFD_RELOC_32
4498 && fixp
->fx_addsy
== GOT_symbol
)
4499 code
= BFD_RELOC_386_GOTPC
;
4501 rel
= (arelent
*) xmalloc (sizeof (arelent
));
4502 rel
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4503 *rel
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4505 rel
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4506 /* HACK: Since i386 ELF uses Rel instead of Rela, encode the
4507 vtable entry to be used in the relocation's section offset. */
4508 if (fixp
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
4509 rel
->address
= fixp
->fx_offset
;
4512 rel
->addend
= fixp
->fx_addnumber
;
4516 rel
->howto
= bfd_reloc_type_lookup (stdoutput
, code
);
4517 if (rel
->howto
== NULL
)
4519 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
4520 _("cannot represent relocation type %s"),
4521 bfd_get_reloc_code_name (code
));
4522 /* Set howto to a garbage value so that we can keep going. */
4523 rel
->howto
= bfd_reloc_type_lookup (stdoutput
, BFD_RELOC_32
);
4524 assert (rel
->howto
!= NULL
);
4530 #else /* ! BFD_ASSEMBLER */
4532 #if (defined(OBJ_AOUT) | defined(OBJ_BOUT))
4534 tc_aout_fix_to_chars (where
, fixP
, segment_address_in_file
)
4537 relax_addressT segment_address_in_file
;
4540 * In: length of relocation (or of address) in chars: 1, 2 or 4.
4541 * Out: GNU LD relocation length code: 0, 1, or 2.
4544 static const unsigned char nbytes_r_length
[] = {42, 0, 1, 42, 2};
4547 know (fixP
->fx_addsy
!= NULL
);
4549 md_number_to_chars (where
,
4550 (valueT
) (fixP
->fx_frag
->fr_address
4551 + fixP
->fx_where
- segment_address_in_file
),
4554 r_symbolnum
= (S_IS_DEFINED (fixP
->fx_addsy
)
4555 ? S_GET_TYPE (fixP
->fx_addsy
)
4556 : fixP
->fx_addsy
->sy_number
);
4558 where
[6] = (r_symbolnum
>> 16) & 0x0ff;
4559 where
[5] = (r_symbolnum
>> 8) & 0x0ff;
4560 where
[4] = r_symbolnum
& 0x0ff;
4561 where
[7] = ((((!S_IS_DEFINED (fixP
->fx_addsy
)) << 3) & 0x08)
4562 | ((nbytes_r_length
[fixP
->fx_size
] << 1) & 0x06)
4563 | (((fixP
->fx_pcrel
<< 0) & 0x01) & 0x0f));
4566 #endif /* OBJ_AOUT or OBJ_BOUT */
4568 #if defined (I386COFF)
4571 tc_coff_fix2rtype (fixP
)
4574 if (fixP
->fx_r_type
== R_IMAGEBASE
)
4577 return (fixP
->fx_pcrel
?
4578 (fixP
->fx_size
== 1 ? R_PCRBYTE
:
4579 fixP
->fx_size
== 2 ? R_PCRWORD
:
4581 (fixP
->fx_size
== 1 ? R_RELBYTE
:
4582 fixP
->fx_size
== 2 ? R_RELWORD
:
4587 tc_coff_sizemachdep (frag
)
4591 return (frag
->fr_next
->fr_address
- frag
->fr_address
);
4596 #endif /* I386COFF */
4598 #endif /* ! BFD_ASSEMBLER */
4600 /* end of tc-i386.c */