Restore fall through patch for O_multiply.
[deliverable/binutils-gdb.git] / gas / config / tc-i386-intel.c
1 /* tc-i386.c -- Assemble Intel syntax code for ix86/x86-64
2 Copyright 2009
3 Free Software Foundation, Inc.
4
5 This file is part of GAS, the GNU Assembler.
6
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
21
22 static struct
23 {
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
31 * in brackets. */
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. */
36 symbolS *seg;
37 }
38 intel_state;
39
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
66
67 static struct
68 {
69 const char *name;
70 operatorT op;
71 unsigned int operands;
72 }
73 const i386_operators[] =
74 {
75 { "and", O_bit_and, 2 },
76 { "eq", O_eq, 2 },
77 { "ge", O_ge, 2 },
78 { "gt", O_gt, 2 },
79 { "le", O_le, 2 },
80 { "lt", O_lt, 2 },
81 { "mod", O_modulus, 2 },
82 { "ne", O_ne, 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 }
91 };
92
93 static struct
94 {
95 const char *name;
96 operatorT op;
97 unsigned short sz[3];
98 }
99 const i386_types[] =
100 {
101 #define I386_TYPE(t, n) { #t, O_##t##_ptr, { n, n, n } }
102 I386_TYPE(byte, 1),
103 I386_TYPE(word, 2),
104 I386_TYPE(dword, 4),
105 I386_TYPE(fword, 6),
106 I386_TYPE(qword, 8),
107 I386_TYPE(tbyte, 10),
108 I386_TYPE(oword, 16),
109 I386_TYPE(xmmword, 16),
110 I386_TYPE(ymmword, 32),
111 #undef I386_TYPE
112 { "near", O_near_ptr, { 0xff04, 0xff02, 0xff08 } },
113 { "far", O_far_ptr, { 0xff06, 0xff05, 0xff06 } },
114 { NULL, O_illegal, { 0, 0, 0 } }
115 };
116
117 operatorT i386_operator (const char *name, unsigned int operands, char *pc)
118 {
119 unsigned int j;
120
121 if (!intel_syntax)
122 return O_absent;
123
124 if (!name)
125 {
126 if (operands != 2)
127 return O_illegal;
128 switch (*input_line_pointer)
129 {
130 case ':':
131 ++input_line_pointer;
132 return O_full_ptr;
133 case '[':
134 ++input_line_pointer;
135 return O_index;
136 case '@':
137 if (this_operand >= 0 && i.reloc[this_operand] == NO_RELOC)
138 {
139 int adjust = 0;
140 char *gotfree_input_line = lex_got (&i.reloc[this_operand],
141 &adjust,
142 &intel_state.reloc_types);
143
144 if (!gotfree_input_line)
145 break;
146 free (gotfree_input_line);
147 *input_line_pointer++ = '+';
148 memset (input_line_pointer, '0', adjust - 1);
149 input_line_pointer[adjust - 1] = ' ';
150 return O_add;
151 }
152 break;
153 }
154 return O_illegal;
155 }
156
157 for (j = 0; i386_operators[j].name; ++j)
158 if (strcasecmp (i386_operators[j].name, name) == 0)
159 {
160 if (i386_operators[j].operands
161 && i386_operators[j].operands != operands)
162 return O_illegal;
163 return i386_operators[j].op;
164 }
165
166 for (j = 0; i386_types[j].name; ++j)
167 if (strcasecmp (i386_types[j].name, name) == 0)
168 break;
169 if (i386_types[j].name && *pc == ' ')
170 {
171 char *pname = ++input_line_pointer;
172 char c = get_symbol_end ();
173
174 if (strcasecmp (pname, "ptr") == 0)
175 {
176 pname[-1] = *pc;
177 *pc = c;
178 if (intel_syntax > 0 || operands != 1)
179 return O_illegal;
180 return i386_types[j].op;
181 }
182
183 *input_line_pointer = c;
184 input_line_pointer = pname - 1;
185 }
186
187 return O_absent;
188 }
189
190 static int i386_intel_parse_name (const char *name, expressionS *e)
191 {
192 unsigned int j;
193
194 if (! strcmp (name, "$"))
195 {
196 current_location (e);
197 return 1;
198 }
199
200 for (j = 0; i386_types[j].name; ++j)
201 if (strcasecmp(i386_types[j].name, name) == 0)
202 {
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;
207 return 1;
208 }
209
210 return 0;
211 }
212
213 static INLINE int i386_intel_check (const reg_entry *rreg,
214 const reg_entry *base,
215 const reg_entry *iindex)
216 {
217 if ((this_operand >= 0 && rreg != i.op[this_operand].regs)
218 || base != intel_state.base || iindex != intel_state.index)
219 {
220 as_bad (_("invalid use of register"));
221 return 0;
222 }
223 return 1;
224 }
225
226 static INLINE void i386_intel_fold (expressionS *e, symbolS *sym)
227 {
228 if (S_GET_SEGMENT (sym) == absolute_section)
229 {
230 offsetT val = e->X_add_number;
231
232 *e = *symbol_get_value_expression (sym);
233 e->X_add_number += val;
234 }
235 else
236 {
237 e->X_add_symbol = sym;
238 e->X_op_symbol = NULL;
239 e->X_op = O_symbol;
240 }
241 }
242
243 static int
244 i386_intel_simplify_register (expressionS *e)
245 {
246 int reg_num;
247
248 if (this_operand < 0 || intel_state.in_offset)
249 {
250 as_bad (_("invalid use of register"));
251 return 0;
252 }
253
254 if (e->X_op == O_register)
255 reg_num = e->X_add_number;
256 else
257 reg_num = e->X_md - 1;
258
259 if (!intel_state.in_bracket)
260 {
261 if (i.op[this_operand].regs)
262 {
263 as_bad (_("invalid use of register"));
264 return 0;
265 }
266 if (i386_regtab[reg_num].reg_type.bitfield.sreg3
267 && i386_regtab[reg_num].reg_num == RegFlat)
268 {
269 as_bad (_("invalid use of pseudo-register"));
270 return 0;
271 }
272 i.op[this_operand].regs = i386_regtab + reg_num;
273 }
274 else if (!intel_state.base && !intel_state.in_scale)
275 intel_state.base = i386_regtab + reg_num;
276 else if (!intel_state.index)
277 intel_state.index = i386_regtab + reg_num;
278 else
279 {
280 /* esp is invalid as index */
281 intel_state.index = i386_regtab + REGNAM_EAX + 4;
282 }
283 return 2;
284 }
285
286 static int i386_intel_simplify (expressionS *);
287
288 static INLINE int i386_intel_simplify_symbol(symbolS *sym)
289 {
290 int ret = i386_intel_simplify (symbol_get_value_expression (sym));
291
292 if (ret == 2)
293 {
294 S_SET_SEGMENT(sym, absolute_section);
295 ret = 1;
296 }
297 return ret;
298 }
299
300 static int i386_intel_simplify (expressionS *e)
301 {
302 const reg_entry *the_reg = this_operand >= 0 ? i.op[this_operand].regs : NULL;
303 const reg_entry *base = intel_state.base;
304 const reg_entry *state_index = intel_state.index;
305 int ret;
306
307 if (!intel_syntax)
308 return 1;
309
310 switch (e->X_op)
311 {
312 case O_index:
313 if (e->X_add_symbol)
314 {
315 if (!i386_intel_simplify_symbol (e->X_add_symbol)
316 || !i386_intel_check(the_reg, intel_state.base, intel_state.index))
317 return 0;;
318 }
319 if (!intel_state.in_offset)
320 ++intel_state.in_bracket;
321 ret = i386_intel_simplify_symbol (e->X_op_symbol);
322 if (!intel_state.in_offset)
323 --intel_state.in_bracket;
324 if (!ret)
325 return 0;
326 if (e->X_add_symbol)
327 e->X_op = O_add;
328 else
329 i386_intel_fold (e, e->X_op_symbol);
330 break;
331
332 case O_offset:
333 intel_state.has_offset = 1;
334 ++intel_state.in_offset;
335 ret = i386_intel_simplify_symbol (e->X_add_symbol);
336 --intel_state.in_offset;
337 if (!ret || !i386_intel_check(the_reg, base, state_index))
338 return 0;
339 i386_intel_fold (e, e->X_add_symbol);
340 return ret;
341
342 case O_byte_ptr:
343 case O_word_ptr:
344 case O_dword_ptr:
345 case O_fword_ptr:
346 case O_qword_ptr:
347 case O_tbyte_ptr:
348 case O_oword_ptr:
349 case O_xmmword_ptr:
350 case O_ymmword_ptr:
351 case O_near_ptr:
352 case O_far_ptr:
353 if (intel_state.op_modifier == O_absent)
354 intel_state.op_modifier = e->X_op;
355 /* FALLTHROUGH */
356 case O_short:
357 if (symbol_get_value_expression (e->X_add_symbol)->X_op == O_register)
358 {
359 as_bad (_("invalid use of register"));
360 return 0;
361 }
362 if (!i386_intel_simplify_symbol (e->X_add_symbol))
363 return 0;
364 i386_intel_fold (e, e->X_add_symbol);
365 break;
366
367 case O_full_ptr:
368 if (symbol_get_value_expression (e->X_op_symbol)->X_op == O_register)
369 {
370 as_bad (_("invalid use of register"));
371 return 0;
372 }
373 if (!i386_intel_simplify_symbol (e->X_op_symbol)
374 || !i386_intel_check(the_reg, intel_state.base, intel_state.index))
375 return 0;
376 if (!intel_state.in_offset)
377 intel_state.seg = e->X_add_symbol;
378 i386_intel_fold (e, e->X_op_symbol);
379 break;
380
381 case O_multiply:
382 if (this_operand >= 0 && intel_state.in_bracket)
383 {
384 expressionS *scale = NULL;
385
386 if (intel_state.index)
387 --scale;
388
389 if (!intel_state.in_scale++)
390 intel_state.scale_factor = 1;
391
392 ret = i386_intel_simplify_symbol (e->X_add_symbol);
393 if (ret && !scale && intel_state.index)
394 scale = symbol_get_value_expression (e->X_op_symbol);
395
396 if (ret)
397 ret = i386_intel_simplify_symbol (e->X_op_symbol);
398 if (ret && !scale && intel_state.index)
399 scale = symbol_get_value_expression (e->X_add_symbol);
400
401 if (ret && scale && (scale + 1))
402 {
403 resolve_expression (scale);
404 if (scale->X_op != O_constant
405 || intel_state.index->reg_type.bitfield.reg16)
406 scale->X_add_number = 0;
407 intel_state.scale_factor *= scale->X_add_number;
408 }
409
410 --intel_state.in_scale;
411 if (!ret)
412 return 0;
413
414 if (!intel_state.in_scale)
415 switch (intel_state.scale_factor)
416 {
417 case 1:
418 i.log2_scale_factor = 0;
419 break;
420 case 2:
421 i.log2_scale_factor = 1;
422 break;
423 case 4:
424 i.log2_scale_factor = 2;
425 break;
426 case 8:
427 i.log2_scale_factor = 3;
428 break;
429 default:
430 /* esp is invalid as index */
431 intel_state.index = i386_regtab + REGNAM_EAX + 4;
432 break;
433 }
434
435 break;
436 }
437 goto fallthrough;
438
439 case O_register:
440 ret = i386_intel_simplify_register (e);
441 if (ret == 2)
442 {
443 gas_assert (e->X_add_number < (unsigned short) -1);
444 e->X_md = (unsigned short) e->X_add_number + 1;
445 e->X_op = O_constant;
446 e->X_add_number = 0;
447 }
448 return ret;
449
450 case O_constant:
451 if (e->X_md)
452 return i386_intel_simplify_register (e);
453
454 /* FALLTHROUGH */
455 default:
456 fallthrough:
457 if (e->X_add_symbol && !i386_intel_simplify_symbol (e->X_add_symbol))
458 return 0;
459 if (e->X_op == O_add || e->X_op == O_subtract)
460 {
461 base = intel_state.base;
462 state_index = intel_state.index;
463 }
464 if (!i386_intel_check (the_reg, base, state_index)
465 || (e->X_op_symbol && !i386_intel_simplify_symbol (e->X_op_symbol))
466 || !i386_intel_check (the_reg,
467 e->X_op != O_add ? base : intel_state.base,
468 e->X_op != O_add ? state_index : intel_state.index))
469 return 0;
470 break;
471 }
472
473 if (this_operand >= 0 && e->X_op == O_symbol && !intel_state.in_offset)
474 {
475 segT seg = S_GET_SEGMENT (e->X_add_symbol);
476
477 if (seg != absolute_section
478 && seg != reg_section
479 && seg != expr_section)
480 intel_state.is_mem |= 2 - !intel_state.in_bracket;
481 }
482
483 return 1;
484 }
485
486 int i386_need_index_operator (void)
487 {
488 return intel_syntax < 0;
489 }
490
491 static int
492 i386_intel_operand (char *operand_string, int got_a_float)
493 {
494 char *saved_input_line_pointer, *buf;
495 segT exp_seg;
496 expressionS exp, *expP;
497 char suffix = 0;
498 int ret;
499
500 /* Initialize state structure. */
501 intel_state.op_modifier = O_absent;
502 intel_state.is_mem = 0;
503 intel_state.is_indirect = 0;
504 intel_state.has_offset = 0;
505 intel_state.base = NULL;
506 intel_state.index = NULL;
507 intel_state.seg = NULL;
508 operand_type_set (&intel_state.reloc_types, ~0);
509 gas_assert (!intel_state.in_offset);
510 gas_assert (!intel_state.in_bracket);
511 gas_assert (!intel_state.in_scale);
512
513 saved_input_line_pointer = input_line_pointer;
514 input_line_pointer = buf = xstrdup (operand_string);
515
516 intel_syntax = -1;
517 memset (&exp, 0, sizeof(exp));
518 exp_seg = expression (&exp);
519 ret = i386_intel_simplify (&exp);
520 intel_syntax = 1;
521
522 SKIP_WHITESPACE ();
523 if (!is_end_of_line[(unsigned char) *input_line_pointer])
524 {
525 as_bad (_("junk `%s' after expression"), input_line_pointer);
526 ret = 0;
527 }
528 else if (exp.X_op == O_illegal || exp.X_op == O_absent)
529 {
530 as_bad (_("invalid expression"));
531 ret = 0;
532 }
533 else if (!intel_state.has_offset
534 && input_line_pointer > buf
535 && *(input_line_pointer - 1) == ']')
536 {
537 intel_state.is_mem |= 1;
538 intel_state.is_indirect = 1;
539 }
540
541 input_line_pointer = saved_input_line_pointer;
542 free (buf);
543
544 gas_assert (!intel_state.in_offset);
545 gas_assert (!intel_state.in_bracket);
546 gas_assert (!intel_state.in_scale);
547
548 if (!ret)
549 return 0;
550
551 if (intel_state.op_modifier != O_absent
552 && current_templates->start->base_opcode != 0x8d /* lea */)
553 {
554 i.types[this_operand].bitfield.unspecified = 0;
555
556 switch (intel_state.op_modifier)
557 {
558 case O_byte_ptr:
559 i.types[this_operand].bitfield.byte = 1;
560 suffix = BYTE_MNEM_SUFFIX;
561 break;
562
563 case O_word_ptr:
564 i.types[this_operand].bitfield.word = 1;
565 if ((current_templates->start->name[0] == 'l'
566 && current_templates->start->name[2] == 's'
567 && current_templates->start->name[3] == 0)
568 || current_templates->start->base_opcode == 0x62 /* bound */)
569 suffix = BYTE_MNEM_SUFFIX; /* so it will cause an error */
570 else if (got_a_float == 2) /* "fi..." */
571 suffix = SHORT_MNEM_SUFFIX;
572 else
573 suffix = WORD_MNEM_SUFFIX;
574 break;
575
576 case O_dword_ptr:
577 i.types[this_operand].bitfield.dword = 1;
578 if ((current_templates->start->name[0] == 'l'
579 && current_templates->start->name[2] == 's'
580 && current_templates->start->name[3] == 0)
581 || current_templates->start->base_opcode == 0x62 /* bound */)
582 suffix = WORD_MNEM_SUFFIX;
583 else if (flag_code == CODE_16BIT
584 && (current_templates->start->opcode_modifier.jump
585 || current_templates->start->opcode_modifier.jumpdword))
586 suffix = LONG_DOUBLE_MNEM_SUFFIX;
587 else if (got_a_float == 1) /* "f..." */
588 suffix = SHORT_MNEM_SUFFIX;
589 else
590 suffix = LONG_MNEM_SUFFIX;
591 break;
592
593 case O_fword_ptr:
594 i.types[this_operand].bitfield.fword = 1;
595 if (current_templates->start->name[0] == 'l'
596 && current_templates->start->name[2] == 's'
597 && current_templates->start->name[3] == 0)
598 suffix = LONG_MNEM_SUFFIX;
599 else if (!got_a_float)
600 {
601 if (flag_code == CODE_16BIT)
602 add_prefix (DATA_PREFIX_OPCODE);
603 suffix = LONG_DOUBLE_MNEM_SUFFIX;
604 }
605 else
606 suffix = BYTE_MNEM_SUFFIX; /* so it will cause an error */
607 break;
608
609 case O_qword_ptr:
610 i.types[this_operand].bitfield.qword = 1;
611 if (current_templates->start->base_opcode == 0x62 /* bound */
612 || got_a_float == 1) /* "f..." */
613 suffix = LONG_MNEM_SUFFIX;
614 else
615 suffix = QWORD_MNEM_SUFFIX;
616 break;
617
618 case O_tbyte_ptr:
619 i.types[this_operand].bitfield.tbyte = 1;
620 if (got_a_float == 1)
621 suffix = LONG_DOUBLE_MNEM_SUFFIX;
622 else
623 suffix = BYTE_MNEM_SUFFIX; /* so it will cause an error */
624 break;
625
626 case O_oword_ptr:
627 case O_xmmword_ptr:
628 i.types[this_operand].bitfield.xmmword = 1;
629 suffix = XMMWORD_MNEM_SUFFIX;
630 break;
631
632 case O_ymmword_ptr:
633 i.types[this_operand].bitfield.ymmword = 1;
634 suffix = YMMWORD_MNEM_SUFFIX;
635 break;
636
637 case O_far_ptr:
638 suffix = LONG_DOUBLE_MNEM_SUFFIX;
639 /* FALLTHROUGH */
640 case O_near_ptr:
641 if (!current_templates->start->opcode_modifier.jump
642 && !current_templates->start->opcode_modifier.jumpdword)
643 suffix = got_a_float /* so it will cause an error */
644 ? BYTE_MNEM_SUFFIX
645 : LONG_DOUBLE_MNEM_SUFFIX;
646 break;
647
648 default:
649 BAD_CASE (intel_state.op_modifier);
650 break;
651 }
652
653 if (!i.suffix)
654 i.suffix = suffix;
655 else if (i.suffix != suffix)
656 {
657 as_bad (_("conflicting operand size modifiers"));
658 return 0;
659 }
660 }
661
662 /* Operands for jump/call need special consideration. */
663 if (current_templates->start->opcode_modifier.jump
664 || current_templates->start->opcode_modifier.jumpdword
665 || current_templates->start->opcode_modifier.jumpintersegment)
666 {
667 if (i.op[this_operand].regs || intel_state.base || intel_state.index
668 || intel_state.is_mem > 1)
669 i.types[this_operand].bitfield.jumpabsolute = 1;
670 else
671 switch (intel_state.op_modifier)
672 {
673 case O_near_ptr:
674 if (intel_state.seg)
675 i.types[this_operand].bitfield.jumpabsolute = 1;
676 else
677 intel_state.is_mem = 1;
678 break;
679 case O_far_ptr:
680 case O_absent:
681 if (!intel_state.seg)
682 {
683 intel_state.is_mem = 1;
684 if (intel_state.op_modifier == O_absent)
685 {
686 if (intel_state.is_indirect == 1)
687 i.types[this_operand].bitfield.jumpabsolute = 1;
688 break;
689 }
690 as_bad (_("cannot infer the segment part of the operand"));
691 return 0;
692 }
693 else if (S_GET_SEGMENT (intel_state.seg) == reg_section)
694 i.types[this_operand].bitfield.jumpabsolute = 1;
695 else
696 {
697 i386_operand_type types;
698
699 if (i.imm_operands >= MAX_IMMEDIATE_OPERANDS)
700 {
701 as_bad (_("at most %d immediate operands are allowed"),
702 MAX_IMMEDIATE_OPERANDS);
703 return 0;
704 }
705 expP = &im_expressions[i.imm_operands++];
706 memset (expP, 0, sizeof(*expP));
707 expP->X_op = O_symbol;
708 expP->X_add_symbol = intel_state.seg;
709 i.op[this_operand].imms = expP;
710
711 resolve_expression (expP);
712 operand_type_set (&types, ~0);
713 if (!i386_finalize_immediate (S_GET_SEGMENT (intel_state.seg),
714 expP, types, operand_string))
715 return 0;
716 if (i.operands < MAX_OPERANDS)
717 {
718 this_operand = i.operands++;
719 i.types[this_operand].bitfield.unspecified = 1;
720 }
721 if (suffix == LONG_DOUBLE_MNEM_SUFFIX)
722 i.suffix = 0;
723 intel_state.seg = NULL;
724 intel_state.is_mem = 0;
725 }
726 break;
727 default:
728 i.types[this_operand].bitfield.jumpabsolute = 1;
729 break;
730 }
731 if (i.types[this_operand].bitfield.jumpabsolute)
732 intel_state.is_mem |= 1;
733 }
734 else if (intel_state.seg)
735 intel_state.is_mem |= 1;
736
737 if (i.op[this_operand].regs)
738 {
739 i386_operand_type temp;
740
741 /* Register operand. */
742 if (intel_state.base || intel_state.index || intel_state.seg)
743 {
744 as_bad (_("invalid operand"));
745 return 0;
746 }
747
748 temp = i.op[this_operand].regs->reg_type;
749 temp.bitfield.baseindex = 0;
750 i.types[this_operand] = operand_type_or (i.types[this_operand], temp);
751 i.types[this_operand].bitfield.unspecified = 0;
752 ++i.reg_operands;
753 }
754 else if (intel_state.base || intel_state.index || intel_state.seg
755 || intel_state.is_mem)
756 {
757 /* Memory operand. */
758 if (i.mem_operands
759 >= 2 - !current_templates->start->opcode_modifier.isstring)
760 {
761 /* Handle
762
763 call 0x9090,0x90909090
764 lcall 0x9090,0x90909090
765 jmp 0x9090,0x90909090
766 ljmp 0x9090,0x90909090
767 */
768
769 if ((current_templates->start->opcode_modifier.jumpintersegment
770 || current_templates->start->opcode_modifier.jumpdword
771 || current_templates->start->opcode_modifier.jump)
772 && this_operand == 1
773 && intel_state.seg == NULL
774 && i.mem_operands == 1
775 && i.disp_operands == 1
776 && intel_state.op_modifier == O_absent)
777 {
778 /* Try to process the first operand as immediate, */
779 this_operand = 0;
780 if (i386_finalize_immediate (exp_seg, i.op[0].imms,
781 intel_state.reloc_types,
782 NULL))
783 {
784 this_operand = 1;
785 expP = &im_expressions[0];
786 i.op[this_operand].imms = expP;
787 *expP = exp;
788
789 /* Try to process the second operand as immediate, */
790 if (i386_finalize_immediate (exp_seg, expP,
791 intel_state.reloc_types,
792 NULL))
793 {
794 i.mem_operands = 0;
795 i.disp_operands = 0;
796 i.imm_operands = 2;
797 i.types[0].bitfield.mem = 0;
798 i.types[0].bitfield.disp16 = 0;
799 i.types[0].bitfield.disp32 = 0;
800 i.types[0].bitfield.disp32s = 0;
801 return 1;
802 }
803 }
804 }
805
806 as_bad (_("too many memory references for `%s'"),
807 current_templates->start->name);
808 return 0;
809 }
810
811 expP = &disp_expressions[i.disp_operands];
812 memcpy (expP, &exp, sizeof(exp));
813 resolve_expression (expP);
814
815 if (expP->X_op != O_constant || expP->X_add_number
816 || (!intel_state.base && !intel_state.index))
817 {
818 i.op[this_operand].disps = expP;
819 i.disp_operands++;
820
821 if (flag_code == CODE_64BIT)
822 {
823 i.types[this_operand].bitfield.disp32 = 1;
824 if (!i.prefix[ADDR_PREFIX])
825 {
826 i.types[this_operand].bitfield.disp64 = 1;
827 i.types[this_operand].bitfield.disp32s = 1;
828 }
829 }
830 else if (!i.prefix[ADDR_PREFIX] ^ (flag_code == CODE_16BIT))
831 i.types[this_operand].bitfield.disp32 = 1;
832 else
833 i.types[this_operand].bitfield.disp16 = 1;
834
835 #if defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT)
836 /*
837 * exp_seg is used only for verification in
838 * i386_finalize_displacement, and we can end up seeing reg_section
839 * here - but we know we removed all registers from the expression
840 * (or error-ed on any remaining ones) in i386_intel_simplify. I
841 * consider the check in i386_finalize_displacement bogus anyway, in
842 * particular because it doesn't allow for expr_section, so I'd
843 * rather see that check (and the similar one in
844 * i386_finalize_immediate) use SEG_NORMAL(), but not being an a.out
845 * expert I can't really say whether that would have other bad side
846 * effects.
847 */
848 if (OUTPUT_FLAVOR == bfd_target_aout_flavour
849 && exp_seg == reg_section)
850 exp_seg = expP->X_op != O_constant ? undefined_section
851 : absolute_section;
852 #endif
853
854 if (!i386_finalize_displacement (exp_seg, expP,
855 intel_state.reloc_types,
856 operand_string))
857 return 0;
858 }
859
860 if (intel_state.base || intel_state.index)
861 i.types[this_operand].bitfield.baseindex = 1;
862
863 if (intel_state.seg)
864 {
865 for (;;)
866 {
867 expP = symbol_get_value_expression (intel_state.seg);
868 if (expP->X_op != O_full_ptr)
869 break;
870 intel_state.seg = expP->X_add_symbol;
871 }
872 if (expP->X_op != O_register)
873 {
874 as_bad (_("segment register name expected"));
875 return 0;
876 }
877 if (!i386_regtab[expP->X_add_number].reg_type.bitfield.sreg2
878 && !i386_regtab[expP->X_add_number].reg_type.bitfield.sreg3)
879 {
880 as_bad (_("invalid use of register"));
881 return 0;
882 }
883 switch (i386_regtab[expP->X_add_number].reg_num)
884 {
885 case 0: i.seg[i.mem_operands] = &es; break;
886 case 1: i.seg[i.mem_operands] = &cs; break;
887 case 2: i.seg[i.mem_operands] = &ss; break;
888 case 3: i.seg[i.mem_operands] = &ds; break;
889 case 4: i.seg[i.mem_operands] = &fs; break;
890 case 5: i.seg[i.mem_operands] = &gs; break;
891 case RegFlat: i.seg[i.mem_operands] = NULL; break;
892 }
893 }
894
895 /* Swap base and index in 16-bit memory operands like
896 [si+bx]. Since i386_index_check is also used in AT&T
897 mode we have to do that here. */
898 if (intel_state.base
899 && intel_state.index
900 && intel_state.base->reg_type.bitfield.reg16
901 && intel_state.index->reg_type.bitfield.reg16
902 && intel_state.base->reg_num >= 6
903 && intel_state.index->reg_num < 6)
904 {
905 i.base_reg = intel_state.index;
906 i.index_reg = intel_state.base;
907 }
908 else
909 {
910 i.base_reg = intel_state.base;
911 i.index_reg = intel_state.index;
912 }
913
914 if (!i386_index_check (operand_string))
915 return 0;
916
917 i.types[this_operand].bitfield.mem = 1;
918 ++i.mem_operands;
919 }
920 else
921 {
922 /* Immediate. */
923 if (i.imm_operands >= MAX_IMMEDIATE_OPERANDS)
924 {
925 as_bad (_("at most %d immediate operands are allowed"),
926 MAX_IMMEDIATE_OPERANDS);
927 return 0;
928 }
929
930 expP = &im_expressions[i.imm_operands++];
931 i.op[this_operand].imms = expP;
932 *expP = exp;
933
934 return i386_finalize_immediate (exp_seg, expP, intel_state.reloc_types,
935 operand_string);
936 }
937
938 return 1;
939 }
This page took 0.052609 seconds and 5 git commands to generate.