d7b59aae90149e10843f6f2f8bc3d9e8eb87ed56
[gcc.git] / libcpp / directives.c
1 /* CPP Library. (Directive handling.)
2 Copyright (C) 1986-2020 Free Software Foundation, Inc.
3 Contributed by Per Bothner, 1994-95.
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 #include "config.h"
22 #include "system.h"
23 #include "cpplib.h"
24 #include "internal.h"
25 #include "mkdeps.h"
26 #include "obstack.h"
27
28 /* Stack of conditionals currently in progress
29 (including both successful and failing conditionals). */
30 struct if_stack
31 {
32 struct if_stack *next;
33 location_t line; /* Line where condition started. */
34 const cpp_hashnode *mi_cmacro;/* macro name for #ifndef around entire file */
35 bool skip_elses; /* Can future #else / #elif be skipped? */
36 bool was_skipping; /* If were skipping on entry. */
37 int type; /* Most recent conditional for diagnostics. */
38 };
39
40 /* Contains a registered pragma or pragma namespace. */
41 typedef void (*pragma_cb) (cpp_reader *);
42 struct pragma_entry
43 {
44 struct pragma_entry *next;
45 const cpp_hashnode *pragma; /* Name and length. */
46 bool is_nspace;
47 bool is_internal;
48 bool is_deferred;
49 bool allow_expansion;
50 union {
51 pragma_cb handler;
52 struct pragma_entry *space;
53 unsigned int ident;
54 } u;
55 };
56
57 /* Values for the origin field of struct directive. KANDR directives
58 come from traditional (K&R) C. STDC89 directives come from the
59 1989 C standard. EXTENSION directives are extensions. */
60 #define KANDR 0
61 #define STDC89 1
62 #define EXTENSION 2
63
64 /* Values for the flags field of struct directive. COND indicates a
65 conditional; IF_COND an opening conditional. INCL means to treat
66 "..." and <...> as q-char and h-char sequences respectively. IN_I
67 means this directive should be handled even if -fpreprocessed is in
68 effect (these are the directives with callback hooks).
69
70 EXPAND is set on directives that are always macro-expanded. */
71 #define COND (1 << 0)
72 #define IF_COND (1 << 1)
73 #define INCL (1 << 2)
74 #define IN_I (1 << 3)
75 #define EXPAND (1 << 4)
76 #define DEPRECATED (1 << 5)
77
78 /* Defines one #-directive, including how to handle it. */
79 typedef void (*directive_handler) (cpp_reader *);
80 typedef struct directive directive;
81 struct directive
82 {
83 directive_handler handler; /* Function to handle directive. */
84 const uchar *name; /* Name of directive. */
85 unsigned short length; /* Length of name. */
86 unsigned char origin; /* Origin of directive. */
87 unsigned char flags; /* Flags describing this directive. */
88 };
89
90 /* Forward declarations. */
91
92 static void skip_rest_of_line (cpp_reader *);
93 static void check_eol (cpp_reader *, bool);
94 static void start_directive (cpp_reader *);
95 static void prepare_directive_trad (cpp_reader *);
96 static void end_directive (cpp_reader *, int);
97 static void directive_diagnostics (cpp_reader *, const directive *, int);
98 static void run_directive (cpp_reader *, int, const char *, size_t);
99 static char *glue_header_name (cpp_reader *);
100 static const char *parse_include (cpp_reader *, int *, const cpp_token ***,
101 location_t *);
102 static void push_conditional (cpp_reader *, int, int, const cpp_hashnode *);
103 static unsigned int read_flag (cpp_reader *, unsigned int);
104 static bool strtolinenum (const uchar *, size_t, linenum_type *, bool *);
105 static void do_diagnostic (cpp_reader *, enum cpp_diagnostic_level code,
106 enum cpp_warning_reason reason, int);
107 static cpp_hashnode *lex_macro_node (cpp_reader *, bool);
108 static int undefine_macros (cpp_reader *, cpp_hashnode *, void *);
109 static void do_include_common (cpp_reader *, enum include_type);
110 static struct pragma_entry *lookup_pragma_entry (struct pragma_entry *,
111 const cpp_hashnode *);
112 static int count_registered_pragmas (struct pragma_entry *);
113 static char ** save_registered_pragmas (struct pragma_entry *, char **);
114 static char ** restore_registered_pragmas (cpp_reader *, struct pragma_entry *,
115 char **);
116 static void do_pragma_once (cpp_reader *);
117 static void do_pragma_poison (cpp_reader *);
118 static void do_pragma_system_header (cpp_reader *);
119 static void do_pragma_dependency (cpp_reader *);
120 static void do_pragma_warning_or_error (cpp_reader *, bool error);
121 static void do_pragma_warning (cpp_reader *);
122 static void do_pragma_error (cpp_reader *);
123 static void do_linemarker (cpp_reader *);
124 static const cpp_token *get_token_no_padding (cpp_reader *);
125 static const cpp_token *get__Pragma_string (cpp_reader *);
126 static void destringize_and_run (cpp_reader *, const cpp_string *,
127 location_t);
128 static bool parse_answer (cpp_reader *, int, location_t, cpp_macro **);
129 static cpp_hashnode *parse_assertion (cpp_reader *, int, cpp_macro **);
130 static cpp_macro **find_answer (cpp_hashnode *, const cpp_macro *);
131 static void handle_assertion (cpp_reader *, const char *, int);
132 static void do_pragma_push_macro (cpp_reader *);
133 static void do_pragma_pop_macro (cpp_reader *);
134 static void cpp_pop_definition (cpp_reader *, struct def_pragma_macro *);
135
136 /* This is the table of directive handlers. All extensions other than
137 #warning, #include_next, and #import are deprecated. The name is
138 where the extension appears to have come from. */
139
140 #define DIRECTIVE_TABLE \
141 D(define, T_DEFINE = 0, KANDR, IN_I) \
142 D(include, T_INCLUDE, KANDR, INCL | EXPAND) \
143 D(endif, T_ENDIF, KANDR, COND) \
144 D(ifdef, T_IFDEF, KANDR, COND | IF_COND) \
145 D(if, T_IF, KANDR, COND | IF_COND | EXPAND) \
146 D(else, T_ELSE, KANDR, COND) \
147 D(ifndef, T_IFNDEF, KANDR, COND | IF_COND) \
148 D(undef, T_UNDEF, KANDR, IN_I) \
149 D(line, T_LINE, KANDR, EXPAND) \
150 D(elif, T_ELIF, STDC89, COND | EXPAND) \
151 D(error, T_ERROR, STDC89, 0) \
152 D(pragma, T_PRAGMA, STDC89, IN_I) \
153 D(warning, T_WARNING, EXTENSION, 0) \
154 D(include_next, T_INCLUDE_NEXT, EXTENSION, INCL | EXPAND) \
155 D(ident, T_IDENT, EXTENSION, IN_I) \
156 D(import, T_IMPORT, EXTENSION, INCL | EXPAND) /* ObjC */ \
157 D(assert, T_ASSERT, EXTENSION, DEPRECATED) /* SVR4 */ \
158 D(unassert, T_UNASSERT, EXTENSION, DEPRECATED) /* SVR4 */ \
159 D(sccs, T_SCCS, EXTENSION, IN_I) /* SVR4? */
160
161 /* #sccs is synonymous with #ident. */
162 #define do_sccs do_ident
163
164 /* Use the table to generate a series of prototypes, an enum for the
165 directive names, and an array of directive handlers. */
166
167 #define D(name, t, o, f) static void do_##name (cpp_reader *);
168 DIRECTIVE_TABLE
169 #undef D
170
171 #define D(n, tag, o, f) tag,
172 enum
173 {
174 DIRECTIVE_TABLE
175 N_DIRECTIVES
176 };
177 #undef D
178
179 #define D(name, t, origin, flags) \
180 { do_##name, (const uchar *) #name, \
181 sizeof #name - 1, origin, flags },
182 static const directive dtable[] =
183 {
184 DIRECTIVE_TABLE
185 };
186 #undef D
187
188 /* A NULL-terminated array of directive names for use
189 when suggesting corrections for misspelled directives. */
190 #define D(name, t, origin, flags) #name,
191 static const char * const directive_names[] = {
192 DIRECTIVE_TABLE
193 NULL
194 };
195 #undef D
196
197 #undef DIRECTIVE_TABLE
198
199 /* Wrapper struct directive for linemarkers.
200 The origin is more or less true - the original K+R cpp
201 did use this notation in its preprocessed output. */
202 static const directive linemarker_dir =
203 {
204 do_linemarker, UC"#", 1, KANDR, IN_I
205 };
206
207 /* Skip any remaining tokens in a directive. */
208 static void
209 skip_rest_of_line (cpp_reader *pfile)
210 {
211 /* Discard all stacked contexts. */
212 while (pfile->context->prev)
213 _cpp_pop_context (pfile);
214
215 /* Sweep up all tokens remaining on the line. */
216 if (! SEEN_EOL ())
217 while (_cpp_lex_token (pfile)->type != CPP_EOF)
218 ;
219 }
220
221 /* Helper function for check_oel. */
222
223 static void
224 check_eol_1 (cpp_reader *pfile, bool expand, enum cpp_warning_reason reason)
225 {
226 if (! SEEN_EOL () && (expand
227 ? cpp_get_token (pfile)
228 : _cpp_lex_token (pfile))->type != CPP_EOF)
229 cpp_pedwarning (pfile, reason, "extra tokens at end of #%s directive",
230 pfile->directive->name);
231 }
232
233 /* Variant of check_eol used for Wendif-labels warnings. */
234
235 static void
236 check_eol_endif_labels (cpp_reader *pfile)
237 {
238 check_eol_1 (pfile, false, CPP_W_ENDIF_LABELS);
239 }
240
241 /* Ensure there are no stray tokens at the end of a directive. If
242 EXPAND is true, tokens macro-expanding to nothing are allowed. */
243
244 static void
245 check_eol (cpp_reader *pfile, bool expand)
246 {
247 check_eol_1 (pfile, expand, CPP_W_NONE);
248 }
249
250 /* Ensure there are no stray tokens other than comments at the end of
251 a directive, and gather the comments. */
252 static const cpp_token **
253 check_eol_return_comments (cpp_reader *pfile)
254 {
255 size_t c;
256 size_t capacity = 8;
257 const cpp_token **buf;
258
259 buf = XNEWVEC (const cpp_token *, capacity);
260 c = 0;
261 if (! SEEN_EOL ())
262 {
263 while (1)
264 {
265 const cpp_token *tok;
266
267 tok = _cpp_lex_token (pfile);
268 if (tok->type == CPP_EOF)
269 break;
270 if (tok->type != CPP_COMMENT)
271 cpp_error (pfile, CPP_DL_PEDWARN,
272 "extra tokens at end of #%s directive",
273 pfile->directive->name);
274 else
275 {
276 if (c + 1 >= capacity)
277 {
278 capacity *= 2;
279 buf = XRESIZEVEC (const cpp_token *, buf, capacity);
280 }
281 buf[c] = tok;
282 ++c;
283 }
284 }
285 }
286 buf[c] = NULL;
287 return buf;
288 }
289
290 /* Called when entering a directive, _Pragma or command-line directive. */
291 static void
292 start_directive (cpp_reader *pfile)
293 {
294 /* Setup in-directive state. */
295 pfile->state.in_directive = 1;
296 pfile->state.save_comments = 0;
297 pfile->directive_result.type = CPP_PADDING;
298
299 /* Some handlers need the position of the # for diagnostics. */
300 pfile->directive_line = pfile->line_table->highest_line;
301 }
302
303 /* Called when leaving a directive, _Pragma or command-line directive. */
304 static void
305 end_directive (cpp_reader *pfile, int skip_line)
306 {
307 if (CPP_OPTION (pfile, traditional))
308 {
309 /* Revert change of prepare_directive_trad. */
310 if (!pfile->state.in_deferred_pragma)
311 pfile->state.prevent_expansion--;
312
313 if (pfile->directive != &dtable[T_DEFINE])
314 _cpp_remove_overlay (pfile);
315 }
316 else if (pfile->state.in_deferred_pragma)
317 ;
318 /* We don't skip for an assembler #. */
319 else if (skip_line)
320 {
321 skip_rest_of_line (pfile);
322 if (!pfile->keep_tokens)
323 {
324 pfile->cur_run = &pfile->base_run;
325 pfile->cur_token = pfile->base_run.base;
326 }
327 }
328
329 /* Restore state. */
330 pfile->state.save_comments = ! CPP_OPTION (pfile, discard_comments);
331 pfile->state.in_directive = 0;
332 pfile->state.in_expression = 0;
333 pfile->state.angled_headers = 0;
334 pfile->directive = 0;
335 }
336
337 /* Prepare to handle the directive in pfile->directive. */
338 static void
339 prepare_directive_trad (cpp_reader *pfile)
340 {
341 if (pfile->directive != &dtable[T_DEFINE])
342 {
343 bool no_expand = (pfile->directive
344 && ! (pfile->directive->flags & EXPAND));
345 bool was_skipping = pfile->state.skipping;
346
347 pfile->state.in_expression = (pfile->directive == &dtable[T_IF]
348 || pfile->directive == &dtable[T_ELIF]);
349 if (pfile->state.in_expression)
350 pfile->state.skipping = false;
351
352 if (no_expand)
353 pfile->state.prevent_expansion++;
354 _cpp_scan_out_logical_line (pfile, NULL, false);
355 if (no_expand)
356 pfile->state.prevent_expansion--;
357
358 pfile->state.skipping = was_skipping;
359 _cpp_overlay_buffer (pfile, pfile->out.base,
360 pfile->out.cur - pfile->out.base);
361 }
362
363 /* Stop ISO C from expanding anything. */
364 pfile->state.prevent_expansion++;
365 }
366
367 /* Output diagnostics for a directive DIR. INDENTED is nonzero if
368 the '#' was indented. */
369 static void
370 directive_diagnostics (cpp_reader *pfile, const directive *dir, int indented)
371 {
372 /* Issue -pedantic or deprecated warnings for extensions. We let
373 -pedantic take precedence if both are applicable. */
374 if (! pfile->state.skipping)
375 {
376 if (dir->origin == EXTENSION
377 && !(dir == &dtable[T_IMPORT] && CPP_OPTION (pfile, objc))
378 && CPP_PEDANTIC (pfile))
379 cpp_error (pfile, CPP_DL_PEDWARN, "#%s is a GCC extension", dir->name);
380 else if (((dir->flags & DEPRECATED) != 0
381 || (dir == &dtable[T_IMPORT] && !CPP_OPTION (pfile, objc)))
382 && CPP_OPTION (pfile, cpp_warn_deprecated))
383 cpp_warning (pfile, CPP_W_DEPRECATED,
384 "#%s is a deprecated GCC extension", dir->name);
385 }
386
387 /* Traditionally, a directive is ignored unless its # is in
388 column 1. Therefore in code intended to work with K+R
389 compilers, directives added by C89 must have their #
390 indented, and directives present in traditional C must not.
391 This is true even of directives in skipped conditional
392 blocks. #elif cannot be used at all. */
393 if (CPP_WTRADITIONAL (pfile))
394 {
395 if (dir == &dtable[T_ELIF])
396 cpp_warning (pfile, CPP_W_TRADITIONAL,
397 "suggest not using #elif in traditional C");
398 else if (indented && dir->origin == KANDR)
399 cpp_warning (pfile, CPP_W_TRADITIONAL,
400 "traditional C ignores #%s with the # indented",
401 dir->name);
402 else if (!indented && dir->origin != KANDR)
403 cpp_warning (pfile, CPP_W_TRADITIONAL,
404 "suggest hiding #%s from traditional C with an indented #",
405 dir->name);
406 }
407 }
408
409 /* Check if we have a known directive. INDENTED is true if the
410 '#' of the directive was indented. This function is in this file
411 to save unnecessarily exporting dtable etc. to lex.c. Returns
412 nonzero if the line of tokens has been handled, zero if we should
413 continue processing the line. */
414 int
415 _cpp_handle_directive (cpp_reader *pfile, bool indented)
416 {
417 const directive *dir = 0;
418 const cpp_token *dname;
419 bool was_parsing_args = pfile->state.parsing_args;
420 bool was_discarding_output = pfile->state.discarding_output;
421 int skip = 1;
422
423 if (was_discarding_output)
424 pfile->state.prevent_expansion = 0;
425
426 if (was_parsing_args)
427 {
428 if (CPP_OPTION (pfile, cpp_pedantic))
429 cpp_error (pfile, CPP_DL_PEDWARN,
430 "embedding a directive within macro arguments is not portable");
431 pfile->state.parsing_args = 0;
432 pfile->state.prevent_expansion = 0;
433 }
434 start_directive (pfile);
435 dname = _cpp_lex_token (pfile);
436
437 if (dname->type == CPP_NAME)
438 {
439 if (dname->val.node.node->is_directive)
440 dir = &dtable[dname->val.node.node->directive_index];
441 }
442 /* We do not recognize the # followed by a number extension in
443 assembler code. */
444 else if (dname->type == CPP_NUMBER && CPP_OPTION (pfile, lang) != CLK_ASM)
445 {
446 dir = &linemarker_dir;
447 if (CPP_PEDANTIC (pfile) && ! CPP_OPTION (pfile, preprocessed)
448 && ! pfile->state.skipping)
449 cpp_error (pfile, CPP_DL_PEDWARN,
450 "style of line directive is a GCC extension");
451 }
452
453 if (dir)
454 {
455 /* If we have a directive that is not an opening conditional,
456 invalidate any control macro. */
457 if (! (dir->flags & IF_COND))
458 pfile->mi_valid = false;
459
460 /* Kluge alert. In order to be sure that code like this
461
462 #define HASH #
463 HASH define foo bar
464
465 does not cause '#define foo bar' to get executed when
466 compiled with -save-temps, we recognize directives in
467 -fpreprocessed mode only if the # is in column 1. macro.c
468 puts a space in front of any '#' at the start of a macro.
469
470 We exclude the -fdirectives-only case because macro expansion
471 has not been performed yet, and block comments can cause spaces
472 to precede the directive. */
473 if (CPP_OPTION (pfile, preprocessed)
474 && !CPP_OPTION (pfile, directives_only)
475 && (indented || !(dir->flags & IN_I)))
476 {
477 skip = 0;
478 dir = 0;
479 }
480 else
481 {
482 /* In failed conditional groups, all non-conditional
483 directives are ignored. Before doing that, whether
484 skipping or not, we should lex angle-bracketed headers
485 correctly, and maybe output some diagnostics. */
486 pfile->state.angled_headers = dir->flags & INCL;
487 pfile->state.directive_wants_padding = dir->flags & INCL;
488 if (! CPP_OPTION (pfile, preprocessed))
489 directive_diagnostics (pfile, dir, indented);
490 if (pfile->state.skipping && !(dir->flags & COND))
491 dir = 0;
492 }
493 }
494 else if (dname->type == CPP_EOF)
495 ; /* CPP_EOF is the "null directive". */
496 else
497 {
498 /* An unknown directive. Don't complain about it in assembly
499 source: we don't know where the comments are, and # may
500 introduce assembler pseudo-ops. Don't complain about invalid
501 directives in skipped conditional groups (6.10 p4). */
502 if (CPP_OPTION (pfile, lang) == CLK_ASM)
503 skip = 0;
504 else if (!pfile->state.skipping)
505 {
506 const char *unrecognized
507 = (const char *)cpp_token_as_text (pfile, dname);
508 const char *hint = NULL;
509
510 /* Call back into gcc to get a spelling suggestion. Ideally
511 we'd just use best_match from gcc/spellcheck.h (and filter
512 out the uncommon directives), but that requires moving it
513 to a support library. */
514 if (pfile->cb.get_suggestion)
515 hint = pfile->cb.get_suggestion (pfile, unrecognized,
516 directive_names);
517
518 if (hint)
519 {
520 rich_location richloc (pfile->line_table, dname->src_loc);
521 source_range misspelled_token_range
522 = get_range_from_loc (pfile->line_table, dname->src_loc);
523 richloc.add_fixit_replace (misspelled_token_range, hint);
524 cpp_error_at (pfile, CPP_DL_ERROR, &richloc,
525 "invalid preprocessing directive #%s;"
526 " did you mean #%s?",
527 unrecognized, hint);
528 }
529 else
530 cpp_error (pfile, CPP_DL_ERROR,
531 "invalid preprocessing directive #%s",
532 unrecognized);
533 }
534 }
535
536 pfile->directive = dir;
537 if (CPP_OPTION (pfile, traditional))
538 prepare_directive_trad (pfile);
539
540 if (dir)
541 pfile->directive->handler (pfile);
542 else if (skip == 0)
543 _cpp_backup_tokens (pfile, 1);
544
545 end_directive (pfile, skip);
546 if (was_parsing_args && !pfile->state.in_deferred_pragma)
547 {
548 /* Restore state when within macro args. */
549 pfile->state.parsing_args = 2;
550 pfile->state.prevent_expansion = 1;
551 }
552 if (was_discarding_output)
553 pfile->state.prevent_expansion = 1;
554 return skip;
555 }
556
557 /* Directive handler wrapper used by the command line option
558 processor. BUF is \n terminated. */
559 static void
560 run_directive (cpp_reader *pfile, int dir_no, const char *buf, size_t count)
561 {
562 cpp_push_buffer (pfile, (const uchar *) buf, count,
563 /* from_stage3 */ true);
564 start_directive (pfile);
565
566 /* This is a short-term fix to prevent a leading '#' being
567 interpreted as a directive. */
568 _cpp_clean_line (pfile);
569
570 pfile->directive = &dtable[dir_no];
571 if (CPP_OPTION (pfile, traditional))
572 prepare_directive_trad (pfile);
573 pfile->directive->handler (pfile);
574 end_directive (pfile, 1);
575 _cpp_pop_buffer (pfile);
576 }
577
578 /* Checks for validity the macro name in #define, #undef, #ifdef and
579 #ifndef directives. IS_DEF_OR_UNDEF is true if this call is
580 processing a #define or #undefine directive, and false
581 otherwise. */
582 static cpp_hashnode *
583 lex_macro_node (cpp_reader *pfile, bool is_def_or_undef)
584 {
585 const cpp_token *token = _cpp_lex_token (pfile);
586
587 /* The token immediately after #define must be an identifier. That
588 identifier may not be "defined", per C99 6.10.8p4.
589 In C++, it may not be any of the "named operators" either,
590 per C++98 [lex.digraph], [lex.key].
591 Finally, the identifier may not have been poisoned. (In that case
592 the lexer has issued the error message for us.) */
593
594 if (token->type == CPP_NAME)
595 {
596 cpp_hashnode *node = token->val.node.node;
597
598 if (is_def_or_undef
599 && node == pfile->spec_nodes.n_defined)
600 cpp_error (pfile, CPP_DL_ERROR,
601 "\"%s\" cannot be used as a macro name",
602 NODE_NAME (node));
603 else if (! (node->flags & NODE_POISONED))
604 return node;
605 }
606 else if (token->flags & NAMED_OP)
607 cpp_error (pfile, CPP_DL_ERROR,
608 "\"%s\" cannot be used as a macro name as it is an operator in C++",
609 NODE_NAME (token->val.node.node));
610 else if (token->type == CPP_EOF)
611 cpp_error (pfile, CPP_DL_ERROR, "no macro name given in #%s directive",
612 pfile->directive->name);
613 else
614 cpp_error (pfile, CPP_DL_ERROR, "macro names must be identifiers");
615
616 return NULL;
617 }
618
619 /* Process a #define directive. Most work is done in macro.c. */
620 static void
621 do_define (cpp_reader *pfile)
622 {
623 cpp_hashnode *node = lex_macro_node (pfile, true);
624
625 if (node)
626 {
627 /* If we have been requested to expand comments into macros,
628 then re-enable saving of comments. */
629 pfile->state.save_comments =
630 ! CPP_OPTION (pfile, discard_comments_in_macro_exp);
631
632 if (pfile->cb.before_define)
633 pfile->cb.before_define (pfile);
634
635 if (_cpp_create_definition (pfile, node))
636 if (pfile->cb.define)
637 pfile->cb.define (pfile, pfile->directive_line, node);
638
639 node->flags &= ~NODE_USED;
640 }
641 }
642
643 /* Handle #undef. Mark the identifier NT_VOID in the hash table. */
644 static void
645 do_undef (cpp_reader *pfile)
646 {
647 cpp_hashnode *node = lex_macro_node (pfile, true);
648
649 if (node)
650 {
651 if (pfile->cb.before_define)
652 pfile->cb.before_define (pfile);
653
654 if (pfile->cb.undef)
655 pfile->cb.undef (pfile, pfile->directive_line, node);
656
657 /* 6.10.3.5 paragraph 2: [#undef] is ignored if the specified
658 identifier is not currently defined as a macro name. */
659 if (cpp_macro_p (node))
660 {
661 if (node->flags & NODE_WARN)
662 cpp_error (pfile, CPP_DL_WARNING,
663 "undefining \"%s\"", NODE_NAME (node));
664 else if (cpp_builtin_macro_p (node)
665 && CPP_OPTION (pfile, warn_builtin_macro_redefined))
666 cpp_warning_with_line (pfile, CPP_W_BUILTIN_MACRO_REDEFINED,
667 pfile->directive_line, 0,
668 "undefining \"%s\"", NODE_NAME (node));
669
670 if (CPP_OPTION (pfile, warn_unused_macros))
671 _cpp_warn_if_unused_macro (pfile, node, NULL);
672
673 _cpp_free_definition (node);
674 }
675 }
676
677 check_eol (pfile, false);
678 }
679
680 /* Undefine a single macro/assertion/whatever. */
681
682 static int
683 undefine_macros (cpp_reader *pfile ATTRIBUTE_UNUSED, cpp_hashnode *h,
684 void *data_p ATTRIBUTE_UNUSED)
685 {
686 /* Body of _cpp_free_definition inlined here for speed.
687 Macros and assertions no longer have anything to free. */
688 h->type = NT_VOID;
689 h->value.answers = NULL;
690 h->flags &= ~(NODE_POISONED|NODE_DISABLED|NODE_USED);
691 return 1;
692 }
693
694 /* Undefine all macros and assertions. */
695
696 void
697 cpp_undef_all (cpp_reader *pfile)
698 {
699 cpp_forall_identifiers (pfile, undefine_macros, NULL);
700 }
701
702
703 /* Helper routine used by parse_include. Reinterpret the current line
704 as an h-char-sequence (< ... >); we are looking at the first token
705 after the <. Returns a malloced filename. */
706 static char *
707 glue_header_name (cpp_reader *pfile)
708 {
709 const cpp_token *token;
710 char *buffer;
711 size_t len, total_len = 0, capacity = 1024;
712
713 /* To avoid lexed tokens overwriting our glued name, we can only
714 allocate from the string pool once we've lexed everything. */
715 buffer = XNEWVEC (char, capacity);
716 for (;;)
717 {
718 token = get_token_no_padding (pfile);
719
720 if (token->type == CPP_GREATER)
721 break;
722 if (token->type == CPP_EOF)
723 {
724 cpp_error (pfile, CPP_DL_ERROR, "missing terminating > character");
725 break;
726 }
727
728 len = cpp_token_len (token) + 2; /* Leading space, terminating \0. */
729 if (total_len + len > capacity)
730 {
731 capacity = (capacity + len) * 2;
732 buffer = XRESIZEVEC (char, buffer, capacity);
733 }
734
735 if (token->flags & PREV_WHITE)
736 buffer[total_len++] = ' ';
737
738 total_len = (cpp_spell_token (pfile, token, (uchar *) &buffer[total_len],
739 true)
740 - (uchar *) buffer);
741 }
742
743 buffer[total_len] = '\0';
744 return buffer;
745 }
746
747 /* Returns the file name of #include, #include_next, #import and
748 #pragma dependency. The string is malloced and the caller should
749 free it. Returns NULL on error. LOCATION is the source location
750 of the file name. */
751
752 static const char *
753 parse_include (cpp_reader *pfile, int *pangle_brackets,
754 const cpp_token ***buf, location_t *location)
755 {
756 char *fname;
757 const cpp_token *header;
758
759 /* Allow macro expansion. */
760 header = get_token_no_padding (pfile);
761 *location = header->src_loc;
762 if ((header->type == CPP_STRING && header->val.str.text[0] != 'R')
763 || header->type == CPP_HEADER_NAME)
764 {
765 fname = XNEWVEC (char, header->val.str.len - 1);
766 memcpy (fname, header->val.str.text + 1, header->val.str.len - 2);
767 fname[header->val.str.len - 2] = '\0';
768 *pangle_brackets = header->type == CPP_HEADER_NAME;
769 }
770 else if (header->type == CPP_LESS)
771 {
772 fname = glue_header_name (pfile);
773 *pangle_brackets = 1;
774 }
775 else
776 {
777 const unsigned char *dir;
778
779 if (pfile->directive == &dtable[T_PRAGMA])
780 dir = UC"pragma dependency";
781 else
782 dir = pfile->directive->name;
783 cpp_error (pfile, CPP_DL_ERROR, "#%s expects \"FILENAME\" or <FILENAME>",
784 dir);
785
786 return NULL;
787 }
788
789 if (pfile->directive == &dtable[T_PRAGMA])
790 {
791 /* This pragma allows extra tokens after the file name. */
792 }
793 else if (buf == NULL || CPP_OPTION (pfile, discard_comments))
794 check_eol (pfile, true);
795 else
796 {
797 /* If we are not discarding comments, then gather them while
798 doing the eol check. */
799 *buf = check_eol_return_comments (pfile);
800 }
801
802 return fname;
803 }
804
805 /* Handle #include, #include_next and #import. */
806 static void
807 do_include_common (cpp_reader *pfile, enum include_type type)
808 {
809 const char *fname;
810 int angle_brackets;
811 const cpp_token **buf = NULL;
812 location_t location;
813
814 /* Re-enable saving of comments if requested, so that the include
815 callback can dump comments which follow #include. */
816 pfile->state.save_comments = ! CPP_OPTION (pfile, discard_comments);
817
818 /* Tell the lexer this is an include directive -- we want it to
819 increment the line number even if this is the last line of a file. */
820 pfile->state.in_directive = 2;
821
822 fname = parse_include (pfile, &angle_brackets, &buf, &location);
823 if (!fname)
824 goto done;
825
826 if (!*fname)
827 {
828 cpp_error_with_line (pfile, CPP_DL_ERROR, location, 0,
829 "empty filename in #%s",
830 pfile->directive->name);
831 goto done;
832 }
833
834 /* Prevent #include recursion. */
835 if (pfile->line_table->depth >= CPP_OPTION (pfile, max_include_depth))
836 cpp_error (pfile,
837 CPP_DL_ERROR,
838 "#include nested depth %u exceeds maximum of %u"
839 " (use -fmax-include-depth=DEPTH to increase the maximum)",
840 pfile->line_table->depth,
841 CPP_OPTION (pfile, max_include_depth));
842 else
843 {
844 /* Get out of macro context, if we are. */
845 skip_rest_of_line (pfile);
846
847 if (pfile->cb.include)
848 pfile->cb.include (pfile, pfile->directive_line,
849 pfile->directive->name, fname, angle_brackets,
850 buf);
851
852 _cpp_stack_include (pfile, fname, angle_brackets, type, location);
853 }
854
855 done:
856 XDELETEVEC (fname);
857 if (buf)
858 XDELETEVEC (buf);
859 }
860
861 static void
862 do_include (cpp_reader *pfile)
863 {
864 do_include_common (pfile, IT_INCLUDE);
865 }
866
867 static void
868 do_import (cpp_reader *pfile)
869 {
870 do_include_common (pfile, IT_IMPORT);
871 }
872
873 static void
874 do_include_next (cpp_reader *pfile)
875 {
876 enum include_type type = IT_INCLUDE_NEXT;
877
878 /* If this is the primary source file, warn and use the normal
879 search logic. */
880 if (cpp_in_primary_file (pfile))
881 {
882 cpp_error (pfile, CPP_DL_WARNING,
883 "#include_next in primary source file");
884 type = IT_INCLUDE;
885 }
886 do_include_common (pfile, type);
887 }
888
889 /* Subroutine of do_linemarker. Read possible flags after file name.
890 LAST is the last flag seen; 0 if this is the first flag. Return the
891 flag if it is valid, 0 at the end of the directive. Otherwise
892 complain. */
893 static unsigned int
894 read_flag (cpp_reader *pfile, unsigned int last)
895 {
896 const cpp_token *token = _cpp_lex_token (pfile);
897
898 if (token->type == CPP_NUMBER && token->val.str.len == 1)
899 {
900 unsigned int flag = token->val.str.text[0] - '0';
901
902 if (flag > last && flag <= 4
903 && (flag != 4 || last == 3)
904 && (flag != 2 || last == 0))
905 return flag;
906 }
907
908 if (token->type != CPP_EOF)
909 cpp_error (pfile, CPP_DL_ERROR, "invalid flag \"%s\" in line directive",
910 cpp_token_as_text (pfile, token));
911 return 0;
912 }
913
914 /* Subroutine of do_line and do_linemarker. Convert a number in STR,
915 of length LEN, to binary; store it in NUMP, and return false if the
916 number was well-formed, true if not. WRAPPED is set to true if the
917 number did not fit into 'unsigned long'. */
918 static bool
919 strtolinenum (const uchar *str, size_t len, linenum_type *nump, bool *wrapped)
920 {
921 linenum_type reg = 0;
922 linenum_type reg_prev = 0;
923
924 uchar c;
925 *wrapped = false;
926 while (len--)
927 {
928 c = *str++;
929 if (!ISDIGIT (c))
930 return true;
931 reg *= 10;
932 reg += c - '0';
933 if (reg < reg_prev)
934 *wrapped = true;
935 reg_prev = reg;
936 }
937 *nump = reg;
938 return false;
939 }
940
941 /* Interpret #line command.
942 Note that the filename string (if any) is a true string constant
943 (escapes are interpreted). */
944 static void
945 do_line (cpp_reader *pfile)
946 {
947 class line_maps *line_table = pfile->line_table;
948 const line_map_ordinary *map = LINEMAPS_LAST_ORDINARY_MAP (line_table);
949
950 /* skip_rest_of_line() may cause line table to be realloc()ed so note down
951 sysp right now. */
952
953 unsigned char map_sysp = ORDINARY_MAP_IN_SYSTEM_HEADER_P (map);
954 const cpp_token *token;
955 const char *new_file = ORDINARY_MAP_FILE_NAME (map);
956 linenum_type new_lineno;
957
958 /* C99 raised the minimum limit on #line numbers. */
959 linenum_type cap = CPP_OPTION (pfile, c99) ? 2147483647 : 32767;
960 bool wrapped;
961
962 /* #line commands expand macros. */
963 token = cpp_get_token (pfile);
964 if (token->type != CPP_NUMBER
965 || strtolinenum (token->val.str.text, token->val.str.len,
966 &new_lineno, &wrapped))
967 {
968 if (token->type == CPP_EOF)
969 cpp_error (pfile, CPP_DL_ERROR, "unexpected end of file after #line");
970 else
971 cpp_error (pfile, CPP_DL_ERROR,
972 "\"%s\" after #line is not a positive integer",
973 cpp_token_as_text (pfile, token));
974 return;
975 }
976
977 if (CPP_PEDANTIC (pfile) && (new_lineno == 0 || new_lineno > cap || wrapped))
978 cpp_error (pfile, CPP_DL_PEDWARN, "line number out of range");
979 else if (wrapped)
980 cpp_error (pfile, CPP_DL_WARNING, "line number out of range");
981
982 token = cpp_get_token (pfile);
983 if (token->type == CPP_STRING)
984 {
985 cpp_string s = { 0, 0 };
986 if (cpp_interpret_string_notranslate (pfile, &token->val.str, 1,
987 &s, CPP_STRING))
988 new_file = (const char *)s.text;
989 check_eol (pfile, true);
990 }
991 else if (token->type != CPP_EOF)
992 {
993 cpp_error (pfile, CPP_DL_ERROR, "\"%s\" is not a valid filename",
994 cpp_token_as_text (pfile, token));
995 return;
996 }
997
998 skip_rest_of_line (pfile);
999 _cpp_do_file_change (pfile, LC_RENAME_VERBATIM, new_file, new_lineno,
1000 map_sysp);
1001 line_table->seen_line_directive = true;
1002 }
1003
1004 /* Interpret the # 44 "file" [flags] notation, which has slightly
1005 different syntax and semantics from #line: Flags are allowed,
1006 and we never complain about the line number being too big. */
1007 static void
1008 do_linemarker (cpp_reader *pfile)
1009 {
1010 class line_maps *line_table = pfile->line_table;
1011 const line_map_ordinary *map = LINEMAPS_LAST_ORDINARY_MAP (line_table);
1012 const cpp_token *token;
1013 const char *new_file = ORDINARY_MAP_FILE_NAME (map);
1014 linenum_type new_lineno;
1015 unsigned int new_sysp = ORDINARY_MAP_IN_SYSTEM_HEADER_P (map);
1016 enum lc_reason reason = LC_RENAME_VERBATIM;
1017 int flag;
1018 bool wrapped;
1019
1020 /* Back up so we can get the number again. Putting this in
1021 _cpp_handle_directive risks two calls to _cpp_backup_tokens in
1022 some circumstances, which can segfault. */
1023 _cpp_backup_tokens (pfile, 1);
1024
1025 /* #line commands expand macros. */
1026 token = cpp_get_token (pfile);
1027 if (token->type != CPP_NUMBER
1028 || strtolinenum (token->val.str.text, token->val.str.len,
1029 &new_lineno, &wrapped))
1030 {
1031 /* Unlike #line, there does not seem to be a way to get an EOF
1032 here. So, it should be safe to always spell the token. */
1033 cpp_error (pfile, CPP_DL_ERROR,
1034 "\"%s\" after # is not a positive integer",
1035 cpp_token_as_text (pfile, token));
1036 return;
1037 }
1038
1039 token = cpp_get_token (pfile);
1040 if (token->type == CPP_STRING)
1041 {
1042 cpp_string s = { 0, 0 };
1043 if (cpp_interpret_string_notranslate (pfile, &token->val.str,
1044 1, &s, CPP_STRING))
1045 new_file = (const char *)s.text;
1046
1047 new_sysp = 0;
1048 flag = read_flag (pfile, 0);
1049 if (flag == 1)
1050 {
1051 reason = LC_ENTER;
1052 /* Fake an include for cpp_included (). */
1053 _cpp_fake_include (pfile, new_file);
1054 flag = read_flag (pfile, flag);
1055 }
1056 else if (flag == 2)
1057 {
1058 reason = LC_LEAVE;
1059 flag = read_flag (pfile, flag);
1060 }
1061 if (flag == 3)
1062 {
1063 new_sysp = 1;
1064 flag = read_flag (pfile, flag);
1065 if (flag == 4)
1066 new_sysp = 2;
1067 }
1068 pfile->buffer->sysp = new_sysp;
1069
1070 check_eol (pfile, false);
1071 }
1072 else if (token->type != CPP_EOF)
1073 {
1074 cpp_error (pfile, CPP_DL_ERROR, "\"%s\" is not a valid filename",
1075 cpp_token_as_text (pfile, token));
1076 return;
1077 }
1078
1079 skip_rest_of_line (pfile);
1080
1081 if (reason == LC_LEAVE)
1082 {
1083 /* Reread map since cpp_get_token can invalidate it with a
1084 reallocation. */
1085 map = LINEMAPS_LAST_ORDINARY_MAP (line_table);
1086 const line_map_ordinary *from
1087 = linemap_included_from_linemap (line_table, map);
1088
1089 if (!from)
1090 /* Not nested. */;
1091 else if (!new_file[0])
1092 /* Leaving to "" means fill in the popped-to name. */
1093 new_file = ORDINARY_MAP_FILE_NAME (from);
1094 else if (filename_cmp (ORDINARY_MAP_FILE_NAME (from), new_file) != 0)
1095 /* It's the wrong name, Grommit! */
1096 from = NULL;
1097
1098 if (!from)
1099 {
1100 cpp_warning (pfile, CPP_W_NONE,
1101 "file \"%s\" linemarker ignored due to "
1102 "incorrect nesting", new_file);
1103 return;
1104 }
1105 }
1106
1107 /* Compensate for the increment in linemap_add that occurs in
1108 _cpp_do_file_change. We're currently at the start of the line
1109 *following* the #line directive. A separate location_t for this
1110 location makes no sense (until we do the LC_LEAVE), and
1111 complicates LAST_SOURCE_LINE_LOCATION. */
1112 pfile->line_table->highest_location--;
1113
1114 _cpp_do_file_change (pfile, reason, new_file, new_lineno, new_sysp);
1115 line_table->seen_line_directive = true;
1116 }
1117
1118 /* Arrange the file_change callback. Changing to TO_FILE:TO_LINE for
1119 REASON. SYSP is 1 for a system header, 2 for a system header that
1120 needs to be extern "C" protected, and zero otherwise. */
1121 void
1122 _cpp_do_file_change (cpp_reader *pfile, enum lc_reason reason,
1123 const char *to_file, linenum_type to_line,
1124 unsigned int sysp)
1125 {
1126 linemap_assert (reason != LC_ENTER_MACRO);
1127
1128 const line_map_ordinary *ord_map = NULL;
1129 if (!to_line && reason == LC_RENAME_VERBATIM)
1130 {
1131 /* A linemarker moving to line zero. If we're on the second
1132 line of the current map, and it also starts at zero, just
1133 rewind -- we're probably reading the builtins of a
1134 preprocessed source. */
1135 line_map_ordinary *last = LINEMAPS_LAST_ORDINARY_MAP (pfile->line_table);
1136 if (!ORDINARY_MAP_STARTING_LINE_NUMBER (last)
1137 && 0 == filename_cmp (to_file, ORDINARY_MAP_FILE_NAME (last))
1138 && SOURCE_LINE (last, pfile->line_table->highest_line) == 2)
1139 {
1140 ord_map = last;
1141 pfile->line_table->highest_location
1142 = pfile->line_table->highest_line = MAP_START_LOCATION (last);
1143 }
1144 }
1145
1146 if (!ord_map)
1147 if (const line_map *map = linemap_add (pfile->line_table, reason, sysp,
1148 to_file, to_line))
1149 {
1150 ord_map = linemap_check_ordinary (map);
1151 linemap_line_start (pfile->line_table,
1152 ORDINARY_MAP_STARTING_LINE_NUMBER (ord_map),
1153 127);
1154 }
1155
1156 if (pfile->cb.file_change)
1157 pfile->cb.file_change (pfile, ord_map);
1158 }
1159
1160 /* Report a warning or error detected by the program we are
1161 processing. Use the directive's tokens in the error message. */
1162 static void
1163 do_diagnostic (cpp_reader *pfile, enum cpp_diagnostic_level code,
1164 enum cpp_warning_reason reason, int print_dir)
1165 {
1166 const unsigned char *dir_name;
1167 unsigned char *line;
1168 location_t src_loc = pfile->cur_token[-1].src_loc;
1169
1170 if (print_dir)
1171 dir_name = pfile->directive->name;
1172 else
1173 dir_name = NULL;
1174 pfile->state.prevent_expansion++;
1175 line = cpp_output_line_to_string (pfile, dir_name);
1176 pfile->state.prevent_expansion--;
1177
1178 if (code == CPP_DL_WARNING_SYSHDR && reason)
1179 cpp_warning_with_line_syshdr (pfile, reason, src_loc, 0, "%s", line);
1180 else if (code == CPP_DL_WARNING && reason)
1181 cpp_warning_with_line (pfile, reason, src_loc, 0, "%s", line);
1182 else
1183 cpp_error_with_line (pfile, code, src_loc, 0, "%s", line);
1184 free (line);
1185 }
1186
1187 static void
1188 do_error (cpp_reader *pfile)
1189 {
1190 do_diagnostic (pfile, CPP_DL_ERROR, CPP_W_NONE, 1);
1191 }
1192
1193 static void
1194 do_warning (cpp_reader *pfile)
1195 {
1196 /* We want #warning diagnostics to be emitted in system headers too. */
1197 do_diagnostic (pfile, CPP_DL_WARNING_SYSHDR, CPP_W_WARNING_DIRECTIVE, 1);
1198 }
1199
1200 /* Report program identification. */
1201 static void
1202 do_ident (cpp_reader *pfile)
1203 {
1204 const cpp_token *str = cpp_get_token (pfile);
1205
1206 if (str->type != CPP_STRING)
1207 cpp_error (pfile, CPP_DL_ERROR, "invalid #%s directive",
1208 pfile->directive->name);
1209 else if (pfile->cb.ident)
1210 pfile->cb.ident (pfile, pfile->directive_line, &str->val.str);
1211
1212 check_eol (pfile, false);
1213 }
1214
1215 /* Lookup a PRAGMA name in a singly-linked CHAIN. Returns the
1216 matching entry, or NULL if none is found. The returned entry could
1217 be the start of a namespace chain, or a pragma. */
1218 static struct pragma_entry *
1219 lookup_pragma_entry (struct pragma_entry *chain, const cpp_hashnode *pragma)
1220 {
1221 while (chain && chain->pragma != pragma)
1222 chain = chain->next;
1223
1224 return chain;
1225 }
1226
1227 /* Create and insert a blank pragma entry at the beginning of a
1228 singly-linked CHAIN. */
1229 static struct pragma_entry *
1230 new_pragma_entry (cpp_reader *pfile, struct pragma_entry **chain)
1231 {
1232 struct pragma_entry *new_entry;
1233
1234 new_entry = (struct pragma_entry *)
1235 _cpp_aligned_alloc (pfile, sizeof (struct pragma_entry));
1236
1237 memset (new_entry, 0, sizeof (struct pragma_entry));
1238 new_entry->next = *chain;
1239
1240 *chain = new_entry;
1241 return new_entry;
1242 }
1243
1244 /* Register a pragma NAME in namespace SPACE. If SPACE is null, it
1245 goes in the global namespace. */
1246 static struct pragma_entry *
1247 register_pragma_1 (cpp_reader *pfile, const char *space, const char *name,
1248 bool allow_name_expansion)
1249 {
1250 struct pragma_entry **chain = &pfile->pragmas;
1251 struct pragma_entry *entry;
1252 const cpp_hashnode *node;
1253
1254 if (space)
1255 {
1256 node = cpp_lookup (pfile, UC space, strlen (space));
1257 entry = lookup_pragma_entry (*chain, node);
1258 if (!entry)
1259 {
1260 entry = new_pragma_entry (pfile, chain);
1261 entry->pragma = node;
1262 entry->is_nspace = true;
1263 entry->allow_expansion = allow_name_expansion;
1264 }
1265 else if (!entry->is_nspace)
1266 goto clash;
1267 else if (entry->allow_expansion != allow_name_expansion)
1268 {
1269 cpp_error (pfile, CPP_DL_ICE,
1270 "registering pragmas in namespace \"%s\" with mismatched "
1271 "name expansion", space);
1272 return NULL;
1273 }
1274 chain = &entry->u.space;
1275 }
1276 else if (allow_name_expansion)
1277 {
1278 cpp_error (pfile, CPP_DL_ICE,
1279 "registering pragma \"%s\" with name expansion "
1280 "and no namespace", name);
1281 return NULL;
1282 }
1283
1284 /* Check for duplicates. */
1285 node = cpp_lookup (pfile, UC name, strlen (name));
1286 entry = lookup_pragma_entry (*chain, node);
1287 if (entry == NULL)
1288 {
1289 entry = new_pragma_entry (pfile, chain);
1290 entry->pragma = node;
1291 return entry;
1292 }
1293
1294 if (entry->is_nspace)
1295 clash:
1296 cpp_error (pfile, CPP_DL_ICE,
1297 "registering \"%s\" as both a pragma and a pragma namespace",
1298 NODE_NAME (node));
1299 else if (space)
1300 cpp_error (pfile, CPP_DL_ICE, "#pragma %s %s is already registered",
1301 space, name);
1302 else
1303 cpp_error (pfile, CPP_DL_ICE, "#pragma %s is already registered", name);
1304
1305 return NULL;
1306 }
1307
1308 /* Register a cpplib internal pragma SPACE NAME with HANDLER. */
1309 static void
1310 register_pragma_internal (cpp_reader *pfile, const char *space,
1311 const char *name, pragma_cb handler)
1312 {
1313 struct pragma_entry *entry;
1314
1315 entry = register_pragma_1 (pfile, space, name, false);
1316 entry->is_internal = true;
1317 entry->u.handler = handler;
1318 }
1319
1320 /* Register a pragma NAME in namespace SPACE. If SPACE is null, it
1321 goes in the global namespace. HANDLER is the handler it will call,
1322 which must be non-NULL. If ALLOW_EXPANSION is set, allow macro
1323 expansion while parsing pragma NAME. This function is exported
1324 from libcpp. */
1325 void
1326 cpp_register_pragma (cpp_reader *pfile, const char *space, const char *name,
1327 pragma_cb handler, bool allow_expansion)
1328 {
1329 struct pragma_entry *entry;
1330
1331 if (!handler)
1332 {
1333 cpp_error (pfile, CPP_DL_ICE, "registering pragma with NULL handler");
1334 return;
1335 }
1336
1337 entry = register_pragma_1 (pfile, space, name, false);
1338 if (entry)
1339 {
1340 entry->allow_expansion = allow_expansion;
1341 entry->u.handler = handler;
1342 }
1343 }
1344
1345 /* Similarly, but create mark the pragma for deferred processing.
1346 When found, a CPP_PRAGMA token will be insertted into the stream
1347 with IDENT in the token->u.pragma slot. */
1348 void
1349 cpp_register_deferred_pragma (cpp_reader *pfile, const char *space,
1350 const char *name, unsigned int ident,
1351 bool allow_expansion, bool allow_name_expansion)
1352 {
1353 struct pragma_entry *entry;
1354
1355 entry = register_pragma_1 (pfile, space, name, allow_name_expansion);
1356 if (entry)
1357 {
1358 entry->is_deferred = true;
1359 entry->allow_expansion = allow_expansion;
1360 entry->u.ident = ident;
1361 }
1362 }
1363
1364 /* Register the pragmas the preprocessor itself handles. */
1365 void
1366 _cpp_init_internal_pragmas (cpp_reader *pfile)
1367 {
1368 /* Pragmas in the global namespace. */
1369 register_pragma_internal (pfile, 0, "once", do_pragma_once);
1370 register_pragma_internal (pfile, 0, "push_macro", do_pragma_push_macro);
1371 register_pragma_internal (pfile, 0, "pop_macro", do_pragma_pop_macro);
1372
1373 /* New GCC-specific pragmas should be put in the GCC namespace. */
1374 register_pragma_internal (pfile, "GCC", "poison", do_pragma_poison);
1375 register_pragma_internal (pfile, "GCC", "system_header",
1376 do_pragma_system_header);
1377 register_pragma_internal (pfile, "GCC", "dependency", do_pragma_dependency);
1378 register_pragma_internal (pfile, "GCC", "warning", do_pragma_warning);
1379 register_pragma_internal (pfile, "GCC", "error", do_pragma_error);
1380 }
1381
1382 /* Return the number of registered pragmas in PE. */
1383
1384 static int
1385 count_registered_pragmas (struct pragma_entry *pe)
1386 {
1387 int ct = 0;
1388 for (; pe != NULL; pe = pe->next)
1389 {
1390 if (pe->is_nspace)
1391 ct += count_registered_pragmas (pe->u.space);
1392 ct++;
1393 }
1394 return ct;
1395 }
1396
1397 /* Save into SD the names of the registered pragmas referenced by PE,
1398 and return a pointer to the next free space in SD. */
1399
1400 static char **
1401 save_registered_pragmas (struct pragma_entry *pe, char **sd)
1402 {
1403 for (; pe != NULL; pe = pe->next)
1404 {
1405 if (pe->is_nspace)
1406 sd = save_registered_pragmas (pe->u.space, sd);
1407 *sd++ = (char *) xmemdup (HT_STR (&pe->pragma->ident),
1408 HT_LEN (&pe->pragma->ident),
1409 HT_LEN (&pe->pragma->ident) + 1);
1410 }
1411 return sd;
1412 }
1413
1414 /* Return a newly-allocated array which saves the names of the
1415 registered pragmas. */
1416
1417 char **
1418 _cpp_save_pragma_names (cpp_reader *pfile)
1419 {
1420 int ct = count_registered_pragmas (pfile->pragmas);
1421 char **result = XNEWVEC (char *, ct);
1422 (void) save_registered_pragmas (pfile->pragmas, result);
1423 return result;
1424 }
1425
1426 /* Restore from SD the names of the registered pragmas referenced by PE,
1427 and return a pointer to the next unused name in SD. */
1428
1429 static char **
1430 restore_registered_pragmas (cpp_reader *pfile, struct pragma_entry *pe,
1431 char **sd)
1432 {
1433 for (; pe != NULL; pe = pe->next)
1434 {
1435 if (pe->is_nspace)
1436 sd = restore_registered_pragmas (pfile, pe->u.space, sd);
1437 pe->pragma = cpp_lookup (pfile, UC *sd, strlen (*sd));
1438 free (*sd);
1439 sd++;
1440 }
1441 return sd;
1442 }
1443
1444 /* Restore the names of the registered pragmas from SAVED. */
1445
1446 void
1447 _cpp_restore_pragma_names (cpp_reader *pfile, char **saved)
1448 {
1449 (void) restore_registered_pragmas (pfile, pfile->pragmas, saved);
1450 free (saved);
1451 }
1452
1453 /* Pragmata handling. We handle some, and pass the rest on to the
1454 front end. C99 defines three pragmas and says that no macro
1455 expansion is to be performed on them; whether or not macro
1456 expansion happens for other pragmas is implementation defined.
1457 This implementation allows for a mix of both, since GCC did not
1458 traditionally macro expand its (few) pragmas, whereas OpenMP
1459 specifies that macro expansion should happen. */
1460 static void
1461 do_pragma (cpp_reader *pfile)
1462 {
1463 const struct pragma_entry *p = NULL;
1464 const cpp_token *token, *pragma_token;
1465 location_t pragma_token_virt_loc = 0;
1466 cpp_token ns_token;
1467 unsigned int count = 1;
1468
1469 pfile->state.prevent_expansion++;
1470
1471 pragma_token = token = cpp_get_token_with_location (pfile,
1472 &pragma_token_virt_loc);
1473 ns_token = *token;
1474 if (token->type == CPP_NAME)
1475 {
1476 p = lookup_pragma_entry (pfile->pragmas, token->val.node.node);
1477 if (p && p->is_nspace)
1478 {
1479 bool allow_name_expansion = p->allow_expansion;
1480 if (allow_name_expansion)
1481 pfile->state.prevent_expansion--;
1482
1483 token = cpp_get_token (pfile);
1484 if (token->type == CPP_NAME)
1485 p = lookup_pragma_entry (p->u.space, token->val.node.node);
1486 else
1487 p = NULL;
1488 if (allow_name_expansion)
1489 pfile->state.prevent_expansion++;
1490 count = 2;
1491 }
1492 }
1493
1494 if (p)
1495 {
1496 if (p->is_deferred)
1497 {
1498 pfile->directive_result.src_loc = pragma_token_virt_loc;
1499 pfile->directive_result.type = CPP_PRAGMA;
1500 pfile->directive_result.flags = pragma_token->flags;
1501 pfile->directive_result.val.pragma = p->u.ident;
1502 pfile->state.in_deferred_pragma = true;
1503 pfile->state.pragma_allow_expansion = p->allow_expansion;
1504 if (!p->allow_expansion)
1505 pfile->state.prevent_expansion++;
1506 }
1507 else
1508 {
1509 /* Since the handler below doesn't get the line number, that
1510 it might need for diagnostics, make sure it has the right
1511 numbers in place. */
1512 if (pfile->cb.line_change)
1513 (*pfile->cb.line_change) (pfile, pragma_token, false);
1514 if (p->allow_expansion)
1515 pfile->state.prevent_expansion--;
1516 (*p->u.handler) (pfile);
1517 if (p->allow_expansion)
1518 pfile->state.prevent_expansion++;
1519 }
1520 }
1521 else if (pfile->cb.def_pragma)
1522 {
1523 if (count == 1 || pfile->context->prev == NULL)
1524 _cpp_backup_tokens (pfile, count);
1525 else
1526 {
1527 /* Invalid name comes from macro expansion, _cpp_backup_tokens
1528 won't allow backing 2 tokens. */
1529 /* ??? The token buffer is leaked. Perhaps if def_pragma hook
1530 reads both tokens, we could perhaps free it, but if it doesn't,
1531 we don't know the exact lifespan. */
1532 cpp_token *toks = XNEWVEC (cpp_token, 2);
1533 toks[0] = ns_token;
1534 toks[0].flags |= NO_EXPAND;
1535 toks[1] = *token;
1536 toks[1].flags |= NO_EXPAND;
1537 _cpp_push_token_context (pfile, NULL, toks, 2);
1538 }
1539 pfile->cb.def_pragma (pfile, pfile->directive_line);
1540 }
1541
1542 pfile->state.prevent_expansion--;
1543 }
1544
1545 /* Handle #pragma once. */
1546 static void
1547 do_pragma_once (cpp_reader *pfile)
1548 {
1549 if (cpp_in_primary_file (pfile))
1550 cpp_error (pfile, CPP_DL_WARNING, "#pragma once in main file");
1551
1552 check_eol (pfile, false);
1553 _cpp_mark_file_once_only (pfile, pfile->buffer->file);
1554 }
1555
1556 /* Handle #pragma push_macro(STRING). */
1557 static void
1558 do_pragma_push_macro (cpp_reader *pfile)
1559 {
1560 cpp_hashnode *node;
1561 size_t defnlen;
1562 const uchar *defn = NULL;
1563 char *macroname, *dest;
1564 const char *limit, *src;
1565 const cpp_token *txt;
1566 struct def_pragma_macro *c;
1567
1568 txt = get__Pragma_string (pfile);
1569 if (!txt)
1570 {
1571 location_t src_loc = pfile->cur_token[-1].src_loc;
1572 cpp_error_with_line (pfile, CPP_DL_ERROR, src_loc, 0,
1573 "invalid #pragma push_macro directive");
1574 check_eol (pfile, false);
1575 skip_rest_of_line (pfile);
1576 return;
1577 }
1578 dest = macroname = (char *) alloca (txt->val.str.len + 2);
1579 src = (const char *) (txt->val.str.text + 1 + (txt->val.str.text[0] == 'L'));
1580 limit = (const char *) (txt->val.str.text + txt->val.str.len - 1);
1581 while (src < limit)
1582 {
1583 /* We know there is a character following the backslash. */
1584 if (*src == '\\' && (src[1] == '\\' || src[1] == '"'))
1585 src++;
1586 *dest++ = *src++;
1587 }
1588 *dest = 0;
1589 check_eol (pfile, false);
1590 skip_rest_of_line (pfile);
1591 c = XNEW (struct def_pragma_macro);
1592 memset (c, 0, sizeof (struct def_pragma_macro));
1593 c->name = XNEWVAR (char, strlen (macroname) + 1);
1594 strcpy (c->name, macroname);
1595 c->next = pfile->pushed_macros;
1596 node = _cpp_lex_identifier (pfile, c->name);
1597 if (node->type == NT_VOID)
1598 c->is_undef = 1;
1599 else if (node->type == NT_BUILTIN_MACRO)
1600 c->is_builtin = 1;
1601 else
1602 {
1603 defn = cpp_macro_definition (pfile, node);
1604 defnlen = ustrlen (defn);
1605 c->definition = XNEWVEC (uchar, defnlen + 2);
1606 c->definition[defnlen] = '\n';
1607 c->definition[defnlen + 1] = 0;
1608 c->line = node->value.macro->line;
1609 c->syshdr = node->value.macro->syshdr;
1610 c->used = node->value.macro->used;
1611 memcpy (c->definition, defn, defnlen);
1612 }
1613
1614 pfile->pushed_macros = c;
1615 }
1616
1617 /* Handle #pragma pop_macro(STRING). */
1618 static void
1619 do_pragma_pop_macro (cpp_reader *pfile)
1620 {
1621 char *macroname, *dest;
1622 const char *limit, *src;
1623 const cpp_token *txt;
1624 struct def_pragma_macro *l = NULL, *c = pfile->pushed_macros;
1625 txt = get__Pragma_string (pfile);
1626 if (!txt)
1627 {
1628 location_t src_loc = pfile->cur_token[-1].src_loc;
1629 cpp_error_with_line (pfile, CPP_DL_ERROR, src_loc, 0,
1630 "invalid #pragma pop_macro directive");
1631 check_eol (pfile, false);
1632 skip_rest_of_line (pfile);
1633 return;
1634 }
1635 dest = macroname = (char *) alloca (txt->val.str.len + 2);
1636 src = (const char *) (txt->val.str.text + 1 + (txt->val.str.text[0] == 'L'));
1637 limit = (const char *) (txt->val.str.text + txt->val.str.len - 1);
1638 while (src < limit)
1639 {
1640 /* We know there is a character following the backslash. */
1641 if (*src == '\\' && (src[1] == '\\' || src[1] == '"'))
1642 src++;
1643 *dest++ = *src++;
1644 }
1645 *dest = 0;
1646 check_eol (pfile, false);
1647 skip_rest_of_line (pfile);
1648
1649 while (c != NULL)
1650 {
1651 if (!strcmp (c->name, macroname))
1652 {
1653 if (!l)
1654 pfile->pushed_macros = c->next;
1655 else
1656 l->next = c->next;
1657 cpp_pop_definition (pfile, c);
1658 free (c->definition);
1659 free (c->name);
1660 free (c);
1661 break;
1662 }
1663 l = c;
1664 c = c->next;
1665 }
1666 }
1667
1668 /* Handle #pragma GCC poison, to poison one or more identifiers so
1669 that the lexer produces a hard error for each subsequent usage. */
1670 static void
1671 do_pragma_poison (cpp_reader *pfile)
1672 {
1673 const cpp_token *tok;
1674 cpp_hashnode *hp;
1675
1676 pfile->state.poisoned_ok = 1;
1677 for (;;)
1678 {
1679 tok = _cpp_lex_token (pfile);
1680 if (tok->type == CPP_EOF)
1681 break;
1682 if (tok->type != CPP_NAME)
1683 {
1684 cpp_error (pfile, CPP_DL_ERROR,
1685 "invalid #pragma GCC poison directive");
1686 break;
1687 }
1688
1689 hp = tok->val.node.node;
1690 if (hp->flags & NODE_POISONED)
1691 continue;
1692
1693 if (cpp_macro_p (hp))
1694 cpp_error (pfile, CPP_DL_WARNING, "poisoning existing macro \"%s\"",
1695 NODE_NAME (hp));
1696 _cpp_free_definition (hp);
1697 hp->flags |= NODE_POISONED | NODE_DIAGNOSTIC;
1698 }
1699 pfile->state.poisoned_ok = 0;
1700 }
1701
1702 /* Mark the current header as a system header. This will suppress
1703 some categories of warnings (notably those from -pedantic). It is
1704 intended for use in system libraries that cannot be implemented in
1705 conforming C, but cannot be certain that their headers appear in a
1706 system include directory. To prevent abuse, it is rejected in the
1707 primary source file. */
1708 static void
1709 do_pragma_system_header (cpp_reader *pfile)
1710 {
1711 if (cpp_in_primary_file (pfile))
1712 cpp_error (pfile, CPP_DL_WARNING,
1713 "#pragma system_header ignored outside include file");
1714 else
1715 {
1716 check_eol (pfile, false);
1717 skip_rest_of_line (pfile);
1718 cpp_make_system_header (pfile, 1, 0);
1719 }
1720 }
1721
1722 /* Check the modified date of the current include file against a specified
1723 file. Issue a diagnostic, if the specified file is newer. We use this to
1724 determine if a fixed header should be refixed. */
1725 static void
1726 do_pragma_dependency (cpp_reader *pfile)
1727 {
1728 const char *fname;
1729 int angle_brackets, ordering;
1730 location_t location;
1731
1732 fname = parse_include (pfile, &angle_brackets, NULL, &location);
1733 if (!fname)
1734 return;
1735
1736 ordering = _cpp_compare_file_date (pfile, fname, angle_brackets);
1737 if (ordering < 0)
1738 cpp_error (pfile, CPP_DL_WARNING, "cannot find source file %s", fname);
1739 else if (ordering > 0)
1740 {
1741 cpp_error (pfile, CPP_DL_WARNING,
1742 "current file is older than %s", fname);
1743 if (cpp_get_token (pfile)->type != CPP_EOF)
1744 {
1745 _cpp_backup_tokens (pfile, 1);
1746 do_diagnostic (pfile, CPP_DL_WARNING, CPP_W_NONE, 0);
1747 }
1748 }
1749
1750 free ((void *) fname);
1751 }
1752
1753 /* Issue a diagnostic with the message taken from the pragma. If
1754 ERROR is true, the diagnostic is a warning, otherwise, it is an
1755 error. */
1756 static void
1757 do_pragma_warning_or_error (cpp_reader *pfile, bool error)
1758 {
1759 const cpp_token *tok = _cpp_lex_token (pfile);
1760 cpp_string str;
1761 if (tok->type != CPP_STRING
1762 || !cpp_interpret_string_notranslate (pfile, &tok->val.str, 1, &str,
1763 CPP_STRING)
1764 || str.len == 0)
1765 {
1766 cpp_error (pfile, CPP_DL_ERROR, "invalid \"#pragma GCC %s\" directive",
1767 error ? "error" : "warning");
1768 return;
1769 }
1770 cpp_error (pfile, error ? CPP_DL_ERROR : CPP_DL_WARNING,
1771 "%s", str.text);
1772 free ((void *)str.text);
1773 }
1774
1775 /* Issue a warning diagnostic. */
1776 static void
1777 do_pragma_warning (cpp_reader *pfile)
1778 {
1779 do_pragma_warning_or_error (pfile, false);
1780 }
1781
1782 /* Issue an error diagnostic. */
1783 static void
1784 do_pragma_error (cpp_reader *pfile)
1785 {
1786 do_pragma_warning_or_error (pfile, true);
1787 }
1788
1789 /* Get a token but skip padding. */
1790 static const cpp_token *
1791 get_token_no_padding (cpp_reader *pfile)
1792 {
1793 for (;;)
1794 {
1795 const cpp_token *result = cpp_get_token (pfile);
1796 if (result->type != CPP_PADDING)
1797 return result;
1798 }
1799 }
1800
1801 /* Check syntax is "(string-literal)". Returns the string on success,
1802 or NULL on failure. */
1803 static const cpp_token *
1804 get__Pragma_string (cpp_reader *pfile)
1805 {
1806 const cpp_token *string;
1807 const cpp_token *paren;
1808
1809 paren = get_token_no_padding (pfile);
1810 if (paren->type == CPP_EOF)
1811 _cpp_backup_tokens (pfile, 1);
1812 if (paren->type != CPP_OPEN_PAREN)
1813 return NULL;
1814
1815 string = get_token_no_padding (pfile);
1816 if (string->type == CPP_EOF)
1817 _cpp_backup_tokens (pfile, 1);
1818 if (string->type != CPP_STRING && string->type != CPP_WSTRING
1819 && string->type != CPP_STRING32 && string->type != CPP_STRING16
1820 && string->type != CPP_UTF8STRING)
1821 return NULL;
1822
1823 paren = get_token_no_padding (pfile);
1824 if (paren->type == CPP_EOF)
1825 _cpp_backup_tokens (pfile, 1);
1826 if (paren->type != CPP_CLOSE_PAREN)
1827 return NULL;
1828
1829 return string;
1830 }
1831
1832 /* Destringize IN into a temporary buffer, by removing the first \ of
1833 \" and \\ sequences, and process the result as a #pragma directive. */
1834 static void
1835 destringize_and_run (cpp_reader *pfile, const cpp_string *in,
1836 location_t expansion_loc)
1837 {
1838 const unsigned char *src, *limit;
1839 char *dest, *result;
1840 cpp_context *saved_context;
1841 cpp_token *saved_cur_token;
1842 tokenrun *saved_cur_run;
1843 cpp_token *toks;
1844 int count;
1845 const struct directive *save_directive;
1846
1847 dest = result = (char *) alloca (in->len - 1);
1848 src = in->text + 1 + (in->text[0] == 'L');
1849 limit = in->text + in->len - 1;
1850 while (src < limit)
1851 {
1852 /* We know there is a character following the backslash. */
1853 if (*src == '\\' && (src[1] == '\\' || src[1] == '"'))
1854 src++;
1855 *dest++ = *src++;
1856 }
1857 *dest = '\n';
1858
1859 /* Ugh; an awful kludge. We are really not set up to be lexing
1860 tokens when in the middle of a macro expansion. Use a new
1861 context to force cpp_get_token to lex, and so skip_rest_of_line
1862 doesn't go beyond the end of the text. Also, remember the
1863 current lexing position so we can return to it later.
1864
1865 Something like line-at-a-time lexing should remove the need for
1866 this. */
1867 saved_context = pfile->context;
1868 saved_cur_token = pfile->cur_token;
1869 saved_cur_run = pfile->cur_run;
1870
1871 pfile->context = XCNEW (cpp_context);
1872
1873 /* Inline run_directive, since we need to delay the _cpp_pop_buffer
1874 until we've read all of the tokens that we want. */
1875 cpp_push_buffer (pfile, (const uchar *) result, dest - result,
1876 /* from_stage3 */ true);
1877 /* ??? Antique Disgusting Hack. What does this do? */
1878 if (pfile->buffer->prev)
1879 pfile->buffer->file = pfile->buffer->prev->file;
1880
1881 start_directive (pfile);
1882 _cpp_clean_line (pfile);
1883 save_directive = pfile->directive;
1884 pfile->directive = &dtable[T_PRAGMA];
1885 do_pragma (pfile);
1886 end_directive (pfile, 1);
1887 pfile->directive = save_directive;
1888
1889 /* We always insert at least one token, the directive result. It'll
1890 either be a CPP_PADDING or a CPP_PRAGMA. In the later case, we
1891 need to insert *all* of the tokens, including the CPP_PRAGMA_EOL. */
1892
1893 /* If we're not handling the pragma internally, read all of the tokens from
1894 the string buffer now, while the string buffer is still installed. */
1895 /* ??? Note that the token buffer allocated here is leaked. It's not clear
1896 to me what the true lifespan of the tokens are. It would appear that
1897 the lifespan is the entire parse of the main input stream, in which case
1898 this may not be wrong. */
1899 if (pfile->directive_result.type == CPP_PRAGMA)
1900 {
1901 int maxcount;
1902
1903 count = 1;
1904 maxcount = 50;
1905 toks = XNEWVEC (cpp_token, maxcount);
1906 toks[0] = pfile->directive_result;
1907
1908 do
1909 {
1910 if (count == maxcount)
1911 {
1912 maxcount = maxcount * 3 / 2;
1913 toks = XRESIZEVEC (cpp_token, toks, maxcount);
1914 }
1915 toks[count] = *cpp_get_token (pfile);
1916 /* _Pragma is a builtin, so we're not within a macro-map, and so
1917 the token locations are set to bogus ordinary locations
1918 near to, but after that of the "_Pragma".
1919 Paper over this by setting them equal to the location of the
1920 _Pragma itself (PR preprocessor/69126). */
1921 toks[count].src_loc = expansion_loc;
1922 /* Macros have been already expanded by cpp_get_token
1923 if the pragma allowed expansion. */
1924 toks[count++].flags |= NO_EXPAND;
1925 }
1926 while (toks[count-1].type != CPP_PRAGMA_EOL);
1927 }
1928 else
1929 {
1930 count = 1;
1931 toks = XNEW (cpp_token);
1932 toks[0] = pfile->directive_result;
1933
1934 /* If we handled the entire pragma internally, make sure we get the
1935 line number correct for the next token. */
1936 if (pfile->cb.line_change)
1937 pfile->cb.line_change (pfile, pfile->cur_token, false);
1938 }
1939
1940 /* Finish inlining run_directive. */
1941 pfile->buffer->file = NULL;
1942 _cpp_pop_buffer (pfile);
1943
1944 /* Reset the old macro state before ... */
1945 XDELETE (pfile->context);
1946 pfile->context = saved_context;
1947 pfile->cur_token = saved_cur_token;
1948 pfile->cur_run = saved_cur_run;
1949
1950 /* ... inserting the new tokens we collected. */
1951 _cpp_push_token_context (pfile, NULL, toks, count);
1952 }
1953
1954 /* Handle the _Pragma operator. Return 0 on error, 1 if ok. */
1955 int
1956 _cpp_do__Pragma (cpp_reader *pfile, location_t expansion_loc)
1957 {
1958 const cpp_token *string = get__Pragma_string (pfile);
1959 pfile->directive_result.type = CPP_PADDING;
1960
1961 if (string)
1962 {
1963 destringize_and_run (pfile, &string->val.str, expansion_loc);
1964 return 1;
1965 }
1966 cpp_error (pfile, CPP_DL_ERROR,
1967 "_Pragma takes a parenthesized string literal");
1968 return 0;
1969 }
1970
1971 /* Handle #ifdef. */
1972 static void
1973 do_ifdef (cpp_reader *pfile)
1974 {
1975 int skip = 1;
1976
1977 if (! pfile->state.skipping)
1978 {
1979 cpp_hashnode *node = lex_macro_node (pfile, false);
1980
1981 if (node)
1982 {
1983 skip = !_cpp_defined_macro_p (node);
1984 _cpp_mark_macro_used (node);
1985 _cpp_maybe_notify_macro_use (pfile, node, pfile->directive_line);
1986 if (pfile->cb.used)
1987 pfile->cb.used (pfile, pfile->directive_line, node);
1988 check_eol (pfile, false);
1989 }
1990 }
1991
1992 push_conditional (pfile, skip, T_IFDEF, 0);
1993 }
1994
1995 /* Handle #ifndef. */
1996 static void
1997 do_ifndef (cpp_reader *pfile)
1998 {
1999 int skip = 1;
2000 cpp_hashnode *node = 0;
2001
2002 if (! pfile->state.skipping)
2003 {
2004 node = lex_macro_node (pfile, false);
2005
2006 if (node)
2007 {
2008 skip = _cpp_defined_macro_p (node);
2009 _cpp_mark_macro_used (node);
2010 _cpp_maybe_notify_macro_use (pfile, node, pfile->directive_line);
2011 if (pfile->cb.used)
2012 pfile->cb.used (pfile, pfile->directive_line, node);
2013 check_eol (pfile, false);
2014 }
2015 }
2016
2017 push_conditional (pfile, skip, T_IFNDEF, node);
2018 }
2019
2020 /* _cpp_parse_expr puts a macro in a "#if !defined ()" expression in
2021 pfile->mi_ind_cmacro so we can handle multiple-include
2022 optimizations. If macro expansion occurs in the expression, we
2023 cannot treat it as a controlling conditional, since the expansion
2024 could change in the future. That is handled by cpp_get_token. */
2025 static void
2026 do_if (cpp_reader *pfile)
2027 {
2028 int skip = 1;
2029
2030 if (! pfile->state.skipping)
2031 skip = _cpp_parse_expr (pfile, true) == false;
2032
2033 push_conditional (pfile, skip, T_IF, pfile->mi_ind_cmacro);
2034 }
2035
2036 /* Flip skipping state if appropriate and continue without changing
2037 if_stack; this is so that the error message for missing #endif's
2038 etc. will point to the original #if. */
2039 static void
2040 do_else (cpp_reader *pfile)
2041 {
2042 cpp_buffer *buffer = pfile->buffer;
2043 struct if_stack *ifs = buffer->if_stack;
2044
2045 if (ifs == NULL)
2046 cpp_error (pfile, CPP_DL_ERROR, "#else without #if");
2047 else
2048 {
2049 if (ifs->type == T_ELSE)
2050 {
2051 cpp_error (pfile, CPP_DL_ERROR, "#else after #else");
2052 cpp_error_with_line (pfile, CPP_DL_ERROR, ifs->line, 0,
2053 "the conditional began here");
2054 }
2055 ifs->type = T_ELSE;
2056
2057 /* Skip any future (erroneous) #elses or #elifs. */
2058 pfile->state.skipping = ifs->skip_elses;
2059 ifs->skip_elses = true;
2060
2061 /* Invalidate any controlling macro. */
2062 ifs->mi_cmacro = 0;
2063
2064 /* Only check EOL if was not originally skipping. */
2065 if (!ifs->was_skipping && CPP_OPTION (pfile, warn_endif_labels))
2066 check_eol_endif_labels (pfile);
2067 }
2068 }
2069
2070 /* Handle a #elif directive by not changing if_stack either. See the
2071 comment above do_else. */
2072 static void
2073 do_elif (cpp_reader *pfile)
2074 {
2075 cpp_buffer *buffer = pfile->buffer;
2076 struct if_stack *ifs = buffer->if_stack;
2077
2078 if (ifs == NULL)
2079 cpp_error (pfile, CPP_DL_ERROR, "#elif without #if");
2080 else
2081 {
2082 if (ifs->type == T_ELSE)
2083 {
2084 cpp_error (pfile, CPP_DL_ERROR, "#elif after #else");
2085 cpp_error_with_line (pfile, CPP_DL_ERROR, ifs->line, 0,
2086 "the conditional began here");
2087 }
2088 ifs->type = T_ELIF;
2089
2090 /* See DR#412: "Only the first group whose control condition
2091 evaluates to true (nonzero) is processed; any following groups
2092 are skipped and their controlling directives are processed as
2093 if they were in a group that is skipped." */
2094 if (ifs->skip_elses)
2095 pfile->state.skipping = 1;
2096 else
2097 {
2098 pfile->state.skipping = ! _cpp_parse_expr (pfile, false);
2099 ifs->skip_elses = ! pfile->state.skipping;
2100 }
2101
2102 /* Invalidate any controlling macro. */
2103 ifs->mi_cmacro = 0;
2104 }
2105 }
2106
2107 /* #endif pops the if stack and resets pfile->state.skipping. */
2108 static void
2109 do_endif (cpp_reader *pfile)
2110 {
2111 cpp_buffer *buffer = pfile->buffer;
2112 struct if_stack *ifs = buffer->if_stack;
2113
2114 if (ifs == NULL)
2115 cpp_error (pfile, CPP_DL_ERROR, "#endif without #if");
2116 else
2117 {
2118 /* Only check EOL if was not originally skipping. */
2119 if (!ifs->was_skipping && CPP_OPTION (pfile, warn_endif_labels))
2120 check_eol_endif_labels (pfile);
2121
2122 /* If potential control macro, we go back outside again. */
2123 if (ifs->next == 0 && ifs->mi_cmacro)
2124 {
2125 pfile->mi_valid = true;
2126 pfile->mi_cmacro = ifs->mi_cmacro;
2127 }
2128
2129 buffer->if_stack = ifs->next;
2130 pfile->state.skipping = ifs->was_skipping;
2131 obstack_free (&pfile->buffer_ob, ifs);
2132 }
2133 }
2134
2135 /* Push an if_stack entry for a preprocessor conditional, and set
2136 pfile->state.skipping to SKIP. If TYPE indicates the conditional
2137 is #if or #ifndef, CMACRO is a potentially controlling macro, and
2138 we need to check here that we are at the top of the file. */
2139 static void
2140 push_conditional (cpp_reader *pfile, int skip, int type,
2141 const cpp_hashnode *cmacro)
2142 {
2143 struct if_stack *ifs;
2144 cpp_buffer *buffer = pfile->buffer;
2145
2146 ifs = XOBNEW (&pfile->buffer_ob, struct if_stack);
2147 ifs->line = pfile->directive_line;
2148 ifs->next = buffer->if_stack;
2149 ifs->skip_elses = pfile->state.skipping || !skip;
2150 ifs->was_skipping = pfile->state.skipping;
2151 ifs->type = type;
2152 /* This condition is effectively a test for top-of-file. */
2153 if (pfile->mi_valid && pfile->mi_cmacro == 0)
2154 ifs->mi_cmacro = cmacro;
2155 else
2156 ifs->mi_cmacro = 0;
2157
2158 pfile->state.skipping = skip;
2159 buffer->if_stack = ifs;
2160 }
2161
2162 /* Read the tokens of the answer into the macro pool, in a directive
2163 of type TYPE. Only commit the memory if we intend it as permanent
2164 storage, i.e. the #assert case. Returns 0 on success, and sets
2165 ANSWERP to point to the answer. PRED_LOC is the location of the
2166 predicate. */
2167 static bool
2168 parse_answer (cpp_reader *pfile, int type, location_t pred_loc,
2169 cpp_macro **answer_ptr)
2170 {
2171 /* In a conditional, it is legal to not have an open paren. We
2172 should save the following token in this case. */
2173 const cpp_token *paren = cpp_get_token (pfile);
2174
2175 /* If not a paren, see if we're OK. */
2176 if (paren->type != CPP_OPEN_PAREN)
2177 {
2178 /* In a conditional no answer is a test for any answer. It
2179 could be followed by any token. */
2180 if (type == T_IF)
2181 {
2182 _cpp_backup_tokens (pfile, 1);
2183 return true;
2184 }
2185
2186 /* #unassert with no answer is valid - it removes all answers. */
2187 if (type == T_UNASSERT && paren->type == CPP_EOF)
2188 return true;
2189
2190 cpp_error_with_line (pfile, CPP_DL_ERROR, pred_loc, 0,
2191 "missing '(' after predicate");
2192 return false;
2193 }
2194
2195 cpp_macro *answer = _cpp_new_macro (pfile, cmk_assert,
2196 _cpp_reserve_room (pfile, 0,
2197 sizeof (cpp_macro)));
2198 answer->parm.next = NULL;
2199 unsigned count = 0;
2200 for (;;)
2201 {
2202 const cpp_token *token = cpp_get_token (pfile);
2203
2204 if (token->type == CPP_CLOSE_PAREN)
2205 break;
2206
2207 if (token->type == CPP_EOF)
2208 {
2209 cpp_error (pfile, CPP_DL_ERROR, "missing ')' to complete answer");
2210 return false;
2211 }
2212
2213 answer = (cpp_macro *)_cpp_reserve_room
2214 (pfile, sizeof (cpp_macro) + count * sizeof (cpp_token),
2215 sizeof (cpp_token));
2216 answer->exp.tokens[count++] = *token;
2217 }
2218
2219 if (!count)
2220 {
2221 cpp_error (pfile, CPP_DL_ERROR, "predicate's answer is empty");
2222 return false;
2223 }
2224
2225 /* Drop whitespace at start, for answer equivalence purposes. */
2226 answer->exp.tokens[0].flags &= ~PREV_WHITE;
2227
2228 answer->count = count;
2229 *answer_ptr = answer;
2230
2231 return true;
2232 }
2233
2234 /* Parses an assertion directive of type TYPE, returning a pointer to
2235 the hash node of the predicate, or 0 on error. The node is
2236 guaranteed to be disjoint from the macro namespace, so can only
2237 have type 'NT_VOID'. If an answer was supplied, it is placed in
2238 *ANSWER_PTR, which is otherwise set to 0. */
2239 static cpp_hashnode *
2240 parse_assertion (cpp_reader *pfile, int type, cpp_macro **answer_ptr)
2241 {
2242 cpp_hashnode *result = 0;
2243
2244 /* We don't expand predicates or answers. */
2245 pfile->state.prevent_expansion++;
2246
2247 *answer_ptr = NULL;
2248
2249 const cpp_token *predicate = cpp_get_token (pfile);
2250 if (predicate->type == CPP_EOF)
2251 cpp_error (pfile, CPP_DL_ERROR, "assertion without predicate");
2252 else if (predicate->type != CPP_NAME)
2253 cpp_error_with_line (pfile, CPP_DL_ERROR, predicate->src_loc, 0,
2254 "predicate must be an identifier");
2255 else if (parse_answer (pfile, type, predicate->src_loc, answer_ptr))
2256 {
2257 unsigned int len = NODE_LEN (predicate->val.node.node);
2258 unsigned char *sym = (unsigned char *) alloca (len + 1);
2259
2260 /* Prefix '#' to get it out of macro namespace. */
2261 sym[0] = '#';
2262 memcpy (sym + 1, NODE_NAME (predicate->val.node.node), len);
2263 result = cpp_lookup (pfile, sym, len + 1);
2264 }
2265
2266 pfile->state.prevent_expansion--;
2267
2268 return result;
2269 }
2270
2271 /* Returns a pointer to the pointer to CANDIDATE in the answer chain,
2272 or a pointer to NULL if the answer is not in the chain. */
2273 static cpp_macro **
2274 find_answer (cpp_hashnode *node, const cpp_macro *candidate)
2275 {
2276 unsigned int i;
2277 cpp_macro **result = NULL;
2278
2279 for (result = &node->value.answers; *result; result = &(*result)->parm.next)
2280 {
2281 cpp_macro *answer = *result;
2282
2283 if (answer->count == candidate->count)
2284 {
2285 for (i = 0; i < answer->count; i++)
2286 if (!_cpp_equiv_tokens (&answer->exp.tokens[i],
2287 &candidate->exp.tokens[i]))
2288 break;
2289
2290 if (i == answer->count)
2291 break;
2292 }
2293 }
2294
2295 return result;
2296 }
2297
2298 /* Test an assertion within a preprocessor conditional. Returns
2299 nonzero on failure, zero on success. On success, the result of
2300 the test is written into VALUE, otherwise the value 0. */
2301 int
2302 _cpp_test_assertion (cpp_reader *pfile, unsigned int *value)
2303 {
2304 cpp_macro *answer;
2305 cpp_hashnode *node = parse_assertion (pfile, T_IF, &answer);
2306
2307 /* For recovery, an erroneous assertion expression is handled as a
2308 failing assertion. */
2309 *value = 0;
2310
2311 if (node)
2312 {
2313 if (node->value.answers)
2314 *value = !answer || *find_answer (node, answer);
2315 }
2316 else if (pfile->cur_token[-1].type == CPP_EOF)
2317 _cpp_backup_tokens (pfile, 1);
2318
2319 /* We don't commit the memory for the answer - it's temporary only. */
2320 return node == 0;
2321 }
2322
2323 /* Handle #assert. */
2324 static void
2325 do_assert (cpp_reader *pfile)
2326 {
2327 cpp_macro *answer;
2328 cpp_hashnode *node = parse_assertion (pfile, T_ASSERT, &answer);
2329
2330 if (node)
2331 {
2332 /* Place the new answer in the answer list. First check there
2333 is not a duplicate. */
2334 if (*find_answer (node, answer))
2335 {
2336 cpp_error (pfile, CPP_DL_WARNING, "\"%s\" re-asserted",
2337 NODE_NAME (node) + 1);
2338 return;
2339 }
2340
2341 /* Commit or allocate storage for the answer. */
2342 answer = (cpp_macro *)_cpp_commit_buff
2343 (pfile, sizeof (cpp_macro) - sizeof (cpp_token)
2344 + sizeof (cpp_token) * answer->count);
2345
2346 /* Chain into the list. */
2347 answer->parm.next = node->value.answers;
2348 node->value.answers = answer;
2349
2350 check_eol (pfile, false);
2351 }
2352 }
2353
2354 /* Handle #unassert. */
2355 static void
2356 do_unassert (cpp_reader *pfile)
2357 {
2358 cpp_macro *answer;
2359 cpp_hashnode *node = parse_assertion (pfile, T_UNASSERT, &answer);
2360
2361 /* It isn't an error to #unassert something that isn't asserted. */
2362 if (node)
2363 {
2364 if (answer)
2365 {
2366 cpp_macro **p = find_answer (node, answer);
2367
2368 /* Remove the assert from the list. */
2369 if (cpp_macro *temp = *p)
2370 *p = temp->parm.next;
2371
2372 check_eol (pfile, false);
2373 }
2374 else
2375 _cpp_free_definition (node);
2376 }
2377
2378 /* We don't commit the memory for the answer - it's temporary only. */
2379 }
2380
2381 /* These are for -D, -U, -A. */
2382
2383 /* Process the string STR as if it appeared as the body of a #define.
2384 If STR is just an identifier, define it with value 1.
2385 If STR has anything after the identifier, then it should
2386 be identifier=definition. */
2387 void
2388 cpp_define (cpp_reader *pfile, const char *str)
2389 {
2390 char *buf;
2391 const char *p;
2392 size_t count;
2393
2394 /* Copy the entire option so we can modify it.
2395 Change the first "=" in the string to a space. If there is none,
2396 tack " 1" on the end. */
2397
2398 count = strlen (str);
2399 buf = (char *) alloca (count + 3);
2400 memcpy (buf, str, count);
2401
2402 p = strchr (str, '=');
2403 if (p)
2404 buf[p - str] = ' ';
2405 else
2406 {
2407 buf[count++] = ' ';
2408 buf[count++] = '1';
2409 }
2410 buf[count] = '\n';
2411
2412 run_directive (pfile, T_DEFINE, buf, count);
2413 }
2414
2415
2416 /* Use to build macros to be run through cpp_define() as
2417 described above.
2418 Example: cpp_define_formatted (pfile, "MACRO=%d", value); */
2419
2420 void
2421 cpp_define_formatted (cpp_reader *pfile, const char *fmt, ...)
2422 {
2423 char *ptr;
2424
2425 va_list ap;
2426 va_start (ap, fmt);
2427 ptr = xvasprintf (fmt, ap);
2428 va_end (ap);
2429
2430 cpp_define (pfile, ptr);
2431 free (ptr);
2432 }
2433
2434
2435 /* Slight variant of the above for use by initialize_builtins. */
2436 void
2437 _cpp_define_builtin (cpp_reader *pfile, const char *str)
2438 {
2439 size_t len = strlen (str);
2440 char *buf = (char *) alloca (len + 1);
2441 memcpy (buf, str, len);
2442 buf[len] = '\n';
2443 run_directive (pfile, T_DEFINE, buf, len);
2444 }
2445
2446 /* Process MACRO as if it appeared as the body of an #undef. */
2447 void
2448 cpp_undef (cpp_reader *pfile, const char *macro)
2449 {
2450 size_t len = strlen (macro);
2451 char *buf = (char *) alloca (len + 1);
2452 memcpy (buf, macro, len);
2453 buf[len] = '\n';
2454 run_directive (pfile, T_UNDEF, buf, len);
2455 }
2456
2457 /* Replace a previous definition DEF of the macro STR. If DEF is NULL,
2458 or first element is zero, then the macro should be undefined. */
2459 static void
2460 cpp_pop_definition (cpp_reader *pfile, struct def_pragma_macro *c)
2461 {
2462 cpp_hashnode *node = _cpp_lex_identifier (pfile, c->name);
2463 if (node == NULL)
2464 return;
2465
2466 if (pfile->cb.before_define)
2467 pfile->cb.before_define (pfile);
2468
2469 if (cpp_macro_p (node))
2470 {
2471 if (pfile->cb.undef)
2472 pfile->cb.undef (pfile, pfile->directive_line, node);
2473 if (CPP_OPTION (pfile, warn_unused_macros))
2474 _cpp_warn_if_unused_macro (pfile, node, NULL);
2475 _cpp_free_definition (node);
2476 }
2477
2478 if (c->is_undef)
2479 return;
2480 if (c->is_builtin)
2481 {
2482 _cpp_restore_special_builtin (pfile, c);
2483 return;
2484 }
2485
2486 {
2487 size_t namelen;
2488 const uchar *dn;
2489 cpp_hashnode *h = NULL;
2490 cpp_buffer *nbuf;
2491
2492 namelen = ustrcspn (c->definition, "( \n");
2493 h = cpp_lookup (pfile, c->definition, namelen);
2494 dn = c->definition + namelen;
2495
2496 nbuf = cpp_push_buffer (pfile, dn, ustrchr (dn, '\n') - dn, true);
2497 if (nbuf != NULL)
2498 {
2499 _cpp_clean_line (pfile);
2500 nbuf->sysp = 1;
2501 if (!_cpp_create_definition (pfile, h))
2502 abort ();
2503 _cpp_pop_buffer (pfile);
2504 }
2505 else
2506 abort ();
2507 h->value.macro->line = c->line;
2508 h->value.macro->syshdr = c->syshdr;
2509 h->value.macro->used = c->used;
2510 }
2511 }
2512
2513 /* Process the string STR as if it appeared as the body of a #assert. */
2514 void
2515 cpp_assert (cpp_reader *pfile, const char *str)
2516 {
2517 handle_assertion (pfile, str, T_ASSERT);
2518 }
2519
2520 /* Process STR as if it appeared as the body of an #unassert. */
2521 void
2522 cpp_unassert (cpp_reader *pfile, const char *str)
2523 {
2524 handle_assertion (pfile, str, T_UNASSERT);
2525 }
2526
2527 /* Common code for cpp_assert (-A) and cpp_unassert (-A-). */
2528 static void
2529 handle_assertion (cpp_reader *pfile, const char *str, int type)
2530 {
2531 size_t count = strlen (str);
2532 const char *p = strchr (str, '=');
2533
2534 /* Copy the entire option so we can modify it. Change the first
2535 "=" in the string to a '(', and tack a ')' on the end. */
2536 char *buf = (char *) alloca (count + 2);
2537
2538 memcpy (buf, str, count);
2539 if (p)
2540 {
2541 buf[p - str] = '(';
2542 buf[count++] = ')';
2543 }
2544 buf[count] = '\n';
2545 str = buf;
2546
2547 run_directive (pfile, type, str, count);
2548 }
2549
2550 /* The options structure. */
2551 cpp_options *
2552 cpp_get_options (cpp_reader *pfile)
2553 {
2554 return &pfile->opts;
2555 }
2556
2557 /* The callbacks structure. */
2558 cpp_callbacks *
2559 cpp_get_callbacks (cpp_reader *pfile)
2560 {
2561 return &pfile->cb;
2562 }
2563
2564 /* Copy the given callbacks structure to our own. */
2565 void
2566 cpp_set_callbacks (cpp_reader *pfile, cpp_callbacks *cb)
2567 {
2568 pfile->cb = *cb;
2569 }
2570
2571 /* The dependencies structure. (Creates one if it hasn't already been.) */
2572 class mkdeps *
2573 cpp_get_deps (cpp_reader *pfile)
2574 {
2575 if (!pfile->deps)
2576 pfile->deps = deps_init ();
2577 return pfile->deps;
2578 }
2579
2580 /* Push a new buffer on the buffer stack. Returns the new buffer; it
2581 doesn't fail. It does not generate a file change call back; that
2582 is the responsibility of the caller. */
2583 cpp_buffer *
2584 cpp_push_buffer (cpp_reader *pfile, const uchar *buffer, size_t len,
2585 int from_stage3)
2586 {
2587 cpp_buffer *new_buffer = XOBNEW (&pfile->buffer_ob, cpp_buffer);
2588
2589 /* Clears, amongst other things, if_stack and mi_cmacro. */
2590 memset (new_buffer, 0, sizeof (cpp_buffer));
2591
2592 new_buffer->next_line = new_buffer->buf = buffer;
2593 new_buffer->rlimit = buffer + len;
2594 new_buffer->from_stage3 = from_stage3;
2595 new_buffer->prev = pfile->buffer;
2596 new_buffer->need_line = true;
2597
2598 pfile->buffer = new_buffer;
2599
2600 return new_buffer;
2601 }
2602
2603 /* Pops a single buffer, with a file change call-back if appropriate.
2604 Then pushes the next -include file, if any remain. */
2605 void
2606 _cpp_pop_buffer (cpp_reader *pfile)
2607 {
2608 cpp_buffer *buffer = pfile->buffer;
2609 struct _cpp_file *inc = buffer->file;
2610 struct if_stack *ifs;
2611 const unsigned char *to_free;
2612
2613 /* Walk back up the conditional stack till we reach its level at
2614 entry to this file, issuing error messages. */
2615 for (ifs = buffer->if_stack; ifs; ifs = ifs->next)
2616 cpp_error_with_line (pfile, CPP_DL_ERROR, ifs->line, 0,
2617 "unterminated #%s", dtable[ifs->type].name);
2618
2619 /* In case of a missing #endif. */
2620 pfile->state.skipping = 0;
2621
2622 /* _cpp_do_file_change expects pfile->buffer to be the new one. */
2623 pfile->buffer = buffer->prev;
2624
2625 to_free = buffer->to_free;
2626 free (buffer->notes);
2627
2628 /* Free the buffer object now; we may want to push a new buffer
2629 in _cpp_push_next_include_file. */
2630 obstack_free (&pfile->buffer_ob, buffer);
2631
2632 if (inc)
2633 {
2634 _cpp_pop_file_buffer (pfile, inc, to_free);
2635
2636 _cpp_do_file_change (pfile, LC_LEAVE, 0, 0, 0);
2637 }
2638 else if (to_free)
2639 free ((void *)to_free);
2640 }
2641
2642 /* Enter all recognized directives in the hash table. */
2643 void
2644 _cpp_init_directives (cpp_reader *pfile)
2645 {
2646 for (int i = 0; i < N_DIRECTIVES; i++)
2647 {
2648 cpp_hashnode *node = cpp_lookup (pfile, dtable[i].name, dtable[i].length);
2649 node->is_directive = 1;
2650 node->directive_index = i;
2651 }
2652 }
2653
2654 /* Extract header file from a bracket include. Parsing starts after '<'.
2655 The string is malloced and must be freed by the caller. */
2656 char *
2657 _cpp_bracket_include(cpp_reader *pfile)
2658 {
2659 return glue_header_name (pfile);
2660 }
2661