1 /* C preprocessor macro expansion for GDB.
2 Copyright (C) 2002, 2007, 2008, 2009, 2010 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"
30 /* A resizeable, substringable string type. */
33 /* A string type that we can resize, quickly append to, and use to
34 refer to substrings of other strings. */
37 /* An array of characters. The first LEN bytes are the real text,
38 but there are SIZE bytes allocated to the array. If SIZE is
39 zero, then this doesn't point to a malloc'ed block. If SHARED is
40 non-zero, then this buffer is actually a pointer into some larger
41 string, and we shouldn't append characters to it, etc. Because
42 of sharing, we can't assume in general that the text is
46 /* The number of characters in the string. */
49 /* The number of characters allocated to the string. If SHARED is
50 non-zero, this is meaningless; in this case, we set it to zero so
51 that any "do we have room to append something?" tests will fail,
52 so we don't always have to check SHARED before using this field. */
55 /* Zero if TEXT can be safely realloc'ed (i.e., it's its own malloc
56 block). Non-zero if TEXT is actually pointing into the middle of
57 some other block, and we shouldn't reallocate it. */
60 /* For detecting token splicing.
62 This is the index in TEXT of the first character of the token
63 that abuts the end of TEXT. If TEXT contains no tokens, then we
64 set this equal to LEN. If TEXT ends in whitespace, then there is
65 no token abutting the end of TEXT (it's just whitespace), and
66 again, we set this equal to LEN. We set this to -1 if we don't
67 know the nature of TEXT. */
70 /* If this buffer is holding the result from get_token, then this
71 is non-zero if it is an identifier token, zero otherwise. */
76 /* Set the macro buffer *B to the empty string, guessing that its
77 final contents will fit in N bytes. (It'll get resized if it
78 doesn't, so the guess doesn't have to be right.) Allocate the
79 initial storage with xmalloc. */
81 init_buffer (struct macro_buffer
*b
, int n
)
85 b
->text
= (char *) xmalloc (n
);
94 /* Set the macro buffer *BUF to refer to the LEN bytes at ADDR, as a
97 init_shared_buffer (struct macro_buffer
*buf
, char *addr
, int len
)
103 buf
->last_token
= -1;
107 /* Free the text of the buffer B. Raise an error if B is shared. */
109 free_buffer (struct macro_buffer
*b
)
111 gdb_assert (! b
->shared
);
117 /* A cleanup function for macro buffers. */
119 cleanup_macro_buffer (void *untyped_buf
)
121 free_buffer ((struct macro_buffer
*) untyped_buf
);
125 /* Resize the buffer B to be at least N bytes long. Raise an error if
126 B shouldn't be resized. */
128 resize_buffer (struct macro_buffer
*b
, int n
)
130 /* We shouldn't be trying to resize shared strings. */
131 gdb_assert (! b
->shared
);
139 b
->text
= xrealloc (b
->text
, b
->size
);
143 /* Append the character C to the buffer B. */
145 appendc (struct macro_buffer
*b
, int c
)
147 int new_len
= b
->len
+ 1;
149 if (new_len
> b
->size
)
150 resize_buffer (b
, new_len
);
157 /* Append the LEN bytes at ADDR to the buffer B. */
159 appendmem (struct macro_buffer
*b
, char *addr
, int len
)
161 int new_len
= b
->len
+ len
;
163 if (new_len
> b
->size
)
164 resize_buffer (b
, new_len
);
166 memcpy (b
->text
+ b
->len
, addr
, len
);
172 /* Recognizing preprocessor tokens. */
176 macro_is_whitespace (int c
)
187 macro_is_digit (int c
)
189 return ('0' <= c
&& c
<= '9');
194 macro_is_identifier_nondigit (int c
)
197 || ('a' <= c
&& c
<= 'z')
198 || ('A' <= c
&& c
<= 'Z'));
203 set_token (struct macro_buffer
*tok
, char *start
, char *end
)
205 init_shared_buffer (tok
, start
, end
- start
);
208 /* Presumed; get_identifier may overwrite this. */
209 tok
->is_identifier
= 0;
214 get_comment (struct macro_buffer
*tok
, char *p
, char *end
)
231 set_token (tok
, tok_start
, p
);
235 error (_("Unterminated comment in macro expansion."));
247 set_token (tok
, tok_start
, p
);
256 get_identifier (struct macro_buffer
*tok
, char *p
, char *end
)
259 && macro_is_identifier_nondigit (*p
))
264 && (macro_is_identifier_nondigit (*p
)
265 || macro_is_digit (*p
)))
268 set_token (tok
, tok_start
, p
);
269 tok
->is_identifier
= 1;
278 get_pp_number (struct macro_buffer
*tok
, char *p
, char *end
)
281 && (macro_is_digit (*p
)
284 && macro_is_digit (p
[1]))))
291 && strchr ("eEpP", *p
)
292 && (p
[1] == '+' || p
[1] == '-'))
294 else if (macro_is_digit (*p
)
295 || macro_is_identifier_nondigit (*p
)
302 set_token (tok
, tok_start
, p
);
311 /* If the text starting at P going up to (but not including) END
312 starts with a character constant, set *TOK to point to that
313 character constant, and return 1. Otherwise, return zero.
314 Signal an error if it contains a malformed or incomplete character
317 get_character_constant (struct macro_buffer
*tok
, char *p
, char *end
)
319 /* ISO/IEC 9899:1999 (E) Section 6.4.4.4 paragraph 1
320 But of course, what really matters is that we handle it the same
321 way GDB's C/C++ lexer does. So we call parse_escape in utils.c
322 to handle escape sequences. */
323 if ((p
+ 1 <= end
&& *p
== '\'')
325 && (p
[0] == 'L' || p
[0] == 'u' || p
[0] == 'U')
334 else if (*p
== 'L' || *p
== 'u' || *p
== 'U')
337 gdb_assert_not_reached ("unexpected character constant");
343 error (_("Unmatched single quote."));
347 error (_("A character constant must contain at least one "
355 char_count
+= c_parse_escape (&p
, NULL
);
364 set_token (tok
, tok_start
, p
);
372 /* If the text starting at P going up to (but not including) END
373 starts with a string literal, set *TOK to point to that string
374 literal, and return 1. Otherwise, return zero. Signal an error if
375 it contains a malformed or incomplete string literal. */
377 get_string_literal (struct macro_buffer
*tok
, char *p
, char *end
)
382 && (p
[0] == 'L' || p
[0] == 'u' || p
[0] == 'U')
389 else if (*p
== 'L' || *p
== 'u' || *p
== 'U')
392 gdb_assert_not_reached ("unexpected string literal");
397 error (_("Unterminated string in expression."));
404 error (_("Newline characters may not appear in string "
409 c_parse_escape (&p
, NULL
);
415 set_token (tok
, tok_start
, p
);
424 get_punctuator (struct macro_buffer
*tok
, char *p
, char *end
)
426 /* Here, speed is much less important than correctness and clarity. */
428 /* ISO/IEC 9899:1999 (E) Section 6.4.6 Paragraph 1.
429 Note that this table is ordered in a special way. A punctuator
430 which is a prefix of another punctuator must appear after its
431 "extension". Otherwise, the wrong token will be returned. */
432 static const char * const punctuators
[] = {
433 "[", "]", "(", ")", "{", "}", "?", ";", ",", "~",
435 "->", "--", "-=", "-",
441 "%>", "%:%:", "%:", "%=", "%",
446 "<<=", "<<", "<=", "<:", "<%", "<",
447 ">>=", ">>", ">=", ">",
456 for (i
= 0; punctuators
[i
]; i
++)
458 const char *punctuator
= punctuators
[i
];
460 if (p
[0] == punctuator
[0])
462 int len
= strlen (punctuator
);
465 && ! memcmp (p
, punctuator
, len
))
467 set_token (tok
, p
, p
+ len
);
478 /* Peel the next preprocessor token off of SRC, and put it in TOK.
479 Mutate TOK to refer to the first token in SRC, and mutate SRC to
480 refer to the text after that token. SRC must be a shared buffer;
481 the resulting TOK will be shared, pointing into the same string SRC
482 does. Initialize TOK's last_token field. Return non-zero if we
483 succeed, or 0 if we didn't find any more tokens in SRC. */
485 get_token (struct macro_buffer
*tok
,
486 struct macro_buffer
*src
)
489 char *end
= p
+ src
->len
;
491 gdb_assert (src
->shared
);
493 /* From the ISO C standard, ISO/IEC 9899:1999 (E), section 6.4:
502 each non-white-space character that cannot be one of the above
504 We don't have to deal with header-name tokens, since those can
505 only occur after a #include, which we will never see. */
508 if (macro_is_whitespace (*p
))
510 else if (get_comment (tok
, p
, end
))
512 else if (get_pp_number (tok
, p
, end
)
513 || get_character_constant (tok
, p
, end
)
514 || get_string_literal (tok
, p
, end
)
515 /* Note: the grammar in the standard seems to be
516 ambiguous: L'x' can be either a wide character
517 constant, or an identifier followed by a normal
518 character constant. By trying `get_identifier' after
519 we try get_character_constant and get_string_literal,
520 we give the wide character syntax precedence. Now,
521 since GDB doesn't handle wide character constants
522 anyway, is this the right thing to do? */
523 || get_identifier (tok
, p
, end
)
524 || get_punctuator (tok
, p
, end
))
526 /* How many characters did we consume, including whitespace? */
527 int consumed
= p
- src
->text
+ tok
->len
;
529 src
->text
+= consumed
;
530 src
->len
-= consumed
;
535 /* We have found a "non-whitespace character that cannot be
536 one of the above." Make a token out of it. */
539 set_token (tok
, p
, p
+ 1);
540 consumed
= p
- src
->text
+ tok
->len
;
541 src
->text
+= consumed
;
542 src
->len
-= consumed
;
551 /* Appending token strings, with and without splicing */
554 /* Append the macro buffer SRC to the end of DEST, and ensure that
555 doing so doesn't splice the token at the end of SRC with the token
556 at the beginning of DEST. SRC and DEST must have their last_token
557 fields set. Upon return, DEST's last_token field is set correctly.
561 If DEST is "(" and SRC is "y", then we can return with
562 DEST set to "(y" --- we've simply appended the two buffers.
564 However, if DEST is "x" and SRC is "y", then we must not return
565 with DEST set to "xy" --- that would splice the two tokens "x" and
566 "y" together to make a single token "xy". However, it would be
567 fine to return with DEST set to "x y". Similarly, "<" and "<" must
568 yield "< <", not "<<", etc. */
570 append_tokens_without_splicing (struct macro_buffer
*dest
,
571 struct macro_buffer
*src
)
573 int original_dest_len
= dest
->len
;
574 struct macro_buffer dest_tail
, new_token
;
576 gdb_assert (src
->last_token
!= -1);
577 gdb_assert (dest
->last_token
!= -1);
579 /* First, just try appending the two, and call get_token to see if
581 appendmem (dest
, src
->text
, src
->len
);
583 /* If DEST originally had no token abutting its end, then we can't
584 have spliced anything, so we're done. */
585 if (dest
->last_token
== original_dest_len
)
587 dest
->last_token
= original_dest_len
+ src
->last_token
;
591 /* Set DEST_TAIL to point to the last token in DEST, followed by
592 all the stuff we just appended. */
593 init_shared_buffer (&dest_tail
,
594 dest
->text
+ dest
->last_token
,
595 dest
->len
- dest
->last_token
);
597 /* Re-parse DEST's last token. We know that DEST used to contain
598 at least one token, so if it doesn't contain any after the
599 append, then we must have spliced "/" and "*" or "/" and "/" to
600 make a comment start. (Just for the record, I got this right
601 the first time. This is not a bug fix.) */
602 if (get_token (&new_token
, &dest_tail
)
603 && (new_token
.text
+ new_token
.len
604 == dest
->text
+ original_dest_len
))
606 /* No splice, so we're done. */
607 dest
->last_token
= original_dest_len
+ src
->last_token
;
611 /* Okay, a simple append caused a splice. Let's chop dest back to
612 its original length and try again, but separate the texts with a
614 dest
->len
= original_dest_len
;
616 appendmem (dest
, src
->text
, src
->len
);
618 init_shared_buffer (&dest_tail
,
619 dest
->text
+ dest
->last_token
,
620 dest
->len
- dest
->last_token
);
622 /* Try to re-parse DEST's last token, as above. */
623 if (get_token (&new_token
, &dest_tail
)
624 && (new_token
.text
+ new_token
.len
625 == dest
->text
+ original_dest_len
))
627 /* No splice, so we're done. */
628 dest
->last_token
= original_dest_len
+ 1 + src
->last_token
;
632 /* As far as I know, there's no case where inserting a space isn't
633 enough to prevent a splice. */
634 internal_error (__FILE__
, __LINE__
,
635 _("unable to avoid splicing tokens during macro expansion"));
638 /* Stringify an argument, and insert it into DEST. ARG is the text to
639 stringify; it is LEN bytes long. */
642 stringify (struct macro_buffer
*dest
, char *arg
, int len
)
644 /* Trim initial whitespace from ARG. */
645 while (len
> 0 && macro_is_whitespace (*arg
))
651 /* Trim trailing whitespace from ARG. */
652 while (len
> 0 && macro_is_whitespace (arg
[len
- 1]))
655 /* Insert the string. */
659 /* We could try to handle strange cases here, like control
660 characters, but there doesn't seem to be much point. */
661 if (macro_is_whitespace (*arg
))
663 /* Replace a sequence of whitespace with a single space. */
665 while (len
> 1 && macro_is_whitespace (arg
[1]))
671 else if (*arg
== '\\' || *arg
== '"')
673 appendc (dest
, '\\');
674 appendc (dest
, *arg
);
677 appendc (dest
, *arg
);
682 dest
->last_token
= dest
->len
;
686 /* Expanding macros! */
689 /* A singly-linked list of the names of the macros we are currently
690 expanding --- for detecting expansion loops. */
691 struct macro_name_list
{
693 struct macro_name_list
*next
;
697 /* Return non-zero if we are currently expanding the macro named NAME,
698 according to LIST; otherwise, return zero.
700 You know, it would be possible to get rid of all the NO_LOOP
701 arguments to these functions by simply generating a new lookup
702 function and baton which refuses to find the definition for a
703 particular macro, and otherwise delegates the decision to another
704 function/baton pair. But that makes the linked list of excluded
705 macros chained through untyped baton pointers, which will make it
706 harder to debug. :( */
708 currently_rescanning (struct macro_name_list
*list
, const char *name
)
710 for (; list
; list
= list
->next
)
711 if (strcmp (name
, list
->name
) == 0)
718 /* Gather the arguments to a macro expansion.
720 NAME is the name of the macro being invoked. (It's only used for
721 printing error messages.)
723 Assume that SRC is the text of the macro invocation immediately
724 following the macro name. For example, if we're processing the
725 text foo(bar, baz), then NAME would be foo and SRC will be (bar,
728 If SRC doesn't start with an open paren ( token at all, return
729 zero, leave SRC unchanged, and don't set *ARGC_P to anything.
731 If SRC doesn't contain a properly terminated argument list, then
734 For a variadic macro, NARGS holds the number of formal arguments to
735 the macro. For a GNU-style variadic macro, this should be the
736 number of named arguments. For a non-variadic macro, NARGS should
739 Otherwise, return a pointer to the first element of an array of
740 macro buffers referring to the argument texts, and set *ARGC_P to
741 the number of arguments we found --- the number of elements in the
742 array. The macro buffers share their text with SRC, and their
743 last_token fields are initialized. The array is allocated with
744 xmalloc, and the caller is responsible for freeing it.
746 NOTE WELL: if SRC starts with a open paren ( token followed
747 immediately by a close paren ) token (e.g., the invocation looks
748 like "foo()"), we treat that as one argument, which happens to be
749 the empty list of tokens. The caller should keep in mind that such
750 a sequence of tokens is a valid way to invoke one-parameter
751 function-like macros, but also a valid way to invoke zero-parameter
752 function-like macros. Eeew.
754 Consume the tokens from SRC; after this call, SRC contains the text
755 following the invocation. */
757 static struct macro_buffer
*
758 gather_arguments (const char *name
, struct macro_buffer
*src
,
759 int nargs
, int *argc_p
)
761 struct macro_buffer tok
;
762 int args_len
, args_size
;
763 struct macro_buffer
*args
= NULL
;
764 struct cleanup
*back_to
= make_cleanup (free_current_contents
, &args
);
766 /* Does SRC start with an opening paren token? Read from a copy of
767 SRC, so SRC itself is unaffected if we don't find an opening
770 struct macro_buffer temp
;
772 init_shared_buffer (&temp
, src
->text
, src
->len
);
774 if (! get_token (&tok
, &temp
)
776 || tok
.text
[0] != '(')
778 discard_cleanups (back_to
);
783 /* Consume SRC's opening paren. */
784 get_token (&tok
, src
);
788 args
= (struct macro_buffer
*) xmalloc (sizeof (*args
) * args_size
);
792 struct macro_buffer
*arg
;
795 /* Make sure we have room for the next argument. */
796 if (args_len
>= args_size
)
799 args
= xrealloc (args
, sizeof (*args
) * args_size
);
802 /* Initialize the next argument. */
803 arg
= &args
[args_len
++];
804 set_token (arg
, src
->text
, src
->text
);
806 /* Gather the argument's tokens. */
810 if (! get_token (&tok
, src
))
811 error (_("Malformed argument list for macro `%s'."), name
);
813 /* Is tok an opening paren? */
814 if (tok
.len
== 1 && tok
.text
[0] == '(')
817 /* Is tok is a closing paren? */
818 else if (tok
.len
== 1 && tok
.text
[0] == ')')
820 /* If it's a closing paren at the top level, then that's
821 the end of the argument list. */
824 /* In the varargs case, the last argument may be
825 missing. Add an empty argument in this case. */
826 if (nargs
!= -1 && args_len
== nargs
- 1)
828 /* Make sure we have room for the argument. */
829 if (args_len
>= args_size
)
832 args
= xrealloc (args
, sizeof (*args
) * args_size
);
834 arg
= &args
[args_len
++];
835 set_token (arg
, src
->text
, src
->text
);
838 discard_cleanups (back_to
);
846 /* If tok is a comma at top level, then that's the end of
847 the current argument. However, if we are handling a
848 variadic macro and we are computing the last argument, we
849 want to include the comma and remaining tokens. */
850 else if (tok
.len
== 1 && tok
.text
[0] == ',' && depth
== 0
851 && (nargs
== -1 || args_len
< nargs
))
854 /* Extend the current argument to enclose this token. If
855 this is the current argument's first token, leave out any
856 leading whitespace, just for aesthetics. */
859 arg
->text
= tok
.text
;
865 arg
->len
= (tok
.text
+ tok
.len
) - arg
->text
;
866 arg
->last_token
= tok
.text
- arg
->text
;
873 /* The `expand' and `substitute_args' functions both invoke `scan'
874 recursively, so we need a forward declaration somewhere. */
875 static void scan (struct macro_buffer
*dest
,
876 struct macro_buffer
*src
,
877 struct macro_name_list
*no_loop
,
878 macro_lookup_ftype
*lookup_func
,
882 /* A helper function for substitute_args.
884 ARGV is a vector of all the arguments; ARGC is the number of
885 arguments. IS_VARARGS is true if the macro being substituted is a
886 varargs macro; in this case VA_ARG_NAME is the name of the
887 "variable" argument. VA_ARG_NAME is ignored if IS_VARARGS is
890 If the token TOK is the name of a parameter, return the parameter's
891 index. If TOK is not an argument, return -1. */
894 find_parameter (const struct macro_buffer
*tok
,
895 int is_varargs
, const struct macro_buffer
*va_arg_name
,
896 int argc
, const char * const *argv
)
900 if (! tok
->is_identifier
)
903 for (i
= 0; i
< argc
; ++i
)
904 if (tok
->len
== strlen (argv
[i
]) && ! memcmp (tok
->text
, argv
[i
], tok
->len
))
907 if (is_varargs
&& tok
->len
== va_arg_name
->len
908 && ! memcmp (tok
->text
, va_arg_name
->text
, tok
->len
))
914 /* Given the macro definition DEF, being invoked with the actual
915 arguments given by ARGC and ARGV, substitute the arguments into the
916 replacement list, and store the result in DEST.
918 IS_VARARGS should be true if DEF is a varargs macro. In this case,
919 VA_ARG_NAME should be the name of the "variable" argument -- either
920 __VA_ARGS__ for c99-style varargs, or the final argument name, for
921 GNU-style varargs. If IS_VARARGS is false, this parameter is
924 If it is necessary to expand macro invocations in one of the
925 arguments, use LOOKUP_FUNC and LOOKUP_BATON to find the macro
926 definitions, and don't expand invocations of the macros listed in
930 substitute_args (struct macro_buffer
*dest
,
931 struct macro_definition
*def
,
932 int is_varargs
, const struct macro_buffer
*va_arg_name
,
933 int argc
, struct macro_buffer
*argv
,
934 struct macro_name_list
*no_loop
,
935 macro_lookup_ftype
*lookup_func
,
938 /* A macro buffer for the macro's replacement list. */
939 struct macro_buffer replacement_list
;
940 /* The token we are currently considering. */
941 struct macro_buffer tok
;
942 /* The replacement list's pointer from just before TOK was lexed. */
943 char *original_rl_start
;
944 /* We have a single lookahead token to handle token splicing. */
945 struct macro_buffer lookahead
;
946 /* The lookahead token might not be valid. */
948 /* The replacement list's pointer from just before LOOKAHEAD was
950 char *lookahead_rl_start
;
952 init_shared_buffer (&replacement_list
, (char *) def
->replacement
,
953 strlen (def
->replacement
));
955 gdb_assert (dest
->len
== 0);
956 dest
->last_token
= 0;
958 original_rl_start
= replacement_list
.text
;
959 if (! get_token (&tok
, &replacement_list
))
961 lookahead_rl_start
= replacement_list
.text
;
962 lookahead_valid
= get_token (&lookahead
, &replacement_list
);
966 /* Just for aesthetics. If we skipped some whitespace, copy
968 if (tok
.text
> original_rl_start
)
970 appendmem (dest
, original_rl_start
, tok
.text
- original_rl_start
);
971 dest
->last_token
= dest
->len
;
974 /* Is this token the stringification operator? */
976 && tok
.text
[0] == '#')
980 if (!lookahead_valid
)
981 error (_("Stringification operator requires an argument."));
983 arg
= find_parameter (&lookahead
, is_varargs
, va_arg_name
,
984 def
->argc
, def
->argv
);
986 error (_("Argument to stringification operator must name "
987 "a macro parameter."));
989 stringify (dest
, argv
[arg
].text
, argv
[arg
].len
);
991 /* Read one token and let the loop iteration code handle the
993 lookahead_rl_start
= replacement_list
.text
;
994 lookahead_valid
= get_token (&lookahead
, &replacement_list
);
996 /* Is this token the splicing operator? */
997 else if (tok
.len
== 2
998 && tok
.text
[0] == '#'
999 && tok
.text
[1] == '#')
1000 error (_("Stray splicing operator"));
1001 /* Is the next token the splicing operator? */
1002 else if (lookahead_valid
1003 && lookahead
.len
== 2
1004 && lookahead
.text
[0] == '#'
1005 && lookahead
.text
[1] == '#')
1008 int prev_was_comma
= 0;
1010 /* Note that GCC warns if the result of splicing is not a
1011 token. In the debugger there doesn't seem to be much
1012 benefit from doing this. */
1014 /* Insert the first token. */
1015 if (tok
.len
== 1 && tok
.text
[0] == ',')
1019 int arg
= find_parameter (&tok
, is_varargs
, va_arg_name
,
1020 def
->argc
, def
->argv
);
1023 appendmem (dest
, argv
[arg
].text
, argv
[arg
].len
);
1025 appendmem (dest
, tok
.text
, tok
.len
);
1028 /* Apply a possible sequence of ## operators. */
1031 if (! get_token (&tok
, &replacement_list
))
1032 error (_("Splicing operator at end of macro"));
1034 /* Handle a comma before a ##. If we are handling
1035 varargs, and the token on the right hand side is the
1036 varargs marker, and the final argument is empty or
1037 missing, then drop the comma. This is a GNU
1038 extension. There is one ambiguous case here,
1039 involving pedantic behavior with an empty argument,
1040 but we settle that in favor of GNU-style (GCC uses an
1041 option). If we aren't dealing with varargs, we
1042 simply insert the comma. */
1046 && tok
.len
== va_arg_name
->len
1047 && !memcmp (tok
.text
, va_arg_name
->text
, tok
.len
)
1048 && argv
[argc
- 1].len
== 0))
1049 appendmem (dest
, ",", 1);
1053 /* Insert the token. If it is a parameter, insert the
1054 argument. If it is a comma, treat it specially. */
1055 if (tok
.len
== 1 && tok
.text
[0] == ',')
1059 int arg
= find_parameter (&tok
, is_varargs
, va_arg_name
,
1060 def
->argc
, def
->argv
);
1063 appendmem (dest
, argv
[arg
].text
, argv
[arg
].len
);
1065 appendmem (dest
, tok
.text
, tok
.len
);
1068 /* Now read another token. If it is another splice, we
1070 original_rl_start
= replacement_list
.text
;
1071 if (! get_token (&tok
, &replacement_list
))
1078 && tok
.text
[0] == '#'
1079 && tok
.text
[1] == '#'))
1085 /* We saw a comma. Insert it now. */
1086 appendmem (dest
, ",", 1);
1089 dest
->last_token
= dest
->len
;
1091 lookahead_valid
= 0;
1094 /* Set up for the loop iterator. */
1096 lookahead_rl_start
= original_rl_start
;
1097 lookahead_valid
= 1;
1102 /* Is this token an identifier? */
1103 int substituted
= 0;
1104 int arg
= find_parameter (&tok
, is_varargs
, va_arg_name
,
1105 def
->argc
, def
->argv
);
1109 struct macro_buffer arg_src
;
1111 /* Expand any macro invocations in the argument text,
1112 and append the result to dest. Remember that scan
1113 mutates its source, so we need to scan a new buffer
1114 referring to the argument's text, not the argument
1116 init_shared_buffer (&arg_src
, argv
[arg
].text
, argv
[arg
].len
);
1117 scan (dest
, &arg_src
, no_loop
, lookup_func
, lookup_baton
);
1121 /* If it wasn't a parameter, then just copy it across. */
1123 append_tokens_without_splicing (dest
, &tok
);
1126 if (! lookahead_valid
)
1130 original_rl_start
= lookahead_rl_start
;
1132 lookahead_rl_start
= replacement_list
.text
;
1133 lookahead_valid
= get_token (&lookahead
, &replacement_list
);
1138 /* Expand a call to a macro named ID, whose definition is DEF. Append
1139 its expansion to DEST. SRC is the input text following the ID
1140 token. We are currently rescanning the expansions of the macros
1141 named in NO_LOOP; don't re-expand them. Use LOOKUP_FUNC and
1142 LOOKUP_BATON to find definitions for any nested macro references.
1144 Return 1 if we decided to expand it, zero otherwise. (If it's a
1145 function-like macro name that isn't followed by an argument list,
1146 we don't expand it.) If we return zero, leave SRC unchanged. */
1148 expand (const char *id
,
1149 struct macro_definition
*def
,
1150 struct macro_buffer
*dest
,
1151 struct macro_buffer
*src
,
1152 struct macro_name_list
*no_loop
,
1153 macro_lookup_ftype
*lookup_func
,
1156 struct macro_name_list new_no_loop
;
1158 /* Create a new node to be added to the front of the no-expand list.
1159 This list is appropriate for re-scanning replacement lists, but
1160 it is *not* appropriate for scanning macro arguments; invocations
1161 of the macro whose arguments we are gathering *do* get expanded
1163 new_no_loop
.name
= id
;
1164 new_no_loop
.next
= no_loop
;
1166 /* What kind of macro are we expanding? */
1167 if (def
->kind
== macro_object_like
)
1169 struct macro_buffer replacement_list
;
1171 init_shared_buffer (&replacement_list
, (char *) def
->replacement
,
1172 strlen (def
->replacement
));
1174 scan (dest
, &replacement_list
, &new_no_loop
, lookup_func
, lookup_baton
);
1177 else if (def
->kind
== macro_function_like
)
1179 struct cleanup
*back_to
= make_cleanup (null_cleanup
, 0);
1181 struct macro_buffer
*argv
= NULL
;
1182 struct macro_buffer substituted
;
1183 struct macro_buffer substituted_src
;
1184 struct macro_buffer va_arg_name
;
1189 if (strcmp (def
->argv
[def
->argc
- 1], "...") == 0)
1191 /* In C99-style varargs, substitution is done using
1193 init_shared_buffer (&va_arg_name
, "__VA_ARGS__",
1194 strlen ("__VA_ARGS__"));
1199 int len
= strlen (def
->argv
[def
->argc
- 1]);
1202 && strcmp (def
->argv
[def
->argc
- 1] + len
- 3, "...") == 0)
1204 /* In GNU-style varargs, the name of the
1205 substitution parameter is the name of the formal
1206 argument without the "...". */
1207 init_shared_buffer (&va_arg_name
,
1208 (char *) def
->argv
[def
->argc
- 1],
1215 make_cleanup (free_current_contents
, &argv
);
1216 argv
= gather_arguments (id
, src
, is_varargs
? def
->argc
: -1,
1219 /* If we couldn't find any argument list, then we don't expand
1223 do_cleanups (back_to
);
1227 /* Check that we're passing an acceptable number of arguments for
1229 if (argc
!= def
->argc
)
1231 if (is_varargs
&& argc
>= def
->argc
- 1)
1235 /* Remember that a sequence of tokens like "foo()" is a
1236 valid invocation of a macro expecting either zero or one
1238 else if (! (argc
== 1
1241 error (_("Wrong number of arguments to macro `%s' "
1242 "(expected %d, got %d)."),
1243 id
, def
->argc
, argc
);
1246 /* Note that we don't expand macro invocations in the arguments
1247 yet --- we let subst_args take care of that. Parameters that
1248 appear as operands of the stringifying operator "#" or the
1249 splicing operator "##" don't get macro references expanded,
1250 so we can't really tell whether it's appropriate to macro-
1251 expand an argument until we see how it's being used. */
1252 init_buffer (&substituted
, 0);
1253 make_cleanup (cleanup_macro_buffer
, &substituted
);
1254 substitute_args (&substituted
, def
, is_varargs
, &va_arg_name
,
1255 argc
, argv
, no_loop
, lookup_func
, lookup_baton
);
1257 /* Now `substituted' is the macro's replacement list, with all
1258 argument values substituted into it properly. Re-scan it for
1259 macro references, but don't expand invocations of this macro.
1261 We create a new buffer, `substituted_src', which points into
1262 `substituted', and scan that. We can't scan `substituted'
1263 itself, since the tokenization process moves the buffer's
1264 text pointer around, and we still need to be able to find
1265 `substituted's original text buffer after scanning it so we
1267 init_shared_buffer (&substituted_src
, substituted
.text
, substituted
.len
);
1268 scan (dest
, &substituted_src
, &new_no_loop
, lookup_func
, lookup_baton
);
1270 do_cleanups (back_to
);
1275 internal_error (__FILE__
, __LINE__
, _("bad macro definition kind"));
1279 /* If the single token in SRC_FIRST followed by the tokens in SRC_REST
1280 constitute a macro invokation not forbidden in NO_LOOP, append its
1281 expansion to DEST and return non-zero. Otherwise, return zero, and
1282 leave DEST unchanged.
1284 SRC_FIRST and SRC_REST must be shared buffers; DEST must not be one.
1285 SRC_FIRST must be a string built by get_token. */
1287 maybe_expand (struct macro_buffer
*dest
,
1288 struct macro_buffer
*src_first
,
1289 struct macro_buffer
*src_rest
,
1290 struct macro_name_list
*no_loop
,
1291 macro_lookup_ftype
*lookup_func
,
1294 gdb_assert (src_first
->shared
);
1295 gdb_assert (src_rest
->shared
);
1296 gdb_assert (! dest
->shared
);
1298 /* Is this token an identifier? */
1299 if (src_first
->is_identifier
)
1301 /* Make a null-terminated copy of it, since that's what our
1302 lookup function expects. */
1303 char *id
= xmalloc (src_first
->len
+ 1);
1304 struct cleanup
*back_to
= make_cleanup (xfree
, id
);
1306 memcpy (id
, src_first
->text
, src_first
->len
);
1307 id
[src_first
->len
] = 0;
1309 /* If we're currently re-scanning the result of expanding
1310 this macro, don't expand it again. */
1311 if (! currently_rescanning (no_loop
, id
))
1313 /* Does this identifier have a macro definition in scope? */
1314 struct macro_definition
*def
= lookup_func (id
, lookup_baton
);
1316 if (def
&& expand (id
, def
, dest
, src_rest
, no_loop
,
1317 lookup_func
, lookup_baton
))
1319 do_cleanups (back_to
);
1324 do_cleanups (back_to
);
1331 /* Expand macro references in SRC, appending the results to DEST.
1332 Assume we are re-scanning the result of expanding the macros named
1333 in NO_LOOP, and don't try to re-expand references to them.
1335 SRC must be a shared buffer; DEST must not be one. */
1337 scan (struct macro_buffer
*dest
,
1338 struct macro_buffer
*src
,
1339 struct macro_name_list
*no_loop
,
1340 macro_lookup_ftype
*lookup_func
,
1343 gdb_assert (src
->shared
);
1344 gdb_assert (! dest
->shared
);
1348 struct macro_buffer tok
;
1349 char *original_src_start
= src
->text
;
1351 /* Find the next token in SRC. */
1352 if (! get_token (&tok
, src
))
1355 /* Just for aesthetics. If we skipped some whitespace, copy
1357 if (tok
.text
> original_src_start
)
1359 appendmem (dest
, original_src_start
, tok
.text
- original_src_start
);
1360 dest
->last_token
= dest
->len
;
1363 if (! maybe_expand (dest
, &tok
, src
, no_loop
, lookup_func
, lookup_baton
))
1364 /* We didn't end up expanding tok as a macro reference, so
1365 simply append it to dest. */
1366 append_tokens_without_splicing (dest
, &tok
);
1369 /* Just for aesthetics. If there was any trailing whitespace in
1370 src, copy it to dest. */
1373 appendmem (dest
, src
->text
, src
->len
);
1374 dest
->last_token
= dest
->len
;
1380 macro_expand (const char *source
,
1381 macro_lookup_ftype
*lookup_func
,
1382 void *lookup_func_baton
)
1384 struct macro_buffer src
, dest
;
1385 struct cleanup
*back_to
;
1387 init_shared_buffer (&src
, (char *) source
, strlen (source
));
1389 init_buffer (&dest
, 0);
1390 dest
.last_token
= 0;
1391 back_to
= make_cleanup (cleanup_macro_buffer
, &dest
);
1393 scan (&dest
, &src
, 0, lookup_func
, lookup_func_baton
);
1395 appendc (&dest
, '\0');
1397 discard_cleanups (back_to
);
1403 macro_expand_once (const char *source
,
1404 macro_lookup_ftype
*lookup_func
,
1405 void *lookup_func_baton
)
1407 error (_("Expand-once not implemented yet."));
1412 macro_expand_next (char **lexptr
,
1413 macro_lookup_ftype
*lookup_func
,
1416 struct macro_buffer src
, dest
, tok
;
1417 struct cleanup
*back_to
;
1419 /* Set up SRC to refer to the input text, pointed to by *lexptr. */
1420 init_shared_buffer (&src
, *lexptr
, strlen (*lexptr
));
1422 /* Set up DEST to receive the expansion, if there is one. */
1423 init_buffer (&dest
, 0);
1424 dest
.last_token
= 0;
1425 back_to
= make_cleanup (cleanup_macro_buffer
, &dest
);
1427 /* Get the text's first preprocessing token. */
1428 if (! get_token (&tok
, &src
))
1430 do_cleanups (back_to
);
1434 /* If it's a macro invocation, expand it. */
1435 if (maybe_expand (&dest
, &tok
, &src
, 0, lookup_func
, lookup_baton
))
1437 /* It was a macro invocation! Package up the expansion as a
1438 null-terminated string and return it. Set *lexptr to the
1439 start of the next token in the input. */
1440 appendc (&dest
, '\0');
1441 discard_cleanups (back_to
);
1447 /* It wasn't a macro invocation. */
1448 do_cleanups (back_to
);