Fix hashing of prestreamed nodes
[gcc.git] / libcpp / macro.c
1 /* Part of CPP library. (Macro and #define handling.)
2 Copyright (C) 1986-2020 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
6
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.
11
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.
16
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/>.
20
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! */
24
25 #include "config.h"
26 #include "system.h"
27 #include "cpplib.h"
28 #include "internal.h"
29
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
36 {
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 location_t *virt_locs; /* Where virtual locations for
43 unexpanded tokens are stored. */
44 location_t *expanded_virt_locs; /* Where virtual locations for
45 expanded tokens are
46 stored. */
47 };
48
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 literal, 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
59 };
60
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
65 {
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 location_t *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
81 };
82
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 & type of this identifier. */
89 union _cpp_hashnode_value value;
90 node_type type;
91 };
92
93 static const char *vaopt_paste_error =
94 N_("'##' cannot appear at either end of __VA_OPT__");
95
96 static void expand_arg (cpp_reader *, macro_arg *);
97
98 /* A class for tracking __VA_OPT__ state while iterating over a
99 sequence of tokens. This is used during both macro definition and
100 expansion. */
101 class vaopt_state {
102
103 public:
104
105 enum update_type
106 {
107 ERROR,
108 DROP,
109 INCLUDE,
110 BEGIN,
111 END
112 };
113
114 /* Initialize the state tracker. ANY_ARGS is true if variable
115 arguments were provided to the macro invocation. */
116 vaopt_state (cpp_reader *pfile, bool is_variadic, macro_arg *arg)
117 : m_pfile (pfile),
118 m_arg (arg),
119 m_variadic (is_variadic),
120 m_last_was_paste (false),
121 m_state (0),
122 m_paste_location (0),
123 m_location (0),
124 m_update (ERROR)
125 {
126 }
127
128 /* Given a token, update the state of this tracker and return a
129 boolean indicating whether the token should be be included in the
130 expansion. */
131 update_type update (const cpp_token *token)
132 {
133 /* If the macro isn't variadic, just don't bother. */
134 if (!m_variadic)
135 return INCLUDE;
136
137 if (token->type == CPP_NAME
138 && token->val.node.node == m_pfile->spec_nodes.n__VA_OPT__)
139 {
140 if (m_state > 0)
141 {
142 cpp_error_at (m_pfile, CPP_DL_ERROR, token->src_loc,
143 "__VA_OPT__ may not appear in a __VA_OPT__");
144 return ERROR;
145 }
146 ++m_state;
147 m_location = token->src_loc;
148 return BEGIN;
149 }
150 else if (m_state == 1)
151 {
152 if (token->type != CPP_OPEN_PAREN)
153 {
154 cpp_error_at (m_pfile, CPP_DL_ERROR, m_location,
155 "__VA_OPT__ must be followed by an "
156 "open parenthesis");
157 return ERROR;
158 }
159 ++m_state;
160 if (m_update == ERROR)
161 {
162 if (m_arg == NULL)
163 m_update = INCLUDE;
164 else
165 {
166 m_update = DROP;
167 if (!m_arg->expanded)
168 expand_arg (m_pfile, m_arg);
169 for (unsigned idx = 0; idx < m_arg->expanded_count; ++idx)
170 if (m_arg->expanded[idx]->type != CPP_PADDING)
171 {
172 m_update = INCLUDE;
173 break;
174 }
175 }
176 }
177 return DROP;
178 }
179 else if (m_state >= 2)
180 {
181 if (m_state == 2 && token->type == CPP_PASTE)
182 {
183 cpp_error_at (m_pfile, CPP_DL_ERROR, token->src_loc,
184 vaopt_paste_error);
185 return ERROR;
186 }
187 /* Advance states before further considering this token, in
188 case we see a close paren immediately after the open
189 paren. */
190 if (m_state == 2)
191 ++m_state;
192
193 bool was_paste = m_last_was_paste;
194 m_last_was_paste = false;
195 if (token->type == CPP_PASTE)
196 {
197 m_last_was_paste = true;
198 m_paste_location = token->src_loc;
199 }
200 else if (token->type == CPP_OPEN_PAREN)
201 ++m_state;
202 else if (token->type == CPP_CLOSE_PAREN)
203 {
204 --m_state;
205 if (m_state == 2)
206 {
207 /* Saw the final paren. */
208 m_state = 0;
209
210 if (was_paste)
211 {
212 cpp_error_at (m_pfile, CPP_DL_ERROR, token->src_loc,
213 vaopt_paste_error);
214 return ERROR;
215 }
216
217 return END;
218 }
219 }
220 return m_update;
221 }
222
223 /* Nothing to do with __VA_OPT__. */
224 return INCLUDE;
225 }
226
227 /* Ensure that any __VA_OPT__ was completed. If ok, return true.
228 Otherwise, issue an error and return false. */
229 bool completed ()
230 {
231 if (m_variadic && m_state != 0)
232 cpp_error_at (m_pfile, CPP_DL_ERROR, m_location,
233 "unterminated __VA_OPT__");
234 return m_state == 0;
235 }
236
237 private:
238
239 /* The cpp_reader. */
240 cpp_reader *m_pfile;
241
242 /* The __VA_ARGS__ argument. */
243 macro_arg *m_arg;
244
245 /* True if the macro is variadic. */
246 bool m_variadic;
247 /* If true, the previous token was ##. This is used to detect when
248 a paste occurs at the end of the sequence. */
249 bool m_last_was_paste;
250
251 /* The state variable:
252 0 means not parsing
253 1 means __VA_OPT__ seen, looking for "("
254 2 means "(" seen (so the next token can't be "##")
255 >= 3 means looking for ")", the number encodes the paren depth. */
256 int m_state;
257
258 /* The location of the paste token. */
259 location_t m_paste_location;
260
261 /* Location of the __VA_OPT__ token. */
262 location_t m_location;
263
264 /* If __VA_ARGS__ substitutes to no preprocessing tokens,
265 INCLUDE, otherwise DROP. ERROR when unknown yet. */
266 update_type m_update;
267 };
268
269 /* Macro expansion. */
270
271 static int enter_macro_context (cpp_reader *, cpp_hashnode *,
272 const cpp_token *, location_t);
273 static int builtin_macro (cpp_reader *, cpp_hashnode *,
274 location_t, location_t);
275 static void push_ptoken_context (cpp_reader *, cpp_hashnode *, _cpp_buff *,
276 const cpp_token **, unsigned int);
277 static void push_extended_tokens_context (cpp_reader *, cpp_hashnode *,
278 _cpp_buff *, location_t *,
279 const cpp_token **, unsigned int);
280 static _cpp_buff *collect_args (cpp_reader *, const cpp_hashnode *,
281 _cpp_buff **, unsigned *);
282 static cpp_context *next_context (cpp_reader *);
283 static const cpp_token *padding_token (cpp_reader *, const cpp_token *);
284 static const cpp_token *new_string_token (cpp_reader *, uchar *, unsigned int);
285 static const cpp_token *stringify_arg (cpp_reader *, macro_arg *);
286 static void paste_all_tokens (cpp_reader *, const cpp_token *);
287 static bool paste_tokens (cpp_reader *, location_t,
288 const cpp_token **, const cpp_token *);
289 static void alloc_expanded_arg_mem (cpp_reader *, macro_arg *, size_t);
290 static void ensure_expanded_arg_room (cpp_reader *, macro_arg *, size_t, size_t *);
291 static void delete_macro_args (_cpp_buff*, unsigned num_args);
292 static void set_arg_token (macro_arg *, const cpp_token *,
293 location_t, size_t,
294 enum macro_arg_token_kind,
295 bool);
296 static const location_t *get_arg_token_location (const macro_arg *,
297 enum macro_arg_token_kind);
298 static const cpp_token **arg_token_ptr_at (const macro_arg *,
299 size_t,
300 enum macro_arg_token_kind,
301 location_t **virt_location);
302
303 static void macro_arg_token_iter_init (macro_arg_token_iter *, bool,
304 enum macro_arg_token_kind,
305 const macro_arg *,
306 const cpp_token **);
307 static const cpp_token *macro_arg_token_iter_get_token
308 (const macro_arg_token_iter *it);
309 static location_t macro_arg_token_iter_get_location
310 (const macro_arg_token_iter *);
311 static void macro_arg_token_iter_forward (macro_arg_token_iter *);
312 static _cpp_buff *tokens_buff_new (cpp_reader *, size_t,
313 location_t **);
314 static size_t tokens_buff_count (_cpp_buff *);
315 static const cpp_token **tokens_buff_last_token_ptr (_cpp_buff *);
316 static inline const cpp_token **tokens_buff_put_token_to (const cpp_token **,
317 location_t *,
318 const cpp_token *,
319 location_t,
320 location_t,
321 const line_map_macro *,
322 unsigned int);
323
324 static const cpp_token **tokens_buff_add_token (_cpp_buff *,
325 location_t *,
326 const cpp_token *,
327 location_t,
328 location_t,
329 const line_map_macro *,
330 unsigned int);
331 static inline void tokens_buff_remove_last_token (_cpp_buff *);
332 static void replace_args (cpp_reader *, cpp_hashnode *, cpp_macro *,
333 macro_arg *, location_t);
334 static _cpp_buff *funlike_invocation_p (cpp_reader *, cpp_hashnode *,
335 _cpp_buff **, unsigned *);
336 static cpp_macro *create_iso_definition (cpp_reader *);
337
338 /* #define directive parsing and handling. */
339
340 static cpp_macro *lex_expansion_token (cpp_reader *, cpp_macro *);
341 static bool warn_of_redefinition (cpp_reader *, cpp_hashnode *,
342 const cpp_macro *);
343 static bool parse_params (cpp_reader *, unsigned *, bool *);
344 static void check_trad_stringification (cpp_reader *, const cpp_macro *,
345 const cpp_string *);
346 static bool reached_end_of_context (cpp_context *);
347 static void consume_next_token_from_context (cpp_reader *pfile,
348 const cpp_token **,
349 location_t *);
350 static const cpp_token* cpp_get_token_1 (cpp_reader *, location_t *);
351
352 static cpp_hashnode* macro_of_context (cpp_context *context);
353
354 static bool in_macro_expansion_p (cpp_reader *pfile);
355
356 /* Statistical counter tracking the number of macros that got
357 expanded. */
358 unsigned num_expanded_macros_counter = 0;
359 /* Statistical counter tracking the total number tokens resulting
360 from macro expansion. */
361 unsigned num_macro_tokens_counter = 0;
362
363 /* Wrapper around cpp_get_token to skip CPP_PADDING tokens
364 and not consume CPP_EOF. */
365 static const cpp_token *
366 cpp_get_token_no_padding (cpp_reader *pfile)
367 {
368 for (;;)
369 {
370 const cpp_token *ret = cpp_peek_token (pfile, 0);
371 if (ret->type == CPP_EOF)
372 return ret;
373 ret = cpp_get_token (pfile);
374 if (ret->type != CPP_PADDING)
375 return ret;
376 }
377 }
378
379 /* Handle meeting "__has_include" builtin macro. */
380
381 static int
382 builtin_has_include (cpp_reader *pfile, cpp_hashnode *op, bool has_next)
383 {
384 int result = 0;
385
386 if (!pfile->state.in_directive)
387 cpp_error (pfile, CPP_DL_ERROR,
388 "\"%s\" used outside of preprocessing directive",
389 NODE_NAME (op));
390
391 pfile->state.angled_headers = true;
392 const cpp_token *token = cpp_get_token_no_padding (pfile);
393 bool paren = token->type == CPP_OPEN_PAREN;
394 if (paren)
395 token = cpp_get_token_no_padding (pfile);
396 else
397 cpp_error (pfile, CPP_DL_ERROR,
398 "missing '(' before \"%s\" operand", NODE_NAME (op));
399 pfile->state.angled_headers = false;
400
401 bool bracket = token->type != CPP_STRING;
402 char *fname = NULL;
403 if (token->type == CPP_STRING || token->type == CPP_HEADER_NAME)
404 {
405 fname = XNEWVEC (char, token->val.str.len - 1);
406 memcpy (fname, token->val.str.text + 1, token->val.str.len - 2);
407 fname[token->val.str.len - 2] = '\0';
408 }
409 else if (token->type == CPP_LESS)
410 fname = _cpp_bracket_include (pfile);
411 else
412 cpp_error (pfile, CPP_DL_ERROR,
413 "operator \"%s\" requires a header-name", NODE_NAME (op));
414
415 if (fname)
416 {
417 /* Do not do the lookup if we're skipping, that's unnecessary
418 IO. */
419 if (!pfile->state.skip_eval
420 && _cpp_has_header (pfile, fname, bracket,
421 has_next ? IT_INCLUDE_NEXT : IT_INCLUDE))
422 result = 1;
423
424 XDELETEVEC (fname);
425 }
426
427 if (paren
428 && cpp_get_token_no_padding (pfile)->type != CPP_CLOSE_PAREN)
429 cpp_error (pfile, CPP_DL_ERROR,
430 "missing ')' after \"%s\" operand", NODE_NAME (op));
431
432 return result;
433 }
434
435 /* Emits a warning if NODE is a macro defined in the main file that
436 has not been used. */
437 int
438 _cpp_warn_if_unused_macro (cpp_reader *pfile, cpp_hashnode *node,
439 void *v ATTRIBUTE_UNUSED)
440 {
441 if (cpp_user_macro_p (node))
442 {
443 cpp_macro *macro = node->value.macro;
444
445 if (!macro->used
446 && MAIN_FILE_P (linemap_check_ordinary
447 (linemap_lookup (pfile->line_table,
448 macro->line))))
449 cpp_warning_with_line (pfile, CPP_W_UNUSED_MACROS, macro->line, 0,
450 "macro \"%s\" is not used", NODE_NAME (node));
451 }
452
453 return 1;
454 }
455
456 /* Allocates and returns a CPP_STRING token, containing TEXT of length
457 LEN, after null-terminating it. TEXT must be in permanent storage. */
458 static const cpp_token *
459 new_string_token (cpp_reader *pfile, unsigned char *text, unsigned int len)
460 {
461 cpp_token *token = _cpp_temp_token (pfile);
462
463 text[len] = '\0';
464 token->type = CPP_STRING;
465 token->val.str.len = len;
466 token->val.str.text = text;
467 token->flags = 0;
468 return token;
469 }
470
471 static const char * const monthnames[] =
472 {
473 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
474 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
475 };
476
477 /* Helper function for builtin_macro. Returns the text generated by
478 a builtin macro. */
479 const uchar *
480 _cpp_builtin_macro_text (cpp_reader *pfile, cpp_hashnode *node,
481 location_t loc)
482 {
483 const uchar *result = NULL;
484 linenum_type number = 1;
485
486 switch (node->value.builtin)
487 {
488 default:
489 cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
490 NODE_NAME (node));
491 break;
492
493 case BT_TIMESTAMP:
494 {
495 if (CPP_OPTION (pfile, warn_date_time))
496 cpp_warning (pfile, CPP_W_DATE_TIME, "macro \"%s\" might prevent "
497 "reproducible builds", NODE_NAME (node));
498
499 cpp_buffer *pbuffer = cpp_get_buffer (pfile);
500 if (pbuffer->timestamp == NULL)
501 {
502 /* Initialize timestamp value of the assotiated file. */
503 struct _cpp_file *file = cpp_get_file (pbuffer);
504 if (file)
505 {
506 /* Generate __TIMESTAMP__ string, that represents
507 the date and time of the last modification
508 of the current source file. The string constant
509 looks like "Sun Sep 16 01:03:52 1973". */
510 struct tm *tb = NULL;
511 struct stat *st = _cpp_get_file_stat (file);
512 if (st)
513 tb = localtime (&st->st_mtime);
514 if (tb)
515 {
516 char *str = asctime (tb);
517 size_t len = strlen (str);
518 unsigned char *buf = _cpp_unaligned_alloc (pfile, len + 2);
519 buf[0] = '"';
520 strcpy ((char *) buf + 1, str);
521 buf[len] = '"';
522 pbuffer->timestamp = buf;
523 }
524 else
525 {
526 cpp_errno (pfile, CPP_DL_WARNING,
527 "could not determine file timestamp");
528 pbuffer->timestamp = UC"\"??? ??? ?? ??:??:?? ????\"";
529 }
530 }
531 }
532 result = pbuffer->timestamp;
533 }
534 break;
535 case BT_FILE:
536 case BT_BASE_FILE:
537 {
538 unsigned int len;
539 const char *name;
540 uchar *buf;
541
542 if (node->value.builtin == BT_FILE)
543 name = linemap_get_expansion_filename (pfile->line_table,
544 pfile->line_table->highest_line);
545 else
546 {
547 name = _cpp_get_file_name (pfile->main_file);
548 if (!name)
549 abort ();
550 }
551 if (pfile->cb.remap_filename)
552 name = pfile->cb.remap_filename (name);
553 len = strlen (name);
554 buf = _cpp_unaligned_alloc (pfile, len * 2 + 3);
555 result = buf;
556 *buf = '"';
557 buf = cpp_quote_string (buf + 1, (const unsigned char *) name, len);
558 *buf++ = '"';
559 *buf = '\0';
560 }
561 break;
562
563 case BT_INCLUDE_LEVEL:
564 /* The line map depth counts the primary source as level 1, but
565 historically __INCLUDE_DEPTH__ has called the primary source
566 level 0. */
567 number = pfile->line_table->depth - 1;
568 break;
569
570 case BT_SPECLINE:
571 /* If __LINE__ is embedded in a macro, it must expand to the
572 line of the macro's invocation, not its definition.
573 Otherwise things like assert() will not work properly.
574 See WG14 N1911, WG21 N4220 sec 6.5, and PR 61861. */
575 if (CPP_OPTION (pfile, traditional))
576 loc = pfile->line_table->highest_line;
577 else
578 loc = linemap_resolve_location (pfile->line_table, loc,
579 LRK_MACRO_EXPANSION_POINT, NULL);
580 number = linemap_get_expansion_line (pfile->line_table, loc);
581 break;
582
583 /* __STDC__ has the value 1 under normal circumstances.
584 However, if (a) we are in a system header, (b) the option
585 stdc_0_in_system_headers is true (set by target config), and
586 (c) we are not in strictly conforming mode, then it has the
587 value 0. (b) and (c) are already checked in cpp_init_builtins. */
588 case BT_STDC:
589 if (cpp_in_system_header (pfile))
590 number = 0;
591 else
592 number = 1;
593 break;
594
595 case BT_DATE:
596 case BT_TIME:
597 if (CPP_OPTION (pfile, warn_date_time))
598 cpp_warning (pfile, CPP_W_DATE_TIME, "macro \"%s\" might prevent "
599 "reproducible builds", NODE_NAME (node));
600 if (pfile->date == NULL)
601 {
602 /* Allocate __DATE__ and __TIME__ strings from permanent
603 storage. We only do this once, and don't generate them
604 at init time, because time() and localtime() are very
605 slow on some systems. */
606 time_t tt;
607 struct tm *tb = NULL;
608
609 /* Set a reproducible timestamp for __DATE__ and __TIME__ macro
610 if SOURCE_DATE_EPOCH is defined. */
611 if (pfile->source_date_epoch == (time_t) -2
612 && pfile->cb.get_source_date_epoch != NULL)
613 pfile->source_date_epoch = pfile->cb.get_source_date_epoch (pfile);
614
615 if (pfile->source_date_epoch >= (time_t) 0)
616 tb = gmtime (&pfile->source_date_epoch);
617 else
618 {
619 /* (time_t) -1 is a legitimate value for "number of seconds
620 since the Epoch", so we have to do a little dance to
621 distinguish that from a genuine error. */
622 errno = 0;
623 tt = time (NULL);
624 if (tt != (time_t)-1 || errno == 0)
625 tb = localtime (&tt);
626 }
627
628 if (tb)
629 {
630 pfile->date = _cpp_unaligned_alloc (pfile,
631 sizeof ("\"Oct 11 1347\""));
632 sprintf ((char *) pfile->date, "\"%s %2d %4d\"",
633 monthnames[tb->tm_mon], tb->tm_mday,
634 tb->tm_year + 1900);
635
636 pfile->time = _cpp_unaligned_alloc (pfile,
637 sizeof ("\"12:34:56\""));
638 sprintf ((char *) pfile->time, "\"%02d:%02d:%02d\"",
639 tb->tm_hour, tb->tm_min, tb->tm_sec);
640 }
641 else
642 {
643 cpp_errno (pfile, CPP_DL_WARNING,
644 "could not determine date and time");
645
646 pfile->date = UC"\"??? ?? ????\"";
647 pfile->time = UC"\"??:??:??\"";
648 }
649 }
650
651 if (node->value.builtin == BT_DATE)
652 result = pfile->date;
653 else
654 result = pfile->time;
655 break;
656
657 case BT_COUNTER:
658 if (CPP_OPTION (pfile, directives_only) && pfile->state.in_directive)
659 cpp_error (pfile, CPP_DL_ERROR,
660 "__COUNTER__ expanded inside directive with -fdirectives-only");
661 number = pfile->counter++;
662 break;
663
664 case BT_HAS_ATTRIBUTE:
665 number = pfile->cb.has_attribute (pfile);
666 break;
667
668 case BT_HAS_BUILTIN:
669 number = pfile->cb.has_builtin (pfile);
670 break;
671
672 case BT_HAS_INCLUDE:
673 case BT_HAS_INCLUDE_NEXT:
674 number = builtin_has_include (pfile, node,
675 node->value.builtin == BT_HAS_INCLUDE_NEXT);
676 break;
677 }
678
679 if (result == NULL)
680 {
681 /* 21 bytes holds all NUL-terminated unsigned 64-bit numbers. */
682 result = _cpp_unaligned_alloc (pfile, 21);
683 sprintf ((char *) result, "%u", number);
684 }
685
686 return result;
687 }
688
689 /* Convert builtin macros like __FILE__ to a token and push it on the
690 context stack. Also handles _Pragma, for which a new token may not
691 be created. Returns 1 if it generates a new token context, 0 to
692 return the token to the caller. LOC is the location of the expansion
693 point of the macro. */
694 static int
695 builtin_macro (cpp_reader *pfile, cpp_hashnode *node,
696 location_t loc, location_t expand_loc)
697 {
698 const uchar *buf;
699 size_t len;
700 char *nbuf;
701
702 if (node->value.builtin == BT_PRAGMA)
703 {
704 /* Don't interpret _Pragma within directives. The standard is
705 not clear on this, but to me this makes most sense. */
706 if (pfile->state.in_directive)
707 return 0;
708
709 return _cpp_do__Pragma (pfile, loc);
710 }
711
712 buf = _cpp_builtin_macro_text (pfile, node, expand_loc);
713 len = ustrlen (buf);
714 nbuf = (char *) alloca (len + 1);
715 memcpy (nbuf, buf, len);
716 nbuf[len]='\n';
717
718 cpp_push_buffer (pfile, (uchar *) nbuf, len, /* from_stage3 */ true);
719 _cpp_clean_line (pfile);
720
721 /* Set pfile->cur_token as required by _cpp_lex_direct. */
722 pfile->cur_token = _cpp_temp_token (pfile);
723 cpp_token *token = _cpp_lex_direct (pfile);
724 /* We should point to the expansion point of the builtin macro. */
725 token->src_loc = loc;
726 if (pfile->context->tokens_kind == TOKENS_KIND_EXTENDED)
727 {
728 /* We are tracking tokens resulting from macro expansion.
729 Create a macro line map and generate a virtual location for
730 the token resulting from the expansion of the built-in
731 macro. */
732 location_t *virt_locs = NULL;
733 _cpp_buff *token_buf = tokens_buff_new (pfile, 1, &virt_locs);
734 const line_map_macro * map =
735 linemap_enter_macro (pfile->line_table, node, loc, 1);
736 tokens_buff_add_token (token_buf, virt_locs, token,
737 pfile->line_table->builtin_location,
738 pfile->line_table->builtin_location,
739 map, /*macro_token_index=*/0);
740 push_extended_tokens_context (pfile, node, token_buf, virt_locs,
741 (const cpp_token **)token_buf->base,
742 1);
743 }
744 else
745 _cpp_push_token_context (pfile, NULL, token, 1);
746 if (pfile->buffer->cur != pfile->buffer->rlimit)
747 cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"",
748 NODE_NAME (node));
749 _cpp_pop_buffer (pfile);
750
751 return 1;
752 }
753
754 /* Copies SRC, of length LEN, to DEST, adding backslashes before all
755 backslashes and double quotes. DEST must be of sufficient size.
756 Returns a pointer to the end of the string. */
757 uchar *
758 cpp_quote_string (uchar *dest, const uchar *src, unsigned int len)
759 {
760 while (len--)
761 {
762 uchar c = *src++;
763
764 switch (c)
765 {
766 case '\n':
767 /* Naked LF can appear in raw string literals */
768 c = 'n';
769 /* FALLTHROUGH */
770
771 case '\\':
772 case '"':
773 *dest++ = '\\';
774 /* FALLTHROUGH */
775
776 default:
777 *dest++ = c;
778 }
779 }
780
781 return dest;
782 }
783
784 /* Convert a token sequence ARG to a single string token according to
785 the rules of the ISO C #-operator. */
786 static const cpp_token *
787 stringify_arg (cpp_reader *pfile, macro_arg *arg)
788 {
789 unsigned char *dest;
790 unsigned int i, escape_it, backslash_count = 0;
791 const cpp_token *source = NULL;
792 size_t len;
793
794 if (BUFF_ROOM (pfile->u_buff) < 3)
795 _cpp_extend_buff (pfile, &pfile->u_buff, 3);
796 dest = BUFF_FRONT (pfile->u_buff);
797 *dest++ = '"';
798
799 /* Loop, reading in the argument's tokens. */
800 for (i = 0; i < arg->count; i++)
801 {
802 const cpp_token *token = arg->first[i];
803
804 if (token->type == CPP_PADDING)
805 {
806 if (source == NULL
807 || (!(source->flags & PREV_WHITE)
808 && token->val.source == NULL))
809 source = token->val.source;
810 continue;
811 }
812
813 escape_it = (token->type == CPP_STRING || token->type == CPP_CHAR
814 || token->type == CPP_WSTRING || token->type == CPP_WCHAR
815 || token->type == CPP_STRING32 || token->type == CPP_CHAR32
816 || token->type == CPP_STRING16 || token->type == CPP_CHAR16
817 || token->type == CPP_UTF8STRING || token->type == CPP_UTF8CHAR
818 || cpp_userdef_string_p (token->type)
819 || cpp_userdef_char_p (token->type));
820
821 /* Room for each char being written in octal, initial space and
822 final quote and NUL. */
823 len = cpp_token_len (token);
824 if (escape_it)
825 len *= 4;
826 len += 3;
827
828 if ((size_t) (BUFF_LIMIT (pfile->u_buff) - dest) < len)
829 {
830 size_t len_so_far = dest - BUFF_FRONT (pfile->u_buff);
831 _cpp_extend_buff (pfile, &pfile->u_buff, len);
832 dest = BUFF_FRONT (pfile->u_buff) + len_so_far;
833 }
834
835 /* Leading white space? */
836 if (dest - 1 != BUFF_FRONT (pfile->u_buff))
837 {
838 if (source == NULL)
839 source = token;
840 if (source->flags & PREV_WHITE)
841 *dest++ = ' ';
842 }
843 source = NULL;
844
845 if (escape_it)
846 {
847 _cpp_buff *buff = _cpp_get_buff (pfile, len);
848 unsigned char *buf = BUFF_FRONT (buff);
849 len = cpp_spell_token (pfile, token, buf, true) - buf;
850 dest = cpp_quote_string (dest, buf, len);
851 _cpp_release_buff (pfile, buff);
852 }
853 else
854 dest = cpp_spell_token (pfile, token, dest, true);
855
856 if (token->type == CPP_OTHER && token->val.str.text[0] == '\\')
857 backslash_count++;
858 else
859 backslash_count = 0;
860 }
861
862 /* Ignore the final \ of invalid string literals. */
863 if (backslash_count & 1)
864 {
865 cpp_error (pfile, CPP_DL_WARNING,
866 "invalid string literal, ignoring final '\\'");
867 dest--;
868 }
869
870 /* Commit the memory, including NUL, and return the token. */
871 *dest++ = '"';
872 len = dest - BUFF_FRONT (pfile->u_buff);
873 BUFF_FRONT (pfile->u_buff) = dest + 1;
874 return new_string_token (pfile, dest - len, len);
875 }
876
877 /* Try to paste two tokens. On success, return nonzero. In any
878 case, PLHS is updated to point to the pasted token, which is
879 guaranteed to not have the PASTE_LEFT flag set. LOCATION is
880 the virtual location used for error reporting. */
881 static bool
882 paste_tokens (cpp_reader *pfile, location_t location,
883 const cpp_token **plhs, const cpp_token *rhs)
884 {
885 unsigned char *buf, *end, *lhsend;
886 cpp_token *lhs;
887 unsigned int len;
888
889 len = cpp_token_len (*plhs) + cpp_token_len (rhs) + 1;
890 buf = (unsigned char *) alloca (len);
891 end = lhsend = cpp_spell_token (pfile, *plhs, buf, true);
892
893 /* Avoid comment headers, since they are still processed in stage 3.
894 It is simpler to insert a space here, rather than modifying the
895 lexer to ignore comments in some circumstances. Simply returning
896 false doesn't work, since we want to clear the PASTE_LEFT flag. */
897 if ((*plhs)->type == CPP_DIV && rhs->type != CPP_EQ)
898 *end++ = ' ';
899 /* In one obscure case we might see padding here. */
900 if (rhs->type != CPP_PADDING)
901 end = cpp_spell_token (pfile, rhs, end, true);
902 *end = '\n';
903
904 cpp_push_buffer (pfile, buf, end - buf, /* from_stage3 */ true);
905 _cpp_clean_line (pfile);
906
907 /* Set pfile->cur_token as required by _cpp_lex_direct. */
908 pfile->cur_token = _cpp_temp_token (pfile);
909 lhs = _cpp_lex_direct (pfile);
910 if (pfile->buffer->cur != pfile->buffer->rlimit)
911 {
912 location_t saved_loc = lhs->src_loc;
913
914 _cpp_pop_buffer (pfile);
915 _cpp_backup_tokens (pfile, 1);
916 *lhsend = '\0';
917
918 /* We have to remove the PASTE_LEFT flag from the old lhs, but
919 we want to keep the new location. */
920 *lhs = **plhs;
921 *plhs = lhs;
922 lhs->src_loc = saved_loc;
923 lhs->flags &= ~PASTE_LEFT;
924
925 /* Mandatory error for all apart from assembler. */
926 if (CPP_OPTION (pfile, lang) != CLK_ASM)
927 cpp_error_with_line (pfile, CPP_DL_ERROR, location, 0,
928 "pasting \"%s\" and \"%s\" does not give a valid preprocessing token",
929 buf, cpp_token_as_text (pfile, rhs));
930 return false;
931 }
932
933 *plhs = lhs;
934 _cpp_pop_buffer (pfile);
935 return true;
936 }
937
938 /* Handles an arbitrarily long sequence of ## operators, with initial
939 operand LHS. This implementation is left-associative,
940 non-recursive, and finishes a paste before handling succeeding
941 ones. If a paste fails, we back up to the RHS of the failing ##
942 operator before pushing the context containing the result of prior
943 successful pastes, with the effect that the RHS appears in the
944 output stream after the pasted LHS normally. */
945 static void
946 paste_all_tokens (cpp_reader *pfile, const cpp_token *lhs)
947 {
948 const cpp_token *rhs = NULL;
949 cpp_context *context = pfile->context;
950 location_t virt_loc = 0;
951
952 /* We are expanding a macro and we must have been called on a token
953 that appears at the left hand side of a ## operator. */
954 if (macro_of_context (pfile->context) == NULL
955 || (!(lhs->flags & PASTE_LEFT)))
956 abort ();
957
958 if (context->tokens_kind == TOKENS_KIND_EXTENDED)
959 /* The caller must have called consume_next_token_from_context
960 right before calling us. That has incremented the pointer to
961 the current virtual location. So it now points to the location
962 of the token that comes right after *LHS. We want the
963 resulting pasted token to have the location of the current
964 *LHS, though. */
965 virt_loc = context->c.mc->cur_virt_loc[-1];
966 else
967 /* We are not tracking macro expansion. So the best virtual
968 location we can get here is the expansion point of the macro we
969 are currently expanding. */
970 virt_loc = pfile->invocation_location;
971
972 do
973 {
974 /* Take the token directly from the current context. We can do
975 this, because we are in the replacement list of either an
976 object-like macro, or a function-like macro with arguments
977 inserted. In either case, the constraints to #define
978 guarantee we have at least one more token. */
979 if (context->tokens_kind == TOKENS_KIND_DIRECT)
980 rhs = FIRST (context).token++;
981 else if (context->tokens_kind == TOKENS_KIND_INDIRECT)
982 rhs = *FIRST (context).ptoken++;
983 else if (context->tokens_kind == TOKENS_KIND_EXTENDED)
984 {
985 /* So we are in presence of an extended token context, which
986 means that each token in this context has a virtual
987 location attached to it. So let's not forget to update
988 the pointer to the current virtual location of the
989 current token when we update the pointer to the current
990 token */
991
992 rhs = *FIRST (context).ptoken++;
993 /* context->c.mc must be non-null, as if we were not in a
994 macro context, context->tokens_kind could not be equal to
995 TOKENS_KIND_EXTENDED. */
996 context->c.mc->cur_virt_loc++;
997 }
998
999 if (rhs->type == CPP_PADDING)
1000 {
1001 if (rhs->flags & PASTE_LEFT)
1002 abort ();
1003 }
1004 if (!paste_tokens (pfile, virt_loc, &lhs, rhs))
1005 break;
1006 }
1007 while (rhs->flags & PASTE_LEFT);
1008
1009 /* Put the resulting token in its own context. */
1010 if (context->tokens_kind == TOKENS_KIND_EXTENDED)
1011 {
1012 location_t *virt_locs = NULL;
1013 _cpp_buff *token_buf = tokens_buff_new (pfile, 1, &virt_locs);
1014 tokens_buff_add_token (token_buf, virt_locs, lhs,
1015 virt_loc, 0, NULL, 0);
1016 push_extended_tokens_context (pfile, context->c.mc->macro_node,
1017 token_buf, virt_locs,
1018 (const cpp_token **)token_buf->base, 1);
1019 }
1020 else
1021 _cpp_push_token_context (pfile, NULL, lhs, 1);
1022 }
1023
1024 /* Returns TRUE if the number of arguments ARGC supplied in an
1025 invocation of the MACRO referenced by NODE is valid. An empty
1026 invocation to a macro with no parameters should pass ARGC as zero.
1027
1028 Note that MACRO cannot necessarily be deduced from NODE, in case
1029 NODE was redefined whilst collecting arguments. */
1030 bool
1031 _cpp_arguments_ok (cpp_reader *pfile, cpp_macro *macro, const cpp_hashnode *node, unsigned int argc)
1032 {
1033 if (argc == macro->paramc)
1034 return true;
1035
1036 if (argc < macro->paramc)
1037 {
1038 /* In C++20 (here the va_opt flag is used), and also as a GNU
1039 extension, variadic arguments are allowed to not appear in
1040 the invocation at all.
1041 e.g. #define debug(format, args...) something
1042 debug("string");
1043
1044 This is exactly the same as if an empty variadic list had been
1045 supplied - debug("string", ). */
1046
1047 if (argc + 1 == macro->paramc && macro->variadic)
1048 {
1049 if (CPP_PEDANTIC (pfile) && ! macro->syshdr
1050 && ! CPP_OPTION (pfile, va_opt))
1051 {
1052 if (CPP_OPTION (pfile, cplusplus))
1053 cpp_error (pfile, CPP_DL_PEDWARN,
1054 "ISO C++11 requires at least one argument "
1055 "for the \"...\" in a variadic macro");
1056 else
1057 cpp_error (pfile, CPP_DL_PEDWARN,
1058 "ISO C99 requires at least one argument "
1059 "for the \"...\" in a variadic macro");
1060 }
1061 return true;
1062 }
1063
1064 cpp_error (pfile, CPP_DL_ERROR,
1065 "macro \"%s\" requires %u arguments, but only %u given",
1066 NODE_NAME (node), macro->paramc, argc);
1067 }
1068 else
1069 cpp_error (pfile, CPP_DL_ERROR,
1070 "macro \"%s\" passed %u arguments, but takes just %u",
1071 NODE_NAME (node), argc, macro->paramc);
1072
1073 if (macro->line > RESERVED_LOCATION_COUNT)
1074 cpp_error_at (pfile, CPP_DL_NOTE, macro->line, "macro \"%s\" defined here",
1075 NODE_NAME (node));
1076
1077 return false;
1078 }
1079
1080 /* Reads and returns the arguments to a function-like macro
1081 invocation. Assumes the opening parenthesis has been processed.
1082 If there is an error, emits an appropriate diagnostic and returns
1083 NULL. Each argument is terminated by a CPP_EOF token, for the
1084 future benefit of expand_arg(). If there are any deferred
1085 #pragma directives among macro arguments, store pointers to the
1086 CPP_PRAGMA ... CPP_PRAGMA_EOL tokens into *PRAGMA_BUFF buffer.
1087
1088 What is returned is the buffer that contains the memory allocated
1089 to hold the macro arguments. NODE is the name of the macro this
1090 function is dealing with. If NUM_ARGS is non-NULL, *NUM_ARGS is
1091 set to the actual number of macro arguments allocated in the
1092 returned buffer. */
1093 static _cpp_buff *
1094 collect_args (cpp_reader *pfile, const cpp_hashnode *node,
1095 _cpp_buff **pragma_buff, unsigned *num_args)
1096 {
1097 _cpp_buff *buff, *base_buff;
1098 cpp_macro *macro;
1099 macro_arg *args, *arg;
1100 const cpp_token *token;
1101 unsigned int argc;
1102 location_t virt_loc;
1103 bool track_macro_expansion_p = CPP_OPTION (pfile, track_macro_expansion);
1104 unsigned num_args_alloced = 0;
1105
1106 macro = node->value.macro;
1107 if (macro->paramc)
1108 argc = macro->paramc;
1109 else
1110 argc = 1;
1111
1112 #define DEFAULT_NUM_TOKENS_PER_MACRO_ARG 50
1113 #define ARG_TOKENS_EXTENT 1000
1114
1115 buff = _cpp_get_buff (pfile, argc * (DEFAULT_NUM_TOKENS_PER_MACRO_ARG
1116 * sizeof (cpp_token *)
1117 + sizeof (macro_arg)));
1118 base_buff = buff;
1119 args = (macro_arg *) buff->base;
1120 memset (args, 0, argc * sizeof (macro_arg));
1121 buff->cur = (unsigned char *) &args[argc];
1122 arg = args, argc = 0;
1123
1124 /* Collect the tokens making up each argument. We don't yet know
1125 how many arguments have been supplied, whether too many or too
1126 few. Hence the slightly bizarre usage of "argc" and "arg". */
1127 do
1128 {
1129 unsigned int paren_depth = 0;
1130 unsigned int ntokens = 0;
1131 unsigned virt_locs_capacity = DEFAULT_NUM_TOKENS_PER_MACRO_ARG;
1132 num_args_alloced++;
1133
1134 argc++;
1135 arg->first = (const cpp_token **) buff->cur;
1136 if (track_macro_expansion_p)
1137 {
1138 virt_locs_capacity = DEFAULT_NUM_TOKENS_PER_MACRO_ARG;
1139 arg->virt_locs = XNEWVEC (location_t,
1140 virt_locs_capacity);
1141 }
1142
1143 for (;;)
1144 {
1145 /* Require space for 2 new tokens (including a CPP_EOF). */
1146 if ((unsigned char *) &arg->first[ntokens + 2] > buff->limit)
1147 {
1148 buff = _cpp_append_extend_buff (pfile, buff,
1149 ARG_TOKENS_EXTENT
1150 * sizeof (cpp_token *));
1151 arg->first = (const cpp_token **) buff->cur;
1152 }
1153 if (track_macro_expansion_p
1154 && (ntokens + 2 > virt_locs_capacity))
1155 {
1156 virt_locs_capacity += ARG_TOKENS_EXTENT;
1157 arg->virt_locs = XRESIZEVEC (location_t,
1158 arg->virt_locs,
1159 virt_locs_capacity);
1160 }
1161
1162 token = cpp_get_token_1 (pfile, &virt_loc);
1163
1164 if (token->type == CPP_PADDING)
1165 {
1166 /* Drop leading padding. */
1167 if (ntokens == 0)
1168 continue;
1169 }
1170 else if (token->type == CPP_OPEN_PAREN)
1171 paren_depth++;
1172 else if (token->type == CPP_CLOSE_PAREN)
1173 {
1174 if (paren_depth-- == 0)
1175 break;
1176 }
1177 else if (token->type == CPP_COMMA)
1178 {
1179 /* A comma does not terminate an argument within
1180 parentheses or as part of a variable argument. */
1181 if (paren_depth == 0
1182 && ! (macro->variadic && argc == macro->paramc))
1183 break;
1184 }
1185 else if (token->type == CPP_EOF
1186 || (token->type == CPP_HASH && token->flags & BOL))
1187 break;
1188 else if (token->type == CPP_PRAGMA)
1189 {
1190 cpp_token *newtok = _cpp_temp_token (pfile);
1191
1192 /* CPP_PRAGMA token lives in directive_result, which will
1193 be overwritten on the next directive. */
1194 *newtok = *token;
1195 token = newtok;
1196 do
1197 {
1198 if (*pragma_buff == NULL
1199 || BUFF_ROOM (*pragma_buff) < sizeof (cpp_token *))
1200 {
1201 _cpp_buff *next;
1202 if (*pragma_buff == NULL)
1203 *pragma_buff
1204 = _cpp_get_buff (pfile, 32 * sizeof (cpp_token *));
1205 else
1206 {
1207 next = *pragma_buff;
1208 *pragma_buff
1209 = _cpp_get_buff (pfile,
1210 (BUFF_FRONT (*pragma_buff)
1211 - (*pragma_buff)->base) * 2);
1212 (*pragma_buff)->next = next;
1213 }
1214 }
1215 *(const cpp_token **) BUFF_FRONT (*pragma_buff) = token;
1216 BUFF_FRONT (*pragma_buff) += sizeof (cpp_token *);
1217 if (token->type == CPP_PRAGMA_EOL)
1218 break;
1219 token = cpp_get_token_1 (pfile, &virt_loc);
1220 }
1221 while (token->type != CPP_EOF);
1222
1223 /* In deferred pragmas parsing_args and prevent_expansion
1224 had been changed, reset it. */
1225 pfile->state.parsing_args = 2;
1226 pfile->state.prevent_expansion = 1;
1227
1228 if (token->type == CPP_EOF)
1229 break;
1230 else
1231 continue;
1232 }
1233 set_arg_token (arg, token, virt_loc,
1234 ntokens, MACRO_ARG_TOKEN_NORMAL,
1235 CPP_OPTION (pfile, track_macro_expansion));
1236 ntokens++;
1237 }
1238
1239 /* Drop trailing padding. */
1240 while (ntokens > 0 && arg->first[ntokens - 1]->type == CPP_PADDING)
1241 ntokens--;
1242
1243 arg->count = ntokens;
1244 set_arg_token (arg, &pfile->eof, pfile->eof.src_loc,
1245 ntokens, MACRO_ARG_TOKEN_NORMAL,
1246 CPP_OPTION (pfile, track_macro_expansion));
1247
1248 /* Terminate the argument. Excess arguments loop back and
1249 overwrite the final legitimate argument, before failing. */
1250 if (argc <= macro->paramc)
1251 {
1252 buff->cur = (unsigned char *) &arg->first[ntokens + 1];
1253 if (argc != macro->paramc)
1254 arg++;
1255 }
1256 }
1257 while (token->type != CPP_CLOSE_PAREN && token->type != CPP_EOF);
1258
1259 if (token->type == CPP_EOF)
1260 {
1261 /* We still need the CPP_EOF to end directives, to end
1262 pre-expansion of a macro argument, and at the end of the main
1263 file. We do not want it at the end of a -include'd (forced)
1264 header file. */
1265 if (pfile->state.in_directive
1266 || !pfile->line_table->depth
1267 || pfile->context->prev)
1268 _cpp_backup_tokens (pfile, 1);
1269 cpp_error (pfile, CPP_DL_ERROR,
1270 "unterminated argument list invoking macro \"%s\"",
1271 NODE_NAME (node));
1272 }
1273 else
1274 {
1275 /* A single empty argument is counted as no argument. */
1276 if (argc == 1 && macro->paramc == 0 && args[0].count == 0)
1277 argc = 0;
1278 if (_cpp_arguments_ok (pfile, macro, node, argc))
1279 {
1280 /* GCC has special semantics for , ## b where b is a varargs
1281 parameter: we remove the comma if b was omitted entirely.
1282 If b was merely an empty argument, the comma is retained.
1283 If the macro takes just one (varargs) parameter, then we
1284 retain the comma only if we are standards conforming.
1285
1286 If FIRST is NULL replace_args () swallows the comma. */
1287 if (macro->variadic && (argc < macro->paramc
1288 || (argc == 1 && args[0].count == 0
1289 && !CPP_OPTION (pfile, std))))
1290 args[macro->paramc - 1].first = NULL;
1291 if (num_args)
1292 *num_args = num_args_alloced;
1293 return base_buff;
1294 }
1295 }
1296
1297 /* An error occurred. */
1298 _cpp_release_buff (pfile, base_buff);
1299 return NULL;
1300 }
1301
1302 /* Search for an opening parenthesis to the macro of NODE, in such a
1303 way that, if none is found, we don't lose the information in any
1304 intervening padding tokens. If we find the parenthesis, collect
1305 the arguments and return the buffer containing them. PRAGMA_BUFF
1306 argument is the same as in collect_args. If NUM_ARGS is non-NULL,
1307 *NUM_ARGS is set to the number of arguments contained in the
1308 returned buffer. */
1309 static _cpp_buff *
1310 funlike_invocation_p (cpp_reader *pfile, cpp_hashnode *node,
1311 _cpp_buff **pragma_buff, unsigned *num_args)
1312 {
1313 const cpp_token *token, *padding = NULL;
1314
1315 for (;;)
1316 {
1317 token = cpp_get_token (pfile);
1318 if (token->type != CPP_PADDING)
1319 break;
1320 if (padding == NULL
1321 || (!(padding->flags & PREV_WHITE) && token->val.source == NULL))
1322 padding = token;
1323 }
1324
1325 if (token->type == CPP_OPEN_PAREN)
1326 {
1327 pfile->state.parsing_args = 2;
1328 return collect_args (pfile, node, pragma_buff, num_args);
1329 }
1330
1331 /* CPP_EOF can be the end of macro arguments, or the end of the
1332 file. We mustn't back up over the latter. Ugh. */
1333 if (token->type != CPP_EOF || token == &pfile->eof)
1334 {
1335 /* Back up. We may have skipped padding, in which case backing
1336 up more than one token when expanding macros is in general
1337 too difficult. We re-insert it in its own context. */
1338 _cpp_backup_tokens (pfile, 1);
1339 if (padding)
1340 _cpp_push_token_context (pfile, NULL, padding, 1);
1341 }
1342
1343 return NULL;
1344 }
1345
1346 /* Return the real number of tokens in the expansion of MACRO. */
1347 static inline unsigned int
1348 macro_real_token_count (const cpp_macro *macro)
1349 {
1350 if (__builtin_expect (!macro->extra_tokens, true))
1351 return macro->count;
1352
1353 for (unsigned i = macro->count; i--;)
1354 if (macro->exp.tokens[i].type != CPP_PASTE)
1355 return i + 1;
1356
1357 return 0;
1358 }
1359
1360 /* Push the context of a macro with hash entry NODE onto the context
1361 stack. If we can successfully expand the macro, we push a context
1362 containing its yet-to-be-rescanned replacement list and return one.
1363 If there were additionally any unexpanded deferred #pragma
1364 directives among macro arguments, push another context containing
1365 the pragma tokens before the yet-to-be-rescanned replacement list
1366 and return two. Otherwise, we don't push a context and return
1367 zero. LOCATION is the location of the expansion point of the
1368 macro. */
1369 static int
1370 enter_macro_context (cpp_reader *pfile, cpp_hashnode *node,
1371 const cpp_token *result, location_t location)
1372 {
1373 /* The presence of a macro invalidates a file's controlling macro. */
1374 pfile->mi_valid = false;
1375
1376 pfile->state.angled_headers = false;
1377
1378 /* From here to when we push the context for the macro later down
1379 this function, we need to flag the fact that we are about to
1380 expand a macro. This is useful when -ftrack-macro-expansion is
1381 turned off. In that case, we need to record the location of the
1382 expansion point of the top-most macro we are about to to expand,
1383 into pfile->invocation_location. But we must not record any such
1384 location once the process of expanding the macro starts; that is,
1385 we must not do that recording between now and later down this
1386 function where set this flag to FALSE. */
1387 pfile->about_to_expand_macro_p = true;
1388
1389 if (cpp_user_macro_p (node))
1390 {
1391 cpp_macro *macro = node->value.macro;
1392 _cpp_buff *pragma_buff = NULL;
1393
1394 if (macro->fun_like)
1395 {
1396 _cpp_buff *buff;
1397 unsigned num_args = 0;
1398
1399 pfile->state.prevent_expansion++;
1400 pfile->keep_tokens++;
1401 pfile->state.parsing_args = 1;
1402 buff = funlike_invocation_p (pfile, node, &pragma_buff,
1403 &num_args);
1404 pfile->state.parsing_args = 0;
1405 pfile->keep_tokens--;
1406 pfile->state.prevent_expansion--;
1407
1408 if (buff == NULL)
1409 {
1410 if (CPP_WTRADITIONAL (pfile) && ! node->value.macro->syshdr)
1411 cpp_warning (pfile, CPP_W_TRADITIONAL,
1412 "function-like macro \"%s\" must be used with arguments in traditional C",
1413 NODE_NAME (node));
1414
1415 if (pragma_buff)
1416 _cpp_release_buff (pfile, pragma_buff);
1417
1418 pfile->about_to_expand_macro_p = false;
1419 return 0;
1420 }
1421
1422 if (macro->paramc > 0)
1423 replace_args (pfile, node, macro,
1424 (macro_arg *) buff->base,
1425 location);
1426 /* Free the memory used by the arguments of this
1427 function-like macro. This memory has been allocated by
1428 funlike_invocation_p and by replace_args. */
1429 delete_macro_args (buff, num_args);
1430 }
1431
1432 /* Disable the macro within its expansion. */
1433 node->flags |= NODE_DISABLED;
1434
1435 /* Laziness can only affect the expansion tokens of the macro,
1436 not its fun-likeness or parameters. */
1437 _cpp_maybe_notify_macro_use (pfile, node);
1438 if (pfile->cb.used)
1439 pfile->cb.used (pfile, location, node);
1440
1441 macro->used = 1;
1442
1443 if (macro->paramc == 0)
1444 {
1445 unsigned tokens_count = macro_real_token_count (macro);
1446 if (CPP_OPTION (pfile, track_macro_expansion))
1447 {
1448 unsigned int i;
1449 const cpp_token *src = macro->exp.tokens;
1450 const line_map_macro *map;
1451 location_t *virt_locs = NULL;
1452 _cpp_buff *macro_tokens
1453 = tokens_buff_new (pfile, tokens_count, &virt_locs);
1454
1455 /* Create a macro map to record the locations of the
1456 tokens that are involved in the expansion. LOCATION
1457 is the location of the macro expansion point. */
1458 map = linemap_enter_macro (pfile->line_table,
1459 node, location, tokens_count);
1460 for (i = 0; i < tokens_count; ++i)
1461 {
1462 tokens_buff_add_token (macro_tokens, virt_locs,
1463 src, src->src_loc,
1464 src->src_loc, map, i);
1465 ++src;
1466 }
1467 push_extended_tokens_context (pfile, node,
1468 macro_tokens,
1469 virt_locs,
1470 (const cpp_token **)
1471 macro_tokens->base,
1472 tokens_count);
1473 }
1474 else
1475 _cpp_push_token_context (pfile, node, macro->exp.tokens,
1476 tokens_count);
1477 num_macro_tokens_counter += tokens_count;
1478 }
1479
1480 if (pragma_buff)
1481 {
1482 if (!pfile->state.in_directive)
1483 _cpp_push_token_context (pfile, NULL,
1484 padding_token (pfile, result), 1);
1485 do
1486 {
1487 unsigned tokens_count;
1488 _cpp_buff *tail = pragma_buff->next;
1489 pragma_buff->next = NULL;
1490 tokens_count = ((const cpp_token **) BUFF_FRONT (pragma_buff)
1491 - (const cpp_token **) pragma_buff->base);
1492 push_ptoken_context (pfile, NULL, pragma_buff,
1493 (const cpp_token **) pragma_buff->base,
1494 tokens_count);
1495 pragma_buff = tail;
1496 if (!CPP_OPTION (pfile, track_macro_expansion))
1497 num_macro_tokens_counter += tokens_count;
1498
1499 }
1500 while (pragma_buff != NULL);
1501 pfile->about_to_expand_macro_p = false;
1502 return 2;
1503 }
1504
1505 pfile->about_to_expand_macro_p = false;
1506 return 1;
1507 }
1508
1509 pfile->about_to_expand_macro_p = false;
1510 /* Handle built-in macros and the _Pragma operator. */
1511 {
1512 location_t expand_loc;
1513
1514 if (/* The top-level macro invocation that triggered the expansion
1515 we are looking at is with a function-like user macro ... */
1516 cpp_fun_like_macro_p (pfile->top_most_macro_node)
1517 /* ... and we are tracking the macro expansion. */
1518 && CPP_OPTION (pfile, track_macro_expansion))
1519 /* Then the location of the end of the macro invocation is the
1520 location of the expansion point of this macro. */
1521 expand_loc = location;
1522 else
1523 /* Otherwise, the location of the end of the macro invocation is
1524 the location of the expansion point of that top-level macro
1525 invocation. */
1526 expand_loc = pfile->invocation_location;
1527
1528 return builtin_macro (pfile, node, location, expand_loc);
1529 }
1530 }
1531
1532 /* De-allocate the memory used by BUFF which is an array of instances
1533 of macro_arg. NUM_ARGS is the number of instances of macro_arg
1534 present in BUFF. */
1535 static void
1536 delete_macro_args (_cpp_buff *buff, unsigned num_args)
1537 {
1538 macro_arg *macro_args;
1539 unsigned i;
1540
1541 if (buff == NULL)
1542 return;
1543
1544 macro_args = (macro_arg *) buff->base;
1545
1546 /* Walk instances of macro_arg to free their expanded tokens as well
1547 as their macro_arg::virt_locs members. */
1548 for (i = 0; i < num_args; ++i)
1549 {
1550 if (macro_args[i].expanded)
1551 {
1552 free (macro_args[i].expanded);
1553 macro_args[i].expanded = NULL;
1554 }
1555 if (macro_args[i].virt_locs)
1556 {
1557 free (macro_args[i].virt_locs);
1558 macro_args[i].virt_locs = NULL;
1559 }
1560 if (macro_args[i].expanded_virt_locs)
1561 {
1562 free (macro_args[i].expanded_virt_locs);
1563 macro_args[i].expanded_virt_locs = NULL;
1564 }
1565 }
1566 _cpp_free_buff (buff);
1567 }
1568
1569 /* Set the INDEXth token of the macro argument ARG. TOKEN is the token
1570 to set, LOCATION is its virtual location. "Virtual" location means
1571 the location that encodes loci across macro expansion. Otherwise
1572 it has to be TOKEN->SRC_LOC. KIND is the kind of tokens the
1573 argument ARG is supposed to contain. Note that ARG must be
1574 tailored so that it has enough room to contain INDEX + 1 numbers of
1575 tokens, at least. */
1576 static void
1577 set_arg_token (macro_arg *arg, const cpp_token *token,
1578 location_t location, size_t index,
1579 enum macro_arg_token_kind kind,
1580 bool track_macro_exp_p)
1581 {
1582 const cpp_token **token_ptr;
1583 location_t *loc = NULL;
1584
1585 token_ptr =
1586 arg_token_ptr_at (arg, index, kind,
1587 track_macro_exp_p ? &loc : NULL);
1588 *token_ptr = token;
1589
1590 if (loc != NULL)
1591 {
1592 /* We can't set the location of a stringified argument
1593 token and we can't set any location if we aren't tracking
1594 macro expansion locations. */
1595 gcc_checking_assert (kind != MACRO_ARG_TOKEN_STRINGIFIED
1596 && track_macro_exp_p);
1597 *loc = location;
1598 }
1599 }
1600
1601 /* Get the pointer to the location of the argument token of the
1602 function-like macro argument ARG. This function must be called
1603 only when we -ftrack-macro-expansion is on. */
1604 static const location_t *
1605 get_arg_token_location (const macro_arg *arg,
1606 enum macro_arg_token_kind kind)
1607 {
1608 const location_t *loc = NULL;
1609 const cpp_token **token_ptr =
1610 arg_token_ptr_at (arg, 0, kind, (location_t **) &loc);
1611
1612 if (token_ptr == NULL)
1613 return NULL;
1614
1615 return loc;
1616 }
1617
1618 /* Return the pointer to the INDEXth token of the macro argument ARG.
1619 KIND specifies the kind of token the macro argument ARG contains.
1620 If VIRT_LOCATION is non NULL, *VIRT_LOCATION is set to the address
1621 of the virtual location of the returned token if the
1622 -ftrack-macro-expansion flag is on; otherwise, it's set to the
1623 spelling location of the returned token. */
1624 static const cpp_token **
1625 arg_token_ptr_at (const macro_arg *arg, size_t index,
1626 enum macro_arg_token_kind kind,
1627 location_t **virt_location)
1628 {
1629 const cpp_token **tokens_ptr = NULL;
1630
1631 switch (kind)
1632 {
1633 case MACRO_ARG_TOKEN_NORMAL:
1634 tokens_ptr = arg->first;
1635 break;
1636 case MACRO_ARG_TOKEN_STRINGIFIED:
1637 tokens_ptr = (const cpp_token **) &arg->stringified;
1638 break;
1639 case MACRO_ARG_TOKEN_EXPANDED:
1640 tokens_ptr = arg->expanded;
1641 break;
1642 }
1643
1644 if (tokens_ptr == NULL)
1645 /* This can happen for e.g, an empty token argument to a
1646 funtion-like macro. */
1647 return tokens_ptr;
1648
1649 if (virt_location)
1650 {
1651 if (kind == MACRO_ARG_TOKEN_NORMAL)
1652 *virt_location = &arg->virt_locs[index];
1653 else if (kind == MACRO_ARG_TOKEN_EXPANDED)
1654 *virt_location = &arg->expanded_virt_locs[index];
1655 else if (kind == MACRO_ARG_TOKEN_STRINGIFIED)
1656 *virt_location =
1657 (location_t *) &tokens_ptr[index]->src_loc;
1658 }
1659 return &tokens_ptr[index];
1660 }
1661
1662 /* Initialize an iterator so that it iterates over the tokens of a
1663 function-like macro argument. KIND is the kind of tokens we want
1664 ITER to iterate over. TOKEN_PTR points the first token ITER will
1665 iterate over. */
1666 static void
1667 macro_arg_token_iter_init (macro_arg_token_iter *iter,
1668 bool track_macro_exp_p,
1669 enum macro_arg_token_kind kind,
1670 const macro_arg *arg,
1671 const cpp_token **token_ptr)
1672 {
1673 iter->track_macro_exp_p = track_macro_exp_p;
1674 iter->kind = kind;
1675 iter->token_ptr = token_ptr;
1676 /* Unconditionally initialize this so that the compiler doesn't warn
1677 about iter->location_ptr being possibly uninitialized later after
1678 this code has been inlined somewhere. */
1679 iter->location_ptr = NULL;
1680 if (track_macro_exp_p)
1681 iter->location_ptr = get_arg_token_location (arg, kind);
1682 #if CHECKING_P
1683 iter->num_forwards = 0;
1684 if (track_macro_exp_p
1685 && token_ptr != NULL
1686 && iter->location_ptr == NULL)
1687 abort ();
1688 #endif
1689 }
1690
1691 /* Move the iterator one token forward. Note that if IT was
1692 initialized on an argument that has a stringified token, moving it
1693 forward doesn't make sense as a stringified token is essentially one
1694 string. */
1695 static void
1696 macro_arg_token_iter_forward (macro_arg_token_iter *it)
1697 {
1698 switch (it->kind)
1699 {
1700 case MACRO_ARG_TOKEN_NORMAL:
1701 case MACRO_ARG_TOKEN_EXPANDED:
1702 it->token_ptr++;
1703 if (it->track_macro_exp_p)
1704 it->location_ptr++;
1705 break;
1706 case MACRO_ARG_TOKEN_STRINGIFIED:
1707 #if CHECKING_P
1708 if (it->num_forwards > 0)
1709 abort ();
1710 #endif
1711 break;
1712 }
1713
1714 #if CHECKING_P
1715 it->num_forwards++;
1716 #endif
1717 }
1718
1719 /* Return the token pointed to by the iterator. */
1720 static const cpp_token *
1721 macro_arg_token_iter_get_token (const macro_arg_token_iter *it)
1722 {
1723 #if CHECKING_P
1724 if (it->kind == MACRO_ARG_TOKEN_STRINGIFIED
1725 && it->num_forwards > 0)
1726 abort ();
1727 #endif
1728 if (it->token_ptr == NULL)
1729 return NULL;
1730 return *it->token_ptr;
1731 }
1732
1733 /* Return the location of the token pointed to by the iterator.*/
1734 static location_t
1735 macro_arg_token_iter_get_location (const macro_arg_token_iter *it)
1736 {
1737 #if CHECKING_P
1738 if (it->kind == MACRO_ARG_TOKEN_STRINGIFIED
1739 && it->num_forwards > 0)
1740 abort ();
1741 #endif
1742 if (it->track_macro_exp_p)
1743 return *it->location_ptr;
1744 else
1745 return (*it->token_ptr)->src_loc;
1746 }
1747
1748 /* Return the index of a token [resulting from macro expansion] inside
1749 the total list of tokens resulting from a given macro
1750 expansion. The index can be different depending on whether if we
1751 want each tokens resulting from function-like macro arguments
1752 expansion to have a different location or not.
1753
1754 E.g, consider this function-like macro:
1755
1756 #define M(x) x - 3
1757
1758 Then consider us "calling" it (and thus expanding it) like:
1759
1760 M(1+4)
1761
1762 It will be expanded into:
1763
1764 1+4-3
1765
1766 Let's consider the case of the token '4'.
1767
1768 Its index can be 2 (it's the third token of the set of tokens
1769 resulting from the expansion) or it can be 0 if we consider that
1770 all tokens resulting from the expansion of the argument "1+2" have
1771 the same index, which is 0. In this later case, the index of token
1772 '-' would then be 1 and the index of token '3' would be 2.
1773
1774 The later case is useful to use less memory e.g, for the case of
1775 the user using the option -ftrack-macro-expansion=1.
1776
1777 ABSOLUTE_TOKEN_INDEX is the index of the macro argument token we
1778 are interested in. CUR_REPLACEMENT_TOKEN is the token of the macro
1779 parameter (inside the macro replacement list) that corresponds to
1780 the macro argument for which ABSOLUTE_TOKEN_INDEX is a token index
1781 of.
1782
1783 If we refer to the example above, for the '4' argument token,
1784 ABSOLUTE_TOKEN_INDEX would be set to 2, and CUR_REPLACEMENT_TOKEN
1785 would be set to the token 'x', in the replacement list "x - 3" of
1786 macro M.
1787
1788 This is a subroutine of replace_args. */
1789 inline static unsigned
1790 expanded_token_index (cpp_reader *pfile, cpp_macro *macro,
1791 const cpp_token *cur_replacement_token,
1792 unsigned absolute_token_index)
1793 {
1794 if (CPP_OPTION (pfile, track_macro_expansion) > 1)
1795 return absolute_token_index;
1796 return cur_replacement_token - macro->exp.tokens;
1797 }
1798
1799 /* Copy whether PASTE_LEFT is set from SRC to *PASTE_FLAG. */
1800
1801 static void
1802 copy_paste_flag (cpp_reader *pfile, const cpp_token **paste_flag,
1803 const cpp_token *src)
1804 {
1805 cpp_token *token = _cpp_temp_token (pfile);
1806 token->type = (*paste_flag)->type;
1807 token->val = (*paste_flag)->val;
1808 if (src->flags & PASTE_LEFT)
1809 token->flags = (*paste_flag)->flags | PASTE_LEFT;
1810 else
1811 token->flags = (*paste_flag)->flags & ~PASTE_LEFT;
1812 *paste_flag = token;
1813 }
1814
1815 /* True IFF the last token emitted into BUFF (if any) is PTR. */
1816
1817 static bool
1818 last_token_is (_cpp_buff *buff, const cpp_token **ptr)
1819 {
1820 return (ptr && tokens_buff_last_token_ptr (buff) == ptr);
1821 }
1822
1823 /* Replace the parameters in a function-like macro of NODE with the
1824 actual ARGS, and place the result in a newly pushed token context.
1825 Expand each argument before replacing, unless it is operated upon
1826 by the # or ## operators. EXPANSION_POINT_LOC is the location of
1827 the expansion point of the macro. E.g, the location of the
1828 function-like macro invocation. */
1829 static void
1830 replace_args (cpp_reader *pfile, cpp_hashnode *node, cpp_macro *macro,
1831 macro_arg *args, location_t expansion_point_loc)
1832 {
1833 unsigned int i, total;
1834 const cpp_token *src, *limit;
1835 const cpp_token **first = NULL;
1836 macro_arg *arg;
1837 _cpp_buff *buff = NULL;
1838 location_t *virt_locs = NULL;
1839 unsigned int exp_count;
1840 const line_map_macro *map = NULL;
1841 int track_macro_exp;
1842
1843 /* First, fully macro-expand arguments, calculating the number of
1844 tokens in the final expansion as we go. The ordering of the if
1845 statements below is subtle; we must handle stringification before
1846 pasting. */
1847
1848 /* EXP_COUNT is the number of tokens in the macro replacement
1849 list. TOTAL is the number of tokens /after/ macro parameters
1850 have been replaced by their arguments. */
1851 exp_count = macro_real_token_count (macro);
1852 total = exp_count;
1853 limit = macro->exp.tokens + exp_count;
1854
1855 for (src = macro->exp.tokens; src < limit; src++)
1856 if (src->type == CPP_MACRO_ARG)
1857 {
1858 /* Leading and trailing padding tokens. */
1859 total += 2;
1860 /* Account for leading and padding tokens in exp_count too.
1861 This is going to be important later down this function,
1862 when we want to handle the case of (track_macro_exp <
1863 2). */
1864 exp_count += 2;
1865
1866 /* We have an argument. If it is not being stringified or
1867 pasted it is macro-replaced before insertion. */
1868 arg = &args[src->val.macro_arg.arg_no - 1];
1869
1870 if (src->flags & STRINGIFY_ARG)
1871 {
1872 if (!arg->stringified)
1873 arg->stringified = stringify_arg (pfile, arg);
1874 }
1875 else if ((src->flags & PASTE_LEFT)
1876 || (src != macro->exp.tokens && (src[-1].flags & PASTE_LEFT)))
1877 total += arg->count - 1;
1878 else
1879 {
1880 if (!arg->expanded)
1881 expand_arg (pfile, arg);
1882 total += arg->expanded_count - 1;
1883 }
1884 }
1885
1886 /* When the compiler is called with the -ftrack-macro-expansion
1887 flag, we need to keep track of the location of each token that
1888 results from macro expansion.
1889
1890 A token resulting from macro expansion is not a new token. It is
1891 simply the same token as the token coming from the macro
1892 definition. The new things that are allocated are the buffer
1893 that holds the tokens resulting from macro expansion and a new
1894 location that records many things like the locus of the expansion
1895 point as well as the original locus inside the definition of the
1896 macro. This location is called a virtual location.
1897
1898 So the buffer BUFF holds a set of cpp_token*, and the buffer
1899 VIRT_LOCS holds the virtual locations of the tokens held by BUFF.
1900
1901 Both of these two buffers are going to be hung off of the macro
1902 context, when the latter is pushed. The memory allocated to
1903 store the tokens and their locations is going to be freed once
1904 the context of macro expansion is popped.
1905
1906 As far as tokens are concerned, the memory overhead of
1907 -ftrack-macro-expansion is proportional to the number of
1908 macros that get expanded multiplied by sizeof (location_t).
1909 The good news is that extra memory gets freed when the macro
1910 context is freed, i.e shortly after the macro got expanded. */
1911
1912 /* Is the -ftrack-macro-expansion flag in effect? */
1913 track_macro_exp = CPP_OPTION (pfile, track_macro_expansion);
1914
1915 /* Now allocate memory space for tokens and locations resulting from
1916 the macro expansion, copy the tokens and replace the arguments.
1917 This memory must be freed when the context of the macro MACRO is
1918 popped. */
1919 buff = tokens_buff_new (pfile, total, track_macro_exp ? &virt_locs : NULL);
1920
1921 first = (const cpp_token **) buff->base;
1922
1923 /* Create a macro map to record the locations of the tokens that are
1924 involved in the expansion. Note that the expansion point is set
1925 to the location of the closing parenthesis. Otherwise, the
1926 subsequent map created for the first token that comes after the
1927 macro map might have a wrong line number. That would lead to
1928 tokens with wrong line numbers after the macro expansion. This
1929 adds up to the memory overhead of the -ftrack-macro-expansion
1930 flag; for every macro that is expanded, a "macro map" is
1931 created. */
1932 if (track_macro_exp)
1933 {
1934 int num_macro_tokens = total;
1935 if (track_macro_exp < 2)
1936 /* Then the number of macro tokens won't take in account the
1937 fact that function-like macro arguments can expand to
1938 multiple tokens. This is to save memory at the expense of
1939 accuracy.
1940
1941 Suppose we have #define SQUARE(A) A * A
1942
1943 And then we do SQUARE(2+3)
1944
1945 Then the tokens 2, +, 3, will have the same location,
1946 saying they come from the expansion of the argument A. */
1947 num_macro_tokens = exp_count;
1948 map = linemap_enter_macro (pfile->line_table, node,
1949 expansion_point_loc,
1950 num_macro_tokens);
1951 }
1952 i = 0;
1953 vaopt_state vaopt_tracker (pfile, macro->variadic, &args[macro->paramc - 1]);
1954 const cpp_token **vaopt_start = NULL;
1955 for (src = macro->exp.tokens; src < limit; src++)
1956 {
1957 unsigned int arg_tokens_count;
1958 macro_arg_token_iter from;
1959 const cpp_token **paste_flag = NULL;
1960 const cpp_token **tmp_token_ptr;
1961
1962 /* __VA_OPT__ handling. */
1963 vaopt_state::update_type vostate = vaopt_tracker.update (src);
1964 if (vostate != vaopt_state::INCLUDE)
1965 {
1966 if (vostate == vaopt_state::BEGIN)
1967 {
1968 /* Padding on the left of __VA_OPT__ (unless RHS of ##). */
1969 if (src != macro->exp.tokens && !(src[-1].flags & PASTE_LEFT))
1970 {
1971 const cpp_token *t = padding_token (pfile, src);
1972 unsigned index = expanded_token_index (pfile, macro, src, i);
1973 /* Allocate a virtual location for the padding token and
1974 append the token and its location to BUFF and
1975 VIRT_LOCS. */
1976 tokens_buff_add_token (buff, virt_locs, t,
1977 t->src_loc, t->src_loc,
1978 map, index);
1979 }
1980 vaopt_start = tokens_buff_last_token_ptr (buff);
1981 }
1982 else if (vostate == vaopt_state::END)
1983 {
1984 const cpp_token **start = vaopt_start;
1985 vaopt_start = NULL;
1986
1987 /* Remove any tail padding from inside the __VA_OPT__. */
1988 paste_flag = tokens_buff_last_token_ptr (buff);
1989 while (paste_flag && paste_flag != start
1990 && (*paste_flag)->type == CPP_PADDING)
1991 {
1992 tokens_buff_remove_last_token (buff);
1993 paste_flag = tokens_buff_last_token_ptr (buff);
1994 }
1995
1996 if (src->flags & PASTE_LEFT)
1997 {
1998 /* With a non-empty __VA_OPT__ on the LHS of ##, the last
1999 token should be flagged PASTE_LEFT. */
2000 if (paste_flag && (*paste_flag)->type != CPP_PADDING)
2001 copy_paste_flag (pfile, paste_flag, src);
2002 }
2003 else
2004 {
2005 /* Otherwise, avoid paste on RHS, __VA_OPT__(c)d or
2006 __VA_OPT__(c)__VA_OPT__(d). */
2007 const cpp_token *t = &pfile->avoid_paste;
2008 tokens_buff_add_token (buff, virt_locs,
2009 t, t->src_loc, t->src_loc,
2010 NULL, 0);
2011 }
2012 }
2013 continue;
2014 }
2015
2016 if (src->type != CPP_MACRO_ARG)
2017 {
2018 /* Allocate a virtual location for token SRC, and add that
2019 token and its virtual location into the buffers BUFF and
2020 VIRT_LOCS. */
2021 unsigned index = expanded_token_index (pfile, macro, src, i);
2022 tokens_buff_add_token (buff, virt_locs, src,
2023 src->src_loc, src->src_loc,
2024 map, index);
2025 i += 1;
2026 continue;
2027 }
2028
2029 paste_flag = 0;
2030 arg = &args[src->val.macro_arg.arg_no - 1];
2031 /* SRC is a macro parameter that we need to replace with its
2032 corresponding argument. So at some point we'll need to
2033 iterate over the tokens of the macro argument and copy them
2034 into the "place" now holding the correspondig macro
2035 parameter. We are going to use the iterator type
2036 macro_argo_token_iter to handle that iterating. The 'if'
2037 below is to initialize the iterator depending on the type of
2038 tokens the macro argument has. It also does some adjustment
2039 related to padding tokens and some pasting corner cases. */
2040 if (src->flags & STRINGIFY_ARG)
2041 {
2042 arg_tokens_count = 1;
2043 macro_arg_token_iter_init (&from,
2044 CPP_OPTION (pfile,
2045 track_macro_expansion),
2046 MACRO_ARG_TOKEN_STRINGIFIED,
2047 arg, &arg->stringified);
2048 }
2049 else if (src->flags & PASTE_LEFT)
2050 {
2051 arg_tokens_count = arg->count;
2052 macro_arg_token_iter_init (&from,
2053 CPP_OPTION (pfile,
2054 track_macro_expansion),
2055 MACRO_ARG_TOKEN_NORMAL,
2056 arg, arg->first);
2057 }
2058 else if (src != macro->exp.tokens && (src[-1].flags & PASTE_LEFT))
2059 {
2060 int num_toks;
2061 arg_tokens_count = arg->count;
2062 macro_arg_token_iter_init (&from,
2063 CPP_OPTION (pfile,
2064 track_macro_expansion),
2065 MACRO_ARG_TOKEN_NORMAL,
2066 arg, arg->first);
2067
2068 num_toks = tokens_buff_count (buff);
2069
2070 if (num_toks != 0)
2071 {
2072 /* So the current parameter token is pasted to the previous
2073 token in the replacement list. Let's look at what
2074 we have as previous and current arguments. */
2075
2076 /* This is the previous argument's token ... */
2077 tmp_token_ptr = tokens_buff_last_token_ptr (buff);
2078
2079 if ((*tmp_token_ptr)->type == CPP_COMMA
2080 && macro->variadic
2081 && src->val.macro_arg.arg_no == macro->paramc)
2082 {
2083 /* ... which is a comma; and the current parameter
2084 is the last parameter of a variadic function-like
2085 macro. If the argument to the current last
2086 parameter is NULL, then swallow the comma,
2087 otherwise drop the paste flag. */
2088 if (macro_arg_token_iter_get_token (&from) == NULL)
2089 tokens_buff_remove_last_token (buff);
2090 else
2091 paste_flag = tmp_token_ptr;
2092 }
2093 /* Remove the paste flag if the RHS is a placemarker, unless the
2094 previous emitted token is at the beginning of __VA_OPT__;
2095 placemarkers within __VA_OPT__ are ignored in that case. */
2096 else if (arg_tokens_count == 0
2097 && tmp_token_ptr != vaopt_start)
2098 paste_flag = tmp_token_ptr;
2099 }
2100 }
2101 else
2102 {
2103 arg_tokens_count = arg->expanded_count;
2104 macro_arg_token_iter_init (&from,
2105 CPP_OPTION (pfile,
2106 track_macro_expansion),
2107 MACRO_ARG_TOKEN_EXPANDED,
2108 arg, arg->expanded);
2109
2110 if (last_token_is (buff, vaopt_start))
2111 {
2112 /* We're expanding an arg at the beginning of __VA_OPT__.
2113 Skip padding. */
2114 while (arg_tokens_count)
2115 {
2116 const cpp_token *t = macro_arg_token_iter_get_token (&from);
2117 if (t->type != CPP_PADDING)
2118 break;
2119 macro_arg_token_iter_forward (&from);
2120 --arg_tokens_count;
2121 }
2122 }
2123 }
2124
2125 /* Padding on the left of an argument (unless RHS of ##). */
2126 if ((!pfile->state.in_directive || pfile->state.directive_wants_padding)
2127 && src != macro->exp.tokens && !(src[-1].flags & PASTE_LEFT)
2128 && !last_token_is (buff, vaopt_start))
2129 {
2130 const cpp_token *t = padding_token (pfile, src);
2131 unsigned index = expanded_token_index (pfile, macro, src, i);
2132 /* Allocate a virtual location for the padding token and
2133 append the token and its location to BUFF and
2134 VIRT_LOCS. */
2135 tokens_buff_add_token (buff, virt_locs, t,
2136 t->src_loc, t->src_loc,
2137 map, index);
2138 }
2139
2140 if (arg_tokens_count)
2141 {
2142 /* So now we've got the number of tokens that make up the
2143 argument that is going to replace the current parameter
2144 in the macro's replacement list. */
2145 unsigned int j;
2146 for (j = 0; j < arg_tokens_count; ++j)
2147 {
2148 /* So if track_macro_exp is < 2, the user wants to
2149 save extra memory while tracking macro expansion
2150 locations. So in that case here is what we do:
2151
2152 Suppose we have #define SQUARE(A) A * A
2153
2154 And then we do SQUARE(2+3)
2155
2156 Then the tokens 2, +, 3, will have the same location,
2157 saying they come from the expansion of the argument
2158 A.
2159
2160 So that means we are going to ignore the COUNT tokens
2161 resulting from the expansion of the current macro
2162 argument. In other words all the ARG_TOKENS_COUNT tokens
2163 resulting from the expansion of the macro argument will
2164 have the index I. Normally, each of those tokens should
2165 have index I+J. */
2166 unsigned token_index = i;
2167 unsigned index;
2168 if (track_macro_exp > 1)
2169 token_index += j;
2170
2171 index = expanded_token_index (pfile, macro, src, token_index);
2172 tokens_buff_add_token (buff, virt_locs,
2173 macro_arg_token_iter_get_token (&from),
2174 macro_arg_token_iter_get_location (&from),
2175 src->src_loc, map, index);
2176 macro_arg_token_iter_forward (&from);
2177 }
2178
2179 /* With a non-empty argument on the LHS of ##, the last
2180 token should be flagged PASTE_LEFT. */
2181 if (src->flags & PASTE_LEFT)
2182 paste_flag
2183 = (const cpp_token **) tokens_buff_last_token_ptr (buff);
2184 }
2185 else if (CPP_PEDANTIC (pfile) && ! CPP_OPTION (pfile, c99)
2186 && ! macro->syshdr && ! cpp_in_system_header (pfile))
2187 {
2188 if (CPP_OPTION (pfile, cplusplus))
2189 cpp_pedwarning (pfile, CPP_W_PEDANTIC,
2190 "invoking macro %s argument %d: "
2191 "empty macro arguments are undefined"
2192 " in ISO C++98",
2193 NODE_NAME (node), src->val.macro_arg.arg_no);
2194 else if (CPP_OPTION (pfile, cpp_warn_c90_c99_compat))
2195 cpp_pedwarning (pfile,
2196 CPP_OPTION (pfile, cpp_warn_c90_c99_compat) > 0
2197 ? CPP_W_C90_C99_COMPAT : CPP_W_PEDANTIC,
2198 "invoking macro %s argument %d: "
2199 "empty macro arguments are undefined"
2200 " in ISO C90",
2201 NODE_NAME (node), src->val.macro_arg.arg_no);
2202 }
2203 else if (CPP_OPTION (pfile, cpp_warn_c90_c99_compat) > 0
2204 && ! CPP_OPTION (pfile, cplusplus)
2205 && ! macro->syshdr && ! cpp_in_system_header (pfile))
2206 cpp_warning (pfile, CPP_W_C90_C99_COMPAT,
2207 "invoking macro %s argument %d: "
2208 "empty macro arguments are undefined"
2209 " in ISO C90",
2210 NODE_NAME (node), src->val.macro_arg.arg_no);
2211
2212 /* Avoid paste on RHS (even case count == 0). */
2213 if (!pfile->state.in_directive && !(src->flags & PASTE_LEFT)
2214 && !last_token_is (buff, vaopt_start))
2215 {
2216 const cpp_token *t = &pfile->avoid_paste;
2217 tokens_buff_add_token (buff, virt_locs,
2218 t, t->src_loc, t->src_loc,
2219 NULL, 0);
2220 }
2221
2222 /* Add a new paste flag, or remove an unwanted one. */
2223 if (paste_flag)
2224 copy_paste_flag (pfile, paste_flag, src);
2225
2226 i += arg_tokens_count;
2227 }
2228
2229 if (track_macro_exp)
2230 push_extended_tokens_context (pfile, node, buff, virt_locs, first,
2231 tokens_buff_count (buff));
2232 else
2233 push_ptoken_context (pfile, node, buff, first,
2234 tokens_buff_count (buff));
2235
2236 num_macro_tokens_counter += tokens_buff_count (buff);
2237 }
2238
2239 /* Return a special padding token, with padding inherited from SOURCE. */
2240 static const cpp_token *
2241 padding_token (cpp_reader *pfile, const cpp_token *source)
2242 {
2243 cpp_token *result = _cpp_temp_token (pfile);
2244
2245 result->type = CPP_PADDING;
2246
2247 /* Data in GCed data structures cannot be made const so far, so we
2248 need a cast here. */
2249 result->val.source = (cpp_token *) source;
2250 result->flags = 0;
2251 return result;
2252 }
2253
2254 /* Get a new uninitialized context. Create a new one if we cannot
2255 re-use an old one. */
2256 static cpp_context *
2257 next_context (cpp_reader *pfile)
2258 {
2259 cpp_context *result = pfile->context->next;
2260
2261 if (result == 0)
2262 {
2263 result = XNEW (cpp_context);
2264 memset (result, 0, sizeof (cpp_context));
2265 result->prev = pfile->context;
2266 result->next = 0;
2267 pfile->context->next = result;
2268 }
2269
2270 pfile->context = result;
2271 return result;
2272 }
2273
2274 /* Push a list of pointers to tokens. */
2275 static void
2276 push_ptoken_context (cpp_reader *pfile, cpp_hashnode *macro, _cpp_buff *buff,
2277 const cpp_token **first, unsigned int count)
2278 {
2279 cpp_context *context = next_context (pfile);
2280
2281 context->tokens_kind = TOKENS_KIND_INDIRECT;
2282 context->c.macro = macro;
2283 context->buff = buff;
2284 FIRST (context).ptoken = first;
2285 LAST (context).ptoken = first + count;
2286 }
2287
2288 /* Push a list of tokens.
2289
2290 A NULL macro means that we should continue the current macro
2291 expansion, in essence. That means that if we are currently in a
2292 macro expansion context, we'll make the new pfile->context refer to
2293 the current macro. */
2294 void
2295 _cpp_push_token_context (cpp_reader *pfile, cpp_hashnode *macro,
2296 const cpp_token *first, unsigned int count)
2297 {
2298 cpp_context *context;
2299
2300 if (macro == NULL)
2301 macro = macro_of_context (pfile->context);
2302
2303 context = next_context (pfile);
2304 context->tokens_kind = TOKENS_KIND_DIRECT;
2305 context->c.macro = macro;
2306 context->buff = NULL;
2307 FIRST (context).token = first;
2308 LAST (context).token = first + count;
2309 }
2310
2311 /* Build a context containing a list of tokens as well as their
2312 virtual locations and push it. TOKENS_BUFF is the buffer that
2313 contains the tokens pointed to by FIRST. If TOKENS_BUFF is
2314 non-NULL, it means that the context owns it, meaning that
2315 _cpp_pop_context will free it as well as VIRT_LOCS_BUFF that
2316 contains the virtual locations.
2317
2318 A NULL macro means that we should continue the current macro
2319 expansion, in essence. That means that if we are currently in a
2320 macro expansion context, we'll make the new pfile->context refer to
2321 the current macro. */
2322 static void
2323 push_extended_tokens_context (cpp_reader *pfile,
2324 cpp_hashnode *macro,
2325 _cpp_buff *token_buff,
2326 location_t *virt_locs,
2327 const cpp_token **first,
2328 unsigned int count)
2329 {
2330 cpp_context *context;
2331 macro_context *m;
2332
2333 if (macro == NULL)
2334 macro = macro_of_context (pfile->context);
2335
2336 context = next_context (pfile);
2337 context->tokens_kind = TOKENS_KIND_EXTENDED;
2338 context->buff = token_buff;
2339
2340 m = XNEW (macro_context);
2341 m->macro_node = macro;
2342 m->virt_locs = virt_locs;
2343 m->cur_virt_loc = virt_locs;
2344 context->c.mc = m;
2345 FIRST (context).ptoken = first;
2346 LAST (context).ptoken = first + count;
2347 }
2348
2349 /* Push a traditional macro's replacement text. */
2350 void
2351 _cpp_push_text_context (cpp_reader *pfile, cpp_hashnode *macro,
2352 const uchar *start, size_t len)
2353 {
2354 cpp_context *context = next_context (pfile);
2355
2356 context->tokens_kind = TOKENS_KIND_DIRECT;
2357 context->c.macro = macro;
2358 context->buff = NULL;
2359 CUR (context) = start;
2360 RLIMIT (context) = start + len;
2361 macro->flags |= NODE_DISABLED;
2362 }
2363
2364 /* Creates a buffer that holds tokens a.k.a "token buffer", usually
2365 for the purpose of storing them on a cpp_context. If VIRT_LOCS is
2366 non-null (which means that -ftrack-macro-expansion is on),
2367 *VIRT_LOCS is set to a newly allocated buffer that is supposed to
2368 hold the virtual locations of the tokens resulting from macro
2369 expansion. */
2370 static _cpp_buff*
2371 tokens_buff_new (cpp_reader *pfile, size_t len,
2372 location_t **virt_locs)
2373 {
2374 size_t tokens_size = len * sizeof (cpp_token *);
2375 size_t locs_size = len * sizeof (location_t);
2376
2377 if (virt_locs != NULL)
2378 *virt_locs = XNEWVEC (location_t, locs_size);
2379 return _cpp_get_buff (pfile, tokens_size);
2380 }
2381
2382 /* Returns the number of tokens contained in a token buffer. The
2383 buffer holds a set of cpp_token*. */
2384 static size_t
2385 tokens_buff_count (_cpp_buff *buff)
2386 {
2387 return (BUFF_FRONT (buff) - buff->base) / sizeof (cpp_token *);
2388 }
2389
2390 /* Return a pointer to the last token contained in the token buffer
2391 BUFF. */
2392 static const cpp_token **
2393 tokens_buff_last_token_ptr (_cpp_buff *buff)
2394 {
2395 if (BUFF_FRONT (buff) == buff->base)
2396 return NULL;
2397 return &((const cpp_token **) BUFF_FRONT (buff))[-1];
2398 }
2399
2400 /* Remove the last token contained in the token buffer TOKENS_BUFF.
2401 If VIRT_LOCS_BUFF is non-NULL, it should point at the buffer
2402 containing the virtual locations of the tokens in TOKENS_BUFF; in
2403 which case the function updates that buffer as well. */
2404 static inline void
2405 tokens_buff_remove_last_token (_cpp_buff *tokens_buff)
2406
2407 {
2408 if (BUFF_FRONT (tokens_buff) > tokens_buff->base)
2409 BUFF_FRONT (tokens_buff) =
2410 (unsigned char *) &((cpp_token **) BUFF_FRONT (tokens_buff))[-1];
2411 }
2412
2413 /* Insert a token into the token buffer at the position pointed to by
2414 DEST. Note that the buffer is not enlarged so the previous token
2415 that was at *DEST is overwritten. VIRT_LOC_DEST, if non-null,
2416 means -ftrack-macro-expansion is effect; it then points to where to
2417 insert the virtual location of TOKEN. TOKEN is the token to
2418 insert. VIRT_LOC is the virtual location of the token, i.e, the
2419 location possibly encoding its locus across macro expansion. If
2420 TOKEN is an argument of a function-like macro (inside a macro
2421 replacement list), PARM_DEF_LOC is the spelling location of the
2422 macro parameter that TOKEN is replacing, in the replacement list of
2423 the macro. If TOKEN is not an argument of a function-like macro or
2424 if it doesn't come from a macro expansion, then VIRT_LOC can just
2425 be set to the same value as PARM_DEF_LOC. If MAP is non null, it
2426 means TOKEN comes from a macro expansion and MAP is the macro map
2427 associated to the macro. MACRO_TOKEN_INDEX points to the index of
2428 the token in the macro map; it is not considered if MAP is NULL.
2429
2430 Upon successful completion this function returns the a pointer to
2431 the position of the token coming right after the insertion
2432 point. */
2433 static inline const cpp_token **
2434 tokens_buff_put_token_to (const cpp_token **dest,
2435 location_t *virt_loc_dest,
2436 const cpp_token *token,
2437 location_t virt_loc,
2438 location_t parm_def_loc,
2439 const line_map_macro *map,
2440 unsigned int macro_token_index)
2441 {
2442 location_t macro_loc = virt_loc;
2443 const cpp_token **result;
2444
2445 if (virt_loc_dest)
2446 {
2447 /* -ftrack-macro-expansion is on. */
2448 if (map)
2449 macro_loc = linemap_add_macro_token (map, macro_token_index,
2450 virt_loc, parm_def_loc);
2451 *virt_loc_dest = macro_loc;
2452 }
2453 *dest = token;
2454 result = &dest[1];
2455
2456 return result;
2457 }
2458
2459 /* Adds a token at the end of the tokens contained in BUFFER. Note
2460 that this function doesn't enlarge BUFFER when the number of tokens
2461 reaches BUFFER's size; it aborts in that situation.
2462
2463 TOKEN is the token to append. VIRT_LOC is the virtual location of
2464 the token, i.e, the location possibly encoding its locus across
2465 macro expansion. If TOKEN is an argument of a function-like macro
2466 (inside a macro replacement list), PARM_DEF_LOC is the location of
2467 the macro parameter that TOKEN is replacing. If TOKEN doesn't come
2468 from a macro expansion, then VIRT_LOC can just be set to the same
2469 value as PARM_DEF_LOC. If MAP is non null, it means TOKEN comes
2470 from a macro expansion and MAP is the macro map associated to the
2471 macro. MACRO_TOKEN_INDEX points to the index of the token in the
2472 macro map; It is not considered if MAP is NULL. If VIRT_LOCS is
2473 non-null, it means -ftrack-macro-expansion is on; in which case
2474 this function adds the virtual location DEF_LOC to the VIRT_LOCS
2475 array, at the same index as the one of TOKEN in BUFFER. Upon
2476 successful completion this function returns the a pointer to the
2477 position of the token coming right after the insertion point. */
2478 static const cpp_token **
2479 tokens_buff_add_token (_cpp_buff *buffer,
2480 location_t *virt_locs,
2481 const cpp_token *token,
2482 location_t virt_loc,
2483 location_t parm_def_loc,
2484 const line_map_macro *map,
2485 unsigned int macro_token_index)
2486 {
2487 const cpp_token **result;
2488 location_t *virt_loc_dest = NULL;
2489 unsigned token_index =
2490 (BUFF_FRONT (buffer) - buffer->base) / sizeof (cpp_token *);
2491
2492 /* Abort if we pass the end the buffer. */
2493 if (BUFF_FRONT (buffer) > BUFF_LIMIT (buffer))
2494 abort ();
2495
2496 if (virt_locs != NULL)
2497 virt_loc_dest = &virt_locs[token_index];
2498
2499 result =
2500 tokens_buff_put_token_to ((const cpp_token **) BUFF_FRONT (buffer),
2501 virt_loc_dest, token, virt_loc, parm_def_loc,
2502 map, macro_token_index);
2503
2504 BUFF_FRONT (buffer) = (unsigned char *) result;
2505 return result;
2506 }
2507
2508 /* Allocate space for the function-like macro argument ARG to store
2509 the tokens resulting from the macro-expansion of the tokens that
2510 make up ARG itself. That space is allocated in ARG->expanded and
2511 needs to be freed using free. */
2512 static void
2513 alloc_expanded_arg_mem (cpp_reader *pfile, macro_arg *arg, size_t capacity)
2514 {
2515 gcc_checking_assert (arg->expanded == NULL
2516 && arg->expanded_virt_locs == NULL);
2517
2518 arg->expanded = XNEWVEC (const cpp_token *, capacity);
2519 if (CPP_OPTION (pfile, track_macro_expansion))
2520 arg->expanded_virt_locs = XNEWVEC (location_t, capacity);
2521
2522 }
2523
2524 /* If necessary, enlarge ARG->expanded to so that it can contain SIZE
2525 tokens. */
2526 static void
2527 ensure_expanded_arg_room (cpp_reader *pfile, macro_arg *arg,
2528 size_t size, size_t *expanded_capacity)
2529 {
2530 if (size <= *expanded_capacity)
2531 return;
2532
2533 size *= 2;
2534
2535 arg->expanded =
2536 XRESIZEVEC (const cpp_token *, arg->expanded, size);
2537 *expanded_capacity = size;
2538
2539 if (CPP_OPTION (pfile, track_macro_expansion))
2540 {
2541 if (arg->expanded_virt_locs == NULL)
2542 arg->expanded_virt_locs = XNEWVEC (location_t, size);
2543 else
2544 arg->expanded_virt_locs = XRESIZEVEC (location_t,
2545 arg->expanded_virt_locs,
2546 size);
2547 }
2548 }
2549
2550 /* Expand an argument ARG before replacing parameters in a
2551 function-like macro. This works by pushing a context with the
2552 argument's tokens, and then expanding that into a temporary buffer
2553 as if it were a normal part of the token stream. collect_args()
2554 has terminated the argument's tokens with a CPP_EOF so that we know
2555 when we have fully expanded the argument. */
2556 static void
2557 expand_arg (cpp_reader *pfile, macro_arg *arg)
2558 {
2559 size_t capacity;
2560 bool saved_warn_trad;
2561 bool track_macro_exp_p = CPP_OPTION (pfile, track_macro_expansion);
2562
2563 if (arg->count == 0
2564 || arg->expanded != NULL)
2565 return;
2566
2567 /* Don't warn about funlike macros when pre-expanding. */
2568 saved_warn_trad = CPP_WTRADITIONAL (pfile);
2569 CPP_WTRADITIONAL (pfile) = 0;
2570
2571 /* Loop, reading in the tokens of the argument. */
2572 capacity = 256;
2573 alloc_expanded_arg_mem (pfile, arg, capacity);
2574
2575 if (track_macro_exp_p)
2576 push_extended_tokens_context (pfile, NULL, NULL,
2577 arg->virt_locs,
2578 arg->first,
2579 arg->count + 1);
2580 else
2581 push_ptoken_context (pfile, NULL, NULL,
2582 arg->first, arg->count + 1);
2583
2584 for (;;)
2585 {
2586 const cpp_token *token;
2587 location_t location;
2588
2589 ensure_expanded_arg_room (pfile, arg, arg->expanded_count + 1,
2590 &capacity);
2591
2592 token = cpp_get_token_1 (pfile, &location);
2593
2594 if (token->type == CPP_EOF)
2595 break;
2596
2597 set_arg_token (arg, token, location,
2598 arg->expanded_count, MACRO_ARG_TOKEN_EXPANDED,
2599 CPP_OPTION (pfile, track_macro_expansion));
2600 arg->expanded_count++;
2601 }
2602
2603 _cpp_pop_context (pfile);
2604
2605 CPP_WTRADITIONAL (pfile) = saved_warn_trad;
2606 }
2607
2608 /* Returns the macro associated to the current context if we are in
2609 the context a macro expansion, NULL otherwise. */
2610 static cpp_hashnode*
2611 macro_of_context (cpp_context *context)
2612 {
2613 if (context == NULL)
2614 return NULL;
2615
2616 return (context->tokens_kind == TOKENS_KIND_EXTENDED)
2617 ? context->c.mc->macro_node
2618 : context->c.macro;
2619 }
2620
2621 /* Return TRUE iff we are expanding a macro or are about to start
2622 expanding one. If we are effectively expanding a macro, the
2623 function macro_of_context returns a pointer to the macro being
2624 expanded. */
2625 static bool
2626 in_macro_expansion_p (cpp_reader *pfile)
2627 {
2628 if (pfile == NULL)
2629 return false;
2630
2631 return (pfile->about_to_expand_macro_p
2632 || macro_of_context (pfile->context));
2633 }
2634
2635 /* Pop the current context off the stack, re-enabling the macro if the
2636 context represented a macro's replacement list. Initially the
2637 context structure was not freed so that we can re-use it later, but
2638 now we do free it to reduce peak memory consumption. */
2639 void
2640 _cpp_pop_context (cpp_reader *pfile)
2641 {
2642 cpp_context *context = pfile->context;
2643
2644 /* We should not be popping the base context. */
2645 if (context == &pfile->base_context)
2646 abort ();
2647
2648 if (context->c.macro)
2649 {
2650 cpp_hashnode *macro;
2651 if (context->tokens_kind == TOKENS_KIND_EXTENDED)
2652 {
2653 macro_context *mc = context->c.mc;
2654 macro = mc->macro_node;
2655 /* If context->buff is set, it means the life time of tokens
2656 is bound to the life time of this context; so we must
2657 free the tokens; that means we must free the virtual
2658 locations of these tokens too. */
2659 if (context->buff && mc->virt_locs)
2660 {
2661 free (mc->virt_locs);
2662 mc->virt_locs = NULL;
2663 }
2664 free (mc);
2665 context->c.mc = NULL;
2666 }
2667 else
2668 macro = context->c.macro;
2669
2670 /* Beware that MACRO can be NULL in cases like when we are
2671 called from expand_arg. In those cases, a dummy context with
2672 tokens is pushed just for the purpose of walking them using
2673 cpp_get_token_1. In that case, no 'macro' field is set into
2674 the dummy context. */
2675 if (macro != NULL
2676 /* Several contiguous macro expansion contexts can be
2677 associated to the same macro; that means it's the same
2678 macro expansion that spans across all these (sub)
2679 contexts. So we should re-enable an expansion-disabled
2680 macro only when we are sure we are really out of that
2681 macro expansion. */
2682 && macro_of_context (context->prev) != macro)
2683 macro->flags &= ~NODE_DISABLED;
2684
2685 if (macro == pfile->top_most_macro_node && context->prev == NULL)
2686 /* We are popping the context of the top-most macro node. */
2687 pfile->top_most_macro_node = NULL;
2688 }
2689
2690 if (context->buff)
2691 {
2692 /* Decrease memory peak consumption by freeing the memory used
2693 by the context. */
2694 _cpp_free_buff (context->buff);
2695 }
2696
2697 pfile->context = context->prev;
2698 /* decrease peak memory consumption by feeing the context. */
2699 pfile->context->next = NULL;
2700 free (context);
2701 }
2702
2703 /* Return TRUE if we reached the end of the set of tokens stored in
2704 CONTEXT, FALSE otherwise. */
2705 static inline bool
2706 reached_end_of_context (cpp_context *context)
2707 {
2708 if (context->tokens_kind == TOKENS_KIND_DIRECT)
2709 return FIRST (context).token == LAST (context).token;
2710 else if (context->tokens_kind == TOKENS_KIND_INDIRECT
2711 || context->tokens_kind == TOKENS_KIND_EXTENDED)
2712 return FIRST (context).ptoken == LAST (context).ptoken;
2713 else
2714 abort ();
2715 }
2716
2717 /* Consume the next token contained in the current context of PFILE,
2718 and return it in *TOKEN. It's "full location" is returned in
2719 *LOCATION. If -ftrack-macro-location is in effeect, fFull location"
2720 means the location encoding the locus of the token across macro
2721 expansion; otherwise it's just is the "normal" location of the
2722 token which (*TOKEN)->src_loc. */
2723 static inline void
2724 consume_next_token_from_context (cpp_reader *pfile,
2725 const cpp_token ** token,
2726 location_t *location)
2727 {
2728 cpp_context *c = pfile->context;
2729
2730 if ((c)->tokens_kind == TOKENS_KIND_DIRECT)
2731 {
2732 *token = FIRST (c).token;
2733 *location = (*token)->src_loc;
2734 FIRST (c).token++;
2735 }
2736 else if ((c)->tokens_kind == TOKENS_KIND_INDIRECT)
2737 {
2738 *token = *FIRST (c).ptoken;
2739 *location = (*token)->src_loc;
2740 FIRST (c).ptoken++;
2741 }
2742 else if ((c)->tokens_kind == TOKENS_KIND_EXTENDED)
2743 {
2744 macro_context *m = c->c.mc;
2745 *token = *FIRST (c).ptoken;
2746 if (m->virt_locs)
2747 {
2748 *location = *m->cur_virt_loc;
2749 m->cur_virt_loc++;
2750 }
2751 else
2752 *location = (*token)->src_loc;
2753 FIRST (c).ptoken++;
2754 }
2755 else
2756 abort ();
2757 }
2758
2759 /* In the traditional mode of the preprocessor, if we are currently in
2760 a directive, the location of a token must be the location of the
2761 start of the directive line. This function returns the proper
2762 location if we are in the traditional mode, and just returns
2763 LOCATION otherwise. */
2764
2765 static inline location_t
2766 maybe_adjust_loc_for_trad_cpp (cpp_reader *pfile, location_t location)
2767 {
2768 if (CPP_OPTION (pfile, traditional))
2769 {
2770 if (pfile->state.in_directive)
2771 return pfile->directive_line;
2772 }
2773 return location;
2774 }
2775
2776 /* Routine to get a token as well as its location.
2777
2778 Macro expansions and directives are transparently handled,
2779 including entering included files. Thus tokens are post-macro
2780 expansion, and after any intervening directives. External callers
2781 see CPP_EOF only at EOF. Internal callers also see it when meeting
2782 a directive inside a macro call, when at the end of a directive and
2783 state.in_directive is still 1, and at the end of argument
2784 pre-expansion.
2785
2786 LOC is an out parameter; *LOC is set to the location "as expected
2787 by the user". Please read the comment of
2788 cpp_get_token_with_location to learn more about the meaning of this
2789 location. */
2790 static const cpp_token*
2791 cpp_get_token_1 (cpp_reader *pfile, location_t *location)
2792 {
2793 const cpp_token *result;
2794 /* This token is a virtual token that either encodes a location
2795 related to macro expansion or a spelling location. */
2796 location_t virt_loc = 0;
2797 /* pfile->about_to_expand_macro_p can be overriden by indirect calls
2798 to functions that push macro contexts. So let's save it so that
2799 we can restore it when we are about to leave this routine. */
2800 bool saved_about_to_expand_macro = pfile->about_to_expand_macro_p;
2801
2802 for (;;)
2803 {
2804 cpp_hashnode *node;
2805 cpp_context *context = pfile->context;
2806
2807 /* Context->prev == 0 <=> base context. */
2808 if (!context->prev)
2809 {
2810 result = _cpp_lex_token (pfile);
2811 virt_loc = result->src_loc;
2812 }
2813 else if (!reached_end_of_context (context))
2814 {
2815 consume_next_token_from_context (pfile, &result,
2816 &virt_loc);
2817 if (result->flags & PASTE_LEFT)
2818 {
2819 paste_all_tokens (pfile, result);
2820 if (pfile->state.in_directive)
2821 continue;
2822 result = padding_token (pfile, result);
2823 goto out;
2824 }
2825 }
2826 else
2827 {
2828 if (pfile->context->c.macro)
2829 ++num_expanded_macros_counter;
2830 _cpp_pop_context (pfile);
2831 if (pfile->state.in_directive)
2832 continue;
2833 result = &pfile->avoid_paste;
2834 goto out;
2835 }
2836
2837 if (pfile->state.in_directive && result->type == CPP_COMMENT)
2838 continue;
2839
2840 if (result->type != CPP_NAME)
2841 break;
2842
2843 node = result->val.node.node;
2844
2845 if (node->type == NT_VOID || (result->flags & NO_EXPAND))
2846 break;
2847
2848 if (!(node->flags & NODE_DISABLED))
2849 {
2850 int ret = 0;
2851 /* If not in a macro context, and we're going to start an
2852 expansion, record the location and the top level macro
2853 about to be expanded. */
2854 if (!in_macro_expansion_p (pfile))
2855 {
2856 pfile->invocation_location = result->src_loc;
2857 pfile->top_most_macro_node = node;
2858 }
2859 if (pfile->state.prevent_expansion)
2860 break;
2861
2862 /* Conditional macros require that a predicate be evaluated
2863 first. */
2864 if ((node->flags & NODE_CONDITIONAL) != 0)
2865 {
2866 if (pfile->cb.macro_to_expand)
2867 {
2868 bool whitespace_after;
2869 const cpp_token *peek_tok = cpp_peek_token (pfile, 0);
2870
2871 whitespace_after = (peek_tok->type == CPP_PADDING
2872 || (peek_tok->flags & PREV_WHITE));
2873 node = pfile->cb.macro_to_expand (pfile, result);
2874 if (node)
2875 ret = enter_macro_context (pfile, node, result, virt_loc);
2876 else if (whitespace_after)
2877 {
2878 /* If macro_to_expand hook returned NULL and it
2879 ate some tokens, see if we don't need to add
2880 a padding token in between this and the
2881 next token. */
2882 peek_tok = cpp_peek_token (pfile, 0);
2883 if (peek_tok->type != CPP_PADDING
2884 && (peek_tok->flags & PREV_WHITE) == 0)
2885 _cpp_push_token_context (pfile, NULL,
2886 padding_token (pfile,
2887 peek_tok), 1);
2888 }
2889 }
2890 }
2891 else
2892 ret = enter_macro_context (pfile, node, result, virt_loc);
2893 if (ret)
2894 {
2895 if (pfile->state.in_directive || ret == 2)
2896 continue;
2897 result = padding_token (pfile, result);
2898 goto out;
2899 }
2900 }
2901 else
2902 {
2903 /* Flag this token as always unexpandable. FIXME: move this
2904 to collect_args()?. */
2905 cpp_token *t = _cpp_temp_token (pfile);
2906 t->type = result->type;
2907 t->flags = result->flags | NO_EXPAND;
2908 t->val = result->val;
2909 result = t;
2910 }
2911
2912 break;
2913 }
2914
2915 out:
2916 if (location != NULL)
2917 {
2918 if (virt_loc == 0)
2919 virt_loc = result->src_loc;
2920 *location = virt_loc;
2921
2922 if (!CPP_OPTION (pfile, track_macro_expansion)
2923 && macro_of_context (pfile->context) != NULL)
2924 /* We are in a macro expansion context, are not tracking
2925 virtual location, but were asked to report the location
2926 of the expansion point of the macro being expanded. */
2927 *location = pfile->invocation_location;
2928
2929 *location = maybe_adjust_loc_for_trad_cpp (pfile, *location);
2930 }
2931
2932 pfile->about_to_expand_macro_p = saved_about_to_expand_macro;
2933 return result;
2934 }
2935
2936 /* External routine to get a token. Also used nearly everywhere
2937 internally, except for places where we know we can safely call
2938 _cpp_lex_token directly, such as lexing a directive name.
2939
2940 Macro expansions and directives are transparently handled,
2941 including entering included files. Thus tokens are post-macro
2942 expansion, and after any intervening directives. External callers
2943 see CPP_EOF only at EOF. Internal callers also see it when meeting
2944 a directive inside a macro call, when at the end of a directive and
2945 state.in_directive is still 1, and at the end of argument
2946 pre-expansion. */
2947 const cpp_token *
2948 cpp_get_token (cpp_reader *pfile)
2949 {
2950 return cpp_get_token_1 (pfile, NULL);
2951 }
2952
2953 /* Like cpp_get_token, but also returns a virtual token location
2954 separate from the spelling location carried by the returned token.
2955
2956 LOC is an out parameter; *LOC is set to the location "as expected
2957 by the user". This matters when a token results from macro
2958 expansion; in that case the token's spelling location indicates the
2959 locus of the token in the definition of the macro but *LOC
2960 virtually encodes all the other meaningful locuses associated to
2961 the token.
2962
2963 What? virtual location? Yes, virtual location.
2964
2965 If the token results from macro expansion and if macro expansion
2966 location tracking is enabled its virtual location encodes (at the
2967 same time):
2968
2969 - the spelling location of the token
2970
2971 - the locus of the macro expansion point
2972
2973 - the locus of the point where the token got instantiated as part
2974 of the macro expansion process.
2975
2976 You have to use the linemap API to get the locus you are interested
2977 in from a given virtual location.
2978
2979 Note however that virtual locations are not necessarily ordered for
2980 relations '<' and '>'. One must use the function
2981 linemap_location_before_p instead of using the relational operator
2982 '<'.
2983
2984 If macro expansion tracking is off and if the token results from
2985 macro expansion the virtual location is the expansion point of the
2986 macro that got expanded.
2987
2988 When the token doesn't result from macro expansion, the virtual
2989 location is just the same thing as its spelling location. */
2990
2991 const cpp_token *
2992 cpp_get_token_with_location (cpp_reader *pfile, location_t *loc)
2993 {
2994 return cpp_get_token_1 (pfile, loc);
2995 }
2996
2997 /* Returns true if we're expanding an object-like macro that was
2998 defined in a system header. Just checks the macro at the top of
2999 the stack. Used for diagnostic suppression. */
3000 int
3001 cpp_sys_macro_p (cpp_reader *pfile)
3002 {
3003 cpp_hashnode *node = NULL;
3004
3005 if (pfile->context->tokens_kind == TOKENS_KIND_EXTENDED)
3006 node = pfile->context->c.mc->macro_node;
3007 else
3008 node = pfile->context->c.macro;
3009
3010 return node && node->value.macro && node->value.macro->syshdr;
3011 }
3012
3013 /* Read each token in, until end of the current file. Directives are
3014 transparently processed. */
3015 void
3016 cpp_scan_nooutput (cpp_reader *pfile)
3017 {
3018 /* Request a CPP_EOF token at the end of this file, rather than
3019 transparently continuing with the including file. */
3020 pfile->buffer->return_at_eof = true;
3021
3022 pfile->state.discarding_output++;
3023 pfile->state.prevent_expansion++;
3024
3025 if (CPP_OPTION (pfile, traditional))
3026 while (_cpp_read_logical_line_trad (pfile))
3027 ;
3028 else
3029 while (cpp_get_token (pfile)->type != CPP_EOF)
3030 ;
3031
3032 pfile->state.discarding_output--;
3033 pfile->state.prevent_expansion--;
3034 }
3035
3036 /* Step back one or more tokens obtained from the lexer. */
3037 void
3038 _cpp_backup_tokens_direct (cpp_reader *pfile, unsigned int count)
3039 {
3040 pfile->lookaheads += count;
3041 while (count--)
3042 {
3043 pfile->cur_token--;
3044 if (pfile->cur_token == pfile->cur_run->base
3045 /* Possible with -fpreprocessed and no leading #line. */
3046 && pfile->cur_run->prev != NULL)
3047 {
3048 pfile->cur_run = pfile->cur_run->prev;
3049 pfile->cur_token = pfile->cur_run->limit;
3050 }
3051 }
3052 }
3053
3054 /* Step back one (or more) tokens. Can only step back more than 1 if
3055 they are from the lexer, and not from macro expansion. */
3056 void
3057 _cpp_backup_tokens (cpp_reader *pfile, unsigned int count)
3058 {
3059 if (pfile->context->prev == NULL)
3060 _cpp_backup_tokens_direct (pfile, count);
3061 else
3062 {
3063 if (count != 1)
3064 abort ();
3065 if (pfile->context->tokens_kind == TOKENS_KIND_DIRECT)
3066 FIRST (pfile->context).token--;
3067 else if (pfile->context->tokens_kind == TOKENS_KIND_INDIRECT)
3068 FIRST (pfile->context).ptoken--;
3069 else if (pfile->context->tokens_kind == TOKENS_KIND_EXTENDED)
3070 {
3071 FIRST (pfile->context).ptoken--;
3072 if (pfile->context->c.macro)
3073 {
3074 macro_context *m = pfile->context->c.mc;
3075 m->cur_virt_loc--;
3076 gcc_checking_assert (m->cur_virt_loc >= m->virt_locs);
3077 }
3078 else
3079 abort ();
3080 }
3081 else
3082 abort ();
3083 }
3084 }
3085
3086 /* #define directive parsing and handling. */
3087
3088 /* Returns true if a macro redefinition warning is required. */
3089 static bool
3090 warn_of_redefinition (cpp_reader *pfile, cpp_hashnode *node,
3091 const cpp_macro *macro2)
3092 {
3093 /* Some redefinitions need to be warned about regardless. */
3094 if (node->flags & NODE_WARN)
3095 return true;
3096
3097 /* Suppress warnings for builtins that lack the NODE_WARN flag,
3098 unless Wbuiltin-macro-redefined. */
3099 if (cpp_builtin_macro_p (node))
3100 return CPP_OPTION (pfile, warn_builtin_macro_redefined);
3101
3102 /* Redefinitions of conditional (context-sensitive) macros, on
3103 the other hand, must be allowed silently. */
3104 if (node->flags & NODE_CONDITIONAL)
3105 return false;
3106
3107 cpp_macro *macro1 = node->value.macro;
3108 if (macro1->lazy)
3109 {
3110 /* We don't want to mark MACRO as used, but do need to finalize
3111 its laziness. */
3112 pfile->cb.user_lazy_macro (pfile, macro1, macro1->lazy - 1);
3113 macro1->lazy = 0;
3114 }
3115
3116 /* Redefinition of a macro is allowed if and only if the old and new
3117 definitions are the same. (6.10.3 paragraph 2). */
3118
3119 /* Don't check count here as it can be different in valid
3120 traditional redefinitions with just whitespace differences. */
3121 if (macro1->paramc != macro2->paramc
3122 || macro1->fun_like != macro2->fun_like
3123 || macro1->variadic != macro2->variadic)
3124 return true;
3125
3126 /* Check parameter spellings. */
3127 for (unsigned i = macro1->paramc; i--; )
3128 if (macro1->parm.params[i] != macro2->parm.params[i])
3129 return true;
3130
3131 /* Check the replacement text or tokens. */
3132 if (macro1->kind == cmk_traditional)
3133 return _cpp_expansions_different_trad (macro1, macro2);
3134
3135 if (macro1->count != macro2->count)
3136 return true;
3137
3138 for (unsigned i= macro1->count; i--; )
3139 if (!_cpp_equiv_tokens (&macro1->exp.tokens[i], &macro2->exp.tokens[i]))
3140 return true;
3141
3142 return false;
3143 }
3144
3145 /* Free the definition of hashnode H. */
3146 void
3147 _cpp_free_definition (cpp_hashnode *h)
3148 {
3149 /* Macros and assertions no longer have anything to free. */
3150 h->type = NT_VOID;
3151 h->value.answers = NULL;
3152 h->flags &= ~(NODE_DISABLED | NODE_USED);
3153 }
3154
3155 /* Save parameter NODE (spelling SPELLING) to the parameter list of
3156 macro MACRO. Returns true on success, false on failure. */
3157 bool
3158 _cpp_save_parameter (cpp_reader *pfile, unsigned n, cpp_hashnode *node,
3159 cpp_hashnode *spelling)
3160 {
3161 /* Constraint 6.10.3.6 - duplicate parameter names. */
3162 if (node->type == NT_MACRO_ARG)
3163 {
3164 cpp_error (pfile, CPP_DL_ERROR, "duplicate macro parameter \"%s\"",
3165 NODE_NAME (node));
3166 return false;
3167 }
3168
3169 unsigned len = (n + 1) * sizeof (struct macro_arg_saved_data);
3170 if (len > pfile->macro_buffer_len)
3171 {
3172 pfile->macro_buffer
3173 = XRESIZEVEC (unsigned char, pfile->macro_buffer, len);
3174 pfile->macro_buffer_len = len;
3175 }
3176
3177 macro_arg_saved_data *saved = (macro_arg_saved_data *)pfile->macro_buffer;
3178 saved[n].canonical_node = node;
3179 saved[n].value = node->value;
3180 saved[n].type = node->type;
3181
3182 void *base = _cpp_reserve_room (pfile, n * sizeof (cpp_hashnode *),
3183 sizeof (cpp_hashnode *));
3184 ((cpp_hashnode **)base)[n] = spelling;
3185
3186 /* Morph into a macro arg. */
3187 node->type = NT_MACRO_ARG;
3188 /* Index is 1 based. */
3189 node->value.arg_index = n + 1;
3190
3191 return true;
3192 }
3193
3194 /* Restore the parameters to their previous state. */
3195 void
3196 _cpp_unsave_parameters (cpp_reader *pfile, unsigned n)
3197 {
3198 /* Clear the fast argument lookup indices. */
3199 while (n--)
3200 {
3201 struct macro_arg_saved_data *save =
3202 &((struct macro_arg_saved_data *) pfile->macro_buffer)[n];
3203
3204 struct cpp_hashnode *node = save->canonical_node;
3205 node->type = save->type;
3206 node->value = save->value;
3207 }
3208 }
3209
3210 /* Check the syntax of the parameters in a MACRO definition. Return
3211 false on failure. Set *N_PTR and *VARADIC_PTR as appropriate.
3212 '(' ')'
3213 '(' parm-list ',' last-parm ')'
3214 '(' last-parm ')'
3215 parm-list: name
3216 | parm-list, name
3217 last-parm: name
3218 | name '...'
3219 | '...'
3220 */
3221
3222 static bool
3223 parse_params (cpp_reader *pfile, unsigned *n_ptr, bool *varadic_ptr)
3224 {
3225 unsigned nparms = 0;
3226 bool ok = false;
3227
3228 for (bool prev_ident = false;;)
3229 {
3230 const cpp_token *token = _cpp_lex_token (pfile);
3231
3232 switch (token->type)
3233 {
3234 case CPP_COMMENT:
3235 /* Allow/ignore comments in parameter lists if we are
3236 preserving comments in macro expansions. */
3237 if (!CPP_OPTION (pfile, discard_comments_in_macro_exp))
3238 break;
3239
3240 /* FALLTHRU */
3241 default:
3242 bad:
3243 {
3244 const char *const msgs[5] =
3245 {
3246 N_("expected parameter name, found \"%s\""),
3247 N_("expected ',' or ')', found \"%s\""),
3248 N_("expected parameter name before end of line"),
3249 N_("expected ')' before end of line"),
3250 N_("expected ')' after \"...\"")
3251 };
3252 unsigned ix = prev_ident;
3253 const unsigned char *as_text = NULL;
3254 if (*varadic_ptr)
3255 ix = 4;
3256 else if (token->type == CPP_EOF)
3257 ix += 2;
3258 else
3259 as_text = cpp_token_as_text (pfile, token);
3260 cpp_error (pfile, CPP_DL_ERROR, msgs[ix], as_text);
3261 }
3262 goto out;
3263
3264 case CPP_NAME:
3265 if (prev_ident || *varadic_ptr)
3266 goto bad;
3267 prev_ident = true;
3268
3269 if (!_cpp_save_parameter (pfile, nparms, token->val.node.node,
3270 token->val.node.spelling))
3271 goto out;
3272 nparms++;
3273 break;
3274
3275 case CPP_CLOSE_PAREN:
3276 if (prev_ident || !nparms || *varadic_ptr)
3277 {
3278 ok = true;
3279 goto out;
3280 }
3281
3282 /* FALLTHRU */
3283 case CPP_COMMA:
3284 if (!prev_ident || *varadic_ptr)
3285 goto bad;
3286 prev_ident = false;
3287 break;
3288
3289 case CPP_ELLIPSIS:
3290 if (*varadic_ptr)
3291 goto bad;
3292 *varadic_ptr = true;
3293 if (!prev_ident)
3294 {
3295 /* An ISO bare ellipsis. */
3296 _cpp_save_parameter (pfile, nparms,
3297 pfile->spec_nodes.n__VA_ARGS__,
3298 pfile->spec_nodes.n__VA_ARGS__);
3299 nparms++;
3300 pfile->state.va_args_ok = 1;
3301 if (! CPP_OPTION (pfile, c99)
3302 && CPP_OPTION (pfile, cpp_pedantic)
3303 && CPP_OPTION (pfile, warn_variadic_macros))
3304 cpp_pedwarning
3305 (pfile, CPP_W_VARIADIC_MACROS,
3306 CPP_OPTION (pfile, cplusplus)
3307 ? N_("anonymous variadic macros were introduced in C++11")
3308 : N_("anonymous variadic macros were introduced in C99"));
3309 else if (CPP_OPTION (pfile, cpp_warn_c90_c99_compat) > 0
3310 && ! CPP_OPTION (pfile, cplusplus))
3311 cpp_error (pfile, CPP_DL_WARNING,
3312 "anonymous variadic macros were introduced in C99");
3313 }
3314 else if (CPP_OPTION (pfile, cpp_pedantic)
3315 && CPP_OPTION (pfile, warn_variadic_macros))
3316 cpp_pedwarning (pfile, CPP_W_VARIADIC_MACROS,
3317 CPP_OPTION (pfile, cplusplus)
3318 ? N_("ISO C++ does not permit named variadic macros")
3319 : N_("ISO C does not permit named variadic macros"));
3320 break;
3321 }
3322 }
3323
3324 out:
3325 *n_ptr = nparms;
3326
3327 return ok;
3328 }
3329
3330 /* Lex a token from the expansion of MACRO, but mark parameters as we
3331 find them and warn of traditional stringification. */
3332 static cpp_macro *
3333 lex_expansion_token (cpp_reader *pfile, cpp_macro *macro)
3334 {
3335 macro = (cpp_macro *)_cpp_reserve_room (pfile,
3336 sizeof (cpp_macro) - sizeof (cpp_token)
3337 + macro->count * sizeof (cpp_token),
3338 sizeof (cpp_token));
3339 cpp_token *saved_cur_token = pfile->cur_token;
3340 pfile->cur_token = &macro->exp.tokens[macro->count];
3341 cpp_token *token = _cpp_lex_direct (pfile);
3342 pfile->cur_token = saved_cur_token;
3343
3344 /* Is this a parameter? */
3345 if (token->type == CPP_NAME && token->val.node.node->type == NT_MACRO_ARG)
3346 {
3347 /* Morph into a parameter reference. */
3348 cpp_hashnode *spelling = token->val.node.spelling;
3349 token->type = CPP_MACRO_ARG;
3350 token->val.macro_arg.arg_no = token->val.node.node->value.arg_index;
3351 token->val.macro_arg.spelling = spelling;
3352 }
3353 else if (CPP_WTRADITIONAL (pfile) && macro->paramc > 0
3354 && (token->type == CPP_STRING || token->type == CPP_CHAR))
3355 check_trad_stringification (pfile, macro, &token->val.str);
3356
3357 return macro;
3358 }
3359
3360 static cpp_macro *
3361 create_iso_definition (cpp_reader *pfile)
3362 {
3363 bool following_paste_op = false;
3364 const char *paste_op_error_msg =
3365 N_("'##' cannot appear at either end of a macro expansion");
3366 unsigned int num_extra_tokens = 0;
3367 unsigned nparms = 0;
3368 cpp_hashnode **params = NULL;
3369 bool varadic = false;
3370 bool ok = false;
3371 cpp_macro *macro = NULL;
3372
3373 /* Look at the first token, to see if this is a function-like
3374 macro. */
3375 cpp_token first;
3376 cpp_token *saved_cur_token = pfile->cur_token;
3377 pfile->cur_token = &first;
3378 cpp_token *token = _cpp_lex_direct (pfile);
3379 pfile->cur_token = saved_cur_token;
3380
3381 if (token->flags & PREV_WHITE)
3382 /* Preceeded by space, must be part of expansion. */;
3383 else if (token->type == CPP_OPEN_PAREN)
3384 {
3385 /* An open-paren, get a parameter list. */
3386 if (!parse_params (pfile, &nparms, &varadic))
3387 goto out;
3388
3389 params = (cpp_hashnode **)_cpp_commit_buff
3390 (pfile, sizeof (cpp_hashnode *) * nparms);
3391 token = NULL;
3392 }
3393 else if (token->type != CPP_EOF
3394 && !(token->type == CPP_COMMENT
3395 && ! CPP_OPTION (pfile, discard_comments_in_macro_exp)))
3396 {
3397 /* While ISO C99 requires whitespace before replacement text
3398 in a macro definition, ISO C90 with TC1 allows characters
3399 from the basic source character set there. */
3400 if (CPP_OPTION (pfile, c99))
3401 cpp_error (pfile, CPP_DL_PEDWARN,
3402 CPP_OPTION (pfile, cplusplus)
3403 ? N_("ISO C++11 requires whitespace after the macro name")
3404 : N_("ISO C99 requires whitespace after the macro name"));
3405 else
3406 {
3407 enum cpp_diagnostic_level warntype = CPP_DL_WARNING;
3408 switch (token->type)
3409 {
3410 case CPP_ATSIGN:
3411 case CPP_AT_NAME:
3412 case CPP_OBJC_STRING:
3413 /* '@' is not in basic character set. */
3414 warntype = CPP_DL_PEDWARN;
3415 break;
3416 case CPP_OTHER:
3417 /* Basic character set sans letters, digits and _. */
3418 if (strchr ("!\"#%&'()*+,-./:;<=>?[\\]^{|}~",
3419 token->val.str.text[0]) == NULL)
3420 warntype = CPP_DL_PEDWARN;
3421 break;
3422 default:
3423 /* All other tokens start with a character from basic
3424 character set. */
3425 break;
3426 }
3427 cpp_error (pfile, warntype,
3428 "missing whitespace after the macro name");
3429 }
3430 }
3431
3432 macro = _cpp_new_macro (pfile, cmk_macro,
3433 _cpp_reserve_room (pfile, 0, sizeof (cpp_macro)));
3434
3435 if (!token)
3436 {
3437 macro->variadic = varadic;
3438 macro->paramc = nparms;
3439 macro->parm.params = params;
3440 macro->fun_like = true;
3441 }
3442 else
3443 {
3444 /* Preserve the token we peeked, there is already a single slot for it. */
3445 macro->exp.tokens[0] = *token;
3446 token = &macro->exp.tokens[0];
3447 macro->count = 1;
3448 }
3449
3450 for (vaopt_state vaopt_tracker (pfile, macro->variadic, NULL);; token = NULL)
3451 {
3452 if (!token)
3453 {
3454 macro = lex_expansion_token (pfile, macro);
3455 token = &macro->exp.tokens[macro->count++];
3456 }
3457
3458 /* Check the stringifying # constraint 6.10.3.2.1 of
3459 function-like macros when lexing the subsequent token. */
3460 if (macro->count > 1 && token[-1].type == CPP_HASH && macro->fun_like)
3461 {
3462 if (token->type == CPP_MACRO_ARG)
3463 {
3464 if (token->flags & PREV_WHITE)
3465 token->flags |= SP_PREV_WHITE;
3466 if (token[-1].flags & DIGRAPH)
3467 token->flags |= SP_DIGRAPH;
3468 token->flags &= ~PREV_WHITE;
3469 token->flags |= STRINGIFY_ARG;
3470 token->flags |= token[-1].flags & PREV_WHITE;
3471 token[-1] = token[0];
3472 macro->count--;
3473 }
3474 /* Let assembler get away with murder. */
3475 else if (CPP_OPTION (pfile, lang) != CLK_ASM)
3476 {
3477 cpp_error (pfile, CPP_DL_ERROR,
3478 "'#' is not followed by a macro parameter");
3479 goto out;
3480 }
3481 }
3482
3483 if (token->type == CPP_EOF)
3484 {
3485 /* Paste operator constraint 6.10.3.3.1:
3486 Token-paste ##, can appear in both object-like and
3487 function-like macros, but not at the end. */
3488 if (following_paste_op)
3489 {
3490 cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
3491 goto out;
3492 }
3493 if (!vaopt_tracker.completed ())
3494 goto out;
3495 break;
3496 }
3497
3498 /* Paste operator constraint 6.10.3.3.1. */
3499 if (token->type == CPP_PASTE)
3500 {
3501 /* Token-paste ##, can appear in both object-like and
3502 function-like macros, but not at the beginning. */
3503 if (macro->count == 1)
3504 {
3505 cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
3506 goto out;
3507 }
3508
3509 if (following_paste_op)
3510 {
3511 /* Consecutive paste operators. This one will be moved
3512 to the end. */
3513 num_extra_tokens++;
3514 token->val.token_no = macro->count - 1;
3515 }
3516 else
3517 {
3518 /* Drop the paste operator. */
3519 --macro->count;
3520 token[-1].flags |= PASTE_LEFT;
3521 if (token->flags & DIGRAPH)
3522 token[-1].flags |= SP_DIGRAPH;
3523 if (token->flags & PREV_WHITE)
3524 token[-1].flags |= SP_PREV_WHITE;
3525 }
3526 following_paste_op = true;
3527 }
3528 else
3529 following_paste_op = false;
3530
3531 if (vaopt_tracker.update (token) == vaopt_state::ERROR)
3532 goto out;
3533 }
3534
3535 /* We're committed to winning now. */
3536 ok = true;
3537
3538 /* Don't count the CPP_EOF. */
3539 macro->count--;
3540
3541 macro = (cpp_macro *)_cpp_commit_buff
3542 (pfile, sizeof (cpp_macro) - sizeof (cpp_token)
3543 + sizeof (cpp_token) * macro->count);
3544
3545 /* Clear whitespace on first token. */
3546 if (macro->count)
3547 macro->exp.tokens[0].flags &= ~PREV_WHITE;
3548
3549 if (num_extra_tokens)
3550 {
3551 /* Place second and subsequent ## or %:%: tokens in sequences of
3552 consecutive such tokens at the end of the list to preserve
3553 information about where they appear, how they are spelt and
3554 whether they are preceded by whitespace without otherwise
3555 interfering with macro expansion. Remember, this is
3556 extremely rare, so efficiency is not a priority. */
3557 cpp_token *temp = (cpp_token *)_cpp_reserve_room
3558 (pfile, 0, num_extra_tokens * sizeof (cpp_token));
3559 unsigned extra_ix = 0, norm_ix = 0;
3560 cpp_token *exp = macro->exp.tokens;
3561 for (unsigned ix = 0; ix != macro->count; ix++)
3562 if (exp[ix].type == CPP_PASTE)
3563 temp[extra_ix++] = exp[ix];
3564 else
3565 exp[norm_ix++] = exp[ix];
3566 memcpy (&exp[norm_ix], temp, num_extra_tokens * sizeof (cpp_token));
3567
3568 /* Record there are extra tokens. */
3569 macro->extra_tokens = 1;
3570 }
3571
3572 out:
3573 pfile->state.va_args_ok = 0;
3574 _cpp_unsave_parameters (pfile, nparms);
3575
3576 return ok ? macro : NULL;
3577 }
3578
3579 cpp_macro *
3580 _cpp_new_macro (cpp_reader *pfile, cpp_macro_kind kind, void *placement)
3581 {
3582 cpp_macro *macro = (cpp_macro *) placement;
3583
3584 macro->line = pfile->directive_line;
3585 macro->parm.params = 0;
3586 macro->lazy = 0;
3587 macro->paramc = 0;
3588 macro->variadic = 0;
3589 macro->used = !CPP_OPTION (pfile, warn_unused_macros);
3590 macro->count = 0;
3591 macro->fun_like = 0;
3592 macro->extra_tokens = 0;
3593 /* To suppress some diagnostics. */
3594 macro->syshdr = pfile->buffer && pfile->buffer->sysp != 0;
3595
3596 macro->kind = kind;
3597
3598 return macro;
3599 }
3600
3601 /* Parse a macro and save its expansion. Returns nonzero on success. */
3602 bool
3603 _cpp_create_definition (cpp_reader *pfile, cpp_hashnode *node)
3604 {
3605 cpp_macro *macro;
3606
3607 if (CPP_OPTION (pfile, traditional))
3608 macro = _cpp_create_trad_definition (pfile);
3609 else
3610 macro = create_iso_definition (pfile);
3611
3612 if (!macro)
3613 return false;
3614
3615 if (cpp_macro_p (node))
3616 {
3617 if (CPP_OPTION (pfile, warn_unused_macros))
3618 _cpp_warn_if_unused_macro (pfile, node, NULL);
3619
3620 if (warn_of_redefinition (pfile, node, macro))
3621 {
3622 const enum cpp_warning_reason reason
3623 = (cpp_builtin_macro_p (node) && !(node->flags & NODE_WARN))
3624 ? CPP_W_BUILTIN_MACRO_REDEFINED : CPP_W_NONE;
3625
3626 bool warned =
3627 cpp_pedwarning_with_line (pfile, reason,
3628 pfile->directive_line, 0,
3629 "\"%s\" redefined", NODE_NAME (node));
3630
3631 if (warned && cpp_user_macro_p (node))
3632 cpp_error_with_line (pfile, CPP_DL_NOTE,
3633 node->value.macro->line, 0,
3634 "this is the location of the previous definition");
3635 }
3636 _cpp_free_definition (node);
3637 }
3638
3639 /* Enter definition in hash table. */
3640 node->type = NT_USER_MACRO;
3641 node->value.macro = macro;
3642 if (! ustrncmp (NODE_NAME (node), DSC ("__STDC_"))
3643 && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_FORMAT_MACROS")
3644 /* __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS are mentioned
3645 in the C standard, as something that one must use in C++.
3646 However DR#593 and C++11 indicate that they play no role in C++.
3647 We special-case them anyway. */
3648 && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_LIMIT_MACROS")
3649 && ustrcmp (NODE_NAME (node), (const uchar *) "__STDC_CONSTANT_MACROS"))
3650 node->flags |= NODE_WARN;
3651
3652 /* If user defines one of the conditional macros, remove the
3653 conditional flag */
3654 node->flags &= ~NODE_CONDITIONAL;
3655
3656 return true;
3657 }
3658
3659 extern void
3660 cpp_define_lazily (cpp_reader *pfile, cpp_hashnode *node, unsigned num)
3661 {
3662 cpp_macro *macro = node->value.macro;
3663
3664 gcc_checking_assert (pfile->cb.user_lazy_macro && macro && num < UCHAR_MAX);
3665
3666 macro->lazy = num + 1;
3667 }
3668
3669 /* Notify the use of NODE in a macro-aware context (i.e. expanding it,
3670 or testing its existance). Also applies any lazy definition. */
3671
3672 extern void
3673 _cpp_notify_macro_use (cpp_reader *pfile, cpp_hashnode *node)
3674 {
3675 node->flags |= NODE_USED;
3676 switch (node->type)
3677 {
3678 case NT_USER_MACRO:
3679 {
3680 cpp_macro *macro = node->value.macro;
3681 if (macro->lazy)
3682 {
3683 pfile->cb.user_lazy_macro (pfile, macro, macro->lazy - 1);
3684 macro->lazy = 0;
3685 }
3686 }
3687 /* FALLTHROUGH. */
3688
3689 case NT_BUILTIN_MACRO:
3690 if (pfile->cb.used_define)
3691 pfile->cb.used_define (pfile, pfile->directive_line, node);
3692 break;
3693
3694 case NT_VOID:
3695 if (pfile->cb.used_undef)
3696 pfile->cb.used_undef (pfile, pfile->directive_line, node);
3697 break;
3698
3699 default:
3700 abort ();
3701 }
3702 }
3703
3704 /* Warn if a token in STRING matches one of a function-like MACRO's
3705 parameters. */
3706 static void
3707 check_trad_stringification (cpp_reader *pfile, const cpp_macro *macro,
3708 const cpp_string *string)
3709 {
3710 unsigned int i, len;
3711 const uchar *p, *q, *limit;
3712
3713 /* Loop over the string. */
3714 limit = string->text + string->len - 1;
3715 for (p = string->text + 1; p < limit; p = q)
3716 {
3717 /* Find the start of an identifier. */
3718 while (p < limit && !is_idstart (*p))
3719 p++;
3720
3721 /* Find the end of the identifier. */
3722 q = p;
3723 while (q < limit && is_idchar (*q))
3724 q++;
3725
3726 len = q - p;
3727
3728 /* Loop over the function macro arguments to see if the
3729 identifier inside the string matches one of them. */
3730 for (i = 0; i < macro->paramc; i++)
3731 {
3732 const cpp_hashnode *node = macro->parm.params[i];
3733
3734 if (NODE_LEN (node) == len
3735 && !memcmp (p, NODE_NAME (node), len))
3736 {
3737 cpp_warning (pfile, CPP_W_TRADITIONAL,
3738 "macro argument \"%s\" would be stringified in traditional C",
3739 NODE_NAME (node));
3740 break;
3741 }
3742 }
3743 }
3744 }
3745
3746 /* Returns the name, arguments and expansion of a macro, in a format
3747 suitable to be read back in again, and therefore also for DWARF 2
3748 debugging info. e.g. "PASTE(X, Y) X ## Y", or "MACNAME EXPANSION".
3749 Caller is expected to generate the "#define" bit if needed. The
3750 returned text is temporary, and automatically freed later. */
3751 const unsigned char *
3752 cpp_macro_definition (cpp_reader *pfile, cpp_hashnode *node)
3753 {
3754 unsigned int i, len;
3755 unsigned char *buffer;
3756
3757 gcc_checking_assert (cpp_user_macro_p (node));
3758
3759 const cpp_macro *macro = node->value.macro;
3760
3761 /* Calculate length. */
3762 len = NODE_LEN (node) * 10 + 2; /* ' ' and NUL. */
3763 if (macro->fun_like)
3764 {
3765 len += 4; /* "()" plus possible final ".." of named
3766 varargs (we have + 1 below). */
3767 for (i = 0; i < macro->paramc; i++)
3768 len += NODE_LEN (macro->parm.params[i]) + 1; /* "," */
3769 }
3770
3771 /* This should match below where we fill in the buffer. */
3772 if (CPP_OPTION (pfile, traditional))
3773 len += _cpp_replacement_text_len (macro);
3774 else
3775 {
3776 unsigned int count = macro_real_token_count (macro);
3777 for (i = 0; i < count; i++)
3778 {
3779 const cpp_token *token = &macro->exp.tokens[i];
3780
3781 if (token->type == CPP_MACRO_ARG)
3782 len += NODE_LEN (token->val.macro_arg.spelling);
3783 else
3784 len += cpp_token_len (token);
3785
3786 if (token->flags & STRINGIFY_ARG)
3787 len++; /* "#" */
3788 if (token->flags & PASTE_LEFT)
3789 len += 3; /* " ##" */
3790 if (token->flags & PREV_WHITE)
3791 len++; /* " " */
3792 }
3793 }
3794
3795 if (len > pfile->macro_buffer_len)
3796 {
3797 pfile->macro_buffer = XRESIZEVEC (unsigned char,
3798 pfile->macro_buffer, len);
3799 pfile->macro_buffer_len = len;
3800 }
3801
3802 /* Fill in the buffer. Start with the macro name. */
3803 buffer = pfile->macro_buffer;
3804 buffer = _cpp_spell_ident_ucns (buffer, node);
3805
3806 /* Parameter names. */
3807 if (macro->fun_like)
3808 {
3809 *buffer++ = '(';
3810 for (i = 0; i < macro->paramc; i++)
3811 {
3812 cpp_hashnode *param = macro->parm.params[i];
3813
3814 if (param != pfile->spec_nodes.n__VA_ARGS__)
3815 {
3816 memcpy (buffer, NODE_NAME (param), NODE_LEN (param));
3817 buffer += NODE_LEN (param);
3818 }
3819
3820 if (i + 1 < macro->paramc)
3821 /* Don't emit a space after the comma here; we're trying
3822 to emit a Dwarf-friendly definition, and the Dwarf spec
3823 forbids spaces in the argument list. */
3824 *buffer++ = ',';
3825 else if (macro->variadic)
3826 *buffer++ = '.', *buffer++ = '.', *buffer++ = '.';
3827 }
3828 *buffer++ = ')';
3829 }
3830
3831 /* The Dwarf spec requires a space after the macro name, even if the
3832 definition is the empty string. */
3833 *buffer++ = ' ';
3834
3835 if (CPP_OPTION (pfile, traditional))
3836 buffer = _cpp_copy_replacement_text (macro, buffer);
3837 else if (macro->count)
3838 /* Expansion tokens. */
3839 {
3840 unsigned int count = macro_real_token_count (macro);
3841 for (i = 0; i < count; i++)
3842 {
3843 const cpp_token *token = &macro->exp.tokens[i];
3844
3845 if (token->flags & PREV_WHITE)
3846 *buffer++ = ' ';
3847 if (token->flags & STRINGIFY_ARG)
3848 *buffer++ = '#';
3849
3850 if (token->type == CPP_MACRO_ARG)
3851 {
3852 memcpy (buffer,
3853 NODE_NAME (token->val.macro_arg.spelling),
3854 NODE_LEN (token->val.macro_arg.spelling));
3855 buffer += NODE_LEN (token->val.macro_arg.spelling);
3856 }
3857 else
3858 buffer = cpp_spell_token (pfile, token, buffer, true);
3859
3860 if (token->flags & PASTE_LEFT)
3861 {
3862 *buffer++ = ' ';
3863 *buffer++ = '#';
3864 *buffer++ = '#';
3865 /* Next has PREV_WHITE; see _cpp_create_definition. */
3866 }
3867 }
3868 }
3869
3870 *buffer = '\0';
3871 return pfile->macro_buffer;
3872 }