* g++.dg/pph/c120060625-1.cc: New.
[official-gcc.git] / libcpp / macro.c
blob6839fc4e8896529c8b5d0cdc16ffca5e699e2db0
1 /* Part of CPP library. (Macro and #define handling.)
2 Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 Written by Per Bothner, 1994.
6 Based on CCCP program by Paul Rubin, June 1986
7 Adapted to ANSI C, Richard Stallman, Jan 1987
9 This program is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by the
11 Free Software Foundation; either version 3, or (at your option) any
12 later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>.
23 In other words, you are welcome to use, share and improve this program.
24 You are forbidden to forbid anyone else to use, share and improve
25 what you give them. Help stamp out software-hoarding! */
27 #include "config.h"
28 #include "system.h"
29 #include "cpplib.h"
30 #include "internal.h"
32 typedef struct macro_arg macro_arg;
33 struct macro_arg
35 const cpp_token **first; /* First token in unexpanded argument. */
36 const cpp_token **expanded; /* Macro-expanded argument. */
37 const cpp_token *stringified; /* Stringified argument. */
38 unsigned int count; /* # of tokens in argument. */
39 unsigned int expanded_count; /* # of tokens in expanded argument. */
42 /* Macro expansion. */
44 static int enter_macro_context (cpp_reader *, cpp_hashnode *,
45 const cpp_token *);
46 static int builtin_macro (cpp_reader *, cpp_hashnode *);
47 static void push_ptoken_context (cpp_reader *, cpp_hashnode *, _cpp_buff *,
48 const cpp_token **, unsigned int);
49 static _cpp_buff *collect_args (cpp_reader *, const cpp_hashnode *,
50 _cpp_buff **);
51 static cpp_context *next_context (cpp_reader *);
52 static const cpp_token *padding_token (cpp_reader *, const cpp_token *);
53 static void expand_arg (cpp_reader *, macro_arg *);
54 static const cpp_token *new_string_token (cpp_reader *, uchar *, unsigned int);
55 static const cpp_token *stringify_arg (cpp_reader *, macro_arg *);
56 static void paste_all_tokens (cpp_reader *, const cpp_token *);
57 static bool paste_tokens (cpp_reader *, const cpp_token **, const cpp_token *);
58 static void replace_args (cpp_reader *, cpp_hashnode *, cpp_macro *,
59 macro_arg *);
60 static _cpp_buff *funlike_invocation_p (cpp_reader *, cpp_hashnode *,
61 _cpp_buff **);
62 static bool create_iso_definition (cpp_reader *, cpp_macro *);
64 /* #define directive parsing and handling. */
66 static cpp_token *alloc_expansion_token (cpp_reader *, cpp_macro *);
67 static cpp_token *lex_expansion_token (cpp_reader *, cpp_macro *);
68 static bool warn_of_redefinition (cpp_reader *, cpp_hashnode *,
69 const cpp_macro *);
70 static bool parse_params (cpp_reader *, cpp_macro *);
71 static void check_trad_stringification (cpp_reader *, const cpp_macro *,
72 const cpp_string *);
74 /* Emits a warning if NODE is a macro defined in the main file that
75 has not been used. */
76 int
77 _cpp_warn_if_unused_macro (cpp_reader *pfile, cpp_hashnode *node,
78 void *v ATTRIBUTE_UNUSED)
80 if (node->type == NT_MACRO && !(node->flags & NODE_BUILTIN))
82 cpp_macro *macro = node->value.macro;
84 if (!macro->used
85 && MAIN_FILE_P (linemap_lookup (pfile->line_table, macro->line)))
86 cpp_warning_with_line (pfile, CPP_W_UNUSED_MACROS, macro->line, 0,
87 "macro \"%s\" is not used", NODE_NAME (node));
90 return 1;
93 /* Allocates and returns a CPP_STRING token, containing TEXT of length
94 LEN, after null-terminating it. TEXT must be in permanent storage. */
95 static const cpp_token *
96 new_string_token (cpp_reader *pfile, unsigned char *text, unsigned int len)
98 cpp_token *token = _cpp_temp_token (pfile);
100 text[len] = '\0';
101 token->type = CPP_STRING;
102 token->val.str.len = len;
103 token->val.str.text = text;
104 token->flags = 0;
105 return token;
108 static const char * const monthnames[] =
110 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
111 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
114 /* Helper function for builtin_macro. Returns the text generated by
115 a builtin macro. */
116 const uchar *
117 _cpp_builtin_macro_text (cpp_reader *pfile, cpp_hashnode *node)
119 const struct line_map *map;
120 const uchar *result = NULL;
121 linenum_type number = 1;
123 switch (node->value.builtin)
125 default:
126 cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
127 NODE_NAME (node));
128 break;
130 case BT_TIMESTAMP:
132 cpp_buffer *pbuffer = cpp_get_buffer (pfile);
133 if (pbuffer->timestamp == NULL)
135 /* Initialize timestamp value of the assotiated file. */
136 struct _cpp_file *file = cpp_get_file (pbuffer);
137 if (file)
139 /* Generate __TIMESTAMP__ string, that represents
140 the date and time of the last modification
141 of the current source file. The string constant
142 looks like "Sun Sep 16 01:03:52 1973". */
143 struct tm *tb = NULL;
144 struct stat *st = _cpp_get_file_stat (file);
145 if (st)
146 tb = localtime (&st->st_mtime);
147 if (tb)
149 char *str = asctime (tb);
150 size_t len = strlen (str);
151 unsigned char *buf = _cpp_unaligned_alloc (pfile, len + 2);
152 buf[0] = '"';
153 strcpy ((char *) buf + 1, str);
154 buf[len] = '"';
155 pbuffer->timestamp = buf;
157 else
159 cpp_errno (pfile, CPP_DL_WARNING,
160 "could not determine file timestamp");
161 pbuffer->timestamp = UC"\"??? ??? ?? ??:??:?? ????\"";
165 result = pbuffer->timestamp;
167 break;
168 case BT_FILE:
169 case BT_BASE_FILE:
171 unsigned int len;
172 const char *name;
173 uchar *buf;
174 map = linemap_lookup (pfile->line_table, pfile->line_table->highest_line);
176 if (node->value.builtin == BT_BASE_FILE)
177 while (! MAIN_FILE_P (map))
178 map = INCLUDED_FROM (pfile->line_table, map);
180 name = map->to_file;
181 len = strlen (name);
182 buf = _cpp_unaligned_alloc (pfile, len * 2 + 3);
183 result = buf;
184 *buf = '"';
185 buf = cpp_quote_string (buf + 1, (const unsigned char *) name, len);
186 *buf++ = '"';
187 *buf = '\0';
189 break;
191 case BT_INCLUDE_LEVEL:
192 /* The line map depth counts the primary source as level 1, but
193 historically __INCLUDE_DEPTH__ has called the primary source
194 level 0. */
195 number = pfile->line_table->depth - 1;
196 break;
198 case BT_SPECLINE:
199 map = &pfile->line_table->maps[pfile->line_table->used-1];
200 /* If __LINE__ is embedded in a macro, it must expand to the
201 line of the macro's invocation, not its definition.
202 Otherwise things like assert() will not work properly. */
203 number = SOURCE_LINE (map,
204 CPP_OPTION (pfile, traditional)
205 ? pfile->line_table->highest_line
206 : pfile->cur_token[-1].src_loc);
207 break;
209 /* __STDC__ has the value 1 under normal circumstances.
210 However, if (a) we are in a system header, (b) the option
211 stdc_0_in_system_headers is true (set by target config), and
212 (c) we are not in strictly conforming mode, then it has the
213 value 0. (b) and (c) are already checked in cpp_init_builtins. */
214 case BT_STDC:
215 if (cpp_in_system_header (pfile))
216 number = 0;
217 else
218 number = 1;
219 break;
221 case BT_DATE:
222 case BT_TIME:
223 if (pfile->date == NULL)
225 /* Allocate __DATE__ and __TIME__ strings from permanent
226 storage. We only do this once, and don't generate them
227 at init time, because time() and localtime() are very
228 slow on some systems. */
229 time_t tt;
230 struct tm *tb = NULL;
232 /* (time_t) -1 is a legitimate value for "number of seconds
233 since the Epoch", so we have to do a little dance to
234 distinguish that from a genuine error. */
235 errno = 0;
236 tt = time(NULL);
237 if (tt != (time_t)-1 || errno == 0)
238 tb = localtime (&tt);
240 if (tb)
242 pfile->date = _cpp_unaligned_alloc (pfile,
243 sizeof ("\"Oct 11 1347\""));
244 sprintf ((char *) pfile->date, "\"%s %2d %4d\"",
245 monthnames[tb->tm_mon], tb->tm_mday,
246 tb->tm_year + 1900);
248 pfile->time = _cpp_unaligned_alloc (pfile,
249 sizeof ("\"12:34:56\""));
250 sprintf ((char *) pfile->time, "\"%02d:%02d:%02d\"",
251 tb->tm_hour, tb->tm_min, tb->tm_sec);
253 else
255 cpp_errno (pfile, CPP_DL_WARNING,
256 "could not determine date and time");
258 pfile->date = UC"\"??? ?? ????\"";
259 pfile->time = UC"\"??:??:??\"";
263 if (node->value.builtin == BT_DATE)
264 result = pfile->date;
265 else
266 result = pfile->time;
267 break;
269 case BT_COUNTER:
270 if (CPP_OPTION (pfile, directives_only) && pfile->state.in_directive)
271 cpp_error (pfile, CPP_DL_ERROR,
272 "__COUNTER__ expanded inside directive with -fdirectives-only");
273 number = pfile->counter++;
274 break;
277 if (result == NULL)
279 /* 21 bytes holds all NUL-terminated unsigned 64-bit numbers. */
280 result = _cpp_unaligned_alloc (pfile, 21);
281 sprintf ((char *) result, "%u", number);
284 return result;
287 /* Convert builtin macros like __FILE__ to a token and push it on the
288 context stack. Also handles _Pragma, for which a new token may not
289 be created. Returns 1 if it generates a new token context, 0 to
290 return the token to the caller. */
291 static int
292 builtin_macro (cpp_reader *pfile, cpp_hashnode *node)
294 const uchar *buf;
295 size_t len;
296 char *nbuf;
298 if (node->value.builtin == BT_PRAGMA)
300 /* Don't interpret _Pragma within directives. The standard is
301 not clear on this, but to me this makes most sense. */
302 if (pfile->state.in_directive)
303 return 0;
305 return _cpp_do__Pragma (pfile);
308 buf = _cpp_builtin_macro_text (pfile, node);
309 len = ustrlen (buf);
310 nbuf = (char *) alloca (len + 1);
311 memcpy (nbuf, buf, len);
312 nbuf[len]='\n';
314 cpp_push_buffer (pfile, (uchar *) nbuf, len, /* from_stage3 */ true);
315 _cpp_clean_line (pfile);
317 /* Set pfile->cur_token as required by _cpp_lex_direct. */
318 pfile->cur_token = _cpp_temp_token (pfile);
319 _cpp_push_token_context (pfile, NULL, _cpp_lex_direct (pfile), 1);
320 if (pfile->buffer->cur != pfile->buffer->rlimit)
321 cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
322 NODE_NAME (node));
323 _cpp_pop_buffer (pfile);
325 return 1;
328 /* Copies SRC, of length LEN, to DEST, adding backslashes before all
329 backslashes and double quotes. DEST must be of sufficient size.
330 Returns a pointer to the end of the string. */
331 uchar *
332 cpp_quote_string (uchar *dest, const uchar *src, unsigned int len)
334 while (len--)
336 uchar c = *src++;
338 if (c == '\\' || c == '"')
340 *dest++ = '\\';
341 *dest++ = c;
343 else
344 *dest++ = c;
347 return dest;
350 /* Convert a token sequence ARG to a single string token according to
351 the rules of the ISO C #-operator. */
352 static const cpp_token *
353 stringify_arg (cpp_reader *pfile, macro_arg *arg)
355 unsigned char *dest;
356 unsigned int i, escape_it, backslash_count = 0;
357 const cpp_token *source = NULL;
358 size_t len;
360 if (BUFF_ROOM (pfile->u_buff) < 3)
361 _cpp_extend_buff (pfile, &pfile->u_buff, 3);
362 dest = BUFF_FRONT (pfile->u_buff);
363 *dest++ = '"';
365 /* Loop, reading in the argument's tokens. */
366 for (i = 0; i < arg->count; i++)
368 const cpp_token *token = arg->first[i];
370 if (token->type == CPP_PADDING)
372 if (source == NULL
373 || (!(source->flags & PREV_WHITE)
374 && token->val.source == NULL))
375 source = token->val.source;
376 continue;
379 escape_it = (token->type == CPP_STRING || token->type == CPP_CHAR
380 || token->type == CPP_WSTRING || token->type == CPP_WCHAR
381 || token->type == CPP_STRING32 || token->type == CPP_CHAR32
382 || token->type == CPP_STRING16 || token->type == CPP_CHAR16
383 || token->type == CPP_UTF8STRING);
385 /* Room for each char being written in octal, initial space and
386 final quote and NUL. */
387 len = cpp_token_len (token);
388 if (escape_it)
389 len *= 4;
390 len += 3;
392 if ((size_t) (BUFF_LIMIT (pfile->u_buff) - dest) < len)
394 size_t len_so_far = dest - BUFF_FRONT (pfile->u_buff);
395 _cpp_extend_buff (pfile, &pfile->u_buff, len);
396 dest = BUFF_FRONT (pfile->u_buff) + len_so_far;
399 /* Leading white space? */
400 if (dest - 1 != BUFF_FRONT (pfile->u_buff))
402 if (source == NULL)
403 source = token;
404 if (source->flags & PREV_WHITE)
405 *dest++ = ' ';
407 source = NULL;
409 if (escape_it)
411 _cpp_buff *buff = _cpp_get_buff (pfile, len);
412 unsigned char *buf = BUFF_FRONT (buff);
413 len = cpp_spell_token (pfile, token, buf, true) - buf;
414 dest = cpp_quote_string (dest, buf, len);
415 _cpp_release_buff (pfile, buff);
417 else
418 dest = cpp_spell_token (pfile, token, dest, true);
420 if (token->type == CPP_OTHER && token->val.str.text[0] == '\\')
421 backslash_count++;
422 else
423 backslash_count = 0;
426 /* Ignore the final \ of invalid string literals. */
427 if (backslash_count & 1)
429 cpp_error (pfile, CPP_DL_WARNING,
430 "invalid string literal, ignoring final '\\'");
431 dest--;
434 /* Commit the memory, including NUL, and return the token. */
435 *dest++ = '"';
436 len = dest - BUFF_FRONT (pfile->u_buff);
437 BUFF_FRONT (pfile->u_buff) = dest + 1;
438 return new_string_token (pfile, dest - len, len);
441 /* Try to paste two tokens. On success, return nonzero. In any
442 case, PLHS is updated to point to the pasted token, which is
443 guaranteed to not have the PASTE_LEFT flag set. */
444 static bool
445 paste_tokens (cpp_reader *pfile, const cpp_token **plhs, const cpp_token *rhs)
447 unsigned char *buf, *end, *lhsend;
448 cpp_token *lhs;
449 unsigned int len;
451 len = cpp_token_len (*plhs) + cpp_token_len (rhs) + 1;
452 buf = (unsigned char *) alloca (len);
453 end = lhsend = cpp_spell_token (pfile, *plhs, buf, false);
455 /* Avoid comment headers, since they are still processed in stage 3.
456 It is simpler to insert a space here, rather than modifying the
457 lexer to ignore comments in some circumstances. Simply returning
458 false doesn't work, since we want to clear the PASTE_LEFT flag. */
459 if ((*plhs)->type == CPP_DIV && rhs->type != CPP_EQ)
460 *end++ = ' ';
461 /* In one obscure case we might see padding here. */
462 if (rhs->type != CPP_PADDING)
463 end = cpp_spell_token (pfile, rhs, end, false);
464 *end = '\n';
466 cpp_push_buffer (pfile, buf, end - buf, /* from_stage3 */ true);
467 _cpp_clean_line (pfile);
469 /* Set pfile->cur_token as required by _cpp_lex_direct. */
470 pfile->cur_token = _cpp_temp_token (pfile);
471 lhs = _cpp_lex_direct (pfile);
472 if (pfile->buffer->cur != pfile->buffer->rlimit)
474 source_location saved_loc = lhs->src_loc;
476 _cpp_pop_buffer (pfile);
477 _cpp_backup_tokens (pfile, 1);
478 *lhsend = '\0';
480 /* We have to remove the PASTE_LEFT flag from the old lhs, but
481 we want to keep the new location. */
482 *lhs = **plhs;
483 *plhs = lhs;
484 lhs->src_loc = saved_loc;
485 lhs->flags &= ~PASTE_LEFT;
487 /* Mandatory error for all apart from assembler. */
488 if (CPP_OPTION (pfile, lang) != CLK_ASM)
489 cpp_error (pfile, CPP_DL_ERROR,
490 "pasting \"%s\" and \"%s\" does not give a valid preprocessing token",
491 buf, cpp_token_as_text (pfile, rhs));
492 return false;
495 *plhs = lhs;
496 _cpp_pop_buffer (pfile);
497 return true;
500 /* Handles an arbitrarily long sequence of ## operators, with initial
501 operand LHS. This implementation is left-associative,
502 non-recursive, and finishes a paste before handling succeeding
503 ones. If a paste fails, we back up to the RHS of the failing ##
504 operator before pushing the context containing the result of prior
505 successful pastes, with the effect that the RHS appears in the
506 output stream after the pasted LHS normally. */
507 static void
508 paste_all_tokens (cpp_reader *pfile, const cpp_token *lhs)
510 const cpp_token *rhs;
511 cpp_context *context = pfile->context;
515 /* Take the token directly from the current context. We can do
516 this, because we are in the replacement list of either an
517 object-like macro, or a function-like macro with arguments
518 inserted. In either case, the constraints to #define
519 guarantee we have at least one more token. */
520 if (context->direct_p)
521 rhs = FIRST (context).token++;
522 else
523 rhs = *FIRST (context).ptoken++;
525 if (rhs->type == CPP_PADDING)
527 if (rhs->flags & PASTE_LEFT)
528 abort ();
530 if (!paste_tokens (pfile, &lhs, rhs))
531 break;
533 while (rhs->flags & PASTE_LEFT);
535 /* Put the resulting token in its own context. */
536 _cpp_push_token_context (pfile, NULL, lhs, 1);
539 /* Returns TRUE if the number of arguments ARGC supplied in an
540 invocation of the MACRO referenced by NODE is valid. An empty
541 invocation to a macro with no parameters should pass ARGC as zero.
543 Note that MACRO cannot necessarily be deduced from NODE, in case
544 NODE was redefined whilst collecting arguments. */
545 bool
546 _cpp_arguments_ok (cpp_reader *pfile, cpp_macro *macro, const cpp_hashnode *node, unsigned int argc)
548 if (argc == macro->paramc)
549 return true;
551 if (argc < macro->paramc)
553 /* As an extension, a rest argument is allowed to not appear in
554 the invocation at all.
555 e.g. #define debug(format, args...) something
556 debug("string");
558 This is exactly the same as if there had been an empty rest
559 argument - debug("string", ). */
561 if (argc + 1 == macro->paramc && macro->variadic)
563 if (CPP_PEDANTIC (pfile) && ! macro->syshdr)
564 cpp_error (pfile, CPP_DL_PEDWARN,
565 "ISO C99 requires rest arguments to be used");
566 return true;
569 cpp_error (pfile, CPP_DL_ERROR,
570 "macro \"%s\" requires %u arguments, but only %u given",
571 NODE_NAME (node), macro->paramc, argc);
573 else
574 cpp_error (pfile, CPP_DL_ERROR,
575 "macro \"%s\" passed %u arguments, but takes just %u",
576 NODE_NAME (node), argc, macro->paramc);
578 return false;
581 /* Reads and returns the arguments to a function-like macro
582 invocation. Assumes the opening parenthesis has been processed.
583 If there is an error, emits an appropriate diagnostic and returns
584 NULL. Each argument is terminated by a CPP_EOF token, for the
585 future benefit of expand_arg(). If there are any deferred
586 #pragma directives among macro arguments, store pointers to the
587 CPP_PRAGMA ... CPP_PRAGMA_EOL tokens into *PRAGMA_BUFF buffer. */
588 static _cpp_buff *
589 collect_args (cpp_reader *pfile, const cpp_hashnode *node,
590 _cpp_buff **pragma_buff)
592 _cpp_buff *buff, *base_buff;
593 cpp_macro *macro;
594 macro_arg *args, *arg;
595 const cpp_token *token;
596 unsigned int argc;
598 macro = node->value.macro;
599 if (macro->paramc)
600 argc = macro->paramc;
601 else
602 argc = 1;
603 buff = _cpp_get_buff (pfile, argc * (50 * sizeof (cpp_token *)
604 + sizeof (macro_arg)));
605 base_buff = buff;
606 args = (macro_arg *) buff->base;
607 memset (args, 0, argc * sizeof (macro_arg));
608 buff->cur = (unsigned char *) &args[argc];
609 arg = args, argc = 0;
611 /* Collect the tokens making up each argument. We don't yet know
612 how many arguments have been supplied, whether too many or too
613 few. Hence the slightly bizarre usage of "argc" and "arg". */
616 unsigned int paren_depth = 0;
617 unsigned int ntokens = 0;
619 argc++;
620 arg->first = (const cpp_token **) buff->cur;
622 for (;;)
624 /* Require space for 2 new tokens (including a CPP_EOF). */
625 if ((unsigned char *) &arg->first[ntokens + 2] > buff->limit)
627 buff = _cpp_append_extend_buff (pfile, buff,
628 1000 * sizeof (cpp_token *));
629 arg->first = (const cpp_token **) buff->cur;
632 token = cpp_get_token (pfile);
634 if (token->type == CPP_PADDING)
636 /* Drop leading padding. */
637 if (ntokens == 0)
638 continue;
640 else if (token->type == CPP_OPEN_PAREN)
641 paren_depth++;
642 else if (token->type == CPP_CLOSE_PAREN)
644 if (paren_depth-- == 0)
645 break;
647 else if (token->type == CPP_COMMA)
649 /* A comma does not terminate an argument within
650 parentheses or as part of a variable argument. */
651 if (paren_depth == 0
652 && ! (macro->variadic && argc == macro->paramc))
653 break;
655 else if (token->type == CPP_EOF
656 || (token->type == CPP_HASH && token->flags & BOL))
657 break;
658 else if (token->type == CPP_PRAGMA)
660 cpp_token *newtok = _cpp_temp_token (pfile);
662 /* CPP_PRAGMA token lives in directive_result, which will
663 be overwritten on the next directive. */
664 *newtok = *token;
665 token = newtok;
668 if (*pragma_buff == NULL
669 || BUFF_ROOM (*pragma_buff) < sizeof (cpp_token *))
671 _cpp_buff *next;
672 if (*pragma_buff == NULL)
673 *pragma_buff
674 = _cpp_get_buff (pfile, 32 * sizeof (cpp_token *));
675 else
677 next = *pragma_buff;
678 *pragma_buff
679 = _cpp_get_buff (pfile,
680 (BUFF_FRONT (*pragma_buff)
681 - (*pragma_buff)->base) * 2);
682 (*pragma_buff)->next = next;
685 *(const cpp_token **) BUFF_FRONT (*pragma_buff) = token;
686 BUFF_FRONT (*pragma_buff) += sizeof (cpp_token *);
687 if (token->type == CPP_PRAGMA_EOL)
688 break;
689 token = cpp_get_token (pfile);
691 while (token->type != CPP_EOF);
693 /* In deferred pragmas parsing_args and prevent_expansion
694 had been changed, reset it. */
695 pfile->state.parsing_args = 2;
696 pfile->state.prevent_expansion = 1;
698 if (token->type == CPP_EOF)
699 break;
700 else
701 continue;
704 arg->first[ntokens++] = token;
707 /* Drop trailing padding. */
708 while (ntokens > 0 && arg->first[ntokens - 1]->type == CPP_PADDING)
709 ntokens--;
711 arg->count = ntokens;
712 arg->first[ntokens] = &pfile->eof;
714 /* Terminate the argument. Excess arguments loop back and
715 overwrite the final legitimate argument, before failing. */
716 if (argc <= macro->paramc)
718 buff->cur = (unsigned char *) &arg->first[ntokens + 1];
719 if (argc != macro->paramc)
720 arg++;
723 while (token->type != CPP_CLOSE_PAREN && token->type != CPP_EOF);
725 if (token->type == CPP_EOF)
727 /* We still need the CPP_EOF to end directives, and to end
728 pre-expansion of a macro argument. Step back is not
729 unconditional, since we don't want to return a CPP_EOF to our
730 callers at the end of an -include-d file. */
731 if (pfile->context->prev || pfile->state.in_directive)
732 _cpp_backup_tokens (pfile, 1);
733 cpp_error (pfile, CPP_DL_ERROR,
734 "unterminated argument list invoking macro \"%s\"",
735 NODE_NAME (node));
737 else
739 /* A single empty argument is counted as no argument. */
740 if (argc == 1 && macro->paramc == 0 && args[0].count == 0)
741 argc = 0;
742 if (_cpp_arguments_ok (pfile, macro, node, argc))
744 /* GCC has special semantics for , ## b where b is a varargs
745 parameter: we remove the comma if b was omitted entirely.
746 If b was merely an empty argument, the comma is retained.
747 If the macro takes just one (varargs) parameter, then we
748 retain the comma only if we are standards conforming.
750 If FIRST is NULL replace_args () swallows the comma. */
751 if (macro->variadic && (argc < macro->paramc
752 || (argc == 1 && args[0].count == 0
753 && !CPP_OPTION (pfile, std))))
754 args[macro->paramc - 1].first = NULL;
755 return base_buff;
759 /* An error occurred. */
760 _cpp_release_buff (pfile, base_buff);
761 return NULL;
764 /* Search for an opening parenthesis to the macro of NODE, in such a
765 way that, if none is found, we don't lose the information in any
766 intervening padding tokens. If we find the parenthesis, collect
767 the arguments and return the buffer containing them. PRAGMA_BUFF
768 argument is the same as in collect_args. */
769 static _cpp_buff *
770 funlike_invocation_p (cpp_reader *pfile, cpp_hashnode *node,
771 _cpp_buff **pragma_buff)
773 const cpp_token *token, *padding = NULL;
775 for (;;)
777 token = cpp_get_token (pfile);
778 if (token->type != CPP_PADDING)
779 break;
780 if (padding == NULL
781 || (!(padding->flags & PREV_WHITE) && token->val.source == NULL))
782 padding = token;
785 if (token->type == CPP_OPEN_PAREN)
787 pfile->state.parsing_args = 2;
788 return collect_args (pfile, node, pragma_buff);
791 /* CPP_EOF can be the end of macro arguments, or the end of the
792 file. We mustn't back up over the latter. Ugh. */
793 if (token->type != CPP_EOF || token == &pfile->eof)
795 /* Back up. We may have skipped padding, in which case backing
796 up more than one token when expanding macros is in general
797 too difficult. We re-insert it in its own context. */
798 _cpp_backup_tokens (pfile, 1);
799 if (padding)
800 _cpp_push_token_context (pfile, NULL, padding, 1);
803 return NULL;
806 /* Return the real number of tokens in the expansion of MACRO. */
807 static inline unsigned int
808 macro_real_token_count (const cpp_macro *macro)
810 unsigned int i;
811 if (__builtin_expect (!macro->extra_tokens, true))
812 return macro->count;
813 for (i = 0; i < macro->count; i++)
814 if (macro->exp.tokens[i].type == CPP_PASTE)
815 return i;
816 abort ();
819 /* Push the context of a macro with hash entry NODE onto the context
820 stack. If we can successfully expand the macro, we push a context
821 containing its yet-to-be-rescanned replacement list and return one.
822 If there were additionally any unexpanded deferred #pragma directives
823 among macro arguments, push another context containing the
824 pragma tokens before the yet-to-be-rescanned replacement list
825 and return two. Otherwise, we don't push a context and return zero. */
826 static int
827 enter_macro_context (cpp_reader *pfile, cpp_hashnode *node,
828 const cpp_token *result)
830 /* The presence of a macro invalidates a file's controlling macro. */
831 pfile->mi_valid = false;
833 pfile->state.angled_headers = false;
835 if ((node->flags & NODE_BUILTIN) && !(node->flags & NODE_USED))
837 node->flags |= NODE_USED;
838 if ((!pfile->cb.user_builtin_macro
839 || !pfile->cb.user_builtin_macro (pfile, node))
840 && pfile->cb.used_define)
841 pfile->cb.used_define (pfile, pfile->directive_line, node);
844 /* Handle standard macros. */
845 if (! (node->flags & NODE_BUILTIN))
847 cpp_macro *macro = node->value.macro;
848 _cpp_buff *pragma_buff = NULL;
850 if (macro->fun_like)
852 _cpp_buff *buff;
854 pfile->state.prevent_expansion++;
855 pfile->keep_tokens++;
856 pfile->state.parsing_args = 1;
857 buff = funlike_invocation_p (pfile, node, &pragma_buff);
858 pfile->state.parsing_args = 0;
859 pfile->keep_tokens--;
860 pfile->state.prevent_expansion--;
862 if (buff == NULL)
864 if (CPP_WTRADITIONAL (pfile) && ! node->value.macro->syshdr)
865 cpp_warning (pfile, CPP_W_TRADITIONAL,
866 "function-like macro \"%s\" must be used with arguments in traditional C",
867 NODE_NAME (node));
869 if (pragma_buff)
870 _cpp_release_buff (pfile, pragma_buff);
872 return 0;
875 if (macro->paramc > 0)
876 replace_args (pfile, node, macro, (macro_arg *) buff->base);
877 _cpp_release_buff (pfile, buff);
880 /* Disable the macro within its expansion. */
881 node->flags |= NODE_DISABLED;
883 node->expanded_to_text = 1;
885 if (!(node->flags & NODE_USED))
887 node->flags |= NODE_USED;
888 if (pfile->cb.used_define)
889 pfile->cb.used_define (pfile, pfile->directive_line, node);
892 if (pfile->cb.used)
893 pfile->cb.used (pfile, result->src_loc, node);
895 macro->used = 1;
897 if (macro->paramc == 0)
898 _cpp_push_token_context (pfile, node, macro->exp.tokens,
899 macro_real_token_count (macro));
901 if (pragma_buff)
903 if (!pfile->state.in_directive)
904 _cpp_push_token_context (pfile, NULL,
905 padding_token (pfile, result), 1);
908 _cpp_buff *tail = pragma_buff->next;
909 pragma_buff->next = NULL;
910 push_ptoken_context (pfile, NULL, pragma_buff,
911 (const cpp_token **) pragma_buff->base,
912 ((const cpp_token **) BUFF_FRONT (pragma_buff)
913 - (const cpp_token **) pragma_buff->base));
914 pragma_buff = tail;
916 while (pragma_buff != NULL);
917 return 2;
920 return 1;
923 /* Handle built-in macros and the _Pragma operator. */
924 return builtin_macro (pfile, node);
927 /* Replace the parameters in a function-like macro of NODE with the
928 actual ARGS, and place the result in a newly pushed token context.
929 Expand each argument before replacing, unless it is operated upon
930 by the # or ## operators. */
931 static void
932 replace_args (cpp_reader *pfile, cpp_hashnode *node, cpp_macro *macro, macro_arg *args)
934 unsigned int i, total;
935 const cpp_token *src, *limit;
936 const cpp_token **dest, **first;
937 macro_arg *arg;
938 _cpp_buff *buff;
939 unsigned int count;
941 /* First, fully macro-expand arguments, calculating the number of
942 tokens in the final expansion as we go. The ordering of the if
943 statements below is subtle; we must handle stringification before
944 pasting. */
945 count = macro_real_token_count (macro);
946 total = count;
947 limit = macro->exp.tokens + count;
949 for (src = macro->exp.tokens; src < limit; src++)
950 if (src->type == CPP_MACRO_ARG)
952 /* Leading and trailing padding tokens. */
953 total += 2;
955 /* We have an argument. If it is not being stringified or
956 pasted it is macro-replaced before insertion. */
957 arg = &args[src->val.macro_arg.arg_no - 1];
959 if (src->flags & STRINGIFY_ARG)
961 if (!arg->stringified)
962 arg->stringified = stringify_arg (pfile, arg);
964 else if ((src->flags & PASTE_LEFT)
965 || (src > macro->exp.tokens && (src[-1].flags & PASTE_LEFT)))
966 total += arg->count - 1;
967 else
969 if (!arg->expanded)
970 expand_arg (pfile, arg);
971 total += arg->expanded_count - 1;
975 /* Now allocate space for the expansion, copy the tokens and replace
976 the arguments. */
977 buff = _cpp_get_buff (pfile, total * sizeof (cpp_token *));
978 first = (const cpp_token **) buff->base;
979 dest = first;
981 for (src = macro->exp.tokens; src < limit; src++)
983 unsigned int count;
984 const cpp_token **from, **paste_flag;
986 if (src->type != CPP_MACRO_ARG)
988 *dest++ = src;
989 continue;
992 paste_flag = 0;
993 arg = &args[src->val.macro_arg.arg_no - 1];
994 if (src->flags & STRINGIFY_ARG)
995 count = 1, from = &arg->stringified;
996 else if (src->flags & PASTE_LEFT)
997 count = arg->count, from = arg->first;
998 else if (src != macro->exp.tokens && (src[-1].flags & PASTE_LEFT))
1000 count = arg->count, from = arg->first;
1001 if (dest != first)
1003 if (dest[-1]->type == CPP_COMMA
1004 && macro->variadic
1005 && src->val.macro_arg.arg_no == macro->paramc)
1007 /* Swallow a pasted comma if from == NULL, otherwise
1008 drop the paste flag. */
1009 if (from == NULL)
1010 dest--;
1011 else
1012 paste_flag = dest - 1;
1014 /* Remove the paste flag if the RHS is a placemarker. */
1015 else if (count == 0)
1016 paste_flag = dest - 1;
1019 else
1020 count = arg->expanded_count, from = arg->expanded;
1022 /* Padding on the left of an argument (unless RHS of ##). */
1023 if ((!pfile->state.in_directive || pfile->state.directive_wants_padding)
1024 && src != macro->exp.tokens && !(src[-1].flags & PASTE_LEFT))
1025 *dest++ = padding_token (pfile, src);
1027 if (count)
1029 memcpy (dest, from, count * sizeof (cpp_token *));
1030 dest += count;
1032 /* With a non-empty argument on the LHS of ##, the last
1033 token should be flagged PASTE_LEFT. */
1034 if (src->flags & PASTE_LEFT)
1035 paste_flag = dest - 1;
1037 else if (CPP_PEDANTIC (pfile) && ! macro->syshdr
1038 && ! CPP_OPTION (pfile, c99)
1039 && ! cpp_in_system_header (pfile))
1041 cpp_error (pfile, CPP_DL_PEDWARN,
1042 "invoking macro %s argument %d: "
1043 "empty macro arguments are undefined"
1044 " in ISO C90 and ISO C++98",
1045 NODE_NAME (node),
1046 src->val.macro_arg.arg_no);
1049 /* Avoid paste on RHS (even case count == 0). */
1050 if (!pfile->state.in_directive && !(src->flags & PASTE_LEFT))
1051 *dest++ = &pfile->avoid_paste;
1053 /* Add a new paste flag, or remove an unwanted one. */
1054 if (paste_flag)
1056 cpp_token *token = _cpp_temp_token (pfile);
1057 token->type = (*paste_flag)->type;
1058 token->val = (*paste_flag)->val;
1059 if (src->flags & PASTE_LEFT)
1060 token->flags = (*paste_flag)->flags | PASTE_LEFT;
1061 else
1062 token->flags = (*paste_flag)->flags & ~PASTE_LEFT;
1063 *paste_flag = token;
1067 /* Free the expanded arguments. */
1068 for (i = 0; i < macro->paramc; i++)
1069 free (args[i].expanded);
1071 push_ptoken_context (pfile, node, buff, first, dest - first);
1074 /* Return a special padding token, with padding inherited from SOURCE. */
1075 static const cpp_token *
1076 padding_token (cpp_reader *pfile, const cpp_token *source)
1078 cpp_token *result = _cpp_temp_token (pfile);
1080 result->type = CPP_PADDING;
1082 /* Data in GCed data structures cannot be made const so far, so we
1083 need a cast here. */
1084 result->val.source = (cpp_token *) source;
1085 result->flags = 0;
1086 return result;
1089 /* Get a new uninitialized context. Create a new one if we cannot
1090 re-use an old one. */
1091 static cpp_context *
1092 next_context (cpp_reader *pfile)
1094 cpp_context *result = pfile->context->next;
1096 if (result == 0)
1098 result = XNEW (cpp_context);
1099 result->prev = pfile->context;
1100 result->next = 0;
1101 pfile->context->next = result;
1104 pfile->context = result;
1105 return result;
1108 /* Push a list of pointers to tokens. */
1109 static void
1110 push_ptoken_context (cpp_reader *pfile, cpp_hashnode *macro, _cpp_buff *buff,
1111 const cpp_token **first, unsigned int count)
1113 cpp_context *context = next_context (pfile);
1115 context->direct_p = false;
1116 context->macro = macro;
1117 context->buff = buff;
1118 FIRST (context).ptoken = first;
1119 LAST (context).ptoken = first + count;
1122 /* Push a list of tokens. */
1123 void
1124 _cpp_push_token_context (cpp_reader *pfile, cpp_hashnode *macro,
1125 const cpp_token *first, unsigned int count)
1127 cpp_context *context = next_context (pfile);
1129 context->direct_p = true;
1130 context->macro = macro;
1131 context->buff = NULL;
1132 FIRST (context).token = first;
1133 LAST (context).token = first + count;
1136 /* Push a traditional macro's replacement text. */
1137 void
1138 _cpp_push_text_context (cpp_reader *pfile, cpp_hashnode *macro,
1139 const uchar *start, size_t len)
1141 cpp_context *context = next_context (pfile);
1143 context->direct_p = true;
1144 context->macro = macro;
1145 context->buff = NULL;
1146 CUR (context) = start;
1147 RLIMIT (context) = start + len;
1148 macro->flags |= NODE_DISABLED;
1151 /* Expand an argument ARG before replacing parameters in a
1152 function-like macro. This works by pushing a context with the
1153 argument's tokens, and then expanding that into a temporary buffer
1154 as if it were a normal part of the token stream. collect_args()
1155 has terminated the argument's tokens with a CPP_EOF so that we know
1156 when we have fully expanded the argument. */
1157 static void
1158 expand_arg (cpp_reader *pfile, macro_arg *arg)
1160 unsigned int capacity;
1161 bool saved_warn_trad;
1163 if (arg->count == 0)
1164 return;
1166 /* Don't warn about funlike macros when pre-expanding. */
1167 saved_warn_trad = CPP_WTRADITIONAL (pfile);
1168 CPP_WTRADITIONAL (pfile) = 0;
1170 /* Loop, reading in the arguments. */
1171 capacity = 256;
1172 arg->expanded = XNEWVEC (const cpp_token *, capacity);
1174 push_ptoken_context (pfile, NULL, NULL, arg->first, arg->count + 1);
1175 for (;;)
1177 const cpp_token *token;
1179 if (arg->expanded_count + 1 >= capacity)
1181 capacity *= 2;
1182 arg->expanded = XRESIZEVEC (const cpp_token *, arg->expanded,
1183 capacity);
1186 token = cpp_get_token (pfile);
1188 if (token->type == CPP_EOF)
1189 break;
1191 arg->expanded[arg->expanded_count++] = token;
1194 _cpp_pop_context (pfile);
1196 CPP_WTRADITIONAL (pfile) = saved_warn_trad;
1199 /* Pop the current context off the stack, re-enabling the macro if the
1200 context represented a macro's replacement list. The context
1201 structure is not freed so that we can re-use it later. */
1202 void
1203 _cpp_pop_context (cpp_reader *pfile)
1205 cpp_context *context = pfile->context;
1207 if (context->macro)
1208 context->macro->flags &= ~NODE_DISABLED;
1210 if (context->buff)
1211 _cpp_release_buff (pfile, context->buff);
1213 pfile->context = context->prev;
1216 /* External routine to get a token. Also used nearly everywhere
1217 internally, except for places where we know we can safely call
1218 _cpp_lex_token directly, such as lexing a directive name.
1220 Macro expansions and directives are transparently handled,
1221 including entering included files. Thus tokens are post-macro
1222 expansion, and after any intervening directives. External callers
1223 see CPP_EOF only at EOF. Internal callers also see it when meeting
1224 a directive inside a macro call, when at the end of a directive and
1225 state.in_directive is still 1, and at the end of argument
1226 pre-expansion. */
1227 const cpp_token *
1228 cpp_get_token (cpp_reader *pfile)
1230 const cpp_token *result;
1231 bool can_set = pfile->set_invocation_location;
1232 pfile->set_invocation_location = false;
1234 for (;;)
1236 cpp_hashnode *node;
1237 cpp_context *context = pfile->context;
1239 /* Context->prev == 0 <=> base context. */
1240 if (!context->prev)
1241 result = _cpp_lex_token (pfile);
1242 else if (FIRST (context).token != LAST (context).token)
1244 if (context->direct_p)
1245 result = FIRST (context).token++;
1246 else
1247 result = *FIRST (context).ptoken++;
1249 if (result->flags & PASTE_LEFT)
1251 paste_all_tokens (pfile, result);
1252 if (pfile->state.in_directive)
1253 continue;
1254 return padding_token (pfile, result);
1257 else
1259 _cpp_pop_context (pfile);
1260 if (pfile->state.in_directive)
1261 continue;
1262 return &pfile->avoid_paste;
1265 if (pfile->state.in_directive && result->type == CPP_COMMENT)
1266 continue;
1268 if (result->type != CPP_NAME)
1269 break;
1271 node = result->val.node.node;
1272 node->expanded_to_text = 1;
1274 if (node->type != NT_MACRO || (result->flags & NO_EXPAND))
1275 break;
1277 if (!(node->flags & NODE_DISABLED))
1279 int ret = 0;
1280 /* If not in a macro context, and we're going to start an
1281 expansion, record the location. */
1282 if (can_set && !context->macro)
1283 pfile->invocation_location = result->src_loc;
1284 if (pfile->state.prevent_expansion)
1285 break;
1287 /* Conditional macros require that a predicate be evaluated
1288 first. */
1289 if ((node->flags & NODE_CONDITIONAL) != 0)
1291 if (pfile->cb.macro_to_expand)
1293 bool whitespace_after;
1294 const cpp_token *peek_tok = cpp_peek_token (pfile, 0);
1296 whitespace_after = (peek_tok->type == CPP_PADDING
1297 || (peek_tok->flags & PREV_WHITE));
1298 node = pfile->cb.macro_to_expand (pfile, result);
1299 if (node)
1300 ret = enter_macro_context (pfile, node, result);
1301 else if (whitespace_after)
1303 /* If macro_to_expand hook returned NULL and it
1304 ate some tokens, see if we don't need to add
1305 a padding token in between this and the
1306 next token. */
1307 peek_tok = cpp_peek_token (pfile, 0);
1308 if (peek_tok->type != CPP_PADDING
1309 && (peek_tok->flags & PREV_WHITE) == 0)
1310 _cpp_push_token_context (pfile, NULL,
1311 padding_token (pfile,
1312 peek_tok), 1);
1316 else
1317 ret = enter_macro_context (pfile, node, result);
1318 if (ret)
1320 if (pfile->state.in_directive || ret == 2)
1321 continue;
1322 return padding_token (pfile, result);
1325 else
1327 /* Flag this token as always unexpandable. FIXME: move this
1328 to collect_args()?. */
1329 cpp_token *t = _cpp_temp_token (pfile);
1330 t->type = result->type;
1331 t->flags = result->flags | NO_EXPAND;
1332 t->val = result->val;
1333 result = t;
1336 break;
1339 return result;
1342 /* Like cpp_get_token, but also returns a location separate from the
1343 one provided by the returned token. LOC is an out parameter; *LOC
1344 is set to the location "as expected by the user". This matters
1345 when a token results from macro expansion -- the token's location
1346 will indicate where the macro is defined, but *LOC will be the
1347 location of the start of the expansion. */
1348 const cpp_token *
1349 cpp_get_token_with_location (cpp_reader *pfile, source_location *loc)
1351 const cpp_token *result;
1353 pfile->set_invocation_location = true;
1354 result = cpp_get_token (pfile);
1355 if (pfile->context->macro)
1356 *loc = pfile->invocation_location;
1357 else
1358 *loc = result->src_loc;
1360 return result;
1363 /* Returns true if we're expanding an object-like macro that was
1364 defined in a system header. Just checks the macro at the top of
1365 the stack. Used for diagnostic suppression. */
1367 cpp_sys_macro_p (cpp_reader *pfile)
1369 cpp_hashnode *node = pfile->context->macro;
1371 return node && node->value.macro && node->value.macro->syshdr;
1374 /* Read each token in, until end of the current file. Directives are
1375 transparently processed. */
1376 void
1377 cpp_scan_nooutput (cpp_reader *pfile)
1379 /* Request a CPP_EOF token at the end of this file, rather than
1380 transparently continuing with the including file. */
1381 pfile->buffer->return_at_eof = true;
1383 pfile->state.discarding_output++;
1384 pfile->state.prevent_expansion++;
1386 if (CPP_OPTION (pfile, traditional))
1387 while (_cpp_read_logical_line_trad (pfile))
1389 else
1390 while (cpp_get_token (pfile)->type != CPP_EOF)
1393 pfile->state.discarding_output--;
1394 pfile->state.prevent_expansion--;
1397 /* Step back one or more tokens obtained from the lexer. */
1398 void
1399 _cpp_backup_tokens_direct (cpp_reader *pfile, unsigned int count)
1401 pfile->lookaheads += count;
1402 while (count--)
1404 pfile->cur_token--;
1405 if (pfile->cur_token == pfile->cur_run->base
1406 /* Possible with -fpreprocessed and no leading #line. */
1407 && pfile->cur_run->prev != NULL)
1409 pfile->cur_run = pfile->cur_run->prev;
1410 pfile->cur_token = pfile->cur_run->limit;
1415 /* Step back one (or more) tokens. Can only step back more than 1 if
1416 they are from the lexer, and not from macro expansion. */
1417 void
1418 _cpp_backup_tokens (cpp_reader *pfile, unsigned int count)
1420 if (pfile->context->prev == NULL)
1421 _cpp_backup_tokens_direct (pfile, count);
1422 else
1424 if (count != 1)
1425 abort ();
1426 if (pfile->context->direct_p)
1427 FIRST (pfile->context).token--;
1428 else
1429 FIRST (pfile->context).ptoken--;
1433 /* #define directive parsing and handling. */
1435 /* Returns nonzero if a macro redefinition warning is required. */
1436 static bool
1437 warn_of_redefinition (cpp_reader *pfile, cpp_hashnode *node,
1438 const cpp_macro *macro2)
1440 const cpp_macro *macro1;
1441 unsigned int i;
1443 /* Some redefinitions need to be warned about regardless. */
1444 if (node->flags & NODE_WARN)
1445 return true;
1447 /* Suppress warnings for builtins that lack the NODE_WARN flag. */
1448 if (node->flags & NODE_BUILTIN)
1450 if (!pfile->cb.user_builtin_macro
1451 || !pfile->cb.user_builtin_macro (pfile, node))
1452 return false;
1455 /* Redefinitions of conditional (context-sensitive) macros, on
1456 the other hand, must be allowed silently. */
1457 if (node->flags & NODE_CONDITIONAL)
1458 return false;
1460 /* Redefinition of a macro is allowed if and only if the old and new
1461 definitions are the same. (6.10.3 paragraph 2). */
1462 macro1 = node->value.macro;
1464 /* Don't check count here as it can be different in valid
1465 traditional redefinitions with just whitespace differences. */
1466 if (macro1->paramc != macro2->paramc
1467 || macro1->fun_like != macro2->fun_like
1468 || macro1->variadic != macro2->variadic)
1469 return true;
1471 /* Check parameter spellings. */
1472 for (i = 0; i < macro1->paramc; i++)
1473 if (macro1->params[i] != macro2->params[i])
1474 return true;
1476 /* Check the replacement text or tokens. */
1477 if (CPP_OPTION (pfile, traditional))
1478 return _cpp_expansions_different_trad (macro1, macro2);
1480 if (macro1->count != macro2->count)
1481 return true;
1483 for (i = 0; i < macro1->count; i++)
1484 if (!_cpp_equiv_tokens (&macro1->exp.tokens[i], &macro2->exp.tokens[i]))
1485 return true;
1487 return false;
1490 /* Free the definition of hashnode H. */
1491 void
1492 _cpp_free_definition (cpp_hashnode *h)
1494 /* Macros and assertions no longer have anything to free. */
1495 h->type = NT_VOID;
1496 /* Clear builtin flag in case of redefinition. */
1497 h->flags &= ~(NODE_BUILTIN | NODE_DISABLED | NODE_USED);
1500 /* Save parameter NODE to the parameter list of macro MACRO. Returns
1501 zero on success, nonzero if the parameter is a duplicate. */
1502 bool
1503 _cpp_save_parameter (cpp_reader *pfile, cpp_macro *macro, cpp_hashnode *node)
1505 unsigned int len;
1506 /* Constraint 6.10.3.6 - duplicate parameter names. */
1507 if (node->flags & NODE_MACRO_ARG)
1509 cpp_error (pfile, CPP_DL_ERROR, "duplicate macro parameter \"%s\"",
1510 NODE_NAME (node));
1511 return true;
1514 if (BUFF_ROOM (pfile->a_buff)
1515 < (macro->paramc + 1) * sizeof (cpp_hashnode *))
1516 _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_hashnode *));
1518 ((cpp_hashnode **) BUFF_FRONT (pfile->a_buff))[macro->paramc++] = node;
1519 node->flags |= NODE_MACRO_ARG;
1520 len = macro->paramc;
1521 if (len > pfile->param_buffer_len)
1523 pfile->param_buffer = XRESIZEVEC (union _cpp_hashnode_value,
1524 pfile->param_buffer, len);
1525 pfile->param_buffer_len = len;
1527 pfile->param_buffer[macro->paramc - 1] = node->value;
1529 node->value.arg_index = macro->paramc;
1530 return false;
1533 /* Check the syntax of the parameters in a MACRO definition. Returns
1534 false if an error occurs. */
1535 static bool
1536 parse_params (cpp_reader *pfile, cpp_macro *macro)
1538 unsigned int prev_ident = 0;
1540 for (;;)
1542 const cpp_token *token = _cpp_lex_token (pfile);
1544 switch (token->type)
1546 default:
1547 /* Allow/ignore comments in parameter lists if we are
1548 preserving comments in macro expansions. */
1549 if (token->type == CPP_COMMENT
1550 && ! CPP_OPTION (pfile, discard_comments_in_macro_exp))
1551 continue;
1553 cpp_error (pfile, CPP_DL_ERROR,
1554 "\"%s\" may not appear in macro parameter list",
1555 cpp_token_as_text (pfile, token));
1556 return false;
1558 case CPP_NAME:
1559 if (prev_ident)
1561 cpp_error (pfile, CPP_DL_ERROR,
1562 "macro parameters must be comma-separated");
1563 return false;
1565 prev_ident = 1;
1567 if (_cpp_save_parameter (pfile, macro, token->val.node.node))
1568 return false;
1569 continue;
1571 case CPP_CLOSE_PAREN:
1572 if (prev_ident || macro->paramc == 0)
1573 return true;
1575 /* Fall through to pick up the error. */
1576 case CPP_COMMA:
1577 if (!prev_ident)
1579 cpp_error (pfile, CPP_DL_ERROR, "parameter name missing");
1580 return false;
1582 prev_ident = 0;
1583 continue;
1585 case CPP_ELLIPSIS:
1586 macro->variadic = 1;
1587 if (!prev_ident)
1589 _cpp_save_parameter (pfile, macro,
1590 pfile->spec_nodes.n__VA_ARGS__);
1591 pfile->state.va_args_ok = 1;
1592 if (! CPP_OPTION (pfile, c99)
1593 && CPP_OPTION (pfile, cpp_pedantic)
1594 && CPP_OPTION (pfile, warn_variadic_macros))
1595 cpp_pedwarning
1596 (pfile, CPP_W_VARIADIC_MACROS,
1597 "anonymous variadic macros were introduced in C99");
1599 else if (CPP_OPTION (pfile, cpp_pedantic)
1600 && CPP_OPTION (pfile, warn_variadic_macros))
1601 cpp_pedwarning (pfile, CPP_W_VARIADIC_MACROS,
1602 "ISO C does not permit named variadic macros");
1604 /* We're at the end, and just expect a closing parenthesis. */
1605 token = _cpp_lex_token (pfile);
1606 if (token->type == CPP_CLOSE_PAREN)
1607 return true;
1608 /* Fall through. */
1610 case CPP_EOF:
1611 cpp_error (pfile, CPP_DL_ERROR, "missing ')' in macro parameter list");
1612 return false;
1617 /* Allocate room for a token from a macro's replacement list. */
1618 static cpp_token *
1619 alloc_expansion_token (cpp_reader *pfile, cpp_macro *macro)
1621 if (BUFF_ROOM (pfile->a_buff) < (macro->count + 1) * sizeof (cpp_token))
1622 _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_token));
1624 return &((cpp_token *) BUFF_FRONT (pfile->a_buff))[macro->count++];
1627 /* Lex a token from the expansion of MACRO, but mark parameters as we
1628 find them and warn of traditional stringification. */
1629 static cpp_token *
1630 lex_expansion_token (cpp_reader *pfile, cpp_macro *macro)
1632 cpp_token *token, *saved_cur_token;
1634 saved_cur_token = pfile->cur_token;
1635 pfile->cur_token = alloc_expansion_token (pfile, macro);
1636 token = _cpp_lex_direct (pfile);
1637 pfile->cur_token = saved_cur_token;
1639 /* Is this a parameter? */
1640 if (token->type == CPP_NAME
1641 && (token->val.node.node->flags & NODE_MACRO_ARG) != 0)
1643 token->type = CPP_MACRO_ARG;
1644 token->val.macro_arg.arg_no = token->val.node.node->value.arg_index;
1646 else if (CPP_WTRADITIONAL (pfile) && macro->paramc > 0
1647 && (token->type == CPP_STRING || token->type == CPP_CHAR))
1648 check_trad_stringification (pfile, macro, &token->val.str);
1650 return token;
1653 static bool
1654 create_iso_definition (cpp_reader *pfile, cpp_macro *macro)
1656 cpp_token *token;
1657 const cpp_token *ctoken;
1658 bool following_paste_op = false;
1659 const char *paste_op_error_msg =
1660 N_("'##' cannot appear at either end of a macro expansion");
1661 unsigned int num_extra_tokens = 0;
1663 /* Get the first token of the expansion (or the '(' of a
1664 function-like macro). */
1665 ctoken = _cpp_lex_token (pfile);
1667 if (ctoken->type == CPP_OPEN_PAREN && !(ctoken->flags & PREV_WHITE))
1669 bool ok = parse_params (pfile, macro);
1670 macro->params = (cpp_hashnode **) BUFF_FRONT (pfile->a_buff);
1671 if (!ok)
1672 return false;
1674 /* Success. Commit or allocate the parameter array. */
1675 if (pfile->hash_table->alloc_subobject)
1677 cpp_hashnode **params =
1678 (cpp_hashnode **) pfile->hash_table->alloc_subobject
1679 (sizeof (cpp_hashnode *) * macro->paramc);
1680 memcpy (params, macro->params,
1681 sizeof (cpp_hashnode *) * macro->paramc);
1682 macro->params = params;
1684 else
1685 BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->params[macro->paramc];
1686 macro->fun_like = 1;
1688 else if (ctoken->type != CPP_EOF && !(ctoken->flags & PREV_WHITE))
1690 /* While ISO C99 requires whitespace before replacement text
1691 in a macro definition, ISO C90 with TC1 allows there characters
1692 from the basic source character set. */
1693 if (CPP_OPTION (pfile, c99))
1694 cpp_error (pfile, CPP_DL_PEDWARN,
1695 "ISO C99 requires whitespace after the macro name");
1696 else
1698 int warntype = CPP_DL_WARNING;
1699 switch (ctoken->type)
1701 case CPP_ATSIGN:
1702 case CPP_AT_NAME:
1703 case CPP_OBJC_STRING:
1704 /* '@' is not in basic character set. */
1705 warntype = CPP_DL_PEDWARN;
1706 break;
1707 case CPP_OTHER:
1708 /* Basic character set sans letters, digits and _. */
1709 if (strchr ("!\"#%&'()*+,-./:;<=>?[\\]^{|}~",
1710 ctoken->val.str.text[0]) == NULL)
1711 warntype = CPP_DL_PEDWARN;
1712 break;
1713 default:
1714 /* All other tokens start with a character from basic
1715 character set. */
1716 break;
1718 cpp_error (pfile, warntype,
1719 "missing whitespace after the macro name");
1723 if (macro->fun_like)
1724 token = lex_expansion_token (pfile, macro);
1725 else
1727 token = alloc_expansion_token (pfile, macro);
1728 *token = *ctoken;
1731 for (;;)
1733 /* Check the stringifying # constraint 6.10.3.2.1 of
1734 function-like macros when lexing the subsequent token. */
1735 if (macro->count > 1 && token[-1].type == CPP_HASH && macro->fun_like)
1737 if (token->type == CPP_MACRO_ARG)
1739 if (token->flags & PREV_WHITE)
1740 token->flags |= SP_PREV_WHITE;
1741 if (token[-1].flags & DIGRAPH)
1742 token->flags |= SP_DIGRAPH;
1743 token->flags &= ~PREV_WHITE;
1744 token->flags |= STRINGIFY_ARG;
1745 token->flags |= token[-1].flags & PREV_WHITE;
1746 token[-1] = token[0];
1747 macro->count--;
1749 /* Let assembler get away with murder. */
1750 else if (CPP_OPTION (pfile, lang) != CLK_ASM)
1752 cpp_error (pfile, CPP_DL_ERROR,
1753 "'#' is not followed by a macro parameter");
1754 return false;
1758 if (token->type == CPP_EOF)
1760 /* Paste operator constraint 6.10.3.3.1:
1761 Token-paste ##, can appear in both object-like and
1762 function-like macros, but not at the end. */
1763 if (following_paste_op)
1765 cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
1766 return false;
1768 break;
1771 /* Paste operator constraint 6.10.3.3.1. */
1772 if (token->type == CPP_PASTE)
1774 /* Token-paste ##, can appear in both object-like and
1775 function-like macros, but not at the beginning. */
1776 if (macro->count == 1)
1778 cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
1779 return false;
1782 if (token[-1].flags & PASTE_LEFT)
1784 macro->extra_tokens = 1;
1785 num_extra_tokens++;
1786 token->val.token_no = macro->count - 1;
1788 else
1790 --macro->count;
1791 token[-1].flags |= PASTE_LEFT;
1792 if (token->flags & DIGRAPH)
1793 token[-1].flags |= SP_DIGRAPH;
1794 if (token->flags & PREV_WHITE)
1795 token[-1].flags |= SP_PREV_WHITE;
1799 following_paste_op = (token->type == CPP_PASTE);
1800 token = lex_expansion_token (pfile, macro);
1803 macro->exp.tokens = (cpp_token *) BUFF_FRONT (pfile->a_buff);
1804 macro->traditional = 0;
1806 /* Don't count the CPP_EOF. */
1807 macro->count--;
1809 /* Clear whitespace on first token for warn_of_redefinition(). */
1810 if (macro->count)
1811 macro->exp.tokens[0].flags &= ~PREV_WHITE;
1813 /* Commit or allocate the memory. */
1814 if (pfile->hash_table->alloc_subobject)
1816 cpp_token *tokns =
1817 (cpp_token *) pfile->hash_table->alloc_subobject (sizeof (cpp_token)
1818 * macro->count);
1819 if (num_extra_tokens)
1821 /* Place second and subsequent ## or %:%: tokens in
1822 sequences of consecutive such tokens at the end of the
1823 list to preserve information about where they appear, how
1824 they are spelt and whether they are preceded by
1825 whitespace without otherwise interfering with macro
1826 expansion. */
1827 cpp_token *normal_dest = tokns;
1828 cpp_token *extra_dest = tokns + macro->count - num_extra_tokens;
1829 unsigned int i;
1830 for (i = 0; i < macro->count; i++)
1832 if (macro->exp.tokens[i].type == CPP_PASTE)
1833 *extra_dest++ = macro->exp.tokens[i];
1834 else
1835 *normal_dest++ = macro->exp.tokens[i];
1838 else
1839 memcpy (tokns, macro->exp.tokens, sizeof (cpp_token) * macro->count);
1840 macro->exp.tokens = tokns;
1842 else
1843 BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->exp.tokens[macro->count];
1845 return true;
1848 /* Parse a macro and save its expansion. Returns nonzero on success. */
1849 bool
1850 _cpp_create_definition (cpp_reader *pfile, cpp_hashnode *node)
1852 cpp_macro *macro;
1853 unsigned int i;
1854 bool ok;
1856 if (pfile->hash_table->alloc_subobject)
1857 macro = (cpp_macro *) pfile->hash_table->alloc_subobject
1858 (sizeof (cpp_macro));
1859 else
1860 macro = (cpp_macro *) _cpp_aligned_alloc (pfile, sizeof (cpp_macro));
1861 macro->line = pfile->directive_line;
1862 macro->params = 0;
1863 macro->paramc = 0;
1864 macro->variadic = 0;
1865 macro->used = !CPP_OPTION (pfile, warn_unused_macros);
1866 macro->count = 0;
1867 macro->fun_like = 0;
1868 macro->extra_tokens = 0;
1869 /* To suppress some diagnostics. */
1870 macro->syshdr = pfile->buffer && pfile->buffer->sysp != 0;
1872 if (CPP_OPTION (pfile, traditional))
1873 ok = _cpp_create_trad_definition (pfile, macro);
1874 else
1876 ok = create_iso_definition (pfile, macro);
1878 /* We set the type for SEEN_EOL() in directives.c.
1880 Longer term we should lex the whole line before coming here,
1881 and just copy the expansion. */
1883 /* Stop the lexer accepting __VA_ARGS__. */
1884 pfile->state.va_args_ok = 0;
1887 /* Clear the fast argument lookup indices. */
1888 for (i = macro->paramc; i-- > 0; )
1890 struct cpp_hashnode *node = macro->params[i];
1891 node->flags &= ~ NODE_MACRO_ARG;
1892 node->value = pfile->param_buffer[i];
1895 if (!ok)
1896 return ok;
1898 if (node->type == NT_MACRO)
1900 if (CPP_OPTION (pfile, warn_unused_macros))
1901 _cpp_warn_if_unused_macro (pfile, node, NULL);
1903 if (warn_of_redefinition (pfile, node, macro))
1905 const int reason = (node->flags & NODE_BUILTIN)
1906 ? CPP_W_BUILTIN_MACRO_REDEFINED : CPP_W_NONE;
1907 bool warned;
1909 warned = cpp_pedwarning_with_line (pfile, reason,
1910 pfile->directive_line, 0,
1911 "\"%s\" redefined",
1912 NODE_NAME (node));
1914 if (warned && node->type == NT_MACRO && !(node->flags & NODE_BUILTIN))
1915 cpp_error_with_line (pfile, CPP_DL_NOTE,
1916 node->value.macro->line, 0,
1917 "this is the location of the previous definition");
1921 if (node->type != NT_VOID)
1922 _cpp_free_definition (node);
1924 /* Enter definition in hash table. */
1925 node->type = NT_MACRO;
1926 node->value.macro = macro;
1927 if (! ustrncmp (NODE_NAME (node), DSC ("__STDC_"))
1928 && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_FORMAT_MACROS")
1929 /* __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS are mentioned
1930 in the C standard, as something that one must use in C++.
1931 However DR#593 indicates that these aren't actually mentioned
1932 in the C++ standard. We special-case them anyway. */
1933 && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_LIMIT_MACROS")
1934 && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_CONSTANT_MACROS"))
1935 node->flags |= NODE_WARN;
1937 /* If user defines one of the conditional macros, remove the
1938 conditional flag */
1939 node->flags &= ~NODE_CONDITIONAL;
1941 return ok;
1944 /* Warn if a token in STRING matches one of a function-like MACRO's
1945 parameters. */
1946 static void
1947 check_trad_stringification (cpp_reader *pfile, const cpp_macro *macro,
1948 const cpp_string *string)
1950 unsigned int i, len;
1951 const uchar *p, *q, *limit;
1953 /* Loop over the string. */
1954 limit = string->text + string->len - 1;
1955 for (p = string->text + 1; p < limit; p = q)
1957 /* Find the start of an identifier. */
1958 while (p < limit && !is_idstart (*p))
1959 p++;
1961 /* Find the end of the identifier. */
1962 q = p;
1963 while (q < limit && is_idchar (*q))
1964 q++;
1966 len = q - p;
1968 /* Loop over the function macro arguments to see if the
1969 identifier inside the string matches one of them. */
1970 for (i = 0; i < macro->paramc; i++)
1972 const cpp_hashnode *node = macro->params[i];
1974 if (NODE_LEN (node) == len
1975 && !memcmp (p, NODE_NAME (node), len))
1977 cpp_error (pfile, CPP_DL_WARNING,
1978 "macro argument \"%s\" would be stringified in traditional C",
1979 NODE_NAME (node));
1980 break;
1986 /* Returns the name, arguments and expansion of a macro, in a format
1987 suitable to be read back in again, and therefore also for DWARF 2
1988 debugging info. e.g. "PASTE(X, Y) X ## Y", or "MACNAME EXPANSION".
1989 Caller is expected to generate the "#define" bit if needed. The
1990 returned text is temporary, and automatically freed later. */
1991 const unsigned char *
1992 cpp_macro_definition (cpp_reader *pfile, cpp_hashnode *node)
1994 unsigned int i, len;
1995 const cpp_macro *macro;
1996 unsigned char *buffer;
1998 if (node->type != NT_MACRO || (node->flags & NODE_BUILTIN))
2000 if (node->type != NT_MACRO
2001 || !pfile->cb.user_builtin_macro
2002 || !pfile->cb.user_builtin_macro (pfile, node))
2004 cpp_error (pfile, CPP_DL_ICE,
2005 "invalid hash type %d in cpp_macro_definition",
2006 node->type);
2007 return 0;
2011 macro = node->value.macro;
2012 /* Calculate length. */
2013 len = NODE_LEN (node) + 2; /* ' ' and NUL. */
2014 if (macro->fun_like)
2016 len += 4; /* "()" plus possible final ".." of named
2017 varargs (we have + 1 below). */
2018 for (i = 0; i < macro->paramc; i++)
2019 len += NODE_LEN (macro->params[i]) + 1; /* "," */
2022 /* This should match below where we fill in the buffer. */
2023 if (CPP_OPTION (pfile, traditional))
2024 len += _cpp_replacement_text_len (macro);
2025 else
2027 unsigned int count = macro_real_token_count (macro);
2028 for (i = 0; i < count; i++)
2030 cpp_token *token = &macro->exp.tokens[i];
2032 if (token->type == CPP_MACRO_ARG)
2033 len += NODE_LEN (macro->params[token->val.macro_arg.arg_no - 1]);
2034 else
2035 len += cpp_token_len (token);
2037 if (token->flags & STRINGIFY_ARG)
2038 len++; /* "#" */
2039 if (token->flags & PASTE_LEFT)
2040 len += 3; /* " ##" */
2041 if (token->flags & PREV_WHITE)
2042 len++; /* " " */
2046 if (len > pfile->macro_buffer_len)
2048 pfile->macro_buffer = XRESIZEVEC (unsigned char,
2049 pfile->macro_buffer, len);
2050 pfile->macro_buffer_len = len;
2053 /* Fill in the buffer. Start with the macro name. */
2054 buffer = pfile->macro_buffer;
2055 memcpy (buffer, NODE_NAME (node), NODE_LEN (node));
2056 buffer += NODE_LEN (node);
2058 /* Parameter names. */
2059 if (macro->fun_like)
2061 *buffer++ = '(';
2062 for (i = 0; i < macro->paramc; i++)
2064 cpp_hashnode *param = macro->params[i];
2066 if (param != pfile->spec_nodes.n__VA_ARGS__)
2068 memcpy (buffer, NODE_NAME (param), NODE_LEN (param));
2069 buffer += NODE_LEN (param);
2072 if (i + 1 < macro->paramc)
2073 /* Don't emit a space after the comma here; we're trying
2074 to emit a Dwarf-friendly definition, and the Dwarf spec
2075 forbids spaces in the argument list. */
2076 *buffer++ = ',';
2077 else if (macro->variadic)
2078 *buffer++ = '.', *buffer++ = '.', *buffer++ = '.';
2080 *buffer++ = ')';
2083 /* The Dwarf spec requires a space after the macro name, even if the
2084 definition is the empty string. */
2085 *buffer++ = ' ';
2087 if (CPP_OPTION (pfile, traditional))
2088 buffer = _cpp_copy_replacement_text (macro, buffer);
2089 else if (macro->count)
2090 /* Expansion tokens. */
2092 unsigned int count = macro_real_token_count (macro);
2093 for (i = 0; i < count; i++)
2095 cpp_token *token = &macro->exp.tokens[i];
2097 if (token->flags & PREV_WHITE)
2098 *buffer++ = ' ';
2099 if (token->flags & STRINGIFY_ARG)
2100 *buffer++ = '#';
2102 if (token->type == CPP_MACRO_ARG)
2104 memcpy (buffer,
2105 NODE_NAME (macro->params[token->val.macro_arg.arg_no - 1]),
2106 NODE_LEN (macro->params[token->val.macro_arg.arg_no - 1]));
2107 buffer += NODE_LEN (macro->params[token->val.macro_arg.arg_no - 1]);
2109 else
2110 buffer = cpp_spell_token (pfile, token, buffer, false);
2112 if (token->flags & PASTE_LEFT)
2114 *buffer++ = ' ';
2115 *buffer++ = '#';
2116 *buffer++ = '#';
2117 /* Next has PREV_WHITE; see _cpp_create_definition. */
2122 *buffer = '\0';
2123 return pfile->macro_buffer;