1 /* tc-i386.c -- Assemble Intel syntax code for ix86/x86-64
2 Copyright (C) 2009-2016 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
23 operatorT op_modifier; /* Operand modifier. */
24 int is_mem; /* 1 if operand is memory reference. */
25 int is_indirect; /* 1 if operand is indirect 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
65 /* zmmword ptr X_add_symbol */
66 #define O_zmmword_ptr O_md19
72 unsigned int operands;
74 const i386_operators[] =
76 { "and", O_bit_and, 2 },
82 { "mod", O_modulus, 2 },
84 { "not", O_bit_not, 1 },
85 { "offset", O_offset, 1 },
86 { "or", O_bit_inclusive_or, 2 },
87 { "shl", O_left_shift, 2 },
88 { "short", O_short, 1 },
89 { "shr", O_right_shift, 2 },
90 { "xor", O_bit_exclusive_or, 2 },
91 { NULL, O_illegal, 0 }
102 #define I386_TYPE(t, n) { #t, O_##t##_ptr, { n, n, n } }
108 I386_TYPE(tbyte, 10),
109 I386_TYPE(oword, 16),
110 I386_TYPE(xmmword, 16),
111 I386_TYPE(ymmword, 32),
112 I386_TYPE(zmmword, 64),
114 { "near", O_near_ptr, { 0xff04, 0xff02, 0xff08 } },
115 { "far", O_far_ptr, { 0xff06, 0xff05, 0xff06 } },
116 { NULL, O_illegal, { 0, 0, 0 } }
119 operatorT i386_operator (const char *name, unsigned int operands, char *pc)
130 switch (*input_line_pointer)
133 ++input_line_pointer;
136 ++input_line_pointer;
139 if (this_operand >= 0 && i.reloc[this_operand] == NO_RELOC)
142 char *gotfree_input_line = lex_got (&i.reloc[this_operand],
144 &intel_state.reloc_types);
146 if (!gotfree_input_line)
148 free (gotfree_input_line);
149 *input_line_pointer++ = '+';
150 memset (input_line_pointer, '0', adjust - 1);
151 input_line_pointer[adjust - 1] = ' ';
159 for (j = 0; i386_operators[j].name; ++j)
160 if (strcasecmp (i386_operators[j].name, name) == 0)
162 if (i386_operators[j].operands
163 && i386_operators[j].operands != operands)
165 return i386_operators[j].op;
168 for (j = 0; i386_types[j].name; ++j)
169 if (strcasecmp (i386_types[j].name, name) == 0)
172 if (i386_types[j].name && *pc == ' ')
177 ++input_line_pointer;
178 c = get_symbol_name (&pname);
180 if (strcasecmp (pname, "ptr") == 0)
182 /* FIXME: What if c == '"' ? */
185 if (intel_syntax > 0 || operands != 1)
187 return i386_types[j].op;
190 (void) restore_line_pointer (c);
191 input_line_pointer = pname - 1;
197 static int i386_intel_parse_name (const char *name, expressionS *e)
201 if (! strcmp (name, "$"))
203 current_location (e);
207 for (j = 0; i386_types[j].name; ++j)
208 if (strcasecmp(i386_types[j].name, name) == 0)
210 e->X_op = O_constant;
211 e->X_add_number = i386_types[j].sz[flag_code];
212 e->X_add_symbol = NULL;
213 e->X_op_symbol = NULL;
220 static INLINE int i386_intel_check (const reg_entry *rreg,
221 const reg_entry *base,
222 const reg_entry *iindex)
224 if ((this_operand >= 0
225 && rreg != i.op[this_operand].regs)
226 || base != intel_state.base
227 || iindex != intel_state.index)
229 as_bad (_("invalid use of register"));
235 static INLINE void i386_intel_fold (expressionS *e, symbolS *sym)
237 expressionS *exp = symbol_get_value_expression (sym);
238 if (S_GET_SEGMENT (sym) == absolute_section)
240 offsetT val = e->X_add_number;
243 e->X_add_number += val;
247 if (exp->X_op == O_symbol
248 && strcmp (S_GET_NAME (exp->X_add_symbol),
249 GLOBAL_OFFSET_TABLE_NAME) == 0)
250 sym = exp->X_add_symbol;
251 e->X_add_symbol = sym;
252 e->X_op_symbol = NULL;
258 i386_intel_simplify_register (expressionS *e)
262 if (this_operand < 0 || intel_state.in_offset)
264 as_bad (_("invalid use of register"));
268 if (e->X_op == O_register)
269 reg_num = e->X_add_number;
271 reg_num = e->X_md - 1;
273 if (!intel_state.in_bracket)
275 if (i.op[this_operand].regs)
277 as_bad (_("invalid use of register"));
280 if (i386_regtab[reg_num].reg_type.bitfield.sreg3
281 && i386_regtab[reg_num].reg_num == RegFlat)
283 as_bad (_("invalid use of pseudo-register"));
286 i.op[this_operand].regs = i386_regtab + reg_num;
288 else if (!intel_state.index
289 && (i386_regtab[reg_num].reg_type.bitfield.regxmm
290 || i386_regtab[reg_num].reg_type.bitfield.regymm
291 || i386_regtab[reg_num].reg_type.bitfield.regzmm))
292 intel_state.index = i386_regtab + reg_num;
293 else if (!intel_state.base && !intel_state.in_scale)
294 intel_state.base = i386_regtab + reg_num;
295 else if (!intel_state.index)
297 if (intel_state.in_scale
298 || current_templates->start->base_opcode == 0xf30f1b /* bndmk */
299 || (current_templates->start->base_opcode & ~1) == 0x0f1a /* bnd{ld,st}x */
300 || i386_regtab[reg_num].reg_type.bitfield.baseindex)
301 intel_state.index = i386_regtab + reg_num;
304 /* Convert base to index and make ESP/RSP the base. */
305 intel_state.index = intel_state.base;
306 intel_state.base = i386_regtab + reg_num;
311 /* esp is invalid as index */
312 intel_state.index = i386_regtab + REGNAM_EAX + ESP_REG_NUM;
317 static int i386_intel_simplify (expressionS *);
319 static INLINE int i386_intel_simplify_symbol(symbolS *sym)
321 int ret = i386_intel_simplify (symbol_get_value_expression (sym));
325 S_SET_SEGMENT(sym, absolute_section);
331 static int i386_intel_simplify (expressionS *e)
333 const reg_entry *the_reg = (this_operand >= 0
334 ? i.op[this_operand].regs : NULL);
335 const reg_entry *base = intel_state.base;
336 const reg_entry *state_index = intel_state.index;
347 if (!i386_intel_simplify_symbol (e->X_add_symbol)
348 || !i386_intel_check(the_reg, intel_state.base,
352 if (!intel_state.in_offset)
353 ++intel_state.in_bracket;
354 ret = i386_intel_simplify_symbol (e->X_op_symbol);
355 if (!intel_state.in_offset)
356 --intel_state.in_bracket;
362 i386_intel_fold (e, e->X_op_symbol);
366 intel_state.has_offset = 1;
367 ++intel_state.in_offset;
368 ret = i386_intel_simplify_symbol (e->X_add_symbol);
369 --intel_state.in_offset;
370 if (!ret || !i386_intel_check(the_reg, base, state_index))
372 i386_intel_fold (e, e->X_add_symbol);
387 if (intel_state.op_modifier == O_absent)
388 intel_state.op_modifier = e->X_op;
391 if (symbol_get_value_expression (e->X_add_symbol)->X_op
394 as_bad (_("invalid use of register"));
397 if (!i386_intel_simplify_symbol (e->X_add_symbol))
399 i386_intel_fold (e, e->X_add_symbol);
403 if (symbol_get_value_expression (e->X_op_symbol)->X_op
406 as_bad (_("invalid use of register"));
409 if (!i386_intel_simplify_symbol (e->X_op_symbol)
410 || !i386_intel_check(the_reg, intel_state.base,
413 if (!intel_state.in_offset)
414 intel_state.seg = e->X_add_symbol;
415 i386_intel_fold (e, e->X_op_symbol);
419 if (this_operand >= 0 && intel_state.in_bracket)
421 expressionS *scale = NULL;
422 int has_index = (intel_state.index != NULL);
424 if (!intel_state.in_scale++)
425 intel_state.scale_factor = 1;
427 ret = i386_intel_simplify_symbol (e->X_add_symbol);
428 if (ret && !has_index && intel_state.index)
429 scale = symbol_get_value_expression (e->X_op_symbol);
432 ret = i386_intel_simplify_symbol (e->X_op_symbol);
433 if (ret && !scale && !has_index && intel_state.index)
434 scale = symbol_get_value_expression (e->X_add_symbol);
438 resolve_expression (scale);
439 if (scale->X_op != O_constant
440 || intel_state.index->reg_type.bitfield.reg16)
441 scale->X_add_number = 0;
442 intel_state.scale_factor *= scale->X_add_number;
445 --intel_state.in_scale;
449 if (!intel_state.in_scale)
450 switch (intel_state.scale_factor)
453 i.log2_scale_factor = 0;
456 i.log2_scale_factor = 1;
459 i.log2_scale_factor = 2;
462 i.log2_scale_factor = 3;
465 /* esp is invalid as index */
466 intel_state.index = i386_regtab + REGNAM_EAX + ESP_REG_NUM;
475 ret = i386_intel_simplify_register (e);
478 gas_assert (e->X_add_number < (unsigned short) -1);
479 e->X_md = (unsigned short) e->X_add_number + 1;
480 e->X_op = O_constant;
487 return i386_intel_simplify_register (e);
493 && !i386_intel_simplify_symbol (e->X_add_symbol))
495 if (e->X_op == O_add || e->X_op == O_subtract)
497 base = intel_state.base;
498 state_index = intel_state.index;
500 if (!i386_intel_check (the_reg, base, state_index)
502 && !i386_intel_simplify_symbol (e->X_op_symbol))
503 || !i386_intel_check (the_reg,
505 ? base : intel_state.base),
507 ? state_index : intel_state.index)))
512 if (this_operand >= 0
513 && e->X_op == O_symbol
514 && !intel_state.in_offset)
516 segT seg = S_GET_SEGMENT (e->X_add_symbol);
518 if (seg != absolute_section
519 && seg != reg_section
520 && seg != expr_section)
521 intel_state.is_mem |= 2 - !intel_state.in_bracket;
527 int i386_need_index_operator (void)
529 return intel_syntax < 0;
533 i386_intel_operand (char *operand_string, int got_a_float)
535 char *saved_input_line_pointer, *buf;
537 expressionS exp, *expP;
541 /* Handle vector immediates. */
542 if (RC_SAE_immediate (operand_string))
545 /* Initialize state structure. */
546 intel_state.op_modifier = O_absent;
547 intel_state.is_mem = 0;
548 intel_state.is_indirect = 0;
549 intel_state.has_offset = 0;
550 intel_state.base = NULL;
551 intel_state.index = NULL;
552 intel_state.seg = NULL;
553 operand_type_set (&intel_state.reloc_types, ~0);
554 gas_assert (!intel_state.in_offset);
555 gas_assert (!intel_state.in_bracket);
556 gas_assert (!intel_state.in_scale);
558 saved_input_line_pointer = input_line_pointer;
559 input_line_pointer = buf = xstrdup (operand_string);
562 memset (&exp, 0, sizeof(exp));
563 exp_seg = expression (&exp);
564 ret = i386_intel_simplify (&exp);
569 /* Handle vector operations. */
570 if (*input_line_pointer == '{')
572 char *end = check_VecOperations (input_line_pointer, NULL);
574 input_line_pointer = end;
579 if (!is_end_of_line[(unsigned char) *input_line_pointer])
581 as_bad (_("junk `%s' after expression"), input_line_pointer);
584 else if (exp.X_op == O_illegal || exp.X_op == O_absent)
586 as_bad (_("invalid expression"));
589 else if (!intel_state.has_offset
590 && input_line_pointer > buf
591 && *(input_line_pointer - 1) == ']')
593 intel_state.is_mem |= 1;
594 intel_state.is_indirect = 1;
597 input_line_pointer = saved_input_line_pointer;
600 gas_assert (!intel_state.in_offset);
601 gas_assert (!intel_state.in_bracket);
602 gas_assert (!intel_state.in_scale);
607 if (intel_state.op_modifier != O_absent
608 && current_templates->start->base_opcode != 0x8d /* lea */)
610 i.types[this_operand].bitfield.unspecified = 0;
612 switch (intel_state.op_modifier)
615 i.types[this_operand].bitfield.byte = 1;
616 suffix = BYTE_MNEM_SUFFIX;
620 i.types[this_operand].bitfield.word = 1;
621 if ((current_templates->start->name[0] == 'l'
622 && current_templates->start->name[2] == 's'
623 && current_templates->start->name[3] == 0)
624 || current_templates->start->base_opcode == 0x62 /* bound */)
625 suffix = BYTE_MNEM_SUFFIX; /* so it will cause an error */
626 else if (got_a_float == 2) /* "fi..." */
627 suffix = SHORT_MNEM_SUFFIX;
629 suffix = WORD_MNEM_SUFFIX;
633 i.types[this_operand].bitfield.dword = 1;
634 if ((current_templates->start->name[0] == 'l'
635 && current_templates->start->name[2] == 's'
636 && current_templates->start->name[3] == 0)
637 || current_templates->start->base_opcode == 0x62 /* bound */)
638 suffix = WORD_MNEM_SUFFIX;
639 else if (flag_code == CODE_16BIT
640 && (current_templates->start->opcode_modifier.jump
641 || current_templates->start->opcode_modifier.jumpdword))
642 suffix = LONG_DOUBLE_MNEM_SUFFIX;
643 else if (got_a_float == 1) /* "f..." */
644 suffix = SHORT_MNEM_SUFFIX;
646 suffix = LONG_MNEM_SUFFIX;
650 i.types[this_operand].bitfield.fword = 1;
651 if (current_templates->start->name[0] == 'l'
652 && current_templates->start->name[2] == 's'
653 && current_templates->start->name[3] == 0)
654 suffix = LONG_MNEM_SUFFIX;
655 else if (!got_a_float)
657 if (flag_code == CODE_16BIT)
658 add_prefix (DATA_PREFIX_OPCODE);
659 suffix = LONG_DOUBLE_MNEM_SUFFIX;
662 suffix = BYTE_MNEM_SUFFIX; /* so it will cause an error */
666 i.types[this_operand].bitfield.qword = 1;
667 if (current_templates->start->base_opcode == 0x62 /* bound */
668 || got_a_float == 1) /* "f..." */
669 suffix = LONG_MNEM_SUFFIX;
671 suffix = QWORD_MNEM_SUFFIX;
675 i.types[this_operand].bitfield.tbyte = 1;
676 if (got_a_float == 1)
677 suffix = LONG_DOUBLE_MNEM_SUFFIX;
679 suffix = BYTE_MNEM_SUFFIX; /* so it will cause an error */
684 i.types[this_operand].bitfield.xmmword = 1;
685 suffix = XMMWORD_MNEM_SUFFIX;
689 i.types[this_operand].bitfield.ymmword = 1;
690 suffix = YMMWORD_MNEM_SUFFIX;
694 i.types[this_operand].bitfield.zmmword = 1;
695 suffix = ZMMWORD_MNEM_SUFFIX;
699 suffix = LONG_DOUBLE_MNEM_SUFFIX;
702 if (!current_templates->start->opcode_modifier.jump
703 && !current_templates->start->opcode_modifier.jumpdword)
704 suffix = got_a_float /* so it will cause an error */
706 : LONG_DOUBLE_MNEM_SUFFIX;
710 BAD_CASE (intel_state.op_modifier);
716 else if (i.suffix != suffix)
718 as_bad (_("conflicting operand size modifiers"));
723 /* Operands for jump/call need special consideration. */
724 if (current_templates->start->opcode_modifier.jump
725 || current_templates->start->opcode_modifier.jumpdword
726 || current_templates->start->opcode_modifier.jumpintersegment)
728 if (i.op[this_operand].regs
731 || intel_state.is_mem > 1)
732 i.types[this_operand].bitfield.jumpabsolute = 1;
734 switch (intel_state.op_modifier)
738 i.types[this_operand].bitfield.jumpabsolute = 1;
740 intel_state.is_mem = 1;
744 if (!intel_state.seg)
746 intel_state.is_mem = 1;
747 if (intel_state.op_modifier == O_absent)
749 if (intel_state.is_indirect == 1)
750 i.types[this_operand].bitfield.jumpabsolute = 1;
753 as_bad (_("cannot infer the segment part of the operand"));
756 else if (S_GET_SEGMENT (intel_state.seg) == reg_section)
757 i.types[this_operand].bitfield.jumpabsolute = 1;
760 i386_operand_type types;
762 if (i.imm_operands >= MAX_IMMEDIATE_OPERANDS)
764 as_bad (_("at most %d immediate operands are allowed"),
765 MAX_IMMEDIATE_OPERANDS);
768 expP = &im_expressions[i.imm_operands++];
769 memset (expP, 0, sizeof(*expP));
770 expP->X_op = O_symbol;
771 expP->X_add_symbol = intel_state.seg;
772 i.op[this_operand].imms = expP;
774 resolve_expression (expP);
775 operand_type_set (&types, ~0);
776 if (!i386_finalize_immediate (S_GET_SEGMENT (intel_state.seg),
777 expP, types, operand_string))
779 if (i.operands < MAX_OPERANDS)
781 this_operand = i.operands++;
782 i.types[this_operand].bitfield.unspecified = 1;
784 if (suffix == LONG_DOUBLE_MNEM_SUFFIX)
786 intel_state.seg = NULL;
787 intel_state.is_mem = 0;
791 i.types[this_operand].bitfield.jumpabsolute = 1;
794 if (i.types[this_operand].bitfield.jumpabsolute)
795 intel_state.is_mem |= 1;
797 else if (intel_state.seg)
798 intel_state.is_mem |= 1;
800 if (i.op[this_operand].regs)
802 i386_operand_type temp;
804 /* Register operand. */
805 if (intel_state.base || intel_state.index || intel_state.seg)
807 as_bad (_("invalid operand"));
811 temp = i.op[this_operand].regs->reg_type;
812 temp.bitfield.baseindex = 0;
813 i.types[this_operand] = operand_type_or (i.types[this_operand],
815 i.types[this_operand].bitfield.unspecified = 0;
818 else if (intel_state.base
821 || intel_state.is_mem)
823 /* Memory operand. */
824 if ((int) i.mem_operands
825 >= 2 - !current_templates->start->opcode_modifier.isstring)
829 call 0x9090,0x90909090
830 lcall 0x9090,0x90909090
831 jmp 0x9090,0x90909090
832 ljmp 0x9090,0x90909090
835 if ((current_templates->start->opcode_modifier.jumpintersegment
836 || current_templates->start->opcode_modifier.jumpdword
837 || current_templates->start->opcode_modifier.jump)
839 && intel_state.seg == NULL
840 && i.mem_operands == 1
841 && i.disp_operands == 1
842 && intel_state.op_modifier == O_absent)
844 /* Try to process the first operand as immediate, */
846 if (i386_finalize_immediate (exp_seg, i.op[0].imms,
847 intel_state.reloc_types,
851 expP = &im_expressions[0];
852 i.op[this_operand].imms = expP;
855 /* Try to process the second operand as immediate, */
856 if (i386_finalize_immediate (exp_seg, expP,
857 intel_state.reloc_types,
863 i.types[0].bitfield.mem = 0;
864 i.types[0].bitfield.disp16 = 0;
865 i.types[0].bitfield.disp32 = 0;
866 i.types[0].bitfield.disp32s = 0;
872 as_bad (_("too many memory references for `%s'"),
873 current_templates->start->name);
877 expP = &disp_expressions[i.disp_operands];
878 memcpy (expP, &exp, sizeof(exp));
879 resolve_expression (expP);
881 if (expP->X_op != O_constant
882 || expP->X_add_number
883 || (!intel_state.base
884 && !intel_state.index))
886 i.op[this_operand].disps = expP;
889 if (flag_code == CODE_64BIT)
891 i.types[this_operand].bitfield.disp32 = 1;
892 if (!i.prefix[ADDR_PREFIX])
894 i.types[this_operand].bitfield.disp64 = 1;
895 i.types[this_operand].bitfield.disp32s = 1;
898 else if (!i.prefix[ADDR_PREFIX] ^ (flag_code == CODE_16BIT))
899 i.types[this_operand].bitfield.disp32 = 1;
901 i.types[this_operand].bitfield.disp16 = 1;
903 #if defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT)
905 * exp_seg is used only for verification in
906 * i386_finalize_displacement, and we can end up seeing reg_section
907 * here - but we know we removed all registers from the expression
908 * (or error-ed on any remaining ones) in i386_intel_simplify. I
909 * consider the check in i386_finalize_displacement bogus anyway, in
910 * particular because it doesn't allow for expr_section, so I'd
911 * rather see that check (and the similar one in
912 * i386_finalize_immediate) use SEG_NORMAL(), but not being an a.out
913 * expert I can't really say whether that would have other bad side
916 if (OUTPUT_FLAVOR == bfd_target_aout_flavour
917 && exp_seg == reg_section)
918 exp_seg = expP->X_op != O_constant ? undefined_section
922 if (!i386_finalize_displacement (exp_seg, expP,
923 intel_state.reloc_types,
928 if (intel_state.base || intel_state.index)
929 i.types[this_operand].bitfield.baseindex = 1;
935 expP = symbol_get_value_expression (intel_state.seg);
936 if (expP->X_op != O_full_ptr)
938 intel_state.seg = expP->X_add_symbol;
940 if (expP->X_op != O_register)
942 as_bad (_("segment register name expected"));
945 if (!i386_regtab[expP->X_add_number].reg_type.bitfield.sreg2
946 && !i386_regtab[expP->X_add_number].reg_type.bitfield.sreg3)
948 as_bad (_("invalid use of register"));
951 switch (i386_regtab[expP->X_add_number].reg_num)
953 case 0: i.seg[i.mem_operands] = &es; break;
954 case 1: i.seg[i.mem_operands] = &cs; break;
955 case 2: i.seg[i.mem_operands] = &ss; break;
956 case 3: i.seg[i.mem_operands] = &ds; break;
957 case 4: i.seg[i.mem_operands] = &fs; break;
958 case 5: i.seg[i.mem_operands] = &gs; break;
959 case RegFlat: i.seg[i.mem_operands] = NULL; break;
963 /* Swap base and index in 16-bit memory operands like
964 [si+bx]. Since i386_index_check is also used in AT&T
965 mode we have to do that here. */
968 && intel_state.base->reg_type.bitfield.reg16
969 && intel_state.index->reg_type.bitfield.reg16
970 && intel_state.base->reg_num >= 6
971 && intel_state.index->reg_num < 6)
973 i.base_reg = intel_state.index;
974 i.index_reg = intel_state.base;
978 i.base_reg = intel_state.base;
979 i.index_reg = intel_state.index;
982 if (!i386_index_check (operand_string))
985 i.types[this_operand].bitfield.mem = 1;
991 if (i.imm_operands >= MAX_IMMEDIATE_OPERANDS)
993 as_bad (_("at most %d immediate operands are allowed"),
994 MAX_IMMEDIATE_OPERANDS);
998 expP = &im_expressions[i.imm_operands++];
999 i.op[this_operand].imms = expP;
1002 return i386_finalize_immediate (exp_seg, expP, intel_state.reloc_types,