1 /* C preprocessor macro expansion for GDB.
2 Copyright (C) 2002, 2007, 2008 Free Software Foundation, Inc.
3 Contributed by Red Hat, Inc.
5 This file is part of GDB.
7 This program 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 of the License, or
10 (at your option) any later version.
12 This program 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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "gdb_obstack.h"
25 #include "gdb_assert.h"
29 /* A resizeable, substringable string type. */
32 /* A string type that we can resize, quickly append to, and use to
33 refer to substrings of other strings. */
36 /* An array of characters. The first LEN bytes are the real text,
37 but there are SIZE bytes allocated to the array. If SIZE is
38 zero, then this doesn't point to a malloc'ed block. If SHARED is
39 non-zero, then this buffer is actually a pointer into some larger
40 string, and we shouldn't append characters to it, etc. Because
41 of sharing, we can't assume in general that the text is
45 /* The number of characters in the string. */
48 /* The number of characters allocated to the string. If SHARED is
49 non-zero, this is meaningless; in this case, we set it to zero so
50 that any "do we have room to append something?" tests will fail,
51 so we don't always have to check SHARED before using this field. */
54 /* Zero if TEXT can be safely realloc'ed (i.e., it's its own malloc
55 block). Non-zero if TEXT is actually pointing into the middle of
56 some other block, and we shouldn't reallocate it. */
59 /* For detecting token splicing.
61 This is the index in TEXT of the first character of the token
62 that abuts the end of TEXT. If TEXT contains no tokens, then we
63 set this equal to LEN. If TEXT ends in whitespace, then there is
64 no token abutting the end of TEXT (it's just whitespace), and
65 again, we set this equal to LEN. We set this to -1 if we don't
66 know the nature of TEXT. */
69 /* If this buffer is holding the result from get_token, then this
70 is non-zero if it is an identifier token, zero otherwise. */
75 /* Set the macro buffer *B to the empty string, guessing that its
76 final contents will fit in N bytes. (It'll get resized if it
77 doesn't, so the guess doesn't have to be right.) Allocate the
78 initial storage with xmalloc. */
80 init_buffer (struct macro_buffer *b, int n)
84 b->text = (char *) xmalloc (n);
93 /* Set the macro buffer *BUF to refer to the LEN bytes at ADDR, as a
96 init_shared_buffer (struct macro_buffer *buf, char *addr, int len)
102 buf->last_token = -1;
106 /* Free the text of the buffer B. Raise an error if B is shared. */
108 free_buffer (struct macro_buffer *b)
110 gdb_assert (! b->shared);
116 /* A cleanup function for macro buffers. */
118 cleanup_macro_buffer (void *untyped_buf)
120 free_buffer ((struct macro_buffer *) untyped_buf);
124 /* Resize the buffer B to be at least N bytes long. Raise an error if
125 B shouldn't be resized. */
127 resize_buffer (struct macro_buffer *b, int n)
129 /* We shouldn't be trying to resize shared strings. */
130 gdb_assert (! b->shared);
138 b->text = xrealloc (b->text, b->size);
142 /* Append the character C to the buffer B. */
144 appendc (struct macro_buffer *b, int c)
146 int new_len = b->len + 1;
148 if (new_len > b->size)
149 resize_buffer (b, new_len);
156 /* Append the LEN bytes at ADDR to the buffer B. */
158 appendmem (struct macro_buffer *b, char *addr, int len)
160 int new_len = b->len + len;
162 if (new_len > b->size)
163 resize_buffer (b, new_len);
165 memcpy (b->text + b->len, addr, len);
171 /* Recognizing preprocessor tokens. */
175 macro_is_whitespace (int c)
186 macro_is_digit (int c)
188 return ('0' <= c && c <= '9');
193 macro_is_identifier_nondigit (int c)
196 || ('a' <= c && c <= 'z')
197 || ('A' <= c && c <= 'Z'));
202 set_token (struct macro_buffer *tok, char *start, char *end)
204 init_shared_buffer (tok, start, end - start);
207 /* Presumed; get_identifier may overwrite this. */
208 tok->is_identifier = 0;
213 get_comment (struct macro_buffer *tok, char *p, char *end)
230 set_token (tok, tok_start, p);
234 error (_("Unterminated comment in macro expansion."));
246 set_token (tok, tok_start, p);
255 get_identifier (struct macro_buffer *tok, char *p, char *end)
258 && macro_is_identifier_nondigit (*p))
263 && (macro_is_identifier_nondigit (*p)
264 || macro_is_digit (*p)))
267 set_token (tok, tok_start, p);
268 tok->is_identifier = 1;
277 get_pp_number (struct macro_buffer *tok, char *p, char *end)
280 && (macro_is_digit (*p)
287 if (macro_is_digit (*p)
288 || macro_is_identifier_nondigit (*p)
291 else if (p + 2 <= end
292 && strchr ("eEpP.", *p)
293 && (p[1] == '+' || p[1] == '-'))
299 set_token (tok, tok_start, p);
308 /* If the text starting at P going up to (but not including) END
309 starts with a character constant, set *TOK to point to that
310 character constant, and return 1. Otherwise, return zero.
311 Signal an error if it contains a malformed or incomplete character
314 get_character_constant (struct macro_buffer *tok, char *p, char *end)
316 /* ISO/IEC 9899:1999 (E) Section 6.4.4.4 paragraph 1
317 But of course, what really matters is that we handle it the same
318 way GDB's C/C++ lexer does. So we call parse_escape in utils.c
319 to handle escape sequences. */
320 if ((p + 1 <= end && *p == '\'')
321 || (p + 2 <= end && p[0] == 'L' && p[1] == '\''))
337 error (_("Unmatched single quote."));
341 error (_("A character constant must contain at least one "
355 set_token (tok, tok_start, p);
363 /* If the text starting at P going up to (but not including) END
364 starts with a string literal, set *TOK to point to that string
365 literal, and return 1. Otherwise, return zero. Signal an error if
366 it contains a malformed or incomplete string literal. */
368 get_string_literal (struct macro_buffer *tok, char *p, char *end)
388 error (_("Unterminated string in expression."));
395 error (_("Newline characters may not appear in string "
406 set_token (tok, tok_start, p);
415 get_punctuator (struct macro_buffer *tok, char *p, char *end)
417 /* Here, speed is much less important than correctness and clarity. */
419 /* ISO/IEC 9899:1999 (E) Section 6.4.6 Paragraph 1.
420 Note that this table is ordered in a special way. A punctuator
421 which is a prefix of another punctuator must appear after its
422 "extension". Otherwise, the wrong token will be returned. */
423 static const char * const punctuators[] = {
424 "[", "]", "(", ")", "{", "}", "?", ";", ",", "~",
426 "->", "--", "-=", "-",
432 "%>", "%:%:", "%:", "%=", "%",
437 "<<=", "<<", "<=", "<:", "<%", "<",
438 ">>=", ">>", ">=", ">",
447 for (i = 0; punctuators[i]; i++)
449 const char *punctuator = punctuators[i];
451 if (p[0] == punctuator[0])
453 int len = strlen (punctuator);
456 && ! memcmp (p, punctuator, len))
458 set_token (tok, p, p + len);
469 /* Peel the next preprocessor token off of SRC, and put it in TOK.
470 Mutate TOK to refer to the first token in SRC, and mutate SRC to
471 refer to the text after that token. SRC must be a shared buffer;
472 the resulting TOK will be shared, pointing into the same string SRC
473 does. Initialize TOK's last_token field. Return non-zero if we
474 succeed, or 0 if we didn't find any more tokens in SRC. */
476 get_token (struct macro_buffer *tok,
477 struct macro_buffer *src)
480 char *end = p + src->len;
482 gdb_assert (src->shared);
484 /* From the ISO C standard, ISO/IEC 9899:1999 (E), section 6.4:
493 each non-white-space character that cannot be one of the above
495 We don't have to deal with header-name tokens, since those can
496 only occur after a #include, which we will never see. */
499 if (macro_is_whitespace (*p))
501 else if (get_comment (tok, p, end))
503 else if (get_pp_number (tok, p, end)
504 || get_character_constant (tok, p, end)
505 || get_string_literal (tok, p, end)
506 /* Note: the grammar in the standard seems to be
507 ambiguous: L'x' can be either a wide character
508 constant, or an identifier followed by a normal
509 character constant. By trying `get_identifier' after
510 we try get_character_constant and get_string_literal,
511 we give the wide character syntax precedence. Now,
512 since GDB doesn't handle wide character constants
513 anyway, is this the right thing to do? */
514 || get_identifier (tok, p, end)
515 || get_punctuator (tok, p, end))
517 /* How many characters did we consume, including whitespace? */
518 int consumed = p - src->text + tok->len;
519 src->text += consumed;
520 src->len -= consumed;
525 /* We have found a "non-whitespace character that cannot be
526 one of the above." Make a token out of it. */
529 set_token (tok, p, p + 1);
530 consumed = p - src->text + tok->len;
531 src->text += consumed;
532 src->len -= consumed;
541 /* Appending token strings, with and without splicing */
544 /* Append the macro buffer SRC to the end of DEST, and ensure that
545 doing so doesn't splice the token at the end of SRC with the token
546 at the beginning of DEST. SRC and DEST must have their last_token
547 fields set. Upon return, DEST's last_token field is set correctly.
551 If DEST is "(" and SRC is "y", then we can return with
552 DEST set to "(y" --- we've simply appended the two buffers.
554 However, if DEST is "x" and SRC is "y", then we must not return
555 with DEST set to "xy" --- that would splice the two tokens "x" and
556 "y" together to make a single token "xy". However, it would be
557 fine to return with DEST set to "x y". Similarly, "<" and "<" must
558 yield "< <", not "<<", etc. */
560 append_tokens_without_splicing (struct macro_buffer *dest,
561 struct macro_buffer *src)
563 int original_dest_len = dest->len;
564 struct macro_buffer dest_tail, new_token;
566 gdb_assert (src->last_token != -1);
567 gdb_assert (dest->last_token != -1);
569 /* First, just try appending the two, and call get_token to see if
571 appendmem (dest, src->text, src->len);
573 /* If DEST originally had no token abutting its end, then we can't
574 have spliced anything, so we're done. */
575 if (dest->last_token == original_dest_len)
577 dest->last_token = original_dest_len + src->last_token;
581 /* Set DEST_TAIL to point to the last token in DEST, followed by
582 all the stuff we just appended. */
583 init_shared_buffer (&dest_tail,
584 dest->text + dest->last_token,
585 dest->len - dest->last_token);
587 /* Re-parse DEST's last token. We know that DEST used to contain
588 at least one token, so if it doesn't contain any after the
589 append, then we must have spliced "/" and "*" or "/" and "/" to
590 make a comment start. (Just for the record, I got this right
591 the first time. This is not a bug fix.) */
592 if (get_token (&new_token, &dest_tail)
593 && (new_token.text + new_token.len
594 == dest->text + original_dest_len))
596 /* No splice, so we're done. */
597 dest->last_token = original_dest_len + src->last_token;
601 /* Okay, a simple append caused a splice. Let's chop dest back to
602 its original length and try again, but separate the texts with a
604 dest->len = original_dest_len;
606 appendmem (dest, src->text, src->len);
608 init_shared_buffer (&dest_tail,
609 dest->text + dest->last_token,
610 dest->len - dest->last_token);
612 /* Try to re-parse DEST's last token, as above. */
613 if (get_token (&new_token, &dest_tail)
614 && (new_token.text + new_token.len
615 == dest->text + original_dest_len))
617 /* No splice, so we're done. */
618 dest->last_token = original_dest_len + 1 + src->last_token;
622 /* As far as I know, there's no case where inserting a space isn't
623 enough to prevent a splice. */
624 internal_error (__FILE__, __LINE__,
625 _("unable to avoid splicing tokens during macro expansion"));
630 /* Expanding macros! */
633 /* A singly-linked list of the names of the macros we are currently
634 expanding --- for detecting expansion loops. */
635 struct macro_name_list {
637 struct macro_name_list *next;
641 /* Return non-zero if we are currently expanding the macro named NAME,
642 according to LIST; otherwise, return zero.
644 You know, it would be possible to get rid of all the NO_LOOP
645 arguments to these functions by simply generating a new lookup
646 function and baton which refuses to find the definition for a
647 particular macro, and otherwise delegates the decision to another
648 function/baton pair. But that makes the linked list of excluded
649 macros chained through untyped baton pointers, which will make it
650 harder to debug. :( */
652 currently_rescanning (struct macro_name_list *list, const char *name)
654 for (; list; list = list->next)
655 if (strcmp (name, list->name) == 0)
662 /* Gather the arguments to a macro expansion.
664 NAME is the name of the macro being invoked. (It's only used for
665 printing error messages.)
667 Assume that SRC is the text of the macro invocation immediately
668 following the macro name. For example, if we're processing the
669 text foo(bar, baz), then NAME would be foo and SRC will be (bar,
672 If SRC doesn't start with an open paren ( token at all, return
673 zero, leave SRC unchanged, and don't set *ARGC_P to anything.
675 If SRC doesn't contain a properly terminated argument list, then
678 Otherwise, return a pointer to the first element of an array of
679 macro buffers referring to the argument texts, and set *ARGC_P to
680 the number of arguments we found --- the number of elements in the
681 array. The macro buffers share their text with SRC, and their
682 last_token fields are initialized. The array is allocated with
683 xmalloc, and the caller is responsible for freeing it.
685 NOTE WELL: if SRC starts with a open paren ( token followed
686 immediately by a close paren ) token (e.g., the invocation looks
687 like "foo()"), we treat that as one argument, which happens to be
688 the empty list of tokens. The caller should keep in mind that such
689 a sequence of tokens is a valid way to invoke one-parameter
690 function-like macros, but also a valid way to invoke zero-parameter
691 function-like macros. Eeew.
693 Consume the tokens from SRC; after this call, SRC contains the text
694 following the invocation. */
696 static struct macro_buffer *
697 gather_arguments (const char *name, struct macro_buffer *src, int *argc_p)
699 struct macro_buffer tok;
700 int args_len, args_size;
701 struct macro_buffer *args = NULL;
702 struct cleanup *back_to = make_cleanup (free_current_contents, &args);
704 /* Does SRC start with an opening paren token? Read from a copy of
705 SRC, so SRC itself is unaffected if we don't find an opening
708 struct macro_buffer temp;
709 init_shared_buffer (&temp, src->text, src->len);
711 if (! get_token (&tok, &temp)
713 || tok.text[0] != '(')
715 discard_cleanups (back_to);
720 /* Consume SRC's opening paren. */
721 get_token (&tok, src);
725 args = (struct macro_buffer *) xmalloc (sizeof (*args) * args_size);
729 struct macro_buffer *arg;
732 /* Make sure we have room for the next argument. */
733 if (args_len >= args_size)
736 args = xrealloc (args, sizeof (*args) * args_size);
739 /* Initialize the next argument. */
740 arg = &args[args_len++];
741 set_token (arg, src->text, src->text);
743 /* Gather the argument's tokens. */
747 char *start = src->text;
749 if (! get_token (&tok, src))
750 error (_("Malformed argument list for macro `%s'."), name);
752 /* Is tok an opening paren? */
753 if (tok.len == 1 && tok.text[0] == '(')
756 /* Is tok is a closing paren? */
757 else if (tok.len == 1 && tok.text[0] == ')')
759 /* If it's a closing paren at the top level, then that's
760 the end of the argument list. */
763 discard_cleanups (back_to);
771 /* If tok is a comma at top level, then that's the end of
772 the current argument. */
773 else if (tok.len == 1 && tok.text[0] == ',' && depth == 0)
776 /* Extend the current argument to enclose this token. If
777 this is the current argument's first token, leave out any
778 leading whitespace, just for aesthetics. */
781 arg->text = tok.text;
787 arg->len = (tok.text + tok.len) - arg->text;
788 arg->last_token = tok.text - arg->text;
795 /* The `expand' and `substitute_args' functions both invoke `scan'
796 recursively, so we need a forward declaration somewhere. */
797 static void scan (struct macro_buffer *dest,
798 struct macro_buffer *src,
799 struct macro_name_list *no_loop,
800 macro_lookup_ftype *lookup_func,
804 /* Given the macro definition DEF, being invoked with the actual
805 arguments given by ARGC and ARGV, substitute the arguments into the
806 replacement list, and store the result in DEST.
808 If it is necessary to expand macro invocations in one of the
809 arguments, use LOOKUP_FUNC and LOOKUP_BATON to find the macro
810 definitions, and don't expand invocations of the macros listed in
813 substitute_args (struct macro_buffer *dest,
814 struct macro_definition *def,
815 int argc, struct macro_buffer *argv,
816 struct macro_name_list *no_loop,
817 macro_lookup_ftype *lookup_func,
820 /* A macro buffer for the macro's replacement list. */
821 struct macro_buffer replacement_list;
823 init_shared_buffer (&replacement_list, (char *) def->replacement,
824 strlen (def->replacement));
826 gdb_assert (dest->len == 0);
827 dest->last_token = 0;
831 struct macro_buffer tok;
832 char *original_rl_start = replacement_list.text;
835 /* Find the next token in the replacement list. */
836 if (! get_token (&tok, &replacement_list))
839 /* Just for aesthetics. If we skipped some whitespace, copy
841 if (tok.text > original_rl_start)
843 appendmem (dest, original_rl_start, tok.text - original_rl_start);
844 dest->last_token = dest->len;
847 /* Is this token the stringification operator? */
849 && tok.text[0] == '#')
850 error (_("Stringification is not implemented yet."));
852 /* Is this token the splicing operator? */
854 && tok.text[0] == '#'
855 && tok.text[1] == '#')
856 error (_("Token splicing is not implemented yet."));
858 /* Is this token an identifier? */
859 if (tok.is_identifier)
863 /* Is it the magic varargs parameter? */
865 && ! memcmp (tok.text, "__VA_ARGS__", 11))
866 error (_("Variable-arity macros not implemented yet."));
868 /* Is it one of the parameters? */
869 for (i = 0; i < def->argc; i++)
870 if (tok.len == strlen (def->argv[i])
871 && ! memcmp (tok.text, def->argv[i], tok.len))
873 struct macro_buffer arg_src;
875 /* Expand any macro invocations in the argument text,
876 and append the result to dest. Remember that scan
877 mutates its source, so we need to scan a new buffer
878 referring to the argument's text, not the argument
880 init_shared_buffer (&arg_src, argv[i].text, argv[i].len);
881 scan (dest, &arg_src, no_loop, lookup_func, lookup_baton);
887 /* If it wasn't a parameter, then just copy it across. */
889 append_tokens_without_splicing (dest, &tok);
894 /* Expand a call to a macro named ID, whose definition is DEF. Append
895 its expansion to DEST. SRC is the input text following the ID
896 token. We are currently rescanning the expansions of the macros
897 named in NO_LOOP; don't re-expand them. Use LOOKUP_FUNC and
898 LOOKUP_BATON to find definitions for any nested macro references.
900 Return 1 if we decided to expand it, zero otherwise. (If it's a
901 function-like macro name that isn't followed by an argument list,
902 we don't expand it.) If we return zero, leave SRC unchanged. */
904 expand (const char *id,
905 struct macro_definition *def,
906 struct macro_buffer *dest,
907 struct macro_buffer *src,
908 struct macro_name_list *no_loop,
909 macro_lookup_ftype *lookup_func,
912 struct macro_name_list new_no_loop;
914 /* Create a new node to be added to the front of the no-expand list.
915 This list is appropriate for re-scanning replacement lists, but
916 it is *not* appropriate for scanning macro arguments; invocations
917 of the macro whose arguments we are gathering *do* get expanded
919 new_no_loop.name = id;
920 new_no_loop.next = no_loop;
922 /* What kind of macro are we expanding? */
923 if (def->kind == macro_object_like)
925 struct macro_buffer replacement_list;
927 init_shared_buffer (&replacement_list, (char *) def->replacement,
928 strlen (def->replacement));
930 scan (dest, &replacement_list, &new_no_loop, lookup_func, lookup_baton);
933 else if (def->kind == macro_function_like)
935 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
937 struct macro_buffer *argv = NULL;
938 struct macro_buffer substituted;
939 struct macro_buffer substituted_src;
942 && strcmp (def->argv[def->argc - 1], "...") == 0)
943 error (_("Varargs macros not implemented yet."));
945 make_cleanup (free_current_contents, &argv);
946 argv = gather_arguments (id, src, &argc);
948 /* If we couldn't find any argument list, then we don't expand
952 do_cleanups (back_to);
956 /* Check that we're passing an acceptable number of arguments for
958 if (argc != def->argc)
960 /* Remember that a sequence of tokens like "foo()" is a
961 valid invocation of a macro expecting either zero or one
966 error (_("Wrong number of arguments to macro `%s' "
967 "(expected %d, got %d)."),
968 id, def->argc, argc);
971 /* Note that we don't expand macro invocations in the arguments
972 yet --- we let subst_args take care of that. Parameters that
973 appear as operands of the stringifying operator "#" or the
974 splicing operator "##" don't get macro references expanded,
975 so we can't really tell whether it's appropriate to macro-
976 expand an argument until we see how it's being used. */
977 init_buffer (&substituted, 0);
978 make_cleanup (cleanup_macro_buffer, &substituted);
979 substitute_args (&substituted, def, argc, argv, no_loop,
980 lookup_func, lookup_baton);
982 /* Now `substituted' is the macro's replacement list, with all
983 argument values substituted into it properly. Re-scan it for
984 macro references, but don't expand invocations of this macro.
986 We create a new buffer, `substituted_src', which points into
987 `substituted', and scan that. We can't scan `substituted'
988 itself, since the tokenization process moves the buffer's
989 text pointer around, and we still need to be able to find
990 `substituted's original text buffer after scanning it so we
992 init_shared_buffer (&substituted_src, substituted.text, substituted.len);
993 scan (dest, &substituted_src, &new_no_loop, lookup_func, lookup_baton);
995 do_cleanups (back_to);
1000 internal_error (__FILE__, __LINE__, _("bad macro definition kind"));
1004 /* If the single token in SRC_FIRST followed by the tokens in SRC_REST
1005 constitute a macro invokation not forbidden in NO_LOOP, append its
1006 expansion to DEST and return non-zero. Otherwise, return zero, and
1007 leave DEST unchanged.
1009 SRC_FIRST and SRC_REST must be shared buffers; DEST must not be one.
1010 SRC_FIRST must be a string built by get_token. */
1012 maybe_expand (struct macro_buffer *dest,
1013 struct macro_buffer *src_first,
1014 struct macro_buffer *src_rest,
1015 struct macro_name_list *no_loop,
1016 macro_lookup_ftype *lookup_func,
1019 gdb_assert (src_first->shared);
1020 gdb_assert (src_rest->shared);
1021 gdb_assert (! dest->shared);
1023 /* Is this token an identifier? */
1024 if (src_first->is_identifier)
1026 /* Make a null-terminated copy of it, since that's what our
1027 lookup function expects. */
1028 char *id = xmalloc (src_first->len + 1);
1029 struct cleanup *back_to = make_cleanup (xfree, id);
1030 memcpy (id, src_first->text, src_first->len);
1031 id[src_first->len] = 0;
1033 /* If we're currently re-scanning the result of expanding
1034 this macro, don't expand it again. */
1035 if (! currently_rescanning (no_loop, id))
1037 /* Does this identifier have a macro definition in scope? */
1038 struct macro_definition *def = lookup_func (id, lookup_baton);
1040 if (def && expand (id, def, dest, src_rest, no_loop,
1041 lookup_func, lookup_baton))
1043 do_cleanups (back_to);
1048 do_cleanups (back_to);
1055 /* Expand macro references in SRC, appending the results to DEST.
1056 Assume we are re-scanning the result of expanding the macros named
1057 in NO_LOOP, and don't try to re-expand references to them.
1059 SRC must be a shared buffer; DEST must not be one. */
1061 scan (struct macro_buffer *dest,
1062 struct macro_buffer *src,
1063 struct macro_name_list *no_loop,
1064 macro_lookup_ftype *lookup_func,
1067 gdb_assert (src->shared);
1068 gdb_assert (! dest->shared);
1072 struct macro_buffer tok;
1073 char *original_src_start = src->text;
1075 /* Find the next token in SRC. */
1076 if (! get_token (&tok, src))
1079 /* Just for aesthetics. If we skipped some whitespace, copy
1081 if (tok.text > original_src_start)
1083 appendmem (dest, original_src_start, tok.text - original_src_start);
1084 dest->last_token = dest->len;
1087 if (! maybe_expand (dest, &tok, src, no_loop, lookup_func, lookup_baton))
1088 /* We didn't end up expanding tok as a macro reference, so
1089 simply append it to dest. */
1090 append_tokens_without_splicing (dest, &tok);
1093 /* Just for aesthetics. If there was any trailing whitespace in
1094 src, copy it to dest. */
1097 appendmem (dest, src->text, src->len);
1098 dest->last_token = dest->len;
1104 macro_expand (const char *source,
1105 macro_lookup_ftype *lookup_func,
1106 void *lookup_func_baton)
1108 struct macro_buffer src, dest;
1109 struct cleanup *back_to;
1111 init_shared_buffer (&src, (char *) source, strlen (source));
1113 init_buffer (&dest, 0);
1114 dest.last_token = 0;
1115 back_to = make_cleanup (cleanup_macro_buffer, &dest);
1117 scan (&dest, &src, 0, lookup_func, lookup_func_baton);
1119 appendc (&dest, '\0');
1121 discard_cleanups (back_to);
1127 macro_expand_once (const char *source,
1128 macro_lookup_ftype *lookup_func,
1129 void *lookup_func_baton)
1131 error (_("Expand-once not implemented yet."));
1136 macro_expand_next (char **lexptr,
1137 macro_lookup_ftype *lookup_func,
1140 struct macro_buffer src, dest, tok;
1141 struct cleanup *back_to;
1143 /* Set up SRC to refer to the input text, pointed to by *lexptr. */
1144 init_shared_buffer (&src, *lexptr, strlen (*lexptr));
1146 /* Set up DEST to receive the expansion, if there is one. */
1147 init_buffer (&dest, 0);
1148 dest.last_token = 0;
1149 back_to = make_cleanup (cleanup_macro_buffer, &dest);
1151 /* Get the text's first preprocessing token. */
1152 if (! get_token (&tok, &src))
1154 do_cleanups (back_to);
1158 /* If it's a macro invocation, expand it. */
1159 if (maybe_expand (&dest, &tok, &src, 0, lookup_func, lookup_baton))
1161 /* It was a macro invocation! Package up the expansion as a
1162 null-terminated string and return it. Set *lexptr to the
1163 start of the next token in the input. */
1164 appendc (&dest, '\0');
1165 discard_cleanups (back_to);
1171 /* It wasn't a macro invocation. */
1172 do_cleanups (back_to);