2016-03-02 Richard Biener <rguenther@suse.de>
[official-gcc.git] / libcpp / macro.c
blobcfb09ceaddddbb28c1b0d4dc69c1fb26adb58eb7
1 /* Part of CPP library. (Macro and #define handling.)
2 Copyright (C) 1986-2016 Free Software Foundation, Inc.
3 Written by Per Bothner, 1994.
4 Based on CCCP program by Paul Rubin, June 1986
5 Adapted to ANSI C, Richard Stallman, Jan 1987
7 This program is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3, or (at your option) any
10 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; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>.
21 In other words, you are welcome to use, share and improve this program.
22 You are forbidden to forbid anyone else to use, share and improve
23 what you give them. Help stamp out software-hoarding! */
25 #include "config.h"
26 #include "system.h"
27 #include "cpplib.h"
28 #include "internal.h"
30 typedef struct macro_arg macro_arg;
31 /* This structure represents the tokens of a macro argument. These
32 tokens can be macro themselves, in which case they can be either
33 expanded or unexpanded. When they are expanded, this data
34 structure keeps both the expanded and unexpanded forms. */
35 struct macro_arg
37 const cpp_token **first; /* First token in unexpanded argument. */
38 const cpp_token **expanded; /* Macro-expanded argument. */
39 const cpp_token *stringified; /* Stringified argument. */
40 unsigned int count; /* # of tokens in argument. */
41 unsigned int expanded_count; /* # of tokens in expanded argument. */
42 source_location *virt_locs; /* Where virtual locations for
43 unexpanded tokens are stored. */
44 source_location *expanded_virt_locs; /* Where virtual locations for
45 expanded tokens are
46 stored. */
49 /* The kind of macro tokens which the instance of
50 macro_arg_token_iter is supposed to iterate over. */
51 enum macro_arg_token_kind {
52 MACRO_ARG_TOKEN_NORMAL,
53 /* This is a macro argument token that got transformed into a string
54 litteral, e.g. #foo. */
55 MACRO_ARG_TOKEN_STRINGIFIED,
56 /* This is a token resulting from the expansion of a macro
57 argument that was itself a macro. */
58 MACRO_ARG_TOKEN_EXPANDED
61 /* An iterator over tokens coming from a function-like macro
62 argument. */
63 typedef struct macro_arg_token_iter macro_arg_token_iter;
64 struct macro_arg_token_iter
66 /* Whether or not -ftrack-macro-expansion is used. */
67 bool track_macro_exp_p;
68 /* The kind of token over which we are supposed to iterate. */
69 enum macro_arg_token_kind kind;
70 /* A pointer to the current token pointed to by the iterator. */
71 const cpp_token **token_ptr;
72 /* A pointer to the "full" location of the current token. If
73 -ftrack-macro-expansion is used this location tracks loci across
74 macro expansion. */
75 const source_location *location_ptr;
76 #if CHECKING_P
77 /* The number of times the iterator went forward. This useful only
78 when checking is enabled. */
79 size_t num_forwards;
80 #endif
83 /* Saved data about an identifier being used as a macro argument
84 name. */
85 struct macro_arg_saved_data {
86 /* The canonical (UTF-8) spelling of this identifier. */
87 cpp_hashnode *canonical_node;
88 /* The previous value of this identifier. */
89 union _cpp_hashnode_value value;
92 /* Macro expansion. */
94 static int enter_macro_context (cpp_reader *, cpp_hashnode *,
95 const cpp_token *, source_location);
96 static int builtin_macro (cpp_reader *, cpp_hashnode *, source_location);
97 static void push_ptoken_context (cpp_reader *, cpp_hashnode *, _cpp_buff *,
98 const cpp_token **, unsigned int);
99 static void push_extended_tokens_context (cpp_reader *, cpp_hashnode *,
100 _cpp_buff *, source_location *,
101 const cpp_token **, unsigned int);
102 static _cpp_buff *collect_args (cpp_reader *, const cpp_hashnode *,
103 _cpp_buff **, unsigned *);
104 static cpp_context *next_context (cpp_reader *);
105 static const cpp_token *padding_token (cpp_reader *, const cpp_token *);
106 static void expand_arg (cpp_reader *, macro_arg *);
107 static const cpp_token *new_string_token (cpp_reader *, uchar *, unsigned int);
108 static const cpp_token *stringify_arg (cpp_reader *, macro_arg *);
109 static void paste_all_tokens (cpp_reader *, const cpp_token *);
110 static bool paste_tokens (cpp_reader *, source_location,
111 const cpp_token **, const cpp_token *);
112 static void alloc_expanded_arg_mem (cpp_reader *, macro_arg *, size_t);
113 static void ensure_expanded_arg_room (cpp_reader *, macro_arg *, size_t, size_t *);
114 static void delete_macro_args (_cpp_buff*, unsigned num_args);
115 static void set_arg_token (macro_arg *, const cpp_token *,
116 source_location, size_t,
117 enum macro_arg_token_kind,
118 bool);
119 static const source_location *get_arg_token_location (const macro_arg *,
120 enum macro_arg_token_kind);
121 static const cpp_token **arg_token_ptr_at (const macro_arg *,
122 size_t,
123 enum macro_arg_token_kind,
124 source_location **virt_location);
126 static void macro_arg_token_iter_init (macro_arg_token_iter *, bool,
127 enum macro_arg_token_kind,
128 const macro_arg *,
129 const cpp_token **);
130 static const cpp_token *macro_arg_token_iter_get_token
131 (const macro_arg_token_iter *it);
132 static source_location macro_arg_token_iter_get_location
133 (const macro_arg_token_iter *);
134 static void macro_arg_token_iter_forward (macro_arg_token_iter *);
135 static _cpp_buff *tokens_buff_new (cpp_reader *, size_t,
136 source_location **);
137 static size_t tokens_buff_count (_cpp_buff *);
138 static const cpp_token **tokens_buff_last_token_ptr (_cpp_buff *);
139 static inline const cpp_token **tokens_buff_put_token_to (const cpp_token **,
140 source_location *,
141 const cpp_token *,
142 source_location,
143 source_location,
144 const line_map_macro *,
145 unsigned int);
147 static const cpp_token **tokens_buff_add_token (_cpp_buff *,
148 source_location *,
149 const cpp_token *,
150 source_location,
151 source_location,
152 const line_map_macro *,
153 unsigned int);
154 static inline void tokens_buff_remove_last_token (_cpp_buff *);
155 static void replace_args (cpp_reader *, cpp_hashnode *, cpp_macro *,
156 macro_arg *, source_location);
157 static _cpp_buff *funlike_invocation_p (cpp_reader *, cpp_hashnode *,
158 _cpp_buff **, unsigned *);
159 static bool create_iso_definition (cpp_reader *, cpp_macro *);
161 /* #define directive parsing and handling. */
163 static cpp_token *alloc_expansion_token (cpp_reader *, cpp_macro *);
164 static cpp_token *lex_expansion_token (cpp_reader *, cpp_macro *);
165 static bool warn_of_redefinition (cpp_reader *, cpp_hashnode *,
166 const cpp_macro *);
167 static bool parse_params (cpp_reader *, cpp_macro *);
168 static void check_trad_stringification (cpp_reader *, const cpp_macro *,
169 const cpp_string *);
170 static bool reached_end_of_context (cpp_context *);
171 static void consume_next_token_from_context (cpp_reader *pfile,
172 const cpp_token **,
173 source_location *);
174 static const cpp_token* cpp_get_token_1 (cpp_reader *, source_location *);
176 static cpp_hashnode* macro_of_context (cpp_context *context);
178 static bool in_macro_expansion_p (cpp_reader *pfile);
180 /* Statistical counter tracking the number of macros that got
181 expanded. */
182 unsigned num_expanded_macros_counter = 0;
183 /* Statistical counter tracking the total number tokens resulting
184 from macro expansion. */
185 unsigned num_macro_tokens_counter = 0;
187 /* Emits a warning if NODE is a macro defined in the main file that
188 has not been used. */
190 _cpp_warn_if_unused_macro (cpp_reader *pfile, cpp_hashnode *node,
191 void *v ATTRIBUTE_UNUSED)
193 if (node->type == NT_MACRO && !(node->flags & NODE_BUILTIN))
195 cpp_macro *macro = node->value.macro;
197 if (!macro->used
198 && MAIN_FILE_P (linemap_check_ordinary
199 (linemap_lookup (pfile->line_table,
200 macro->line))))
201 cpp_warning_with_line (pfile, CPP_W_UNUSED_MACROS, macro->line, 0,
202 "macro \"%s\" is not used", NODE_NAME (node));
205 return 1;
208 /* Allocates and returns a CPP_STRING token, containing TEXT of length
209 LEN, after null-terminating it. TEXT must be in permanent storage. */
210 static const cpp_token *
211 new_string_token (cpp_reader *pfile, unsigned char *text, unsigned int len)
213 cpp_token *token = _cpp_temp_token (pfile);
215 text[len] = '\0';
216 token->type = CPP_STRING;
217 token->val.str.len = len;
218 token->val.str.text = text;
219 token->flags = 0;
220 return token;
223 static const char * const monthnames[] =
225 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
226 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
229 /* Helper function for builtin_macro. Returns the text generated by
230 a builtin macro. */
231 const uchar *
232 _cpp_builtin_macro_text (cpp_reader *pfile, cpp_hashnode *node)
234 const uchar *result = NULL;
235 linenum_type number = 1;
237 switch (node->value.builtin)
239 default:
240 cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
241 NODE_NAME (node));
242 break;
244 case BT_TIMESTAMP:
246 if (CPP_OPTION (pfile, warn_date_time))
247 cpp_warning (pfile, CPP_W_DATE_TIME, "macro \"%s\" might prevent "
248 "reproducible builds", NODE_NAME (node));
250 cpp_buffer *pbuffer = cpp_get_buffer (pfile);
251 if (pbuffer->timestamp == NULL)
253 /* Initialize timestamp value of the assotiated file. */
254 struct _cpp_file *file = cpp_get_file (pbuffer);
255 if (file)
257 /* Generate __TIMESTAMP__ string, that represents
258 the date and time of the last modification
259 of the current source file. The string constant
260 looks like "Sun Sep 16 01:03:52 1973". */
261 struct tm *tb = NULL;
262 struct stat *st = _cpp_get_file_stat (file);
263 if (st)
264 tb = localtime (&st->st_mtime);
265 if (tb)
267 char *str = asctime (tb);
268 size_t len = strlen (str);
269 unsigned char *buf = _cpp_unaligned_alloc (pfile, len + 2);
270 buf[0] = '"';
271 strcpy ((char *) buf + 1, str);
272 buf[len] = '"';
273 pbuffer->timestamp = buf;
275 else
277 cpp_errno (pfile, CPP_DL_WARNING,
278 "could not determine file timestamp");
279 pbuffer->timestamp = UC"\"??? ??? ?? ??:??:?? ????\"";
283 result = pbuffer->timestamp;
285 break;
286 case BT_FILE:
287 case BT_BASE_FILE:
289 unsigned int len;
290 const char *name;
291 uchar *buf;
293 if (node->value.builtin == BT_FILE)
294 name = linemap_get_expansion_filename (pfile->line_table,
295 pfile->line_table->highest_line);
296 else
298 name = _cpp_get_file_name (pfile->main_file);
299 if (!name)
300 abort ();
302 len = strlen (name);
303 buf = _cpp_unaligned_alloc (pfile, len * 2 + 3);
304 result = buf;
305 *buf = '"';
306 buf = cpp_quote_string (buf + 1, (const unsigned char *) name, len);
307 *buf++ = '"';
308 *buf = '\0';
310 break;
312 case BT_INCLUDE_LEVEL:
313 /* The line map depth counts the primary source as level 1, but
314 historically __INCLUDE_DEPTH__ has called the primary source
315 level 0. */
316 number = pfile->line_table->depth - 1;
317 break;
319 case BT_SPECLINE:
320 /* If __LINE__ is embedded in a macro, it must expand to the
321 line of the macro's invocation, not its definition.
322 Otherwise things like assert() will not work properly. */
323 number = linemap_get_expansion_line (pfile->line_table,
324 CPP_OPTION (pfile, traditional)
325 ? pfile->line_table->highest_line
326 : pfile->cur_token[-1].src_loc);
327 break;
329 /* __STDC__ has the value 1 under normal circumstances.
330 However, if (a) we are in a system header, (b) the option
331 stdc_0_in_system_headers is true (set by target config), and
332 (c) we are not in strictly conforming mode, then it has the
333 value 0. (b) and (c) are already checked in cpp_init_builtins. */
334 case BT_STDC:
335 if (cpp_in_system_header (pfile))
336 number = 0;
337 else
338 number = 1;
339 break;
341 case BT_DATE:
342 case BT_TIME:
343 if (CPP_OPTION (pfile, warn_date_time))
344 cpp_warning (pfile, CPP_W_DATE_TIME, "macro \"%s\" might prevent "
345 "reproducible builds", NODE_NAME (node));
346 if (pfile->date == NULL)
348 /* Allocate __DATE__ and __TIME__ strings from permanent
349 storage. We only do this once, and don't generate them
350 at init time, because time() and localtime() are very
351 slow on some systems. */
352 time_t tt;
353 struct tm *tb = NULL;
355 /* (time_t) -1 is a legitimate value for "number of seconds
356 since the Epoch", so we have to do a little dance to
357 distinguish that from a genuine error. */
358 errno = 0;
359 tt = time(NULL);
360 if (tt != (time_t)-1 || errno == 0)
361 tb = localtime (&tt);
363 if (tb)
365 pfile->date = _cpp_unaligned_alloc (pfile,
366 sizeof ("\"Oct 11 1347\""));
367 sprintf ((char *) pfile->date, "\"%s %2d %4d\"",
368 monthnames[tb->tm_mon], tb->tm_mday,
369 tb->tm_year + 1900);
371 pfile->time = _cpp_unaligned_alloc (pfile,
372 sizeof ("\"12:34:56\""));
373 sprintf ((char *) pfile->time, "\"%02d:%02d:%02d\"",
374 tb->tm_hour, tb->tm_min, tb->tm_sec);
376 else
378 cpp_errno (pfile, CPP_DL_WARNING,
379 "could not determine date and time");
381 pfile->date = UC"\"??? ?? ????\"";
382 pfile->time = UC"\"??:??:??\"";
386 if (node->value.builtin == BT_DATE)
387 result = pfile->date;
388 else
389 result = pfile->time;
390 break;
392 case BT_COUNTER:
393 if (CPP_OPTION (pfile, directives_only) && pfile->state.in_directive)
394 cpp_error (pfile, CPP_DL_ERROR,
395 "__COUNTER__ expanded inside directive with -fdirectives-only");
396 number = pfile->counter++;
397 break;
399 case BT_HAS_ATTRIBUTE:
400 number = pfile->cb.has_attribute (pfile);
401 break;
404 if (result == NULL)
406 /* 21 bytes holds all NUL-terminated unsigned 64-bit numbers. */
407 result = _cpp_unaligned_alloc (pfile, 21);
408 sprintf ((char *) result, "%u", number);
411 return result;
414 /* Convert builtin macros like __FILE__ to a token and push it on the
415 context stack. Also handles _Pragma, for which a new token may not
416 be created. Returns 1 if it generates a new token context, 0 to
417 return the token to the caller. LOC is the location of the expansion
418 point of the macro. */
419 static int
420 builtin_macro (cpp_reader *pfile, cpp_hashnode *node, source_location loc)
422 const uchar *buf;
423 size_t len;
424 char *nbuf;
426 if (node->value.builtin == BT_PRAGMA)
428 /* Don't interpret _Pragma within directives. The standard is
429 not clear on this, but to me this makes most sense. */
430 if (pfile->state.in_directive)
431 return 0;
433 return _cpp_do__Pragma (pfile, loc);
436 buf = _cpp_builtin_macro_text (pfile, node);
437 len = ustrlen (buf);
438 nbuf = (char *) alloca (len + 1);
439 memcpy (nbuf, buf, len);
440 nbuf[len]='\n';
442 cpp_push_buffer (pfile, (uchar *) nbuf, len, /* from_stage3 */ true);
443 _cpp_clean_line (pfile);
445 /* Set pfile->cur_token as required by _cpp_lex_direct. */
446 pfile->cur_token = _cpp_temp_token (pfile);
447 cpp_token *token = _cpp_lex_direct (pfile);
448 /* We should point to the expansion point of the builtin macro. */
449 token->src_loc = loc;
450 if (pfile->context->tokens_kind == TOKENS_KIND_EXTENDED)
452 /* We are tracking tokens resulting from macro expansion.
453 Create a macro line map and generate a virtual location for
454 the token resulting from the expansion of the built-in
455 macro. */
456 source_location *virt_locs = NULL;
457 _cpp_buff *token_buf = tokens_buff_new (pfile, 1, &virt_locs);
458 const line_map_macro * map =
459 linemap_enter_macro (pfile->line_table, node,
460 token->src_loc, 1);
461 tokens_buff_add_token (token_buf, virt_locs, token,
462 pfile->line_table->builtin_location,
463 pfile->line_table->builtin_location,
464 map, /*macro_token_index=*/0);
465 push_extended_tokens_context (pfile, node, token_buf, virt_locs,
466 (const cpp_token **)token_buf->base,
469 else
470 _cpp_push_token_context (pfile, NULL, token, 1);
471 if (pfile->buffer->cur != pfile->buffer->rlimit)
472 cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
473 NODE_NAME (node));
474 _cpp_pop_buffer (pfile);
476 return 1;
479 /* Copies SRC, of length LEN, to DEST, adding backslashes before all
480 backslashes and double quotes. DEST must be of sufficient size.
481 Returns a pointer to the end of the string. */
482 uchar *
483 cpp_quote_string (uchar *dest, const uchar *src, unsigned int len)
485 while (len--)
487 uchar c = *src++;
489 if (c == '\\' || c == '"')
491 *dest++ = '\\';
492 *dest++ = c;
494 else
495 *dest++ = c;
498 return dest;
501 /* Convert a token sequence ARG to a single string token according to
502 the rules of the ISO C #-operator. */
503 static const cpp_token *
504 stringify_arg (cpp_reader *pfile, macro_arg *arg)
506 unsigned char *dest;
507 unsigned int i, escape_it, backslash_count = 0;
508 const cpp_token *source = NULL;
509 size_t len;
511 if (BUFF_ROOM (pfile->u_buff) < 3)
512 _cpp_extend_buff (pfile, &pfile->u_buff, 3);
513 dest = BUFF_FRONT (pfile->u_buff);
514 *dest++ = '"';
516 /* Loop, reading in the argument's tokens. */
517 for (i = 0; i < arg->count; i++)
519 const cpp_token *token = arg->first[i];
521 if (token->type == CPP_PADDING)
523 if (source == NULL
524 || (!(source->flags & PREV_WHITE)
525 && token->val.source == NULL))
526 source = token->val.source;
527 continue;
530 escape_it = (token->type == CPP_STRING || token->type == CPP_CHAR
531 || token->type == CPP_WSTRING || token->type == CPP_WCHAR
532 || token->type == CPP_STRING32 || token->type == CPP_CHAR32
533 || token->type == CPP_STRING16 || token->type == CPP_CHAR16
534 || token->type == CPP_UTF8STRING || token->type == CPP_UTF8CHAR
535 || cpp_userdef_string_p (token->type)
536 || cpp_userdef_char_p (token->type));
538 /* Room for each char being written in octal, initial space and
539 final quote and NUL. */
540 len = cpp_token_len (token);
541 if (escape_it)
542 len *= 4;
543 len += 3;
545 if ((size_t) (BUFF_LIMIT (pfile->u_buff) - dest) < len)
547 size_t len_so_far = dest - BUFF_FRONT (pfile->u_buff);
548 _cpp_extend_buff (pfile, &pfile->u_buff, len);
549 dest = BUFF_FRONT (pfile->u_buff) + len_so_far;
552 /* Leading white space? */
553 if (dest - 1 != BUFF_FRONT (pfile->u_buff))
555 if (source == NULL)
556 source = token;
557 if (source->flags & PREV_WHITE)
558 *dest++ = ' ';
560 source = NULL;
562 if (escape_it)
564 _cpp_buff *buff = _cpp_get_buff (pfile, len);
565 unsigned char *buf = BUFF_FRONT (buff);
566 len = cpp_spell_token (pfile, token, buf, true) - buf;
567 dest = cpp_quote_string (dest, buf, len);
568 _cpp_release_buff (pfile, buff);
570 else
571 dest = cpp_spell_token (pfile, token, dest, true);
573 if (token->type == CPP_OTHER && token->val.str.text[0] == '\\')
574 backslash_count++;
575 else
576 backslash_count = 0;
579 /* Ignore the final \ of invalid string literals. */
580 if (backslash_count & 1)
582 cpp_error (pfile, CPP_DL_WARNING,
583 "invalid string literal, ignoring final '\\'");
584 dest--;
587 /* Commit the memory, including NUL, and return the token. */
588 *dest++ = '"';
589 len = dest - BUFF_FRONT (pfile->u_buff);
590 BUFF_FRONT (pfile->u_buff) = dest + 1;
591 return new_string_token (pfile, dest - len, len);
594 /* Try to paste two tokens. On success, return nonzero. In any
595 case, PLHS is updated to point to the pasted token, which is
596 guaranteed to not have the PASTE_LEFT flag set. LOCATION is
597 the virtual location used for error reporting. */
598 static bool
599 paste_tokens (cpp_reader *pfile, source_location location,
600 const cpp_token **plhs, const cpp_token *rhs)
602 unsigned char *buf, *end, *lhsend;
603 cpp_token *lhs;
604 unsigned int len;
606 len = cpp_token_len (*plhs) + cpp_token_len (rhs) + 1;
607 buf = (unsigned char *) alloca (len);
608 end = lhsend = cpp_spell_token (pfile, *plhs, buf, true);
610 /* Avoid comment headers, since they are still processed in stage 3.
611 It is simpler to insert a space here, rather than modifying the
612 lexer to ignore comments in some circumstances. Simply returning
613 false doesn't work, since we want to clear the PASTE_LEFT flag. */
614 if ((*plhs)->type == CPP_DIV && rhs->type != CPP_EQ)
615 *end++ = ' ';
616 /* In one obscure case we might see padding here. */
617 if (rhs->type != CPP_PADDING)
618 end = cpp_spell_token (pfile, rhs, end, true);
619 *end = '\n';
621 cpp_push_buffer (pfile, buf, end - buf, /* from_stage3 */ true);
622 _cpp_clean_line (pfile);
624 /* Set pfile->cur_token as required by _cpp_lex_direct. */
625 pfile->cur_token = _cpp_temp_token (pfile);
626 lhs = _cpp_lex_direct (pfile);
627 if (pfile->buffer->cur != pfile->buffer->rlimit)
629 source_location saved_loc = lhs->src_loc;
631 _cpp_pop_buffer (pfile);
632 _cpp_backup_tokens (pfile, 1);
633 *lhsend = '\0';
635 /* We have to remove the PASTE_LEFT flag from the old lhs, but
636 we want to keep the new location. */
637 *lhs = **plhs;
638 *plhs = lhs;
639 lhs->src_loc = saved_loc;
640 lhs->flags &= ~PASTE_LEFT;
642 /* Mandatory error for all apart from assembler. */
643 if (CPP_OPTION (pfile, lang) != CLK_ASM)
644 cpp_error_with_line (pfile, CPP_DL_ERROR, location, 0,
645 "pasting \"%s\" and \"%s\" does not give a valid preprocessing token",
646 buf, cpp_token_as_text (pfile, rhs));
647 return false;
650 *plhs = lhs;
651 _cpp_pop_buffer (pfile);
652 return true;
655 /* Handles an arbitrarily long sequence of ## operators, with initial
656 operand LHS. This implementation is left-associative,
657 non-recursive, and finishes a paste before handling succeeding
658 ones. If a paste fails, we back up to the RHS of the failing ##
659 operator before pushing the context containing the result of prior
660 successful pastes, with the effect that the RHS appears in the
661 output stream after the pasted LHS normally. */
662 static void
663 paste_all_tokens (cpp_reader *pfile, const cpp_token *lhs)
665 const cpp_token *rhs = NULL;
666 cpp_context *context = pfile->context;
667 source_location virt_loc = 0;
669 /* We are expanding a macro and we must have been called on a token
670 that appears at the left hand side of a ## operator. */
671 if (macro_of_context (pfile->context) == NULL
672 || (!(lhs->flags & PASTE_LEFT)))
673 abort ();
675 if (context->tokens_kind == TOKENS_KIND_EXTENDED)
676 /* The caller must have called consume_next_token_from_context
677 right before calling us. That has incremented the pointer to
678 the current virtual location. So it now points to the location
679 of the token that comes right after *LHS. We want the
680 resulting pasted token to have the location of the current
681 *LHS, though. */
682 virt_loc = context->c.mc->cur_virt_loc[-1];
683 else
684 /* We are not tracking macro expansion. So the best virtual
685 location we can get here is the expansion point of the macro we
686 are currently expanding. */
687 virt_loc = pfile->invocation_location;
691 /* Take the token directly from the current context. We can do
692 this, because we are in the replacement list of either an
693 object-like macro, or a function-like macro with arguments
694 inserted. In either case, the constraints to #define
695 guarantee we have at least one more token. */
696 if (context->tokens_kind == TOKENS_KIND_DIRECT)
697 rhs = FIRST (context).token++;
698 else if (context->tokens_kind == TOKENS_KIND_INDIRECT)
699 rhs = *FIRST (context).ptoken++;
700 else if (context->tokens_kind == TOKENS_KIND_EXTENDED)
702 /* So we are in presence of an extended token context, which
703 means that each token in this context has a virtual
704 location attached to it. So let's not forget to update
705 the pointer to the current virtual location of the
706 current token when we update the pointer to the current
707 token */
709 rhs = *FIRST (context).ptoken++;
710 /* context->c.mc must be non-null, as if we were not in a
711 macro context, context->tokens_kind could not be equal to
712 TOKENS_KIND_EXTENDED. */
713 context->c.mc->cur_virt_loc++;
716 if (rhs->type == CPP_PADDING)
718 if (rhs->flags & PASTE_LEFT)
719 abort ();
721 if (!paste_tokens (pfile, virt_loc, &lhs, rhs))
722 break;
724 while (rhs->flags & PASTE_LEFT);
726 /* Put the resulting token in its own context. */
727 if (context->tokens_kind == TOKENS_KIND_EXTENDED)
729 source_location *virt_locs = NULL;
730 _cpp_buff *token_buf = tokens_buff_new (pfile, 1, &virt_locs);
731 tokens_buff_add_token (token_buf, virt_locs, lhs,
732 virt_loc, 0, NULL, 0);
733 push_extended_tokens_context (pfile, context->c.mc->macro_node,
734 token_buf, virt_locs,
735 (const cpp_token **)token_buf->base, 1);
737 else
738 _cpp_push_token_context (pfile, NULL, lhs, 1);
741 /* Returns TRUE if the number of arguments ARGC supplied in an
742 invocation of the MACRO referenced by NODE is valid. An empty
743 invocation to a macro with no parameters should pass ARGC as zero.
745 Note that MACRO cannot necessarily be deduced from NODE, in case
746 NODE was redefined whilst collecting arguments. */
747 bool
748 _cpp_arguments_ok (cpp_reader *pfile, cpp_macro *macro, const cpp_hashnode *node, unsigned int argc)
750 if (argc == macro->paramc)
751 return true;
753 if (argc < macro->paramc)
755 /* As an extension, variadic arguments are allowed to not appear in
756 the invocation at all.
757 e.g. #define debug(format, args...) something
758 debug("string");
760 This is exactly the same as if an empty variadic list had been
761 supplied - debug("string", ). */
763 if (argc + 1 == macro->paramc && macro->variadic)
765 if (CPP_PEDANTIC (pfile) && ! macro->syshdr)
767 if (CPP_OPTION (pfile, cplusplus))
768 cpp_error (pfile, CPP_DL_PEDWARN,
769 "ISO C++11 requires at least one argument "
770 "for the \"...\" in a variadic macro");
771 else
772 cpp_error (pfile, CPP_DL_PEDWARN,
773 "ISO C99 requires at least one argument "
774 "for the \"...\" in a variadic macro");
776 return true;
779 cpp_error (pfile, CPP_DL_ERROR,
780 "macro \"%s\" requires %u arguments, but only %u given",
781 NODE_NAME (node), macro->paramc, argc);
783 else
784 cpp_error (pfile, CPP_DL_ERROR,
785 "macro \"%s\" passed %u arguments, but takes just %u",
786 NODE_NAME (node), argc, macro->paramc);
788 return false;
791 /* Reads and returns the arguments to a function-like macro
792 invocation. Assumes the opening parenthesis has been processed.
793 If there is an error, emits an appropriate diagnostic and returns
794 NULL. Each argument is terminated by a CPP_EOF token, for the
795 future benefit of expand_arg(). If there are any deferred
796 #pragma directives among macro arguments, store pointers to the
797 CPP_PRAGMA ... CPP_PRAGMA_EOL tokens into *PRAGMA_BUFF buffer.
799 What is returned is the buffer that contains the memory allocated
800 to hold the macro arguments. NODE is the name of the macro this
801 function is dealing with. If NUM_ARGS is non-NULL, *NUM_ARGS is
802 set to the actual number of macro arguments allocated in the
803 returned buffer. */
804 static _cpp_buff *
805 collect_args (cpp_reader *pfile, const cpp_hashnode *node,
806 _cpp_buff **pragma_buff, unsigned *num_args)
808 _cpp_buff *buff, *base_buff;
809 cpp_macro *macro;
810 macro_arg *args, *arg;
811 const cpp_token *token;
812 unsigned int argc;
813 source_location virt_loc;
814 bool track_macro_expansion_p = CPP_OPTION (pfile, track_macro_expansion);
815 unsigned num_args_alloced = 0;
817 macro = node->value.macro;
818 if (macro->paramc)
819 argc = macro->paramc;
820 else
821 argc = 1;
823 #define DEFAULT_NUM_TOKENS_PER_MACRO_ARG 50
824 #define ARG_TOKENS_EXTENT 1000
826 buff = _cpp_get_buff (pfile, argc * (DEFAULT_NUM_TOKENS_PER_MACRO_ARG
827 * sizeof (cpp_token *)
828 + sizeof (macro_arg)));
829 base_buff = buff;
830 args = (macro_arg *) buff->base;
831 memset (args, 0, argc * sizeof (macro_arg));
832 buff->cur = (unsigned char *) &args[argc];
833 arg = args, argc = 0;
835 /* Collect the tokens making up each argument. We don't yet know
836 how many arguments have been supplied, whether too many or too
837 few. Hence the slightly bizarre usage of "argc" and "arg". */
840 unsigned int paren_depth = 0;
841 unsigned int ntokens = 0;
842 unsigned virt_locs_capacity = DEFAULT_NUM_TOKENS_PER_MACRO_ARG;
843 num_args_alloced++;
845 argc++;
846 arg->first = (const cpp_token **) buff->cur;
847 if (track_macro_expansion_p)
849 virt_locs_capacity = DEFAULT_NUM_TOKENS_PER_MACRO_ARG;
850 arg->virt_locs = XNEWVEC (source_location,
851 virt_locs_capacity);
854 for (;;)
856 /* Require space for 2 new tokens (including a CPP_EOF). */
857 if ((unsigned char *) &arg->first[ntokens + 2] > buff->limit)
859 buff = _cpp_append_extend_buff (pfile, buff,
860 ARG_TOKENS_EXTENT
861 * sizeof (cpp_token *));
862 arg->first = (const cpp_token **) buff->cur;
864 if (track_macro_expansion_p
865 && (ntokens + 2 > virt_locs_capacity))
867 virt_locs_capacity += ARG_TOKENS_EXTENT;
868 arg->virt_locs = XRESIZEVEC (source_location,
869 arg->virt_locs,
870 virt_locs_capacity);
873 token = cpp_get_token_1 (pfile, &virt_loc);
875 if (token->type == CPP_PADDING)
877 /* Drop leading padding. */
878 if (ntokens == 0)
879 continue;
881 else if (token->type == CPP_OPEN_PAREN)
882 paren_depth++;
883 else if (token->type == CPP_CLOSE_PAREN)
885 if (paren_depth-- == 0)
886 break;
888 else if (token->type == CPP_COMMA)
890 /* A comma does not terminate an argument within
891 parentheses or as part of a variable argument. */
892 if (paren_depth == 0
893 && ! (macro->variadic && argc == macro->paramc))
894 break;
896 else if (token->type == CPP_EOF
897 || (token->type == CPP_HASH && token->flags & BOL))
898 break;
899 else if (token->type == CPP_PRAGMA)
901 cpp_token *newtok = _cpp_temp_token (pfile);
903 /* CPP_PRAGMA token lives in directive_result, which will
904 be overwritten on the next directive. */
905 *newtok = *token;
906 token = newtok;
909 if (*pragma_buff == NULL
910 || BUFF_ROOM (*pragma_buff) < sizeof (cpp_token *))
912 _cpp_buff *next;
913 if (*pragma_buff == NULL)
914 *pragma_buff
915 = _cpp_get_buff (pfile, 32 * sizeof (cpp_token *));
916 else
918 next = *pragma_buff;
919 *pragma_buff
920 = _cpp_get_buff (pfile,
921 (BUFF_FRONT (*pragma_buff)
922 - (*pragma_buff)->base) * 2);
923 (*pragma_buff)->next = next;
926 *(const cpp_token **) BUFF_FRONT (*pragma_buff) = token;
927 BUFF_FRONT (*pragma_buff) += sizeof (cpp_token *);
928 if (token->type == CPP_PRAGMA_EOL)
929 break;
930 token = cpp_get_token_1 (pfile, &virt_loc);
932 while (token->type != CPP_EOF);
934 /* In deferred pragmas parsing_args and prevent_expansion
935 had been changed, reset it. */
936 pfile->state.parsing_args = 2;
937 pfile->state.prevent_expansion = 1;
939 if (token->type == CPP_EOF)
940 break;
941 else
942 continue;
944 set_arg_token (arg, token, virt_loc,
945 ntokens, MACRO_ARG_TOKEN_NORMAL,
946 CPP_OPTION (pfile, track_macro_expansion));
947 ntokens++;
950 /* Drop trailing padding. */
951 while (ntokens > 0 && arg->first[ntokens - 1]->type == CPP_PADDING)
952 ntokens--;
954 arg->count = ntokens;
955 set_arg_token (arg, &pfile->eof, pfile->eof.src_loc,
956 ntokens, MACRO_ARG_TOKEN_NORMAL,
957 CPP_OPTION (pfile, track_macro_expansion));
959 /* Terminate the argument. Excess arguments loop back and
960 overwrite the final legitimate argument, before failing. */
961 if (argc <= macro->paramc)
963 buff->cur = (unsigned char *) &arg->first[ntokens + 1];
964 if (argc != macro->paramc)
965 arg++;
968 while (token->type != CPP_CLOSE_PAREN && token->type != CPP_EOF);
970 if (token->type == CPP_EOF)
972 /* We still need the CPP_EOF to end directives, and to end
973 pre-expansion of a macro argument. Step back is not
974 unconditional, since we don't want to return a CPP_EOF to our
975 callers at the end of an -include-d file. */
976 if (pfile->context->prev || pfile->state.in_directive)
977 _cpp_backup_tokens (pfile, 1);
978 cpp_error (pfile, CPP_DL_ERROR,
979 "unterminated argument list invoking macro \"%s\"",
980 NODE_NAME (node));
982 else
984 /* A single empty argument is counted as no argument. */
985 if (argc == 1 && macro->paramc == 0 && args[0].count == 0)
986 argc = 0;
987 if (_cpp_arguments_ok (pfile, macro, node, argc))
989 /* GCC has special semantics for , ## b where b is a varargs
990 parameter: we remove the comma if b was omitted entirely.
991 If b was merely an empty argument, the comma is retained.
992 If the macro takes just one (varargs) parameter, then we
993 retain the comma only if we are standards conforming.
995 If FIRST is NULL replace_args () swallows the comma. */
996 if (macro->variadic && (argc < macro->paramc
997 || (argc == 1 && args[0].count == 0
998 && !CPP_OPTION (pfile, std))))
999 args[macro->paramc - 1].first = NULL;
1000 if (num_args)
1001 *num_args = num_args_alloced;
1002 return base_buff;
1006 /* An error occurred. */
1007 _cpp_release_buff (pfile, base_buff);
1008 return NULL;
1011 /* Search for an opening parenthesis to the macro of NODE, in such a
1012 way that, if none is found, we don't lose the information in any
1013 intervening padding tokens. If we find the parenthesis, collect
1014 the arguments and return the buffer containing them. PRAGMA_BUFF
1015 argument is the same as in collect_args. If NUM_ARGS is non-NULL,
1016 *NUM_ARGS is set to the number of arguments contained in the
1017 returned buffer. */
1018 static _cpp_buff *
1019 funlike_invocation_p (cpp_reader *pfile, cpp_hashnode *node,
1020 _cpp_buff **pragma_buff, unsigned *num_args)
1022 const cpp_token *token, *padding = NULL;
1024 for (;;)
1026 token = cpp_get_token (pfile);
1027 if (token->type != CPP_PADDING)
1028 break;
1029 if (padding == NULL
1030 || (!(padding->flags & PREV_WHITE) && token->val.source == NULL))
1031 padding = token;
1034 if (token->type == CPP_OPEN_PAREN)
1036 pfile->state.parsing_args = 2;
1037 return collect_args (pfile, node, pragma_buff, num_args);
1040 /* CPP_EOF can be the end of macro arguments, or the end of the
1041 file. We mustn't back up over the latter. Ugh. */
1042 if (token->type != CPP_EOF || token == &pfile->eof)
1044 /* Back up. We may have skipped padding, in which case backing
1045 up more than one token when expanding macros is in general
1046 too difficult. We re-insert it in its own context. */
1047 _cpp_backup_tokens (pfile, 1);
1048 if (padding)
1049 _cpp_push_token_context (pfile, NULL, padding, 1);
1052 return NULL;
1055 /* Return the real number of tokens in the expansion of MACRO. */
1056 static inline unsigned int
1057 macro_real_token_count (const cpp_macro *macro)
1059 unsigned int i;
1060 if (__builtin_expect (!macro->extra_tokens, true))
1061 return macro->count;
1062 for (i = 0; i < macro->count; i++)
1063 if (macro->exp.tokens[i].type == CPP_PASTE)
1064 return i;
1065 abort ();
1068 /* Push the context of a macro with hash entry NODE onto the context
1069 stack. If we can successfully expand the macro, we push a context
1070 containing its yet-to-be-rescanned replacement list and return one.
1071 If there were additionally any unexpanded deferred #pragma
1072 directives among macro arguments, push another context containing
1073 the pragma tokens before the yet-to-be-rescanned replacement list
1074 and return two. Otherwise, we don't push a context and return
1075 zero. LOCATION is the location of the expansion point of the
1076 macro. */
1077 static int
1078 enter_macro_context (cpp_reader *pfile, cpp_hashnode *node,
1079 const cpp_token *result, source_location location)
1081 /* The presence of a macro invalidates a file's controlling macro. */
1082 pfile->mi_valid = false;
1084 pfile->state.angled_headers = false;
1086 /* From here to when we push the context for the macro later down
1087 this function, we need to flag the fact that we are about to
1088 expand a macro. This is useful when -ftrack-macro-expansion is
1089 turned off. In that case, we need to record the location of the
1090 expansion point of the top-most macro we are about to to expand,
1091 into pfile->invocation_location. But we must not record any such
1092 location once the process of expanding the macro starts; that is,
1093 we must not do that recording between now and later down this
1094 function where set this flag to FALSE. */
1095 pfile->about_to_expand_macro_p = true;
1097 if ((node->flags & NODE_BUILTIN) && !(node->flags & NODE_USED))
1099 node->flags |= NODE_USED;
1100 if ((!pfile->cb.user_builtin_macro
1101 || !pfile->cb.user_builtin_macro (pfile, node))
1102 && pfile->cb.used_define)
1103 pfile->cb.used_define (pfile, pfile->directive_line, node);
1106 /* Handle standard macros. */
1107 if (! (node->flags & NODE_BUILTIN))
1109 cpp_macro *macro = node->value.macro;
1110 _cpp_buff *pragma_buff = NULL;
1112 if (macro->fun_like)
1114 _cpp_buff *buff;
1115 unsigned num_args = 0;
1117 pfile->state.prevent_expansion++;
1118 pfile->keep_tokens++;
1119 pfile->state.parsing_args = 1;
1120 buff = funlike_invocation_p (pfile, node, &pragma_buff,
1121 &num_args);
1122 pfile->state.parsing_args = 0;
1123 pfile->keep_tokens--;
1124 pfile->state.prevent_expansion--;
1126 if (buff == NULL)
1128 if (CPP_WTRADITIONAL (pfile) && ! node->value.macro->syshdr)
1129 cpp_warning (pfile, CPP_W_TRADITIONAL,
1130 "function-like macro \"%s\" must be used with arguments in traditional C",
1131 NODE_NAME (node));
1133 if (pragma_buff)
1134 _cpp_release_buff (pfile, pragma_buff);
1136 pfile->about_to_expand_macro_p = false;
1137 return 0;
1140 if (macro->paramc > 0)
1141 replace_args (pfile, node, macro,
1142 (macro_arg *) buff->base,
1143 location);
1144 /* Free the memory used by the arguments of this
1145 function-like macro. This memory has been allocated by
1146 funlike_invocation_p and by replace_args. */
1147 delete_macro_args (buff, num_args);
1150 /* Disable the macro within its expansion. */
1151 node->flags |= NODE_DISABLED;
1153 if (!(node->flags & NODE_USED))
1155 node->flags |= NODE_USED;
1156 if (pfile->cb.used_define)
1157 pfile->cb.used_define (pfile, pfile->directive_line, node);
1160 if (pfile->cb.used)
1161 pfile->cb.used (pfile, location, node);
1163 macro->used = 1;
1165 if (macro->paramc == 0)
1167 unsigned tokens_count = macro_real_token_count (macro);
1168 if (CPP_OPTION (pfile, track_macro_expansion))
1170 unsigned int i;
1171 const cpp_token *src = macro->exp.tokens;
1172 const line_map_macro *map;
1173 source_location *virt_locs = NULL;
1174 _cpp_buff *macro_tokens
1175 = tokens_buff_new (pfile, tokens_count, &virt_locs);
1177 /* Create a macro map to record the locations of the
1178 tokens that are involved in the expansion. LOCATION
1179 is the location of the macro expansion point. */
1180 map = linemap_enter_macro (pfile->line_table,
1181 node, location, tokens_count);
1182 for (i = 0; i < tokens_count; ++i)
1184 tokens_buff_add_token (macro_tokens, virt_locs,
1185 src, src->src_loc,
1186 src->src_loc, map, i);
1187 ++src;
1189 push_extended_tokens_context (pfile, node,
1190 macro_tokens,
1191 virt_locs,
1192 (const cpp_token **)
1193 macro_tokens->base,
1194 tokens_count);
1196 else
1197 _cpp_push_token_context (pfile, node, macro->exp.tokens,
1198 tokens_count);
1199 num_macro_tokens_counter += tokens_count;
1202 if (pragma_buff)
1204 if (!pfile->state.in_directive)
1205 _cpp_push_token_context (pfile, NULL,
1206 padding_token (pfile, result), 1);
1209 unsigned tokens_count;
1210 _cpp_buff *tail = pragma_buff->next;
1211 pragma_buff->next = NULL;
1212 tokens_count = ((const cpp_token **) BUFF_FRONT (pragma_buff)
1213 - (const cpp_token **) pragma_buff->base);
1214 push_ptoken_context (pfile, NULL, pragma_buff,
1215 (const cpp_token **) pragma_buff->base,
1216 tokens_count);
1217 pragma_buff = tail;
1218 if (!CPP_OPTION (pfile, track_macro_expansion))
1219 num_macro_tokens_counter += tokens_count;
1222 while (pragma_buff != NULL);
1223 pfile->about_to_expand_macro_p = false;
1224 return 2;
1227 pfile->about_to_expand_macro_p = false;
1228 return 1;
1231 pfile->about_to_expand_macro_p = false;
1232 /* Handle built-in macros and the _Pragma operator. */
1234 source_location loc;
1235 if (/* The top-level macro invocation that triggered the expansion
1236 we are looking at is with a standard macro ...*/
1237 !(pfile->top_most_macro_node->flags & NODE_BUILTIN)
1238 /* ... and it's a function-like macro invocation. */
1239 && pfile->top_most_macro_node->value.macro->fun_like)
1240 /* Then the location of the end of the macro invocation is the
1241 location of the closing parenthesis. */
1242 loc = pfile->cur_token[-1].src_loc;
1243 else
1244 /* Otherwise, the location of the end of the macro invocation is
1245 the location of the expansion point of that top-level macro
1246 invocation. */
1247 loc = location;
1249 return builtin_macro (pfile, node, loc);
1253 /* De-allocate the memory used by BUFF which is an array of instances
1254 of macro_arg. NUM_ARGS is the number of instances of macro_arg
1255 present in BUFF. */
1256 static void
1257 delete_macro_args (_cpp_buff *buff, unsigned num_args)
1259 macro_arg *macro_args;
1260 unsigned i;
1262 if (buff == NULL)
1263 return;
1265 macro_args = (macro_arg *) buff->base;
1267 /* Walk instances of macro_arg to free their expanded tokens as well
1268 as their macro_arg::virt_locs members. */
1269 for (i = 0; i < num_args; ++i)
1271 if (macro_args[i].expanded)
1273 free (macro_args[i].expanded);
1274 macro_args[i].expanded = NULL;
1276 if (macro_args[i].virt_locs)
1278 free (macro_args[i].virt_locs);
1279 macro_args[i].virt_locs = NULL;
1281 if (macro_args[i].expanded_virt_locs)
1283 free (macro_args[i].expanded_virt_locs);
1284 macro_args[i].expanded_virt_locs = NULL;
1287 _cpp_free_buff (buff);
1290 /* Set the INDEXth token of the macro argument ARG. TOKEN is the token
1291 to set, LOCATION is its virtual location. "Virtual" location means
1292 the location that encodes loci across macro expansion. Otherwise
1293 it has to be TOKEN->SRC_LOC. KIND is the kind of tokens the
1294 argument ARG is supposed to contain. Note that ARG must be
1295 tailored so that it has enough room to contain INDEX + 1 numbers of
1296 tokens, at least. */
1297 static void
1298 set_arg_token (macro_arg *arg, const cpp_token *token,
1299 source_location location, size_t index,
1300 enum macro_arg_token_kind kind,
1301 bool track_macro_exp_p)
1303 const cpp_token **token_ptr;
1304 source_location *loc = NULL;
1306 token_ptr =
1307 arg_token_ptr_at (arg, index, kind,
1308 track_macro_exp_p ? &loc : NULL);
1309 *token_ptr = token;
1311 if (loc != NULL)
1313 /* We can't set the location of a stringified argument
1314 token and we can't set any location if we aren't tracking
1315 macro expansion locations. */
1316 gcc_checking_assert (kind != MACRO_ARG_TOKEN_STRINGIFIED
1317 && track_macro_exp_p);
1318 *loc = location;
1322 /* Get the pointer to the location of the argument token of the
1323 function-like macro argument ARG. This function must be called
1324 only when we -ftrack-macro-expansion is on. */
1325 static const source_location *
1326 get_arg_token_location (const macro_arg *arg,
1327 enum macro_arg_token_kind kind)
1329 const source_location *loc = NULL;
1330 const cpp_token **token_ptr =
1331 arg_token_ptr_at (arg, 0, kind, (source_location **) &loc);
1333 if (token_ptr == NULL)
1334 return NULL;
1336 return loc;
1339 /* Return the pointer to the INDEXth token of the macro argument ARG.
1340 KIND specifies the kind of token the macro argument ARG contains.
1341 If VIRT_LOCATION is non NULL, *VIRT_LOCATION is set to the address
1342 of the virtual location of the returned token if the
1343 -ftrack-macro-expansion flag is on; otherwise, it's set to the
1344 spelling location of the returned token. */
1345 static const cpp_token **
1346 arg_token_ptr_at (const macro_arg *arg, size_t index,
1347 enum macro_arg_token_kind kind,
1348 source_location **virt_location)
1350 const cpp_token **tokens_ptr = NULL;
1352 switch (kind)
1354 case MACRO_ARG_TOKEN_NORMAL:
1355 tokens_ptr = arg->first;
1356 break;
1357 case MACRO_ARG_TOKEN_STRINGIFIED:
1358 tokens_ptr = (const cpp_token **) &arg->stringified;
1359 break;
1360 case MACRO_ARG_TOKEN_EXPANDED:
1361 tokens_ptr = arg->expanded;
1362 break;
1365 if (tokens_ptr == NULL)
1366 /* This can happen for e.g, an empty token argument to a
1367 funtion-like macro. */
1368 return tokens_ptr;
1370 if (virt_location)
1372 if (kind == MACRO_ARG_TOKEN_NORMAL)
1373 *virt_location = &arg->virt_locs[index];
1374 else if (kind == MACRO_ARG_TOKEN_EXPANDED)
1375 *virt_location = &arg->expanded_virt_locs[index];
1376 else if (kind == MACRO_ARG_TOKEN_STRINGIFIED)
1377 *virt_location =
1378 (source_location *) &tokens_ptr[index]->src_loc;
1380 return &tokens_ptr[index];
1383 /* Initialize an iterator so that it iterates over the tokens of a
1384 function-like macro argument. KIND is the kind of tokens we want
1385 ITER to iterate over. TOKEN_PTR points the first token ITER will
1386 iterate over. */
1387 static void
1388 macro_arg_token_iter_init (macro_arg_token_iter *iter,
1389 bool track_macro_exp_p,
1390 enum macro_arg_token_kind kind,
1391 const macro_arg *arg,
1392 const cpp_token **token_ptr)
1394 iter->track_macro_exp_p = track_macro_exp_p;
1395 iter->kind = kind;
1396 iter->token_ptr = token_ptr;
1397 /* Unconditionally initialize this so that the compiler doesn't warn
1398 about iter->location_ptr being possibly uninitialized later after
1399 this code has been inlined somewhere. */
1400 iter->location_ptr = NULL;
1401 if (track_macro_exp_p)
1402 iter->location_ptr = get_arg_token_location (arg, kind);
1403 #if CHECKING_P
1404 iter->num_forwards = 0;
1405 if (track_macro_exp_p
1406 && token_ptr != NULL
1407 && iter->location_ptr == NULL)
1408 abort ();
1409 #endif
1412 /* Move the iterator one token forward. Note that if IT was
1413 initialized on an argument that has a stringified token, moving it
1414 forward doesn't make sense as a stringified token is essentially one
1415 string. */
1416 static void
1417 macro_arg_token_iter_forward (macro_arg_token_iter *it)
1419 switch (it->kind)
1421 case MACRO_ARG_TOKEN_NORMAL:
1422 case MACRO_ARG_TOKEN_EXPANDED:
1423 it->token_ptr++;
1424 if (it->track_macro_exp_p)
1425 it->location_ptr++;
1426 break;
1427 case MACRO_ARG_TOKEN_STRINGIFIED:
1428 #if CHECKING_P
1429 if (it->num_forwards > 0)
1430 abort ();
1431 #endif
1432 break;
1435 #if CHECKING_P
1436 it->num_forwards++;
1437 #endif
1440 /* Return the token pointed to by the iterator. */
1441 static const cpp_token *
1442 macro_arg_token_iter_get_token (const macro_arg_token_iter *it)
1444 #if CHECKING_P
1445 if (it->kind == MACRO_ARG_TOKEN_STRINGIFIED
1446 && it->num_forwards > 0)
1447 abort ();
1448 #endif
1449 if (it->token_ptr == NULL)
1450 return NULL;
1451 return *it->token_ptr;
1454 /* Return the location of the token pointed to by the iterator.*/
1455 static source_location
1456 macro_arg_token_iter_get_location (const macro_arg_token_iter *it)
1458 #if CHECKING_P
1459 if (it->kind == MACRO_ARG_TOKEN_STRINGIFIED
1460 && it->num_forwards > 0)
1461 abort ();
1462 #endif
1463 if (it->track_macro_exp_p)
1464 return *it->location_ptr;
1465 else
1466 return (*it->token_ptr)->src_loc;
1469 /* Return the index of a token [resulting from macro expansion] inside
1470 the total list of tokens resulting from a given macro
1471 expansion. The index can be different depending on whether if we
1472 want each tokens resulting from function-like macro arguments
1473 expansion to have a different location or not.
1475 E.g, consider this function-like macro:
1477 #define M(x) x - 3
1479 Then consider us "calling" it (and thus expanding it) like:
1481 M(1+4)
1483 It will be expanded into:
1485 1+4-3
1487 Let's consider the case of the token '4'.
1489 Its index can be 2 (it's the third token of the set of tokens
1490 resulting from the expansion) or it can be 0 if we consider that
1491 all tokens resulting from the expansion of the argument "1+2" have
1492 the same index, which is 0. In this later case, the index of token
1493 '-' would then be 1 and the index of token '3' would be 2.
1495 The later case is useful to use less memory e.g, for the case of
1496 the user using the option -ftrack-macro-expansion=1.
1498 ABSOLUTE_TOKEN_INDEX is the index of the macro argument token we
1499 are interested in. CUR_REPLACEMENT_TOKEN is the token of the macro
1500 parameter (inside the macro replacement list) that corresponds to
1501 the macro argument for which ABSOLUTE_TOKEN_INDEX is a token index
1504 If we refer to the example above, for the '4' argument token,
1505 ABSOLUTE_TOKEN_INDEX would be set to 2, and CUR_REPLACEMENT_TOKEN
1506 would be set to the token 'x', in the replacement list "x - 3" of
1507 macro M.
1509 This is a subroutine of replace_args. */
1510 inline static unsigned
1511 expanded_token_index (cpp_reader *pfile, cpp_macro *macro,
1512 const cpp_token *cur_replacement_token,
1513 unsigned absolute_token_index)
1515 if (CPP_OPTION (pfile, track_macro_expansion) > 1)
1516 return absolute_token_index;
1517 return cur_replacement_token - macro->exp.tokens;
1520 /* Replace the parameters in a function-like macro of NODE with the
1521 actual ARGS, and place the result in a newly pushed token context.
1522 Expand each argument before replacing, unless it is operated upon
1523 by the # or ## operators. EXPANSION_POINT_LOC is the location of
1524 the expansion point of the macro. E.g, the location of the
1525 function-like macro invocation. */
1526 static void
1527 replace_args (cpp_reader *pfile, cpp_hashnode *node, cpp_macro *macro,
1528 macro_arg *args, source_location expansion_point_loc)
1530 unsigned int i, total;
1531 const cpp_token *src, *limit;
1532 const cpp_token **first = NULL;
1533 macro_arg *arg;
1534 _cpp_buff *buff = NULL;
1535 source_location *virt_locs = NULL;
1536 unsigned int exp_count;
1537 const line_map_macro *map = NULL;
1538 int track_macro_exp;
1540 /* First, fully macro-expand arguments, calculating the number of
1541 tokens in the final expansion as we go. The ordering of the if
1542 statements below is subtle; we must handle stringification before
1543 pasting. */
1545 /* EXP_COUNT is the number of tokens in the macro replacement
1546 list. TOTAL is the number of tokens /after/ macro parameters
1547 have been replaced by their arguments. */
1548 exp_count = macro_real_token_count (macro);
1549 total = exp_count;
1550 limit = macro->exp.tokens + exp_count;
1552 for (src = macro->exp.tokens; src < limit; src++)
1553 if (src->type == CPP_MACRO_ARG)
1555 /* Leading and trailing padding tokens. */
1556 total += 2;
1557 /* Account for leading and padding tokens in exp_count too.
1558 This is going to be important later down this function,
1559 when we want to handle the case of (track_macro_exp <
1560 2). */
1561 exp_count += 2;
1563 /* We have an argument. If it is not being stringified or
1564 pasted it is macro-replaced before insertion. */
1565 arg = &args[src->val.macro_arg.arg_no - 1];
1567 if (src->flags & STRINGIFY_ARG)
1569 if (!arg->stringified)
1570 arg->stringified = stringify_arg (pfile, arg);
1572 else if ((src->flags & PASTE_LEFT)
1573 || (src > macro->exp.tokens && (src[-1].flags & PASTE_LEFT)))
1574 total += arg->count - 1;
1575 else
1577 if (!arg->expanded)
1578 expand_arg (pfile, arg);
1579 total += arg->expanded_count - 1;
1583 /* When the compiler is called with the -ftrack-macro-expansion
1584 flag, we need to keep track of the location of each token that
1585 results from macro expansion.
1587 A token resulting from macro expansion is not a new token. It is
1588 simply the same token as the token coming from the macro
1589 definition. The new things that are allocated are the buffer
1590 that holds the tokens resulting from macro expansion and a new
1591 location that records many things like the locus of the expansion
1592 point as well as the original locus inside the definition of the
1593 macro. This location is called a virtual location.
1595 So the buffer BUFF holds a set of cpp_token*, and the buffer
1596 VIRT_LOCS holds the virtual locations of the tokens held by BUFF.
1598 Both of these two buffers are going to be hung off of the macro
1599 context, when the latter is pushed. The memory allocated to
1600 store the tokens and their locations is going to be freed once
1601 the context of macro expansion is popped.
1603 As far as tokens are concerned, the memory overhead of
1604 -ftrack-macro-expansion is proportional to the number of
1605 macros that get expanded multiplied by sizeof (source_location).
1606 The good news is that extra memory gets freed when the macro
1607 context is freed, i.e shortly after the macro got expanded. */
1609 /* Is the -ftrack-macro-expansion flag in effect? */
1610 track_macro_exp = CPP_OPTION (pfile, track_macro_expansion);
1612 /* Now allocate memory space for tokens and locations resulting from
1613 the macro expansion, copy the tokens and replace the arguments.
1614 This memory must be freed when the context of the macro MACRO is
1615 popped. */
1616 buff = tokens_buff_new (pfile, total, track_macro_exp ? &virt_locs : NULL);
1618 first = (const cpp_token **) buff->base;
1620 /* Create a macro map to record the locations of the tokens that are
1621 involved in the expansion. Note that the expansion point is set
1622 to the location of the closing parenthesis. Otherwise, the
1623 subsequent map created for the first token that comes after the
1624 macro map might have a wrong line number. That would lead to
1625 tokens with wrong line numbers after the macro expansion. This
1626 adds up to the memory overhead of the -ftrack-macro-expansion
1627 flag; for every macro that is expanded, a "macro map" is
1628 created. */
1629 if (track_macro_exp)
1631 int num_macro_tokens = total;
1632 if (track_macro_exp < 2)
1633 /* Then the number of macro tokens won't take in account the
1634 fact that function-like macro arguments can expand to
1635 multiple tokens. This is to save memory at the expense of
1636 accuracy.
1638 Suppose we have #define SQARE(A) A * A
1640 And then we do SQARE(2+3)
1642 Then the tokens 2, +, 3, will have the same location,
1643 saying they come from the expansion of the argument A. */
1644 num_macro_tokens = exp_count;
1645 map = linemap_enter_macro (pfile->line_table, node,
1646 expansion_point_loc,
1647 num_macro_tokens);
1649 i = 0;
1650 for (src = macro->exp.tokens; src < limit; src++)
1652 unsigned int arg_tokens_count;
1653 macro_arg_token_iter from;
1654 const cpp_token **paste_flag = NULL;
1655 const cpp_token **tmp_token_ptr;
1657 if (src->type != CPP_MACRO_ARG)
1659 /* Allocate a virtual location for token SRC, and add that
1660 token and its virtual location into the buffers BUFF and
1661 VIRT_LOCS. */
1662 unsigned index = expanded_token_index (pfile, macro, src, i);
1663 tokens_buff_add_token (buff, virt_locs, src,
1664 src->src_loc, src->src_loc,
1665 map, index);
1666 i += 1;
1667 continue;
1670 paste_flag = 0;
1671 arg = &args[src->val.macro_arg.arg_no - 1];
1672 /* SRC is a macro parameter that we need to replace with its
1673 corresponding argument. So at some point we'll need to
1674 iterate over the tokens of the macro argument and copy them
1675 into the "place" now holding the correspondig macro
1676 parameter. We are going to use the iterator type
1677 macro_argo_token_iter to handle that iterating. The 'if'
1678 below is to initialize the iterator depending on the type of
1679 tokens the macro argument has. It also does some adjustment
1680 related to padding tokens and some pasting corner cases. */
1681 if (src->flags & STRINGIFY_ARG)
1683 arg_tokens_count = 1;
1684 macro_arg_token_iter_init (&from,
1685 CPP_OPTION (pfile,
1686 track_macro_expansion),
1687 MACRO_ARG_TOKEN_STRINGIFIED,
1688 arg, &arg->stringified);
1690 else if (src->flags & PASTE_LEFT)
1692 arg_tokens_count = arg->count;
1693 macro_arg_token_iter_init (&from,
1694 CPP_OPTION (pfile,
1695 track_macro_expansion),
1696 MACRO_ARG_TOKEN_NORMAL,
1697 arg, arg->first);
1699 else if (src != macro->exp.tokens && (src[-1].flags & PASTE_LEFT))
1701 int num_toks;
1702 arg_tokens_count = arg->count;
1703 macro_arg_token_iter_init (&from,
1704 CPP_OPTION (pfile,
1705 track_macro_expansion),
1706 MACRO_ARG_TOKEN_NORMAL,
1707 arg, arg->first);
1709 num_toks = tokens_buff_count (buff);
1711 if (num_toks != 0)
1713 /* So the current parameter token is pasted to the previous
1714 token in the replacement list. Let's look at what
1715 we have as previous and current arguments. */
1717 /* This is the previous argument's token ... */
1718 tmp_token_ptr = tokens_buff_last_token_ptr (buff);
1720 if ((*tmp_token_ptr)->type == CPP_COMMA
1721 && macro->variadic
1722 && src->val.macro_arg.arg_no == macro->paramc)
1724 /* ... which is a comma; and the current parameter
1725 is the last parameter of a variadic function-like
1726 macro. If the argument to the current last
1727 parameter is NULL, then swallow the comma,
1728 otherwise drop the paste flag. */
1729 if (macro_arg_token_iter_get_token (&from) == NULL)
1730 tokens_buff_remove_last_token (buff);
1731 else
1732 paste_flag = tmp_token_ptr;
1734 /* Remove the paste flag if the RHS is a placemarker. */
1735 else if (arg_tokens_count == 0)
1736 paste_flag = tmp_token_ptr;
1739 else
1741 arg_tokens_count = arg->expanded_count;
1742 macro_arg_token_iter_init (&from,
1743 CPP_OPTION (pfile,
1744 track_macro_expansion),
1745 MACRO_ARG_TOKEN_EXPANDED,
1746 arg, arg->expanded);
1749 /* Padding on the left of an argument (unless RHS of ##). */
1750 if ((!pfile->state.in_directive || pfile->state.directive_wants_padding)
1751 && src != macro->exp.tokens && !(src[-1].flags & PASTE_LEFT))
1753 const cpp_token *t = padding_token (pfile, src);
1754 unsigned index = expanded_token_index (pfile, macro, src, i);
1755 /* Allocate a virtual location for the padding token and
1756 append the token and its location to BUFF and
1757 VIRT_LOCS. */
1758 tokens_buff_add_token (buff, virt_locs, t,
1759 t->src_loc, t->src_loc,
1760 map, index);
1763 if (arg_tokens_count)
1765 /* So now we've got the number of tokens that make up the
1766 argument that is going to replace the current parameter
1767 in the macro's replacement list. */
1768 unsigned int j;
1769 for (j = 0; j < arg_tokens_count; ++j)
1771 /* So if track_macro_exp is < 2, the user wants to
1772 save extra memory while tracking macro expansion
1773 locations. So in that case here is what we do:
1775 Suppose we have #define SQARE(A) A * A
1777 And then we do SQARE(2+3)
1779 Then the tokens 2, +, 3, will have the same location,
1780 saying they come from the expansion of the argument
1783 So that means we are going to ignore the COUNT tokens
1784 resulting from the expansion of the current macro
1785 arugment. In other words all the ARG_TOKENS_COUNT tokens
1786 resulting from the expansion of the macro argument will
1787 have the index I. Normally, each of those token should
1788 have index I+J. */
1789 unsigned token_index = i;
1790 unsigned index;
1791 if (track_macro_exp > 1)
1792 token_index += j;
1794 index = expanded_token_index (pfile, macro, src, token_index);
1795 tokens_buff_add_token (buff, virt_locs,
1796 macro_arg_token_iter_get_token (&from),
1797 macro_arg_token_iter_get_location (&from),
1798 src->src_loc, map, index);
1799 macro_arg_token_iter_forward (&from);
1802 /* With a non-empty argument on the LHS of ##, the last
1803 token should be flagged PASTE_LEFT. */
1804 if (src->flags & PASTE_LEFT)
1805 paste_flag =
1806 (const cpp_token **) tokens_buff_last_token_ptr (buff);
1808 else if (CPP_PEDANTIC (pfile) && ! CPP_OPTION (pfile, c99)
1809 && ! macro->syshdr && ! cpp_in_system_header (pfile))
1811 if (CPP_OPTION (pfile, cplusplus))
1812 cpp_pedwarning (pfile, CPP_W_PEDANTIC,
1813 "invoking macro %s argument %d: "
1814 "empty macro arguments are undefined"
1815 " in ISO C++98",
1816 NODE_NAME (node), src->val.macro_arg.arg_no);
1817 else if (CPP_OPTION (pfile, cpp_warn_c90_c99_compat))
1818 cpp_pedwarning (pfile,
1819 CPP_OPTION (pfile, cpp_warn_c90_c99_compat) > 0
1820 ? CPP_W_C90_C99_COMPAT : CPP_W_PEDANTIC,
1821 "invoking macro %s argument %d: "
1822 "empty macro arguments are undefined"
1823 " in ISO C90",
1824 NODE_NAME (node), src->val.macro_arg.arg_no);
1826 else if (CPP_OPTION (pfile, cpp_warn_c90_c99_compat) > 0
1827 && ! CPP_OPTION (pfile, cplusplus)
1828 && ! macro->syshdr && ! cpp_in_system_header (pfile))
1829 cpp_warning (pfile, CPP_W_C90_C99_COMPAT,
1830 "invoking macro %s argument %d: "
1831 "empty macro arguments are undefined"
1832 " in ISO C90",
1833 NODE_NAME (node), src->val.macro_arg.arg_no);
1835 /* Avoid paste on RHS (even case count == 0). */
1836 if (!pfile->state.in_directive && !(src->flags & PASTE_LEFT))
1838 const cpp_token *t = &pfile->avoid_paste;
1839 tokens_buff_add_token (buff, virt_locs,
1840 t, t->src_loc, t->src_loc,
1841 NULL, 0);
1844 /* Add a new paste flag, or remove an unwanted one. */
1845 if (paste_flag)
1847 cpp_token *token = _cpp_temp_token (pfile);
1848 token->type = (*paste_flag)->type;
1849 token->val = (*paste_flag)->val;
1850 if (src->flags & PASTE_LEFT)
1851 token->flags = (*paste_flag)->flags | PASTE_LEFT;
1852 else
1853 token->flags = (*paste_flag)->flags & ~PASTE_LEFT;
1854 *paste_flag = token;
1857 i += arg_tokens_count;
1860 if (track_macro_exp)
1861 push_extended_tokens_context (pfile, node, buff, virt_locs, first,
1862 tokens_buff_count (buff));
1863 else
1864 push_ptoken_context (pfile, node, buff, first,
1865 tokens_buff_count (buff));
1867 num_macro_tokens_counter += tokens_buff_count (buff);
1870 /* Return a special padding token, with padding inherited from SOURCE. */
1871 static const cpp_token *
1872 padding_token (cpp_reader *pfile, const cpp_token *source)
1874 cpp_token *result = _cpp_temp_token (pfile);
1876 result->type = CPP_PADDING;
1878 /* Data in GCed data structures cannot be made const so far, so we
1879 need a cast here. */
1880 result->val.source = (cpp_token *) source;
1881 result->flags = 0;
1882 return result;
1885 /* Get a new uninitialized context. Create a new one if we cannot
1886 re-use an old one. */
1887 static cpp_context *
1888 next_context (cpp_reader *pfile)
1890 cpp_context *result = pfile->context->next;
1892 if (result == 0)
1894 result = XNEW (cpp_context);
1895 memset (result, 0, sizeof (cpp_context));
1896 result->prev = pfile->context;
1897 result->next = 0;
1898 pfile->context->next = result;
1901 pfile->context = result;
1902 return result;
1905 /* Push a list of pointers to tokens. */
1906 static void
1907 push_ptoken_context (cpp_reader *pfile, cpp_hashnode *macro, _cpp_buff *buff,
1908 const cpp_token **first, unsigned int count)
1910 cpp_context *context = next_context (pfile);
1912 context->tokens_kind = TOKENS_KIND_INDIRECT;
1913 context->c.macro = macro;
1914 context->buff = buff;
1915 FIRST (context).ptoken = first;
1916 LAST (context).ptoken = first + count;
1919 /* Push a list of tokens.
1921 A NULL macro means that we should continue the current macro
1922 expansion, in essence. That means that if we are currently in a
1923 macro expansion context, we'll make the new pfile->context refer to
1924 the current macro. */
1925 void
1926 _cpp_push_token_context (cpp_reader *pfile, cpp_hashnode *macro,
1927 const cpp_token *first, unsigned int count)
1929 cpp_context *context;
1931 if (macro == NULL)
1932 macro = macro_of_context (pfile->context);
1934 context = next_context (pfile);
1935 context->tokens_kind = TOKENS_KIND_DIRECT;
1936 context->c.macro = macro;
1937 context->buff = NULL;
1938 FIRST (context).token = first;
1939 LAST (context).token = first + count;
1942 /* Build a context containing a list of tokens as well as their
1943 virtual locations and push it. TOKENS_BUFF is the buffer that
1944 contains the tokens pointed to by FIRST. If TOKENS_BUFF is
1945 non-NULL, it means that the context owns it, meaning that
1946 _cpp_pop_context will free it as well as VIRT_LOCS_BUFF that
1947 contains the virtual locations.
1949 A NULL macro means that we should continue the current macro
1950 expansion, in essence. That means that if we are currently in a
1951 macro expansion context, we'll make the new pfile->context refer to
1952 the current macro. */
1953 static void
1954 push_extended_tokens_context (cpp_reader *pfile,
1955 cpp_hashnode *macro,
1956 _cpp_buff *token_buff,
1957 source_location *virt_locs,
1958 const cpp_token **first,
1959 unsigned int count)
1961 cpp_context *context;
1962 macro_context *m;
1964 if (macro == NULL)
1965 macro = macro_of_context (pfile->context);
1967 context = next_context (pfile);
1968 context->tokens_kind = TOKENS_KIND_EXTENDED;
1969 context->buff = token_buff;
1971 m = XNEW (macro_context);
1972 m->macro_node = macro;
1973 m->virt_locs = virt_locs;
1974 m->cur_virt_loc = virt_locs;
1975 context->c.mc = m;
1976 FIRST (context).ptoken = first;
1977 LAST (context).ptoken = first + count;
1980 /* Push a traditional macro's replacement text. */
1981 void
1982 _cpp_push_text_context (cpp_reader *pfile, cpp_hashnode *macro,
1983 const uchar *start, size_t len)
1985 cpp_context *context = next_context (pfile);
1987 context->tokens_kind = TOKENS_KIND_DIRECT;
1988 context->c.macro = macro;
1989 context->buff = NULL;
1990 CUR (context) = start;
1991 RLIMIT (context) = start + len;
1992 macro->flags |= NODE_DISABLED;
1995 /* Creates a buffer that holds tokens a.k.a "token buffer", usually
1996 for the purpose of storing them on a cpp_context. If VIRT_LOCS is
1997 non-null (which means that -ftrack-macro-expansion is on),
1998 *VIRT_LOCS is set to a newly allocated buffer that is supposed to
1999 hold the virtual locations of the tokens resulting from macro
2000 expansion. */
2001 static _cpp_buff*
2002 tokens_buff_new (cpp_reader *pfile, size_t len,
2003 source_location **virt_locs)
2005 size_t tokens_size = len * sizeof (cpp_token *);
2006 size_t locs_size = len * sizeof (source_location);
2008 if (virt_locs != NULL)
2009 *virt_locs = XNEWVEC (source_location, locs_size);
2010 return _cpp_get_buff (pfile, tokens_size);
2013 /* Returns the number of tokens contained in a token buffer. The
2014 buffer holds a set of cpp_token*. */
2015 static size_t
2016 tokens_buff_count (_cpp_buff *buff)
2018 return (BUFF_FRONT (buff) - buff->base) / sizeof (cpp_token *);
2021 /* Return a pointer to the last token contained in the token buffer
2022 BUFF. */
2023 static const cpp_token **
2024 tokens_buff_last_token_ptr (_cpp_buff *buff)
2026 return &((const cpp_token **) BUFF_FRONT (buff))[-1];
2029 /* Remove the last token contained in the token buffer TOKENS_BUFF.
2030 If VIRT_LOCS_BUFF is non-NULL, it should point at the buffer
2031 containing the virtual locations of the tokens in TOKENS_BUFF; in
2032 which case the function updates that buffer as well. */
2033 static inline void
2034 tokens_buff_remove_last_token (_cpp_buff *tokens_buff)
2037 if (BUFF_FRONT (tokens_buff) > tokens_buff->base)
2038 BUFF_FRONT (tokens_buff) =
2039 (unsigned char *) &((cpp_token **) BUFF_FRONT (tokens_buff))[-1];
2042 /* Insert a token into the token buffer at the position pointed to by
2043 DEST. Note that the buffer is not enlarged so the previous token
2044 that was at *DEST is overwritten. VIRT_LOC_DEST, if non-null,
2045 means -ftrack-macro-expansion is effect; it then points to where to
2046 insert the virtual location of TOKEN. TOKEN is the token to
2047 insert. VIRT_LOC is the virtual location of the token, i.e, the
2048 location possibly encoding its locus across macro expansion. If
2049 TOKEN is an argument of a function-like macro (inside a macro
2050 replacement list), PARM_DEF_LOC is the spelling location of the
2051 macro parameter that TOKEN is replacing, in the replacement list of
2052 the macro. If TOKEN is not an argument of a function-like macro or
2053 if it doesn't come from a macro expansion, then VIRT_LOC can just
2054 be set to the same value as PARM_DEF_LOC. If MAP is non null, it
2055 means TOKEN comes from a macro expansion and MAP is the macro map
2056 associated to the macro. MACRO_TOKEN_INDEX points to the index of
2057 the token in the macro map; it is not considered if MAP is NULL.
2059 Upon successful completion this function returns the a pointer to
2060 the position of the token coming right after the insertion
2061 point. */
2062 static inline const cpp_token **
2063 tokens_buff_put_token_to (const cpp_token **dest,
2064 source_location *virt_loc_dest,
2065 const cpp_token *token,
2066 source_location virt_loc,
2067 source_location parm_def_loc,
2068 const line_map_macro *map,
2069 unsigned int macro_token_index)
2071 source_location macro_loc = virt_loc;
2072 const cpp_token **result;
2074 if (virt_loc_dest)
2076 /* -ftrack-macro-expansion is on. */
2077 if (map)
2078 macro_loc = linemap_add_macro_token (map, macro_token_index,
2079 virt_loc, parm_def_loc);
2080 *virt_loc_dest = macro_loc;
2082 *dest = token;
2083 result = &dest[1];
2085 return result;
2088 /* Adds a token at the end of the tokens contained in BUFFER. Note
2089 that this function doesn't enlarge BUFFER when the number of tokens
2090 reaches BUFFER's size; it aborts in that situation.
2092 TOKEN is the token to append. VIRT_LOC is the virtual location of
2093 the token, i.e, the location possibly encoding its locus across
2094 macro expansion. If TOKEN is an argument of a function-like macro
2095 (inside a macro replacement list), PARM_DEF_LOC is the location of
2096 the macro parameter that TOKEN is replacing. If TOKEN doesn't come
2097 from a macro expansion, then VIRT_LOC can just be set to the same
2098 value as PARM_DEF_LOC. If MAP is non null, it means TOKEN comes
2099 from a macro expansion and MAP is the macro map associated to the
2100 macro. MACRO_TOKEN_INDEX points to the index of the token in the
2101 macro map; It is not considered if MAP is NULL. If VIRT_LOCS is
2102 non-null, it means -ftrack-macro-expansion is on; in which case
2103 this function adds the virtual location DEF_LOC to the VIRT_LOCS
2104 array, at the same index as the one of TOKEN in BUFFER. Upon
2105 successful completion this function returns the a pointer to the
2106 position of the token coming right after the insertion point. */
2107 static const cpp_token **
2108 tokens_buff_add_token (_cpp_buff *buffer,
2109 source_location *virt_locs,
2110 const cpp_token *token,
2111 source_location virt_loc,
2112 source_location parm_def_loc,
2113 const line_map_macro *map,
2114 unsigned int macro_token_index)
2116 const cpp_token **result;
2117 source_location *virt_loc_dest = NULL;
2118 unsigned token_index =
2119 (BUFF_FRONT (buffer) - buffer->base) / sizeof (cpp_token *);
2121 /* Abort if we pass the end the buffer. */
2122 if (BUFF_FRONT (buffer) > BUFF_LIMIT (buffer))
2123 abort ();
2125 if (virt_locs != NULL)
2126 virt_loc_dest = &virt_locs[token_index];
2128 result =
2129 tokens_buff_put_token_to ((const cpp_token **) BUFF_FRONT (buffer),
2130 virt_loc_dest, token, virt_loc, parm_def_loc,
2131 map, macro_token_index);
2133 BUFF_FRONT (buffer) = (unsigned char *) result;
2134 return result;
2137 /* Allocate space for the function-like macro argument ARG to store
2138 the tokens resulting from the macro-expansion of the tokens that
2139 make up ARG itself. That space is allocated in ARG->expanded and
2140 needs to be freed using free. */
2141 static void
2142 alloc_expanded_arg_mem (cpp_reader *pfile, macro_arg *arg, size_t capacity)
2144 gcc_checking_assert (arg->expanded == NULL
2145 && arg->expanded_virt_locs == NULL);
2147 arg->expanded = XNEWVEC (const cpp_token *, capacity);
2148 if (CPP_OPTION (pfile, track_macro_expansion))
2149 arg->expanded_virt_locs = XNEWVEC (source_location, capacity);
2153 /* If necessary, enlarge ARG->expanded to so that it can contain SIZE
2154 tokens. */
2155 static void
2156 ensure_expanded_arg_room (cpp_reader *pfile, macro_arg *arg,
2157 size_t size, size_t *expanded_capacity)
2159 if (size <= *expanded_capacity)
2160 return;
2162 size *= 2;
2164 arg->expanded =
2165 XRESIZEVEC (const cpp_token *, arg->expanded, size);
2166 *expanded_capacity = size;
2168 if (CPP_OPTION (pfile, track_macro_expansion))
2170 if (arg->expanded_virt_locs == NULL)
2171 arg->expanded_virt_locs = XNEWVEC (source_location, size);
2172 else
2173 arg->expanded_virt_locs = XRESIZEVEC (source_location,
2174 arg->expanded_virt_locs,
2175 size);
2179 /* Expand an argument ARG before replacing parameters in a
2180 function-like macro. This works by pushing a context with the
2181 argument's tokens, and then expanding that into a temporary buffer
2182 as if it were a normal part of the token stream. collect_args()
2183 has terminated the argument's tokens with a CPP_EOF so that we know
2184 when we have fully expanded the argument. */
2185 static void
2186 expand_arg (cpp_reader *pfile, macro_arg *arg)
2188 size_t capacity;
2189 bool saved_warn_trad;
2190 bool track_macro_exp_p = CPP_OPTION (pfile, track_macro_expansion);
2192 if (arg->count == 0
2193 || arg->expanded != NULL)
2194 return;
2196 /* Don't warn about funlike macros when pre-expanding. */
2197 saved_warn_trad = CPP_WTRADITIONAL (pfile);
2198 CPP_WTRADITIONAL (pfile) = 0;
2200 /* Loop, reading in the tokens of the argument. */
2201 capacity = 256;
2202 alloc_expanded_arg_mem (pfile, arg, capacity);
2204 if (track_macro_exp_p)
2205 push_extended_tokens_context (pfile, NULL, NULL,
2206 arg->virt_locs,
2207 arg->first,
2208 arg->count + 1);
2209 else
2210 push_ptoken_context (pfile, NULL, NULL,
2211 arg->first, arg->count + 1);
2213 for (;;)
2215 const cpp_token *token;
2216 source_location location;
2218 ensure_expanded_arg_room (pfile, arg, arg->expanded_count + 1,
2219 &capacity);
2221 token = cpp_get_token_1 (pfile, &location);
2223 if (token->type == CPP_EOF)
2224 break;
2226 set_arg_token (arg, token, location,
2227 arg->expanded_count, MACRO_ARG_TOKEN_EXPANDED,
2228 CPP_OPTION (pfile, track_macro_expansion));
2229 arg->expanded_count++;
2232 _cpp_pop_context (pfile);
2234 CPP_WTRADITIONAL (pfile) = saved_warn_trad;
2237 /* Returns the macro associated to the current context if we are in
2238 the context a macro expansion, NULL otherwise. */
2239 static cpp_hashnode*
2240 macro_of_context (cpp_context *context)
2242 if (context == NULL)
2243 return NULL;
2245 return (context->tokens_kind == TOKENS_KIND_EXTENDED)
2246 ? context->c.mc->macro_node
2247 : context->c.macro;
2250 /* Return TRUE iff we are expanding a macro or are about to start
2251 expanding one. If we are effectively expanding a macro, the
2252 function macro_of_context returns a pointer to the macro being
2253 expanded. */
2254 static bool
2255 in_macro_expansion_p (cpp_reader *pfile)
2257 if (pfile == NULL)
2258 return false;
2260 return (pfile->about_to_expand_macro_p
2261 || macro_of_context (pfile->context));
2264 /* Pop the current context off the stack, re-enabling the macro if the
2265 context represented a macro's replacement list. Initially the
2266 context structure was not freed so that we can re-use it later, but
2267 now we do free it to reduce peak memory consumption. */
2268 void
2269 _cpp_pop_context (cpp_reader *pfile)
2271 cpp_context *context = pfile->context;
2273 /* We should not be popping the base context. */
2274 if (context == &pfile->base_context)
2275 abort ();
2277 if (context->c.macro)
2279 cpp_hashnode *macro;
2280 if (context->tokens_kind == TOKENS_KIND_EXTENDED)
2282 macro_context *mc = context->c.mc;
2283 macro = mc->macro_node;
2284 /* If context->buff is set, it means the life time of tokens
2285 is bound to the life time of this context; so we must
2286 free the tokens; that means we must free the virtual
2287 locations of these tokens too. */
2288 if (context->buff && mc->virt_locs)
2290 free (mc->virt_locs);
2291 mc->virt_locs = NULL;
2293 free (mc);
2294 context->c.mc = NULL;
2296 else
2297 macro = context->c.macro;
2299 /* Beware that MACRO can be NULL in cases like when we are
2300 called from expand_arg. In those cases, a dummy context with
2301 tokens is pushed just for the purpose of walking them using
2302 cpp_get_token_1. In that case, no 'macro' field is set into
2303 the dummy context. */
2304 if (macro != NULL
2305 /* Several contiguous macro expansion contexts can be
2306 associated to the same macro; that means it's the same
2307 macro expansion that spans across all these (sub)
2308 contexts. So we should re-enable an expansion-disabled
2309 macro only when we are sure we are really out of that
2310 macro expansion. */
2311 && macro_of_context (context->prev) != macro)
2312 macro->flags &= ~NODE_DISABLED;
2314 if (macro == pfile->top_most_macro_node && context->prev == NULL)
2315 /* We are popping the context of the top-most macro node. */
2316 pfile->top_most_macro_node = NULL;
2319 if (context->buff)
2321 /* Decrease memory peak consumption by freeing the memory used
2322 by the context. */
2323 _cpp_free_buff (context->buff);
2326 pfile->context = context->prev;
2327 /* decrease peak memory consumption by feeing the context. */
2328 pfile->context->next = NULL;
2329 free (context);
2332 /* Return TRUE if we reached the end of the set of tokens stored in
2333 CONTEXT, FALSE otherwise. */
2334 static inline bool
2335 reached_end_of_context (cpp_context *context)
2337 if (context->tokens_kind == TOKENS_KIND_DIRECT)
2338 return FIRST (context).token == LAST (context).token;
2339 else if (context->tokens_kind == TOKENS_KIND_INDIRECT
2340 || context->tokens_kind == TOKENS_KIND_EXTENDED)
2341 return FIRST (context).ptoken == LAST (context).ptoken;
2342 else
2343 abort ();
2346 /* Consume the next token contained in the current context of PFILE,
2347 and return it in *TOKEN. It's "full location" is returned in
2348 *LOCATION. If -ftrack-macro-location is in effeect, fFull location"
2349 means the location encoding the locus of the token across macro
2350 expansion; otherwise it's just is the "normal" location of the
2351 token which (*TOKEN)->src_loc. */
2352 static inline void
2353 consume_next_token_from_context (cpp_reader *pfile,
2354 const cpp_token ** token,
2355 source_location *location)
2357 cpp_context *c = pfile->context;
2359 if ((c)->tokens_kind == TOKENS_KIND_DIRECT)
2361 *token = FIRST (c).token;
2362 *location = (*token)->src_loc;
2363 FIRST (c).token++;
2365 else if ((c)->tokens_kind == TOKENS_KIND_INDIRECT)
2367 *token = *FIRST (c).ptoken;
2368 *location = (*token)->src_loc;
2369 FIRST (c).ptoken++;
2371 else if ((c)->tokens_kind == TOKENS_KIND_EXTENDED)
2373 macro_context *m = c->c.mc;
2374 *token = *FIRST (c).ptoken;
2375 if (m->virt_locs)
2377 *location = *m->cur_virt_loc;
2378 m->cur_virt_loc++;
2380 else
2381 *location = (*token)->src_loc;
2382 FIRST (c).ptoken++;
2384 else
2385 abort ();
2388 /* In the traditional mode of the preprocessor, if we are currently in
2389 a directive, the location of a token must be the location of the
2390 start of the directive line. This function returns the proper
2391 location if we are in the traditional mode, and just returns
2392 LOCATION otherwise. */
2394 static inline source_location
2395 maybe_adjust_loc_for_trad_cpp (cpp_reader *pfile, source_location location)
2397 if (CPP_OPTION (pfile, traditional))
2399 if (pfile->state.in_directive)
2400 return pfile->directive_line;
2402 return location;
2405 /* Routine to get a token as well as its location.
2407 Macro expansions and directives are transparently handled,
2408 including entering included files. Thus tokens are post-macro
2409 expansion, and after any intervening directives. External callers
2410 see CPP_EOF only at EOF. Internal callers also see it when meeting
2411 a directive inside a macro call, when at the end of a directive and
2412 state.in_directive is still 1, and at the end of argument
2413 pre-expansion.
2415 LOC is an out parameter; *LOC is set to the location "as expected
2416 by the user". Please read the comment of
2417 cpp_get_token_with_location to learn more about the meaning of this
2418 location. */
2419 static const cpp_token*
2420 cpp_get_token_1 (cpp_reader *pfile, source_location *location)
2422 const cpp_token *result;
2423 /* This token is a virtual token that either encodes a location
2424 related to macro expansion or a spelling location. */
2425 source_location virt_loc = 0;
2426 /* pfile->about_to_expand_macro_p can be overriden by indirect calls
2427 to functions that push macro contexts. So let's save it so that
2428 we can restore it when we are about to leave this routine. */
2429 bool saved_about_to_expand_macro = pfile->about_to_expand_macro_p;
2431 for (;;)
2433 cpp_hashnode *node;
2434 cpp_context *context = pfile->context;
2436 /* Context->prev == 0 <=> base context. */
2437 if (!context->prev)
2439 result = _cpp_lex_token (pfile);
2440 virt_loc = result->src_loc;
2442 else if (!reached_end_of_context (context))
2444 consume_next_token_from_context (pfile, &result,
2445 &virt_loc);
2446 if (result->flags & PASTE_LEFT)
2448 paste_all_tokens (pfile, result);
2449 if (pfile->state.in_directive)
2450 continue;
2451 result = padding_token (pfile, result);
2452 goto out;
2455 else
2457 if (pfile->context->c.macro)
2458 ++num_expanded_macros_counter;
2459 _cpp_pop_context (pfile);
2460 if (pfile->state.in_directive)
2461 continue;
2462 result = &pfile->avoid_paste;
2463 goto out;
2466 if (pfile->state.in_directive && result->type == CPP_COMMENT)
2467 continue;
2469 if (result->type != CPP_NAME)
2470 break;
2472 node = result->val.node.node;
2474 if (node->type != NT_MACRO || (result->flags & NO_EXPAND))
2475 break;
2477 if (!(node->flags & NODE_DISABLED))
2479 int ret = 0;
2480 /* If not in a macro context, and we're going to start an
2481 expansion, record the location and the top level macro
2482 about to be expanded. */
2483 if (!in_macro_expansion_p (pfile))
2485 pfile->invocation_location = result->src_loc;
2486 pfile->top_most_macro_node = node;
2488 if (pfile->state.prevent_expansion)
2489 break;
2491 /* Conditional macros require that a predicate be evaluated
2492 first. */
2493 if ((node->flags & NODE_CONDITIONAL) != 0)
2495 if (pfile->cb.macro_to_expand)
2497 bool whitespace_after;
2498 const cpp_token *peek_tok = cpp_peek_token (pfile, 0);
2500 whitespace_after = (peek_tok->type == CPP_PADDING
2501 || (peek_tok->flags & PREV_WHITE));
2502 node = pfile->cb.macro_to_expand (pfile, result);
2503 if (node)
2504 ret = enter_macro_context (pfile, node, result,
2505 virt_loc);
2506 else if (whitespace_after)
2508 /* If macro_to_expand hook returned NULL and it
2509 ate some tokens, see if we don't need to add
2510 a padding token in between this and the
2511 next token. */
2512 peek_tok = cpp_peek_token (pfile, 0);
2513 if (peek_tok->type != CPP_PADDING
2514 && (peek_tok->flags & PREV_WHITE) == 0)
2515 _cpp_push_token_context (pfile, NULL,
2516 padding_token (pfile,
2517 peek_tok), 1);
2521 else
2522 ret = enter_macro_context (pfile, node, result,
2523 virt_loc);
2524 if (ret)
2526 if (pfile->state.in_directive || ret == 2)
2527 continue;
2528 result = padding_token (pfile, result);
2529 goto out;
2532 else
2534 /* Flag this token as always unexpandable. FIXME: move this
2535 to collect_args()?. */
2536 cpp_token *t = _cpp_temp_token (pfile);
2537 t->type = result->type;
2538 t->flags = result->flags | NO_EXPAND;
2539 t->val = result->val;
2540 result = t;
2543 break;
2546 out:
2547 if (location != NULL)
2549 if (virt_loc == 0)
2550 virt_loc = result->src_loc;
2551 *location = virt_loc;
2553 if (!CPP_OPTION (pfile, track_macro_expansion)
2554 && macro_of_context (pfile->context) != NULL)
2555 /* We are in a macro expansion context, are not tracking
2556 virtual location, but were asked to report the location
2557 of the expansion point of the macro being expanded. */
2558 *location = pfile->invocation_location;
2560 *location = maybe_adjust_loc_for_trad_cpp (pfile, *location);
2563 pfile->about_to_expand_macro_p = saved_about_to_expand_macro;
2564 return result;
2567 /* External routine to get a token. Also used nearly everywhere
2568 internally, except for places where we know we can safely call
2569 _cpp_lex_token directly, such as lexing a directive name.
2571 Macro expansions and directives are transparently handled,
2572 including entering included files. Thus tokens are post-macro
2573 expansion, and after any intervening directives. External callers
2574 see CPP_EOF only at EOF. Internal callers also see it when meeting
2575 a directive inside a macro call, when at the end of a directive and
2576 state.in_directive is still 1, and at the end of argument
2577 pre-expansion. */
2578 const cpp_token *
2579 cpp_get_token (cpp_reader *pfile)
2581 return cpp_get_token_1 (pfile, NULL);
2584 /* Like cpp_get_token, but also returns a virtual token location
2585 separate from the spelling location carried by the returned token.
2587 LOC is an out parameter; *LOC is set to the location "as expected
2588 by the user". This matters when a token results from macro
2589 expansion; in that case the token's spelling location indicates the
2590 locus of the token in the definition of the macro but *LOC
2591 virtually encodes all the other meaningful locuses associated to
2592 the token.
2594 What? virtual location? Yes, virtual location.
2596 If the token results from macro expansion and if macro expansion
2597 location tracking is enabled its virtual location encodes (at the
2598 same time):
2600 - the spelling location of the token
2602 - the locus of the macro expansion point
2604 - the locus of the point where the token got instantiated as part
2605 of the macro expansion process.
2607 You have to use the linemap API to get the locus you are interested
2608 in from a given virtual location.
2610 Note however that virtual locations are not necessarily ordered for
2611 relations '<' and '>'. One must use the function
2612 linemap_location_before_p instead of using the relational operator
2613 '<'.
2615 If macro expansion tracking is off and if the token results from
2616 macro expansion the virtual location is the expansion point of the
2617 macro that got expanded.
2619 When the token doesn't result from macro expansion, the virtual
2620 location is just the same thing as its spelling location. */
2622 const cpp_token *
2623 cpp_get_token_with_location (cpp_reader *pfile, source_location *loc)
2625 return cpp_get_token_1 (pfile, loc);
2628 /* Returns true if we're expanding an object-like macro that was
2629 defined in a system header. Just checks the macro at the top of
2630 the stack. Used for diagnostic suppression. */
2632 cpp_sys_macro_p (cpp_reader *pfile)
2634 cpp_hashnode *node = NULL;
2636 if (pfile->context->tokens_kind == TOKENS_KIND_EXTENDED)
2637 node = pfile->context->c.mc->macro_node;
2638 else
2639 node = pfile->context->c.macro;
2641 return node && node->value.macro && node->value.macro->syshdr;
2644 /* Read each token in, until end of the current file. Directives are
2645 transparently processed. */
2646 void
2647 cpp_scan_nooutput (cpp_reader *pfile)
2649 /* Request a CPP_EOF token at the end of this file, rather than
2650 transparently continuing with the including file. */
2651 pfile->buffer->return_at_eof = true;
2653 pfile->state.discarding_output++;
2654 pfile->state.prevent_expansion++;
2656 if (CPP_OPTION (pfile, traditional))
2657 while (_cpp_read_logical_line_trad (pfile))
2659 else
2660 while (cpp_get_token (pfile)->type != CPP_EOF)
2663 pfile->state.discarding_output--;
2664 pfile->state.prevent_expansion--;
2667 /* Step back one or more tokens obtained from the lexer. */
2668 void
2669 _cpp_backup_tokens_direct (cpp_reader *pfile, unsigned int count)
2671 pfile->lookaheads += count;
2672 while (count--)
2674 pfile->cur_token--;
2675 if (pfile->cur_token == pfile->cur_run->base
2676 /* Possible with -fpreprocessed and no leading #line. */
2677 && pfile->cur_run->prev != NULL)
2679 pfile->cur_run = pfile->cur_run->prev;
2680 pfile->cur_token = pfile->cur_run->limit;
2685 /* Step back one (or more) tokens. Can only step back more than 1 if
2686 they are from the lexer, and not from macro expansion. */
2687 void
2688 _cpp_backup_tokens (cpp_reader *pfile, unsigned int count)
2690 if (pfile->context->prev == NULL)
2691 _cpp_backup_tokens_direct (pfile, count);
2692 else
2694 if (count != 1)
2695 abort ();
2696 if (pfile->context->tokens_kind == TOKENS_KIND_DIRECT)
2697 FIRST (pfile->context).token--;
2698 else if (pfile->context->tokens_kind == TOKENS_KIND_INDIRECT)
2699 FIRST (pfile->context).ptoken--;
2700 else if (pfile->context->tokens_kind == TOKENS_KIND_EXTENDED)
2702 FIRST (pfile->context).ptoken--;
2703 if (pfile->context->c.macro)
2705 macro_context *m = pfile->context->c.mc;
2706 m->cur_virt_loc--;
2707 gcc_checking_assert (m->cur_virt_loc >= m->virt_locs);
2709 else
2710 abort ();
2712 else
2713 abort ();
2717 /* #define directive parsing and handling. */
2719 /* Returns nonzero if a macro redefinition warning is required. */
2720 static bool
2721 warn_of_redefinition (cpp_reader *pfile, cpp_hashnode *node,
2722 const cpp_macro *macro2)
2724 const cpp_macro *macro1;
2725 unsigned int i;
2727 /* Some redefinitions need to be warned about regardless. */
2728 if (node->flags & NODE_WARN)
2729 return true;
2731 /* Suppress warnings for builtins that lack the NODE_WARN flag,
2732 unless Wbuiltin-macro-redefined. */
2733 if (node->flags & NODE_BUILTIN
2734 && (!pfile->cb.user_builtin_macro
2735 || !pfile->cb.user_builtin_macro (pfile, node)))
2736 return CPP_OPTION (pfile, warn_builtin_macro_redefined);
2738 /* Redefinitions of conditional (context-sensitive) macros, on
2739 the other hand, must be allowed silently. */
2740 if (node->flags & NODE_CONDITIONAL)
2741 return false;
2743 /* Redefinition of a macro is allowed if and only if the old and new
2744 definitions are the same. (6.10.3 paragraph 2). */
2745 macro1 = node->value.macro;
2747 /* Don't check count here as it can be different in valid
2748 traditional redefinitions with just whitespace differences. */
2749 if (macro1->paramc != macro2->paramc
2750 || macro1->fun_like != macro2->fun_like
2751 || macro1->variadic != macro2->variadic)
2752 return true;
2754 /* Check parameter spellings. */
2755 for (i = 0; i < macro1->paramc; i++)
2756 if (macro1->params[i] != macro2->params[i])
2757 return true;
2759 /* Check the replacement text or tokens. */
2760 if (CPP_OPTION (pfile, traditional))
2761 return _cpp_expansions_different_trad (macro1, macro2);
2763 if (macro1->count != macro2->count)
2764 return true;
2766 for (i = 0; i < macro1->count; i++)
2767 if (!_cpp_equiv_tokens (&macro1->exp.tokens[i], &macro2->exp.tokens[i]))
2768 return true;
2770 return false;
2773 /* Free the definition of hashnode H. */
2774 void
2775 _cpp_free_definition (cpp_hashnode *h)
2777 /* Macros and assertions no longer have anything to free. */
2778 h->type = NT_VOID;
2779 /* Clear builtin flag in case of redefinition. */
2780 h->flags &= ~(NODE_BUILTIN | NODE_DISABLED | NODE_USED);
2783 /* Save parameter NODE (spelling SPELLING) to the parameter list of
2784 macro MACRO. Returns zero on success, nonzero if the parameter is
2785 a duplicate. */
2786 bool
2787 _cpp_save_parameter (cpp_reader *pfile, cpp_macro *macro, cpp_hashnode *node,
2788 cpp_hashnode *spelling)
2790 unsigned int len;
2791 /* Constraint 6.10.3.6 - duplicate parameter names. */
2792 if (node->flags & NODE_MACRO_ARG)
2794 cpp_error (pfile, CPP_DL_ERROR, "duplicate macro parameter \"%s\"",
2795 NODE_NAME (node));
2796 return true;
2799 if (BUFF_ROOM (pfile->a_buff)
2800 < (macro->paramc + 1) * sizeof (cpp_hashnode *))
2801 _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_hashnode *));
2803 ((cpp_hashnode **) BUFF_FRONT (pfile->a_buff))[macro->paramc++] = spelling;
2804 node->flags |= NODE_MACRO_ARG;
2805 len = macro->paramc * sizeof (struct macro_arg_saved_data);
2806 if (len > pfile->macro_buffer_len)
2808 pfile->macro_buffer = XRESIZEVEC (unsigned char, pfile->macro_buffer,
2809 len);
2810 pfile->macro_buffer_len = len;
2812 struct macro_arg_saved_data save;
2813 save.value = node->value;
2814 save.canonical_node = node;
2815 ((struct macro_arg_saved_data *) pfile->macro_buffer)[macro->paramc - 1]
2816 = save;
2818 node->value.arg_index = macro->paramc;
2819 return false;
2822 /* Check the syntax of the parameters in a MACRO definition. Returns
2823 false if an error occurs. */
2824 static bool
2825 parse_params (cpp_reader *pfile, cpp_macro *macro)
2827 unsigned int prev_ident = 0;
2829 for (;;)
2831 const cpp_token *token = _cpp_lex_token (pfile);
2833 switch (token->type)
2835 default:
2836 /* Allow/ignore comments in parameter lists if we are
2837 preserving comments in macro expansions. */
2838 if (token->type == CPP_COMMENT
2839 && ! CPP_OPTION (pfile, discard_comments_in_macro_exp))
2840 continue;
2842 cpp_error (pfile, CPP_DL_ERROR,
2843 "\"%s\" may not appear in macro parameter list",
2844 cpp_token_as_text (pfile, token));
2845 return false;
2847 case CPP_NAME:
2848 if (prev_ident)
2850 cpp_error (pfile, CPP_DL_ERROR,
2851 "macro parameters must be comma-separated");
2852 return false;
2854 prev_ident = 1;
2856 if (_cpp_save_parameter (pfile, macro, token->val.node.node,
2857 token->val.node.spelling))
2858 return false;
2859 continue;
2861 case CPP_CLOSE_PAREN:
2862 if (prev_ident || macro->paramc == 0)
2863 return true;
2865 /* Fall through to pick up the error. */
2866 case CPP_COMMA:
2867 if (!prev_ident)
2869 cpp_error (pfile, CPP_DL_ERROR, "parameter name missing");
2870 return false;
2872 prev_ident = 0;
2873 continue;
2875 case CPP_ELLIPSIS:
2876 macro->variadic = 1;
2877 if (!prev_ident)
2879 _cpp_save_parameter (pfile, macro,
2880 pfile->spec_nodes.n__VA_ARGS__,
2881 pfile->spec_nodes.n__VA_ARGS__);
2882 pfile->state.va_args_ok = 1;
2883 if (! CPP_OPTION (pfile, c99)
2884 && CPP_OPTION (pfile, cpp_pedantic)
2885 && CPP_OPTION (pfile, warn_variadic_macros))
2887 if (CPP_OPTION (pfile, cplusplus))
2888 cpp_pedwarning
2889 (pfile, CPP_W_VARIADIC_MACROS,
2890 "anonymous variadic macros were introduced in C++11");
2891 else
2892 cpp_pedwarning
2893 (pfile, CPP_W_VARIADIC_MACROS,
2894 "anonymous variadic macros were introduced in C99");
2896 else if (CPP_OPTION (pfile, cpp_warn_c90_c99_compat) > 0
2897 && ! CPP_OPTION (pfile, cplusplus))
2898 cpp_error (pfile, CPP_DL_WARNING,
2899 "anonymous variadic macros were introduced in C99");
2901 else if (CPP_OPTION (pfile, cpp_pedantic)
2902 && CPP_OPTION (pfile, warn_variadic_macros))
2904 if (CPP_OPTION (pfile, cplusplus))
2905 cpp_pedwarning (pfile, CPP_W_VARIADIC_MACROS,
2906 "ISO C++ does not permit named variadic macros");
2907 else
2908 cpp_pedwarning (pfile, CPP_W_VARIADIC_MACROS,
2909 "ISO C does not permit named variadic macros");
2912 /* We're at the end, and just expect a closing parenthesis. */
2913 token = _cpp_lex_token (pfile);
2914 if (token->type == CPP_CLOSE_PAREN)
2915 return true;
2916 /* Fall through. */
2918 case CPP_EOF:
2919 cpp_error (pfile, CPP_DL_ERROR, "missing ')' in macro parameter list");
2920 return false;
2925 /* Allocate room for a token from a macro's replacement list. */
2926 static cpp_token *
2927 alloc_expansion_token (cpp_reader *pfile, cpp_macro *macro)
2929 if (BUFF_ROOM (pfile->a_buff) < (macro->count + 1) * sizeof (cpp_token))
2930 _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_token));
2932 return &((cpp_token *) BUFF_FRONT (pfile->a_buff))[macro->count++];
2935 /* Lex a token from the expansion of MACRO, but mark parameters as we
2936 find them and warn of traditional stringification. */
2937 static cpp_token *
2938 lex_expansion_token (cpp_reader *pfile, cpp_macro *macro)
2940 cpp_token *token, *saved_cur_token;
2942 saved_cur_token = pfile->cur_token;
2943 pfile->cur_token = alloc_expansion_token (pfile, macro);
2944 token = _cpp_lex_direct (pfile);
2945 pfile->cur_token = saved_cur_token;
2947 /* Is this a parameter? */
2948 if (token->type == CPP_NAME
2949 && (token->val.node.node->flags & NODE_MACRO_ARG) != 0)
2951 cpp_hashnode *spelling = token->val.node.spelling;
2952 token->type = CPP_MACRO_ARG;
2953 token->val.macro_arg.arg_no = token->val.node.node->value.arg_index;
2954 token->val.macro_arg.spelling = spelling;
2956 else if (CPP_WTRADITIONAL (pfile) && macro->paramc > 0
2957 && (token->type == CPP_STRING || token->type == CPP_CHAR))
2958 check_trad_stringification (pfile, macro, &token->val.str);
2960 return token;
2963 static bool
2964 create_iso_definition (cpp_reader *pfile, cpp_macro *macro)
2966 cpp_token *token;
2967 const cpp_token *ctoken;
2968 bool following_paste_op = false;
2969 const char *paste_op_error_msg =
2970 N_("'##' cannot appear at either end of a macro expansion");
2971 unsigned int num_extra_tokens = 0;
2973 /* Get the first token of the expansion (or the '(' of a
2974 function-like macro). */
2975 ctoken = _cpp_lex_token (pfile);
2977 if (ctoken->type == CPP_OPEN_PAREN && !(ctoken->flags & PREV_WHITE))
2979 bool ok = parse_params (pfile, macro);
2980 macro->params = (cpp_hashnode **) BUFF_FRONT (pfile->a_buff);
2981 if (!ok)
2982 return false;
2984 /* Success. Commit or allocate the parameter array. */
2985 if (pfile->hash_table->alloc_subobject)
2987 cpp_hashnode **params =
2988 (cpp_hashnode **) pfile->hash_table->alloc_subobject
2989 (sizeof (cpp_hashnode *) * macro->paramc);
2990 memcpy (params, macro->params,
2991 sizeof (cpp_hashnode *) * macro->paramc);
2992 macro->params = params;
2994 else
2995 BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->params[macro->paramc];
2996 macro->fun_like = 1;
2998 else if (ctoken->type != CPP_EOF && !(ctoken->flags & PREV_WHITE))
3000 /* While ISO C99 requires whitespace before replacement text
3001 in a macro definition, ISO C90 with TC1 allows characters
3002 from the basic source character set there. */
3003 if (CPP_OPTION (pfile, c99))
3005 if (CPP_OPTION (pfile, cplusplus))
3006 cpp_error (pfile, CPP_DL_PEDWARN,
3007 "ISO C++11 requires whitespace after the macro name");
3008 else
3009 cpp_error (pfile, CPP_DL_PEDWARN,
3010 "ISO C99 requires whitespace after the macro name");
3012 else
3014 int warntype = CPP_DL_WARNING;
3015 switch (ctoken->type)
3017 case CPP_ATSIGN:
3018 case CPP_AT_NAME:
3019 case CPP_OBJC_STRING:
3020 /* '@' is not in basic character set. */
3021 warntype = CPP_DL_PEDWARN;
3022 break;
3023 case CPP_OTHER:
3024 /* Basic character set sans letters, digits and _. */
3025 if (strchr ("!\"#%&'()*+,-./:;<=>?[\\]^{|}~",
3026 ctoken->val.str.text[0]) == NULL)
3027 warntype = CPP_DL_PEDWARN;
3028 break;
3029 default:
3030 /* All other tokens start with a character from basic
3031 character set. */
3032 break;
3034 cpp_error (pfile, warntype,
3035 "missing whitespace after the macro name");
3039 if (macro->fun_like)
3040 token = lex_expansion_token (pfile, macro);
3041 else
3043 token = alloc_expansion_token (pfile, macro);
3044 *token = *ctoken;
3047 for (;;)
3049 /* Check the stringifying # constraint 6.10.3.2.1 of
3050 function-like macros when lexing the subsequent token. */
3051 if (macro->count > 1 && token[-1].type == CPP_HASH && macro->fun_like)
3053 if (token->type == CPP_MACRO_ARG)
3055 if (token->flags & PREV_WHITE)
3056 token->flags |= SP_PREV_WHITE;
3057 if (token[-1].flags & DIGRAPH)
3058 token->flags |= SP_DIGRAPH;
3059 token->flags &= ~PREV_WHITE;
3060 token->flags |= STRINGIFY_ARG;
3061 token->flags |= token[-1].flags & PREV_WHITE;
3062 token[-1] = token[0];
3063 macro->count--;
3065 /* Let assembler get away with murder. */
3066 else if (CPP_OPTION (pfile, lang) != CLK_ASM)
3068 cpp_error (pfile, CPP_DL_ERROR,
3069 "'#' is not followed by a macro parameter");
3070 return false;
3074 if (token->type == CPP_EOF)
3076 /* Paste operator constraint 6.10.3.3.1:
3077 Token-paste ##, can appear in both object-like and
3078 function-like macros, but not at the end. */
3079 if (following_paste_op)
3081 cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
3082 return false;
3084 break;
3087 /* Paste operator constraint 6.10.3.3.1. */
3088 if (token->type == CPP_PASTE)
3090 /* Token-paste ##, can appear in both object-like and
3091 function-like macros, but not at the beginning. */
3092 if (macro->count == 1)
3094 cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
3095 return false;
3098 if (token[-1].flags & PASTE_LEFT)
3100 macro->extra_tokens = 1;
3101 num_extra_tokens++;
3102 token->val.token_no = macro->count - 1;
3104 else
3106 --macro->count;
3107 token[-1].flags |= PASTE_LEFT;
3108 if (token->flags & DIGRAPH)
3109 token[-1].flags |= SP_DIGRAPH;
3110 if (token->flags & PREV_WHITE)
3111 token[-1].flags |= SP_PREV_WHITE;
3115 following_paste_op = (token->type == CPP_PASTE);
3116 token = lex_expansion_token (pfile, macro);
3119 macro->exp.tokens = (cpp_token *) BUFF_FRONT (pfile->a_buff);
3120 macro->traditional = 0;
3122 /* Don't count the CPP_EOF. */
3123 macro->count--;
3125 /* Clear whitespace on first token for warn_of_redefinition(). */
3126 if (macro->count)
3127 macro->exp.tokens[0].flags &= ~PREV_WHITE;
3129 /* Commit or allocate the memory. */
3130 if (pfile->hash_table->alloc_subobject)
3132 cpp_token *tokns =
3133 (cpp_token *) pfile->hash_table->alloc_subobject (sizeof (cpp_token)
3134 * macro->count);
3135 if (num_extra_tokens)
3137 /* Place second and subsequent ## or %:%: tokens in
3138 sequences of consecutive such tokens at the end of the
3139 list to preserve information about where they appear, how
3140 they are spelt and whether they are preceded by
3141 whitespace without otherwise interfering with macro
3142 expansion. */
3143 cpp_token *normal_dest = tokns;
3144 cpp_token *extra_dest = tokns + macro->count - num_extra_tokens;
3145 unsigned int i;
3146 for (i = 0; i < macro->count; i++)
3148 if (macro->exp.tokens[i].type == CPP_PASTE)
3149 *extra_dest++ = macro->exp.tokens[i];
3150 else
3151 *normal_dest++ = macro->exp.tokens[i];
3154 else
3155 memcpy (tokns, macro->exp.tokens, sizeof (cpp_token) * macro->count);
3156 macro->exp.tokens = tokns;
3158 else
3159 BUFF_FRONT (pfile->a_buff) = (uchar *) &macro->exp.tokens[macro->count];
3161 return true;
3164 /* Parse a macro and save its expansion. Returns nonzero on success. */
3165 bool
3166 _cpp_create_definition (cpp_reader *pfile, cpp_hashnode *node)
3168 cpp_macro *macro;
3169 unsigned int i;
3170 bool ok;
3172 if (pfile->hash_table->alloc_subobject)
3173 macro = (cpp_macro *) pfile->hash_table->alloc_subobject
3174 (sizeof (cpp_macro));
3175 else
3176 macro = (cpp_macro *) _cpp_aligned_alloc (pfile, sizeof (cpp_macro));
3177 macro->line = pfile->directive_line;
3178 macro->params = 0;
3179 macro->paramc = 0;
3180 macro->variadic = 0;
3181 macro->used = !CPP_OPTION (pfile, warn_unused_macros);
3182 macro->count = 0;
3183 macro->fun_like = 0;
3184 macro->extra_tokens = 0;
3185 /* To suppress some diagnostics. */
3186 macro->syshdr = pfile->buffer && pfile->buffer->sysp != 0;
3188 if (CPP_OPTION (pfile, traditional))
3189 ok = _cpp_create_trad_definition (pfile, macro);
3190 else
3192 ok = create_iso_definition (pfile, macro);
3194 /* We set the type for SEEN_EOL() in directives.c.
3196 Longer term we should lex the whole line before coming here,
3197 and just copy the expansion. */
3199 /* Stop the lexer accepting __VA_ARGS__. */
3200 pfile->state.va_args_ok = 0;
3203 /* Clear the fast argument lookup indices. */
3204 for (i = macro->paramc; i-- > 0; )
3206 struct macro_arg_saved_data *save =
3207 &((struct macro_arg_saved_data *) pfile->macro_buffer)[i];
3208 struct cpp_hashnode *node = save->canonical_node;
3209 node->flags &= ~ NODE_MACRO_ARG;
3210 node->value = save->value;
3213 if (!ok)
3214 return ok;
3216 if (node->type == NT_MACRO)
3218 if (CPP_OPTION (pfile, warn_unused_macros))
3219 _cpp_warn_if_unused_macro (pfile, node, NULL);
3221 if (warn_of_redefinition (pfile, node, macro))
3223 const int reason = ((node->flags & NODE_BUILTIN)
3224 && !(node->flags & NODE_WARN))
3225 ? CPP_W_BUILTIN_MACRO_REDEFINED : CPP_W_NONE;
3227 bool warned =
3228 cpp_pedwarning_with_line (pfile, reason,
3229 pfile->directive_line, 0,
3230 "\"%s\" redefined", NODE_NAME (node));
3232 if (warned && node->type == NT_MACRO && !(node->flags & NODE_BUILTIN))
3233 cpp_error_with_line (pfile, CPP_DL_NOTE,
3234 node->value.macro->line, 0,
3235 "this is the location of the previous definition");
3239 if (node->type != NT_VOID)
3240 _cpp_free_definition (node);
3242 /* Enter definition in hash table. */
3243 node->type = NT_MACRO;
3244 node->value.macro = macro;
3245 if (! ustrncmp (NODE_NAME (node), DSC ("__STDC_"))
3246 && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_FORMAT_MACROS")
3247 /* __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS are mentioned
3248 in the C standard, as something that one must use in C++.
3249 However DR#593 and C++11 indicate that they play no role in C++.
3250 We special-case them anyway. */
3251 && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_LIMIT_MACROS")
3252 && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_CONSTANT_MACROS"))
3253 node->flags |= NODE_WARN;
3255 /* If user defines one of the conditional macros, remove the
3256 conditional flag */
3257 node->flags &= ~NODE_CONDITIONAL;
3259 return ok;
3262 /* Warn if a token in STRING matches one of a function-like MACRO's
3263 parameters. */
3264 static void
3265 check_trad_stringification (cpp_reader *pfile, const cpp_macro *macro,
3266 const cpp_string *string)
3268 unsigned int i, len;
3269 const uchar *p, *q, *limit;
3271 /* Loop over the string. */
3272 limit = string->text + string->len - 1;
3273 for (p = string->text + 1; p < limit; p = q)
3275 /* Find the start of an identifier. */
3276 while (p < limit && !is_idstart (*p))
3277 p++;
3279 /* Find the end of the identifier. */
3280 q = p;
3281 while (q < limit && is_idchar (*q))
3282 q++;
3284 len = q - p;
3286 /* Loop over the function macro arguments to see if the
3287 identifier inside the string matches one of them. */
3288 for (i = 0; i < macro->paramc; i++)
3290 const cpp_hashnode *node = macro->params[i];
3292 if (NODE_LEN (node) == len
3293 && !memcmp (p, NODE_NAME (node), len))
3295 cpp_error (pfile, CPP_DL_WARNING,
3296 "macro argument \"%s\" would be stringified in traditional C",
3297 NODE_NAME (node));
3298 break;
3304 /* Returns the name, arguments and expansion of a macro, in a format
3305 suitable to be read back in again, and therefore also for DWARF 2
3306 debugging info. e.g. "PASTE(X, Y) X ## Y", or "MACNAME EXPANSION".
3307 Caller is expected to generate the "#define" bit if needed. The
3308 returned text is temporary, and automatically freed later. */
3309 const unsigned char *
3310 cpp_macro_definition (cpp_reader *pfile, cpp_hashnode *node)
3312 unsigned int i, len;
3313 const cpp_macro *macro;
3314 unsigned char *buffer;
3316 if (node->type != NT_MACRO || (node->flags & NODE_BUILTIN))
3318 if (node->type != NT_MACRO
3319 || !pfile->cb.user_builtin_macro
3320 || !pfile->cb.user_builtin_macro (pfile, node))
3322 cpp_error (pfile, CPP_DL_ICE,
3323 "invalid hash type %d in cpp_macro_definition",
3324 node->type);
3325 return 0;
3329 macro = node->value.macro;
3330 /* Calculate length. */
3331 len = NODE_LEN (node) * 10 + 2; /* ' ' and NUL. */
3332 if (macro->fun_like)
3334 len += 4; /* "()" plus possible final ".." of named
3335 varargs (we have + 1 below). */
3336 for (i = 0; i < macro->paramc; i++)
3337 len += NODE_LEN (macro->params[i]) + 1; /* "," */
3340 /* This should match below where we fill in the buffer. */
3341 if (CPP_OPTION (pfile, traditional))
3342 len += _cpp_replacement_text_len (macro);
3343 else
3345 unsigned int count = macro_real_token_count (macro);
3346 for (i = 0; i < count; i++)
3348 cpp_token *token = &macro->exp.tokens[i];
3350 if (token->type == CPP_MACRO_ARG)
3351 len += NODE_LEN (token->val.macro_arg.spelling);
3352 else
3353 len += cpp_token_len (token);
3355 if (token->flags & STRINGIFY_ARG)
3356 len++; /* "#" */
3357 if (token->flags & PASTE_LEFT)
3358 len += 3; /* " ##" */
3359 if (token->flags & PREV_WHITE)
3360 len++; /* " " */
3364 if (len > pfile->macro_buffer_len)
3366 pfile->macro_buffer = XRESIZEVEC (unsigned char,
3367 pfile->macro_buffer, len);
3368 pfile->macro_buffer_len = len;
3371 /* Fill in the buffer. Start with the macro name. */
3372 buffer = pfile->macro_buffer;
3373 buffer = _cpp_spell_ident_ucns (buffer, node);
3375 /* Parameter names. */
3376 if (macro->fun_like)
3378 *buffer++ = '(';
3379 for (i = 0; i < macro->paramc; i++)
3381 cpp_hashnode *param = macro->params[i];
3383 if (param != pfile->spec_nodes.n__VA_ARGS__)
3385 memcpy (buffer, NODE_NAME (param), NODE_LEN (param));
3386 buffer += NODE_LEN (param);
3389 if (i + 1 < macro->paramc)
3390 /* Don't emit a space after the comma here; we're trying
3391 to emit a Dwarf-friendly definition, and the Dwarf spec
3392 forbids spaces in the argument list. */
3393 *buffer++ = ',';
3394 else if (macro->variadic)
3395 *buffer++ = '.', *buffer++ = '.', *buffer++ = '.';
3397 *buffer++ = ')';
3400 /* The Dwarf spec requires a space after the macro name, even if the
3401 definition is the empty string. */
3402 *buffer++ = ' ';
3404 if (CPP_OPTION (pfile, traditional))
3405 buffer = _cpp_copy_replacement_text (macro, buffer);
3406 else if (macro->count)
3407 /* Expansion tokens. */
3409 unsigned int count = macro_real_token_count (macro);
3410 for (i = 0; i < count; i++)
3412 cpp_token *token = &macro->exp.tokens[i];
3414 if (token->flags & PREV_WHITE)
3415 *buffer++ = ' ';
3416 if (token->flags & STRINGIFY_ARG)
3417 *buffer++ = '#';
3419 if (token->type == CPP_MACRO_ARG)
3421 memcpy (buffer,
3422 NODE_NAME (token->val.macro_arg.spelling),
3423 NODE_LEN (token->val.macro_arg.spelling));
3424 buffer += NODE_LEN (token->val.macro_arg.spelling);
3426 else
3427 buffer = cpp_spell_token (pfile, token, buffer, true);
3429 if (token->flags & PASTE_LEFT)
3431 *buffer++ = ' ';
3432 *buffer++ = '#';
3433 *buffer++ = '#';
3434 /* Next has PREV_WHITE; see _cpp_create_definition. */
3439 *buffer = '\0';
3440 return pfile->macro_buffer;