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 has_offset
; /* 1 if operand has offset. */
27 unsigned int in_offset
; /* >=1 if processing operand of offset. */
28 unsigned int in_bracket
; /* >=1 if processing operand in brackets. */
29 unsigned int in_scale
; /* >=1 if processing multipication operand
31 i386_operand_type reloc_types
; /* Value obtained from lex_got(). */
32 const reg_entry
*base
; /* Base register (if any). */
33 const reg_entry
*index
; /* Index register (if any). */
34 offsetT scale_factor
; /* Accumulated scale factor. */
39 /* offset X_add_symbol */
40 #define O_offset O_md32
41 /* offset X_add_symbol */
42 #define O_short O_md31
43 /* near ptr X_add_symbol */
44 #define O_near_ptr O_md30
45 /* far ptr X_add_symbol */
46 #define O_far_ptr O_md29
47 /* byte ptr X_add_symbol */
48 #define O_byte_ptr O_md28
49 /* word ptr X_add_symbol */
50 #define O_word_ptr O_md27
51 /* dword ptr X_add_symbol */
52 #define O_dword_ptr O_md26
53 /* qword ptr X_add_symbol */
54 #define O_qword_ptr O_md25
55 /* oword ptr X_add_symbol */
56 #define O_oword_ptr O_md24
57 /* fword ptr X_add_symbol */
58 #define O_fword_ptr O_md23
59 /* tbyte ptr X_add_symbol */
60 #define O_tbyte_ptr O_md22
61 /* xmmword ptr X_add_symbol */
62 #define O_xmmword_ptr O_md21
63 /* ymmword ptr X_add_symbol */
64 #define O_ymmword_ptr O_md20
70 unsigned int operands
;
72 const i386_operators
[] =
74 { "and", O_bit_and
, 2 },
80 { "mod", O_modulus
, 2 },
82 { "not", O_bit_not
, 1 },
83 { "offset", O_offset
, 1 },
84 { "or", O_bit_inclusive_or
, 2 },
85 { "shl", O_left_shift
, 2 },
86 { "short", O_short
, 1 },
87 { "shr", O_right_shift
, 2 },
88 { "xor", O_bit_exclusive_or
, 2 },
89 { NULL
, O_illegal
, 0 }
100 #define I386_TYPE(t, n) { #t, O_##t##_ptr, { n, n, n } }
106 I386_TYPE(tbyte
, 10),
107 I386_TYPE(oword
, 16),
108 I386_TYPE(xmmword
, 16),
109 I386_TYPE(ymmword
, 32),
111 { "near", O_near_ptr
, { 0xff04, 0xff02, 0xff08 } },
112 { "far", O_far_ptr
, { 0xff06, 0xff05, 0xff06 } },
113 { NULL
, O_illegal
, { 0, 0, 0 } }
116 operatorT
i386_operator (const char *name
, unsigned int operands
, char *pc
)
127 switch (*input_line_pointer
)
130 ++input_line_pointer
;
133 ++input_line_pointer
;
136 if (this_operand
>= 0 && i
.reloc
[this_operand
] == NO_RELOC
)
139 char *gotfree_input_line
= lex_got (&i
.reloc
[this_operand
],
141 &intel_state
.reloc_types
);
143 if (!gotfree_input_line
)
145 free (gotfree_input_line
);
146 *input_line_pointer
++ = '+';
147 memset (input_line_pointer
, '0', adjust
- 1);
148 input_line_pointer
[adjust
- 1] = ' ';
156 for (j
= 0; i386_operators
[j
].name
; ++j
)
157 if (strcasecmp (i386_operators
[j
].name
, name
) == 0)
159 if (i386_operators
[j
].operands
160 && i386_operators
[j
].operands
!= operands
)
162 return i386_operators
[j
].op
;
165 for (j
= 0; i386_types
[j
].name
; ++j
)
166 if (strcasecmp (i386_types
[j
].name
, name
) == 0)
168 if (i386_types
[j
].name
&& *pc
== ' ')
170 char *pname
= ++input_line_pointer
;
171 char c
= get_symbol_end ();
173 if (strcasecmp (pname
, "ptr") == 0)
177 if (intel_syntax
> 0 || operands
!= 1)
179 return i386_types
[j
].op
;
182 *input_line_pointer
= c
;
183 input_line_pointer
= pname
- 1;
189 static int i386_intel_parse_name (const char *name
, expressionS
*e
)
193 for (j
= 0; i386_types
[j
].name
; ++j
)
194 if (strcasecmp(i386_types
[j
].name
, name
) == 0)
196 e
->X_op
= O_constant
;
197 e
->X_add_number
= i386_types
[j
].sz
[flag_code
];
198 e
->X_add_symbol
= NULL
;
199 e
->X_op_symbol
= NULL
;
206 static INLINE
int i386_intel_check (const reg_entry
*rreg
,
207 const reg_entry
*base
,
208 const reg_entry
*iindex
)
210 if ((this_operand
>= 0 && rreg
!= i
.op
[this_operand
].regs
)
211 || base
!= intel_state
.base
|| iindex
!= intel_state
.index
)
213 as_bad (_("invalid use of register"));
219 static INLINE
void i386_intel_fold (expressionS
*e
, symbolS
*sym
)
221 if (S_GET_SEGMENT (sym
) == absolute_section
)
223 offsetT val
= e
->X_add_number
;
225 *e
= *symbol_get_value_expression (sym
);
226 e
->X_add_number
+= val
;
230 e
->X_add_symbol
= sym
;
231 e
->X_op_symbol
= NULL
;
236 static int i386_intel_simplify (expressionS
*);
238 static INLINE
int i386_intel_simplify_symbol(symbolS
*sym
)
240 int ret
= i386_intel_simplify (symbol_get_value_expression (sym
));
244 S_SET_SEGMENT(sym
, absolute_section
);
250 static int i386_intel_simplify (expressionS
*e
)
252 const reg_entry
*the_reg
= this_operand
>= 0 ? i
.op
[this_operand
].regs
: NULL
;
253 const reg_entry
*base
= intel_state
.base
;
254 const reg_entry
*state_index
= intel_state
.index
;
265 if (!i386_intel_simplify_symbol (e
->X_add_symbol
)
266 || !i386_intel_check(the_reg
, intel_state
.base
, intel_state
.index
))
269 if (!intel_state
.in_offset
)
270 ++intel_state
.in_bracket
;
271 ret
= i386_intel_simplify_symbol (e
->X_op_symbol
);
272 if (!intel_state
.in_offset
)
273 --intel_state
.in_bracket
;
279 i386_intel_fold (e
, e
->X_op_symbol
);
283 intel_state
.has_offset
= 1;
284 ++intel_state
.in_offset
;
285 ret
= i386_intel_simplify_symbol (e
->X_add_symbol
);
286 --intel_state
.in_offset
;
287 if (!ret
|| !i386_intel_check(the_reg
, base
, state_index
))
289 i386_intel_fold (e
, e
->X_add_symbol
);
303 if (intel_state
.op_modifier
== O_absent
)
304 intel_state
.op_modifier
= e
->X_op
;
307 if (symbol_get_value_expression (e
->X_add_symbol
)->X_op
== O_register
)
309 as_bad (_("invalid use of register"));
312 if (!i386_intel_simplify_symbol (e
->X_add_symbol
))
314 i386_intel_fold (e
, e
->X_add_symbol
);
318 if (symbol_get_value_expression (e
->X_op_symbol
)->X_op
== O_register
)
320 as_bad (_("invalid use of register"));
323 if (!i386_intel_simplify_symbol (e
->X_op_symbol
)
324 || !i386_intel_check(the_reg
, intel_state
.base
, intel_state
.index
))
326 if (!intel_state
.in_offset
)
327 intel_state
.seg
= e
->X_add_symbol
;
328 i386_intel_fold (e
, e
->X_op_symbol
);
332 if (this_operand
< 0 || intel_state
.in_offset
)
334 as_bad (_("invalid use of register"));
337 if (!intel_state
.in_bracket
)
339 if (i
.op
[this_operand
].regs
)
341 as_bad (_("invalid use of register"));
344 if (i386_regtab
[e
->X_add_number
].reg_type
.bitfield
.sreg3
345 && i386_regtab
[e
->X_add_number
].reg_num
== RegFlat
)
347 as_bad (_("invalid use of pseudo-register"));
350 i
.op
[this_operand
].regs
= i386_regtab
+ e
->X_add_number
;
352 else if (!intel_state
.base
&& !intel_state
.in_scale
)
353 intel_state
.base
= i386_regtab
+ e
->X_add_number
;
354 else if (!intel_state
.index
)
355 intel_state
.index
= i386_regtab
+ e
->X_add_number
;
358 /* esp is invalid as index */
359 intel_state
.index
= i386_regtab
+ REGNAM_EAX
+ 4;
361 e
->X_op
= O_constant
;
366 if (this_operand
>= 0 && intel_state
.in_bracket
)
368 expressionS
*scale
= NULL
;
370 if (intel_state
.index
)
373 if (!intel_state
.in_scale
++)
374 intel_state
.scale_factor
= 1;
376 ret
= i386_intel_simplify_symbol (e
->X_add_symbol
);
377 if (ret
&& !scale
&& intel_state
.index
)
378 scale
= symbol_get_value_expression (e
->X_op_symbol
);
381 ret
= i386_intel_simplify_symbol (e
->X_op_symbol
);
382 if (ret
&& !scale
&& intel_state
.index
)
383 scale
= symbol_get_value_expression (e
->X_add_symbol
);
385 if (ret
&& scale
&& (scale
+ 1))
387 resolve_expression (scale
);
388 if (scale
->X_op
!= O_constant
389 || intel_state
.index
->reg_type
.bitfield
.reg16
)
390 scale
->X_add_number
= 0;
391 intel_state
.scale_factor
*= scale
->X_add_number
;
394 --intel_state
.in_scale
;
398 if (!intel_state
.in_scale
)
399 switch (intel_state
.scale_factor
)
402 i
.log2_scale_factor
= 0;
405 i
.log2_scale_factor
= 1;
408 i
.log2_scale_factor
= 2;
411 i
.log2_scale_factor
= 3;
414 /* esp is invalid as index */
415 intel_state
.index
= i386_regtab
+ REGNAM_EAX
+ 4;
423 if (e
->X_add_symbol
&& !i386_intel_simplify_symbol (e
->X_add_symbol
))
425 if (e
->X_op
== O_add
|| e
->X_op
== O_subtract
)
427 base
= intel_state
.base
;
428 state_index
= intel_state
.index
;
430 if (!i386_intel_check (the_reg
, base
, state_index
)
431 || (e
->X_op_symbol
&& !i386_intel_simplify_symbol (e
->X_op_symbol
))
432 || !i386_intel_check (the_reg
,
433 e
->X_op
!= O_add
? base
: intel_state
.base
,
434 e
->X_op
!= O_add
? state_index
: intel_state
.index
))
439 if (this_operand
>= 0 && e
->X_op
== O_symbol
&& !intel_state
.in_offset
)
441 segT seg
= S_GET_SEGMENT (e
->X_add_symbol
);
443 if (seg
!= absolute_section
444 && seg
!= reg_section
445 && seg
!= expr_section
)
446 intel_state
.is_mem
|= 2 - !intel_state
.in_bracket
;
452 int i386_need_index_operator (void)
454 return intel_syntax
< 0;
458 i386_intel_operand (char *operand_string
, int got_a_float
)
460 char *saved_input_line_pointer
, *buf
;
462 expressionS exp
, *expP
;
466 /* Initialize state structure. */
467 intel_state
.op_modifier
= O_absent
;
468 intel_state
.is_mem
= 0;
469 intel_state
.has_offset
= 0;
470 intel_state
.base
= NULL
;
471 intel_state
.index
= NULL
;
472 intel_state
.seg
= NULL
;
473 operand_type_set (&intel_state
.reloc_types
, ~0);
474 gas_assert (!intel_state
.in_offset
);
475 gas_assert (!intel_state
.in_bracket
);
476 gas_assert (!intel_state
.in_scale
);
478 saved_input_line_pointer
= input_line_pointer
;
479 input_line_pointer
= buf
= xstrdup (operand_string
);
481 /* A '$' followed by an identifier char is an identifier. Otherwise,
482 it's operator '.' followed by an expression. */
483 if (*buf
== '$' && !is_identifier_char (buf
[1]))
487 memset (&exp
, 0, sizeof(exp
));
488 exp_seg
= expression (&exp
);
489 ret
= i386_intel_simplify (&exp
);
493 if (!is_end_of_line
[(unsigned char) *input_line_pointer
])
495 as_bad (_("junk `%s' after expression"), input_line_pointer
);
498 else if (exp
.X_op
== O_illegal
|| exp
.X_op
== O_absent
)
500 as_bad (_("invalid expression"));
503 else if (!intel_state
.has_offset
504 && input_line_pointer
> buf
505 && *(input_line_pointer
- 1) == ']')
506 intel_state
.is_mem
|= 1;
508 input_line_pointer
= saved_input_line_pointer
;
511 gas_assert (!intel_state
.in_offset
);
512 gas_assert (!intel_state
.in_bracket
);
513 gas_assert (!intel_state
.in_scale
);
518 if (intel_state
.op_modifier
!= O_absent
519 && current_templates
->start
->base_opcode
!= 0x8d /* lea */)
521 i
.types
[this_operand
].bitfield
.unspecified
= 0;
523 switch (intel_state
.op_modifier
)
526 i
.types
[this_operand
].bitfield
.byte
= 1;
527 suffix
= BYTE_MNEM_SUFFIX
;
531 i
.types
[this_operand
].bitfield
.word
= 1;
532 if ((current_templates
->start
->name
[0] == 'l'
533 && current_templates
->start
->name
[2] == 's'
534 && current_templates
->start
->name
[3] == 0)
535 || current_templates
->start
->base_opcode
== 0x62 /* bound */)
536 suffix
= BYTE_MNEM_SUFFIX
; /* so it will cause an error */
537 else if (got_a_float
== 2) /* "fi..." */
538 suffix
= SHORT_MNEM_SUFFIX
;
540 suffix
= WORD_MNEM_SUFFIX
;
544 i
.types
[this_operand
].bitfield
.dword
= 1;
545 if ((current_templates
->start
->name
[0] == 'l'
546 && current_templates
->start
->name
[2] == 's'
547 && current_templates
->start
->name
[3] == 0)
548 || current_templates
->start
->base_opcode
== 0x62 /* bound */)
549 suffix
= WORD_MNEM_SUFFIX
;
550 else if (flag_code
== CODE_16BIT
551 && (current_templates
->start
->opcode_modifier
.jump
552 || current_templates
->start
->opcode_modifier
.jumpdword
))
553 suffix
= LONG_DOUBLE_MNEM_SUFFIX
;
554 else if (got_a_float
== 1) /* "f..." */
555 suffix
= SHORT_MNEM_SUFFIX
;
557 suffix
= LONG_MNEM_SUFFIX
;
561 i
.types
[this_operand
].bitfield
.fword
= 1;
562 if (current_templates
->start
->name
[0] == 'l'
563 && current_templates
->start
->name
[2] == 's'
564 && current_templates
->start
->name
[3] == 0)
565 suffix
= LONG_MNEM_SUFFIX
;
566 else if (!got_a_float
)
568 if (flag_code
== CODE_16BIT
)
569 add_prefix (DATA_PREFIX_OPCODE
);
570 suffix
= LONG_DOUBLE_MNEM_SUFFIX
;
573 suffix
= BYTE_MNEM_SUFFIX
; /* so it will cause an error */
577 i
.types
[this_operand
].bitfield
.qword
= 1;
578 if (current_templates
->start
->base_opcode
== 0x62 /* bound */
579 || got_a_float
== 1) /* "f..." */
580 suffix
= LONG_MNEM_SUFFIX
;
582 suffix
= QWORD_MNEM_SUFFIX
;
586 i
.types
[this_operand
].bitfield
.tbyte
= 1;
587 if (got_a_float
== 1)
588 suffix
= LONG_DOUBLE_MNEM_SUFFIX
;
590 suffix
= BYTE_MNEM_SUFFIX
; /* so it will cause an error */
595 i
.types
[this_operand
].bitfield
.xmmword
= 1;
596 suffix
= XMMWORD_MNEM_SUFFIX
;
600 i
.types
[this_operand
].bitfield
.ymmword
= 1;
601 suffix
= YMMWORD_MNEM_SUFFIX
;
605 suffix
= LONG_DOUBLE_MNEM_SUFFIX
;
608 if (!current_templates
->start
->opcode_modifier
.jump
609 && !current_templates
->start
->opcode_modifier
.jumpdword
)
610 suffix
= got_a_float
/* so it will cause an error */
612 : LONG_DOUBLE_MNEM_SUFFIX
;
616 BAD_CASE (intel_state
.op_modifier
);
622 else if (i
.suffix
!= suffix
)
624 as_bad (_("conflicting operand size modifiers"));
629 /* Operands for jump/call need special consideration. */
630 if (current_templates
->start
->opcode_modifier
.jump
631 || current_templates
->start
->opcode_modifier
.jumpdword
632 || current_templates
->start
->opcode_modifier
.jumpintersegment
)
634 if (i
.op
[this_operand
].regs
|| intel_state
.base
|| intel_state
.index
635 || intel_state
.is_mem
> 1)
636 i
.types
[this_operand
].bitfield
.jumpabsolute
= 1;
638 switch (intel_state
.op_modifier
)
642 i
.types
[this_operand
].bitfield
.jumpabsolute
= 1;
644 intel_state
.is_mem
= 1;
648 if (!intel_state
.seg
)
650 intel_state
.is_mem
= 1;
651 if (intel_state
.op_modifier
== O_absent
)
653 as_bad (_("cannot infer the segment part of the operand"));
656 else if (S_GET_SEGMENT (intel_state
.seg
) == reg_section
)
657 i
.types
[this_operand
].bitfield
.jumpabsolute
= 1;
660 i386_operand_type types
;
662 if (i
.imm_operands
>= MAX_IMMEDIATE_OPERANDS
)
664 as_bad (_("at most %d immediate operands are allowed"),
665 MAX_IMMEDIATE_OPERANDS
);
668 expP
= &im_expressions
[i
.imm_operands
++];
669 memset (expP
, 0, sizeof(*expP
));
670 expP
->X_op
= O_symbol
;
671 expP
->X_add_symbol
= intel_state
.seg
;
672 i
.op
[this_operand
].imms
= expP
;
674 resolve_expression (expP
);
675 operand_type_set (&types
, ~0);
676 if (!i386_finalize_immediate (S_GET_SEGMENT (intel_state
.seg
),
677 expP
, types
, operand_string
))
679 if (i
.operands
< MAX_OPERANDS
)
681 this_operand
= i
.operands
++;
682 i
.types
[this_operand
].bitfield
.unspecified
= 1;
684 if (suffix
== LONG_DOUBLE_MNEM_SUFFIX
)
686 intel_state
.seg
= NULL
;
687 intel_state
.is_mem
= 0;
691 i
.types
[this_operand
].bitfield
.jumpabsolute
= 1;
694 if (i
.types
[this_operand
].bitfield
.jumpabsolute
)
695 intel_state
.is_mem
|= 1;
697 else if (intel_state
.seg
)
698 intel_state
.is_mem
|= 1;
700 if (i
.op
[this_operand
].regs
)
702 i386_operand_type temp
;
704 /* Register operand. */
705 if (intel_state
.base
|| intel_state
.index
|| intel_state
.seg
)
707 as_bad (_("invalid operand"));
711 temp
= i
.op
[this_operand
].regs
->reg_type
;
712 temp
.bitfield
.baseindex
= 0;
713 i
.types
[this_operand
] = operand_type_or (i
.types
[this_operand
], temp
);
714 i
.types
[this_operand
].bitfield
.unspecified
= 0;
717 else if (intel_state
.base
|| intel_state
.index
|| intel_state
.seg
718 || intel_state
.is_mem
)
720 /* Memory operand. */
722 >= 2 - !current_templates
->start
->opcode_modifier
.isstring
)
726 call 0x9090,0x90909090
727 lcall 0x9090,0x90909090
728 jmp 0x9090,0x90909090
729 ljmp 0x9090,0x90909090
732 if ((current_templates
->start
->opcode_modifier
.jumpintersegment
733 || current_templates
->start
->opcode_modifier
.jumpdword
734 || current_templates
->start
->opcode_modifier
.jump
)
736 && intel_state
.seg
== NULL
737 && i
.mem_operands
== 1
738 && i
.disp_operands
== 1
739 && intel_state
.op_modifier
== O_absent
)
741 /* Try to process the first operand as immediate, */
743 if (i386_finalize_immediate (exp_seg
, i
.op
[0].imms
,
744 intel_state
.reloc_types
,
748 expP
= &im_expressions
[0];
749 i
.op
[this_operand
].imms
= expP
;
752 /* Try to process the second operand as immediate, */
753 if (i386_finalize_immediate (exp_seg
, expP
,
754 intel_state
.reloc_types
,
760 i
.types
[0].bitfield
.mem
= 0;
761 i
.types
[0].bitfield
.disp16
= 0;
762 i
.types
[0].bitfield
.disp32
= 0;
763 i
.types
[0].bitfield
.disp32s
= 0;
769 as_bad (_("too many memory references for `%s'"),
770 current_templates
->start
->name
);
774 expP
= &disp_expressions
[i
.disp_operands
];
775 memcpy (expP
, &exp
, sizeof(exp
));
776 resolve_expression (expP
);
778 if (expP
->X_op
!= O_constant
|| expP
->X_add_number
779 || (!intel_state
.base
&& !intel_state
.index
))
781 i
.op
[this_operand
].disps
= expP
;
784 if (flag_code
== CODE_64BIT
)
786 i
.types
[this_operand
].bitfield
.disp32
= 1;
787 if (!i
.prefix
[ADDR_PREFIX
])
789 i
.types
[this_operand
].bitfield
.disp64
= 1;
790 i
.types
[this_operand
].bitfield
.disp32s
= 1;
793 else if (!i
.prefix
[ADDR_PREFIX
] ^ (flag_code
== CODE_16BIT
))
794 i
.types
[this_operand
].bitfield
.disp32
= 1;
796 i
.types
[this_operand
].bitfield
.disp16
= 1;
798 #if defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT)
800 * exp_seg is used only for verification in
801 * i386_finalize_displacement, and we can end up seeing reg_section
802 * here - but we know we removed all registers from the expression
803 * (or error-ed on any remaining ones) in i386_intel_simplify. I
804 * consider the check in i386_finalize_displacement bogus anyway, in
805 * particular because it doesn't allow for expr_section, so I'd
806 * rather see that check (and the similar one in
807 * i386_finalize_immediate) use SEG_NORMAL(), but not being an a.out
808 * expert I can't really say whether that would have other bad side
811 if (OUTPUT_FLAVOR
== bfd_target_aout_flavour
812 && exp_seg
== reg_section
)
813 exp_seg
= expP
->X_op
!= O_constant
? undefined_section
817 if (!i386_finalize_displacement (exp_seg
, expP
,
818 intel_state
.reloc_types
,
823 if (intel_state
.base
|| intel_state
.index
)
824 i
.types
[this_operand
].bitfield
.baseindex
= 1;
830 expP
= symbol_get_value_expression (intel_state
.seg
);
831 if (expP
->X_op
!= O_full_ptr
)
833 intel_state
.seg
= expP
->X_add_symbol
;
835 if (expP
->X_op
!= O_register
)
837 as_bad (_("segment register name expected"));
840 if (!i386_regtab
[expP
->X_add_number
].reg_type
.bitfield
.sreg2
841 && !i386_regtab
[expP
->X_add_number
].reg_type
.bitfield
.sreg3
)
843 as_bad (_("invalid use of register"));
846 switch (i386_regtab
[expP
->X_add_number
].reg_num
)
848 case 0: i
.seg
[i
.mem_operands
] = &es
; break;
849 case 1: i
.seg
[i
.mem_operands
] = &cs
; break;
850 case 2: i
.seg
[i
.mem_operands
] = &ss
; break;
851 case 3: i
.seg
[i
.mem_operands
] = &ds
; break;
852 case 4: i
.seg
[i
.mem_operands
] = &fs
; break;
853 case 5: i
.seg
[i
.mem_operands
] = &gs
; break;
854 case RegFlat
: i
.seg
[i
.mem_operands
] = NULL
; break;
858 /* Swap base and index in 16-bit memory operands like
859 [si+bx]. Since i386_index_check is also used in AT&T
860 mode we have to do that here. */
863 && intel_state
.base
->reg_type
.bitfield
.reg16
864 && intel_state
.index
->reg_type
.bitfield
.reg16
865 && intel_state
.base
->reg_num
>= 6
866 && intel_state
.index
->reg_num
< 6)
868 i
.base_reg
= intel_state
.index
;
869 i
.index_reg
= intel_state
.base
;
873 i
.base_reg
= intel_state
.base
;
874 i
.index_reg
= intel_state
.index
;
877 if (!i386_index_check (operand_string
))
880 i
.types
[this_operand
].bitfield
.mem
= 1;
886 if (i
.imm_operands
>= MAX_IMMEDIATE_OPERANDS
)
888 as_bad (_("at most %d immediate operands are allowed"),
889 MAX_IMMEDIATE_OPERANDS
);
893 expP
= &im_expressions
[i
.imm_operands
++];
894 i
.op
[this_operand
].imms
= expP
;
897 return i386_finalize_immediate (exp_seg
, expP
, intel_state
.reloc_types
,