Rearrange symbol_create parameters
[deliverable/binutils-gdb.git] / gas / config / tc-tic54x.c
1 /* tc-tic54x.c -- Assembly code for the Texas Instruments TMS320C54X
2 Copyright (C) 1999-2020 Free Software Foundation, Inc.
3 Contributed by Timothy Wall (twall@cygnus.com)
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 /* Texas Instruments TMS320C54X machine specific gas.
23 Written by Timothy Wall (twall@alum.mit.edu).
24
25 Valuable things to do:
26 Pipeline conflict warnings
27 We encode/decode "ld #_label, dp" differently in relocatable files
28 This means we're not compatible with TI output containing those
29 expressions. We store the upper nine bits; TI stores the lower nine
30 bits. How they recover the original upper nine bits is beyond me.
31
32 Tests to add to expect testsuite:
33 '=' and '==' with .if, .elseif, and .break
34
35 Incompatibilities (mostly trivial):
36 We don't allow '''
37 We fill text section with zeroes instead of "nop"s
38 We don't convert '' or "" to a single instance
39 We don't convert '' to '\0'
40 We don't allow strings with .byte/.half/.short/.long
41 Probably details of the subsym stuff are different
42 TI sets labels to be data type 4 (T_INT); GAS uses T_NULL.
43
44 COFF1 limits section names to 8 characters.
45 Some of the default behavior changed from COFF1 to COFF2. */
46
47 #include "as.h"
48 #include <limits.h>
49 #include "safe-ctype.h"
50 #include "sb.h"
51 #include "macro.h"
52 #include "subsegs.h"
53 #include "opcode/tic54x.h"
54 #include "obj-coff.h"
55 #include <math.h>
56
57
58 static struct stag
59 {
60 symbolS *sym; /* Symbol for this stag; value is offset. */
61 const char *name; /* Shortcut to symbol name. */
62 bfd_vma size; /* Size of struct/union. */
63 int current_bitfield_offset; /* Temporary for tracking fields. */
64 int is_union;
65 struct stag_field /* List of fields. */
66 {
67 const char *name;
68 bfd_vma offset; /* Of start of this field. */
69 int bitfield_offset; /* Of start of this field. */
70 struct stag *stag; /* If field is struct/union. */
71 struct stag_field *next;
72 } *field;
73 /* For nesting; used only in stag construction. */
74 struct stag *inner; /* Enclosed .struct. */
75 struct stag *outer; /* Enclosing .struct. */
76 } *current_stag = NULL;
77
78 #define MAX_LINE 256 /* Lines longer than this are truncated by TI's asm. */
79
80 typedef struct _tic54x_insn
81 {
82 const insn_template *tm; /* Opcode template. */
83
84 char mnemonic[MAX_LINE]; /* Opcode name/mnemonic. */
85 char parmnemonic[MAX_LINE]; /* 2nd mnemonic of parallel insn. */
86
87 int opcount;
88 struct opstruct
89 {
90 char buf[MAX_LINE];
91 enum optype type;
92 expressionS exp;
93 } operands[MAX_OPERANDS];
94
95 int paropcount;
96 struct opstruct paroperands[MAX_OPERANDS];
97
98 int is_lkaddr;
99 int lkoperand;
100 int words; /* Size of insn in 16-bit words. */
101 int using_default_dst; /* Do we need to explicitly set an
102 omitted OP_DST operand? */
103 struct
104 {
105 unsigned short word; /* Final encoded opcode data. */
106 int unresolved;
107 int r_nchars; /* Relocation size. */
108 bfd_reloc_code_real_type r_type; /* Relocation type. */
109 expressionS addr_expr; /* Storage for unresolved expressions. */
110 } opcode[3];
111 } tic54x_insn;
112
113 enum cpu_version
114 {
115 VNONE = 0, V541 = 1, V542 = 2, V543 = 3, V545 = 5, V548 = 8, V549 = 9,
116 V545LP = 15, V546LP = 16
117 };
118
119 enum address_mode
120 {
121 c_mode, /* 16-bit addresses. */
122 far_mode /* >16-bit addresses. */
123 };
124
125 static segT stag_saved_seg;
126 static subsegT stag_saved_subseg;
127
128 const char comment_chars[] = ";";
129 const char line_comment_chars[] = ";*#"; /* At column zero only. */
130 const char line_separator_chars[] = ""; /* Not permitted. */
131
132 int emitting_long = 0;
133
134 /* Characters which indicate that this is a floating point constant. */
135 const char FLT_CHARS[] = "fF";
136
137 /* Characters that can be used to separate mantissa from exp in FP
138 nums. */
139 const char EXP_CHARS[] = "eE";
140
141 const char *md_shortopts = "";
142
143 #define OPTION_ADDRESS_MODE (OPTION_MD_BASE)
144 #define OPTION_CPU_VERSION (OPTION_ADDRESS_MODE + 1)
145 #define OPTION_COFF_VERSION (OPTION_CPU_VERSION + 1)
146 #define OPTION_STDERR_TO_FILE (OPTION_COFF_VERSION + 1)
147
148 struct option md_longopts[] =
149 {
150 { "mfar-mode", no_argument, NULL, OPTION_ADDRESS_MODE },
151 { "mf", no_argument, NULL, OPTION_ADDRESS_MODE },
152 { "mcpu", required_argument, NULL, OPTION_CPU_VERSION },
153 { "merrors-to-file", required_argument, NULL, OPTION_STDERR_TO_FILE },
154 { "me", required_argument, NULL, OPTION_STDERR_TO_FILE },
155 { NULL, no_argument, NULL, 0},
156 };
157
158 size_t md_longopts_size = sizeof (md_longopts);
159
160 static int assembly_begun = 0;
161 /* Addressing mode is not entirely implemented; the latest rev of the Other
162 assembler doesn't seem to make any distinction whatsoever; all relocations
163 are stored as extended relocations. Older versions used REL16 vs RELEXT16,
164 but now it seems all relocations are RELEXT16. We use all RELEXT16.
165
166 The cpu version is kind of a waste of time as well. There is one
167 instruction (RND) for LP devices only, and several for devices with
168 extended addressing only. We include it for compatibility. */
169 static enum address_mode amode = c_mode;
170 static enum cpu_version cpu = VNONE;
171
172 /* Include string substitutions in listing? */
173 static int listing_sslist = 0;
174
175 /* Did we do subsym substitutions on the line? */
176 static int substitution_line = 0;
177
178 /* Last label seen. */
179 static symbolS *last_label_seen = NULL;
180
181 /* This ensures that all new labels are unique. */
182 static int local_label_id;
183
184 static htab_t subsym_recurse_hash; /* Prevent infinite recurse. */
185 static htab_t math_hash; /* Built-in math functions. */
186 /* Allow maximum levels of macro nesting; level 0 is the main substitution
187 symbol table. The other assembler only does 32 levels, so there! */
188 #define MAX_SUBSYM_HASH 100
189 static htab_t subsym_hash[MAX_SUBSYM_HASH];
190
191 /* Keep track of local labels so we can substitute them before GAS sees them
192 since macros use their own 'namespace' for local labels, use a separate hash
193
194 We do our own local label handling 'cuz it's subtly different from the
195 stock GAS handling.
196
197 We use our own macro nesting counter, since GAS overloads it when expanding
198 other things (like conditionals and repeat loops). */
199 static int macro_level = 0;
200 static htab_t local_label_hash[100];
201 /* Keep track of struct/union tags. */
202 static htab_t stag_hash;
203 static htab_t op_hash;
204 static htab_t parop_hash;
205 static htab_t reg_hash;
206 static htab_t mmreg_hash;
207 static htab_t cc_hash;
208 static htab_t cc2_hash;
209 static htab_t cc3_hash;
210 static htab_t sbit_hash;
211 static htab_t misc_symbol_hash;
212
213 /* Only word (et al.), align, or conditionals are allowed within
214 .struct/.union. */
215 #define ILLEGAL_WITHIN_STRUCT() \
216 do \
217 if (current_stag != NULL) \
218 { \
219 as_bad (_("pseudo-op illegal within .struct/.union")); \
220 return; \
221 } \
222 while (0)
223
224
225 static void subsym_create_or_replace (char *, char *);
226 static char *subsym_lookup (char *, int);
227 static char *subsym_substitute (char *, int);
228
229
230 void
231 md_show_usage (FILE *stream)
232 {
233 fprintf (stream, _("C54x-specific command line options:\n"));
234 fprintf (stream, _("-mfar-mode | -mf Use extended addressing\n"));
235 fprintf (stream, _("-mcpu=<CPU version> Specify the CPU version\n"));
236 fprintf (stream, _("-merrors-to-file <filename>\n"));
237 fprintf (stream, _("-me <filename> Redirect errors to a file\n"));
238 }
239
240 /* Output a single character (upper octet is zero). */
241
242 static void
243 tic54x_emit_char (char c)
244 {
245 expressionS expn;
246
247 expn.X_op = O_constant;
248 expn.X_add_number = c;
249 emit_expr (&expn, 2);
250 }
251
252 /* Walk backwards in the frag chain. */
253
254 static fragS *
255 frag_prev (fragS *frag, segT seg)
256 {
257 segment_info_type *seginfo = seg_info (seg);
258 fragS *fragp;
259
260 for (fragp = seginfo->frchainP->frch_root; fragp; fragp = fragp->fr_next)
261 if (fragp->fr_next == frag)
262 return fragp;
263
264 return NULL;
265 }
266
267 static fragS *
268 bit_offset_frag (fragS *frag, segT seg)
269 {
270 while (frag != NULL)
271 {
272 if (frag->fr_fix == 0
273 && frag->fr_opcode == NULL
274 && frag->tc_frag_data == 0)
275 frag = frag_prev (frag, seg);
276 else
277 return frag;
278 }
279 return NULL;
280 }
281
282 /* Return the number of bits allocated in the most recent word, or zero if
283 none. .field/.space/.bes may leave words partially allocated. */
284
285 static int
286 frag_bit_offset (fragS *frag, segT seg)
287 {
288 frag = bit_offset_frag (frag, seg);
289
290 if (frag)
291 return frag->fr_opcode != NULL ? -1 : frag->tc_frag_data;
292
293 return 0;
294 }
295
296 /* Read an expression from a C string; returns a pointer past the end of the
297 expression. */
298
299 static char *
300 parse_expression (char *str, expressionS *expn)
301 {
302 char *s;
303 char *tmp;
304
305 tmp = input_line_pointer; /* Save line pointer. */
306 input_line_pointer = str;
307 expression (expn);
308 s = input_line_pointer;
309 input_line_pointer = tmp; /* Restore line pointer. */
310 return s; /* Return pointer to where parsing stopped. */
311 }
312
313 /* .asg "character-string"|character-string, symbol
314
315 .eval is the only pseudo-op allowed to perform arithmetic on substitution
316 symbols. all other use of symbols defined with .asg are currently
317 unsupported. */
318
319 static void
320 tic54x_asg (int x ATTRIBUTE_UNUSED)
321 {
322 int c;
323 char *name;
324 char *str;
325 int quoted = *input_line_pointer == '"';
326
327 ILLEGAL_WITHIN_STRUCT ();
328
329 if (quoted)
330 {
331 int len;
332 str = demand_copy_C_string (&len);
333 c = *input_line_pointer;
334 }
335 else
336 {
337 str = input_line_pointer;
338 while ((c = *input_line_pointer) != ',')
339 {
340 if (is_end_of_line[(unsigned char) c])
341 break;
342 ++input_line_pointer;
343 }
344 *input_line_pointer = 0;
345 }
346 if (c != ',')
347 {
348 as_bad (_("Comma and symbol expected for '.asg STRING, SYMBOL'"));
349 ignore_rest_of_line ();
350 return;
351 }
352
353 ++input_line_pointer;
354 c = get_symbol_name (&name); /* Get terminator. */
355 if (!ISALPHA (*name))
356 {
357 as_bad (_("symbols assigned with .asg must begin with a letter"));
358 ignore_rest_of_line ();
359 return;
360 }
361
362 str = xstrdup (str);
363 name = xstrdup (name);
364 subsym_create_or_replace (name, str);
365 (void) restore_line_pointer (c);
366 demand_empty_rest_of_line ();
367 }
368
369 /* .eval expression, symbol
370 There's something screwy about this. The other assembler sometimes does and
371 sometimes doesn't substitute symbols defined with .eval.
372 We'll put the symbols into the subsym table as well as the normal symbol
373 table, since that's what works best. */
374
375 static void
376 tic54x_eval (int x ATTRIBUTE_UNUSED)
377 {
378 char c;
379 int value;
380 char *name;
381 symbolS *symbolP;
382 char valuestr[32], *tmp;
383 int quoted;
384
385 ILLEGAL_WITHIN_STRUCT ();
386
387 SKIP_WHITESPACE ();
388
389 quoted = *input_line_pointer == '"';
390 if (quoted)
391 ++input_line_pointer;
392 value = get_absolute_expression ();
393 if (quoted)
394 {
395 if (*input_line_pointer != '"')
396 {
397 as_bad (_("Unterminated string after absolute expression"));
398 ignore_rest_of_line ();
399 return;
400 }
401 ++input_line_pointer;
402 }
403 if (*input_line_pointer++ != ',')
404 {
405 as_bad (_("Comma and symbol expected for '.eval EXPR, SYMBOL'"));
406 ignore_rest_of_line ();
407 return;
408 }
409 c = get_symbol_name (&name); /* Get terminator. */
410 name = xstrdup (name);
411 (void) restore_line_pointer (c);
412
413 if (!ISALPHA (*name))
414 {
415 as_bad (_("symbols assigned with .eval must begin with a letter"));
416 ignore_rest_of_line ();
417 return;
418 }
419 symbolP = symbol_new (name, absolute_section, &zero_address_frag, value);
420 SF_SET_LOCAL (symbolP);
421 symbol_table_insert (symbolP);
422
423 /* The "other" assembler sometimes doesn't put .eval's in the subsym table
424 But since there's not written rule as to when, don't even bother trying
425 to match their behavior. */
426 sprintf (valuestr, "%d", value);
427 tmp = xstrdup (valuestr);
428 subsym_create_or_replace (name, tmp);
429
430 demand_empty_rest_of_line ();
431 }
432
433 /* .bss symbol, size [, [blocking flag] [, alignment flag]
434
435 alignment is to a longword boundary; blocking is to 128-word boundary.
436
437 1) if there is a hole in memory, this directive should attempt to fill it
438 (not yet implemented).
439
440 2) if the blocking flag is not set, allocate at the current SPC
441 otherwise, check to see if the current SPC plus the space to be
442 allocated crosses the page boundary (128 words).
443 if there's not enough space, create a hole and align with the next page
444 boundary.
445 (not yet implemented). */
446
447 static void
448 tic54x_bss (int x ATTRIBUTE_UNUSED)
449 {
450 char c;
451 char *name;
452 char *p;
453 int words;
454 segT current_seg;
455 subsegT current_subseg;
456 symbolS *symbolP;
457 int block = 0;
458 int align = 0;
459
460 ILLEGAL_WITHIN_STRUCT ();
461
462 current_seg = now_seg; /* Save current seg. */
463 current_subseg = now_subseg; /* Save current subseg. */
464
465 c = get_symbol_name (&name); /* Get terminator. */
466 if (c == '"')
467 c = * ++ input_line_pointer;
468 if (c != ',')
469 {
470 as_bad (_(".bss size argument missing\n"));
471 ignore_rest_of_line ();
472 return;
473 }
474
475 ++input_line_pointer;
476 words = get_absolute_expression ();
477 if (words < 0)
478 {
479 as_bad (_(".bss size %d < 0!"), words);
480 ignore_rest_of_line ();
481 return;
482 }
483
484 if (*input_line_pointer == ',')
485 {
486 /* The blocking flag may be missing. */
487 ++input_line_pointer;
488 if (*input_line_pointer != ',')
489 block = get_absolute_expression ();
490 else
491 block = 0;
492
493 if (*input_line_pointer == ',')
494 {
495 ++input_line_pointer;
496 align = get_absolute_expression ();
497 }
498 else
499 align = 0;
500 }
501 else
502 block = align = 0;
503
504 subseg_set (bss_section, 0);
505 symbolP = symbol_find_or_make (name);
506
507 if (S_GET_SEGMENT (symbolP) == bss_section)
508 symbol_get_frag (symbolP)->fr_symbol = (symbolS *) NULL;
509
510 symbol_set_frag (symbolP, frag_now);
511 p = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP,
512 (offsetT) (words * OCTETS_PER_BYTE), (char *) 0);
513 *p = 0; /* Fill char. */
514
515 S_SET_SEGMENT (symbolP, bss_section);
516
517 /* The symbol may already have been created with a preceding
518 ".globl" directive -- be careful not to step on storage class
519 in that case. Otherwise, set it to static. */
520 if (S_GET_STORAGE_CLASS (symbolP) != C_EXT)
521 S_SET_STORAGE_CLASS (symbolP, C_STAT);
522
523 if (align)
524 {
525 /* s_align eats end of line; restore it */
526 s_align_bytes (4);
527 --input_line_pointer;
528 }
529
530 if (block)
531 bss_section->flags |= SEC_TIC54X_BLOCK;
532
533 subseg_set (current_seg, current_subseg); /* Restore current seg. */
534 demand_empty_rest_of_line ();
535 }
536
537 static void
538 stag_add_field_symbols (struct stag *stag,
539 const char *path,
540 bfd_vma base_offset,
541 symbolS *rootsym,
542 const char *root_stag_name)
543 {
544 char * prefix;
545 struct stag_field *field = stag->field;
546
547 /* Construct a symbol for every field contained within this structure
548 including fields within structure fields. */
549 prefix = concat (path, *path ? "." : "", NULL);
550
551 while (field != NULL)
552 {
553 char *name = concat (prefix, field->name, NULL);
554
555 if (rootsym == NULL)
556 {
557 symbolS *sym;
558 sym = symbol_new (name, absolute_section, &zero_address_frag,
559 (field->stag ? field->offset
560 : base_offset + field->offset));
561 SF_SET_LOCAL (sym);
562 symbol_table_insert (sym);
563 }
564 else
565 {
566 char *replacement;
567
568 replacement = concat (S_GET_NAME (rootsym), "+", root_stag_name,
569 name + strlen (S_GET_NAME (rootsym)), NULL);
570 str_hash_insert (subsym_hash[0], name, replacement);
571 }
572
573 /* Recurse if the field is a structure.
574 Note the field offset is relative to the outermost struct. */
575 if (field->stag != NULL)
576 stag_add_field_symbols (field->stag, name,
577 field->offset,
578 rootsym, root_stag_name);
579 field = field->next;
580 free (name);
581 }
582 free (prefix);
583 }
584
585 /* Keep track of stag fields so that when structures are nested we can add the
586 complete dereferencing symbols to the symbol table. */
587
588 static void
589 stag_add_field (struct stag *parent,
590 const char *name,
591 bfd_vma offset,
592 struct stag *stag)
593 {
594 struct stag_field *sfield = XCNEW (struct stag_field);
595
596 sfield->name = xstrdup (name);
597 sfield->offset = offset;
598 sfield->bitfield_offset = parent->current_bitfield_offset;
599 sfield->stag = stag;
600 if (parent->field == NULL)
601 parent->field = sfield;
602 else
603 {
604 struct stag_field *sf = parent->field;
605 while (sf->next != NULL)
606 sf = sf->next;
607 sf->next = sfield;
608 }
609 /* Only create a symbol for this field if the parent has no name. */
610 if (!strncmp (".fake", parent->name, 5))
611 {
612 symbolS *sym = symbol_new (name, absolute_section, &zero_address_frag,
613 offset);
614 SF_SET_LOCAL (sym);
615 symbol_table_insert (sym);
616 }
617 }
618
619 /* [STAG] .struct [OFFSET]
620 Start defining structure offsets (symbols in absolute section). */
621
622 static void
623 tic54x_struct (int arg)
624 {
625 int start_offset = 0;
626 int is_union = arg;
627
628 if (!current_stag)
629 {
630 /* Starting a new struct, switch to absolute section. */
631 stag_saved_seg = now_seg;
632 stag_saved_subseg = now_subseg;
633 subseg_set (absolute_section, 0);
634 }
635 /* Align the current pointer. */
636 else if (current_stag->current_bitfield_offset != 0)
637 {
638 ++abs_section_offset;
639 current_stag->current_bitfield_offset = 0;
640 }
641
642 /* Offset expression is only meaningful for global .structs. */
643 if (!is_union)
644 {
645 /* Offset is ignored in inner structs. */
646 SKIP_WHITESPACE ();
647 if (!is_end_of_line[(unsigned char) *input_line_pointer])
648 start_offset = get_absolute_expression ();
649 else
650 start_offset = 0;
651 }
652
653 if (current_stag)
654 {
655 /* Nesting, link to outer one. */
656 current_stag->inner = XCNEW (struct stag);
657 current_stag->inner->outer = current_stag;
658 current_stag = current_stag->inner;
659 if (start_offset)
660 as_warn (_("Offset on nested structures is ignored"));
661 start_offset = abs_section_offset;
662 }
663 else
664 {
665 current_stag = XCNEW (struct stag);
666 abs_section_offset = start_offset;
667 }
668 current_stag->is_union = is_union;
669
670 if (line_label == NULL)
671 {
672 static int struct_count = 0;
673 char fake[] = ".fake_stagNNNNNNN";
674 sprintf (fake, ".fake_stag%d", struct_count++);
675 current_stag->sym = symbol_new (fake, absolute_section,
676 &zero_address_frag,
677 abs_section_offset);
678 }
679 else
680 {
681 char * label = xstrdup (S_GET_NAME (line_label));
682 current_stag->sym = symbol_new (label,
683 absolute_section,
684 &zero_address_frag,
685 abs_section_offset);
686 free (label);
687 }
688 current_stag->name = S_GET_NAME (current_stag->sym);
689 SF_SET_LOCAL (current_stag->sym);
690 /* Nested .structs don't go into the symbol table. */
691 if (current_stag->outer == NULL)
692 symbol_table_insert (current_stag->sym);
693
694 line_label = NULL;
695 }
696
697 /* [LABEL] .endstruct
698 finish defining structure offsets; optional LABEL's value will be the size
699 of the structure. */
700
701 static void
702 tic54x_endstruct (int is_union)
703 {
704 int size;
705 const char *path =
706 !strncmp (current_stag->name, ".fake", 5) ? "" : current_stag->name;
707
708 if (!current_stag || current_stag->is_union != is_union)
709 {
710 as_bad (_(".end%s without preceding .%s"),
711 is_union ? "union" : "struct",
712 is_union ? "union" : "struct");
713 ignore_rest_of_line ();
714 return;
715 }
716
717 /* Align end of structures. */
718 if (current_stag->current_bitfield_offset)
719 {
720 ++abs_section_offset;
721 current_stag->current_bitfield_offset = 0;
722 }
723
724 if (current_stag->is_union)
725 size = current_stag->size;
726 else
727 size = abs_section_offset - S_GET_VALUE (current_stag->sym);
728 if (line_label != NULL)
729 {
730 S_SET_VALUE (line_label, size);
731 symbol_table_insert (line_label);
732 line_label = NULL;
733 }
734
735 /* Union size has already been calculated. */
736 if (!current_stag->is_union)
737 current_stag->size = size;
738 /* Nested .structs don't get put in the stag table. */
739 if (current_stag->outer == NULL)
740 {
741 str_hash_insert (stag_hash, current_stag->name, current_stag);
742 stag_add_field_symbols (current_stag, path,
743 S_GET_VALUE (current_stag->sym),
744 NULL, NULL);
745 }
746 current_stag = current_stag->outer;
747
748 /* If this is a nested .struct/.union, add it as a field to the enclosing
749 one. otherwise, restore the section we were in. */
750 if (current_stag != NULL)
751 {
752 stag_add_field (current_stag, current_stag->inner->name,
753 S_GET_VALUE (current_stag->inner->sym),
754 current_stag->inner);
755 }
756 else
757 subseg_set (stag_saved_seg, stag_saved_subseg);
758 }
759
760 /* [LABEL] .tag STAG
761 Reference a structure within a structure, as a sized field with an optional
762 label.
763 If used outside of a .struct/.endstruct, overlays the given structure
764 format on the existing allocated space. */
765
766 static void
767 tic54x_tag (int ignore ATTRIBUTE_UNUSED)
768 {
769 char *name;
770 int c = get_symbol_name (&name);
771 struct stag *stag = (struct stag *) str_hash_find (stag_hash, name);
772
773 if (!stag)
774 {
775 if (*name)
776 as_bad (_("Unrecognized struct/union tag '%s'"), name);
777 else
778 as_bad (_(".tag requires a structure tag"));
779 ignore_rest_of_line ();
780 return;
781 }
782 if (line_label == NULL)
783 {
784 as_bad (_("Label required for .tag"));
785 ignore_rest_of_line ();
786 return;
787 }
788 else
789 {
790 char * label;
791
792 label = xstrdup (S_GET_NAME (line_label));
793 if (current_stag != NULL)
794 stag_add_field (current_stag, label,
795 abs_section_offset - S_GET_VALUE (current_stag->sym),
796 stag);
797 else
798 {
799 symbolS *sym = symbol_find (label);
800
801 if (!sym)
802 {
803 as_bad (_(".tag target '%s' undefined"), label);
804 ignore_rest_of_line ();
805 free (label);
806 return;
807 }
808 stag_add_field_symbols (stag, S_GET_NAME (sym),
809 S_GET_VALUE (stag->sym), sym, stag->name);
810 }
811 free (label);
812 }
813
814 /* Bump by the struct size, but only if we're within a .struct section. */
815 if (current_stag != NULL && !current_stag->is_union)
816 abs_section_offset += stag->size;
817
818 (void) restore_line_pointer (c);
819 demand_empty_rest_of_line ();
820 line_label = NULL;
821 }
822
823 /* Handle all .byte, .char, .double, .field, .float, .half, .int, .long,
824 .short, .string, .ubyte, .uchar, .uhalf, .uint, .ulong, .ushort, .uword,
825 and .word. */
826
827 static void
828 tic54x_struct_field (int type)
829 {
830 int size;
831 int count = 1;
832 int new_bitfield_offset = 0;
833 int field_align = current_stag->current_bitfield_offset != 0;
834 int longword_align = 0;
835
836 SKIP_WHITESPACE ();
837 if (!is_end_of_line[(unsigned char) *input_line_pointer])
838 count = get_absolute_expression ();
839
840 switch (type)
841 {
842 case 'b':
843 case 'B':
844 case 'c':
845 case 'C':
846 case 'h':
847 case 'H':
848 case 'i':
849 case 'I':
850 case 's':
851 case 'S':
852 case 'w':
853 case 'W':
854 case '*': /* String. */
855 size = 1;
856 break;
857 case 'f':
858 case 'l':
859 case 'L':
860 longword_align = 1;
861 size = 2;
862 break;
863 case '.': /* Bitfield. */
864 size = 0;
865 if (count < 1 || count > 32)
866 {
867 as_bad (_(".field count '%d' out of range (1 <= X <= 32)"), count);
868 ignore_rest_of_line ();
869 return;
870 }
871 if (current_stag->current_bitfield_offset + count > 16)
872 {
873 /* Set the appropriate size and new field offset. */
874 if (count == 32)
875 {
876 size = 2;
877 count = 1;
878 }
879 else if (count > 16)
880 {
881 size = 1;
882 count = 1;
883 new_bitfield_offset = count - 16;
884 }
885 else
886 new_bitfield_offset = count;
887 }
888 else
889 {
890 field_align = 0;
891 new_bitfield_offset = current_stag->current_bitfield_offset + count;
892 }
893 break;
894 default:
895 as_bad (_("Unrecognized field type '%c'"), type);
896 ignore_rest_of_line ();
897 return;
898 }
899
900 if (field_align)
901 {
902 /* Align to the actual starting position of the field. */
903 current_stag->current_bitfield_offset = 0;
904 ++abs_section_offset;
905 }
906 /* Align to longword boundary. */
907 if (longword_align && (abs_section_offset & 0x1))
908 ++abs_section_offset;
909
910 if (line_label == NULL)
911 {
912 static int fieldno = 0;
913 char fake[] = ".fake_fieldNNNNN";
914
915 sprintf (fake, ".fake_field%d", fieldno++);
916 stag_add_field (current_stag, fake,
917 abs_section_offset - S_GET_VALUE (current_stag->sym),
918 NULL);
919 }
920 else
921 {
922 char * label;
923
924 label = xstrdup (S_GET_NAME (line_label));
925 stag_add_field (current_stag, label,
926 abs_section_offset - S_GET_VALUE (current_stag->sym),
927 NULL);
928 free (label);
929 }
930
931 if (current_stag->is_union)
932 {
933 /* Note we treat the element as if it were an array of COUNT. */
934 if (current_stag->size < (unsigned) size * count)
935 current_stag->size = size * count;
936 }
937 else
938 {
939 abs_section_offset += (unsigned) size * count;
940 current_stag->current_bitfield_offset = new_bitfield_offset;
941 }
942 line_label = NULL;
943 }
944
945 /* Handle .byte, .word. .int, .long and all variants. */
946
947 static void
948 tic54x_cons (int type)
949 {
950 unsigned int c;
951 int octets;
952
953 /* If we're within a .struct construct, don't actually allocate space. */
954 if (current_stag != NULL)
955 {
956 tic54x_struct_field (type);
957 return;
958 }
959
960 #ifdef md_flush_pending_output
961 md_flush_pending_output ();
962 #endif
963
964 generate_lineno_debug ();
965
966 /* Align long words to long word boundaries (4 octets). */
967 if (type == 'l' || type == 'L')
968 {
969 frag_align (2, 0, 2);
970 /* If there's a label, assign it to the first allocated word. */
971 if (line_label != NULL)
972 {
973 symbol_set_frag (line_label, frag_now);
974 S_SET_VALUE (line_label, frag_now_fix ());
975 }
976 }
977
978 switch (type)
979 {
980 case 'l':
981 case 'L':
982 case 'x':
983 octets = 4;
984 break;
985 case 'b':
986 case 'B':
987 case 'c':
988 case 'C':
989 octets = 1;
990 break;
991 default:
992 octets = 2;
993 break;
994 }
995
996 do
997 {
998 if (*input_line_pointer == '"')
999 {
1000 input_line_pointer++;
1001 while (is_a_char (c = next_char_of_string ()))
1002 tic54x_emit_char (c);
1003 know (input_line_pointer[-1] == '\"');
1004 }
1005 else
1006 {
1007 expressionS expn;
1008
1009 input_line_pointer = parse_expression (input_line_pointer, &expn);
1010 if (expn.X_op == O_constant)
1011 {
1012 offsetT value = expn.X_add_number;
1013 /* Truncate overflows. */
1014 switch (octets)
1015 {
1016 case 1:
1017 if ((value > 0 && value > 0xFF)
1018 || (value < 0 && value < - 0x100))
1019 as_warn (_("Overflow in expression, truncated to 8 bits"));
1020 break;
1021 case 2:
1022 if ((value > 0 && value > 0xFFFF)
1023 || (value < 0 && value < - 0x10000))
1024 as_warn (_("Overflow in expression, truncated to 16 bits"));
1025 break;
1026 }
1027 }
1028 if (expn.X_op != O_constant && octets < 2)
1029 {
1030 /* Disallow .byte with a non constant expression that will
1031 require relocation. */
1032 as_bad (_("Relocatable values require at least WORD storage"));
1033 ignore_rest_of_line ();
1034 return;
1035 }
1036
1037 if (expn.X_op != O_constant
1038 && amode == c_mode
1039 && octets == 4)
1040 {
1041 /* FIXME -- at one point TI tools used to output REL16
1042 relocations, but I don't think the latest tools do at all
1043 The current tools output extended relocations regardless of
1044 the addressing mode (I actually think that ".c_mode" is
1045 totally ignored in the latest tools). */
1046 amode = far_mode;
1047 emitting_long = 1;
1048 emit_expr (&expn, 4);
1049 emitting_long = 0;
1050 amode = c_mode;
1051 }
1052 else
1053 {
1054 emitting_long = octets == 4;
1055 emit_expr (&expn, (octets == 1) ? 2 : octets);
1056 emitting_long = 0;
1057 }
1058 }
1059 }
1060 while (*input_line_pointer++ == ',');
1061
1062 input_line_pointer--; /* Put terminator back into stream. */
1063 demand_empty_rest_of_line ();
1064 }
1065
1066 /* .global <symbol>[,...,<symbolN>]
1067 .def <symbol>[,...,<symbolN>]
1068 .ref <symbol>[,...,<symbolN>]
1069
1070 These all identify global symbols.
1071
1072 .def means the symbol is defined in the current module and can be accessed
1073 by other files. The symbol should be placed in the symbol table.
1074
1075 .ref means the symbol is used in the current module but defined in another
1076 module. The linker is to resolve this symbol's definition at link time.
1077
1078 .global should act as a .ref or .def, as needed.
1079
1080 global, def and ref all have symbol storage classes of C_EXT.
1081
1082 I can't identify any difference in how the "other" c54x assembler treats
1083 these, so we ignore the type here. */
1084
1085 void
1086 tic54x_global (int type)
1087 {
1088 char *name;
1089 int c;
1090 symbolS *symbolP;
1091
1092 if (type == 'r')
1093 as_warn (_("Use of .def/.ref is deprecated. Use .global instead"));
1094
1095 ILLEGAL_WITHIN_STRUCT ();
1096
1097 do
1098 {
1099 c = get_symbol_name (&name);
1100 symbolP = symbol_find_or_make (name);
1101 c = restore_line_pointer (c);
1102
1103 S_SET_STORAGE_CLASS (symbolP, C_EXT);
1104 if (c == ',')
1105 {
1106 input_line_pointer++;
1107 if (is_end_of_line[(unsigned char) *input_line_pointer])
1108 c = *input_line_pointer;
1109 }
1110 }
1111 while (c == ',');
1112
1113 demand_empty_rest_of_line ();
1114 }
1115
1116 /* Remove the symbol from the local label hash lookup. */
1117
1118 static int
1119 tic54x_remove_local_label (void **slot, void *arg ATTRIBUTE_UNUSED)
1120 {
1121 string_tuple_t *tuple = *((string_tuple_t **) slot);
1122 void *elem = str_hash_find (local_label_hash[macro_level], tuple->key);
1123 str_hash_delete (local_label_hash[macro_level], tuple->key);
1124 free (elem);
1125 return 0;
1126 }
1127
1128 /* Reset all local labels. */
1129
1130 static void
1131 tic54x_clear_local_labels (int ignored ATTRIBUTE_UNUSED)
1132 {
1133 htab_traverse (local_label_hash[macro_level], tic54x_remove_local_label, NULL);
1134 }
1135
1136 /* .text
1137 .data
1138 .sect "section name"
1139
1140 Initialized section
1141 make sure local labels get cleared when changing sections
1142
1143 ARG is 't' for text, 'd' for data, or '*' for a named section
1144
1145 For compatibility, '*' sections are SEC_CODE if instructions are
1146 encountered, or SEC_DATA if not.
1147 */
1148
1149 static void
1150 tic54x_sect (int arg)
1151 {
1152 ILLEGAL_WITHIN_STRUCT ();
1153
1154 /* Local labels are cleared when changing sections. */
1155 tic54x_clear_local_labels (0);
1156
1157 if (arg == 't')
1158 s_text (0);
1159 else if (arg == 'd')
1160 s_data (0);
1161 else
1162 {
1163 char *name = NULL;
1164 int len;
1165 /* Make sure all named initialized sections flagged properly. If we
1166 encounter instructions, we'll flag it with SEC_CODE as well. */
1167 const char *flags = ",\"w\"\n";
1168
1169 /* If there are quotes, remove them. */
1170 if (*input_line_pointer == '"')
1171 {
1172 name = demand_copy_C_string (&len);
1173 demand_empty_rest_of_line ();
1174 name = concat (name, flags, (char *) NULL);
1175 }
1176 else
1177 {
1178 int c;
1179
1180 c = get_symbol_name (&name);
1181 name = concat (name, flags, (char *) NULL);
1182 (void) restore_line_pointer (c);
1183 demand_empty_rest_of_line ();
1184 }
1185
1186 input_scrub_insert_line (name);
1187 obj_coff_section (0);
1188
1189 /* If there was a line label, make sure that it gets assigned the proper
1190 section. This is for compatibility, even though the actual behavior
1191 is not explicitly defined. For consistency, we make .sect behave
1192 like .usect, since that is probably what people expect. */
1193 if (line_label != NULL)
1194 {
1195 S_SET_SEGMENT (line_label, now_seg);
1196 symbol_set_frag (line_label, frag_now);
1197 S_SET_VALUE (line_label, frag_now_fix ());
1198 if (S_GET_STORAGE_CLASS (line_label) != C_EXT)
1199 S_SET_STORAGE_CLASS (line_label, C_LABEL);
1200 }
1201 }
1202 }
1203
1204 /* [symbol] .space space_in_bits
1205 [symbol] .bes space_in_bits
1206 BES puts the symbol at the *last* word allocated
1207
1208 cribbed from s_space. */
1209
1210 static void
1211 tic54x_space (int arg)
1212 {
1213 expressionS expn;
1214 char *p = 0;
1215 int octets = 0;
1216 long words;
1217 int bits_per_byte = (OCTETS_PER_BYTE * 8);
1218 int bit_offset = 0;
1219 symbolS *label = line_label;
1220 int bes = arg;
1221
1222 ILLEGAL_WITHIN_STRUCT ();
1223
1224 #ifdef md_flush_pending_output
1225 md_flush_pending_output ();
1226 #endif
1227
1228 /* Read the bit count. */
1229 expression (&expn);
1230
1231 /* Some expressions are unresolvable until later in the assembly pass;
1232 postpone until relaxation/fixup. we also have to postpone if a previous
1233 partial allocation has not been completed yet. */
1234 if (expn.X_op != O_constant || frag_bit_offset (frag_now, now_seg) == -1)
1235 {
1236 struct bit_info *bi = XNEW (struct bit_info);
1237
1238 bi->seg = now_seg;
1239 bi->type = bes;
1240 bi->sym = label;
1241 p = frag_var (rs_machine_dependent,
1242 65536 * 2, 1, (relax_substateT) 0,
1243 make_expr_symbol (&expn), (offsetT) 0,
1244 (char *) bi);
1245 if (p)
1246 *p = 0;
1247
1248 return;
1249 }
1250
1251 /* Reduce the required size by any bit offsets currently left over
1252 from a previous .space/.bes/.field directive. */
1253 bit_offset = frag_now->tc_frag_data;
1254 if (bit_offset != 0 && bit_offset < 16)
1255 {
1256 int spare_bits = bits_per_byte - bit_offset;
1257
1258 if (spare_bits >= expn.X_add_number)
1259 {
1260 /* Don't have to do anything; sufficient bits have already been
1261 allocated; just point the label to the right place. */
1262 if (label != NULL)
1263 {
1264 symbol_set_frag (label, frag_now);
1265 S_SET_VALUE (label, frag_now_fix () - 1);
1266 label = NULL;
1267 }
1268 frag_now->tc_frag_data += expn.X_add_number;
1269 goto getout;
1270 }
1271 expn.X_add_number -= spare_bits;
1272 /* Set the label to point to the first word allocated, which in this
1273 case is the previous word, which was only partially filled. */
1274 if (!bes && label != NULL)
1275 {
1276 symbol_set_frag (label, frag_now);
1277 S_SET_VALUE (label, frag_now_fix () - 1);
1278 label = NULL;
1279 }
1280 }
1281 /* Convert bits to bytes/words and octets, rounding up. */
1282 words = ((expn.X_add_number + bits_per_byte - 1) / bits_per_byte);
1283 /* How many do we have left over? */
1284 bit_offset = expn.X_add_number % bits_per_byte;
1285 octets = words * OCTETS_PER_BYTE;
1286 if (octets < 0)
1287 {
1288 as_warn (_(".space/.bes repeat count is negative, ignored"));
1289 goto getout;
1290 }
1291 else if (octets == 0)
1292 {
1293 as_warn (_(".space/.bes repeat count is zero, ignored"));
1294 goto getout;
1295 }
1296
1297 /* If we are in the absolute section, just bump the offset. */
1298 if (now_seg == absolute_section)
1299 {
1300 abs_section_offset += words;
1301 if (bes && label != NULL)
1302 S_SET_VALUE (label, abs_section_offset - 1);
1303 frag_now->tc_frag_data = bit_offset;
1304 goto getout;
1305 }
1306
1307 if (!need_pass_2)
1308 p = frag_var (rs_fill, 1, 1,
1309 (relax_substateT) 0, (symbolS *) 0,
1310 (offsetT) octets, (char *) 0);
1311
1312 /* Make note of how many bits of this word we've allocated so far. */
1313 frag_now->tc_frag_data = bit_offset;
1314
1315 /* .bes puts label at *last* word allocated. */
1316 if (bes && label != NULL)
1317 {
1318 symbol_set_frag (label, frag_now);
1319 S_SET_VALUE (label, frag_now_fix () - 1);
1320 }
1321
1322 if (p)
1323 *p = 0;
1324
1325 getout:
1326
1327 demand_empty_rest_of_line ();
1328 }
1329
1330 /* [symbol] .usect "section-name", size-in-words
1331 [, [blocking-flag] [, alignment-flag]]
1332
1333 Uninitialized section.
1334 Non-zero blocking means that if the section would cross a page (128-word)
1335 boundary, it will be page-aligned.
1336 Non-zero alignment aligns on a longword boundary.
1337
1338 Has no effect on the current section. */
1339
1340 static void
1341 tic54x_usect (int x ATTRIBUTE_UNUSED)
1342 {
1343 char c;
1344 char *name;
1345 char *section_name;
1346 char *p;
1347 segT seg;
1348 int size, blocking_flag, alignment_flag;
1349 segT current_seg;
1350 subsegT current_subseg;
1351 flagword flags;
1352
1353 ILLEGAL_WITHIN_STRUCT ();
1354
1355 current_seg = now_seg; /* Save current seg. */
1356 current_subseg = now_subseg; /* Save current subseg. */
1357
1358 c = get_symbol_name (&section_name); /* Get terminator. */
1359 name = xstrdup (section_name);
1360 c = restore_line_pointer (c);
1361
1362 if (c == ',')
1363 ++input_line_pointer;
1364 else
1365 {
1366 as_bad (_("Missing size argument"));
1367 ignore_rest_of_line ();
1368 return;
1369 }
1370
1371 size = get_absolute_expression ();
1372
1373 /* Read a possibly present third argument (blocking flag). */
1374 if (*input_line_pointer == ',')
1375 {
1376 ++input_line_pointer;
1377 if (*input_line_pointer != ',')
1378 blocking_flag = get_absolute_expression ();
1379 else
1380 blocking_flag = 0;
1381
1382 /* Read a possibly present fourth argument (alignment flag). */
1383 if (*input_line_pointer == ',')
1384 {
1385 ++input_line_pointer;
1386 alignment_flag = get_absolute_expression ();
1387 }
1388 else
1389 alignment_flag = 0;
1390 }
1391 else
1392 blocking_flag = alignment_flag = 0;
1393
1394 seg = subseg_new (name, 0);
1395 flags = bfd_section_flags (seg) | SEC_ALLOC;
1396
1397 if (alignment_flag)
1398 {
1399 /* s_align eats end of line; restore it. */
1400 s_align_bytes (4);
1401 --input_line_pointer;
1402 }
1403
1404 if (line_label != NULL)
1405 {
1406 S_SET_SEGMENT (line_label, seg);
1407 symbol_set_frag (line_label, frag_now);
1408 S_SET_VALUE (line_label, frag_now_fix ());
1409 /* Set scl to label, since that's what TI does. */
1410 if (S_GET_STORAGE_CLASS (line_label) != C_EXT)
1411 S_SET_STORAGE_CLASS (line_label, C_LABEL);
1412 }
1413
1414 seg_info (seg)->bss = 1; /* Uninitialized data. */
1415
1416 p = frag_var (rs_fill, 1, 1,
1417 (relax_substateT) 0, (symbolS *) line_label,
1418 size * OCTETS_PER_BYTE, (char *) 0);
1419 *p = 0;
1420
1421 if (blocking_flag)
1422 flags |= SEC_TIC54X_BLOCK;
1423
1424 if (!bfd_set_section_flags (seg, flags))
1425 as_warn (_("Error setting flags for \"%s\": %s"), name,
1426 bfd_errmsg (bfd_get_error ()));
1427
1428 subseg_set (current_seg, current_subseg); /* Restore current seg. */
1429 demand_empty_rest_of_line ();
1430 }
1431
1432 static enum cpu_version
1433 lookup_version (const char *ver)
1434 {
1435 enum cpu_version version = VNONE;
1436
1437 if (ver[0] == '5' && ver[1] == '4')
1438 {
1439 if (strlen (ver) == 3
1440 && (ver[2] == '1' || ver[2] == '2' || ver[2] == '3'
1441 || ver[2] == '5' || ver[2] == '8' || ver[2] == '9'))
1442 version = ver[2] - '0';
1443 else if (strlen (ver) == 5
1444 && TOUPPER (ver[3]) == 'L'
1445 && TOUPPER (ver[4]) == 'P'
1446 && (ver[2] == '5' || ver[2] == '6'))
1447 version = ver[2] - '0' + 10;
1448 }
1449
1450 return version;
1451 }
1452
1453 static void
1454 set_cpu (enum cpu_version version)
1455 {
1456 cpu = version;
1457 if (version == V545LP || version == V546LP)
1458 {
1459 symbolS *symbolP = symbol_new ("__allow_lp", absolute_section,
1460 &zero_address_frag, 1);
1461 SF_SET_LOCAL (symbolP);
1462 symbol_table_insert (symbolP);
1463 }
1464 }
1465
1466 /* .version cpu-version
1467 cpu-version may be one of the following:
1468 541
1469 542
1470 543
1471 545
1472 545LP
1473 546LP
1474 548
1475 549
1476
1477 This is for compatibility only. It currently has no affect on assembly. */
1478 static int cpu_needs_set = 1;
1479
1480 static void
1481 tic54x_version (int x ATTRIBUTE_UNUSED)
1482 {
1483 enum cpu_version version = VNONE;
1484 enum cpu_version old_version = cpu;
1485 int c;
1486 char *ver;
1487
1488 ILLEGAL_WITHIN_STRUCT ();
1489
1490 SKIP_WHITESPACE ();
1491 ver = input_line_pointer;
1492 while (!is_end_of_line[(unsigned char) *input_line_pointer])
1493 ++input_line_pointer;
1494 c = *input_line_pointer;
1495 *input_line_pointer = 0;
1496
1497 version = lookup_version (ver);
1498
1499 if (cpu != VNONE && cpu != version)
1500 as_warn (_("CPU version has already been set"));
1501
1502 if (version == VNONE)
1503 {
1504 as_bad (_("Unrecognized version '%s'"), ver);
1505 ignore_rest_of_line ();
1506 return;
1507 }
1508 else if (assembly_begun && version != old_version)
1509 {
1510 as_bad (_("Changing of CPU version on the fly not supported"));
1511 ignore_rest_of_line ();
1512 return;
1513 }
1514
1515 set_cpu (version);
1516
1517 *input_line_pointer = c;
1518 demand_empty_rest_of_line ();
1519 }
1520
1521 /* 'f' = float, 'x' = xfloat, 'd' = double, 'l' = ldouble. */
1522
1523 static void
1524 tic54x_float_cons (int type)
1525 {
1526 if (current_stag != 0)
1527 tic54x_struct_field ('f');
1528
1529 #ifdef md_flush_pending_output
1530 md_flush_pending_output ();
1531 #endif
1532
1533 /* Align to long word boundary (4 octets) unless it's ".xfloat". */
1534 if (type != 'x')
1535 {
1536 frag_align (2, 0, 2);
1537 /* If there's a label, assign it to the first allocated word. */
1538 if (line_label != NULL)
1539 {
1540 symbol_set_frag (line_label, frag_now);
1541 S_SET_VALUE (line_label, frag_now_fix ());
1542 }
1543 }
1544
1545 float_cons ('f');
1546 }
1547
1548 /* The argument is capitalized if it should be zero-terminated
1549 's' is normal string with upper 8-bits zero-filled, 'p' is packed.
1550 Code copied from stringer, and slightly modified so that strings are packed
1551 and encoded into the correct octets. */
1552
1553 static void
1554 tic54x_stringer (int type)
1555 {
1556 unsigned int c;
1557 int append_zero = type == 'S' || type == 'P';
1558 int packed = type == 'p' || type == 'P';
1559 int last_char = -1; /* Packed strings need two bytes at a time to encode. */
1560
1561 if (current_stag != NULL)
1562 {
1563 tic54x_struct_field ('*');
1564 return;
1565 }
1566
1567 #ifdef md_flush_pending_output
1568 md_flush_pending_output ();
1569 #endif
1570
1571 c = ','; /* Do loop. */
1572 while (c == ',')
1573 {
1574 SKIP_WHITESPACE ();
1575 switch (*input_line_pointer)
1576 {
1577 default:
1578 {
1579 unsigned short value = get_absolute_expression ();
1580 FRAG_APPEND_1_CHAR ( value & 0xFF);
1581 FRAG_APPEND_1_CHAR ((value >> 8) & 0xFF);
1582 break;
1583 }
1584 case '\"':
1585 ++input_line_pointer; /* -> 1st char of string. */
1586 while (is_a_char (c = next_char_of_string ()))
1587 {
1588 if (!packed)
1589 {
1590 FRAG_APPEND_1_CHAR (c);
1591 FRAG_APPEND_1_CHAR (0);
1592 }
1593 else
1594 {
1595 /* Packed strings are filled MS octet first. */
1596 if (last_char == -1)
1597 last_char = c;
1598 else
1599 {
1600 FRAG_APPEND_1_CHAR (c);
1601 FRAG_APPEND_1_CHAR (last_char);
1602 last_char = -1;
1603 }
1604 }
1605 }
1606 if (append_zero)
1607 {
1608 if (packed && last_char != -1)
1609 {
1610 FRAG_APPEND_1_CHAR (0);
1611 FRAG_APPEND_1_CHAR (last_char);
1612 last_char = -1;
1613 }
1614 else
1615 {
1616 FRAG_APPEND_1_CHAR (0);
1617 FRAG_APPEND_1_CHAR (0);
1618 }
1619 }
1620 know (input_line_pointer[-1] == '\"');
1621 break;
1622 }
1623 SKIP_WHITESPACE ();
1624 c = *input_line_pointer;
1625 if (!is_end_of_line[c])
1626 ++input_line_pointer;
1627 }
1628
1629 /* Finish up any leftover packed string. */
1630 if (packed && last_char != -1)
1631 {
1632 FRAG_APPEND_1_CHAR (0);
1633 FRAG_APPEND_1_CHAR (last_char);
1634 }
1635 demand_empty_rest_of_line ();
1636 }
1637
1638 static void
1639 tic54x_p2align (int arg ATTRIBUTE_UNUSED)
1640 {
1641 as_bad (_("p2align not supported on this target"));
1642 }
1643
1644 static void
1645 tic54x_align_words (int arg)
1646 {
1647 /* Only ".align" with no argument is allowed within .struct/.union. */
1648 int count = arg;
1649
1650 if (!is_end_of_line[(unsigned char) *input_line_pointer])
1651 {
1652 if (arg == 2)
1653 as_warn (_("Argument to .even ignored"));
1654 else
1655 count = get_absolute_expression ();
1656 }
1657
1658 if (current_stag != NULL && arg == 128)
1659 {
1660 if (current_stag->current_bitfield_offset != 0)
1661 {
1662 current_stag->current_bitfield_offset = 0;
1663 ++abs_section_offset;
1664 }
1665 demand_empty_rest_of_line ();
1666 return;
1667 }
1668
1669 ILLEGAL_WITHIN_STRUCT ();
1670
1671 s_align_bytes (count << 1);
1672 }
1673
1674 /* Initialize multiple-bit fields within a single word of memory. */
1675
1676 static void
1677 tic54x_field (int ignore ATTRIBUTE_UNUSED)
1678 {
1679 expressionS expn;
1680 int size = 16;
1681 char *p;
1682 valueT value;
1683 symbolS *label = line_label;
1684
1685 if (current_stag != NULL)
1686 {
1687 tic54x_struct_field ('.');
1688 return;
1689 }
1690
1691 input_line_pointer = parse_expression (input_line_pointer, &expn);
1692
1693 if (*input_line_pointer == ',')
1694 {
1695 ++input_line_pointer;
1696 size = get_absolute_expression ();
1697 if (size < 1 || size > 32)
1698 {
1699 as_bad (_("Invalid field size, must be from 1 to 32"));
1700 ignore_rest_of_line ();
1701 return;
1702 }
1703 }
1704
1705 /* Truncate values to the field width. */
1706 if (expn.X_op != O_constant)
1707 {
1708 /* If the expression value is relocatable, the field size *must*
1709 be 16. */
1710 if (size != 16)
1711 {
1712 as_bad (_("field size must be 16 when value is relocatable"));
1713 ignore_rest_of_line ();
1714 return;
1715 }
1716
1717 frag_now->tc_frag_data = 0;
1718 emit_expr (&expn, 2);
1719 }
1720 else
1721 {
1722 unsigned long fmask = (size == 32) ? 0xFFFFFFFF : (1ul << size) - 1;
1723
1724 value = expn.X_add_number;
1725 expn.X_add_number &= fmask;
1726 if (value != (valueT) expn.X_add_number)
1727 as_warn (_("field value truncated"));
1728 value = expn.X_add_number;
1729 /* Bits are stored MS first. */
1730 while (size >= 16)
1731 {
1732 frag_now->tc_frag_data = 0;
1733 p = frag_more (2);
1734 md_number_to_chars (p, (value >> (size - 16)) & 0xFFFF, 2);
1735 size -= 16;
1736 }
1737 if (size > 0)
1738 {
1739 int bit_offset = frag_bit_offset (frag_now, now_seg);
1740
1741 fragS *alloc_frag = bit_offset_frag (frag_now, now_seg);
1742 if (bit_offset == -1)
1743 {
1744 struct bit_info *bi = XNEW (struct bit_info);
1745 /* We don't know the previous offset at this time, so store the
1746 info we need and figure it out later. */
1747 expressionS size_exp;
1748
1749 size_exp.X_op = O_constant;
1750 size_exp.X_add_number = size;
1751 bi->seg = now_seg;
1752 bi->type = TYPE_FIELD;
1753 bi->value = value;
1754 p = frag_var (rs_machine_dependent,
1755 4, 1, (relax_substateT) 0,
1756 make_expr_symbol (&size_exp), (offsetT) 0,
1757 (char *) bi);
1758 goto getout;
1759 }
1760 else if (bit_offset == 0 || bit_offset + size > 16)
1761 {
1762 /* Align a new field. */
1763 p = frag_more (2);
1764 frag_now->tc_frag_data = 0;
1765 alloc_frag = frag_now;
1766 }
1767 else
1768 {
1769 /* Put the new value entirely within the existing one. */
1770 p = alloc_frag == frag_now ?
1771 frag_now->fr_literal + frag_now_fix_octets () - 2 :
1772 alloc_frag->fr_literal;
1773 if (label != NULL)
1774 {
1775 symbol_set_frag (label, alloc_frag);
1776 if (alloc_frag == frag_now)
1777 S_SET_VALUE (label, frag_now_fix () - 1);
1778 label = NULL;
1779 }
1780 }
1781 value <<= 16 - alloc_frag->tc_frag_data - size;
1782
1783 /* OR in existing value. */
1784 if (alloc_frag->tc_frag_data)
1785 value |= ((unsigned short) p[1] << 8) | p[0];
1786 md_number_to_chars (p, value, 2);
1787 alloc_frag->tc_frag_data += size;
1788 if (alloc_frag->tc_frag_data == 16)
1789 alloc_frag->tc_frag_data = 0;
1790 }
1791 }
1792 getout:
1793 demand_empty_rest_of_line ();
1794 }
1795
1796 /* Ideally, we want to check SEC_LOAD and SEC_HAS_CONTENTS, but those aren't
1797 available yet. seg_info ()->bss is the next best thing. */
1798
1799 static int
1800 tic54x_initialized_section (segT seg)
1801 {
1802 return !seg_info (seg)->bss;
1803 }
1804
1805 /* .clink ["section name"]
1806
1807 Marks the section as conditionally linked (link only if contents are
1808 referenced elsewhere.
1809 Without a name, refers to the current initialized section.
1810 Name is required for uninitialized sections. */
1811
1812 static void
1813 tic54x_clink (int ignored ATTRIBUTE_UNUSED)
1814 {
1815 segT seg = now_seg;
1816
1817 ILLEGAL_WITHIN_STRUCT ();
1818
1819 if (*input_line_pointer == '\"')
1820 {
1821 char *section_name = ++input_line_pointer;
1822 char *name;
1823
1824 while (is_a_char (next_char_of_string ()))
1825 ;
1826 know (input_line_pointer[-1] == '\"');
1827 input_line_pointer[-1] = 0;
1828 name = xstrdup (section_name);
1829
1830 seg = bfd_get_section_by_name (stdoutput, name);
1831 if (seg == NULL)
1832 {
1833 as_bad (_("Unrecognized section '%s'"), section_name);
1834 ignore_rest_of_line ();
1835 return;
1836 }
1837 }
1838 else
1839 {
1840 if (!tic54x_initialized_section (seg))
1841 {
1842 as_bad (_("Current section is uninitialized, "
1843 "section name required for .clink"));
1844 ignore_rest_of_line ();
1845 return;
1846 }
1847 }
1848
1849 seg->flags |= SEC_TIC54X_CLINK;
1850
1851 demand_empty_rest_of_line ();
1852 }
1853
1854 /* Change the default include directory to be the current source file's
1855 directory, instead of the current working directory. If DOT is non-zero,
1856 set to "." instead. */
1857
1858 static void
1859 tic54x_set_default_include (void)
1860 {
1861 char *dir, *tmp = NULL;
1862 const char *curfile;
1863 unsigned lineno;
1864
1865 curfile = as_where (&lineno);
1866 dir = xstrdup (curfile);
1867 tmp = strrchr (dir, '/');
1868 if (tmp != NULL)
1869 {
1870 int len;
1871
1872 *tmp = '\0';
1873 len = strlen (dir);
1874 if (include_dir_count == 0)
1875 {
1876 include_dirs = XNEWVEC (const char *, 1);
1877 include_dir_count = 1;
1878 }
1879 include_dirs[0] = dir;
1880 if (len > include_dir_maxlen)
1881 include_dir_maxlen = len;
1882 }
1883 else if (include_dirs != NULL)
1884 include_dirs[0] = ".";
1885 }
1886
1887 /* .include "filename" | filename
1888 .copy "filename" | filename
1889
1890 FIXME 'include' file should be omitted from any output listing,
1891 'copy' should be included in any output listing
1892 FIXME -- prevent any included files from changing listing (compat only)
1893 FIXME -- need to include source file directory in search path; what's a
1894 good way to do this?
1895
1896 Entering/exiting included/copied file clears all local labels. */
1897
1898 static void
1899 tic54x_include (int ignored ATTRIBUTE_UNUSED)
1900 {
1901 char newblock[] = " .newblock\n";
1902 char *filename;
1903 char *input;
1904 int len, c = -1;
1905
1906 ILLEGAL_WITHIN_STRUCT ();
1907
1908 SKIP_WHITESPACE ();
1909
1910 if (*input_line_pointer == '"')
1911 {
1912 filename = demand_copy_C_string (&len);
1913 demand_empty_rest_of_line ();
1914 }
1915 else
1916 {
1917 filename = input_line_pointer;
1918 while (!is_end_of_line[(unsigned char) *input_line_pointer])
1919 ++input_line_pointer;
1920 c = *input_line_pointer;
1921 *input_line_pointer = '\0';
1922 filename = xstrdup (filename);
1923 *input_line_pointer = c;
1924 demand_empty_rest_of_line ();
1925 }
1926 /* Insert a partial line with the filename (for the sake of s_include)
1927 and a .newblock.
1928 The included file will be inserted before the newblock, so that the
1929 newblock is executed after the included file is processed. */
1930 input = concat ("\"", filename, "\"\n", newblock, (char *) NULL);
1931 input_scrub_insert_line (input);
1932
1933 tic54x_clear_local_labels (0);
1934
1935 tic54x_set_default_include ();
1936
1937 s_include (0);
1938 }
1939
1940 static void
1941 tic54x_message (int type)
1942 {
1943 char *msg;
1944 char c;
1945 int len;
1946
1947 ILLEGAL_WITHIN_STRUCT ();
1948
1949 if (*input_line_pointer == '"')
1950 msg = demand_copy_C_string (&len);
1951 else
1952 {
1953 msg = input_line_pointer;
1954 while (!is_end_of_line[(unsigned char) *input_line_pointer])
1955 ++input_line_pointer;
1956 c = *input_line_pointer;
1957 *input_line_pointer = 0;
1958 msg = xstrdup (msg);
1959 *input_line_pointer = c;
1960 }
1961
1962 switch (type)
1963 {
1964 case 'm':
1965 as_tsktsk ("%s", msg);
1966 break;
1967 case 'w':
1968 as_warn ("%s", msg);
1969 break;
1970 case 'e':
1971 as_bad ("%s", msg);
1972 break;
1973 }
1974
1975 demand_empty_rest_of_line ();
1976 }
1977
1978 /* .label <symbol>
1979 Define a special symbol that refers to the loadtime address rather than the
1980 runtime address within the current section.
1981
1982 This symbol gets a special storage class so that when it is resolved, it is
1983 resolved relative to the load address (lma) of the section rather than the
1984 run address (vma). */
1985
1986 static void
1987 tic54x_label (int ignored ATTRIBUTE_UNUSED)
1988 {
1989 char *name;
1990 symbolS *symbolP;
1991 int c;
1992
1993 ILLEGAL_WITHIN_STRUCT ();
1994
1995 c = get_symbol_name (&name);
1996 symbolP = colon (name);
1997 S_SET_STORAGE_CLASS (symbolP, C_STATLAB);
1998
1999 (void) restore_line_pointer (c);
2000 demand_empty_rest_of_line ();
2001 }
2002
2003 /* .mmregs
2004 Install all memory-mapped register names into the symbol table as
2005 absolute local symbols. */
2006
2007 static void
2008 tic54x_mmregs (int ignored ATTRIBUTE_UNUSED)
2009 {
2010 tic54x_symbol *sym;
2011
2012 ILLEGAL_WITHIN_STRUCT ();
2013
2014 for (sym = (tic54x_symbol *) mmregs; sym->name; sym++)
2015 {
2016 symbolS *symbolP = symbol_new (sym->name, absolute_section,
2017 &zero_address_frag, sym->value);
2018 SF_SET_LOCAL (symbolP);
2019 symbol_table_insert (symbolP);
2020 }
2021 }
2022
2023 /* .loop [count]
2024 Count defaults to 1024. */
2025
2026 static void
2027 tic54x_loop (int count)
2028 {
2029 ILLEGAL_WITHIN_STRUCT ();
2030
2031 SKIP_WHITESPACE ();
2032 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2033 count = get_absolute_expression ();
2034
2035 do_repeat ((size_t) count, "LOOP", "ENDLOOP");
2036 }
2037
2038 /* Normally, endloop gets eaten by the preceding loop. */
2039
2040 static void
2041 tic54x_endloop (int ignore ATTRIBUTE_UNUSED)
2042 {
2043 as_bad (_("ENDLOOP without corresponding LOOP"));
2044 ignore_rest_of_line ();
2045 }
2046
2047 /* .break [condition]. */
2048
2049 static void
2050 tic54x_break (int ignore ATTRIBUTE_UNUSED)
2051 {
2052 int cond = 1;
2053
2054 ILLEGAL_WITHIN_STRUCT ();
2055
2056 SKIP_WHITESPACE ();
2057 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2058 cond = get_absolute_expression ();
2059
2060 if (cond)
2061 end_repeat (substitution_line ? 1 : 0);
2062 }
2063
2064 static void
2065 set_address_mode (int mode)
2066 {
2067 amode = mode;
2068 if (mode == far_mode)
2069 {
2070 symbolS *symbolP = symbol_new ("__allow_far", absolute_section,
2071 &zero_address_frag, 1);
2072 SF_SET_LOCAL (symbolP);
2073 symbol_table_insert (symbolP);
2074 }
2075 }
2076
2077 static int address_mode_needs_set = 1;
2078
2079 static void
2080 tic54x_address_mode (int mode)
2081 {
2082 if (assembly_begun && amode != (unsigned) mode)
2083 {
2084 as_bad (_("Mixing of normal and extended addressing not supported"));
2085 ignore_rest_of_line ();
2086 return;
2087 }
2088 if (mode == far_mode && cpu != VNONE && cpu != V548 && cpu != V549)
2089 {
2090 as_bad (_("Extended addressing not supported on the specified CPU"));
2091 ignore_rest_of_line ();
2092 return;
2093 }
2094
2095 set_address_mode (mode);
2096 demand_empty_rest_of_line ();
2097 }
2098
2099 /* .sblock "section"|section [,...,"section"|section]
2100 Designate initialized sections for blocking. */
2101
2102 static void
2103 tic54x_sblock (int ignore ATTRIBUTE_UNUSED)
2104 {
2105 int c = ',';
2106
2107 ILLEGAL_WITHIN_STRUCT ();
2108
2109 while (c == ',')
2110 {
2111 segT seg;
2112 char *name;
2113
2114 if (*input_line_pointer == '"')
2115 {
2116 int len;
2117
2118 name = demand_copy_C_string (&len);
2119 }
2120 else
2121 {
2122 char *section_name;
2123
2124 c = get_symbol_name (&section_name);
2125 name = xstrdup (section_name);
2126 (void) restore_line_pointer (c);
2127 }
2128
2129 seg = bfd_get_section_by_name (stdoutput, name);
2130 if (seg == NULL)
2131 {
2132 as_bad (_("Unrecognized section '%s'"), name);
2133 ignore_rest_of_line ();
2134 return;
2135 }
2136 else if (!tic54x_initialized_section (seg))
2137 {
2138 as_bad (_(".sblock may be used for initialized sections only"));
2139 ignore_rest_of_line ();
2140 return;
2141 }
2142 seg->flags |= SEC_TIC54X_BLOCK;
2143
2144 c = *input_line_pointer;
2145 if (!is_end_of_line[(unsigned char) c])
2146 ++input_line_pointer;
2147 }
2148
2149 demand_empty_rest_of_line ();
2150 }
2151
2152 /* symbol .set value
2153 symbol .equ value
2154
2155 value must be defined externals; no forward-referencing allowed
2156 symbols assigned with .set/.equ may not be redefined. */
2157
2158 static void
2159 tic54x_set (int ignore ATTRIBUTE_UNUSED)
2160 {
2161 symbolS *symbolP;
2162 char *name;
2163
2164 ILLEGAL_WITHIN_STRUCT ();
2165
2166 if (!line_label)
2167 {
2168 as_bad (_("Symbol missing for .set/.equ"));
2169 ignore_rest_of_line ();
2170 return;
2171 }
2172 name = xstrdup (S_GET_NAME (line_label));
2173 line_label = NULL;
2174 if ((symbolP = symbol_find (name)) == NULL
2175 && (symbolP = md_undefined_symbol (name)) == NULL)
2176 {
2177 symbolP = symbol_new (name, absolute_section, &zero_address_frag, 0);
2178 S_SET_STORAGE_CLASS (symbolP, C_STAT);
2179 }
2180 free (name);
2181 S_SET_DATA_TYPE (symbolP, T_INT);
2182 S_SET_SEGMENT (symbolP, absolute_section);
2183 symbol_table_insert (symbolP);
2184 pseudo_set (symbolP);
2185 demand_empty_rest_of_line ();
2186 }
2187
2188 /* .fclist
2189 .fcnolist
2190 List false conditional blocks. */
2191
2192 static void
2193 tic54x_fclist (int show)
2194 {
2195 if (show)
2196 listing &= ~LISTING_NOCOND;
2197 else
2198 listing |= LISTING_NOCOND;
2199 demand_empty_rest_of_line ();
2200 }
2201
2202 static void
2203 tic54x_sslist (int show)
2204 {
2205 ILLEGAL_WITHIN_STRUCT ();
2206
2207 listing_sslist = show;
2208 }
2209
2210 /* .var SYM[,...,SYMN]
2211 Define a substitution string to be local to a macro. */
2212
2213 static void
2214 tic54x_var (int ignore ATTRIBUTE_UNUSED)
2215 {
2216 static char empty[] = "";
2217 char *name;
2218 int c;
2219
2220 ILLEGAL_WITHIN_STRUCT ();
2221
2222 if (macro_level == 0)
2223 {
2224 as_bad (_(".var may only be used within a macro definition"));
2225 ignore_rest_of_line ();
2226 return;
2227 }
2228 do
2229 {
2230 if (!ISALPHA (*input_line_pointer))
2231 {
2232 as_bad (_("Substitution symbols must begin with a letter"));
2233 ignore_rest_of_line ();
2234 return;
2235 }
2236 c = get_symbol_name (&name);
2237 /* .var symbols start out with a null string. */
2238 name = xstrdup (name);
2239 str_hash_insert (subsym_hash[macro_level], name, empty);
2240 c = restore_line_pointer (c);
2241 if (c == ',')
2242 {
2243 ++input_line_pointer;
2244 if (is_end_of_line[(unsigned char) *input_line_pointer])
2245 c = *input_line_pointer;
2246 }
2247 }
2248 while (c == ',');
2249
2250 demand_empty_rest_of_line ();
2251 }
2252
2253 /* .mlib <macro library filename>
2254
2255 Macro libraries are archived (standard AR-format) text macro definitions
2256 Expand the file and include it.
2257
2258 FIXME need to try the source file directory as well. */
2259
2260 static void
2261 tic54x_mlib (int ignore ATTRIBUTE_UNUSED)
2262 {
2263 char *filename;
2264 char *path;
2265 int len, i;
2266 bfd *abfd, *mbfd;
2267
2268 ILLEGAL_WITHIN_STRUCT ();
2269
2270 /* Parse the filename. */
2271 if (*input_line_pointer == '"')
2272 {
2273 if ((filename = demand_copy_C_string (&len)) == NULL)
2274 return;
2275 }
2276 else
2277 {
2278 SKIP_WHITESPACE ();
2279 len = 0;
2280 while (!is_end_of_line[(unsigned char) *input_line_pointer]
2281 && !ISSPACE (*input_line_pointer))
2282 {
2283 obstack_1grow (&notes, *input_line_pointer);
2284 ++input_line_pointer;
2285 ++len;
2286 }
2287 obstack_1grow (&notes, '\0');
2288 filename = obstack_finish (&notes);
2289 }
2290 demand_empty_rest_of_line ();
2291
2292 tic54x_set_default_include ();
2293 path = XNEWVEC (char, (unsigned long) len + include_dir_maxlen + 5);
2294
2295 for (i = 0; i < include_dir_count; i++)
2296 {
2297 FILE *try;
2298
2299 strcpy (path, include_dirs[i]);
2300 strcat (path, "/");
2301 strcat (path, filename);
2302 if ((try = fopen (path, "r")) != NULL)
2303 {
2304 fclose (try);
2305 break;
2306 }
2307 }
2308
2309 if (i >= include_dir_count)
2310 {
2311 free (path);
2312 path = filename;
2313 }
2314
2315 /* FIXME: if path is found, malloc'd storage is not freed. Of course, this
2316 happens all over the place, and since the assembler doesn't usually keep
2317 running for a very long time, it really doesn't matter. */
2318 register_dependency (path);
2319
2320 /* Expand all archive entries to temporary files and include them. */
2321 abfd = bfd_openr (path, NULL);
2322 if (!abfd)
2323 {
2324 as_bad (_("can't open macro library file '%s' for reading: %s"),
2325 path, bfd_errmsg (bfd_get_error ()));
2326 ignore_rest_of_line ();
2327 return;
2328 }
2329 if (!bfd_check_format (abfd, bfd_archive))
2330 {
2331 as_bad (_("File '%s' not in macro archive format"), path);
2332 ignore_rest_of_line ();
2333 return;
2334 }
2335
2336 /* Open each BFD as binary (it should be straight ASCII text). */
2337 for (mbfd = bfd_openr_next_archived_file (abfd, NULL);
2338 mbfd != NULL; mbfd = bfd_openr_next_archived_file (abfd, mbfd))
2339 {
2340 /* Get a size at least as big as the archive member. */
2341 bfd_size_type size = bfd_get_size (mbfd);
2342 char *buf = XNEWVEC (char, size);
2343 char *fname = tmpnam (NULL);
2344 FILE *ftmp;
2345
2346 /* We're not sure how big it is, but it will be smaller than "size". */
2347 size = bfd_bread (buf, size, mbfd);
2348
2349 /* Write to a temporary file, then use s_include to include it
2350 a bit of a hack. */
2351 ftmp = fopen (fname, "w+b");
2352 fwrite ((void *) buf, size, 1, ftmp);
2353 if (size == 0 || buf[size - 1] != '\n')
2354 fwrite ("\n", 1, 1, ftmp);
2355 fclose (ftmp);
2356 free (buf);
2357 input_scrub_insert_file (fname);
2358 unlink (fname);
2359 }
2360 }
2361
2362 const pseudo_typeS md_pseudo_table[] =
2363 {
2364 { "algebraic", s_ignore , 0 },
2365 { "align" , tic54x_align_words , 128 },
2366 { "ascii" , tic54x_stringer , 'p' },
2367 { "asciz" , tic54x_stringer , 'P' },
2368 { "even" , tic54x_align_words , 2 },
2369 { "asg" , tic54x_asg , 0 },
2370 { "eval" , tic54x_eval , 0 },
2371 { "bss" , tic54x_bss , 0 },
2372 { "byte" , tic54x_cons , 'b' },
2373 { "ubyte" , tic54x_cons , 'B' },
2374 { "char" , tic54x_cons , 'c' },
2375 { "uchar" , tic54x_cons , 'C' },
2376 { "clink" , tic54x_clink , 0 },
2377 { "c_mode" , tic54x_address_mode , c_mode },
2378 { "copy" , tic54x_include , 'c' },
2379 { "include" , tic54x_include , 'i' },
2380 { "data" , tic54x_sect , 'd' },
2381 { "double" , tic54x_float_cons , 'd' },
2382 { "ldouble" , tic54x_float_cons , 'l' },
2383 { "drlist" , s_ignore , 0 },
2384 { "drnolist" , s_ignore , 0 },
2385 { "emsg" , tic54x_message , 'e' },
2386 { "mmsg" , tic54x_message , 'm' },
2387 { "wmsg" , tic54x_message , 'w' },
2388 { "far_mode" , tic54x_address_mode , far_mode },
2389 { "fclist" , tic54x_fclist , 1 },
2390 { "fcnolist" , tic54x_fclist , 0 },
2391 { "field" , tic54x_field , -1 },
2392 { "float" , tic54x_float_cons , 'f' },
2393 { "xfloat" , tic54x_float_cons , 'x' },
2394 { "global" , tic54x_global , 'g' },
2395 { "def" , tic54x_global , 'd' },
2396 { "ref" , tic54x_global , 'r' },
2397 { "half" , tic54x_cons , 'h' },
2398 { "uhalf" , tic54x_cons , 'H' },
2399 { "short" , tic54x_cons , 's' },
2400 { "ushort" , tic54x_cons , 'S' },
2401 { "if" , s_if , (int) O_ne },
2402 { "elseif" , s_elseif , (int) O_ne },
2403 { "else" , s_else , 0 },
2404 { "endif" , s_endif , 0 },
2405 { "int" , tic54x_cons , 'i' },
2406 { "uint" , tic54x_cons , 'I' },
2407 { "word" , tic54x_cons , 'w' },
2408 { "uword" , tic54x_cons , 'W' },
2409 { "label" , tic54x_label , 0 }, /* Loadtime
2410 address. */
2411 { "length" , s_ignore , 0 },
2412 { "width" , s_ignore , 0 },
2413 { "long" , tic54x_cons , 'l' },
2414 { "ulong" , tic54x_cons , 'L' },
2415 { "xlong" , tic54x_cons , 'x' },
2416 { "loop" , tic54x_loop , 1024 },
2417 { "break" , tic54x_break , 0 },
2418 { "endloop" , tic54x_endloop , 0 },
2419 { "mlib" , tic54x_mlib , 0 },
2420 { "mlist" , s_ignore , 0 },
2421 { "mnolist" , s_ignore , 0 },
2422 { "mmregs" , tic54x_mmregs , 0 },
2423 { "newblock" , tic54x_clear_local_labels, 0 },
2424 { "option" , s_ignore , 0 },
2425 { "p2align" , tic54x_p2align , 0 },
2426 { "sblock" , tic54x_sblock , 0 },
2427 { "sect" , tic54x_sect , '*' },
2428 { "set" , tic54x_set , 0 },
2429 { "equ" , tic54x_set , 0 },
2430 { "space" , tic54x_space , 0 },
2431 { "bes" , tic54x_space , 1 },
2432 { "sslist" , tic54x_sslist , 1 },
2433 { "ssnolist" , tic54x_sslist , 0 },
2434 { "string" , tic54x_stringer , 's' },
2435 { "pstring" , tic54x_stringer , 'p' },
2436 { "struct" , tic54x_struct , 0 },
2437 { "tag" , tic54x_tag , 0 },
2438 { "endstruct", tic54x_endstruct , 0 },
2439 { "tab" , s_ignore , 0 },
2440 { "text" , tic54x_sect , 't' },
2441 { "union" , tic54x_struct , 1 },
2442 { "endunion" , tic54x_endstruct , 1 },
2443 { "usect" , tic54x_usect , 0 },
2444 { "var" , tic54x_var , 0 },
2445 { "version" , tic54x_version , 0 },
2446 {0 , 0 , 0 }
2447 };
2448
2449 int
2450 md_parse_option (int c, const char *arg)
2451 {
2452 switch (c)
2453 {
2454 default:
2455 return 0;
2456 case OPTION_COFF_VERSION:
2457 {
2458 int version = atoi (arg);
2459
2460 if (version != 0 && version != 1 && version != 2)
2461 as_fatal (_("Bad COFF version '%s'"), arg);
2462 /* FIXME -- not yet implemented. */
2463 break;
2464 }
2465 case OPTION_CPU_VERSION:
2466 {
2467 cpu = lookup_version (arg);
2468 cpu_needs_set = 1;
2469 if (cpu == VNONE)
2470 as_fatal (_("Bad CPU version '%s'"), arg);
2471 break;
2472 }
2473 case OPTION_ADDRESS_MODE:
2474 amode = far_mode;
2475 address_mode_needs_set = 1;
2476 break;
2477 case OPTION_STDERR_TO_FILE:
2478 {
2479 const char *filename = arg;
2480 FILE *fp = fopen (filename, "w+");
2481
2482 if (fp == NULL)
2483 as_fatal (_("Can't redirect stderr to the file '%s'"), filename);
2484 fclose (fp);
2485 if ((fp = freopen (filename, "w+", stderr)) == NULL)
2486 as_fatal (_("Can't redirect stderr to the file '%s'"), filename);
2487 break;
2488 }
2489 }
2490
2491 return 1;
2492 }
2493
2494 /* Create a "local" substitution string hash table for a new macro level
2495 Some docs imply that macros have to use .newblock in order to be able
2496 to re-use a local label. We effectively do an automatic .newblock by
2497 deleting the local label hash between macro invocations. */
2498
2499 void
2500 tic54x_macro_start (void)
2501 {
2502 if (++macro_level >= MAX_SUBSYM_HASH)
2503 {
2504 as_fatal (_("Macro nesting is too deep"));
2505 return;
2506 }
2507 subsym_hash[macro_level] = str_htab_create ();
2508 local_label_hash[macro_level] = str_htab_create ();
2509 }
2510
2511 void
2512 tic54x_macro_info (const macro_entry *macro)
2513 {
2514 const formal_entry *entry;
2515
2516 /* Put the formal args into the substitution symbol table. */
2517 for (entry = macro->formals; entry; entry = entry->next)
2518 {
2519 char *name = xstrndup (entry->name.ptr, entry->name.len);
2520 char *value = xstrndup (entry->actual.ptr, entry->actual.len);
2521
2522 name[entry->name.len] = '\0';
2523 value[entry->actual.len] = '\0';
2524 str_hash_insert (subsym_hash[macro_level], name, value);
2525 }
2526 }
2527
2528 /* Get rid of this macro's .var's, arguments, and local labels. */
2529
2530 void
2531 tic54x_macro_end (void)
2532 {
2533 htab_delete (subsym_hash[macro_level]);
2534 subsym_hash[macro_level] = NULL;
2535 htab_delete (local_label_hash[macro_level]);
2536 local_label_hash[macro_level] = NULL;
2537 --macro_level;
2538 }
2539
2540 static int
2541 subsym_symlen (char *a, char *ignore ATTRIBUTE_UNUSED)
2542 {
2543 return strlen (a);
2544 }
2545
2546 /* Compare symbol A to string B. */
2547
2548 static int
2549 subsym_symcmp (char *a, char *b)
2550 {
2551 return strcmp (a, b);
2552 }
2553
2554 /* Return the index of the first occurrence of B in A, or zero if none
2555 assumes b is an integer char value as a string. Index is one-based. */
2556
2557 static int
2558 subsym_firstch (char *a, char *b)
2559 {
2560 int val = atoi (b);
2561 char *tmp = strchr (a, val);
2562
2563 return tmp ? tmp - a + 1 : 0;
2564 }
2565
2566 /* Similar to firstch, but returns index of last occurrence of B in A. */
2567
2568 static int
2569 subsym_lastch (char *a, char *b)
2570 {
2571 int val = atoi (b);
2572 char *tmp = strrchr (a, val);
2573
2574 return tmp ? tmp - a + 1 : 0;
2575 }
2576
2577 /* Returns 1 if string A is defined in the symbol table (NOT the substitution
2578 symbol table). */
2579
2580 static int
2581 subsym_isdefed (char *a, char *ignore ATTRIBUTE_UNUSED)
2582 {
2583 symbolS *symbolP = symbol_find (a);
2584
2585 return symbolP != NULL;
2586 }
2587
2588 /* Assign first member of comma-separated list B (e.g. "1,2,3") to the symbol
2589 A, or zero if B is a null string. Both arguments *must* be substitution
2590 symbols, unsubstituted. */
2591
2592 static int
2593 subsym_ismember (char *sym, char *list)
2594 {
2595 char *elem, *ptr, *listv;
2596
2597 if (!list)
2598 return 0;
2599
2600 listv = subsym_lookup (list, macro_level);
2601 if (!listv)
2602 {
2603 as_bad (_("Undefined substitution symbol '%s'"), list);
2604 ignore_rest_of_line ();
2605 return 0;
2606 }
2607
2608 ptr = elem = xstrdup (listv);
2609 while (*ptr && *ptr != ',')
2610 ++ptr;
2611 *ptr++ = 0;
2612
2613 subsym_create_or_replace (sym, elem);
2614
2615 /* Reassign the list. */
2616 subsym_create_or_replace (list, ptr);
2617
2618 /* Assume this value, docs aren't clear. */
2619 return *list != 0;
2620 }
2621
2622 /* Return zero if not a constant; otherwise:
2623 1 if binary
2624 2 if octal
2625 3 if hexadecimal
2626 4 if character
2627 5 if decimal. */
2628
2629 static int
2630 subsym_iscons (char *a, char *ignore ATTRIBUTE_UNUSED)
2631 {
2632 expressionS expn;
2633
2634 parse_expression (a, &expn);
2635
2636 if (expn.X_op == O_constant)
2637 {
2638 int len = strlen (a);
2639
2640 switch (TOUPPER (a[len - 1]))
2641 {
2642 case 'B':
2643 return 1;
2644 case 'Q':
2645 return 2;
2646 case 'H':
2647 return 3;
2648 case '\'':
2649 return 4;
2650 default:
2651 break;
2652 }
2653 /* No suffix; either octal, hex, or decimal. */
2654 if (*a == '0' && len > 1)
2655 {
2656 if (TOUPPER (a[1]) == 'X')
2657 return 3;
2658 return 2;
2659 }
2660 return 5;
2661 }
2662
2663 return 0;
2664 }
2665
2666 /* Return 1 if A is a valid symbol name. Expects string input. */
2667
2668 static int
2669 subsym_isname (char *a, char *ignore ATTRIBUTE_UNUSED)
2670 {
2671 if (!is_name_beginner (*a))
2672 return 0;
2673 while (*a)
2674 {
2675 if (!is_part_of_name (*a))
2676 return 0;
2677 ++a;
2678 }
2679 return 1;
2680 }
2681
2682 /* Return whether the string is a register; accepts ar0-7, unless .mmregs has
2683 been seen; if so, recognize any memory-mapped register.
2684 Note this does not recognize "A" or "B" accumulators. */
2685
2686 static int
2687 subsym_isreg (char *a, char *ignore ATTRIBUTE_UNUSED)
2688 {
2689 if (str_hash_find (reg_hash, a))
2690 return 1;
2691 if (str_hash_find (mmreg_hash, a))
2692 return 1;
2693 return 0;
2694 }
2695
2696 /* Return the structure size, given the stag. */
2697
2698 static int
2699 subsym_structsz (char *name, char *ignore ATTRIBUTE_UNUSED)
2700 {
2701 struct stag *stag = (struct stag *) str_hash_find (stag_hash, name);
2702
2703 if (stag)
2704 return stag->size;
2705
2706 return 0;
2707 }
2708
2709 /* If anybody actually uses this, they can fix it :)
2710 FIXME I'm not sure what the "reference point" of a structure is. It might
2711 be either the initial offset given .struct, or it may be the offset of the
2712 structure within another structure, or it might be something else
2713 altogether. since the TI assembler doesn't seem to ever do anything but
2714 return zero, we punt and return zero. */
2715
2716 static int
2717 subsym_structacc (char *stag_name ATTRIBUTE_UNUSED,
2718 char *ignore ATTRIBUTE_UNUSED)
2719 {
2720 return 0;
2721 }
2722
2723 static float
2724 math_ceil (float arg1, float ignore ATTRIBUTE_UNUSED)
2725 {
2726 return (float) ceil (arg1);
2727 }
2728
2729 static float
2730 math_cvi (float arg1, float ignore ATTRIBUTE_UNUSED)
2731 {
2732 return (int) arg1;
2733 }
2734
2735 static float
2736 math_floor (float arg1, float ignore ATTRIBUTE_UNUSED)
2737 {
2738 return (float) floor (arg1);
2739 }
2740
2741 static float
2742 math_fmod (float arg1, float arg2)
2743 {
2744 return (int) arg1 % (int) arg2;
2745 }
2746
2747 static float
2748 math_int (float arg1, float ignore ATTRIBUTE_UNUSED)
2749 {
2750 return ((float) ((int) arg1)) == arg1;
2751 }
2752
2753 static float
2754 math_round (float arg1, float ignore ATTRIBUTE_UNUSED)
2755 {
2756 return arg1 > 0 ? (int) (arg1 + 0.5) : (int) (arg1 - 0.5);
2757 }
2758
2759 static float
2760 math_sgn (float arg1, float ignore ATTRIBUTE_UNUSED)
2761 {
2762 return (arg1 < 0) ? -1 : (arg1 ? 1 : 0);
2763 }
2764
2765 static float
2766 math_trunc (float arg1, float ignore ATTRIBUTE_UNUSED)
2767 {
2768 return (int) arg1;
2769 }
2770
2771 static float
2772 math_acos (float arg1, float ignore ATTRIBUTE_UNUSED)
2773 {
2774 return (float) acos (arg1);
2775 }
2776
2777 static float
2778 math_asin (float arg1, float ignore ATTRIBUTE_UNUSED)
2779 {
2780 return (float) asin (arg1);
2781 }
2782
2783 static float
2784 math_atan (float arg1, float ignore ATTRIBUTE_UNUSED)
2785 {
2786 return (float) atan (arg1);
2787 }
2788
2789 static float
2790 math_atan2 (float arg1, float arg2)
2791 {
2792 return (float) atan2 (arg1, arg2);
2793 }
2794
2795 static float
2796 math_cosh (float arg1, float ignore ATTRIBUTE_UNUSED)
2797 {
2798 return (float) cosh (arg1);
2799 }
2800
2801 static float
2802 math_cos (float arg1, float ignore ATTRIBUTE_UNUSED)
2803 {
2804 return (float) cos (arg1);
2805 }
2806
2807 static float
2808 math_cvf (float arg1, float ignore ATTRIBUTE_UNUSED)
2809 {
2810 return (float) arg1;
2811 }
2812
2813 static float
2814 math_exp (float arg1, float ignore ATTRIBUTE_UNUSED)
2815 {
2816 return (float) exp (arg1);
2817 }
2818
2819 static float
2820 math_fabs (float arg1, float ignore ATTRIBUTE_UNUSED)
2821 {
2822 return (float) fabs (arg1);
2823 }
2824
2825 /* expr1 * 2^expr2. */
2826
2827 static float
2828 math_ldexp (float arg1, float arg2)
2829 {
2830 return arg1 * (float) pow (2.0, arg2);
2831 }
2832
2833 static float
2834 math_log10 (float arg1, float ignore ATTRIBUTE_UNUSED)
2835 {
2836 return (float) log10 (arg1);
2837 }
2838
2839 static float
2840 math_log (float arg1, float ignore ATTRIBUTE_UNUSED)
2841 {
2842 return (float) log (arg1);
2843 }
2844
2845 static float
2846 math_max (float arg1, float arg2)
2847 {
2848 return (arg1 > arg2) ? arg1 : arg2;
2849 }
2850
2851 static float
2852 math_min (float arg1, float arg2)
2853 {
2854 return (arg1 < arg2) ? arg1 : arg2;
2855 }
2856
2857 static float
2858 math_pow (float arg1, float arg2)
2859 {
2860 return (float) pow (arg1, arg2);
2861 }
2862
2863 static float
2864 math_sin (float arg1, float ignore ATTRIBUTE_UNUSED)
2865 {
2866 return (float) sin (arg1);
2867 }
2868
2869 static float
2870 math_sinh (float arg1, float ignore ATTRIBUTE_UNUSED)
2871 {
2872 return (float) sinh (arg1);
2873 }
2874
2875 static float
2876 math_sqrt (float arg1, float ignore ATTRIBUTE_UNUSED)
2877 {
2878 return (float) sqrt (arg1);
2879 }
2880
2881 static float
2882 math_tan (float arg1, float ignore ATTRIBUTE_UNUSED)
2883 {
2884 return (float) tan (arg1);
2885 }
2886
2887 static float
2888 math_tanh (float arg1, float ignore ATTRIBUTE_UNUSED)
2889 {
2890 return (float) tanh (arg1);
2891 }
2892
2893 /* Built-in substitution symbol functions and math functions. */
2894 typedef struct
2895 {
2896 const char *name;
2897 int (*proc) (char *, char *);
2898 int nargs;
2899 } subsym_proc_entry;
2900
2901 static const subsym_proc_entry subsym_procs[] =
2902 {
2903 /* Assembler built-in string substitution functions. */
2904 { "$symlen", subsym_symlen, 1, },
2905 { "$symcmp", subsym_symcmp, 2, },
2906 { "$firstch", subsym_firstch, 2, },
2907 { "$lastch", subsym_lastch, 2, },
2908 { "$isdefed", subsym_isdefed, 1, },
2909 { "$ismember", subsym_ismember, 2, },
2910 { "$iscons", subsym_iscons, 1, },
2911 { "$isname", subsym_isname, 1, },
2912 { "$isreg", subsym_isreg, 1, },
2913 { "$structsz", subsym_structsz, 1, },
2914 { "$structacc", subsym_structacc, 1, },
2915 { NULL, NULL, 0 },
2916 };
2917
2918 typedef struct
2919 {
2920 const char *name;
2921 float (*proc) (float, float);
2922 int nargs;
2923 int int_return;
2924 } math_proc_entry;
2925
2926 static const math_proc_entry math_procs[] =
2927 {
2928 /* Integer-returning built-in math functions. */
2929 { "$cvi", math_cvi, 1, 1 },
2930 { "$int", math_int, 1, 1 },
2931 { "$sgn", math_sgn, 1, 1 },
2932
2933 /* Float-returning built-in math functions. */
2934 { "$acos", math_acos, 1, 0 },
2935 { "$asin", math_asin, 1, 0 },
2936 { "$atan", math_atan, 1, 0 },
2937 { "$atan2", math_atan2, 2, 0 },
2938 { "$ceil", math_ceil, 1, 0 },
2939 { "$cosh", math_cosh, 1, 0 },
2940 { "$cos", math_cos, 1, 0 },
2941 { "$cvf", math_cvf, 1, 0 },
2942 { "$exp", math_exp, 1, 0 },
2943 { "$fabs", math_fabs, 1, 0 },
2944 { "$floor", math_floor, 1, 0 },
2945 { "$fmod", math_fmod, 2, 0 },
2946 { "$ldexp", math_ldexp, 2, 0 },
2947 { "$log10", math_log10, 1, 0 },
2948 { "$log", math_log, 1, 0 },
2949 { "$max", math_max, 2, 0 },
2950 { "$min", math_min, 2, 0 },
2951 { "$pow", math_pow, 2, 0 },
2952 { "$round", math_round, 1, 0 },
2953 { "$sin", math_sin, 1, 0 },
2954 { "$sinh", math_sinh, 1, 0 },
2955 { "$sqrt", math_sqrt, 1, 0 },
2956 { "$tan", math_tan, 1, 0 },
2957 { "$tanh", math_tanh, 1, 0 },
2958 { "$trunc", math_trunc, 1, 0 },
2959 { NULL, NULL, 0, 0 },
2960 };
2961
2962 void
2963 md_begin (void)
2964 {
2965 insn_template *tm;
2966 tic54x_symbol *sym;
2967 const subsym_proc_entry *subsym_proc;
2968 const math_proc_entry *math_proc;
2969 char **symname;
2970 char *TIC54X_DIR = getenv ("TIC54X_DIR");
2971 char *A_DIR = TIC54X_DIR ? TIC54X_DIR : getenv ("A_DIR");
2972
2973 local_label_id = 0;
2974
2975 /* Look for A_DIR and add it to the include list. */
2976 if (A_DIR != NULL)
2977 {
2978 char *tmp = xstrdup (A_DIR);
2979
2980 do
2981 {
2982 char *next = strchr (tmp, ';');
2983
2984 if (next)
2985 *next++ = '\0';
2986 add_include_dir (tmp);
2987 tmp = next;
2988 }
2989 while (tmp != NULL);
2990 }
2991
2992 op_hash = str_htab_create ();
2993 for (tm = (insn_template *) tic54x_optab; tm->name; tm++)
2994 {
2995 if (str_hash_find (op_hash, tm->name))
2996 continue;
2997 str_hash_insert (op_hash, tm->name, (char *) tm);
2998 }
2999 parop_hash = str_htab_create ();
3000 for (tm = (insn_template *) tic54x_paroptab; tm->name; tm++)
3001 {
3002 if (str_hash_find (parop_hash, tm->name))
3003 continue;
3004 str_hash_insert (parop_hash, tm->name, (char *) tm);
3005 }
3006 reg_hash = str_htab_create ();
3007 for (sym = (tic54x_symbol *) regs; sym->name; sym++)
3008 {
3009 /* Add basic registers to the symbol table. */
3010 symbolS *symbolP = symbol_new (sym->name, absolute_section,
3011 &zero_address_frag, sym->value);
3012 SF_SET_LOCAL (symbolP);
3013 symbol_table_insert (symbolP);
3014 str_hash_insert (reg_hash, sym->name, (char *) sym);
3015 }
3016 for (sym = (tic54x_symbol *) mmregs; sym->name; sym++)
3017 str_hash_insert (reg_hash, sym->name, (char *) sym);
3018 mmreg_hash = str_htab_create ();
3019 for (sym = (tic54x_symbol *) mmregs; sym->name; sym++)
3020 str_hash_insert (mmreg_hash, sym->name, (char *) sym);
3021
3022 cc_hash = str_htab_create ();
3023 for (sym = (tic54x_symbol *) condition_codes; sym->name; sym++)
3024 str_hash_insert (cc_hash, sym->name, (char *) sym);
3025
3026 cc2_hash = str_htab_create ();
3027 for (sym = (tic54x_symbol *) cc2_codes; sym->name; sym++)
3028 str_hash_insert (cc2_hash, sym->name, (char *) sym);
3029
3030 cc3_hash = str_htab_create ();
3031 for (sym = (tic54x_symbol *) cc3_codes; sym->name; sym++)
3032 str_hash_insert (cc3_hash, sym->name, (char *) sym);
3033
3034 sbit_hash = str_htab_create ();
3035 for (sym = (tic54x_symbol *) status_bits; sym->name; sym++)
3036 str_hash_insert (sbit_hash, sym->name, (char *) sym);
3037
3038 misc_symbol_hash = str_htab_create ();
3039 for (symname = (char **) misc_symbols; *symname; symname++)
3040 str_hash_insert (misc_symbol_hash, *symname, *symname);
3041
3042 /* Only the base substitution table and local label table are initialized;
3043 the others (for local macro substitution) get instantiated as needed. */
3044 local_label_hash[0] = str_htab_create ();
3045 subsym_hash[0] = str_htab_create ();
3046 for (subsym_proc = subsym_procs; subsym_proc->name; subsym_proc++)
3047 str_hash_insert (subsym_hash[0], subsym_proc->name,
3048 (char *) subsym_proc);
3049
3050 math_hash = str_htab_create ();
3051 for (math_proc = math_procs; math_proc->name; math_proc++)
3052 {
3053 /* Insert into the main subsym hash for recognition; insert into
3054 the math hash to actually store information. */
3055 str_hash_insert (subsym_hash[0], math_proc->name,
3056 (char *) math_proc);
3057 str_hash_insert (math_hash, math_proc->name,
3058 (char *) math_proc);
3059 }
3060 subsym_recurse_hash = str_htab_create ();
3061 stag_hash = str_htab_create ();
3062 }
3063
3064 static int
3065 is_accumulator (struct opstruct *operand)
3066 {
3067 return strcasecmp (operand->buf, "a") == 0
3068 || strcasecmp (operand->buf, "b") == 0;
3069 }
3070
3071 /* Return the number of operands found, or -1 on error, copying the
3072 operands into the given array and the accompanying expressions into
3073 the next array. */
3074
3075 static int
3076 get_operands (struct opstruct operands[], char *line)
3077 {
3078 char *lptr = line;
3079 int numexp = 0;
3080 int expecting_operand = 0;
3081 int i;
3082
3083 while (numexp < MAX_OPERANDS && !is_end_of_line[(unsigned char) *lptr])
3084 {
3085 int paren_not_balanced = 0;
3086 char *op_start, *op_end;
3087
3088 while (*lptr && ISSPACE (*lptr))
3089 ++lptr;
3090 op_start = lptr;
3091 while (paren_not_balanced || *lptr != ',')
3092 {
3093 if (*lptr == '\0')
3094 {
3095 if (paren_not_balanced)
3096 {
3097 as_bad (_("Unbalanced parenthesis in operand %d"), numexp);
3098 return -1;
3099 }
3100 else
3101 break;
3102 }
3103 if (*lptr == '(')
3104 ++paren_not_balanced;
3105 else if (*lptr == ')')
3106 --paren_not_balanced;
3107 ++lptr;
3108 }
3109 op_end = lptr;
3110 if (op_end != op_start)
3111 {
3112 int len = op_end - op_start;
3113
3114 strncpy (operands[numexp].buf, op_start, len);
3115 operands[numexp].buf[len] = 0;
3116 /* Trim trailing spaces; while the preprocessor gets rid of most,
3117 there are weird usage patterns that can introduce them
3118 (i.e. using strings for macro args). */
3119 while (len > 0 && ISSPACE (operands[numexp].buf[len - 1]))
3120 operands[numexp].buf[--len] = 0;
3121 lptr = op_end;
3122 ++numexp;
3123 }
3124 else
3125 {
3126 if (expecting_operand || *lptr == ',')
3127 {
3128 as_bad (_("Expecting operand after ','"));
3129 return -1;
3130 }
3131 }
3132 if (*lptr == ',')
3133 {
3134 if (*++lptr == '\0')
3135 {
3136 as_bad (_("Expecting operand after ','"));
3137 return -1;
3138 }
3139 expecting_operand = 1;
3140 }
3141 }
3142
3143 while (*lptr && ISSPACE (*lptr++))
3144 ;
3145 if (!is_end_of_line[(unsigned char) *lptr])
3146 {
3147 as_bad (_("Extra junk on line"));
3148 return -1;
3149 }
3150
3151 /* OK, now parse them into expressions. */
3152 for (i = 0; i < numexp; i++)
3153 {
3154 memset (&operands[i].exp, 0, sizeof (operands[i].exp));
3155 if (operands[i].buf[0] == '#')
3156 {
3157 /* Immediate. */
3158 parse_expression (operands[i].buf + 1, &operands[i].exp);
3159 }
3160 else if (operands[i].buf[0] == '@')
3161 {
3162 /* Direct notation. */
3163 parse_expression (operands[i].buf + 1, &operands[i].exp);
3164 }
3165 else if (operands[i].buf[0] == '*')
3166 {
3167 /* Indirect. */
3168 char *paren = strchr (operands[i].buf, '(');
3169
3170 /* Allow immediate syntax in the inner expression. */
3171 if (paren && paren[1] == '#')
3172 *++paren = '(';
3173
3174 /* Pull out the lk expression or SP offset, if present. */
3175 if (paren != NULL)
3176 {
3177 int len = strlen (paren);
3178 char *end = paren + len;
3179 int c;
3180
3181 while (end[-1] != ')')
3182 if (--end <= paren)
3183 {
3184 as_bad (_("Badly formed address expression"));
3185 return -1;
3186 }
3187 c = *end;
3188 *end = '\0';
3189 parse_expression (paren, &operands[i].exp);
3190 *end = c;
3191 }
3192 else
3193 operands[i].exp.X_op = O_absent;
3194 }
3195 else
3196 parse_expression (operands[i].buf, &operands[i].exp);
3197 }
3198
3199 return numexp;
3200 }
3201
3202 /* Predicates for different operand types. */
3203
3204 static int
3205 is_immediate (struct opstruct *operand)
3206 {
3207 return *operand->buf == '#';
3208 }
3209
3210 /* This is distinguished from immediate because some numbers must be constants
3211 and must *not* have the '#' prefix. */
3212
3213 static int
3214 is_absolute (struct opstruct *operand)
3215 {
3216 return operand->exp.X_op == O_constant && !is_immediate (operand);
3217 }
3218
3219 /* Is this an indirect operand? */
3220
3221 static int
3222 is_indirect (struct opstruct *operand)
3223 {
3224 return operand->buf[0] == '*';
3225 }
3226
3227 /* Is this a valid dual-memory operand? */
3228
3229 static int
3230 is_dual (struct opstruct *operand)
3231 {
3232 if (is_indirect (operand) && strncasecmp (operand->buf, "*ar", 3) == 0)
3233 {
3234 char *tmp = operand->buf + 3;
3235 int arf;
3236 int valid_mod;
3237
3238 arf = *tmp++ - '0';
3239 /* Only allow *ARx, *ARx-, *ARx+, or *ARx+0%. */
3240 valid_mod = *tmp == '\0' ||
3241 strcasecmp (tmp, "-") == 0 ||
3242 strcasecmp (tmp, "+") == 0 ||
3243 strcasecmp (tmp, "+0%") == 0;
3244 return arf >= 2 && arf <= 5 && valid_mod;
3245 }
3246 return 0;
3247 }
3248
3249 static int
3250 is_mmreg (struct opstruct *operand)
3251 {
3252 return (is_absolute (operand)
3253 || is_immediate (operand)
3254 || str_hash_find (mmreg_hash, operand->buf) != 0);
3255 }
3256
3257 static int
3258 is_type (struct opstruct *operand, enum optype type)
3259 {
3260 switch (type)
3261 {
3262 case OP_None:
3263 return operand->buf[0] == 0;
3264 case OP_Xmem:
3265 case OP_Ymem:
3266 return is_dual (operand);
3267 case OP_Sind:
3268 return is_indirect (operand);
3269 case OP_xpmad_ms7:
3270 /* This one *must* be immediate. */
3271 return is_immediate (operand);
3272 case OP_xpmad:
3273 case OP_pmad:
3274 case OP_PA:
3275 case OP_dmad:
3276 case OP_Lmem:
3277 case OP_MMR:
3278 return 1;
3279 case OP_Smem:
3280 /* Address may be a numeric, indirect, or an expression. */
3281 return !is_immediate (operand);
3282 case OP_MMRY:
3283 case OP_MMRX:
3284 return is_mmreg (operand);
3285 case OP_SRC:
3286 case OP_SRC1:
3287 case OP_RND:
3288 case OP_DST:
3289 return is_accumulator (operand);
3290 case OP_B:
3291 return is_accumulator (operand) && TOUPPER (operand->buf[0]) == 'B';
3292 case OP_A:
3293 return is_accumulator (operand) && TOUPPER (operand->buf[0]) == 'A';
3294 case OP_ARX:
3295 return strncasecmp ("ar", operand->buf, 2) == 0
3296 && ISDIGIT (operand->buf[2]);
3297 case OP_SBIT:
3298 return str_hash_find (sbit_hash, operand->buf) != 0 || is_absolute (operand);
3299 case OP_CC:
3300 return str_hash_find (cc_hash, operand->buf) != 0;
3301 case OP_CC2:
3302 return str_hash_find (cc2_hash, operand->buf) != 0;
3303 case OP_CC3:
3304 return str_hash_find (cc3_hash, operand->buf) != 0
3305 || is_immediate (operand) || is_absolute (operand);
3306 case OP_16:
3307 return (is_immediate (operand) || is_absolute (operand))
3308 && operand->exp.X_add_number == 16;
3309 case OP_N:
3310 /* Allow st0 or st1 instead of a numeric. */
3311 return is_absolute (operand) || is_immediate (operand) ||
3312 strcasecmp ("st0", operand->buf) == 0 ||
3313 strcasecmp ("st1", operand->buf) == 0;
3314 case OP_12:
3315 case OP_123:
3316 return is_absolute (operand) || is_immediate (operand);
3317 case OP_SHFT:
3318 return (is_immediate (operand) || is_absolute (operand))
3319 && operand->exp.X_add_number >= 0 && operand->exp.X_add_number < 16;
3320 case OP_SHIFT:
3321 /* Let this one catch out-of-range values. */
3322 return (is_immediate (operand) || is_absolute (operand))
3323 && operand->exp.X_add_number != 16;
3324 case OP_BITC:
3325 case OP_031:
3326 case OP_k8:
3327 return is_absolute (operand) || is_immediate (operand);
3328 case OP_k8u:
3329 return is_immediate (operand)
3330 && operand->exp.X_op == O_constant
3331 && operand->exp.X_add_number >= 0
3332 && operand->exp.X_add_number < 256;
3333 case OP_lk:
3334 case OP_lku:
3335 /* Allow anything; assumes opcodes are ordered with Smem operands
3336 versions first. */
3337 return 1;
3338 case OP_k5:
3339 case OP_k3:
3340 case OP_k9:
3341 /* Just make sure it's an integer; check range later. */
3342 return is_immediate (operand);
3343 case OP_T:
3344 return strcasecmp ("t", operand->buf) == 0 ||
3345 strcasecmp ("treg", operand->buf) == 0;
3346 case OP_TS:
3347 return strcasecmp ("ts", operand->buf) == 0;
3348 case OP_ASM:
3349 return strcasecmp ("asm", operand->buf) == 0;
3350 case OP_TRN:
3351 return strcasecmp ("trn", operand->buf) == 0;
3352 case OP_DP:
3353 return strcasecmp ("dp", operand->buf) == 0;
3354 case OP_ARP:
3355 return strcasecmp ("arp", operand->buf) == 0;
3356 default:
3357 return 0;
3358 }
3359 }
3360
3361 static int
3362 operands_match (tic54x_insn *insn,
3363 struct opstruct *operands,
3364 int opcount,
3365 const enum optype *refoptype,
3366 int minops,
3367 int maxops)
3368 {
3369 int op = 0, refop = 0;
3370
3371 if (opcount == 0 && minops == 0)
3372 return 1;
3373
3374 while (op <= maxops && refop <= maxops)
3375 {
3376 while (!is_type (&operands[op], OPTYPE (refoptype[refop])))
3377 {
3378 /* Skip an optional template operand if it doesn't agree
3379 with the current operand. */
3380 if (refoptype[refop] & OPT)
3381 {
3382 ++refop;
3383 --maxops;
3384 if (refop > maxops)
3385 return 0;
3386 }
3387 else
3388 return 0;
3389 }
3390
3391 /* Save the actual operand type for later use. */
3392 operands[op].type = OPTYPE (refoptype[refop]);
3393 ++refop;
3394 ++op;
3395 /* Have we matched them all yet? */
3396 if (op == opcount)
3397 {
3398 while (op < maxops)
3399 {
3400 /* If a later operand is *not* optional, no match. */
3401 if ((refoptype[refop] & OPT) == 0)
3402 return 0;
3403 /* Flag any implicit default OP_DST operands so we know to add
3404 them explicitly when encoding the operand later. */
3405 if (OPTYPE (refoptype[refop]) == OP_DST)
3406 insn->using_default_dst = 1;
3407 ++refop;
3408 ++op;
3409 }
3410
3411 return 1;
3412 }
3413 }
3414
3415 return 0;
3416 }
3417
3418 /* 16-bit direct memory address
3419 Explicit dmad operands are always in last word of insn (usually second
3420 word, but bumped to third if lk addressing is used)
3421
3422 We allow *(dmad) notation because the TI assembler allows it.
3423
3424 XPC_CODE:
3425 0 for 16-bit addresses
3426 1 for full 23-bit addresses
3427 2 for the upper 7 bits of a 23-bit address (LDX). */
3428
3429 static int
3430 encode_dmad (tic54x_insn *insn, struct opstruct *operand, int xpc_code)
3431 {
3432 int op = 1 + insn->is_lkaddr;
3433
3434 /* Only allow *(dmad) expressions; all others are invalid. */
3435 if (is_indirect (operand) && operand->buf[strlen (operand->buf) - 1] != ')')
3436 {
3437 as_bad (_("Invalid dmad syntax '%s'"), operand->buf);
3438 return 0;
3439 }
3440
3441 insn->opcode[op].addr_expr = operand->exp;
3442
3443 if (insn->opcode[op].addr_expr.X_op == O_constant)
3444 {
3445 valueT value = insn->opcode[op].addr_expr.X_add_number;
3446
3447 if (xpc_code == 1)
3448 {
3449 insn->opcode[0].word &= 0xFF80;
3450 insn->opcode[0].word |= (value >> 16) & 0x7F;
3451 insn->opcode[1].word = value & 0xFFFF;
3452 }
3453 else if (xpc_code == 2)
3454 insn->opcode[op].word = (value >> 16) & 0xFFFF;
3455 else
3456 insn->opcode[op].word = value;
3457 }
3458 else
3459 {
3460 /* Do the fixup later; just store the expression. */
3461 insn->opcode[op].word = 0;
3462 insn->opcode[op].r_nchars = 2;
3463
3464 if (amode == c_mode)
3465 insn->opcode[op].r_type = BFD_RELOC_TIC54X_16_OF_23;
3466 else if (xpc_code == 1)
3467 {
3468 /* This relocation spans two words, so adjust accordingly. */
3469 insn->opcode[0].addr_expr = operand->exp;
3470 insn->opcode[0].r_type = BFD_RELOC_TIC54X_23;
3471 insn->opcode[0].r_nchars = 4;
3472 insn->opcode[0].unresolved = 1;
3473 /* It's really 2 words, but we want to stop encoding after the
3474 first, since we must encode both words at once. */
3475 insn->words = 1;
3476 }
3477 else if (xpc_code == 2)
3478 insn->opcode[op].r_type = BFD_RELOC_TIC54X_MS7_OF_23;
3479 else
3480 insn->opcode[op].r_type = BFD_RELOC_TIC54X_16_OF_23;
3481
3482 insn->opcode[op].unresolved = 1;
3483 }
3484
3485 return 1;
3486 }
3487
3488 /* 7-bit direct address encoding. */
3489
3490 static int
3491 encode_address (tic54x_insn *insn, struct opstruct *operand)
3492 {
3493 /* Assumes that dma addresses are *always* in word 0 of the opcode. */
3494 insn->opcode[0].addr_expr = operand->exp;
3495
3496 if (operand->exp.X_op == O_constant)
3497 insn->opcode[0].word |= (operand->exp.X_add_number & 0x7F);
3498 else
3499 {
3500 if (operand->exp.X_op == O_register)
3501 as_bad (_("Use the .mmregs directive to use memory-mapped register names such as '%s'"), operand->buf);
3502 /* Do the fixup later; just store the expression. */
3503 insn->opcode[0].r_nchars = 1;
3504 insn->opcode[0].r_type = BFD_RELOC_TIC54X_PARTLS7;
3505 insn->opcode[0].unresolved = 1;
3506 }
3507
3508 return 1;
3509 }
3510
3511 static int
3512 encode_indirect (tic54x_insn *insn, struct opstruct *operand)
3513 {
3514 int arf;
3515 int mod;
3516
3517 if (insn->is_lkaddr)
3518 {
3519 /* lk addresses always go in the second insn word. */
3520 mod = ((TOUPPER (operand->buf[1]) == 'A') ? 12 :
3521 (operand->buf[1] == '(') ? 15 :
3522 (strchr (operand->buf, '%') != NULL) ? 14 : 13);
3523 arf = ((mod == 12) ? operand->buf[3] - '0' :
3524 (mod == 15) ? 0 : operand->buf[4] - '0');
3525
3526 insn->opcode[1].addr_expr = operand->exp;
3527
3528 if (operand->exp.X_op == O_constant)
3529 insn->opcode[1].word = operand->exp.X_add_number;
3530 else
3531 {
3532 insn->opcode[1].word = 0;
3533 insn->opcode[1].r_nchars = 2;
3534 insn->opcode[1].r_type = BFD_RELOC_TIC54X_16_OF_23;
3535 insn->opcode[1].unresolved = 1;
3536 }
3537 }
3538 else if (strncasecmp (operand->buf, "*sp (", 4) == 0)
3539 {
3540 /* Stack offsets look the same as 7-bit direct addressing. */
3541 return encode_address (insn, operand);
3542 }
3543 else
3544 {
3545 arf = (TOUPPER (operand->buf[1]) == 'A' ?
3546 operand->buf[3] : operand->buf[4]) - '0';
3547
3548 if (operand->buf[1] == '+')
3549 {
3550 mod = 3; /* *+ARx */
3551 if (insn->tm->flags & FL_SMR)
3552 as_warn (_("Address mode *+ARx is write-only. "
3553 "Results of reading are undefined."));
3554 }
3555 else if (operand->buf[4] == '\0')
3556 mod = 0; /* *ARx */
3557 else if (operand->buf[5] == '\0')
3558 mod = (operand->buf[4] == '-' ? 1 : 2); /* *ARx+ / *ARx- */
3559 else if (operand->buf[6] == '\0')
3560 {
3561 if (operand->buf[5] == '0')
3562 mod = (operand->buf[4] == '-' ? 5 : 6); /* *ARx+0 / *ARx-0 */
3563 else
3564 mod = (operand->buf[4] == '-' ? 8 : 10);/* *ARx+% / *ARx-% */
3565 }
3566 else if (TOUPPER (operand->buf[6]) == 'B')
3567 mod = (operand->buf[4] == '-' ? 4 : 7); /* ARx+0B / *ARx-0B */
3568 else if (TOUPPER (operand->buf[6]) == '%')
3569 mod = (operand->buf[4] == '-' ? 9 : 11); /* ARx+0% / *ARx - 0% */
3570 else
3571 {
3572 as_bad (_("Unrecognized indirect address format \"%s\""),
3573 operand->buf);
3574 return 0;
3575 }
3576 }
3577
3578 insn->opcode[0].word |= 0x80 | (mod << 3) | arf;
3579
3580 return 1;
3581 }
3582
3583 static int
3584 encode_integer (tic54x_insn *insn,
3585 struct opstruct *operand,
3586 int which,
3587 int min,
3588 int max,
3589 unsigned short mask)
3590 {
3591 long parse, integer;
3592
3593 insn->opcode[which].addr_expr = operand->exp;
3594
3595 if (operand->exp.X_op == O_constant)
3596 {
3597 parse = operand->exp.X_add_number;
3598 /* Hack -- fixup for 16-bit hex quantities that get converted positive
3599 instead of negative. */
3600 if ((parse & 0x8000) && min == -32768 && max == 32767)
3601 integer = (short) parse;
3602 else
3603 integer = parse;
3604
3605 if (integer >= min && integer <= max)
3606 {
3607 insn->opcode[which].word |= (integer & mask);
3608 return 1;
3609 }
3610 as_bad (_("Operand '%s' out of range (%d <= x <= %d)"),
3611 operand->buf, min, max);
3612 }
3613 else
3614 {
3615 if (insn->opcode[which].addr_expr.X_op == O_constant)
3616 {
3617 insn->opcode[which].word |=
3618 insn->opcode[which].addr_expr.X_add_number & mask;
3619 }
3620 else
3621 {
3622 /* Do the fixup later; just store the expression. */
3623 bfd_reloc_code_real_type rtype =
3624 (mask == 0x1FF ? BFD_RELOC_TIC54X_PARTMS9 :
3625 mask == 0xFFFF ? BFD_RELOC_TIC54X_16_OF_23 :
3626 mask == 0x7F ? BFD_RELOC_TIC54X_PARTLS7 : BFD_RELOC_8);
3627 int size = (mask == 0x1FF || mask == 0xFFFF) ? 2 : 1;
3628
3629 if (rtype == BFD_RELOC_8)
3630 as_bad (_("Error in relocation handling"));
3631
3632 insn->opcode[which].r_nchars = size;
3633 insn->opcode[which].r_type = rtype;
3634 insn->opcode[which].unresolved = 1;
3635 }
3636
3637 return 1;
3638 }
3639
3640 return 0;
3641 }
3642
3643 static int
3644 encode_condition (tic54x_insn *insn, struct opstruct *operand)
3645 {
3646 tic54x_symbol *cc = (tic54x_symbol *) str_hash_find (cc_hash, operand->buf);
3647 if (!cc)
3648 {
3649 as_bad (_("Unrecognized condition code \"%s\""), operand->buf);
3650 return 0;
3651 }
3652 #define CC_GROUP 0x40
3653 #define CC_ACC 0x08
3654 #define CATG_A1 0x07
3655 #define CATG_B1 0x30
3656 #define CATG_A2 0x30
3657 #define CATG_B2 0x0C
3658 #define CATG_C2 0x03
3659 /* Disallow group 1 conditions mixed with group 2 conditions
3660 if group 1, allow only one category A and one category B
3661 if group 2, allow only one each of category A, B, and C. */
3662 if (((insn->opcode[0].word & 0xFF) != 0))
3663 {
3664 if ((insn->opcode[0].word & CC_GROUP) != (cc->value & CC_GROUP))
3665 {
3666 as_bad (_("Condition \"%s\" does not match preceding group"),
3667 operand->buf);
3668 return 0;
3669 }
3670 if (insn->opcode[0].word & CC_GROUP)
3671 {
3672 if ((insn->opcode[0].word & CC_ACC) != (cc->value & CC_ACC))
3673 {
3674 as_bad (_("Condition \"%s\" uses a different accumulator from "
3675 "a preceding condition"),
3676 operand->buf);
3677 return 0;
3678 }
3679 if ((insn->opcode[0].word & CATG_A1) && (cc->value & CATG_A1))
3680 {
3681 as_bad (_("Only one comparison conditional allowed"));
3682 return 0;
3683 }
3684 if ((insn->opcode[0].word & CATG_B1) && (cc->value & CATG_B1))
3685 {
3686 as_bad (_("Only one overflow conditional allowed"));
3687 return 0;
3688 }
3689 }
3690 else if ( ((insn->opcode[0].word & CATG_A2) && (cc->value & CATG_A2))
3691 || ((insn->opcode[0].word & CATG_B2) && (cc->value & CATG_B2))
3692 || ((insn->opcode[0].word & CATG_C2) && (cc->value & CATG_C2)))
3693 {
3694 as_bad (_("Duplicate %s conditional"), operand->buf);
3695 return 0;
3696 }
3697 }
3698
3699 insn->opcode[0].word |= cc->value;
3700 return 1;
3701 }
3702
3703 static int
3704 encode_cc3 (tic54x_insn *insn, struct opstruct *operand)
3705 {
3706 tic54x_symbol *cc3 = (tic54x_symbol *) str_hash_find (cc3_hash, operand->buf);
3707 int value = cc3 ? cc3->value : operand->exp.X_add_number << 8;
3708
3709 if ((value & 0x0300) != value)
3710 {
3711 as_bad (_("Unrecognized condition code \"%s\""), operand->buf);
3712 return 0;
3713 }
3714 insn->opcode[0].word |= value;
3715 return 1;
3716 }
3717
3718 static int
3719 encode_arx (tic54x_insn *insn, struct opstruct *operand)
3720 {
3721 int arf = strlen (operand->buf) >= 3 ? operand->buf[2] - '0' : -1;
3722
3723 if (strncasecmp ("ar", operand->buf, 2) || arf < 0 || arf > 7)
3724 {
3725 as_bad (_("Invalid auxiliary register (use AR0-AR7)"));
3726 return 0;
3727 }
3728 insn->opcode[0].word |= arf;
3729 return 1;
3730 }
3731
3732 static int
3733 encode_cc2 (tic54x_insn *insn, struct opstruct *operand)
3734 {
3735 tic54x_symbol *cc2 = (tic54x_symbol *) str_hash_find (cc2_hash, operand->buf);
3736
3737 if (!cc2)
3738 {
3739 as_bad (_("Unrecognized condition code \"%s\""), operand->buf);
3740 return 0;
3741 }
3742 insn->opcode[0].word |= cc2->value;
3743 return 1;
3744 }
3745
3746 static int
3747 encode_operand (tic54x_insn *insn, enum optype type, struct opstruct *operand)
3748 {
3749 int ext = (insn->tm->flags & FL_EXT) != 0;
3750
3751 if (type == OP_MMR && operand->exp.X_op != O_constant)
3752 {
3753 /* Disallow long-constant addressing for memory-mapped addressing. */
3754 if (insn->is_lkaddr)
3755 {
3756 as_bad (_("lk addressing modes are invalid for memory-mapped "
3757 "register addressing"));
3758 return 0;
3759 }
3760 type = OP_Smem;
3761 /* Warn about *+ARx when used with MMR operands. */
3762 if (strncasecmp (operand->buf, "*+ar", 4) == 0)
3763 {
3764 as_warn (_("Address mode *+ARx is not allowed in memory-mapped "
3765 "register addressing. Resulting behavior is "
3766 "undefined."));
3767 }
3768 }
3769
3770 switch (type)
3771 {
3772 case OP_None:
3773 return 1;
3774 case OP_dmad:
3775 /* 16-bit immediate value. */
3776 return encode_dmad (insn, operand, 0);
3777 case OP_SRC:
3778 if (TOUPPER (*operand->buf) == 'B')
3779 {
3780 insn->opcode[ext ? (1 + insn->is_lkaddr) : 0].word |= (1 << 9);
3781 if (insn->using_default_dst)
3782 insn->opcode[ext ? (1 + insn->is_lkaddr) : 0].word |= (1 << 8);
3783 }
3784 return 1;
3785 case OP_RND:
3786 /* Make sure this agrees with the OP_DST operand. */
3787 if (!((TOUPPER (operand->buf[0]) == 'B') ^
3788 ((insn->opcode[0].word & (1 << 8)) != 0)))
3789 {
3790 as_bad (_("Destination accumulator for each part of this parallel "
3791 "instruction must be different"));
3792 return 0;
3793 }
3794 return 1;
3795 case OP_SRC1:
3796 case OP_DST:
3797 if (TOUPPER (operand->buf[0]) == 'B')
3798 insn->opcode[ext ? (1 + insn->is_lkaddr) : 0].word |= (1 << 8);
3799 return 1;
3800 case OP_Xmem:
3801 case OP_Ymem:
3802 {
3803 int mod = (operand->buf[4] == '\0' ? 0 : /* *arx */
3804 operand->buf[4] == '-' ? 1 : /* *arx- */
3805 operand->buf[5] == '\0' ? 2 : 3); /* *arx+, *arx+0% */
3806 int arf = operand->buf[3] - '0' - 2;
3807 int code = (mod << 2) | arf;
3808 insn->opcode[0].word |= (code << (type == OP_Xmem ? 4 : 0));
3809 return 1;
3810 }
3811 case OP_Lmem:
3812 case OP_Smem:
3813 if (!is_indirect (operand))
3814 return encode_address (insn, operand);
3815 /* Fall through. */
3816 case OP_Sind:
3817 return encode_indirect (insn, operand);
3818 case OP_xpmad_ms7:
3819 return encode_dmad (insn, operand, 2);
3820 case OP_xpmad:
3821 return encode_dmad (insn, operand, 1);
3822 case OP_PA:
3823 case OP_pmad:
3824 return encode_dmad (insn, operand, 0);
3825 case OP_ARX:
3826 return encode_arx (insn, operand);
3827 case OP_MMRX:
3828 case OP_MMRY:
3829 case OP_MMR:
3830 {
3831 int value = operand->exp.X_add_number;
3832
3833 if (type == OP_MMR)
3834 insn->opcode[0].word |= value;
3835 else
3836 {
3837 if (value < 16 || value > 24)
3838 {
3839 as_bad (_("Memory mapped register \"%s\" out of range"),
3840 operand->buf);
3841 return 0;
3842 }
3843 if (type == OP_MMRX)
3844 insn->opcode[0].word |= (value - 16) << 4;
3845 else
3846 insn->opcode[0].word |= (value - 16);
3847 }
3848 return 1;
3849 }
3850 case OP_B:
3851 case OP_A:
3852 return 1;
3853 case OP_SHFT:
3854 return encode_integer (insn, operand, ext + insn->is_lkaddr,
3855 0, 15, 0xF);
3856 case OP_SHIFT:
3857 return encode_integer (insn, operand, ext + insn->is_lkaddr,
3858 -16, 15, 0x1F);
3859 case OP_lk:
3860 return encode_integer (insn, operand, 1 + insn->is_lkaddr,
3861 -32768, 32767, 0xFFFF);
3862 case OP_CC:
3863 return encode_condition (insn, operand);
3864 case OP_CC2:
3865 return encode_cc2 (insn, operand);
3866 case OP_CC3:
3867 return encode_cc3 (insn, operand);
3868 case OP_BITC:
3869 return encode_integer (insn, operand, 0, 0, 15, 0xF);
3870 case OP_k8:
3871 return encode_integer (insn, operand, 0, -128, 127, 0xFF);
3872 case OP_123:
3873 {
3874 int value = operand->exp.X_add_number;
3875 int code;
3876 if (value < 1 || value > 3)
3877 {
3878 as_bad (_("Invalid operand (use 1, 2, or 3)"));
3879 return 0;
3880 }
3881 code = value == 1 ? 0 : value == 2 ? 0x2 : 0x1;
3882 insn->opcode[0].word |= (code << 8);
3883 return 1;
3884 }
3885 case OP_031:
3886 return encode_integer (insn, operand, 0, 0, 31, 0x1F);
3887 case OP_k8u:
3888 return encode_integer (insn, operand, 0, 0, 255, 0xFF);
3889 case OP_lku:
3890 return encode_integer (insn, operand, 1 + insn->is_lkaddr,
3891 0, 65535, 0xFFFF);
3892 case OP_SBIT:
3893 {
3894 tic54x_symbol *sbit = (tic54x_symbol *)
3895 str_hash_find (sbit_hash, operand->buf);
3896 int value = is_absolute (operand) ?
3897 operand->exp.X_add_number : (sbit ? sbit->value : -1);
3898 int reg = 0;
3899
3900 if (insn->opcount == 1)
3901 {
3902 if (!sbit)
3903 {
3904 as_bad (_("A status register or status bit name is required"));
3905 return 0;
3906 }
3907 /* Guess the register based on the status bit; "ovb" is the last
3908 status bit defined for st0. */
3909 if (sbit > (tic54x_symbol *) str_hash_find (sbit_hash, "ovb"))
3910 reg = 1;
3911 }
3912 if (value == -1)
3913 {
3914 as_bad (_("Unrecognized status bit \"%s\""), operand->buf);
3915 return 0;
3916 }
3917 insn->opcode[0].word |= value;
3918 insn->opcode[0].word |= (reg << 9);
3919 return 1;
3920 }
3921 case OP_N:
3922 if (strcasecmp (operand->buf, "st0") == 0
3923 || strcasecmp (operand->buf, "st1") == 0)
3924 {
3925 insn->opcode[0].word |=
3926 ((unsigned short) (operand->buf[2] - '0')) << 9;
3927 return 1;
3928 }
3929 else if (operand->exp.X_op == O_constant
3930 && (operand->exp.X_add_number == 0
3931 || operand->exp.X_add_number == 1))
3932 {
3933 insn->opcode[0].word |=
3934 ((unsigned short) (operand->exp.X_add_number)) << 9;
3935 return 1;
3936 }
3937 as_bad (_("Invalid status register \"%s\""), operand->buf);
3938 return 0;
3939 case OP_k5:
3940 return encode_integer (insn, operand, 0, -16, 15, 0x1F);
3941 case OP_k3:
3942 return encode_integer (insn, operand, 0, 0, 7, 0x7);
3943 case OP_k9:
3944 return encode_integer (insn, operand, 0, 0, 0x1FF, 0x1FF);
3945 case OP_12:
3946 if (operand->exp.X_add_number != 1
3947 && operand->exp.X_add_number != 2)
3948 {
3949 as_bad (_("Operand \"%s\" out of range (use 1 or 2)"), operand->buf);
3950 return 0;
3951 }
3952 insn->opcode[0].word |= (operand->exp.X_add_number - 1) << 9;
3953 return 1;
3954 case OP_16:
3955 case OP_T:
3956 case OP_TS:
3957 case OP_ASM:
3958 case OP_TRN:
3959 case OP_DP:
3960 case OP_ARP:
3961 /* No encoding necessary. */
3962 return 1;
3963 default:
3964 return 0;
3965 }
3966
3967 return 1;
3968 }
3969
3970 static void
3971 emit_insn (tic54x_insn *insn)
3972 {
3973 int i;
3974 flagword oldflags = bfd_section_flags (now_seg);
3975 flagword flags = oldflags | SEC_CODE;
3976
3977 if (!bfd_set_section_flags (now_seg, flags))
3978 as_warn (_("error setting flags for \"%s\": %s"),
3979 bfd_section_name (now_seg),
3980 bfd_errmsg (bfd_get_error ()));
3981
3982 for (i = 0; i < insn->words; i++)
3983 {
3984 int size = (insn->opcode[i].unresolved
3985 && insn->opcode[i].r_type == BFD_RELOC_TIC54X_23) ? 4 : 2;
3986 char *p = frag_more (size);
3987
3988 if (size == 2)
3989 md_number_to_chars (p, (valueT) insn->opcode[i].word, 2);
3990 else
3991 md_number_to_chars (p, (valueT) insn->opcode[i].word << 16, 4);
3992
3993 if (insn->opcode[i].unresolved)
3994 fix_new_exp (frag_now, p - frag_now->fr_literal,
3995 insn->opcode[i].r_nchars, &insn->opcode[i].addr_expr,
3996 FALSE, insn->opcode[i].r_type);
3997 }
3998 }
3999
4000 /* Convert the operand strings into appropriate opcode values
4001 return the total number of words used by the instruction. */
4002
4003 static int
4004 build_insn (tic54x_insn *insn)
4005 {
4006 int i;
4007
4008 /* Only non-parallel instructions support lk addressing. */
4009 if (!(insn->tm->flags & FL_PAR))
4010 {
4011 for (i = 0; i < insn->opcount; i++)
4012 {
4013 if ((OPTYPE (insn->operands[i].type) == OP_Smem
4014 || OPTYPE (insn->operands[i].type) == OP_Lmem
4015 || OPTYPE (insn->operands[i].type) == OP_Sind)
4016 && strchr (insn->operands[i].buf, '(')
4017 /* Don't mistake stack-relative addressing for lk addressing. */
4018 && strncasecmp (insn->operands[i].buf, "*sp (", 4) != 0)
4019 {
4020 insn->is_lkaddr = 1;
4021 insn->lkoperand = i;
4022 break;
4023 }
4024 }
4025 }
4026 insn->words = insn->tm->words + insn->is_lkaddr;
4027
4028 insn->opcode[0].word = insn->tm->opcode;
4029 if (insn->tm->flags & FL_EXT)
4030 insn->opcode[1 + insn->is_lkaddr].word = insn->tm->opcode2;
4031
4032 for (i = 0; i < insn->opcount; i++)
4033 {
4034 enum optype type = insn->operands[i].type;
4035
4036 if (!encode_operand (insn, type, &insn->operands[i]))
4037 return 0;
4038 }
4039 if (insn->tm->flags & FL_PAR)
4040 for (i = 0; i < insn->paropcount; i++)
4041 {
4042 enum optype partype = insn->paroperands[i].type;
4043
4044 if (!encode_operand (insn, partype, &insn->paroperands[i]))
4045 return 0;
4046 }
4047
4048 emit_insn (insn);
4049
4050 return insn->words;
4051 }
4052
4053 static int
4054 optimize_insn (tic54x_insn *insn)
4055 {
4056 /* Optimize some instructions, helping out the brain-dead programmer. */
4057 #define is_zero(op) ((op).exp.X_op == O_constant && (op).exp.X_add_number == 0)
4058 if (strcasecmp (insn->tm->name, "add") == 0)
4059 {
4060 if (insn->opcount > 1
4061 && is_accumulator (&insn->operands[insn->opcount - 2])
4062 && is_accumulator (&insn->operands[insn->opcount - 1])
4063 && strcasecmp (insn->operands[insn->opcount - 2].buf,
4064 insn->operands[insn->opcount - 1].buf) == 0)
4065 {
4066 --insn->opcount;
4067 insn->using_default_dst = 1;
4068 return 1;
4069 }
4070
4071 /* Try to collapse if Xmem and shift count is zero. */
4072 if ((OPTYPE (insn->tm->operand_types[0]) == OP_Xmem
4073 && OPTYPE (insn->tm->operand_types[1]) == OP_SHFT
4074 && is_zero (insn->operands[1]))
4075 /* Or if Smem, shift is zero or absent, and SRC == DST. */
4076 || (OPTYPE (insn->tm->operand_types[0]) == OP_Smem
4077 && OPTYPE (insn->tm->operand_types[1]) == OP_SHIFT
4078 && is_type (&insn->operands[1], OP_SHIFT)
4079 && is_zero (insn->operands[1]) && insn->opcount == 3))
4080 {
4081 insn->operands[1] = insn->operands[2];
4082 insn->opcount = 2;
4083 return 1;
4084 }
4085 }
4086 else if (strcasecmp (insn->tm->name, "ld") == 0)
4087 {
4088 if (insn->opcount == 3 && insn->operands[0].type != OP_SRC)
4089 {
4090 if ((OPTYPE (insn->tm->operand_types[1]) == OP_SHIFT
4091 || OPTYPE (insn->tm->operand_types[1]) == OP_SHFT)
4092 && is_zero (insn->operands[1])
4093 && (OPTYPE (insn->tm->operand_types[0]) != OP_lk
4094 || (insn->operands[0].exp.X_op == O_constant
4095 && insn->operands[0].exp.X_add_number <= 255
4096 && insn->operands[0].exp.X_add_number >= 0)))
4097 {
4098 insn->operands[1] = insn->operands[2];
4099 insn->opcount = 2;
4100 return 1;
4101 }
4102 }
4103 }
4104 else if (strcasecmp (insn->tm->name, "sth") == 0
4105 || strcasecmp (insn->tm->name, "stl") == 0)
4106 {
4107 if ((OPTYPE (insn->tm->operand_types[1]) == OP_SHIFT
4108 || OPTYPE (insn->tm->operand_types[1]) == OP_SHFT)
4109 && is_zero (insn->operands[1]))
4110 {
4111 insn->operands[1] = insn->operands[2];
4112 insn->opcount = 2;
4113 return 1;
4114 }
4115 }
4116 else if (strcasecmp (insn->tm->name, "sub") == 0)
4117 {
4118 if (insn->opcount > 1
4119 && is_accumulator (&insn->operands[insn->opcount - 2])
4120 && is_accumulator (&insn->operands[insn->opcount - 1])
4121 && strcasecmp (insn->operands[insn->opcount - 2].buf,
4122 insn->operands[insn->opcount - 1].buf) == 0)
4123 {
4124 --insn->opcount;
4125 insn->using_default_dst = 1;
4126 return 1;
4127 }
4128
4129 if ( ((OPTYPE (insn->tm->operand_types[0]) == OP_Smem
4130 && OPTYPE (insn->tm->operand_types[1]) == OP_SHIFT)
4131 || (OPTYPE (insn->tm->operand_types[0]) == OP_Xmem
4132 && OPTYPE (insn->tm->operand_types[1]) == OP_SHFT))
4133 && is_zero (insn->operands[1])
4134 && insn->opcount == 3)
4135 {
4136 insn->operands[1] = insn->operands[2];
4137 insn->opcount = 2;
4138 return 1;
4139 }
4140 }
4141 return 0;
4142 }
4143
4144 /* Find a matching template if possible, and get the operand strings. */
4145
4146 static int
4147 tic54x_parse_insn (tic54x_insn *insn, char *line)
4148 {
4149 insn->tm = (insn_template *) str_hash_find (op_hash, insn->mnemonic);
4150 if (!insn->tm)
4151 {
4152 as_bad (_("Unrecognized instruction \"%s\""), insn->mnemonic);
4153 return 0;
4154 }
4155
4156 insn->opcount = get_operands (insn->operands, line);
4157 if (insn->opcount < 0)
4158 return 0;
4159
4160 /* Check each variation of operands for this mnemonic. */
4161 while (insn->tm->name && strcasecmp (insn->tm->name, insn->mnemonic) == 0)
4162 {
4163 if (insn->opcount >= insn->tm->minops
4164 && insn->opcount <= insn->tm->maxops
4165 && operands_match (insn, &insn->operands[0], insn->opcount,
4166 insn->tm->operand_types,
4167 insn->tm->minops, insn->tm->maxops))
4168 {
4169 /* SUCCESS! now try some optimizations. */
4170 if (optimize_insn (insn))
4171 {
4172 insn->tm = (insn_template *) str_hash_find (op_hash,
4173 insn->mnemonic);
4174 continue;
4175 }
4176
4177 return 1;
4178 }
4179 ++(insn->tm);
4180 }
4181 as_bad (_("Unrecognized operand list '%s' for instruction '%s'"),
4182 line, insn->mnemonic);
4183 return 0;
4184 }
4185
4186 /* We set this in start_line_hook, 'cause if we do a line replacement, we
4187 won't be able to see the next line. */
4188 static int parallel_on_next_line_hint = 0;
4189
4190 /* See if this is part of a parallel instruction
4191 Look for a subsequent line starting with "||". */
4192
4193 static int
4194 next_line_shows_parallel (char *next_line)
4195 {
4196 /* Look for the second half. */
4197 while (*next_line != 0 && ISSPACE (*next_line))
4198 ++next_line;
4199
4200 return (next_line[0] == PARALLEL_SEPARATOR
4201 && next_line[1] == PARALLEL_SEPARATOR);
4202 }
4203
4204 static int
4205 tic54x_parse_parallel_insn_firstline (tic54x_insn *insn, char *line)
4206 {
4207 insn->tm = (insn_template *) str_hash_find (parop_hash, insn->mnemonic);
4208 if (!insn->tm)
4209 {
4210 as_bad (_("Unrecognized parallel instruction \"%s\""),
4211 insn->mnemonic);
4212 return 0;
4213 }
4214
4215 while (insn->tm->name && strcasecmp (insn->tm->name,
4216 insn->mnemonic) == 0)
4217 {
4218 insn->opcount = get_operands (insn->operands, line);
4219 if (insn->opcount < 0)
4220 return 0;
4221 if (insn->opcount == 2
4222 && operands_match (insn, &insn->operands[0], insn->opcount,
4223 insn->tm->operand_types, 2, 2))
4224 {
4225 return 1;
4226 }
4227 ++(insn->tm);
4228 }
4229 /* Didn't find a matching parallel; try for a normal insn. */
4230 return 0;
4231 }
4232
4233 /* Parse the second line of a two-line parallel instruction. */
4234
4235 static int
4236 tic54x_parse_parallel_insn_lastline (tic54x_insn *insn, char *line)
4237 {
4238 int valid_mnemonic = 0;
4239
4240 insn->paropcount = get_operands (insn->paroperands, line);
4241 while (insn->tm->name && strcasecmp (insn->tm->name,
4242 insn->mnemonic) == 0)
4243 {
4244 if (strcasecmp (insn->tm->parname, insn->parmnemonic) == 0)
4245 {
4246 valid_mnemonic = 1;
4247
4248 if (insn->paropcount >= insn->tm->minops
4249 && insn->paropcount <= insn->tm->maxops
4250 && operands_match (insn, insn->paroperands,
4251 insn->paropcount,
4252 insn->tm->paroperand_types,
4253 insn->tm->minops, insn->tm->maxops))
4254 return 1;
4255 }
4256 ++(insn->tm);
4257 }
4258 if (valid_mnemonic)
4259 as_bad (_("Invalid operand (s) for parallel instruction \"%s\""),
4260 insn->parmnemonic);
4261 else
4262 as_bad (_("Unrecognized parallel instruction combination \"%s || %s\""),
4263 insn->mnemonic, insn->parmnemonic);
4264
4265 return 0;
4266 }
4267
4268 /* If quotes found, return copy of line up to closing quote;
4269 otherwise up until terminator.
4270 If it's a string, pass as-is; otherwise attempt substitution symbol
4271 replacement on the value. */
4272
4273 static char *
4274 subsym_get_arg (char *line, const char *terminators, char **str, int nosub)
4275 {
4276 char *ptr = line;
4277 char *endp;
4278 int is_string = *line == '"';
4279 int is_char = ISDIGIT (*line);
4280
4281 if (is_char)
4282 {
4283 while (ISDIGIT (*ptr))
4284 ++ptr;
4285 endp = ptr;
4286 *str = xmemdup0 (line, ptr - line);
4287 }
4288 else if (is_string)
4289 {
4290 char *savedp = input_line_pointer;
4291 int len;
4292
4293 input_line_pointer = ptr;
4294 *str = demand_copy_C_string (&len);
4295 endp = input_line_pointer;
4296 input_line_pointer = savedp;
4297
4298 /* Do forced substitutions if requested. */
4299 if (!nosub && **str == ':')
4300 *str = subsym_substitute (*str, 1);
4301 }
4302 else
4303 {
4304 const char *term = terminators;
4305 char *value = NULL;
4306
4307 while (*ptr && *ptr != *term)
4308 {
4309 if (!*term)
4310 {
4311 term = terminators;
4312 ++ptr;
4313 }
4314 else
4315 ++term;
4316 }
4317 endp = ptr;
4318 *str = xmemdup0 (line, ptr - line);
4319 /* Do simple substitution, if available. */
4320 if (!nosub && (value = subsym_lookup (*str, macro_level)) != NULL)
4321 *str = value;
4322 }
4323
4324 return endp;
4325 }
4326
4327 /* Replace the given substitution string.
4328 We start at the innermost macro level, so that existing locals remain local
4329 Note: we're treating macro args identically to .var's; I don't know if
4330 that's compatible w/TI's assembler. */
4331
4332 static void
4333 subsym_create_or_replace (char *name, char *value)
4334 {
4335 int i;
4336
4337 for (i = macro_level; i > 0; i--)
4338 str_hash_insert (subsym_hash[i], name, value);
4339 str_hash_insert (subsym_hash[0], name, value);
4340 }
4341
4342 /* Look up the substitution string replacement for the given symbol.
4343 Start with the innermost macro substitution table given and work
4344 outwards. */
4345
4346 static char *
4347 subsym_lookup (char *name, int nest_level)
4348 {
4349 char *value = str_hash_find (subsym_hash[nest_level], name);
4350
4351 if (value || nest_level == 0)
4352 return value;
4353
4354 return subsym_lookup (name, nest_level - 1);
4355 }
4356
4357 /* Do substitution-symbol replacement on the given line (recursively).
4358 return the argument if no substitution was done
4359
4360 Also look for built-in functions ($func (arg)) and local labels.
4361
4362 If FORCED is set, look for forced substitutions of the form ':SYMBOL:'. */
4363
4364 static char *
4365 subsym_substitute (char *line, int forced)
4366 {
4367 /* For each apparent symbol, see if it's a substitution symbol, and if so,
4368 replace it in the input. */
4369 char *replacement; /* current replacement for LINE. */
4370 char *head; /* Start of line. */
4371 char *ptr; /* Current examination point. */
4372 int changed = 0; /* Did we make a substitution? */
4373 int eval_line = 0; /* Is this line a .eval/.asg statement? */
4374 int eval_symbol = 0; /* Are we in the middle of the symbol for
4375 .eval/.asg? */
4376 char *eval_end = NULL;
4377 int recurse = 1;
4378 int line_conditional = 0;
4379 char *tmp;
4380
4381 /* Work with a copy of the input line. */
4382 replacement = xstrdup (line);
4383
4384 ptr = head = replacement;
4385
4386 /* Flag lines where we might need to replace a single '=' with two;
4387 GAS uses single '=' to assign macro args values, and possibly other
4388 places, so limit what we replace. */
4389 if (strstr (line, ".if")
4390 || strstr (line, ".elseif")
4391 || strstr (line, ".break"))
4392 line_conditional = 1;
4393
4394 /* Watch out for .eval, so that we avoid doing substitution on the
4395 symbol being assigned a value. */
4396 if (strstr (line, ".eval") || strstr (line, ".asg"))
4397 eval_line = 1;
4398
4399 /* If it's a macro definition, don't do substitution on the argument
4400 names. */
4401 if (strstr (line, ".macro"))
4402 return line;
4403
4404 unsigned char current_char;
4405 while (!is_end_of_line[(current_char = * (unsigned char *) ptr)])
4406 {
4407 /* Need to update this since LINE may have been modified. */
4408 if (eval_line)
4409 eval_end = strrchr (ptr, ',');
4410
4411 /* Replace triple double quotes with bounding quote/escapes. */
4412 if (current_char == '"' && ptr[1] == '"' && ptr[2] == '"')
4413 {
4414 ptr[1] = '\\';
4415 tmp = strstr (ptr + 2, "\"\"\"");
4416 if (tmp)
4417 tmp[0] = '\\';
4418 changed = 1;
4419 }
4420
4421 /* Replace a single '=' with a '==';
4422 for compatibility with older code only. */
4423 if (line_conditional && current_char == '=')
4424 {
4425 if (ptr[1] == '=')
4426 {
4427 ptr += 2;
4428 continue;
4429 }
4430 *ptr++ = '\0';
4431 tmp = concat (head, "==", ptr, (char *) NULL);
4432 /* Continue examining after the '=='. */
4433 ptr = tmp + strlen (head) + 2;
4434 free (replacement);
4435 head = replacement = tmp;
4436 changed = 1;
4437 }
4438
4439 /* Flag when we've reached the symbol part of .eval/.asg. */
4440 if (eval_line && ptr >= eval_end)
4441 eval_symbol = 1;
4442
4443 /* For each apparent symbol, see if it's a substitution symbol, and if
4444 so, replace it in the input. */
4445 if ((forced && current_char == ':')
4446 || (!forced && is_name_beginner (current_char)))
4447 {
4448 char *name; /* Symbol to be replaced. */
4449 char *savedp = input_line_pointer;
4450 int c;
4451 char *value = NULL;
4452 char *tail; /* Rest of line after symbol. */
4453
4454 /* Skip the colon. */
4455 if (forced)
4456 ++ptr;
4457
4458 input_line_pointer = ptr;
4459 c = get_symbol_name (&name);
4460 /* '?' is not normally part of a symbol, but it IS part of a local
4461 label. */
4462 if (c == '?')
4463 {
4464 *input_line_pointer++ = c;
4465 c = *input_line_pointer;
4466 *input_line_pointer = '\0';
4467 }
4468 /* Avoid infinite recursion; if a symbol shows up a second time for
4469 substitution, leave it as is. */
4470 if (str_hash_find (subsym_recurse_hash, name) == NULL)
4471 value = subsym_lookup (name, macro_level);
4472 else
4473 as_warn (_("%s symbol recursion stopped at "
4474 "second appearance of '%s'"),
4475 forced ? "Forced substitution" : "Substitution", name);
4476 ptr = tail = input_line_pointer;
4477 input_line_pointer = savedp;
4478
4479 /* Check for local labels; replace them with the appropriate
4480 substitution. */
4481 if ((*name == '$' && ISDIGIT (name[1]) && name[2] == '\0')
4482 || name[strlen (name) - 1] == '?')
4483 {
4484 /* Use an existing identifier for that label if, available, or
4485 create a new, unique identifier. */
4486 value = str_hash_find (local_label_hash[macro_level], name);
4487 if (value == NULL)
4488 {
4489 char digit[11];
4490 char *namecopy = xstrdup (name);
4491
4492 value = strcpy (xmalloc (strlen (name) + sizeof (digit) + 1),
4493 name);
4494 if (*value != '$')
4495 value[strlen (value) - 1] = '\0';
4496 sprintf (digit, ".%d", local_label_id++);
4497 strcat (value, digit);
4498 str_hash_insert (local_label_hash[macro_level], namecopy, value);
4499 }
4500 /* Indicate where to continue looking for substitutions. */
4501 ptr = tail;
4502 }
4503 /* Check for built-in subsym and math functions. */
4504 else if (value != NULL && *name == '$')
4505 {
4506 subsym_proc_entry *entry = (subsym_proc_entry *) value;
4507 math_proc_entry *math_entry = str_hash_find (math_hash, name);
4508 char *arg1, *arg2 = NULL;
4509
4510 *ptr = c;
4511 if (entry == NULL)
4512 {
4513 as_bad (_("Unrecognized substitution symbol function"));
4514 break;
4515 }
4516 else if (*ptr != '(')
4517 {
4518 as_bad (_("Missing '(' after substitution symbol function"));
4519 break;
4520 }
4521 ++ptr;
4522 if (math_entry != NULL)
4523 {
4524 float farg1, farg2 = 0;
4525 volatile float fresult;
4526
4527 farg1 = (float) strtod (ptr, &ptr);
4528 if (math_entry->nargs == 2)
4529 {
4530 if (*ptr++ != ',')
4531 {
4532 as_bad (_("Expecting second argument"));
4533 break;
4534 }
4535 farg2 = (float) strtod (ptr, &ptr);
4536 }
4537 fresult = (*math_entry->proc) (farg1, farg2);
4538 value = XNEWVEC (char, 128);
4539 if (math_entry->int_return)
4540 sprintf (value, "%d", (int) fresult);
4541 else
4542 sprintf (value, "%f", fresult);
4543 if (*ptr++ != ')')
4544 {
4545 as_bad (_("Extra junk in function call, expecting ')'"));
4546 break;
4547 }
4548 /* Don't bother recursing; the replacement isn't a
4549 symbol. */
4550 recurse = 0;
4551 }
4552 else
4553 {
4554 int val;
4555 int arg_type[2] = { *ptr == '"' , 0 };
4556 int ismember = !strcmp (entry->name, "$ismember");
4557
4558 /* Parse one or two args, which must be a substitution
4559 symbol, string or a character-string constant. */
4560 /* For all functions, a string or substitution symbol may be
4561 used, with the following exceptions:
4562 firstch/lastch: 2nd arg must be character constant
4563 ismember: both args must be substitution symbols. */
4564 ptr = subsym_get_arg (ptr, ",)", &arg1, ismember);
4565 if (!arg1)
4566 break;
4567 if (entry->nargs == 2)
4568 {
4569 if (*ptr++ != ',')
4570 {
4571 as_bad (_("Function expects two arguments"));
4572 break;
4573 }
4574 /* Character constants are converted to numerics
4575 by the preprocessor. */
4576 arg_type[1] = (ISDIGIT (*ptr)) ? 2 : (*ptr == '"');
4577 ptr = subsym_get_arg (ptr, ")", &arg2, ismember);
4578 }
4579 /* Args checking. */
4580 if ((!strcmp (entry->name, "$firstch")
4581 || !strcmp (entry->name, "$lastch"))
4582 && arg_type[1] != 2)
4583 {
4584 as_bad (_("Expecting character constant argument"));
4585 break;
4586 }
4587 if (ismember
4588 && (arg_type[0] != 0 || arg_type[1] != 0))
4589 {
4590 as_bad (_("Both arguments must be substitution symbols"));
4591 break;
4592 }
4593 if (*ptr++ != ')')
4594 {
4595 as_bad (_("Extra junk in function call, expecting ')'"));
4596 break;
4597 }
4598 val = (*entry->proc) (arg1, arg2);
4599 value = XNEWVEC (char, 64);
4600 sprintf (value, "%d", val);
4601 }
4602 /* Fix things up to replace the entire expression, not just the
4603 function name. */
4604 tail = ptr;
4605 c = *tail;
4606 }
4607
4608 if (value != NULL && !eval_symbol)
4609 {
4610 /* Replace the symbol with its string replacement and
4611 continue. Recursively replace VALUE until either no
4612 substitutions are performed, or a substitution that has been
4613 previously made is encountered again.
4614
4615 Put the symbol into the recursion hash table so we only
4616 try to replace a symbol once. */
4617 if (recurse)
4618 {
4619 str_hash_insert (subsym_recurse_hash, name, name);
4620 value = subsym_substitute (value, macro_level > 0);
4621 str_hash_delete (subsym_recurse_hash, name);
4622 }
4623
4624 /* Temporarily zero-terminate where the symbol started. */
4625 *name = 0;
4626 if (forced)
4627 {
4628 if (c == '(')
4629 {
4630 /* Subscripted substitution symbol -- use just the
4631 indicated portion of the string; the description
4632 kinda indicates that forced substitution is not
4633 supposed to be recursive, but I'm not sure. */
4634 unsigned beg, len = 1; /* default to a single char */
4635 char *newval = xstrdup (value);
4636
4637 savedp = input_line_pointer;
4638 input_line_pointer = tail + 1;
4639 beg = get_absolute_expression ();
4640 if (beg < 1)
4641 {
4642 as_bad (_("Invalid subscript (use 1 to %d)"),
4643 (int) strlen (value));
4644 break;
4645 }
4646 if (*input_line_pointer == ',')
4647 {
4648 ++input_line_pointer;
4649 len = get_absolute_expression ();
4650 if (beg + len > strlen (value))
4651 {
4652 as_bad (_("Invalid length (use 0 to %d)"),
4653 (int) strlen (value) - beg);
4654 break;
4655 }
4656 }
4657 newval += beg - 1;
4658 newval[len] = 0;
4659 tail = input_line_pointer;
4660 if (*tail++ != ')')
4661 {
4662 as_bad (_("Missing ')' in subscripted substitution "
4663 "symbol expression"));
4664 break;
4665 }
4666 c = *tail;
4667 input_line_pointer = savedp;
4668
4669 value = newval;
4670 }
4671 name[-1] = 0;
4672 }
4673 tmp = xmalloc (strlen (head) + strlen (value) +
4674 strlen (tail + 1) + 2);
4675 strcpy (tmp, head);
4676 strcat (tmp, value);
4677 /* Make sure forced substitutions are properly terminated. */
4678 if (forced)
4679 {
4680 if (c != ':')
4681 {
4682 as_bad (_("Missing forced substitution terminator ':'"));
4683 break;
4684 }
4685 ++tail;
4686 }
4687 else
4688 /* Restore the character after the symbol end. */
4689 *tail = c;
4690 strcat (tmp, tail);
4691 /* Continue examining after the replacement value. */
4692 ptr = tmp + strlen (head) + strlen (value);
4693 free (replacement);
4694 head = replacement = tmp;
4695 changed = 1;
4696 }
4697 else
4698 *ptr = c;
4699 }
4700 else
4701 {
4702 ++ptr;
4703 }
4704 }
4705
4706 if (changed)
4707 return replacement;
4708 else
4709 return line;
4710 }
4711
4712 /* We use this to handle substitution symbols
4713 hijack input_line_pointer, replacing it with our substituted string.
4714
4715 .sslist should enable listing the line after replacements are made...
4716
4717 returns the new buffer limit. */
4718
4719 void
4720 tic54x_start_line_hook (void)
4721 {
4722 char *line, *endp;
4723 char *replacement = NULL;
4724
4725 /* Work with a copy of the input line, including EOL char. */
4726 for (endp = input_line_pointer; *endp != 0; )
4727 if (is_end_of_line[(unsigned char) *endp++])
4728 break;
4729
4730 line = xmemdup0 (input_line_pointer, endp - input_line_pointer);
4731
4732 /* Scan ahead for parallel insns. */
4733 parallel_on_next_line_hint = next_line_shows_parallel (endp);
4734
4735 /* If within a macro, first process forced replacements. */
4736 if (macro_level > 0)
4737 replacement = subsym_substitute (line, 1);
4738 else
4739 replacement = line;
4740 replacement = subsym_substitute (replacement, 0);
4741
4742 if (replacement != line)
4743 {
4744 char *tmp = replacement;
4745 char *comment = strchr (replacement, ';');
4746 char endc = replacement[strlen (replacement) - 1];
4747
4748 /* Clean up the replacement; we'd prefer to have this done by the
4749 standard preprocessing equipment (maybe do_scrub_chars?)
4750 but for now, do a quick-and-dirty. */
4751 if (comment != NULL)
4752 {
4753 comment[0] = endc;
4754 comment[1] = 0;
4755 --comment;
4756 }
4757 else
4758 comment = replacement + strlen (replacement) - 1;
4759
4760 /* Trim trailing whitespace. */
4761 while (ISSPACE (*comment))
4762 {
4763 comment[0] = endc;
4764 comment[1] = 0;
4765 --comment;
4766 }
4767
4768 /* Compact leading whitespace. */
4769 while (ISSPACE (tmp[0]) && ISSPACE (tmp[1]))
4770 ++tmp;
4771
4772 input_line_pointer = endp;
4773 input_scrub_insert_line (tmp);
4774 free (replacement);
4775 free (line);
4776 /* Keep track of whether we've done a substitution. */
4777 substitution_line = 1;
4778 }
4779 else
4780 {
4781 /* No change. */
4782 free (line);
4783 substitution_line = 0;
4784 }
4785 }
4786
4787 /* This is the guts of the machine-dependent assembler. STR points to a
4788 machine dependent instruction. This function is supposed to emit
4789 the frags/bytes it assembles to. */
4790 void
4791 md_assemble (char *line)
4792 {
4793 static int repeat_slot = 0;
4794 static int delay_slots = 0; /* How many delay slots left to fill? */
4795 static int is_parallel = 0;
4796 static tic54x_insn insn;
4797 char *lptr;
4798 char *savedp = input_line_pointer;
4799 int c;
4800
4801 input_line_pointer = line;
4802 c = get_symbol_name (&line);
4803
4804 if (cpu == VNONE)
4805 cpu = V542;
4806 if (address_mode_needs_set)
4807 {
4808 set_address_mode (amode);
4809 address_mode_needs_set = 0;
4810 }
4811 if (cpu_needs_set)
4812 {
4813 set_cpu (cpu);
4814 cpu_needs_set = 0;
4815 }
4816 assembly_begun = 1;
4817
4818 if (is_parallel)
4819 {
4820 is_parallel = 0;
4821
4822 strcpy (insn.parmnemonic, line);
4823 lptr = input_line_pointer;
4824 *lptr = c;
4825 input_line_pointer = savedp;
4826
4827 if (tic54x_parse_parallel_insn_lastline (&insn, lptr))
4828 {
4829 int words = build_insn (&insn);
4830
4831 if (delay_slots != 0)
4832 {
4833 if (words > delay_slots)
4834 {
4835 as_bad (ngettext ("Instruction does not fit in available "
4836 "delay slots (%d-word insn, %d slot left)",
4837 "Instruction does not fit in available "
4838 "delay slots (%d-word insn, %d slots left)",
4839 delay_slots),
4840 words, delay_slots);
4841 delay_slots = 0;
4842 return;
4843 }
4844 delay_slots -= words;
4845 }
4846 }
4847 return;
4848 }
4849
4850 memset (&insn, 0, sizeof (insn));
4851 strcpy (insn.mnemonic, line);
4852 lptr = input_line_pointer;
4853 *lptr = c;
4854 input_line_pointer = savedp;
4855
4856 /* See if this line is part of a parallel instruction; if so, either this
4857 line or the next line will have the "||" specifier preceding the
4858 mnemonic, and we look for it in the parallel insn hash table. */
4859 if (strstr (line, "||") != NULL || parallel_on_next_line_hint)
4860 {
4861 char *tmp = strstr (line, "||");
4862 if (tmp != NULL)
4863 *tmp = '\0';
4864
4865 if (tic54x_parse_parallel_insn_firstline (&insn, lptr))
4866 {
4867 is_parallel = 1;
4868 /* If the parallel part is on the same line, process it now,
4869 otherwise let the assembler pick up the next line for us. */
4870 if (tmp != NULL)
4871 {
4872 while (ISSPACE (tmp[2]))
4873 ++tmp;
4874 md_assemble (tmp + 2);
4875 }
4876 }
4877 else
4878 {
4879 as_bad (_("Unrecognized parallel instruction '%s'"), line);
4880 }
4881 return;
4882 }
4883
4884 if (tic54x_parse_insn (&insn, lptr))
4885 {
4886 int words;
4887
4888 if ((insn.tm->flags & FL_LP)
4889 && cpu != V545LP && cpu != V546LP)
4890 {
4891 as_bad (_("Instruction '%s' requires an LP cpu version"),
4892 insn.tm->name);
4893 return;
4894 }
4895 if ((insn.tm->flags & FL_FAR)
4896 && amode != far_mode)
4897 {
4898 as_bad (_("Instruction '%s' requires far mode addressing"),
4899 insn.tm->name);
4900 return;
4901 }
4902
4903 words = build_insn (&insn);
4904
4905 /* Is this instruction in a delay slot? */
4906 if (delay_slots)
4907 {
4908 if (words > delay_slots)
4909 {
4910 as_warn (ngettext ("Instruction does not fit in available "
4911 "delay slots (%d-word insn, %d slot left). "
4912 "Resulting behavior is undefined.",
4913 "Instruction does not fit in available "
4914 "delay slots (%d-word insn, %d slots left). "
4915 "Resulting behavior is undefined.",
4916 delay_slots),
4917 words, delay_slots);
4918 delay_slots = 0;
4919 return;
4920 }
4921 /* Branches in delay slots are not allowed. */
4922 if (insn.tm->flags & FL_BMASK)
4923 {
4924 as_warn (_("Instructions which cause PC discontinuity are not "
4925 "allowed in a delay slot. "
4926 "Resulting behavior is undefined."));
4927 }
4928 delay_slots -= words;
4929 }
4930
4931 /* Is this instruction the target of a repeat? */
4932 if (repeat_slot)
4933 {
4934 if (insn.tm->flags & FL_NR)
4935 as_warn (_("'%s' is not repeatable. "
4936 "Resulting behavior is undefined."),
4937 insn.tm->name);
4938 else if (insn.is_lkaddr)
4939 as_warn (_("Instructions using long offset modifiers or absolute "
4940 "addresses are not repeatable. "
4941 "Resulting behavior is undefined."));
4942 repeat_slot = 0;
4943 }
4944
4945 /* Make sure we check the target of a repeat instruction. */
4946 if (insn.tm->flags & B_REPEAT)
4947 {
4948 repeat_slot = 1;
4949 /* FIXME -- warn if repeat_slot == 1 at EOF. */
4950 }
4951 /* Make sure we check our delay slots for validity. */
4952 if (insn.tm->flags & FL_DELAY)
4953 {
4954 delay_slots = 2;
4955 /* FIXME -- warn if delay_slots != 0 at EOF. */
4956 }
4957 }
4958 }
4959
4960 /* Do a final adjustment on the symbol table; in this case, make sure we have
4961 a ".file" symbol. */
4962
4963 void
4964 tic54x_adjust_symtab (void)
4965 {
4966 if (symbol_rootP == NULL
4967 || S_GET_STORAGE_CLASS (symbol_rootP) != C_FILE)
4968 {
4969 unsigned lineno;
4970 const char * filename = as_where (&lineno);
4971 c_dot_file_symbol (filename, 0);
4972 }
4973 }
4974
4975 /* In order to get gas to ignore any | chars at the start of a line,
4976 this function returns true if a | is found in a line.
4977 This lets us process parallel instructions, which span two lines. */
4978
4979 int
4980 tic54x_unrecognized_line (int c)
4981 {
4982 return c == PARALLEL_SEPARATOR;
4983 }
4984
4985 /* Watch for local labels of the form $[0-9] and [_a-zA-Z][_a-zA-Z0-9]*?
4986 Encode their names so that only we see them and can map them to the
4987 appropriate places.
4988 FIXME -- obviously this isn't done yet. These locals still show up in the
4989 symbol table. */
4990 void
4991 tic54x_define_label (symbolS *sym)
4992 {
4993 /* Just in case we need this later; note that this is not necessarily the
4994 same thing as line_label...
4995 When aligning or assigning labels to fields, sometimes the label is
4996 assigned other than the address at which the label appears.
4997 FIXME -- is this really needed? I think all the proper label assignment
4998 is done in tic54x_cons. */
4999 last_label_seen = sym;
5000 }
5001
5002 /* Try to parse something that normal parsing failed at. */
5003
5004 symbolS *
5005 tic54x_undefined_symbol (char *name)
5006 {
5007 tic54x_symbol *sym;
5008
5009 /* Not sure how to handle predefined symbols. */
5010 if ((sym = (tic54x_symbol *) str_hash_find (cc_hash, name)) != NULL ||
5011 (sym = (tic54x_symbol *) str_hash_find (cc2_hash, name)) != NULL ||
5012 (sym = (tic54x_symbol *) str_hash_find (cc3_hash, name)) != NULL ||
5013 (sym = (tic54x_symbol *) str_hash_find (misc_symbol_hash, name)) != NULL ||
5014 (sym = (tic54x_symbol *) str_hash_find (sbit_hash, name)) != NULL)
5015 {
5016 return symbol_new (name, reg_section, &zero_address_frag, sym->value);
5017 }
5018
5019 if ((sym = (tic54x_symbol *) str_hash_find (reg_hash, name)) != NULL ||
5020 (sym = (tic54x_symbol *) str_hash_find (mmreg_hash, name)) != NULL ||
5021 !strcasecmp (name, "a") || !strcasecmp (name, "b"))
5022 {
5023 return symbol_new (name, reg_section, &zero_address_frag,
5024 sym ? sym->value : 0);
5025 }
5026
5027 return NULL;
5028 }
5029
5030 /* Parse a name in an expression before the expression parser takes a stab at
5031 it. */
5032
5033 int
5034 tic54x_parse_name (char *name ATTRIBUTE_UNUSED,
5035 expressionS *expn ATTRIBUTE_UNUSED)
5036 {
5037 return 0;
5038 }
5039
5040 const char *
5041 md_atof (int type, char *literalP, int *sizeP)
5042 {
5043 /* Target data is little-endian, but floats are stored
5044 big-"word"ian. ugh. */
5045 return ieee_md_atof (type, literalP, sizeP, TRUE);
5046 }
5047
5048 arelent *
5049 tc_gen_reloc (asection *section, fixS *fixP)
5050 {
5051 arelent *rel;
5052 bfd_reloc_code_real_type code = fixP->fx_r_type;
5053 asymbol *sym = symbol_get_bfdsym (fixP->fx_addsy);
5054
5055 rel = XNEW (arelent);
5056 rel->sym_ptr_ptr = XNEW (asymbol *);
5057 *rel->sym_ptr_ptr = sym;
5058 /* We assume that all rel->address are host byte offsets. */
5059 rel->address = fixP->fx_frag->fr_address + fixP->fx_where;
5060 rel->address /= OCTETS_PER_BYTE;
5061 rel->howto = bfd_reloc_type_lookup (stdoutput, code);
5062 if (!strcmp (sym->name, section->name))
5063 rel->howto += HOWTO_BANK;
5064
5065 if (!rel->howto)
5066 {
5067 const char *name = S_GET_NAME (fixP->fx_addsy);
5068 if (name == NULL)
5069 name = "<unknown>";
5070 as_fatal ("Cannot generate relocation type for symbol %s, code %s",
5071 name, bfd_get_reloc_code_name (code));
5072 return NULL;
5073 }
5074 return rel;
5075 }
5076
5077 /* Handle cons expressions. */
5078
5079 void
5080 tic54x_cons_fix_new (fragS *frag, int where, int octets, expressionS *expn,
5081 bfd_reloc_code_real_type r)
5082 {
5083 switch (octets)
5084 {
5085 default:
5086 as_bad (_("Unsupported relocation size %d"), octets);
5087 r = BFD_RELOC_TIC54X_16_OF_23;
5088 break;
5089 case 2:
5090 r = BFD_RELOC_TIC54X_16_OF_23;
5091 break;
5092 case 4:
5093 /* TI assembler always uses this, regardless of addressing mode. */
5094 if (emitting_long)
5095 r = BFD_RELOC_TIC54X_23;
5096 else
5097 /* We never want to directly generate this; this is provided for
5098 stabs support only. */
5099 r = BFD_RELOC_32;
5100 break;
5101 }
5102 fix_new_exp (frag, where, octets, expn, 0, r);
5103 }
5104
5105 /* Attempt to simplify or even eliminate a fixup.
5106 To indicate that a fixup has been eliminated, set fixP->fx_done.
5107
5108 If fixp->fx_addsy is non-NULL, we'll have to generate a reloc entry. */
5109
5110 void
5111 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
5112 {
5113 char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
5114 valueT val = * valP;
5115
5116 switch (fixP->fx_r_type)
5117 {
5118 default:
5119 as_fatal ("Bad relocation type: 0x%02x", fixP->fx_r_type);
5120 return;
5121 case BFD_RELOC_TIC54X_MS7_OF_23:
5122 val = (val >> 16) & 0x7F;
5123 /* Fall through. */
5124 case BFD_RELOC_TIC54X_16_OF_23:
5125 case BFD_RELOC_16:
5126 bfd_put_16 (stdoutput, val, buf);
5127 /* Indicate what we're actually writing, so that we don't get warnings
5128 about exceeding available space. */
5129 *valP = val & 0xFFFF;
5130 break;
5131 case BFD_RELOC_TIC54X_PARTLS7:
5132 bfd_put_16 (stdoutput,
5133 (bfd_get_16 (stdoutput, buf) & 0xFF80) | (val & 0x7F),
5134 buf);
5135 /* Indicate what we're actually writing, so that we don't get warnings
5136 about exceeding available space. */
5137 *valP = val & 0x7F;
5138 break;
5139 case BFD_RELOC_TIC54X_PARTMS9:
5140 /* TI assembler doesn't shift its encoding for relocatable files, and is
5141 thus incompatible with this implementation's relocatable files. */
5142 bfd_put_16 (stdoutput,
5143 (bfd_get_16 (stdoutput, buf) & 0xFE00) | (val >> 7),
5144 buf);
5145 break;
5146 case BFD_RELOC_32:
5147 case BFD_RELOC_TIC54X_23:
5148 bfd_put_32 (stdoutput,
5149 (bfd_get_32 (stdoutput, buf) & 0xFF800000) | val,
5150 buf);
5151 break;
5152 }
5153
5154 if (fixP->fx_addsy == NULL && fixP->fx_pcrel == 0)
5155 fixP->fx_done = 1;
5156 }
5157
5158 /* This is our chance to record section alignment
5159 don't need to do anything here, since BFD does the proper encoding. */
5160
5161 valueT
5162 md_section_align (segT segment ATTRIBUTE_UNUSED, valueT section_size)
5163 {
5164 return section_size;
5165 }
5166
5167 long
5168 md_pcrel_from (fixS *fixP ATTRIBUTE_UNUSED)
5169 {
5170 return 0;
5171 }
5172
5173 /* Mostly little-endian, but longwords (4 octets) get MS word stored
5174 first. */
5175
5176 void
5177 tic54x_number_to_chars (char *buf, valueT val, int n)
5178 {
5179 if (n != 4)
5180 number_to_chars_littleendian (buf, val, n);
5181 else
5182 {
5183 number_to_chars_littleendian (buf , val >> 16 , 2);
5184 number_to_chars_littleendian (buf + 2, val & 0xFFFF, 2);
5185 }
5186 }
5187
5188 int
5189 tic54x_estimate_size_before_relax (fragS *frag ATTRIBUTE_UNUSED,
5190 segT seg ATTRIBUTE_UNUSED)
5191 {
5192 return 0;
5193 }
5194
5195 /* We use this to handle bit allocations which we couldn't handle before due
5196 to symbols being in different frags. return number of octets added. */
5197
5198 int
5199 tic54x_relax_frag (fragS *frag, long stretch ATTRIBUTE_UNUSED)
5200 {
5201 symbolS *sym = frag->fr_symbol;
5202 int growth = 0;
5203 int i;
5204
5205 if (sym != NULL)
5206 {
5207 struct bit_info *bi = (struct bit_info *) frag->fr_opcode;
5208 int bit_offset = frag_bit_offset (frag_prev (frag, bi->seg), bi->seg);
5209 int size = S_GET_VALUE (sym);
5210 fragS *prev_frag = bit_offset_frag (frag_prev (frag, bi->seg), bi->seg);
5211 int available = 16 - bit_offset;
5212
5213 if (symbol_get_frag (sym) != &zero_address_frag
5214 || S_IS_COMMON (sym)
5215 || !S_IS_DEFINED (sym))
5216 as_bad_where (frag->fr_file, frag->fr_line,
5217 _("non-absolute value used with .space/.bes"));
5218
5219 if (size < 0)
5220 {
5221 as_warn (_("negative value ignored in %s"),
5222 bi->type == TYPE_SPACE ? ".space" :
5223 bi->type == TYPE_BES ? ".bes" : ".field");
5224 growth = 0;
5225 frag->tc_frag_data = frag->fr_fix = 0;
5226 return 0;
5227 }
5228
5229 if (bi->type == TYPE_FIELD)
5230 {
5231 /* Bit fields of 16 or larger will have already been handled. */
5232 if (bit_offset != 0 && available >= size)
5233 {
5234 char *p = prev_frag->fr_literal;
5235
5236 valueT value = bi->value;
5237 value <<= available - size;
5238 value |= ((unsigned short) p[1] << 8) | p[0];
5239 md_number_to_chars (p, value, 2);
5240 if ((prev_frag->tc_frag_data += size) == 16)
5241 prev_frag->tc_frag_data = 0;
5242 if (bi->sym)
5243 symbol_set_frag (bi->sym, prev_frag);
5244 /* This frag is no longer used. */
5245 growth = -frag->fr_fix;
5246 frag->fr_fix = 0;
5247 frag->tc_frag_data = 0;
5248 }
5249 else
5250 {
5251 char *p = frag->fr_literal;
5252
5253 valueT value = bi->value << (16 - size);
5254 md_number_to_chars (p, value, 2);
5255 if ((frag->tc_frag_data = size) == 16)
5256 frag->tc_frag_data = 0;
5257 growth = 0;
5258 }
5259 }
5260 else
5261 {
5262 if (bit_offset != 0 && bit_offset < 16)
5263 {
5264 if (available >= size)
5265 {
5266 if ((prev_frag->tc_frag_data += size) == 16)
5267 prev_frag->tc_frag_data = 0;
5268 if (bi->sym)
5269 symbol_set_frag (bi->sym, prev_frag);
5270 /* This frag is no longer used. */
5271 growth = -frag->fr_fix;
5272 frag->fr_fix = 0;
5273 frag->tc_frag_data = 0;
5274 goto getout;
5275 }
5276 if (bi->type == TYPE_SPACE && bi->sym)
5277 symbol_set_frag (bi->sym, prev_frag);
5278 size -= available;
5279 }
5280 growth = (size + 15) / 16 * OCTETS_PER_BYTE - frag->fr_fix;
5281 for (i = 0; i < growth; i++)
5282 frag->fr_literal[i] = 0;
5283 frag->fr_fix = growth;
5284 frag->tc_frag_data = size % 16;
5285 /* Make sure any BES label points to the LAST word allocated. */
5286 if (bi->type == TYPE_BES && bi->sym)
5287 S_SET_VALUE (bi->sym, frag->fr_fix / OCTETS_PER_BYTE - 1);
5288 }
5289 getout:
5290 frag->fr_symbol = 0;
5291 frag->fr_opcode = 0;
5292 free ((void *) bi);
5293 }
5294 return growth;
5295 }
5296
5297 void
5298 tic54x_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
5299 segT seg ATTRIBUTE_UNUSED,
5300 fragS *frag)
5301 {
5302 /* Offset is in bytes. */
5303 frag->fr_offset = (frag->fr_next->fr_address
5304 - frag->fr_address
5305 - frag->fr_fix) / frag->fr_var;
5306 if (frag->fr_offset < 0)
5307 {
5308 as_bad_where (frag->fr_file, frag->fr_line,
5309 _("attempt to .space/.bes backwards? (%ld)"),
5310 (long) frag->fr_offset);
5311 }
5312 frag->fr_type = rs_space;
5313 }
5314
5315 /* We need to avoid having labels defined for certain directives/pseudo-ops
5316 since once the label is defined, it's in the symbol table for good. TI
5317 syntax puts the symbol *before* the pseudo (which is kinda like MRI syntax,
5318 I guess, except I've never seen a definition of MRI syntax).
5319
5320 Don't allow labels to start with '.' */
5321
5322 int
5323 tic54x_start_label (char * label_start, int nul_char, int next_char)
5324 {
5325 char *rest;
5326
5327 /* If within .struct/.union, no auto line labels, please. */
5328 if (current_stag != NULL)
5329 return 0;
5330
5331 /* Disallow labels starting with "." */
5332 if (next_char != ':')
5333 {
5334 if (*label_start == '.')
5335 {
5336 as_bad (_("Invalid label '%s'"), label_start);
5337 return 0;
5338 }
5339 }
5340
5341 if (is_end_of_line[(unsigned char) next_char])
5342 return 1;
5343
5344 rest = input_line_pointer;
5345 if (nul_char == '"')
5346 ++rest;
5347 while (ISSPACE (next_char))
5348 next_char = *++rest;
5349 if (next_char != '.')
5350 return 1;
5351
5352 /* Don't let colon () define a label for any of these... */
5353 return ((strncasecmp (rest, ".tag", 4) != 0 || !ISSPACE (rest[4]))
5354 && (strncasecmp (rest, ".struct", 7) != 0 || !ISSPACE (rest[7]))
5355 && (strncasecmp (rest, ".union", 6) != 0 || !ISSPACE (rest[6]))
5356 && (strncasecmp (rest, ".macro", 6) != 0 || !ISSPACE (rest[6]))
5357 && (strncasecmp (rest, ".set", 4) != 0 || !ISSPACE (rest[4]))
5358 && (strncasecmp (rest, ".equ", 4) != 0 || !ISSPACE (rest[4])));
5359 }
This page took 0.203006 seconds and 4 git commands to generate.