* config/tc-tic80.c (build_insn): Handle instructions that have
[deliverable/binutils-gdb.git] / gas / config / tc-tic80.c
1 /* tc-tic80.c -- Assemble for the TI TMS320C80 (MV)
2 Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3
4 This file is part of GAS, the GNU Assembler.
5
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 2, or (at your option)
9 any later version.
10
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.
15
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, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
20
21 #include "as.h"
22 #include "opcode/tic80.h"
23
24 #define internal_error(what) \
25 as_fatal("internal error:%s:%d: %s\n",__FILE__,__LINE__,what)
26 #define internal_error_a(what,arg) \
27 as_fatal("internal error:%s:%d: %s %d\n",__FILE__,__LINE__,what,arg)
28
29 \f
30 /* Generic assembler global variables which must be defined by all targets. */
31
32 /* Characters which always start a comment. */
33 const char comment_chars[] = ";";
34
35 /* Characters which start a comment at the beginning of a line. */
36 const char line_comment_chars[] = ";*#";
37
38 /* Characters which may be used to separate multiple commands on a single
39 line. The semicolon is such a character by default and should not be
40 explicitly listed. */
41 const char line_separator_chars[] = "";
42
43 /* Characters which are used to indicate an exponent in a floating
44 point number. */
45 const char EXP_CHARS[] = "eE";
46
47 /* Characters which mean that a number is a floating point constant,
48 as in 0f1.0. */
49 const char FLT_CHARS[] = "fF";
50
51 /* This table describes all the machine specific pseudo-ops the assembler
52 has to support. The fields are:
53
54 pseudo-op name without dot
55 function to call to execute this pseudo-op
56 integer arg to pass to the function */
57
58 extern void obj_coff_section ();
59
60 const pseudo_typeS md_pseudo_table[] =
61 {
62 { "align", s_align_bytes, 4 }, /* Do byte alignment, default is a 4 byte boundary */
63 { "word", cons, 4 }, /* FIXME: Should this be machine independent? */
64 { "bss", s_lcomm_bytes, 1 },
65 { "sect", obj_coff_section, 0}, /* For compatibility with TI tools */
66 { "section", obj_coff_section, 0}, /* Standard COFF .section pseudo-op */
67 { NULL, NULL, 0 }
68 };
69
70 /* Opcode hash table. */
71 static struct hash_control *tic80_hash;
72
73 static struct tic80_opcode * find_opcode PARAMS ((struct tic80_opcode *, expressionS []));
74 static void build_insn PARAMS ((struct tic80_opcode *, expressionS *));
75 static int get_operands PARAMS ((expressionS exp[]));
76 static int const_overflow PARAMS ((unsigned long num, int bits, int flags));
77
78 \f
79 int
80 md_estimate_size_before_relax (fragP, segment_type)
81 fragS *fragP;
82 segT segment_type;
83 {
84 internal_error ("Relaxation is a luxury we can't afford");
85 return (-1);
86 }
87
88 /* We have no need to default values of symbols. */
89
90 /* ARGSUSED */
91 symbolS *
92 md_undefined_symbol (name)
93 char *name;
94 {
95 return 0;
96 }
97
98 /* Turn a string in input_line_pointer into a floating point constant of type
99 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
100 emitted is stored in *sizeP . An error message is returned, or NULL on OK.
101 */
102
103 #define MAX_LITTLENUMS 4
104
105 char *
106 md_atof (type, litP, sizeP)
107 int type;
108 char *litP;
109 int *sizeP;
110 {
111 int prec;
112 LITTLENUM_TYPE words[MAX_LITTLENUMS];
113 LITTLENUM_TYPE *wordP;
114 char *t;
115 char *atof_ieee ();
116
117 switch (type)
118 {
119 case 'f':
120 case 'F':
121 case 's':
122 case 'S':
123 prec = 2;
124 break;
125
126 case 'd':
127 case 'D':
128 case 'r':
129 case 'R':
130 prec = 4;
131 break;
132
133 default:
134 *sizeP = 0;
135 return "bad call to md_atof ()";
136 }
137
138 t = atof_ieee (input_line_pointer, type, words);
139 if (t)
140 {
141 input_line_pointer = t;
142 }
143
144 *sizeP = prec * sizeof (LITTLENUM_TYPE);
145
146 for (wordP = words; prec--;)
147 {
148 md_number_to_chars (litP, (valueT) (*wordP++), sizeof (LITTLENUM_TYPE));
149 litP += sizeof (LITTLENUM_TYPE);
150 }
151 return (NULL);
152 }
153
154 /* Check to see if the constant value in NUM will fit in a field of
155 width BITS if it has flags FLAGS. */
156
157 static int
158 const_overflow (num, bits, flags)
159 unsigned long num;
160 int bits;
161 int flags;
162 {
163 long min, max;
164 int retval = 0;
165
166 /* Only need to check fields less than 32 bits wide */
167 if (bits < 32)
168 if (flags & TIC80_OPERAND_SIGNED)
169 {
170 max = (1 << (bits - 1)) - 1;
171 min = - (1 << (bits - 1));
172 retval = ((long) num > max) || ((long) num < min);
173 }
174 else
175 {
176 max = (1 << bits) - 1;
177 min = 0;
178 retval = (num > max) || (num < min);
179 }
180 return (retval);
181 }
182
183 /* get_operands() parses a string of operands and fills in a passed array of
184 expressions in EXP.
185
186 Note that we use O_absent expressions to record additional information
187 about the previous non-O_absent expression, such as ":m" or ":s"
188 modifiers or register numbers enclosed in parens like "(r10)".
189
190 Returns the number of expressions that were placed in EXP.
191
192 */
193
194 static int
195 get_operands (exp)
196 expressionS exp[];
197 {
198 char *p = input_line_pointer;
199 int numexp = 0;
200 int mflag = 0;
201 int sflag = 0;
202 int parens = 0;
203
204 while (*p)
205 {
206 /* Skip leading whitespace */
207 while (*p == ' ' || *p == '\t' || *p == ',')
208 {
209 p++;
210 }
211
212 /* Check to see if we have any operands left to parse */
213 if (*p == 0 || *p == '\n' || *p == '\r')
214 {
215 break;
216 }
217
218 /* Notice scaling or direct memory operand modifiers and save them in
219 an O_absent expression after the expression that they modify. */
220
221 if (*p == ':')
222 {
223 p++;
224 exp[numexp].X_op = O_absent;
225 if (*p == 'm')
226 {
227 p++;
228 /* This is a ":m" modifier */
229 exp[numexp].X_add_number = TIC80_OPERAND_M_SI | TIC80_OPERAND_M_LI;
230 }
231 else if (*p == 's')
232 {
233 p++;
234 /* This is a ":s" modifier */
235 exp[numexp].X_add_number = TIC80_OPERAND_SCALED;
236 }
237 else
238 {
239 as_bad ("':' not followed by 'm' or 's'");
240 }
241 numexp++;
242 continue;
243 }
244
245 /* Handle leading '(' on operands that use them, by recording that we
246 have entered a paren nesting level and then continuing. We complain
247 about multiple nesting. */
248
249 if (*p == '(')
250 {
251 if (++parens != 1)
252 {
253 as_bad ("paren nesting");
254 }
255 p++;
256 continue;
257 }
258
259 /* Handle trailing ')' on operands that use them, by reducing the
260 nesting level and then continuing. We complain if there were too
261 many closures. */
262
263 if (*p == ')')
264 {
265 /* Record that we have left a paren group and continue */
266 if (--parens < 0)
267 {
268 as_bad ("mismatched parenthesis");
269 }
270 p++;
271 continue;
272 }
273
274 /* Begin operand parsing at the current scan point. */
275
276 input_line_pointer = p;
277 expression (&exp[numexp]);
278
279 if (exp[numexp].X_op == O_illegal)
280 {
281 as_bad ("illegal operand");
282 }
283 else if (exp[numexp].X_op == O_absent)
284 {
285 as_bad ("missing operand");
286 }
287
288 numexp++;
289 p = input_line_pointer;
290 }
291
292 if (parens)
293 {
294 exp[numexp].X_op = O_absent;
295 exp[numexp++].X_add_number = TIC80_OPERAND_PARENS;
296 }
297
298 /* Mark the end of the valid operands with an illegal expression. */
299 exp[numexp].X_op = O_illegal;
300
301 return (numexp);
302 }
303
304 /* find_opcode() gets a pointer to the entry in the opcode table that
305 matches the instruction being assembled, or returns NULL if no such match
306 is found.
307
308 First it parses all the operands and save them as expressions. Note that
309 we use O_absent expressions to record additional information about the
310 previous non-O_absent expression, such as ":m" or ":s" modifiers or
311 register numbers enclosed in parens like "(r10)".
312
313 It then looks at all opcodes with the same name and uses the operands to
314 choose the correct opcode. */
315
316 static struct tic80_opcode *
317 find_opcode (opcode, myops)
318 struct tic80_opcode *opcode;
319 expressionS myops[];
320 {
321 int numexp; /* Number of expressions from parsing operands */
322 int expi; /* Index of current expression to match */
323 int opi; /* Index of current operand to match */
324 int match = 0; /* Set to 1 when an operand match is found */
325 struct tic80_opcode *opc = opcode; /* Pointer to current opcode table entry */
326 const struct tic80_opcode *end; /* Pointer to end of opcode table */
327
328 /* First parse all the operands so we only have to do it once. There may
329 be more expressions generated than there are operands. */
330
331 numexp = get_operands (myops);
332
333 /* For each opcode with the same name, try to match it against the parsed
334 operands. */
335
336 end = tic80_opcodes + tic80_num_opcodes;
337 while (!match && (opc < end) && (strcmp (opc -> name, opcode -> name) == 0))
338 {
339 /* Start off assuming a match. If we find a mismatch, then this is
340 reset and the operand/expr matching loop terminates with match
341 equal to zero, which allows us to try the next opcode. */
342
343 match = 1;
344
345 /* For each expression, try to match it against the current operand
346 for the current opcode. Upon any mismatch, we abandon further
347 matching for the current opcode table entry. */
348
349 for (expi = 0, opi = -1; (expi < numexp) && match; expi++)
350 {
351 int bits, flags, X_op, num;
352
353 X_op = myops[expi].X_op;
354 num = myops[expi].X_add_number;
355
356 /* The O_absent expressions apply to the same operand as the most
357 recent non O_absent expression. So only increment the operand
358 index when the current expression is not one of these special
359 expressions. */
360
361 if (X_op != O_absent)
362 {
363 opi++;
364 }
365
366 flags = tic80_operands[opc -> operands[opi]].flags;
367 bits = tic80_operands[opc -> operands[opi]].bits;
368
369 switch (X_op)
370 {
371 case O_register:
372 /* Also check that registers that are supposed to be even actually
373 are even. */
374 if (((flags & TIC80_OPERAND_GPR) != (num & TIC80_OPERAND_GPR)) ||
375 ((flags & TIC80_OPERAND_FPA) != (num & TIC80_OPERAND_FPA)) ||
376 ((flags & TIC80_OPERAND_CR) != (num & TIC80_OPERAND_CR)) ||
377 ((flags & TIC80_OPERAND_EVEN) && (num & 1)) ||
378 const_overflow (num & ~TIC80_OPERAND_MASK, bits, flags))
379 {
380 match = 0;
381 }
382 break;
383 case O_constant:
384 if ((flags & TIC80_OPERAND_ENDMASK) && (num == 32))
385 {
386 /* Endmask values of 0 and 32 give identical results */
387 num = 0;
388 }
389 if ((flags & (TIC80_OPERAND_FPA | TIC80_OPERAND_GPR)) ||
390 const_overflow (num, bits, flags))
391 {
392 match = 0;
393 }
394 break;
395 case O_symbol:
396 if ((bits < 32) && (flags & TIC80_OPERAND_PCREL))
397 {
398 /* For now we only allow PC relative relocations in the
399 short immediate fields, like the TI assembler.
400 FIXME: Should be able to choose "best-fit". */
401 }
402 else if ((bits == 32) /* && (flags & TIC80_OPERAND_BASEREL) */)
403 {
404 /* For now we only allow base relative relocations in
405 the long immediate fields, like the TI assembler.
406 FIXME: Should be able to choose "best-fit". */
407 }
408 else
409 {
410 /* Symbols that don't match one of the above cases are
411 rejected as an operand. */
412 match = 0;
413 }
414 break;
415 case O_absent:
416 /* If this is an O_absent expression, then it may be an expression that
417 supplies additional information about the operand, such as ":m" or
418 ":s" modifiers. Check to see that the operand matches this requirement. */
419 if (!((num & TIC80_OPERAND_M_SI) && (flags & TIC80_OPERAND_M_SI) ||
420 (num & TIC80_OPERAND_M_LI) && (flags & TIC80_OPERAND_M_LI) ||
421 (num & TIC80_OPERAND_SCALED) && (flags & TIC80_OPERAND_SCALED)))
422 {
423 match = 0;
424 }
425 break;
426 case O_big:
427 if ((num > 0) || !(flags & TIC80_OPERAND_FLOAT))
428 {
429 match = 0;
430 }
431 break;
432 case O_illegal:
433 case O_symbol_rva:
434 case O_uminus:
435 case O_bit_not:
436 case O_logical_not:
437 case O_multiply:
438 case O_divide:
439 case O_modulus:
440 case O_left_shift:
441 case O_right_shift:
442 case O_bit_inclusive_or:
443 case O_bit_or_not:
444 case O_bit_exclusive_or:
445 case O_bit_and:
446 case O_add:
447 case O_subtract:
448 case O_eq:
449 case O_ne:
450 case O_lt:
451 case O_le:
452 case O_ge:
453 case O_gt:
454 case O_logical_and:
455 case O_logical_or:
456 case O_max:
457 default:
458 internal_error_a ("unhandled expression type", X_op);
459 }
460 }
461 if (!match)
462 {
463 opc++;
464 }
465 }
466
467 return (match ? opc : NULL);
468
469 #if 0
470
471 /* Now search the opcode table table for one with operands that
472 matches what we've got. */
473
474 while (!match)
475 {
476 match = 1;
477 for (i = 0; opcode -> operands[i]; i++)
478 {
479 int flags = tic80_operands[opcode->operands[i]].flags;
480 int X_op = myops[i].X_op;
481 int num = myops[i].X_add_number;
482
483 if (X_op == 0)
484 {
485 match = 0;
486 break;
487 }
488
489 if (flags & (TIC80_OPERAND_GPR | TIC80_OPERAND_FPA | TIC80_OPERAND_CR))
490 {
491 if ((X_op != O_register) ||
492 ((flags & TIC80_OPERAND_GPR) != (num & TIC80_OPERAND_GPR)) ||
493 ((flags & TIC80_OPERAND_FPA) != (num & TIC80_OPERAND_FPA)) ||
494 ((flags & TIC80_OPERAND_CR) != (num & TIC80_OPERAND_CR)))
495 {
496 match=0;
497 break;
498 }
499 }
500
501 if (((flags & TIC80_OPERAND_MINUS) && ((X_op != O_absent) || (num != TIC80_OPERAND_MINUS))) ||
502 ((flags & TIC80_OPERAND_PLUS) && ((X_op != O_absent) || (num != TIC80_OPERAND_PLUS))) ||
503 ((flags & TIC80_OPERAND_ATMINUS) && ((X_op != O_absent) || (num != TIC80_OPERAND_ATMINUS))) ||
504 ((flags & TIC80_OPERAND_ATPAR) && ((X_op != O_absent) || (num != TIC80_OPERAND_ATPAR))) ||
505 ((flags & TIC80_OPERAND_ATSIGN) && ((X_op != O_absent) || (num != TIC80_OPERAND_ATSIGN))))
506 {
507 match=0;
508 break;
509 }
510 }
511 /* we're only done if the operands matched so far AND there
512 are no more to check */
513 if (match && myops[i].X_op==0)
514 break;
515 else
516 match = 0;
517
518 next_opcode = opcode+1;
519 if (next_opcode->opcode == 0)
520 break;
521 if (strcmp(next_opcode->name, opcode->name))
522 break;
523 opcode = next_opcode;
524 }
525
526 if (!match)
527 {
528 as_bad ("bad opcode or operands");
529 return (0);
530 }
531
532 /* Check that all registers that are required to be even are. */
533 /* Also, if any operands were marked as registers, but were really symbols */
534 /* fix that here. */
535 for (i=0; opcode->operands[i]; i++)
536 {
537 if ((tic80_operands[opcode->operands[i]].flags & TIC80_OPERAND_EVEN) &&
538 (myops[i].X_add_number & 1))
539 as_fatal ("Register number must be EVEN");
540 if (myops[i].X_op == O_register)
541 {
542 if (!(tic80_operands[opcode->operands[i]].flags & TIC80_OPERAND_REG))
543 {
544 myops[i].X_op = O_symbol;
545 myops[i].X_add_symbol = symbol_find_or_make ((char *)myops[i].X_op_symbol);
546 myops[i].X_add_number = 0;
547 myops[i].X_op_symbol = NULL;
548 }
549 }
550 }
551
552 #endif
553 }
554
555 /* build_insn takes a pointer to the opcode entry in the opcode table
556 and the array of operand expressions and writes out the instruction.
557
558 Note that the opcode word and extended word may be written to different
559 frags, with the opcode at the end of one frag and the extension at the
560 beginning of the next. */
561
562 static void
563 build_insn (opcode, opers)
564 struct tic80_opcode *opcode;
565 expressionS *opers;
566 {
567 int expi; /* Index of current expression to match */
568 int opi; /* Index of current operand to match */
569 unsigned long insn[2]; /* Instruction and long immediate (if any) */
570 char *f; /* Pointer to frag location for insn[0] */
571 fragS *ffrag; /* Frag containing location f */
572 char *fx = NULL; /* Pointer to frag location for insn[1] */
573 fragS *fxfrag; /* Frag containing location fx */
574
575 /* Start with the raw opcode bits from the opcode table. */
576 insn[0] = opcode -> opcode;
577
578 /* We are going to insert at least one 32 bit opcode so get the
579 frag now. */
580
581 f = frag_more (4);
582 ffrag = frag_now;
583
584 /* For each operand expression, insert the appropriate bits into the
585 instruction . */
586 for (expi = 0, opi = -1; opers[expi].X_op != O_illegal; expi++)
587 {
588 int bits, shift, flags, X_op, num;
589
590 X_op = opers[expi].X_op;
591 num = opers[expi].X_add_number;
592
593 /* The O_absent expressions apply to the same operand as the most
594 recent non O_absent expression. So only increment the operand
595 index when the current expression is not one of these special
596 expressions. */
597
598 if (X_op != O_absent)
599 {
600 opi++;
601 }
602
603 flags = tic80_operands[opcode -> operands[opi]].flags;
604 bits = tic80_operands[opcode -> operands[opi]].bits;
605 shift = tic80_operands[opcode -> operands[opi]].shift;
606
607 switch (X_op)
608 {
609 case O_register:
610 num &= ~TIC80_OPERAND_MASK;
611 insn[0] = insn[0] | (num << shift);
612 break;
613 case O_constant:
614 if ((flags & TIC80_OPERAND_ENDMASK) && (num == 32))
615 {
616 /* Endmask values of 0 and 32 give identical results */
617 num = 0;
618 }
619 else if ((flags & TIC80_OPERAND_BITNUM))
620 {
621 /* BITNUM values are stored in one's complement form */
622 num = (~num & 0x1F);
623 }
624 /* Mask off upper bits, just it case it is signed and is negative */
625 if (bits < 32)
626 {
627 num &= (1 << bits) - 1;
628 insn[0] = insn[0] | (num << shift);
629 }
630 else
631 {
632 fx = frag_more (4);
633 fxfrag = frag_now;
634 insn[1] = num;
635 }
636 break;
637 case O_symbol:
638 if (bits == 32)
639 {
640 fx = frag_more (4);
641 fxfrag = frag_now;
642 insn[1] = 0;
643 if (flags & TIC80_OPERAND_PCREL)
644 {
645 fix_new_exp (fxfrag,
646 fx - (fxfrag -> fr_literal),
647 4,
648 &opers[expi],
649 1,
650 R_MPPCR);
651 }
652 else
653 {
654 fix_new_exp (fxfrag,
655 fx - (fxfrag -> fr_literal),
656 4,
657 &opers[expi],
658 0,
659 R_RELLONGX);
660 }
661 }
662 else if (flags & TIC80_OPERAND_PCREL)
663 {
664 fix_new_exp (ffrag,
665 f - (ffrag -> fr_literal),
666 4, /* FIXME! how is this used? */
667 &opers[expi],
668 1,
669 R_MPPCR15W);
670 }
671 else
672 {
673 internal_error ("symbol reloc that is not PC relative or 32 bits");
674 }
675 break;
676 case O_absent:
677 /* Each O_absent expression can indicate exactly one possible modifier. */
678 if ((num & TIC80_OPERAND_M_SI) && (flags & TIC80_OPERAND_M_SI))
679 {
680 insn[0] = insn[0] | (1 << 17);
681 }
682 else if ((num & TIC80_OPERAND_M_LI) && (flags & TIC80_OPERAND_M_LI))
683 {
684 insn[0] = insn[0] | (1 << 15);
685 }
686 else if ((num & TIC80_OPERAND_SCALED) && (flags & TIC80_OPERAND_SCALED))
687 {
688 insn[0] = insn[0] | (1 << 11);
689 }
690 else if ((num & TIC80_OPERAND_PARENS) && (flags & TIC80_OPERAND_PARENS))
691 {
692 /* No code to generate, just accept and discard this expression */
693 }
694 else
695 {
696 internal_error_a ("unhandled operand modifier", opers[expi].X_add_number);
697 }
698 break;
699 case O_big:
700 fx = frag_more (4);
701 fxfrag = frag_now;
702 {
703 int precision = 2;
704 long exponent_bits = 8L;
705 LITTLENUM_TYPE words[2];
706 /* Value is still in generic_floating_point_number */
707 gen_to_words (words, precision, exponent_bits);
708 insn[1] = (words[0] << 16) | words[1];
709 }
710 break;
711 case O_illegal:
712 case O_symbol_rva:
713 case O_uminus:
714 case O_bit_not:
715 case O_logical_not:
716 case O_multiply:
717 case O_divide:
718 case O_modulus:
719 case O_left_shift:
720 case O_right_shift:
721 case O_bit_inclusive_or:
722 case O_bit_or_not:
723 case O_bit_exclusive_or:
724 case O_bit_and:
725 case O_add:
726 case O_subtract:
727 case O_eq:
728 case O_ne:
729 case O_lt:
730 case O_le:
731 case O_ge:
732 case O_gt:
733 case O_logical_and:
734 case O_logical_or:
735 case O_max:
736 default:
737 internal_error_a ("unhandled expression", X_op);
738 break;
739 }
740 }
741
742 /* Write out the instruction, either 4 or 8 bytes. */
743
744 md_number_to_chars (f, insn[0], 4);
745 if (fx != NULL)
746 {
747 md_number_to_chars (fx, insn[1], 4);
748 }
749 }
750
751 /* This is the main entry point for the machine-dependent assembler. Gas
752 calls this function for each input line which does not contain a
753 pseudoop.
754
755 STR points to a NULL terminated machine dependent instruction. This
756 function is supposed to emit the frags/bytes it assembles to. */
757
758 void
759 md_assemble (str)
760 char *str;
761 {
762 char *scan;
763 unsigned char *input_line_save;
764 struct tic80_opcode *opcode;
765 expressionS myops[16];
766 unsigned long insn;
767
768 /* Ensure there is something there to assemble. */
769 assert (str);
770
771 /* Drop any leading whitespace. */
772 while (isspace (*str))
773 {
774 str++;
775 }
776
777 /* Isolate the mnemonic from the rest of the string by finding the first
778 whitespace character and zapping it to a null byte. */
779 for (scan = str; *scan != '\000' && !isspace (*scan); scan++) {;}
780 if (*scan != '\000')
781 {
782 *scan++ = '\000';
783 }
784
785 /* Try to find this mnemonic in the hash table */
786 if ((opcode = (struct tic80_opcode *) hash_find (tic80_hash, str)) == NULL)
787 {
788 as_bad ("Invalid mnemonic: '%s'", str);
789 return;
790 }
791
792 str = scan;
793 while (isspace (*scan))
794 {
795 scan++;
796 }
797
798 input_line_save = input_line_pointer;
799 input_line_pointer = str;
800
801 opcode = find_opcode (opcode, myops);
802 if (opcode == NULL)
803 {
804 as_bad ("Invalid operands: '%s'", input_line_save);
805 }
806
807 input_line_pointer = input_line_save;
808 build_insn (opcode, myops);
809 }
810
811 /* This function is called once at the start of assembly, after the command
812 line arguments have been parsed and all the machine independent
813 initializations have been completed.
814
815 It should set up all the tables, etc., that the machine dependent part of
816 the assembler will need. */
817
818 void
819 md_begin ()
820 {
821 char *prev_name = "";
822 register const struct tic80_opcode *op;
823 register const struct tic80_opcode *op_end;
824 const struct predefined_symbol *pdsp;
825 extern int coff_flags; /* Defined in obj-coff.c */
826
827 /* Set F_AR32WR in coff_flags, which will end up in the file header
828 f_flags field. */
829
830 coff_flags |= F_AR32WR; /* TIc80 is 32 bit little endian */
831
832 /* Insert unique names into hash table. The TIc80 instruction set
833 has many identical opcode names that have different opcodes based
834 on the operands. This hash table then provides a quick index to
835 the first opcode with a particular name in the opcode table. */
836
837 tic80_hash = hash_new ();
838 op_end = tic80_opcodes + tic80_num_opcodes;
839 for (op = tic80_opcodes; op < op_end; op++)
840 {
841 if (strcmp (prev_name, op -> name) != 0)
842 {
843 prev_name = (char *) op -> name;
844 hash_insert (tic80_hash, op -> name, (char *) op);
845 }
846 }
847
848 /* Insert the predefined symbols into the symbol table. We use symbol_create
849 rather than symbol_new so that these symbols don't end up in the object
850 files' symbol table. Note that the values of the predefined symbols include
851 some upper bits that distinguish the type of the symbol (register, bitnum,
852 condition code, etc) and these bits must be masked away before actually
853 inserting the values into the instruction stream. For registers we put
854 these bits in the symbol table since we use them later and there is no
855 question that they aren't part of the register number. For constants we
856 can't do that since the constant can be any value, so they are masked off
857 before putting them into the symbol table. */
858
859 pdsp = NULL;
860 while ((pdsp = tic80_next_predefined_symbol (pdsp)) != NULL)
861 {
862 segT segment;
863 valueT valu;
864 int symtype;
865
866 symtype = PDS_VALUE (pdsp) & TIC80_OPERAND_MASK;
867 switch (symtype)
868 {
869 case TIC80_OPERAND_GPR:
870 case TIC80_OPERAND_FPA:
871 case TIC80_OPERAND_CR:
872 segment = reg_section;
873 valu = PDS_VALUE (pdsp);
874 break;
875 case TIC80_OPERAND_CC:
876 case TIC80_OPERAND_BITNUM:
877 segment = absolute_section;
878 valu = PDS_VALUE (pdsp) & ~TIC80_OPERAND_MASK;
879 break;
880 default:
881 internal_error_a ("unhandled predefined symbol bits", symtype);
882 break;
883 }
884 symbol_table_insert (symbol_create (PDS_NAME (pdsp), segment, valu,
885 &zero_address_frag));
886 }
887 }
888
889 \f
890
891 /* The assembler adds md_shortopts to the string passed to getopt. */
892
893 CONST char *md_shortopts = "";
894
895 /* The assembler adds md_longopts to the machine independent long options
896 that are passed to getopt. */
897
898 struct option md_longopts[] = {
899 {NULL, no_argument, NULL, 0}
900 };
901
902 size_t md_longopts_size = sizeof(md_longopts);
903
904 /* The md_parse_option function will be called whenever getopt returns an
905 unrecognized code, presumably indicating a special code value which
906 appears in md_longopts for machine specific command line options. */
907
908 int
909 md_parse_option (c, arg)
910 int c;
911 char *arg;
912 {
913 return (0);
914 }
915
916 /* The md_show_usage function will be called whenever a usage message is
917 printed. It should print a description of the machine specific options
918 found in md_longopts. */
919
920 void
921 md_show_usage (stream)
922 FILE *stream;
923 {
924 }
925
926 \f
927 /* Attempt to simplify or even eliminate a fixup. The return value is
928 ignored; perhaps it was once meaningful, but now it is historical.
929 To indicate that a fixup has been eliminated, set fixP->fx_done.
930 */
931
932 void
933 md_apply_fix (fixP, val)
934 fixS *fixP;
935 long val;
936 {
937 char *dest = fixP -> fx_frag -> fr_literal + fixP -> fx_where;
938 int overflow;
939
940 switch (fixP -> fx_r_type)
941 {
942 case R_RELLONGX:
943 md_number_to_chars (dest, (valueT) val, 4);
944 break;
945 case R_MPPCR:
946 val >>= 2;
947 val += 1; /* Target address computed from inst start */
948 md_number_to_chars (dest, (valueT) val, 4);
949 break;
950 case R_MPPCR15W:
951 overflow = (val < -65536L) || (val > 65532L);
952 if (overflow)
953 {
954 as_bad_where (fixP -> fx_file, fixP -> fx_line,
955 "PC offset 0x%lx outside range 0x%lx-0x%lx",
956 val, -65536L, 65532L);
957 }
958 else
959 {
960 val >>= 2;
961 *dest++ = val & 0xFF;
962 val >>= 8;
963 *dest = (*dest & 0x80) | (val & 0x7F);
964 }
965 break;
966 case R_ABS:
967 md_number_to_chars (dest, (valueT) val, fixP -> fx_size);
968 break;
969 default:
970 internal_error_a ("unhandled relocation type in fixup", fixP -> fx_r_type);
971 break;
972 }
973 }
974
975 \f
976 /* Functions concerning relocs. */
977
978 /* The location from which a PC relative jump should be calculated,
979 given a PC relative reloc.
980
981 For the TIc80, this is the address of the 32 bit opcode containing
982 the PC relative field. */
983
984 long
985 md_pcrel_from (fixP)
986 fixS *fixP;
987 {
988 return (fixP -> fx_frag -> fr_address + fixP -> fx_where) ;
989 }
990
991 /*
992 * Called after relax() is finished.
993 * In: Address of frag.
994 * fr_type == rs_machine_dependent.
995 * fr_subtype is what the address relaxed to.
996 *
997 * Out: Any fixSs and constants are set up.
998 * Caller will turn frag into a ".space 0".
999 */
1000
1001 void
1002 md_convert_frag (headers, seg, fragP)
1003 object_headers *headers;
1004 segT seg;
1005 fragS *fragP;
1006 {
1007 internal_error ("md_convert_frag() not implemented yet");
1008 abort ();
1009 }
1010
1011 \f
1012 /*ARGSUSED*/
1013 void
1014 tc_coff_symbol_emit_hook (ignore)
1015 symbolS *ignore;
1016 {
1017 }
1018
1019 #if defined OBJ_COFF
1020
1021 short
1022 tc_coff_fix2rtype (fixP)
1023 fixS *fixP;
1024 {
1025 return (fixP -> fx_r_type);
1026 }
1027
1028 #endif /* OBJ_COFF */
1029
1030 /* end of tc-tic80.c */
This page took 0.084236 seconds and 5 git commands to generate.