2003-08-05 Jason Eckhardt <jle@rice.edu>
[binutils-gdb.git] / gas / config / tc-i860.c
1 /* tc-i860.c -- Assembler for the Intel i860 architecture.
2 Copyright 1989, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003
3 Free Software Foundation, Inc.
4
5 Brought back from the dead and completely reworked
6 by Jason Eckhardt <jle@cygnus.com>.
7
8 This file is part of GAS, the GNU Assembler.
9
10 GAS is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 GAS is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License along
21 with GAS; see the file COPYING. If not, write to the Free Software
22 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23
24 #include <stdio.h>
25 #include <string.h>
26 #include "as.h"
27 #include "safe-ctype.h"
28 #include "subsegs.h"
29 #include "opcode/i860.h"
30 #include "elf/i860.h"
31
32
33 /* The opcode hash table. */
34 static struct hash_control *op_hash = NULL;
35
36 /* These characters always start a comment. */
37 const char comment_chars[] = "#!/";
38
39 /* These characters start a comment at the beginning of a line. */
40 const char line_comment_chars[] = "#/";
41
42 const char line_separator_chars[] = ";";
43
44 /* Characters that can be used to separate the mantissa from the exponent
45 in floating point numbers. */
46 const char EXP_CHARS[] = "eE";
47
48 /* Characters that indicate this number is a floating point constant.
49 As in 0f12.456 or 0d1.2345e12. */
50 const char FLT_CHARS[] = "rRsSfFdDxXpP";
51
52 /* Register prefix (depends on syntax). */
53 static char reg_prefix;
54
55 #define MAX_FIXUPS 2
56
57 struct i860_it
58 {
59 char *error;
60 unsigned long opcode;
61 enum expand_type expand;
62 struct i860_fi
63 {
64 expressionS exp;
65 bfd_reloc_code_real_type reloc;
66 int pcrel;
67 valueT fup;
68 } fi[MAX_FIXUPS];
69 } the_insn;
70
71 /* The current fixup count. */
72 static int fc;
73
74 static char *expr_end;
75
76 /* Indicates error if a pseudo operation was expanded after a branch. */
77 static char last_expand;
78
79 /* If true, then warn if any pseudo operations were expanded. */
80 static int target_warn_expand = 0;
81
82 /* If true, then XP support is enabled. */
83 static int target_xp = 0;
84
85 /* If true, then Intel syntax is enabled (default to AT&T/SVR4 syntax). */
86 static int target_intel_syntax = 0;
87
88
89 /* Prototypes. */
90 static void i860_process_insn (char *);
91 static void s_dual (int);
92 static void s_enddual (int);
93 static void s_atmp (int);
94 static int i860_get_expression (char *);
95 static bfd_reloc_code_real_type obtain_reloc_for_imm16 (fixS *, long *);
96 #ifdef DEBUG_I860
97 static void print_insn (struct i860_it *);
98 #endif
99
100 const pseudo_typeS md_pseudo_table[] =
101 {
102 #ifdef OBJ_ELF
103 {"align", s_align_bytes, 0},
104 #endif
105 {"dual", s_dual, 0},
106 {"enddual", s_enddual, 0},
107 {"atmp", s_atmp, 0},
108 {NULL, 0, 0},
109 };
110
111 /* Dual-instruction mode handling. */
112 enum dual
113 {
114 DUAL_OFF = 0, DUAL_ON, DUAL_DDOT, DUAL_ONDDOT,
115 };
116 static enum dual dual_mode = DUAL_OFF;
117
118 /* Handle ".dual" directive. */
119 static void
120 s_dual (int ignore ATTRIBUTE_UNUSED)
121 {
122 if (target_intel_syntax)
123 dual_mode = DUAL_ON;
124 else
125 as_bad (_("Directive .dual available only with -mintel-syntax option"));
126 }
127
128 /* Handle ".enddual" directive. */
129 static void
130 s_enddual (int ignore ATTRIBUTE_UNUSED)
131 {
132 if (target_intel_syntax)
133 dual_mode = DUAL_OFF;
134 else
135 as_bad (_("Directive .enddual available only with -mintel-syntax option"));
136 }
137
138 /* Temporary register used when expanding assembler pseudo operations. */
139 static int atmp = 31;
140
141 static void
142 s_atmp (int ignore ATTRIBUTE_UNUSED)
143 {
144 int temp;
145
146 if (! target_intel_syntax)
147 {
148 as_bad (_("Directive .atmp available only with -mintel-syntax option"));
149 demand_empty_rest_of_line ();
150 return;
151 }
152
153 if (strncmp (input_line_pointer, "sp", 2) == 0)
154 {
155 input_line_pointer += 2;
156 atmp = 2;
157 }
158 else if (strncmp (input_line_pointer, "fp", 2) == 0)
159 {
160 input_line_pointer += 2;
161 atmp = 3;
162 }
163 else if (strncmp (input_line_pointer, "r", 1) == 0)
164 {
165 input_line_pointer += 1;
166 temp = get_absolute_expression ();
167 if (temp >= 0 && temp <= 31)
168 atmp = temp;
169 else
170 as_bad (_("Unknown temporary pseudo register"));
171 }
172 else
173 {
174 as_bad (_("Unknown temporary pseudo register"));
175 }
176 demand_empty_rest_of_line ();
177 }
178
179 /* This function is called once, at assembler startup time. It should
180 set up all the tables and data structures that the MD part of the
181 assembler will need. */
182 void
183 md_begin (void)
184 {
185 const char *retval = NULL;
186 int lose = 0;
187 unsigned int i = 0;
188
189 op_hash = hash_new ();
190
191 while (i860_opcodes[i].name != NULL)
192 {
193 const char *name = i860_opcodes[i].name;
194 retval = hash_insert (op_hash, name, (PTR)&i860_opcodes[i]);
195 if (retval != NULL)
196 {
197 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
198 i860_opcodes[i].name, retval);
199 lose = 1;
200 }
201 do
202 {
203 if (i860_opcodes[i].match & i860_opcodes[i].lose)
204 {
205 fprintf (stderr,
206 _("internal error: losing opcode: `%s' \"%s\"\n"),
207 i860_opcodes[i].name, i860_opcodes[i].args);
208 lose = 1;
209 }
210 ++i;
211 }
212 while (i860_opcodes[i].name != NULL
213 && strcmp (i860_opcodes[i].name, name) == 0);
214 }
215
216 if (lose)
217 as_fatal (_("Defective assembler. No assembly attempted."));
218
219 /* Set the register prefix for either Intel or AT&T/SVR4 syntax. */
220 reg_prefix = target_intel_syntax ? 0 : '%';
221 }
222
223 /* This is the core of the machine-dependent assembler. STR points to a
224 machine dependent instruction. This function emits the frags/bytes
225 it assembles to. */
226 void
227 md_assemble (char *str)
228 {
229 char *destp;
230 int num_opcodes = 1;
231 int i;
232 struct i860_it pseudo[3];
233
234 assert (str);
235 fc = 0;
236
237 /* Assemble the instruction. */
238 i860_process_insn (str);
239
240 /* Check for expandable flag to produce pseudo-instructions. This
241 is an undesirable feature that should be avoided. */
242 if (the_insn.expand != 0 && the_insn.expand != XP_ONLY
243 && ! (the_insn.fi[0].fup & (OP_SEL_HA | OP_SEL_H | OP_SEL_L | OP_SEL_GOT
244 | OP_SEL_GOTOFF | OP_SEL_PLT)))
245 {
246 for (i = 0; i < 3; i++)
247 pseudo[i] = the_insn;
248
249 fc = 1;
250 switch (the_insn.expand)
251 {
252
253 case E_DELAY:
254 num_opcodes = 1;
255 break;
256
257 case E_MOV:
258 if (the_insn.fi[0].exp.X_add_symbol == NULL
259 && the_insn.fi[0].exp.X_op_symbol == NULL
260 && (the_insn.fi[0].exp.X_add_number < (1 << 15)
261 && the_insn.fi[0].exp.X_add_number >= -(1 << 15)))
262 break;
263
264 /* Emit "or l%const,r0,ireg_dest". */
265 pseudo[0].opcode = (the_insn.opcode & 0x001f0000) | 0xe4000000;
266 pseudo[0].fi[0].fup = (OP_IMM_S16 | OP_SEL_L);
267
268 /* Emit "orh h%const,ireg_dest,ireg_dest". */
269 pseudo[1].opcode = (the_insn.opcode & 0x03ffffff) | 0xec000000
270 | ((the_insn.opcode & 0x001f0000) << 5);
271 pseudo[1].fi[0].fup = (OP_IMM_S16 | OP_SEL_H);
272
273 num_opcodes = 2;
274 break;
275
276 case E_ADDR:
277 if (the_insn.fi[0].exp.X_add_symbol == NULL
278 && the_insn.fi[0].exp.X_op_symbol == NULL
279 && (the_insn.fi[0].exp.X_add_number < (1 << 15)
280 && the_insn.fi[0].exp.X_add_number >= -(1 << 15)))
281 break;
282
283 /* Emit "orh ha%addr_expr,r0,r31". */
284 pseudo[0].opcode = 0xec000000 | (atmp << 16);
285 pseudo[0].fi[0].fup = (OP_IMM_S16 | OP_SEL_HA);
286
287 /* Emit "l%addr_expr(r31),ireg_dest". We pick up the fixup
288 information from the original instruction. */
289 pseudo[1].opcode = (the_insn.opcode & ~0x03e00000) | (atmp << 21);
290 pseudo[1].fi[0].fup = the_insn.fi[0].fup | OP_SEL_L;
291
292 num_opcodes = 2;
293 break;
294
295 case E_U32:
296 if (the_insn.fi[0].exp.X_add_symbol == NULL
297 && the_insn.fi[0].exp.X_op_symbol == NULL
298 && (the_insn.fi[0].exp.X_add_number < (1 << 16)
299 && the_insn.fi[0].exp.X_add_number >= 0))
300 break;
301
302 /* Emit "$(opcode)h h%const,ireg_src2,r31". */
303 pseudo[0].opcode = (the_insn.opcode & 0xf3e0ffff) | 0x0c000000
304 | (atmp << 16);
305 pseudo[0].fi[0].fup = (OP_IMM_S16 | OP_SEL_H);
306
307 /* Emit "$(opcode) l%const,r31,ireg_dest". */
308 pseudo[1].opcode = (the_insn.opcode & 0xf01f0000) | 0x04000000
309 | (atmp << 21);
310 pseudo[1].fi[0].fup = (OP_IMM_S16 | OP_SEL_L);
311
312 num_opcodes = 2;
313 break;
314
315 case E_AND:
316 if (the_insn.fi[0].exp.X_add_symbol == NULL
317 && the_insn.fi[0].exp.X_op_symbol == NULL
318 && (the_insn.fi[0].exp.X_add_number < (1 << 16)
319 && the_insn.fi[0].exp.X_add_number >= 0))
320 break;
321
322 /* Emit "andnot h%const,ireg_src2,r31". */
323 pseudo[0].opcode = (the_insn.opcode & 0x03e0ffff) | 0xd4000000
324 | (atmp << 16);
325 pseudo[0].fi[0].fup = (OP_IMM_S16 | OP_SEL_H);
326 pseudo[0].fi[0].exp.X_add_number =
327 -1 - the_insn.fi[0].exp.X_add_number;
328
329 /* Emit "andnot l%const,r31,ireg_dest". */
330 pseudo[1].opcode = (the_insn.opcode & 0x001f0000) | 0xd4000000
331 | (atmp << 21);
332 pseudo[1].fi[0].fup = (OP_IMM_S16 | OP_SEL_L);
333 pseudo[1].fi[0].exp.X_add_number =
334 -1 - the_insn.fi[0].exp.X_add_number;
335
336 num_opcodes = 2;
337 break;
338
339 case E_S32:
340 if (the_insn.fi[0].exp.X_add_symbol == NULL
341 && the_insn.fi[0].exp.X_op_symbol == NULL
342 && (the_insn.fi[0].exp.X_add_number < (1 << 15)
343 && the_insn.fi[0].exp.X_add_number >= -(1 << 15)))
344 break;
345
346 /* Emit "orh h%const,r0,r31". */
347 pseudo[0].opcode = 0xec000000 | (atmp << 16);
348 pseudo[0].fi[0].fup = (OP_IMM_S16 | OP_SEL_H);
349
350 /* Emit "or l%const,r31,r31". */
351 pseudo[1].opcode = 0xe4000000 | (atmp << 21) | (atmp << 16);
352 pseudo[1].fi[0].fup = (OP_IMM_S16 | OP_SEL_L);
353
354 /* Emit "r31,ireg_src2,ireg_dest". */
355 pseudo[2].opcode = (the_insn.opcode & ~0x0400ffff) | (atmp << 11);
356 pseudo[2].fi[0].fup = OP_IMM_S16;
357
358 num_opcodes = 3;
359 break;
360
361 default:
362 as_fatal (_("failed sanity check."));
363 }
364
365 the_insn = pseudo[0];
366
367 /* Warn if an opcode is expanded after a delayed branch. */
368 if (num_opcodes > 1 && last_expand == 1)
369 as_warn (_("Expanded opcode after delayed branch: `%s'"), str);
370
371 /* Warn if an opcode is expanded in dual mode. */
372 if (num_opcodes > 1 && dual_mode != DUAL_OFF)
373 as_warn (_("Expanded opcode in dual mode: `%s'"), str);
374
375 /* Notify if any expansions happen. */
376 if (target_warn_expand && num_opcodes > 1)
377 as_warn (_("An instruction was expanded (%s)"), str);
378 }
379
380 i = 0;
381 do
382 {
383 int tmp;
384
385 /* Output the opcode. Note that the i860 always reads instructions
386 as little-endian data. */
387 destp = frag_more (4);
388 number_to_chars_littleendian (destp, the_insn.opcode, 4);
389
390 /* Check for expanded opcode after branch or in dual mode. */
391 last_expand = the_insn.fi[0].pcrel;
392
393 /* Output the symbol-dependent stuff. Only btne and bte will ever
394 loop more than once here, since only they (possibly) have more
395 than one fixup. */
396 for (tmp = 0; tmp < fc; tmp++)
397 {
398 if (the_insn.fi[tmp].fup != OP_NONE)
399 {
400 fixS *fix;
401 fix = fix_new_exp (frag_now,
402 destp - frag_now->fr_literal,
403 4,
404 &the_insn.fi[tmp].exp,
405 the_insn.fi[tmp].pcrel,
406 the_insn.fi[tmp].reloc);
407
408 /* Despite the odd name, this is a scratch field. We use
409 it to encode operand type information. */
410 fix->fx_addnumber = the_insn.fi[tmp].fup;
411 }
412 }
413 the_insn = pseudo[++i];
414 }
415 while (--num_opcodes > 0);
416
417 }
418
419 /* Assemble the instruction pointed to by STR. */
420 static void
421 i860_process_insn (char *str)
422 {
423 char *s;
424 const char *args;
425 char c;
426 struct i860_opcode *insn;
427 char *args_start;
428 unsigned long opcode;
429 unsigned int mask;
430 int match = 0;
431 int comma = 0;
432
433 #if 1 /* For compiler warnings. */
434 args = 0;
435 insn = 0;
436 args_start = 0;
437 opcode = 0;
438 #endif
439
440 for (s = str; ISLOWER (*s) || *s == '.' || *s == '3'
441 || *s == '2' || *s == '1'; ++s)
442 ;
443
444 switch (*s)
445 {
446 case '\0':
447 break;
448
449 case ',':
450 comma = 1;
451
452 /*FALLTHROUGH*/
453
454 case ' ':
455 *s++ = '\0';
456 break;
457
458 default:
459 as_fatal (_("Unknown opcode: `%s'"), str);
460 }
461
462 /* Check for dual mode ("d.") opcode prefix. */
463 if (strncmp (str, "d.", 2) == 0)
464 {
465 if (dual_mode == DUAL_ON)
466 dual_mode = DUAL_ONDDOT;
467 else
468 dual_mode = DUAL_DDOT;
469 str += 2;
470 }
471
472 if ((insn = (struct i860_opcode *) hash_find (op_hash, str)) == NULL)
473 {
474 if (dual_mode == DUAL_DDOT || dual_mode == DUAL_ONDDOT)
475 str -= 2;
476 as_bad (_("Unknown opcode: `%s'"), str);
477 return;
478 }
479
480 if (comma)
481 *--s = ',';
482
483 args_start = s;
484 for (;;)
485 {
486 int t;
487 opcode = insn->match;
488 memset (&the_insn, '\0', sizeof (the_insn));
489 fc = 0;
490 for (t = 0; t < MAX_FIXUPS; t++)
491 {
492 the_insn.fi[t].reloc = BFD_RELOC_NONE;
493 the_insn.fi[t].pcrel = 0;
494 the_insn.fi[t].fup = OP_NONE;
495 }
496
497 /* Build the opcode, checking as we go that the operands match. */
498 for (args = insn->args; ; ++args)
499 {
500 if (fc > MAX_FIXUPS)
501 abort ();
502
503 switch (*args)
504 {
505
506 /* End of args. */
507 case '\0':
508 if (*s == '\0')
509 match = 1;
510 break;
511
512 /* These must match exactly. */
513 case '+':
514 case '(':
515 case ')':
516 case ',':
517 case ' ':
518 if (*s++ == *args)
519 continue;
520 break;
521
522 /* Must be at least one digit. */
523 case '#':
524 if (ISDIGIT (*s++))
525 {
526 while (ISDIGIT (*s))
527 ++s;
528 continue;
529 }
530 break;
531
532 /* Next operand must be a register. */
533 case '1':
534 case '2':
535 case 'd':
536 /* Check for register prefix if necessary. */
537 if (reg_prefix && *s != reg_prefix)
538 goto error;
539 else if (reg_prefix)
540 s++;
541
542 switch (*s)
543 {
544 /* Frame pointer. */
545 case 'f':
546 s++;
547 if (*s++ == 'p')
548 {
549 mask = 0x3;
550 break;
551 }
552 goto error;
553
554 /* Stack pointer. */
555 case 's':
556 s++;
557 if (*s++ == 'p')
558 {
559 mask = 0x2;
560 break;
561 }
562 goto error;
563
564 /* Any register r0..r31. */
565 case 'r':
566 s++;
567 if (!ISDIGIT (c = *s++))
568 {
569 goto error;
570 }
571 if (ISDIGIT (*s))
572 {
573 if ((c = 10 * (c - '0') + (*s++ - '0')) >= 32)
574 goto error;
575 }
576 else
577 c -= '0';
578 mask = c;
579 break;
580
581 /* Not this opcode. */
582 default:
583 goto error;
584 }
585
586 /* Obtained the register, now place it in the opcode. */
587 switch (*args)
588 {
589 case '1':
590 opcode |= mask << 11;
591 continue;
592
593 case '2':
594 opcode |= mask << 21;
595 continue;
596
597 case 'd':
598 opcode |= mask << 16;
599 continue;
600
601 }
602 break;
603
604 /* Next operand is a floating point register. */
605 case 'e':
606 case 'f':
607 case 'g':
608 /* Check for register prefix if necessary. */
609 if (reg_prefix && *s != reg_prefix)
610 goto error;
611 else if (reg_prefix)
612 s++;
613
614 if (*s++ == 'f' && ISDIGIT (*s))
615 {
616 mask = *s++;
617 if (ISDIGIT (*s))
618 {
619 mask = 10 * (mask - '0') + (*s++ - '0');
620 if (mask >= 32)
621 {
622 break;
623 }
624 }
625 else
626 mask -= '0';
627
628 switch (*args)
629 {
630
631 case 'e':
632 opcode |= mask << 11;
633 continue;
634
635 case 'f':
636 opcode |= mask << 21;
637 continue;
638
639 case 'g':
640 opcode |= mask << 16;
641 if ((opcode & (1 << 10)) && mask != 0
642 && (mask == ((opcode >> 11) & 0x1f)))
643 as_warn (_("Pipelined instruction: fsrc1 = fdest"));
644 continue;
645 }
646 }
647 break;
648
649 /* Next operand must be a control register. */
650 case 'c':
651 /* Check for register prefix if necessary. */
652 if (reg_prefix && *s != reg_prefix)
653 goto error;
654 else if (reg_prefix)
655 s++;
656
657 if (strncmp (s, "fir", 3) == 0)
658 {
659 opcode |= 0x0 << 21;
660 s += 3;
661 continue;
662 }
663 if (strncmp (s, "psr", 3) == 0)
664 {
665 opcode |= 0x1 << 21;
666 s += 3;
667 continue;
668 }
669 if (strncmp (s, "dirbase", 7) == 0)
670 {
671 opcode |= 0x2 << 21;
672 s += 7;
673 continue;
674 }
675 if (strncmp (s, "db", 2) == 0)
676 {
677 opcode |= 0x3 << 21;
678 s += 2;
679 continue;
680 }
681 if (strncmp (s, "fsr", 3) == 0)
682 {
683 opcode |= 0x4 << 21;
684 s += 3;
685 continue;
686 }
687 if (strncmp (s, "epsr", 4) == 0)
688 {
689 opcode |= 0x5 << 21;
690 s += 4;
691 continue;
692 }
693 /* The remaining control registers are XP only. */
694 if (target_xp && strncmp (s, "bear", 4) == 0)
695 {
696 opcode |= 0x6 << 21;
697 s += 4;
698 continue;
699 }
700 if (target_xp && strncmp (s, "ccr", 3) == 0)
701 {
702 opcode |= 0x7 << 21;
703 s += 3;
704 continue;
705 }
706 if (target_xp && strncmp (s, "p0", 2) == 0)
707 {
708 opcode |= 0x8 << 21;
709 s += 2;
710 continue;
711 }
712 if (target_xp && strncmp (s, "p1", 2) == 0)
713 {
714 opcode |= 0x9 << 21;
715 s += 2;
716 continue;
717 }
718 if (target_xp && strncmp (s, "p2", 2) == 0)
719 {
720 opcode |= 0xa << 21;
721 s += 2;
722 continue;
723 }
724 if (target_xp && strncmp (s, "p3", 2) == 0)
725 {
726 opcode |= 0xb << 21;
727 s += 2;
728 continue;
729 }
730 break;
731
732 /* 5-bit immediate in src1. */
733 case '5':
734 if (! i860_get_expression (s))
735 {
736 s = expr_end;
737 the_insn.fi[fc].fup |= OP_IMM_U5;
738 fc++;
739 continue;
740 }
741 break;
742
743 /* 26-bit immediate, relative branch (lbroff). */
744 case 'l':
745 the_insn.fi[fc].pcrel = 1;
746 the_insn.fi[fc].fup |= OP_IMM_BR26;
747 goto immediate;
748
749 /* 16-bit split immediate, relative branch (sbroff). */
750 case 'r':
751 the_insn.fi[fc].pcrel = 1;
752 the_insn.fi[fc].fup |= OP_IMM_BR16;
753 goto immediate;
754
755 /* 16-bit split immediate. */
756 case 's':
757 the_insn.fi[fc].fup |= OP_IMM_SPLIT16;
758 goto immediate;
759
760 /* 16-bit split immediate, byte aligned (st.b). */
761 case 'S':
762 the_insn.fi[fc].fup |= OP_IMM_SPLIT16;
763 goto immediate;
764
765 /* 16-bit split immediate, half-word aligned (st.s). */
766 case 'T':
767 the_insn.fi[fc].fup |= (OP_IMM_SPLIT16 | OP_ENCODE1 | OP_ALIGN2);
768 goto immediate;
769
770 /* 16-bit split immediate, word aligned (st.l). */
771 case 'U':
772 the_insn.fi[fc].fup |= (OP_IMM_SPLIT16 | OP_ENCODE1 | OP_ALIGN4);
773 goto immediate;
774
775 /* 16-bit immediate. */
776 case 'i':
777 the_insn.fi[fc].fup |= OP_IMM_S16;
778 goto immediate;
779
780 /* 16-bit immediate, byte aligned (ld.b). */
781 case 'I':
782 the_insn.fi[fc].fup |= OP_IMM_S16;
783 goto immediate;
784
785 /* 16-bit immediate, half-word aligned (ld.s). */
786 case 'J':
787 the_insn.fi[fc].fup |= (OP_IMM_S16 | OP_ENCODE1 | OP_ALIGN2);
788 goto immediate;
789
790 /* 16-bit immediate, word aligned (ld.l, {p}fld.l, fst.l). */
791 case 'K':
792 if (insn->name[0] == 'l')
793 the_insn.fi[fc].fup |= (OP_IMM_S16 | OP_ENCODE1 | OP_ALIGN4);
794 else
795 the_insn.fi[fc].fup |= (OP_IMM_S16 | OP_ENCODE2 | OP_ALIGN4);
796 goto immediate;
797
798 /* 16-bit immediate, double-word aligned ({p}fld.d, fst.d). */
799 case 'L':
800 the_insn.fi[fc].fup |= (OP_IMM_S16 | OP_ENCODE3 | OP_ALIGN8);
801 goto immediate;
802
803 /* 16-bit immediate, quad-word aligned (fld.q, fst.q). */
804 case 'M':
805 the_insn.fi[fc].fup |= (OP_IMM_S16 | OP_ENCODE3 | OP_ALIGN16);
806
807 /*FALLTHROUGH*/
808
809 /* Handle the immediate for either the Intel syntax or
810 SVR4 syntax. The Intel syntax is "ha%immediate"
811 whereas SVR4 syntax is "[immediate]@ha". */
812 immediate:
813 if (target_intel_syntax == 0)
814 {
815 /* AT&T/SVR4 syntax. */
816 if (*s == ' ')
817 s++;
818
819 /* Note that if i860_get_expression() fails, we will still
820 have created U entries in the symbol table for the
821 'symbols' in the input string. Try not to create U
822 symbols for registers, etc. */
823 if (! i860_get_expression (s))
824 s = expr_end;
825 else
826 goto error;
827
828 if (strncmp (s, "@ha", 3) == 0)
829 {
830 the_insn.fi[fc].fup |= OP_SEL_HA;
831 s += 3;
832 }
833 else if (strncmp (s, "@h", 2) == 0)
834 {
835 the_insn.fi[fc].fup |= OP_SEL_H;
836 s += 2;
837 }
838 else if (strncmp (s, "@l", 2) == 0)
839 {
840 the_insn.fi[fc].fup |= OP_SEL_L;
841 s += 2;
842 }
843 else if (strncmp (s, "@gotoff", 7) == 0
844 || strncmp (s, "@GOTOFF", 7) == 0)
845 {
846 as_bad (_("Assembler does not yet support PIC"));
847 the_insn.fi[fc].fup |= OP_SEL_GOTOFF;
848 s += 7;
849 }
850 else if (strncmp (s, "@got", 4) == 0
851 || strncmp (s, "@GOT", 4) == 0)
852 {
853 as_bad (_("Assembler does not yet support PIC"));
854 the_insn.fi[fc].fup |= OP_SEL_GOT;
855 s += 4;
856 }
857 else if (strncmp (s, "@plt", 4) == 0
858 || strncmp (s, "@PLT", 4) == 0)
859 {
860 as_bad (_("Assembler does not yet support PIC"));
861 the_insn.fi[fc].fup |= OP_SEL_PLT;
862 s += 4;
863 }
864
865 the_insn.expand = insn->expand;
866 fc++;
867
868 continue;
869 }
870 else
871 {
872 /* Intel syntax. */
873 if (*s == ' ')
874 s++;
875 if (strncmp (s, "ha%", 3) == 0)
876 {
877 the_insn.fi[fc].fup |= OP_SEL_HA;
878 s += 3;
879 }
880 else if (strncmp (s, "h%", 2) == 0)
881 {
882 the_insn.fi[fc].fup |= OP_SEL_H;
883 s += 2;
884 }
885 else if (strncmp (s, "l%", 2) == 0)
886 {
887 the_insn.fi[fc].fup |= OP_SEL_L;
888 s += 2;
889 }
890 the_insn.expand = insn->expand;
891
892 /* Note that if i860_get_expression() fails, we will still
893 have created U entries in the symbol table for the
894 'symbols' in the input string. Try not to create U
895 symbols for registers, etc. */
896 if (! i860_get_expression (s))
897 s = expr_end;
898 else
899 goto error;
900
901 fc++;
902 continue;
903 }
904 break;
905
906 default:
907 as_fatal (_("failed sanity check."));
908 }
909 break;
910 }
911 error:
912 if (match == 0)
913 {
914 /* Args don't match. */
915 if (insn[1].name != NULL
916 && ! strcmp (insn->name, insn[1].name))
917 {
918 ++insn;
919 s = args_start;
920 continue;
921 }
922 else
923 {
924 as_bad (_("Illegal operands for %s"), insn->name);
925 return;
926 }
927 }
928 break;
929 }
930
931 /* Set the dual bit on this instruction if necessary. */
932 if (dual_mode != DUAL_OFF)
933 {
934 if ((opcode & 0xfc000000) == 0x48000000 || opcode == 0xb0000000)
935 {
936 opcode |= (1 << 9);
937 if (dual_mode == DUAL_DDOT)
938 dual_mode = DUAL_OFF;
939 else if (dual_mode == DUAL_ONDDOT)
940 dual_mode = DUAL_ON;
941 }
942 else if (dual_mode == DUAL_DDOT || dual_mode == DUAL_ONDDOT)
943 as_bad (_("Prefix 'd.' invalid for instruction `%s'"), insn->name);
944 }
945
946 the_insn.opcode = opcode;
947
948 /* Only recognize XP instructions when the user has requested it. */
949 if (insn->expand == XP_ONLY && ! target_xp)
950 as_bad (_("Unknown opcode: `%s'"), insn->name);
951 }
952
953 static int
954 i860_get_expression (char *str)
955 {
956 char *save_in;
957 segT seg;
958
959 save_in = input_line_pointer;
960 input_line_pointer = str;
961 seg = expression (&the_insn.fi[fc].exp);
962 if (seg != absolute_section
963 && seg != undefined_section
964 && ! SEG_NORMAL (seg))
965 {
966 the_insn.error = _("bad segment");
967 expr_end = input_line_pointer;
968 input_line_pointer = save_in;
969 return 1;
970 }
971 expr_end = input_line_pointer;
972 input_line_pointer = save_in;
973 return 0;
974 }
975
976 /* Turn a string in input_line_pointer into a floating point constant of
977 type TYPE, and store the appropriate bytes in *LITP. The number of
978 LITTLENUMS emitted is stored in *SIZEP. An error message is returned,
979 or NULL on OK. */
980
981 /* Equal to MAX_PRECISION in atof-ieee.c. */
982 #define MAX_LITTLENUMS 6
983
984 char *
985 md_atof (int type, char *litP, int *sizeP)
986 {
987 int prec;
988 LITTLENUM_TYPE words[MAX_LITTLENUMS];
989 LITTLENUM_TYPE *wordP;
990 char *t;
991
992 switch (type)
993 {
994 case 'f':
995 case 'F':
996 case 's':
997 case 'S':
998 prec = 2;
999 break;
1000
1001 case 'd':
1002 case 'D':
1003 case 'r':
1004 case 'R':
1005 prec = 4;
1006 break;
1007
1008 case 'x':
1009 case 'X':
1010 prec = 6;
1011 break;
1012
1013 case 'p':
1014 case 'P':
1015 prec = 6;
1016 break;
1017
1018 default:
1019 *sizeP = 0;
1020 return _("Bad call to MD_ATOF()");
1021 }
1022 t = atof_ieee (input_line_pointer, type, words);
1023 if (t)
1024 input_line_pointer = t;
1025 *sizeP = prec * sizeof (LITTLENUM_TYPE);
1026 for (wordP = words; prec--;)
1027 {
1028 md_number_to_chars (litP, (long) (*wordP++), sizeof (LITTLENUM_TYPE));
1029 litP += sizeof (LITTLENUM_TYPE);
1030 }
1031 return 0;
1032 }
1033
1034 /* Write out in current endian mode. */
1035 void
1036 md_number_to_chars (char *buf, valueT val, int n)
1037 {
1038 if (target_big_endian)
1039 number_to_chars_bigendian (buf, val, n);
1040 else
1041 number_to_chars_littleendian (buf, val, n);
1042 }
1043
1044 /* This should never be called for i860. */
1045 int
1046 md_estimate_size_before_relax (register fragS *fragP ATTRIBUTE_UNUSED,
1047 segT segtype ATTRIBUTE_UNUSED)
1048 {
1049 as_fatal (_("i860_estimate_size_before_relax\n"));
1050 }
1051
1052 #ifdef DEBUG_I860
1053 static void
1054 print_insn (struct i860_it *insn)
1055 {
1056 if (insn->error)
1057 fprintf (stderr, "ERROR: %s\n", insn->error);
1058
1059 fprintf (stderr, "opcode = 0x%08lx\t", insn->opcode);
1060 fprintf (stderr, "expand = 0x%x\t", insn->expand);
1061 fprintf (stderr, "reloc = %s\t\n",
1062 bfd_get_reloc_code_name (insn->reloc));
1063 fprintf (stderr, "exp = {\n");
1064 fprintf (stderr, "\t\tX_add_symbol = %s\n",
1065 insn->exp.X_add_symbol ?
1066 (S_GET_NAME (insn->exp.X_add_symbol) ?
1067 S_GET_NAME (insn->exp.X_add_symbol) : "???") : "0");
1068 fprintf (stderr, "\t\tX_op_symbol = %s\n",
1069 insn->exp.X_op_symbol ?
1070 (S_GET_NAME (insn->exp.X_op_symbol) ?
1071 S_GET_NAME (insn->exp.X_op_symbol) : "???") : "0");
1072 fprintf (stderr, "\t\tX_add_number = %lx\n",
1073 insn->exp.X_add_number);
1074 fprintf (stderr, "}\n");
1075 }
1076 #endif /* DEBUG_I860 */
1077
1078 \f
1079 #ifdef OBJ_ELF
1080 const char *md_shortopts = "VQ:";
1081 #else
1082 const char *md_shortopts = "";
1083 #endif
1084
1085 #define OPTION_EB (OPTION_MD_BASE + 0)
1086 #define OPTION_EL (OPTION_MD_BASE + 1)
1087 #define OPTION_WARN_EXPAND (OPTION_MD_BASE + 2)
1088 #define OPTION_XP (OPTION_MD_BASE + 3)
1089 #define OPTION_INTEL_SYNTAX (OPTION_MD_BASE + 4)
1090
1091 struct option md_longopts[] = {
1092 { "EB", no_argument, NULL, OPTION_EB },
1093 { "EL", no_argument, NULL, OPTION_EL },
1094 { "mwarn-expand", no_argument, NULL, OPTION_WARN_EXPAND },
1095 { "mxp", no_argument, NULL, OPTION_XP },
1096 { "mintel-syntax",no_argument, NULL, OPTION_INTEL_SYNTAX },
1097 { NULL, no_argument, NULL, 0 }
1098 };
1099 size_t md_longopts_size = sizeof (md_longopts);
1100
1101 int
1102 md_parse_option (int c, char *arg ATTRIBUTE_UNUSED)
1103 {
1104 switch (c)
1105 {
1106 case OPTION_EB:
1107 target_big_endian = 1;
1108 break;
1109
1110 case OPTION_EL:
1111 target_big_endian = 0;
1112 break;
1113
1114 case OPTION_WARN_EXPAND:
1115 target_warn_expand = 1;
1116 break;
1117
1118 case OPTION_XP:
1119 target_xp = 1;
1120 break;
1121
1122 case OPTION_INTEL_SYNTAX:
1123 target_intel_syntax = 1;
1124 break;
1125
1126 #ifdef OBJ_ELF
1127 /* SVR4 argument compatibility (-V): print version ID. */
1128 case 'V':
1129 print_version_id ();
1130 break;
1131
1132 /* SVR4 argument compatibility (-Qy, -Qn): controls whether
1133 a .comment section should be emitted or not (ignored). */
1134 case 'Q':
1135 break;
1136 #endif
1137
1138 default:
1139 return 0;
1140 }
1141
1142 return 1;
1143 }
1144
1145 void
1146 md_show_usage (FILE *stream)
1147 {
1148 fprintf (stream, _("\
1149 -EL generate code for little endian mode (default)\n\
1150 -EB generate code for big endian mode\n\
1151 -mwarn-expand warn if pseudo operations are expanded\n\
1152 -mxp enable i860XP support (disabled by default)\n\
1153 -mintel-syntax enable Intel syntax (default to AT&T/SVR4)\n"));
1154 #ifdef OBJ_ELF
1155 /* SVR4 compatibility flags. */
1156 fprintf (stream, _("\
1157 -V print assembler version number\n\
1158 -Qy, -Qn ignored\n"));
1159 #endif
1160 }
1161
1162 \f
1163 /* We have no need to default values of symbols. */
1164 symbolS *
1165 md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
1166 {
1167 return 0;
1168 }
1169
1170 /* The i860 denotes auto-increment with '++'. */
1171 void
1172 md_operand (expressionS *exp)
1173 {
1174 char *s;
1175
1176 for (s = input_line_pointer; *s; s++)
1177 {
1178 if (s[0] == '+' && s[1] == '+')
1179 {
1180 input_line_pointer += 2;
1181 exp->X_op = O_register;
1182 break;
1183 }
1184 }
1185 }
1186
1187 /* Round up a section size to the appropriate boundary. */
1188 valueT
1189 md_section_align (segT segment ATTRIBUTE_UNUSED,
1190 valueT size ATTRIBUTE_UNUSED)
1191 {
1192 /* Byte alignment is fine. */
1193 return size;
1194 }
1195
1196 /* On the i860, a PC-relative offset is relative to the address of the
1197 of the offset plus its size. */
1198 long
1199 md_pcrel_from (fixS *fixP)
1200 {
1201 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
1202 }
1203
1204 /* Determine the relocation needed for non PC-relative 16-bit immediates.
1205 Also adjust the given immediate as necessary. Finally, check that
1206 all constraints (such as alignment) are satisfied. */
1207 static bfd_reloc_code_real_type
1208 obtain_reloc_for_imm16 (fixS *fix, long *val)
1209 {
1210 valueT fup = fix->fx_addnumber;
1211 bfd_reloc_code_real_type reloc;
1212
1213 if (fix->fx_pcrel)
1214 abort ();
1215
1216 /* Check alignment restrictions. */
1217 if ((fup & OP_ALIGN2) && (*val & 0x1))
1218 as_bad_where (fix->fx_file, fix->fx_line,
1219 _("This immediate requires 0 MOD 2 alignment"));
1220 else if ((fup & OP_ALIGN4) && (*val & 0x3))
1221 as_bad_where (fix->fx_file, fix->fx_line,
1222 _("This immediate requires 0 MOD 4 alignment"));
1223 else if ((fup & OP_ALIGN8) && (*val & 0x7))
1224 as_bad_where (fix->fx_file, fix->fx_line,
1225 _("This immediate requires 0 MOD 8 alignment"));
1226 else if ((fup & OP_ALIGN16) && (*val & 0xf))
1227 as_bad_where (fix->fx_file, fix->fx_line,
1228 _("This immediate requires 0 MOD 16 alignment"));
1229
1230 if (fup & OP_SEL_HA)
1231 {
1232 *val = (*val >> 16) + (*val & 0x8000 ? 1 : 0);
1233 reloc = BFD_RELOC_860_HIGHADJ;
1234 }
1235 else if (fup & OP_SEL_H)
1236 {
1237 *val >>= 16;
1238 reloc = BFD_RELOC_860_HIGH;
1239 }
1240 else if (fup & OP_SEL_L)
1241 {
1242 int num_encode;
1243 if (fup & OP_IMM_SPLIT16)
1244 {
1245 if (fup & OP_ENCODE1)
1246 {
1247 num_encode = 1;
1248 reloc = BFD_RELOC_860_SPLIT1;
1249 }
1250 else if (fup & OP_ENCODE2)
1251 {
1252 num_encode = 2;
1253 reloc = BFD_RELOC_860_SPLIT2;
1254 }
1255 else
1256 {
1257 num_encode = 0;
1258 reloc = BFD_RELOC_860_SPLIT0;
1259 }
1260 }
1261 else
1262 {
1263 if (fup & OP_ENCODE1)
1264 {
1265 num_encode = 1;
1266 reloc = BFD_RELOC_860_LOW1;
1267 }
1268 else if (fup & OP_ENCODE2)
1269 {
1270 num_encode = 2;
1271 reloc = BFD_RELOC_860_LOW2;
1272 }
1273 else if (fup & OP_ENCODE3)
1274 {
1275 num_encode = 3;
1276 reloc = BFD_RELOC_860_LOW3;
1277 }
1278 else
1279 {
1280 num_encode = 0;
1281 reloc = BFD_RELOC_860_LOW0;
1282 }
1283 }
1284
1285 /* Preserve size encode bits. */
1286 *val &= ~((1 << num_encode) - 1);
1287 }
1288 else
1289 {
1290 /* No selector. What reloc do we generate (???)? */
1291 reloc = BFD_RELOC_32;
1292 }
1293
1294 return reloc;
1295 }
1296
1297 /* Attempt to simplify or eliminate a fixup. To indicate that a fixup
1298 has been eliminated, set fix->fx_done. If fix->fx_addsy is non-NULL,
1299 we will have to generate a reloc entry. */
1300
1301 void
1302 md_apply_fix3 (fixS *fix, valueT *valP, segT seg ATTRIBUTE_UNUSED)
1303 {
1304 char *buf;
1305 long val = *valP;
1306 unsigned long insn;
1307 valueT fup;
1308
1309 buf = fix->fx_frag->fr_literal + fix->fx_where;
1310
1311 /* Recall that earlier we stored the opcode little-endian. */
1312 insn = bfd_getl32 (buf);
1313
1314 /* We stored a fix-up in this oddly-named scratch field. */
1315 fup = fix->fx_addnumber;
1316
1317 /* Determine the necessary relocations as well as inserting an
1318 immediate into the instruction. */
1319 if (fup & OP_IMM_U5)
1320 {
1321 if (val & ~0x1f)
1322 as_bad_where (fix->fx_file, fix->fx_line,
1323 _("5-bit immediate too large"));
1324 if (fix->fx_addsy)
1325 as_bad_where (fix->fx_file, fix->fx_line,
1326 _("5-bit field must be absolute"));
1327
1328 insn |= (val & 0x1f) << 11;
1329 bfd_putl32 (insn, buf);
1330 fix->fx_r_type = BFD_RELOC_NONE;
1331 fix->fx_done = 1;
1332 }
1333 else if (fup & OP_IMM_S16)
1334 {
1335 fix->fx_r_type = obtain_reloc_for_imm16 (fix, &val);
1336
1337 /* Insert the immediate. */
1338 if (fix->fx_addsy)
1339 fix->fx_done = 0;
1340 else
1341 {
1342 insn |= val & 0xffff;
1343 bfd_putl32 (insn, buf);
1344 fix->fx_r_type = BFD_RELOC_NONE;
1345 fix->fx_done = 1;
1346 }
1347 }
1348 else if (fup & OP_IMM_U16)
1349 abort ();
1350
1351 else if (fup & OP_IMM_SPLIT16)
1352 {
1353 fix->fx_r_type = obtain_reloc_for_imm16 (fix, &val);
1354
1355 /* Insert the immediate. */
1356 if (fix->fx_addsy)
1357 fix->fx_done = 0;
1358 else
1359 {
1360 insn |= val & 0x7ff;
1361 insn |= (val & 0xf800) << 5;
1362 bfd_putl32 (insn, buf);
1363 fix->fx_r_type = BFD_RELOC_NONE;
1364 fix->fx_done = 1;
1365 }
1366 }
1367 else if (fup & OP_IMM_BR16)
1368 {
1369 if (val & 0x3)
1370 as_bad_where (fix->fx_file, fix->fx_line,
1371 _("A branch offset requires 0 MOD 4 alignment"));
1372
1373 val = val >> 2;
1374
1375 /* Insert the immediate. */
1376 if (fix->fx_addsy)
1377 {
1378 fix->fx_done = 0;
1379 fix->fx_r_type = BFD_RELOC_860_PC16;
1380 }
1381 else
1382 {
1383 insn |= (val & 0x7ff);
1384 insn |= ((val & 0xf800) << 5);
1385 bfd_putl32 (insn, buf);
1386 fix->fx_r_type = BFD_RELOC_NONE;
1387 fix->fx_done = 1;
1388 }
1389 }
1390 else if (fup & OP_IMM_BR26)
1391 {
1392 if (val & 0x3)
1393 as_bad_where (fix->fx_file, fix->fx_line,
1394 _("A branch offset requires 0 MOD 4 alignment"));
1395
1396 val >>= 2;
1397
1398 /* Insert the immediate. */
1399 if (fix->fx_addsy)
1400 {
1401 fix->fx_r_type = BFD_RELOC_860_PC26;
1402 fix->fx_done = 0;
1403 }
1404 else
1405 {
1406 insn |= (val & 0x3ffffff);
1407 bfd_putl32 (insn, buf);
1408 fix->fx_r_type = BFD_RELOC_NONE;
1409 fix->fx_done = 1;
1410 }
1411 }
1412 else if (fup != OP_NONE)
1413 {
1414 as_bad_where (fix->fx_file, fix->fx_line,
1415 _("Unrecognized fix-up (0x%08lx)"), (unsigned long) fup);
1416 abort ();
1417 }
1418 else
1419 {
1420 /* I believe only fix-ups such as ".long .ep.main-main+0xc8000000"
1421 reach here (???). */
1422 if (fix->fx_addsy)
1423 {
1424 fix->fx_r_type = BFD_RELOC_32;
1425 fix->fx_done = 0;
1426 }
1427 else
1428 {
1429 insn |= (val & 0xffffffff);
1430 bfd_putl32 (insn, buf);
1431 fix->fx_r_type = BFD_RELOC_NONE;
1432 fix->fx_done = 1;
1433 }
1434 }
1435 }
1436
1437 /* Generate a machine dependent reloc from a fixup. */
1438 arelent*
1439 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED,
1440 fixS *fixp)
1441 {
1442 arelent *reloc;
1443
1444 reloc = xmalloc (sizeof (*reloc));
1445 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
1446 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1447 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
1448 reloc->addend = fixp->fx_offset;
1449 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
1450
1451 if (! reloc->howto)
1452 {
1453 as_bad_where (fixp->fx_file, fixp->fx_line,
1454 "Cannot represent %s relocation in object file",
1455 bfd_get_reloc_code_name (fixp->fx_r_type));
1456 }
1457 return reloc;
1458 }