gas/
[binutils.git] / gas / macro.c
blob76e3664b22ef47eafad4f035e70f6da273031385
1 /* macro.c - macro support for gas
2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005 Free Software Foundation, Inc.
5 Written by Steve and Judy Chamberlain of Cygnus Support,
6 sac@cygnus.com
8 This file is part of GAS, the GNU Assembler.
10 GAS is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
15 GAS is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GAS; see the file COPYING. If not, write to the Free
22 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
23 02110-1301, USA. */
25 #include "config.h"
27 #ifndef __GNUC__
28 # if HAVE_ALLOCA_H
29 # include <alloca.h>
30 # else
31 # ifdef _AIX
32 /* Indented so that pre-ansi C compilers will ignore it, rather than
33 choke on it. Some versions of AIX require this to be the first
34 thing in the file. */
35 #pragma alloca
36 # else
37 # ifndef alloca /* predefined by HP cc +Olibcalls */
38 # if !defined (__STDC__) && !defined (__hpux)
39 extern char *alloca ();
40 # else
41 extern void *alloca ();
42 # endif /* __STDC__, __hpux */
43 # endif /* alloca */
44 # endif /* _AIX */
45 # endif /* HAVE_ALLOCA_H */
46 #endif /* __GNUC__ */
48 #include <stdio.h>
49 #ifdef HAVE_STRING_H
50 #include <string.h>
51 #else
52 #include <strings.h>
53 #endif
54 #ifdef HAVE_STDLIB_H
55 #include <stdlib.h>
56 #endif
57 #include "as.h"
58 #include "libiberty.h"
59 #include "safe-ctype.h"
60 #include "sb.h"
61 #include "hash.h"
62 #include "macro.h"
64 #include "asintl.h"
66 /* The routines in this file handle macro definition and expansion.
67 They are called by gas. */
69 /* Internal functions. */
71 static int get_token (int, sb *, sb *);
72 static int getstring (int, sb *, sb *);
73 static int get_any_string (int, sb *, sb *, int, int);
74 static formal_entry *new_formal (void);
75 static void del_formal (formal_entry *);
76 static int do_formals (macro_entry *, int, sb *);
77 static int get_apost_token (int, sb *, sb *, int);
78 static int sub_actual (int, sb *, sb *, struct hash_control *, int, sb *, int);
79 static const char *macro_expand_body
80 (sb *, sb *, formal_entry *, struct hash_control *, const macro_entry *);
81 static const char *macro_expand (int, sb *, macro_entry *, sb *);
82 static void free_macro(macro_entry *);
84 #define ISWHITE(x) ((x) == ' ' || (x) == '\t')
86 #define ISSEP(x) \
87 ((x) == ' ' || (x) == '\t' || (x) == ',' || (x) == '"' || (x) == ';' \
88 || (x) == ')' || (x) == '(' \
89 || ((macro_alternate || macro_mri) && ((x) == '<' || (x) == '>')))
91 #define ISBASE(x) \
92 ((x) == 'b' || (x) == 'B' \
93 || (x) == 'q' || (x) == 'Q' \
94 || (x) == 'h' || (x) == 'H' \
95 || (x) == 'd' || (x) == 'D')
97 /* The macro hash table. */
99 struct hash_control *macro_hash;
101 /* Whether any macros have been defined. */
103 int macro_defined;
105 /* Whether we are in alternate syntax mode. */
107 static int macro_alternate;
109 /* Whether we are in MRI mode. */
111 static int macro_mri;
113 /* Whether we should strip '@' characters. */
115 static int macro_strip_at;
117 /* Function to use to parse an expression. */
119 static int (*macro_expr) (const char *, int, sb *, int *);
121 /* Number of macro expansions that have been done. */
123 static int macro_number;
125 /* Initialize macro processing. */
127 void
128 macro_init (int alternate, int mri, int strip_at,
129 int (*expr) (const char *, int, sb *, int *))
131 macro_hash = hash_new ();
132 macro_defined = 0;
133 macro_alternate = alternate;
134 macro_mri = mri;
135 macro_strip_at = strip_at;
136 macro_expr = expr;
139 /* Switch in and out of alternate mode on the fly. */
141 void
142 macro_set_alternate (int alternate)
144 macro_alternate = alternate;
147 /* Switch in and out of MRI mode on the fly. */
149 void
150 macro_mri_mode (int mri)
152 macro_mri = mri;
155 /* Read input lines till we get to a TO string.
156 Increase nesting depth if we get a FROM string.
157 Put the results into sb at PTR.
158 FROM may be NULL (or will be ignored) if TO is "ENDR".
159 Add a new input line to an sb using GET_LINE.
160 Return 1 on success, 0 on unexpected EOF. */
163 buffer_and_nest (const char *from, const char *to, sb *ptr,
164 int (*get_line) (sb *))
166 int from_len;
167 int to_len = strlen (to);
168 int depth = 1;
169 int line_start = ptr->len;
171 int more = get_line (ptr);
173 if (to_len == 4 && strcasecmp(to, "ENDR") == 0)
175 from = NULL;
176 from_len = 0;
178 else
179 from_len = strlen (from);
181 while (more)
183 /* Try and find the first pseudo op on the line. */
184 int i = line_start;
186 if (! NO_PSEUDO_DOT && ! flag_m68k_mri)
188 /* With normal syntax we can suck what we want till we get
189 to the dot. With the alternate, labels have to start in
190 the first column, since we can't tell what's a label and
191 whats a pseudoop. */
193 if (! LABELS_WITHOUT_COLONS)
195 /* Skip leading whitespace. */
196 while (i < ptr->len && ISWHITE (ptr->ptr[i]))
197 i++;
200 for (;;)
202 /* Skip over a label, if any. */
203 if (i >= ptr->len || ! is_name_beginner (ptr->ptr[i]))
204 break;
205 i++;
206 while (i < ptr->len && is_part_of_name (ptr->ptr[i]))
207 i++;
208 if (i < ptr->len && is_name_ender (ptr->ptr[i]))
209 i++;
210 if (LABELS_WITHOUT_COLONS)
211 break;
212 /* Skip whitespace. */
213 while (i < ptr->len && ISWHITE (ptr->ptr[i]))
214 i++;
215 /* Check for the colon. */
216 if (i >= ptr->len || ptr->ptr[i] != ':')
218 i = line_start;
219 break;
221 i++;
222 line_start = i;
226 /* Skip trailing whitespace. */
227 while (i < ptr->len && ISWHITE (ptr->ptr[i]))
228 i++;
230 if (i < ptr->len && (ptr->ptr[i] == '.'
231 || NO_PSEUDO_DOT
232 || macro_mri))
234 if (! flag_m68k_mri && ptr->ptr[i] == '.')
235 i++;
236 if (from == NULL
237 && strncasecmp (ptr->ptr + i, "IRPC", from_len = 4) != 0
238 && strncasecmp (ptr->ptr + i, "IRP", from_len = 3) != 0
239 && strncasecmp (ptr->ptr + i, "IREPC", from_len = 5) != 0
240 && strncasecmp (ptr->ptr + i, "IREP", from_len = 4) != 0
241 && strncasecmp (ptr->ptr + i, "REPT", from_len = 4) != 0
242 && strncasecmp (ptr->ptr + i, "REP", from_len = 3) != 0)
243 from_len = 0;
244 if ((from != NULL
245 ? strncasecmp (ptr->ptr + i, from, from_len) == 0
246 : from_len > 0)
247 && (ptr->len == (i + from_len)
248 || ! (is_part_of_name (ptr->ptr[i + from_len])
249 || is_name_ender (ptr->ptr[i + from_len]))))
250 depth++;
251 if (strncasecmp (ptr->ptr + i, to, to_len) == 0
252 && (ptr->len == (i + to_len)
253 || ! (is_part_of_name (ptr->ptr[i + to_len])
254 || is_name_ender (ptr->ptr[i + to_len]))))
256 depth--;
257 if (depth == 0)
259 /* Reset the string to not include the ending rune. */
260 ptr->len = line_start;
261 break;
266 /* Add the original end-of-line char to the end and keep running. */
267 sb_add_char (ptr, more);
268 line_start = ptr->len;
269 more = get_line (ptr);
272 /* Return 1 on success, 0 on unexpected EOF. */
273 return depth == 0;
276 /* Pick up a token. */
278 static int
279 get_token (int idx, sb *in, sb *name)
281 if (idx < in->len
282 && is_name_beginner (in->ptr[idx]))
284 sb_add_char (name, in->ptr[idx++]);
285 while (idx < in->len
286 && is_part_of_name (in->ptr[idx]))
288 sb_add_char (name, in->ptr[idx++]);
290 if (idx < in->len
291 && is_name_ender (in->ptr[idx]))
293 sb_add_char (name, in->ptr[idx++]);
296 /* Ignore trailing &. */
297 if (macro_alternate && idx < in->len && in->ptr[idx] == '&')
298 idx++;
299 return idx;
302 /* Pick up a string. */
304 static int
305 getstring (int idx, sb *in, sb *acc)
307 idx = sb_skip_white (idx, in);
309 while (idx < in->len
310 && (in->ptr[idx] == '"'
311 || (in->ptr[idx] == '<' && (macro_alternate || macro_mri))
312 || (in->ptr[idx] == '\'' && macro_alternate)))
314 if (in->ptr[idx] == '<')
316 int nest = 0;
317 idx++;
318 while ((in->ptr[idx] != '>' || nest)
319 && idx < in->len)
321 if (in->ptr[idx] == '!')
323 idx++;
324 sb_add_char (acc, in->ptr[idx++]);
326 else
328 if (in->ptr[idx] == '>')
329 nest--;
330 if (in->ptr[idx] == '<')
331 nest++;
332 sb_add_char (acc, in->ptr[idx++]);
335 idx++;
337 else if (in->ptr[idx] == '"' || in->ptr[idx] == '\'')
339 char tchar = in->ptr[idx];
340 int escaped = 0;
342 idx++;
344 while (idx < in->len)
346 if (in->ptr[idx - 1] == '\\')
347 escaped ^= 1;
348 else
349 escaped = 0;
351 if (macro_alternate && in->ptr[idx] == '!')
353 idx ++;
355 sb_add_char (acc, in->ptr[idx]);
357 idx ++;
359 else if (escaped && in->ptr[idx] == tchar)
361 sb_add_char (acc, tchar);
362 idx ++;
364 else
366 if (in->ptr[idx] == tchar)
368 idx ++;
370 if (idx >= in->len || in->ptr[idx] != tchar)
371 break;
374 sb_add_char (acc, in->ptr[idx]);
375 idx ++;
381 return idx;
384 /* Fetch string from the input stream,
385 rules:
386 'Bxyx<whitespace> -> return 'Bxyza
387 %<char> -> return string of decimal value of x
388 "<string>" -> return string
389 xyx<whitespace> -> return xyz
392 static int
393 get_any_string (int idx, sb *in, sb *out, int expand, int pretend_quoted)
395 sb_reset (out);
396 idx = sb_skip_white (idx, in);
398 if (idx < in->len)
400 if (in->len > idx + 2 && in->ptr[idx + 1] == '\'' && ISBASE (in->ptr[idx]))
402 while (!ISSEP (in->ptr[idx]))
403 sb_add_char (out, in->ptr[idx++]);
405 else if (in->ptr[idx] == '%'
406 && macro_alternate
407 && expand)
409 int val;
410 char buf[20];
411 /* Turns the next expression into a string. */
412 /* xgettext: no-c-format */
413 idx = (*macro_expr) (_("% operator needs absolute expression"),
414 idx + 1,
416 &val);
417 sprintf (buf, "%d", val);
418 sb_add_string (out, buf);
420 else if (in->ptr[idx] == '"'
421 || (in->ptr[idx] == '<' && (macro_alternate || macro_mri))
422 || (macro_alternate && in->ptr[idx] == '\''))
424 if (macro_alternate
425 && ! macro_strip_at
426 && expand)
428 /* Keep the quotes. */
429 sb_add_char (out, '\"');
431 idx = getstring (idx, in, out);
432 sb_add_char (out, '\"');
434 else
436 idx = getstring (idx, in, out);
439 else
441 while (idx < in->len
442 && (in->ptr[idx] == '"'
443 || in->ptr[idx] == '\''
444 || pretend_quoted
445 || (in->ptr[idx] != ' '
446 && in->ptr[idx] != '\t'
447 && in->ptr[idx] != ','
448 && (in->ptr[idx] != '<'
449 || (! macro_alternate && ! macro_mri)))))
451 if (in->ptr[idx] == '"'
452 || in->ptr[idx] == '\'')
454 char tchar = in->ptr[idx];
455 sb_add_char (out, in->ptr[idx++]);
456 while (idx < in->len
457 && in->ptr[idx] != tchar)
458 sb_add_char (out, in->ptr[idx++]);
459 if (idx == in->len)
460 return idx;
462 sb_add_char (out, in->ptr[idx++]);
467 return idx;
470 /* Allocate a new formal. */
472 static formal_entry *
473 new_formal (void)
475 formal_entry *formal;
477 formal = xmalloc (sizeof (formal_entry));
479 sb_new (&formal->name);
480 sb_new (&formal->def);
481 sb_new (&formal->actual);
482 formal->next = NULL;
483 formal->type = FORMAL_OPTIONAL;
484 return formal;
487 /* Free a formal. */
489 static void
490 del_formal (formal_entry *formal)
492 sb_kill (&formal->actual);
493 sb_kill (&formal->def);
494 sb_kill (&formal->name);
495 free (formal);
498 /* Pick up the formal parameters of a macro definition. */
500 static int
501 do_formals (macro_entry *macro, int idx, sb *in)
503 formal_entry **p = &macro->formals;
504 const char *name;
506 idx = sb_skip_white (idx, in);
507 while (idx < in->len)
509 formal_entry *formal = new_formal ();
510 int cidx;
512 idx = get_token (idx, in, &formal->name);
513 if (formal->name.len == 0)
515 if (macro->formal_count)
516 --idx;
517 break;
519 idx = sb_skip_white (idx, in);
520 /* This is a formal. */
521 name = sb_terminate (&formal->name);
522 if (! macro_mri
523 && idx < in->len
524 && in->ptr[idx] == ':'
525 && (! is_name_beginner (':')
526 || idx + 1 >= in->len
527 || ! is_part_of_name (in->ptr[idx + 1])))
529 /* Got a qualifier. */
530 sb qual;
532 sb_new (&qual);
533 idx = get_token (sb_skip_white (idx + 1, in), in, &qual);
534 sb_terminate (&qual);
535 if (qual.len == 0)
536 as_bad_where (macro->file,
537 macro->line,
538 _("Missing parameter qualifier for `%s' in macro `%s'"),
539 name,
540 macro->name);
541 else if (strcmp (qual.ptr, "req") == 0)
542 formal->type = FORMAL_REQUIRED;
543 else if (strcmp (qual.ptr, "vararg") == 0)
544 formal->type = FORMAL_VARARG;
545 else
546 as_bad_where (macro->file,
547 macro->line,
548 _("`%s' is not a valid parameter qualifier for `%s' in macro `%s'"),
549 qual.ptr,
550 name,
551 macro->name);
552 sb_kill (&qual);
553 idx = sb_skip_white (idx, in);
555 if (idx < in->len && in->ptr[idx] == '=')
557 /* Got a default. */
558 idx = get_any_string (idx + 1, in, &formal->def, 1, 0);
559 idx = sb_skip_white (idx, in);
560 if (formal->type == FORMAL_REQUIRED)
562 sb_reset (&formal->def);
563 as_warn_where (macro->file,
564 macro->line,
565 _("Pointless default value for required parameter `%s' in macro `%s'"),
566 name,
567 macro->name);
571 /* Add to macro's hash table. */
572 if (! hash_find (macro->formal_hash, name))
573 hash_jam (macro->formal_hash, name, formal);
574 else
575 as_bad_where (macro->file,
576 macro->line,
577 _("A parameter named `%s' already exists for macro `%s'"),
578 name,
579 macro->name);
581 formal->index = macro->formal_count++;
582 *p = formal;
583 p = &formal->next;
584 if (formal->type == FORMAL_VARARG)
585 break;
586 cidx = idx;
587 idx = sb_skip_comma (idx, in);
588 if (idx != cidx && idx >= in->len)
590 idx = cidx;
591 break;
595 if (macro_mri)
597 formal_entry *formal = new_formal ();
599 /* Add a special NARG formal, which macro_expand will set to the
600 number of arguments. */
601 /* The same MRI assemblers which treat '@' characters also use
602 the name $NARG. At least until we find an exception. */
603 if (macro_strip_at)
604 name = "$NARG";
605 else
606 name = "NARG";
608 sb_add_string (&formal->name, name);
610 /* Add to macro's hash table. */
611 if (hash_find (macro->formal_hash, name))
612 as_bad_where (macro->file,
613 macro->line,
614 _("Reserved word `%s' used as parameter in macro `%s'"),
615 name,
616 macro->name);
617 hash_jam (macro->formal_hash, name, formal);
619 formal->index = NARG_INDEX;
620 *p = formal;
623 return idx;
626 /* Define a new macro. Returns NULL on success, otherwise returns an
627 error message. If NAMEP is not NULL, *NAMEP is set to the name of
628 the macro which was defined. */
630 const char *
631 define_macro (int idx, sb *in, sb *label,
632 int (*get_line) (sb *),
633 char *file, unsigned int line,
634 const char **namep)
636 macro_entry *macro;
637 sb name;
638 const char *error = NULL;
640 macro = (macro_entry *) xmalloc (sizeof (macro_entry));
641 sb_new (&macro->sub);
642 sb_new (&name);
643 macro->file = file;
644 macro->line = line;
646 macro->formal_count = 0;
647 macro->formals = 0;
648 macro->formal_hash = hash_new ();
650 idx = sb_skip_white (idx, in);
651 if (! buffer_and_nest ("MACRO", "ENDM", &macro->sub, get_line))
652 error = _("unexpected end of file in macro `%s' definition");
653 if (label != NULL && label->len != 0)
655 sb_add_sb (&name, label);
656 macro->name = sb_terminate (&name);
657 if (idx < in->len && in->ptr[idx] == '(')
659 /* It's the label: MACRO (formals,...) sort */
660 idx = do_formals (macro, idx + 1, in);
661 if (idx < in->len && in->ptr[idx] == ')')
662 idx = sb_skip_white (idx + 1, in);
663 else if (!error)
664 error = _("missing `)' after formals in macro definition `%s'");
666 else
668 /* It's the label: MACRO formals,... sort */
669 idx = do_formals (macro, idx, in);
672 else
674 int cidx;
676 idx = get_token (idx, in, &name);
677 macro->name = sb_terminate (&name);
678 if (name.len == 0)
679 error = _("Missing macro name");
680 cidx = sb_skip_white (idx, in);
681 idx = sb_skip_comma (cidx, in);
682 if (idx == cidx || idx < in->len)
683 idx = do_formals (macro, idx, in);
684 else
685 idx = cidx;
687 if (!error && idx < in->len)
688 error = _("Bad parameter list for macro `%s'");
690 /* And stick it in the macro hash table. */
691 for (idx = 0; idx < name.len; idx++)
692 name.ptr[idx] = TOLOWER (name.ptr[idx]);
693 if (hash_find (macro_hash, macro->name))
694 error = _("Macro `%s' was already defined");
695 if (!error)
696 error = hash_jam (macro_hash, macro->name, (PTR) macro);
698 if (namep != NULL)
699 *namep = macro->name;
701 if (!error)
702 macro_defined = 1;
703 else
704 free_macro (macro);
706 return error;
709 /* Scan a token, and then skip KIND. */
711 static int
712 get_apost_token (int idx, sb *in, sb *name, int kind)
714 idx = get_token (idx, in, name);
715 if (idx < in->len
716 && in->ptr[idx] == kind
717 && (! macro_mri || macro_strip_at)
718 && (! macro_strip_at || kind == '@'))
719 idx++;
720 return idx;
723 /* Substitute the actual value for a formal parameter. */
725 static int
726 sub_actual (int start, sb *in, sb *t, struct hash_control *formal_hash,
727 int kind, sb *out, int copyifnotthere)
729 int src;
730 formal_entry *ptr;
732 src = get_apost_token (start, in, t, kind);
733 /* See if it's in the macro's hash table, unless this is
734 macro_strip_at and kind is '@' and the token did not end in '@'. */
735 if (macro_strip_at
736 && kind == '@'
737 && (src == start || in->ptr[src - 1] != '@'))
738 ptr = NULL;
739 else
740 ptr = (formal_entry *) hash_find (formal_hash, sb_terminate (t));
741 if (ptr)
743 if (ptr->actual.len)
745 sb_add_sb (out, &ptr->actual);
747 else
749 sb_add_sb (out, &ptr->def);
752 else if (kind == '&')
754 /* Doing this permits people to use & in macro bodies. */
755 sb_add_char (out, '&');
756 sb_add_sb (out, t);
758 else if (copyifnotthere)
760 sb_add_sb (out, t);
762 else
764 sb_add_char (out, '\\');
765 sb_add_sb (out, t);
767 return src;
770 /* Expand the body of a macro. */
772 static const char *
773 macro_expand_body (sb *in, sb *out, formal_entry *formals,
774 struct hash_control *formal_hash, const macro_entry *macro)
776 sb t;
777 int src = 0, inquote = 0, macro_line = 0;
778 formal_entry *loclist = NULL;
779 const char *err = NULL;
781 sb_new (&t);
783 while (src < in->len && !err)
785 if (in->ptr[src] == '&')
787 sb_reset (&t);
788 if (macro_mri)
790 if (src + 1 < in->len && in->ptr[src + 1] == '&')
791 src = sub_actual (src + 2, in, &t, formal_hash, '\'', out, 1);
792 else
793 sb_add_char (out, in->ptr[src++]);
795 else
797 /* FIXME: Why do we do this? */
798 /* At least in alternate mode this seems correct; without this
799 one can't append a literal to a parameter. */
800 src = sub_actual (src + 1, in, &t, formal_hash, '&', out, 0);
803 else if (in->ptr[src] == '\\')
805 src++;
806 if (src < in->len && in->ptr[src] == '(')
808 /* Sub in till the next ')' literally. */
809 src++;
810 while (src < in->len && in->ptr[src] != ')')
812 sb_add_char (out, in->ptr[src++]);
814 if (src < in->len)
815 src++;
816 else if (!macro)
817 err = _("missing `)'");
818 else
819 as_bad_where (macro->file, macro->line + macro_line, _("missing `)'"));
821 else if (src < in->len && in->ptr[src] == '@')
823 /* Sub in the macro invocation number. */
825 char buffer[10];
826 src++;
827 sprintf (buffer, "%d", macro_number);
828 sb_add_string (out, buffer);
830 else if (src < in->len && in->ptr[src] == '&')
832 /* This is a preprocessor variable name, we don't do them
833 here. */
834 sb_add_char (out, '\\');
835 sb_add_char (out, '&');
836 src++;
838 else if (macro_mri && src < in->len && ISALNUM (in->ptr[src]))
840 int ind;
841 formal_entry *f;
843 if (ISDIGIT (in->ptr[src]))
844 ind = in->ptr[src] - '0';
845 else if (ISUPPER (in->ptr[src]))
846 ind = in->ptr[src] - 'A' + 10;
847 else
848 ind = in->ptr[src] - 'a' + 10;
849 ++src;
850 for (f = formals; f != NULL; f = f->next)
852 if (f->index == ind - 1)
854 if (f->actual.len != 0)
855 sb_add_sb (out, &f->actual);
856 else
857 sb_add_sb (out, &f->def);
858 break;
862 else
864 sb_reset (&t);
865 src = sub_actual (src, in, &t, formal_hash, '\'', out, 0);
868 else if ((macro_alternate || macro_mri)
869 && is_name_beginner (in->ptr[src])
870 && (! inquote
871 || ! macro_strip_at
872 || (src > 0 && in->ptr[src - 1] == '@')))
874 if (! macro
875 || src + 5 >= in->len
876 || strncasecmp (in->ptr + src, "LOCAL", 5) != 0
877 || ! ISWHITE (in->ptr[src + 5]))
879 sb_reset (&t);
880 src = sub_actual (src, in, &t, formal_hash,
881 (macro_strip_at && inquote) ? '@' : '\'',
882 out, 1);
884 else
886 src = sb_skip_white (src + 5, in);
887 while (in->ptr[src] != '\n')
889 const char *name;
890 formal_entry *f = new_formal ();
892 src = get_token (src, in, &f->name);
893 name = sb_terminate (&f->name);
894 if (! hash_find (formal_hash, name))
896 static int loccnt;
897 char buf[20];
899 f->index = LOCAL_INDEX;
900 f->next = loclist;
901 loclist = f;
903 sprintf (buf, IS_ELF ? ".LL%04x" : "LL%04x", ++loccnt);
904 sb_add_string (&f->actual, buf);
906 err = hash_jam (formal_hash, name, f);
907 if (err != NULL)
908 break;
910 else
912 as_bad_where (macro->file,
913 macro->line + macro_line,
914 _("`%s' was already used as parameter (or another local) name"),
915 name);
916 del_formal (f);
919 src = sb_skip_comma (src, in);
923 else if (in->ptr[src] == '"'
924 || (macro_mri && in->ptr[src] == '\''))
926 inquote = !inquote;
927 sb_add_char (out, in->ptr[src++]);
929 else if (in->ptr[src] == '@' && macro_strip_at)
931 ++src;
932 if (src < in->len
933 && in->ptr[src] == '@')
935 sb_add_char (out, '@');
936 ++src;
939 else if (macro_mri
940 && in->ptr[src] == '='
941 && src + 1 < in->len
942 && in->ptr[src + 1] == '=')
944 formal_entry *ptr;
946 sb_reset (&t);
947 src = get_token (src + 2, in, &t);
948 ptr = (formal_entry *) hash_find (formal_hash, sb_terminate (&t));
949 if (ptr == NULL)
951 /* FIXME: We should really return a warning string here,
952 but we can't, because the == might be in the MRI
953 comment field, and, since the nature of the MRI
954 comment field depends upon the exact instruction
955 being used, we don't have enough information here to
956 figure out whether it is or not. Instead, we leave
957 the == in place, which should cause a syntax error if
958 it is not in a comment. */
959 sb_add_char (out, '=');
960 sb_add_char (out, '=');
961 sb_add_sb (out, &t);
963 else
965 if (ptr->actual.len)
967 sb_add_string (out, "-1");
969 else
971 sb_add_char (out, '0');
975 else
977 if (in->ptr[src] == '\n')
978 ++macro_line;
979 sb_add_char (out, in->ptr[src++]);
983 sb_kill (&t);
985 while (loclist != NULL)
987 formal_entry *f;
989 f = loclist->next;
990 /* Setting the value to NULL effectively deletes the entry. We
991 avoid calling hash_delete because it doesn't reclaim memory. */
992 hash_jam (formal_hash, sb_terminate (&loclist->name), NULL);
993 del_formal (loclist);
994 loclist = f;
997 return err;
1000 /* Assign values to the formal parameters of a macro, and expand the
1001 body. */
1003 static const char *
1004 macro_expand (int idx, sb *in, macro_entry *m, sb *out)
1006 sb t;
1007 formal_entry *ptr;
1008 formal_entry *f;
1009 int is_positional = 0;
1010 int is_keyword = 0;
1011 int narg = 0;
1012 const char *err = NULL;
1014 sb_new (&t);
1016 /* Reset any old value the actuals may have. */
1017 for (f = m->formals; f; f = f->next)
1018 sb_reset (&f->actual);
1019 f = m->formals;
1020 while (f != NULL && f->index < 0)
1021 f = f->next;
1023 if (macro_mri)
1025 /* The macro may be called with an optional qualifier, which may
1026 be referred to in the macro body as \0. */
1027 if (idx < in->len && in->ptr[idx] == '.')
1029 /* The Microtec assembler ignores this if followed by a white space.
1030 (Macro invocation with empty extension) */
1031 idx++;
1032 if ( idx < in->len
1033 && in->ptr[idx] != ' '
1034 && in->ptr[idx] != '\t')
1036 formal_entry *n = new_formal ();
1038 n->index = QUAL_INDEX;
1040 n->next = m->formals;
1041 m->formals = n;
1043 idx = get_any_string (idx, in, &n->actual, 1, 0);
1048 /* Peel off the actuals and store them away in the hash tables' actuals. */
1049 idx = sb_skip_white (idx, in);
1050 while (idx < in->len)
1052 int scan;
1054 /* Look and see if it's a positional or keyword arg. */
1055 scan = idx;
1056 while (scan < in->len
1057 && !ISSEP (in->ptr[scan])
1058 && !(macro_mri && in->ptr[scan] == '\'')
1059 && (!macro_alternate && in->ptr[scan] != '='))
1060 scan++;
1061 if (scan < in->len && !macro_alternate && in->ptr[scan] == '=')
1063 is_keyword = 1;
1065 /* It's OK to go from positional to keyword. */
1067 /* This is a keyword arg, fetch the formal name and
1068 then the actual stuff. */
1069 sb_reset (&t);
1070 idx = get_token (idx, in, &t);
1071 if (in->ptr[idx] != '=')
1073 err = _("confusion in formal parameters");
1074 break;
1077 /* Lookup the formal in the macro's list. */
1078 ptr = (formal_entry *) hash_find (m->formal_hash, sb_terminate (&t));
1079 if (!ptr)
1080 as_bad (_("Parameter named `%s' does not exist for macro `%s'"),
1081 t.ptr,
1082 m->name);
1083 else
1085 /* Insert this value into the right place. */
1086 if (ptr->actual.len)
1088 as_warn (_("Value for parameter `%s' of macro `%s' was already specified"),
1089 ptr->name.ptr,
1090 m->name);
1091 sb_reset (&ptr->actual);
1093 idx = get_any_string (idx + 1, in, &ptr->actual, 0, 0);
1094 if (ptr->actual.len > 0)
1095 ++narg;
1098 else
1100 /* This is a positional arg. */
1101 is_positional = 1;
1102 if (is_keyword)
1104 err = _("can't mix positional and keyword arguments");
1105 break;
1108 if (!f)
1110 formal_entry **pf;
1111 int c;
1113 if (!macro_mri)
1115 err = _("too many positional arguments");
1116 break;
1119 f = new_formal ();
1121 c = -1;
1122 for (pf = &m->formals; *pf != NULL; pf = &(*pf)->next)
1123 if ((*pf)->index >= c)
1124 c = (*pf)->index + 1;
1125 if (c == -1)
1126 c = 0;
1127 *pf = f;
1128 f->index = c;
1131 if (f->type != FORMAL_VARARG)
1132 idx = get_any_string (idx, in, &f->actual, 1, 0);
1133 else
1135 sb_add_buffer (&f->actual, in->ptr + idx, in->len - idx);
1136 idx = in->len;
1138 if (f->actual.len > 0)
1139 ++narg;
1142 f = f->next;
1144 while (f != NULL && f->index < 0);
1147 if (! macro_mri)
1148 idx = sb_skip_comma (idx, in);
1149 else
1151 if (in->ptr[idx] == ',')
1152 ++idx;
1153 if (ISWHITE (in->ptr[idx]))
1154 break;
1158 if (! err)
1160 for (ptr = m->formals; ptr; ptr = ptr->next)
1162 if (ptr->type == FORMAL_REQUIRED && ptr->actual.len == 0)
1163 as_bad (_("Missing value for required parameter `%s' of macro `%s'"),
1164 ptr->name.ptr,
1165 m->name);
1168 if (macro_mri)
1170 char buffer[20];
1172 sb_reset (&t);
1173 sb_add_string (&t, macro_strip_at ? "$NARG" : "NARG");
1174 ptr = (formal_entry *) hash_find (m->formal_hash, sb_terminate (&t));
1175 sprintf (buffer, "%d", narg);
1176 sb_add_string (&ptr->actual, buffer);
1179 err = macro_expand_body (&m->sub, out, m->formals, m->formal_hash, m);
1182 /* Discard any unnamed formal arguments. */
1183 if (macro_mri)
1185 formal_entry **pf;
1187 pf = &m->formals;
1188 while (*pf != NULL)
1190 if ((*pf)->name.len != 0)
1191 pf = &(*pf)->next;
1192 else
1194 f = (*pf)->next;
1195 del_formal (*pf);
1196 *pf = f;
1201 sb_kill (&t);
1202 if (!err)
1203 macro_number++;
1205 return err;
1208 /* Check for a macro. If one is found, put the expansion into
1209 *EXPAND. Return 1 if a macro is found, 0 otherwise. */
1212 check_macro (const char *line, sb *expand,
1213 const char **error, macro_entry **info)
1215 const char *s;
1216 char *copy, *cs;
1217 macro_entry *macro;
1218 sb line_sb;
1220 if (! is_name_beginner (*line)
1221 && (! macro_mri || *line != '.'))
1222 return 0;
1224 s = line + 1;
1225 while (is_part_of_name (*s))
1226 ++s;
1227 if (is_name_ender (*s))
1228 ++s;
1230 copy = (char *) alloca (s - line + 1);
1231 memcpy (copy, line, s - line);
1232 copy[s - line] = '\0';
1233 for (cs = copy; *cs != '\0'; cs++)
1234 *cs = TOLOWER (*cs);
1236 macro = (macro_entry *) hash_find (macro_hash, copy);
1238 if (macro == NULL)
1239 return 0;
1241 /* Wrap the line up in an sb. */
1242 sb_new (&line_sb);
1243 while (*s != '\0' && *s != '\n' && *s != '\r')
1244 sb_add_char (&line_sb, *s++);
1246 sb_new (expand);
1247 *error = macro_expand (0, &line_sb, macro, expand);
1249 sb_kill (&line_sb);
1251 /* Export the macro information if requested. */
1252 if (info)
1253 *info = macro;
1255 return 1;
1258 /* Free the memory allocated to a macro. */
1260 static void
1261 free_macro(macro_entry *macro)
1263 formal_entry *formal;
1265 for (formal = macro->formals; formal; )
1267 formal_entry *f;
1269 f = formal;
1270 formal = formal->next;
1271 del_formal (f);
1273 hash_die (macro->formal_hash);
1274 sb_kill (&macro->sub);
1275 free (macro);
1278 /* Delete a macro. */
1280 void
1281 delete_macro (const char *name)
1283 char *copy;
1284 size_t i, len;
1285 macro_entry *macro;
1287 len = strlen (name);
1288 copy = (char *) alloca (len + 1);
1289 for (i = 0; i < len; ++i)
1290 copy[i] = TOLOWER (name[i]);
1291 copy[i] = '\0';
1293 /* Since hash_delete doesn't free memory, just clear out the entry. */
1294 if ((macro = hash_find (macro_hash, copy)) != NULL)
1296 hash_jam (macro_hash, copy, NULL);
1297 free_macro (macro);
1299 else
1300 as_warn (_("Attempt to purge non-existant macro `%s'"), copy);
1303 /* Handle the MRI IRP and IRPC pseudo-ops. These are handled as a
1304 combined macro definition and execution. This returns NULL on
1305 success, or an error message otherwise. */
1307 const char *
1308 expand_irp (int irpc, int idx, sb *in, sb *out, int (*get_line) (sb *))
1310 sb sub;
1311 formal_entry f;
1312 struct hash_control *h;
1313 const char *err;
1315 idx = sb_skip_white (idx, in);
1317 sb_new (&sub);
1318 if (! buffer_and_nest (NULL, "ENDR", &sub, get_line))
1319 return _("unexpected end of file in irp or irpc");
1321 sb_new (&f.name);
1322 sb_new (&f.def);
1323 sb_new (&f.actual);
1325 idx = get_token (idx, in, &f.name);
1326 if (f.name.len == 0)
1327 return _("missing model parameter");
1329 h = hash_new ();
1330 err = hash_jam (h, sb_terminate (&f.name), &f);
1331 if (err != NULL)
1332 return err;
1334 f.index = 1;
1335 f.next = NULL;
1336 f.type = FORMAL_OPTIONAL;
1338 sb_reset (out);
1340 idx = sb_skip_comma (idx, in);
1341 if (idx >= in->len)
1343 /* Expand once with a null string. */
1344 err = macro_expand_body (&sub, out, &f, h, 0);
1346 else
1348 if (irpc && in->ptr[idx] == '"')
1349 ++idx;
1350 while (idx < in->len)
1352 if (!irpc)
1353 idx = get_any_string (idx, in, &f.actual, 1, 0);
1354 else
1356 if (in->ptr[idx] == '"')
1358 int nxt;
1360 nxt = sb_skip_white (idx + 1, in);
1361 if (nxt >= in->len)
1363 idx = nxt;
1364 break;
1367 sb_reset (&f.actual);
1368 sb_add_char (&f.actual, in->ptr[idx]);
1369 ++idx;
1371 err = macro_expand_body (&sub, out, &f, h, 0);
1372 if (err != NULL)
1373 break;
1374 if (!irpc)
1375 idx = sb_skip_comma (idx, in);
1376 else
1377 idx = sb_skip_white (idx, in);
1381 hash_die (h);
1382 sb_kill (&f.actual);
1383 sb_kill (&f.def);
1384 sb_kill (&f.name);
1385 sb_kill (&sub);
1387 return err;