1 /* tc-i386.c -- Assemble Intel syntax code for ix86/x86-64
3 Free Software Foundation, Inc.
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 3, 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, 51 Franklin Street - Fifth Floor, Boston, MA
24 operatorT op_modifier
; /* Operand modifier. */
25 int is_mem
; /* 1 if operand is memory reference. */
26 int is_indirect
; /* 1 if operand is indirect reference. */
27 int has_offset
; /* 1 if operand has offset. */
28 unsigned int in_offset
; /* >=1 if processing operand of offset. */
29 unsigned int in_bracket
; /* >=1 if processing operand in brackets. */
30 unsigned int in_scale
; /* >=1 if processing multipication operand
32 i386_operand_type reloc_types
; /* Value obtained from lex_got(). */
33 const reg_entry
*base
; /* Base register (if any). */
34 const reg_entry
*index
; /* Index register (if any). */
35 offsetT scale_factor
; /* Accumulated scale factor. */
40 /* offset X_add_symbol */
41 #define O_offset O_md32
42 /* offset X_add_symbol */
43 #define O_short O_md31
44 /* near ptr X_add_symbol */
45 #define O_near_ptr O_md30
46 /* far ptr X_add_symbol */
47 #define O_far_ptr O_md29
48 /* byte ptr X_add_symbol */
49 #define O_byte_ptr O_md28
50 /* word ptr X_add_symbol */
51 #define O_word_ptr O_md27
52 /* dword ptr X_add_symbol */
53 #define O_dword_ptr O_md26
54 /* qword ptr X_add_symbol */
55 #define O_qword_ptr O_md25
56 /* oword ptr X_add_symbol */
57 #define O_oword_ptr O_md24
58 /* fword ptr X_add_symbol */
59 #define O_fword_ptr O_md23
60 /* tbyte ptr X_add_symbol */
61 #define O_tbyte_ptr O_md22
62 /* xmmword ptr X_add_symbol */
63 #define O_xmmword_ptr O_md21
64 /* ymmword ptr X_add_symbol */
65 #define O_ymmword_ptr O_md20
71 unsigned int operands
;
73 const i386_operators
[] =
75 { "and", O_bit_and
, 2 },
81 { "mod", O_modulus
, 2 },
83 { "not", O_bit_not
, 1 },
84 { "offset", O_offset
, 1 },
85 { "or", O_bit_inclusive_or
, 2 },
86 { "shl", O_left_shift
, 2 },
87 { "short", O_short
, 1 },
88 { "shr", O_right_shift
, 2 },
89 { "xor", O_bit_exclusive_or
, 2 },
90 { NULL
, O_illegal
, 0 }
101 #define I386_TYPE(t, n) { #t, O_##t##_ptr, { n, n, n } }
107 I386_TYPE(tbyte
, 10),
108 I386_TYPE(oword
, 16),
109 I386_TYPE(xmmword
, 16),
110 I386_TYPE(ymmword
, 32),
112 { "near", O_near_ptr
, { 0xff04, 0xff02, 0xff08 } },
113 { "far", O_far_ptr
, { 0xff06, 0xff05, 0xff06 } },
114 { NULL
, O_illegal
, { 0, 0, 0 } }
117 operatorT
i386_operator (const char *name
, unsigned int operands
, char *pc
)
128 switch (*input_line_pointer
)
131 ++input_line_pointer
;
134 ++input_line_pointer
;
137 if (this_operand
>= 0 && i
.reloc
[this_operand
] == NO_RELOC
)
140 char *gotfree_input_line
= lex_got (&i
.reloc
[this_operand
],
142 &intel_state
.reloc_types
);
144 if (!gotfree_input_line
)
146 free (gotfree_input_line
);
147 *input_line_pointer
++ = '+';
148 memset (input_line_pointer
, '0', adjust
- 1);
149 input_line_pointer
[adjust
- 1] = ' ';
157 for (j
= 0; i386_operators
[j
].name
; ++j
)
158 if (strcasecmp (i386_operators
[j
].name
, name
) == 0)
160 if (i386_operators
[j
].operands
161 && i386_operators
[j
].operands
!= operands
)
163 return i386_operators
[j
].op
;
166 for (j
= 0; i386_types
[j
].name
; ++j
)
167 if (strcasecmp (i386_types
[j
].name
, name
) == 0)
169 if (i386_types
[j
].name
&& *pc
== ' ')
171 char *pname
= ++input_line_pointer
;
172 char c
= get_symbol_end ();
174 if (strcasecmp (pname
, "ptr") == 0)
178 if (intel_syntax
> 0 || operands
!= 1)
180 return i386_types
[j
].op
;
183 *input_line_pointer
= c
;
184 input_line_pointer
= pname
- 1;
190 static int i386_intel_parse_name (const char *name
, expressionS
*e
)
194 if (! strcmp (name
, "$"))
196 current_location (e
);
200 for (j
= 0; i386_types
[j
].name
; ++j
)
201 if (strcasecmp(i386_types
[j
].name
, name
) == 0)
203 e
->X_op
= O_constant
;
204 e
->X_add_number
= i386_types
[j
].sz
[flag_code
];
205 e
->X_add_symbol
= NULL
;
206 e
->X_op_symbol
= NULL
;
213 static INLINE
int i386_intel_check (const reg_entry
*rreg
,
214 const reg_entry
*base
,
215 const reg_entry
*iindex
)
217 if ((this_operand
>= 0
218 && rreg
!= i
.op
[this_operand
].regs
)
219 || base
!= intel_state
.base
220 || iindex
!= intel_state
.index
)
222 as_bad (_("invalid use of register"));
228 static INLINE
void i386_intel_fold (expressionS
*e
, symbolS
*sym
)
230 expressionS
*exp
= symbol_get_value_expression (sym
);
231 if (S_GET_SEGMENT (sym
) == absolute_section
)
233 offsetT val
= e
->X_add_number
;
236 e
->X_add_number
+= val
;
240 if (exp
->X_op
== O_symbol
241 && strcmp (S_GET_NAME (exp
->X_add_symbol
),
242 GLOBAL_OFFSET_TABLE_NAME
) == 0)
243 sym
= exp
->X_add_symbol
;
244 e
->X_add_symbol
= sym
;
245 e
->X_op_symbol
= NULL
;
251 i386_intel_simplify_register (expressionS
*e
)
255 if (this_operand
< 0 || intel_state
.in_offset
)
257 as_bad (_("invalid use of register"));
261 if (e
->X_op
== O_register
)
262 reg_num
= e
->X_add_number
;
264 reg_num
= e
->X_md
- 1;
266 if (!intel_state
.in_bracket
)
268 if (i
.op
[this_operand
].regs
)
270 as_bad (_("invalid use of register"));
273 if (i386_regtab
[reg_num
].reg_type
.bitfield
.sreg3
274 && i386_regtab
[reg_num
].reg_num
== RegFlat
)
276 as_bad (_("invalid use of pseudo-register"));
279 i
.op
[this_operand
].regs
= i386_regtab
+ reg_num
;
281 else if (!intel_state
.base
&& !intel_state
.in_scale
)
282 intel_state
.base
= i386_regtab
+ reg_num
;
283 else if (!intel_state
.index
)
284 intel_state
.index
= i386_regtab
+ reg_num
;
287 /* esp is invalid as index */
288 intel_state
.index
= i386_regtab
+ REGNAM_EAX
+ 4;
293 static int i386_intel_simplify (expressionS
*);
295 static INLINE
int i386_intel_simplify_symbol(symbolS
*sym
)
297 int ret
= i386_intel_simplify (symbol_get_value_expression (sym
));
301 S_SET_SEGMENT(sym
, absolute_section
);
307 static int i386_intel_simplify (expressionS
*e
)
309 const reg_entry
*the_reg
= (this_operand
>= 0
310 ? i
.op
[this_operand
].regs
: NULL
);
311 const reg_entry
*base
= intel_state
.base
;
312 const reg_entry
*state_index
= intel_state
.index
;
323 if (!i386_intel_simplify_symbol (e
->X_add_symbol
)
324 || !i386_intel_check(the_reg
, intel_state
.base
,
328 if (!intel_state
.in_offset
)
329 ++intel_state
.in_bracket
;
330 ret
= i386_intel_simplify_symbol (e
->X_op_symbol
);
331 if (!intel_state
.in_offset
)
332 --intel_state
.in_bracket
;
338 i386_intel_fold (e
, e
->X_op_symbol
);
342 intel_state
.has_offset
= 1;
343 ++intel_state
.in_offset
;
344 ret
= i386_intel_simplify_symbol (e
->X_add_symbol
);
345 --intel_state
.in_offset
;
346 if (!ret
|| !i386_intel_check(the_reg
, base
, state_index
))
348 i386_intel_fold (e
, e
->X_add_symbol
);
362 if (intel_state
.op_modifier
== O_absent
)
363 intel_state
.op_modifier
= e
->X_op
;
366 if (symbol_get_value_expression (e
->X_add_symbol
)->X_op
369 as_bad (_("invalid use of register"));
372 if (!i386_intel_simplify_symbol (e
->X_add_symbol
))
374 i386_intel_fold (e
, e
->X_add_symbol
);
378 if (symbol_get_value_expression (e
->X_op_symbol
)->X_op
381 as_bad (_("invalid use of register"));
384 if (!i386_intel_simplify_symbol (e
->X_op_symbol
)
385 || !i386_intel_check(the_reg
, intel_state
.base
,
388 if (!intel_state
.in_offset
)
389 intel_state
.seg
= e
->X_add_symbol
;
390 i386_intel_fold (e
, e
->X_op_symbol
);
394 if (this_operand
>= 0 && intel_state
.in_bracket
)
396 expressionS
*scale
= NULL
;
398 if (intel_state
.index
)
401 if (!intel_state
.in_scale
++)
402 intel_state
.scale_factor
= 1;
404 ret
= i386_intel_simplify_symbol (e
->X_add_symbol
);
405 if (ret
&& !scale
&& intel_state
.index
)
406 scale
= symbol_get_value_expression (e
->X_op_symbol
);
409 ret
= i386_intel_simplify_symbol (e
->X_op_symbol
);
410 if (ret
&& !scale
&& intel_state
.index
)
411 scale
= symbol_get_value_expression (e
->X_add_symbol
);
413 if (ret
&& scale
&& (scale
+ 1))
415 resolve_expression (scale
);
416 if (scale
->X_op
!= O_constant
417 || intel_state
.index
->reg_type
.bitfield
.reg16
)
418 scale
->X_add_number
= 0;
419 intel_state
.scale_factor
*= scale
->X_add_number
;
422 --intel_state
.in_scale
;
426 if (!intel_state
.in_scale
)
427 switch (intel_state
.scale_factor
)
430 i
.log2_scale_factor
= 0;
433 i
.log2_scale_factor
= 1;
436 i
.log2_scale_factor
= 2;
439 i
.log2_scale_factor
= 3;
442 /* esp is invalid as index */
443 intel_state
.index
= i386_regtab
+ REGNAM_EAX
+ 4;
452 ret
= i386_intel_simplify_register (e
);
455 gas_assert (e
->X_add_number
< (unsigned short) -1);
456 e
->X_md
= (unsigned short) e
->X_add_number
+ 1;
457 e
->X_op
= O_constant
;
464 return i386_intel_simplify_register (e
);
470 && !i386_intel_simplify_symbol (e
->X_add_symbol
))
472 if (e
->X_op
== O_add
|| e
->X_op
== O_subtract
)
474 base
= intel_state
.base
;
475 state_index
= intel_state
.index
;
477 if (!i386_intel_check (the_reg
, base
, state_index
)
479 && !i386_intel_simplify_symbol (e
->X_op_symbol
))
480 || !i386_intel_check (the_reg
,
482 ? base
: intel_state
.base
),
484 ? state_index
: intel_state
.index
)))
489 if (this_operand
>= 0
490 && e
->X_op
== O_symbol
491 && !intel_state
.in_offset
)
493 segT seg
= S_GET_SEGMENT (e
->X_add_symbol
);
495 if (seg
!= absolute_section
496 && seg
!= reg_section
497 && seg
!= expr_section
)
498 intel_state
.is_mem
|= 2 - !intel_state
.in_bracket
;
504 int i386_need_index_operator (void)
506 return intel_syntax
< 0;
510 i386_intel_operand (char *operand_string
, int got_a_float
)
512 char *saved_input_line_pointer
, *buf
;
514 expressionS exp
, *expP
;
518 /* Initialize state structure. */
519 intel_state
.op_modifier
= O_absent
;
520 intel_state
.is_mem
= 0;
521 intel_state
.is_indirect
= 0;
522 intel_state
.has_offset
= 0;
523 intel_state
.base
= NULL
;
524 intel_state
.index
= NULL
;
525 intel_state
.seg
= NULL
;
526 operand_type_set (&intel_state
.reloc_types
, ~0);
527 gas_assert (!intel_state
.in_offset
);
528 gas_assert (!intel_state
.in_bracket
);
529 gas_assert (!intel_state
.in_scale
);
531 saved_input_line_pointer
= input_line_pointer
;
532 input_line_pointer
= buf
= xstrdup (operand_string
);
535 memset (&exp
, 0, sizeof(exp
));
536 exp_seg
= expression (&exp
);
537 ret
= i386_intel_simplify (&exp
);
541 if (!is_end_of_line
[(unsigned char) *input_line_pointer
])
543 as_bad (_("junk `%s' after expression"), input_line_pointer
);
546 else if (exp
.X_op
== O_illegal
|| exp
.X_op
== O_absent
)
548 as_bad (_("invalid expression"));
551 else if (!intel_state
.has_offset
552 && input_line_pointer
> buf
553 && *(input_line_pointer
- 1) == ']')
555 intel_state
.is_mem
|= 1;
556 intel_state
.is_indirect
= 1;
559 input_line_pointer
= saved_input_line_pointer
;
562 gas_assert (!intel_state
.in_offset
);
563 gas_assert (!intel_state
.in_bracket
);
564 gas_assert (!intel_state
.in_scale
);
569 if (intel_state
.op_modifier
!= O_absent
570 && current_templates
->start
->base_opcode
!= 0x8d /* lea */)
572 i
.types
[this_operand
].bitfield
.unspecified
= 0;
574 switch (intel_state
.op_modifier
)
577 i
.types
[this_operand
].bitfield
.byte
= 1;
578 suffix
= BYTE_MNEM_SUFFIX
;
582 i
.types
[this_operand
].bitfield
.word
= 1;
583 if ((current_templates
->start
->name
[0] == 'l'
584 && current_templates
->start
->name
[2] == 's'
585 && current_templates
->start
->name
[3] == 0)
586 || current_templates
->start
->base_opcode
== 0x62 /* bound */)
587 suffix
= BYTE_MNEM_SUFFIX
; /* so it will cause an error */
588 else if (got_a_float
== 2) /* "fi..." */
589 suffix
= SHORT_MNEM_SUFFIX
;
591 suffix
= WORD_MNEM_SUFFIX
;
595 i
.types
[this_operand
].bitfield
.dword
= 1;
596 if ((current_templates
->start
->name
[0] == 'l'
597 && current_templates
->start
->name
[2] == 's'
598 && current_templates
->start
->name
[3] == 0)
599 || current_templates
->start
->base_opcode
== 0x62 /* bound */)
600 suffix
= WORD_MNEM_SUFFIX
;
601 else if (flag_code
== CODE_16BIT
602 && (current_templates
->start
->opcode_modifier
.jump
603 || current_templates
->start
->opcode_modifier
.jumpdword
))
604 suffix
= LONG_DOUBLE_MNEM_SUFFIX
;
605 else if (got_a_float
== 1) /* "f..." */
606 suffix
= SHORT_MNEM_SUFFIX
;
608 suffix
= LONG_MNEM_SUFFIX
;
612 i
.types
[this_operand
].bitfield
.fword
= 1;
613 if (current_templates
->start
->name
[0] == 'l'
614 && current_templates
->start
->name
[2] == 's'
615 && current_templates
->start
->name
[3] == 0)
616 suffix
= LONG_MNEM_SUFFIX
;
617 else if (!got_a_float
)
619 if (flag_code
== CODE_16BIT
)
620 add_prefix (DATA_PREFIX_OPCODE
);
621 suffix
= LONG_DOUBLE_MNEM_SUFFIX
;
624 suffix
= BYTE_MNEM_SUFFIX
; /* so it will cause an error */
628 i
.types
[this_operand
].bitfield
.qword
= 1;
629 if (current_templates
->start
->base_opcode
== 0x62 /* bound */
630 || got_a_float
== 1) /* "f..." */
631 suffix
= LONG_MNEM_SUFFIX
;
633 suffix
= QWORD_MNEM_SUFFIX
;
637 i
.types
[this_operand
].bitfield
.tbyte
= 1;
638 if (got_a_float
== 1)
639 suffix
= LONG_DOUBLE_MNEM_SUFFIX
;
641 suffix
= BYTE_MNEM_SUFFIX
; /* so it will cause an error */
646 i
.types
[this_operand
].bitfield
.xmmword
= 1;
647 suffix
= XMMWORD_MNEM_SUFFIX
;
651 i
.types
[this_operand
].bitfield
.ymmword
= 1;
652 suffix
= YMMWORD_MNEM_SUFFIX
;
656 suffix
= LONG_DOUBLE_MNEM_SUFFIX
;
659 if (!current_templates
->start
->opcode_modifier
.jump
660 && !current_templates
->start
->opcode_modifier
.jumpdword
)
661 suffix
= got_a_float
/* so it will cause an error */
663 : LONG_DOUBLE_MNEM_SUFFIX
;
667 BAD_CASE (intel_state
.op_modifier
);
673 else if (i
.suffix
!= suffix
)
675 as_bad (_("conflicting operand size modifiers"));
680 /* Operands for jump/call need special consideration. */
681 if (current_templates
->start
->opcode_modifier
.jump
682 || current_templates
->start
->opcode_modifier
.jumpdword
683 || current_templates
->start
->opcode_modifier
.jumpintersegment
)
685 if (i
.op
[this_operand
].regs
688 || intel_state
.is_mem
> 1)
689 i
.types
[this_operand
].bitfield
.jumpabsolute
= 1;
691 switch (intel_state
.op_modifier
)
695 i
.types
[this_operand
].bitfield
.jumpabsolute
= 1;
697 intel_state
.is_mem
= 1;
701 if (!intel_state
.seg
)
703 intel_state
.is_mem
= 1;
704 if (intel_state
.op_modifier
== O_absent
)
706 if (intel_state
.is_indirect
== 1)
707 i
.types
[this_operand
].bitfield
.jumpabsolute
= 1;
710 as_bad (_("cannot infer the segment part of the operand"));
713 else if (S_GET_SEGMENT (intel_state
.seg
) == reg_section
)
714 i
.types
[this_operand
].bitfield
.jumpabsolute
= 1;
717 i386_operand_type types
;
719 if (i
.imm_operands
>= MAX_IMMEDIATE_OPERANDS
)
721 as_bad (_("at most %d immediate operands are allowed"),
722 MAX_IMMEDIATE_OPERANDS
);
725 expP
= &im_expressions
[i
.imm_operands
++];
726 memset (expP
, 0, sizeof(*expP
));
727 expP
->X_op
= O_symbol
;
728 expP
->X_add_symbol
= intel_state
.seg
;
729 i
.op
[this_operand
].imms
= expP
;
731 resolve_expression (expP
);
732 operand_type_set (&types
, ~0);
733 if (!i386_finalize_immediate (S_GET_SEGMENT (intel_state
.seg
),
734 expP
, types
, operand_string
))
736 if (i
.operands
< MAX_OPERANDS
)
738 this_operand
= i
.operands
++;
739 i
.types
[this_operand
].bitfield
.unspecified
= 1;
741 if (suffix
== LONG_DOUBLE_MNEM_SUFFIX
)
743 intel_state
.seg
= NULL
;
744 intel_state
.is_mem
= 0;
748 i
.types
[this_operand
].bitfield
.jumpabsolute
= 1;
751 if (i
.types
[this_operand
].bitfield
.jumpabsolute
)
752 intel_state
.is_mem
|= 1;
754 else if (intel_state
.seg
)
755 intel_state
.is_mem
|= 1;
757 if (i
.op
[this_operand
].regs
)
759 i386_operand_type temp
;
761 /* Register operand. */
762 if (intel_state
.base
|| intel_state
.index
|| intel_state
.seg
)
764 as_bad (_("invalid operand"));
768 temp
= i
.op
[this_operand
].regs
->reg_type
;
769 temp
.bitfield
.baseindex
= 0;
770 i
.types
[this_operand
] = operand_type_or (i
.types
[this_operand
],
772 i
.types
[this_operand
].bitfield
.unspecified
= 0;
775 else if (intel_state
.base
778 || intel_state
.is_mem
)
780 /* Memory operand. */
782 >= 2 - !current_templates
->start
->opcode_modifier
.isstring
)
786 call 0x9090,0x90909090
787 lcall 0x9090,0x90909090
788 jmp 0x9090,0x90909090
789 ljmp 0x9090,0x90909090
792 if ((current_templates
->start
->opcode_modifier
.jumpintersegment
793 || current_templates
->start
->opcode_modifier
.jumpdword
794 || current_templates
->start
->opcode_modifier
.jump
)
796 && intel_state
.seg
== NULL
797 && i
.mem_operands
== 1
798 && i
.disp_operands
== 1
799 && intel_state
.op_modifier
== O_absent
)
801 /* Try to process the first operand as immediate, */
803 if (i386_finalize_immediate (exp_seg
, i
.op
[0].imms
,
804 intel_state
.reloc_types
,
808 expP
= &im_expressions
[0];
809 i
.op
[this_operand
].imms
= expP
;
812 /* Try to process the second operand as immediate, */
813 if (i386_finalize_immediate (exp_seg
, expP
,
814 intel_state
.reloc_types
,
820 i
.types
[0].bitfield
.mem
= 0;
821 i
.types
[0].bitfield
.disp16
= 0;
822 i
.types
[0].bitfield
.disp32
= 0;
823 i
.types
[0].bitfield
.disp32s
= 0;
829 as_bad (_("too many memory references for `%s'"),
830 current_templates
->start
->name
);
834 expP
= &disp_expressions
[i
.disp_operands
];
835 memcpy (expP
, &exp
, sizeof(exp
));
836 resolve_expression (expP
);
838 if (expP
->X_op
!= O_constant
839 || expP
->X_add_number
840 || (!intel_state
.base
841 && !intel_state
.index
))
843 i
.op
[this_operand
].disps
= expP
;
846 if (flag_code
== CODE_64BIT
)
848 i
.types
[this_operand
].bitfield
.disp32
= 1;
849 if (!i
.prefix
[ADDR_PREFIX
])
851 i
.types
[this_operand
].bitfield
.disp64
= 1;
852 i
.types
[this_operand
].bitfield
.disp32s
= 1;
855 else if (!i
.prefix
[ADDR_PREFIX
] ^ (flag_code
== CODE_16BIT
))
856 i
.types
[this_operand
].bitfield
.disp32
= 1;
858 i
.types
[this_operand
].bitfield
.disp16
= 1;
860 #if defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT)
862 * exp_seg is used only for verification in
863 * i386_finalize_displacement, and we can end up seeing reg_section
864 * here - but we know we removed all registers from the expression
865 * (or error-ed on any remaining ones) in i386_intel_simplify. I
866 * consider the check in i386_finalize_displacement bogus anyway, in
867 * particular because it doesn't allow for expr_section, so I'd
868 * rather see that check (and the similar one in
869 * i386_finalize_immediate) use SEG_NORMAL(), but not being an a.out
870 * expert I can't really say whether that would have other bad side
873 if (OUTPUT_FLAVOR
== bfd_target_aout_flavour
874 && exp_seg
== reg_section
)
875 exp_seg
= expP
->X_op
!= O_constant
? undefined_section
879 if (!i386_finalize_displacement (exp_seg
, expP
,
880 intel_state
.reloc_types
,
885 if (intel_state
.base
|| intel_state
.index
)
886 i
.types
[this_operand
].bitfield
.baseindex
= 1;
892 expP
= symbol_get_value_expression (intel_state
.seg
);
893 if (expP
->X_op
!= O_full_ptr
)
895 intel_state
.seg
= expP
->X_add_symbol
;
897 if (expP
->X_op
!= O_register
)
899 as_bad (_("segment register name expected"));
902 if (!i386_regtab
[expP
->X_add_number
].reg_type
.bitfield
.sreg2
903 && !i386_regtab
[expP
->X_add_number
].reg_type
.bitfield
.sreg3
)
905 as_bad (_("invalid use of register"));
908 switch (i386_regtab
[expP
->X_add_number
].reg_num
)
910 case 0: i
.seg
[i
.mem_operands
] = &es
; break;
911 case 1: i
.seg
[i
.mem_operands
] = &cs
; break;
912 case 2: i
.seg
[i
.mem_operands
] = &ss
; break;
913 case 3: i
.seg
[i
.mem_operands
] = &ds
; break;
914 case 4: i
.seg
[i
.mem_operands
] = &fs
; break;
915 case 5: i
.seg
[i
.mem_operands
] = &gs
; break;
916 case RegFlat
: i
.seg
[i
.mem_operands
] = NULL
; break;
920 /* Swap base and index in 16-bit memory operands like
921 [si+bx]. Since i386_index_check is also used in AT&T
922 mode we have to do that here. */
925 && intel_state
.base
->reg_type
.bitfield
.reg16
926 && intel_state
.index
->reg_type
.bitfield
.reg16
927 && intel_state
.base
->reg_num
>= 6
928 && intel_state
.index
->reg_num
< 6)
930 i
.base_reg
= intel_state
.index
;
931 i
.index_reg
= intel_state
.base
;
935 i
.base_reg
= intel_state
.base
;
936 i
.index_reg
= intel_state
.index
;
939 if (!i386_index_check (operand_string
))
942 i
.types
[this_operand
].bitfield
.mem
= 1;
948 if (i
.imm_operands
>= MAX_IMMEDIATE_OPERANDS
)
950 as_bad (_("at most %d immediate operands are allowed"),
951 MAX_IMMEDIATE_OPERANDS
);
955 expP
= &im_expressions
[i
.imm_operands
++];
956 i
.op
[this_operand
].imms
= expP
;
959 return i386_finalize_immediate (exp_seg
, expP
, intel_state
.reloc_types
,