1 /* CPP Library. (Directive handling.)
2 Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4 Contributed by Per Bothner, 1994-95.
5 Based on CCCP program by Paul Rubin, June 1986
6 Adapted to ANSI C, Richard Stallman, Jan 1987
8 This program is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
28 /* Chained list of answers to an assertion. */
36 /* Stack of conditionals currently in progress
37 (including both successful and failing conditionals). */
40 struct if_stack
*next
;
41 unsigned int line
; /* Line where condition started. */
42 const cpp_hashnode
*mi_cmacro
;/* macro name for #ifndef around entire file */
43 bool skip_elses
; /* Can future #else / #elif be skipped? */
44 bool was_skipping
; /* If were skipping on entry. */
45 int type
; /* Most recent conditional for diagnostics. */
48 /* Contains a registered pragma or pragma namespace. */
49 typedef void (*pragma_cb
) (cpp_reader
*);
52 struct pragma_entry
*next
;
53 const cpp_hashnode
*pragma
; /* Name and length. */
57 struct pragma_entry
*space
;
61 /* Values for the origin field of struct directive. KANDR directives
62 come from traditional (K&R) C. STDC89 directives come from the
63 1989 C standard. EXTENSION directives are extensions. */
68 /* Values for the flags field of struct directive. COND indicates a
69 conditional; IF_COND an opening conditional. INCL means to treat
70 "..." and <...> as q-char and h-char sequences respectively. IN_I
71 means this directive should be handled even if -fpreprocessed is in
72 effect (these are the directives with callback hooks).
74 EXPAND is set on directives that are always macro-expanded. */
76 #define IF_COND (1 << 1)
79 #define EXPAND (1 << 4)
81 /* Defines one #-directive, including how to handle it. */
82 typedef void (*directive_handler
) (cpp_reader
*);
83 typedef struct directive directive
;
86 directive_handler handler
; /* Function to handle directive. */
87 const uchar
*name
; /* Name of directive. */
88 unsigned short length
; /* Length of name. */
89 unsigned char origin
; /* Origin of directive. */
90 unsigned char flags
; /* Flags describing this directive. */
93 /* Forward declarations. */
95 static void skip_rest_of_line (cpp_reader
*);
96 static void check_eol (cpp_reader
*);
97 static void start_directive (cpp_reader
*);
98 static void prepare_directive_trad (cpp_reader
*);
99 static void end_directive (cpp_reader
*, int);
100 static void directive_diagnostics (cpp_reader
*, const directive
*, int);
101 static void run_directive (cpp_reader
*, int, const char *, size_t);
102 static char *glue_header_name (cpp_reader
*);
103 static const char *parse_include (cpp_reader
*, int *);
104 static void push_conditional (cpp_reader
*, int, int, const cpp_hashnode
*);
105 static unsigned int read_flag (cpp_reader
*, unsigned int);
106 static int strtoul_for_line (const uchar
*, unsigned int, unsigned long *);
107 static void do_diagnostic (cpp_reader
*, int, int);
108 static cpp_hashnode
*lex_macro_node (cpp_reader
*);
109 static int undefine_macros (cpp_reader
*, cpp_hashnode
*, void *);
110 static void do_include_common (cpp_reader
*, enum include_type
);
111 static struct pragma_entry
*lookup_pragma_entry (struct pragma_entry
*,
112 const cpp_hashnode
*);
113 static struct pragma_entry
*insert_pragma_entry (cpp_reader
*,
114 struct pragma_entry
**,
115 const cpp_hashnode
*,
117 static int count_registered_pragmas (struct pragma_entry
*);
118 static char ** save_registered_pragmas (struct pragma_entry
*, char **);
119 static char ** restore_registered_pragmas (cpp_reader
*, struct pragma_entry
*,
121 static void do_pragma_once (cpp_reader
*);
122 static void do_pragma_poison (cpp_reader
*);
123 static void do_pragma_system_header (cpp_reader
*);
124 static void do_pragma_dependency (cpp_reader
*);
125 static void do_linemarker (cpp_reader
*);
126 static const cpp_token
*get_token_no_padding (cpp_reader
*);
127 static const cpp_token
*get__Pragma_string (cpp_reader
*);
128 static void destringize_and_run (cpp_reader
*, const cpp_string
*);
129 static int parse_answer (cpp_reader
*, struct answer
**, int);
130 static cpp_hashnode
*parse_assertion (cpp_reader
*, struct answer
**, int);
131 static struct answer
** find_answer (cpp_hashnode
*, const struct answer
*);
132 static void handle_assertion (cpp_reader
*, const char *, int);
134 /* This is the table of directive handlers. It is ordered by
135 frequency of occurrence; the numbers at the end are directive
136 counts from all the source code I have lying around (egcs and libc
137 CVS as of 1999-05-18, plus grub-0.5.91, linux-2.2.9, and
138 pcmcia-cs-3.0.9). This is no longer important as directive lookup
139 is now O(1). All extensions other than #warning and #include_next
140 are deprecated. The name is where the extension appears to have
143 #define DIRECTIVE_TABLE \
144 D(define, T_DEFINE = 0, KANDR, IN_I) /* 270554 */ \
145 D(include, T_INCLUDE, KANDR, INCL | EXPAND) /* 52262 */ \
146 D(endif, T_ENDIF, KANDR, COND) /* 45855 */ \
147 D(ifdef, T_IFDEF, KANDR, COND | IF_COND) /* 22000 */ \
148 D(if, T_IF, KANDR, COND | IF_COND | EXPAND) /* 18162 */ \
149 D(else, T_ELSE, KANDR, COND) /* 9863 */ \
150 D(ifndef, T_IFNDEF, KANDR, COND | IF_COND) /* 9675 */ \
151 D(undef, T_UNDEF, KANDR, IN_I) /* 4837 */ \
152 D(line, T_LINE, KANDR, EXPAND) /* 2465 */ \
153 D(elif, T_ELIF, STDC89, COND | EXPAND) /* 610 */ \
154 D(error, T_ERROR, STDC89, 0) /* 475 */ \
155 D(pragma, T_PRAGMA, STDC89, IN_I) /* 195 */ \
156 D(warning, T_WARNING, EXTENSION, 0) /* 22 */ \
157 D(include_next, T_INCLUDE_NEXT, EXTENSION, INCL | EXPAND) /* 19 */ \
158 D(ident, T_IDENT, EXTENSION, IN_I) /* 11 */ \
159 D(import, T_IMPORT, EXTENSION, INCL | EXPAND) /* 0 ObjC */ \
160 D(assert, T_ASSERT, EXTENSION, 0) /* 0 SVR4 */ \
161 D(unassert, T_UNASSERT, EXTENSION, 0) /* 0 SVR4 */ \
162 D(sccs, T_SCCS, EXTENSION, 0) /* 0 SVR4? */
164 /* Use the table to generate a series of prototypes, an enum for the
165 directive names, and an array of directive handlers. */
167 #define D(name, t, o, f) static void do_##name (cpp_reader *);
171 #define D(n, tag, o, f) tag,
179 #define D(name, t, origin, flags) \
180 { do_##name, (const uchar *) #name, \
181 sizeof #name - 1, origin, flags },
182 static const directive dtable
[] =
187 #undef DIRECTIVE_TABLE
189 /* Wrapper struct directive for linemarkers.
190 The origin is more or less true - the original K+R cpp
191 did use this notation in its preprocessed output. */
192 static const directive linemarker_dir
=
194 do_linemarker
, U
"#", 1, KANDR
, IN_I
197 #define SEEN_EOL() (pfile->cur_token[-1].type == CPP_EOF)
199 /* Skip any remaining tokens in a directive. */
201 skip_rest_of_line (cpp_reader
*pfile
)
203 /* Discard all stacked contexts. */
204 while (pfile
->context
->prev
)
205 _cpp_pop_context (pfile
);
207 /* Sweep up all tokens remaining on the line. */
209 while (_cpp_lex_token (pfile
)->type
!= CPP_EOF
)
213 /* Ensure there are no stray tokens at the end of a directive. */
215 check_eol (cpp_reader
*pfile
)
217 if (! SEEN_EOL () && _cpp_lex_token (pfile
)->type
!= CPP_EOF
)
218 cpp_error (pfile
, DL_PEDWARN
, "extra tokens at end of #%s directive",
219 pfile
->directive
->name
);
222 /* Called when entering a directive, _Pragma or command-line directive. */
224 start_directive (cpp_reader
*pfile
)
226 /* Setup in-directive state. */
227 pfile
->state
.in_directive
= 1;
228 pfile
->state
.save_comments
= 0;
230 /* Some handlers need the position of the # for diagnostics. */
231 pfile
->directive_line
= pfile
->line
;
234 /* Called when leaving a directive, _Pragma or command-line directive. */
236 end_directive (cpp_reader
*pfile
, int skip_line
)
238 if (CPP_OPTION (pfile
, traditional
))
240 /* Revert change of prepare_directive_trad. */
241 pfile
->state
.prevent_expansion
--;
243 if (pfile
->directive
!= &dtable
[T_DEFINE
])
244 _cpp_remove_overlay (pfile
);
246 /* We don't skip for an assembler #. */
249 skip_rest_of_line (pfile
);
250 if (!pfile
->keep_tokens
)
252 pfile
->cur_run
= &pfile
->base_run
;
253 pfile
->cur_token
= pfile
->base_run
.base
;
258 pfile
->state
.save_comments
= ! CPP_OPTION (pfile
, discard_comments
);
259 pfile
->state
.in_directive
= 0;
260 pfile
->state
.in_expression
= 0;
261 pfile
->state
.angled_headers
= 0;
262 pfile
->directive
= 0;
265 /* Prepare to handle the directive in pfile->directive. */
267 prepare_directive_trad (cpp_reader
*pfile
)
269 if (pfile
->directive
!= &dtable
[T_DEFINE
])
271 bool no_expand
= (pfile
->directive
272 && ! (pfile
->directive
->flags
& EXPAND
));
273 bool was_skipping
= pfile
->state
.skipping
;
275 pfile
->state
.skipping
= false;
276 pfile
->state
.in_expression
= (pfile
->directive
== &dtable
[T_IF
]
277 || pfile
->directive
== &dtable
[T_ELIF
]);
279 pfile
->state
.prevent_expansion
++;
280 _cpp_scan_out_logical_line (pfile
, NULL
);
282 pfile
->state
.prevent_expansion
--;
283 pfile
->state
.skipping
= was_skipping
;
284 _cpp_overlay_buffer (pfile
, pfile
->out
.base
,
285 pfile
->out
.cur
- pfile
->out
.base
);
288 /* Stop ISO C from expanding anything. */
289 pfile
->state
.prevent_expansion
++;
292 /* Output diagnostics for a directive DIR. INDENTED is nonzero if
293 the '#' was indented. */
295 directive_diagnostics (cpp_reader
*pfile
, const directive
*dir
, int indented
)
297 /* Issue -pedantic warnings for extensions. */
298 if (CPP_PEDANTIC (pfile
)
299 && ! pfile
->state
.skipping
300 && dir
->origin
== EXTENSION
)
301 cpp_error (pfile
, DL_PEDWARN
, "#%s is a GCC extension", dir
->name
);
303 /* Traditionally, a directive is ignored unless its # is in
304 column 1. Therefore in code intended to work with K+R
305 compilers, directives added by C89 must have their #
306 indented, and directives present in traditional C must not.
307 This is true even of directives in skipped conditional
308 blocks. #elif cannot be used at all. */
309 if (CPP_WTRADITIONAL (pfile
))
311 if (dir
== &dtable
[T_ELIF
])
312 cpp_error (pfile
, DL_WARNING
,
313 "suggest not using #elif in traditional C");
314 else if (indented
&& dir
->origin
== KANDR
)
315 cpp_error (pfile
, DL_WARNING
,
316 "traditional C ignores #%s with the # indented",
318 else if (!indented
&& dir
->origin
!= KANDR
)
319 cpp_error (pfile
, DL_WARNING
,
320 "suggest hiding #%s from traditional C with an indented #",
325 /* Check if we have a known directive. INDENTED is nonzero if the
326 '#' of the directive was indented. This function is in this file
327 to save unnecessarily exporting dtable etc. to cpplex.c. Returns
328 nonzero if the line of tokens has been handled, zero if we should
329 continue processing the line. */
331 _cpp_handle_directive (cpp_reader
*pfile
, int indented
)
333 const directive
*dir
= 0;
334 const cpp_token
*dname
;
335 bool was_parsing_args
= pfile
->state
.parsing_args
;
338 if (was_parsing_args
)
340 if (CPP_OPTION (pfile
, pedantic
))
341 cpp_error (pfile
, DL_PEDWARN
,
342 "embedding a directive within macro arguments is not portable");
343 pfile
->state
.parsing_args
= 0;
344 pfile
->state
.prevent_expansion
= 0;
346 start_directive (pfile
);
347 dname
= _cpp_lex_token (pfile
);
349 if (dname
->type
== CPP_NAME
)
351 if (dname
->val
.node
->is_directive
)
352 dir
= &dtable
[dname
->val
.node
->directive_index
];
354 /* We do not recognize the # followed by a number extension in
356 else if (dname
->type
== CPP_NUMBER
&& CPP_OPTION (pfile
, lang
) != CLK_ASM
)
358 dir
= &linemarker_dir
;
359 if (CPP_PEDANTIC (pfile
) && ! CPP_OPTION (pfile
, preprocessed
)
360 && ! pfile
->state
.skipping
)
361 cpp_error (pfile
, DL_PEDWARN
,
362 "style of line directive is a GCC extension");
367 /* If we have a directive that is not an opening conditional,
368 invalidate any control macro. */
369 if (! (dir
->flags
& IF_COND
))
370 pfile
->mi_valid
= false;
372 /* Kluge alert. In order to be sure that code like this
377 does not cause '#define foo bar' to get executed when
378 compiled with -save-temps, we recognize directives in
379 -fpreprocessed mode only if the # is in column 1. cppmacro.c
380 puts a space in front of any '#' at the start of a macro. */
381 if (CPP_OPTION (pfile
, preprocessed
)
382 && (indented
|| !(dir
->flags
& IN_I
)))
389 /* In failed conditional groups, all non-conditional
390 directives are ignored. Before doing that, whether
391 skipping or not, we should lex angle-bracketed headers
392 correctly, and maybe output some diagnostics. */
393 pfile
->state
.angled_headers
= dir
->flags
& INCL
;
394 pfile
->state
.directive_wants_padding
= dir
->flags
& INCL
;
395 if (! CPP_OPTION (pfile
, preprocessed
))
396 directive_diagnostics (pfile
, dir
, indented
);
397 if (pfile
->state
.skipping
&& !(dir
->flags
& COND
))
401 else if (dname
->type
== CPP_EOF
)
402 ; /* CPP_EOF is the "null directive". */
405 /* An unknown directive. Don't complain about it in assembly
406 source: we don't know where the comments are, and # may
407 introduce assembler pseudo-ops. Don't complain about invalid
408 directives in skipped conditional groups (6.10 p4). */
409 if (CPP_OPTION (pfile
, lang
) == CLK_ASM
)
411 else if (!pfile
->state
.skipping
)
412 cpp_error (pfile
, DL_ERROR
, "invalid preprocessing directive #%s",
413 cpp_token_as_text (pfile
, dname
));
416 pfile
->directive
= dir
;
417 if (CPP_OPTION (pfile
, traditional
))
418 prepare_directive_trad (pfile
);
421 pfile
->directive
->handler (pfile
);
423 _cpp_backup_tokens (pfile
, 1);
425 end_directive (pfile
, skip
);
426 if (was_parsing_args
)
428 /* Restore state when within macro args. */
429 pfile
->state
.parsing_args
= 2;
430 pfile
->state
.prevent_expansion
= 1;
435 /* Directive handler wrapper used by the command line option
436 processor. BUF is \n terminated. */
438 run_directive (cpp_reader
*pfile
, int dir_no
, const char *buf
, size_t count
)
440 cpp_push_buffer (pfile
, (const uchar
*) buf
, count
,
441 /* from_stage3 */ true, 1);
442 /* Disgusting hack. */
443 if (dir_no
== T_PRAGMA
)
444 pfile
->buffer
->inc
= pfile
->buffer
->prev
->inc
;
445 start_directive (pfile
);
447 /* This is a short-term fix to prevent a leading '#' being
448 interpreted as a directive. */
449 _cpp_clean_line (pfile
);
451 pfile
->directive
= &dtable
[dir_no
];
452 if (CPP_OPTION (pfile
, traditional
))
453 prepare_directive_trad (pfile
);
454 pfile
->directive
->handler (pfile
);
455 end_directive (pfile
, 1);
456 if (dir_no
== T_PRAGMA
)
457 pfile
->buffer
->inc
= NULL
;
458 _cpp_pop_buffer (pfile
);
461 /* Checks for validity the macro name in #define, #undef, #ifdef and
462 #ifndef directives. */
463 static cpp_hashnode
*
464 lex_macro_node (cpp_reader
*pfile
)
466 const cpp_token
*token
= _cpp_lex_token (pfile
);
468 /* The token immediately after #define must be an identifier. That
469 identifier may not be "defined", per C99 6.10.8p4.
470 In C++, it may not be any of the "named operators" either,
471 per C++98 [lex.digraph], [lex.key].
472 Finally, the identifier may not have been poisoned. (In that case
473 the lexer has issued the error message for us.) */
475 if (token
->type
== CPP_NAME
)
477 cpp_hashnode
*node
= token
->val
.node
;
479 if (node
== pfile
->spec_nodes
.n_defined
)
480 cpp_error (pfile
, DL_ERROR
,
481 "\"defined\" cannot be used as a macro name");
482 else if (! (node
->flags
& NODE_POISONED
))
485 else if (token
->flags
& NAMED_OP
)
486 cpp_error (pfile
, DL_ERROR
,
487 "\"%s\" cannot be used as a macro name as it is an operator in C++",
488 NODE_NAME (token
->val
.node
));
489 else if (token
->type
== CPP_EOF
)
490 cpp_error (pfile
, DL_ERROR
, "no macro name given in #%s directive",
491 pfile
->directive
->name
);
493 cpp_error (pfile
, DL_ERROR
, "macro names must be identifiers");
498 /* Process a #define directive. Most work is done in cppmacro.c. */
500 do_define (cpp_reader
*pfile
)
502 cpp_hashnode
*node
= lex_macro_node (pfile
);
506 /* If we have been requested to expand comments into macros,
507 then re-enable saving of comments. */
508 pfile
->state
.save_comments
=
509 ! CPP_OPTION (pfile
, discard_comments_in_macro_exp
);
511 if (_cpp_create_definition (pfile
, node
))
512 if (pfile
->cb
.define
)
513 pfile
->cb
.define (pfile
, pfile
->directive_line
, node
);
517 /* Handle #undef. Mark the identifier NT_VOID in the hash table. */
519 do_undef (cpp_reader
*pfile
)
521 cpp_hashnode
*node
= lex_macro_node (pfile
);
523 /* 6.10.3.5 paragraph 2: [#undef] is ignored if the specified identifier
524 is not currently defined as a macro name. */
525 if (node
&& node
->type
== NT_MACRO
)
528 pfile
->cb
.undef (pfile
, pfile
->directive_line
, node
);
530 if (node
->flags
& NODE_WARN
)
531 cpp_error (pfile
, DL_WARNING
, "undefining \"%s\"", NODE_NAME (node
));
533 if (CPP_OPTION (pfile
, warn_unused_macros
))
534 _cpp_warn_if_unused_macro (pfile
, node
, NULL
);
536 _cpp_free_definition (node
);
541 /* Undefine a single macro/assertion/whatever. */
544 undefine_macros (cpp_reader
*pfile
, cpp_hashnode
*h
,
545 void *data_p ATTRIBUTE_UNUSED
)
554 (*pfile
->cb
.undef
) (pfile
, pfile
->directive_line
, h
);
556 if (CPP_OPTION (pfile
, warn_unused_macros
))
557 _cpp_warn_if_unused_macro (pfile
, h
, NULL
);
559 /* And fall through.... */
561 _cpp_free_definition (h
);
567 h
->flags
&= ~NODE_POISONED
;
571 /* Undefine all macros and assertions. */
574 cpp_undef_all (cpp_reader
*pfile
)
576 cpp_forall_identifiers (pfile
, undefine_macros
, NULL
);
580 /* Helper routine used by parse_include. Reinterpret the current line
581 as an h-char-sequence (< ... >); we are looking at the first token
582 after the <. Returns a malloced filename. */
584 glue_header_name (cpp_reader
*pfile
)
586 const cpp_token
*token
;
588 size_t len
, total_len
= 0, capacity
= 1024;
590 /* To avoid lexed tokens overwriting our glued name, we can only
591 allocate from the string pool once we've lexed everything. */
592 buffer
= xmalloc (capacity
);
595 token
= get_token_no_padding (pfile
);
597 if (token
->type
== CPP_GREATER
)
599 if (token
->type
== CPP_EOF
)
601 cpp_error (pfile
, DL_ERROR
, "missing terminating > character");
605 len
= cpp_token_len (token
) + 2; /* Leading space, terminating \0. */
606 if (total_len
+ len
> capacity
)
608 capacity
= (capacity
+ len
) * 2;
609 buffer
= xrealloc (buffer
, capacity
);
612 if (token
->flags
& PREV_WHITE
)
613 buffer
[total_len
++] = ' ';
615 total_len
= (cpp_spell_token (pfile
, token
, (uchar
*) &buffer
[total_len
])
619 buffer
[total_len
] = '\0';
623 /* Returns the file name of #include, #include_next, #import and
624 #pragma dependency. The string is malloced and the caller should
625 free it. Returns NULL on error. */
627 parse_include (cpp_reader
*pfile
, int *pangle_brackets
)
630 const cpp_token
*header
;
632 /* Allow macro expansion. */
633 header
= get_token_no_padding (pfile
);
634 if (header
->type
== CPP_STRING
|| header
->type
== CPP_HEADER_NAME
)
636 fname
= xmalloc (header
->val
.str
.len
- 1);
637 memcpy (fname
, header
->val
.str
.text
+ 1, header
->val
.str
.len
- 2);
638 fname
[header
->val
.str
.len
- 2] = '\0';
639 *pangle_brackets
= header
->type
== CPP_HEADER_NAME
;
641 else if (header
->type
== CPP_LESS
)
643 fname
= glue_header_name (pfile
);
644 *pangle_brackets
= 1;
648 const unsigned char *dir
;
650 if (pfile
->directive
== &dtable
[T_PRAGMA
])
651 dir
= U
"pragma dependency";
653 dir
= pfile
->directive
->name
;
654 cpp_error (pfile
, DL_ERROR
, "#%s expects \"FILENAME\" or <FILENAME>",
664 /* Handle #include, #include_next and #import. */
666 do_include_common (cpp_reader
*pfile
, enum include_type type
)
671 fname
= parse_include (pfile
, &angle_brackets
);
675 /* Prevent #include recursion. */
676 if (pfile
->line_maps
.depth
>= CPP_STACK_MAX
)
677 cpp_error (pfile
, DL_ERROR
, "#include nested too deeply");
680 /* Get out of macro context, if we are. */
681 skip_rest_of_line (pfile
);
683 if (pfile
->cb
.include
)
684 pfile
->cb
.include (pfile
, pfile
->directive_line
,
685 pfile
->directive
->name
, fname
, angle_brackets
);
687 _cpp_execute_include (pfile
, fname
, angle_brackets
, type
);
690 free ((void *) fname
);
694 do_include (cpp_reader
*pfile
)
696 do_include_common (pfile
, IT_INCLUDE
);
700 do_import (cpp_reader
*pfile
)
702 if (CPP_OPTION (pfile
, warn_import
))
704 CPP_OPTION (pfile
, warn_import
) = 0;
705 cpp_error (pfile
, DL_WARNING
,
706 "#import is obsolete, use an #ifndef wrapper in the header file");
709 do_include_common (pfile
, IT_IMPORT
);
713 do_include_next (cpp_reader
*pfile
)
715 enum include_type type
= IT_INCLUDE_NEXT
;
717 /* If this is the primary source file, warn and use the normal
719 if (! pfile
->buffer
->prev
)
721 cpp_error (pfile
, DL_WARNING
,
722 "#include_next in primary source file");
725 do_include_common (pfile
, type
);
728 /* Subroutine of do_linemarker. Read possible flags after file name.
729 LAST is the last flag seen; 0 if this is the first flag. Return the
730 flag if it is valid, 0 at the end of the directive. Otherwise
733 read_flag (cpp_reader
*pfile
, unsigned int last
)
735 const cpp_token
*token
= _cpp_lex_token (pfile
);
737 if (token
->type
== CPP_NUMBER
&& token
->val
.str
.len
== 1)
739 unsigned int flag
= token
->val
.str
.text
[0] - '0';
741 if (flag
> last
&& flag
<= 4
742 && (flag
!= 4 || last
== 3)
743 && (flag
!= 2 || last
== 0))
747 if (token
->type
!= CPP_EOF
)
748 cpp_error (pfile
, DL_ERROR
, "invalid flag \"%s\" in line directive",
749 cpp_token_as_text (pfile
, token
));
753 /* Subroutine of do_line and do_linemarker. Convert a number in STR,
754 of length LEN, to binary; store it in NUMP, and return 0 if the
755 number was well-formed, 1 if not. Temporary, hopefully. */
757 strtoul_for_line (const uchar
*str
, unsigned int len
, long unsigned int *nump
)
759 unsigned long reg
= 0;
773 /* Interpret #line command.
774 Note that the filename string (if any) is a true string constant
775 (escapes are interpreted), unlike in #line. */
777 do_line (cpp_reader
*pfile
)
779 const cpp_token
*token
;
780 const char *new_file
= pfile
->map
->to_file
;
781 unsigned long new_lineno
;
783 /* C99 raised the minimum limit on #line numbers. */
784 unsigned int cap
= CPP_OPTION (pfile
, c99
) ? 2147483647 : 32767;
786 /* #line commands expand macros. */
787 token
= cpp_get_token (pfile
);
788 if (token
->type
!= CPP_NUMBER
789 || strtoul_for_line (token
->val
.str
.text
, token
->val
.str
.len
,
792 cpp_error (pfile
, DL_ERROR
,
793 "\"%s\" after #line is not a positive integer",
794 cpp_token_as_text (pfile
, token
));
798 if (CPP_PEDANTIC (pfile
) && (new_lineno
== 0 || new_lineno
> cap
))
799 cpp_error (pfile
, DL_PEDWARN
, "line number out of range");
801 token
= cpp_get_token (pfile
);
802 if (token
->type
== CPP_STRING
)
804 cpp_string s
= { 0, 0 };
805 if (_cpp_interpret_string_notranslate (pfile
, &token
->val
.str
, &s
))
806 new_file
= (const char *)s
.text
;
809 else if (token
->type
!= CPP_EOF
)
811 cpp_error (pfile
, DL_ERROR
, "\"%s\" is not a valid filename",
812 cpp_token_as_text (pfile
, token
));
816 skip_rest_of_line (pfile
);
817 _cpp_do_file_change (pfile
, LC_RENAME
, new_file
, new_lineno
,
821 /* Interpret the # 44 "file" [flags] notation, which has slightly
822 different syntax and semantics from #line: Flags are allowed,
823 and we never complain about the line number being too big. */
825 do_linemarker (cpp_reader
*pfile
)
827 const cpp_token
*token
;
828 const char *new_file
= pfile
->map
->to_file
;
829 unsigned long new_lineno
;
830 unsigned int new_sysp
= pfile
->map
->sysp
;
831 enum lc_reason reason
= LC_RENAME
;
834 /* Back up so we can get the number again. Putting this in
835 _cpp_handle_directive risks two calls to _cpp_backup_tokens in
836 some circumstances, which can segfault. */
837 _cpp_backup_tokens (pfile
, 1);
839 /* #line commands expand macros. */
840 token
= cpp_get_token (pfile
);
841 if (token
->type
!= CPP_NUMBER
842 || strtoul_for_line (token
->val
.str
.text
, token
->val
.str
.len
,
845 cpp_error (pfile
, DL_ERROR
, "\"%s\" after # is not a positive integer",
846 cpp_token_as_text (pfile
, token
));
850 token
= cpp_get_token (pfile
);
851 if (token
->type
== CPP_STRING
)
853 cpp_string s
= { 0, 0 };
854 if (_cpp_interpret_string_notranslate (pfile
, &token
->val
.str
, &s
))
855 new_file
= (const char *)s
.text
;
858 flag
= read_flag (pfile
, 0);
862 /* Fake an include for cpp_included (). */
863 _cpp_fake_include (pfile
, new_file
);
864 flag
= read_flag (pfile
, flag
);
869 flag
= read_flag (pfile
, flag
);
874 flag
= read_flag (pfile
, flag
);
881 else if (token
->type
!= CPP_EOF
)
883 cpp_error (pfile
, DL_ERROR
, "\"%s\" is not a valid filename",
884 cpp_token_as_text (pfile
, token
));
888 skip_rest_of_line (pfile
);
889 _cpp_do_file_change (pfile
, reason
, new_file
, new_lineno
, new_sysp
);
892 /* Arrange the file_change callback. pfile->line has changed to
893 FILE_LINE of TO_FILE, for reason REASON. SYSP is 1 for a system
894 header, 2 for a system header that needs to be extern "C" protected,
895 and zero otherwise. */
897 _cpp_do_file_change (cpp_reader
*pfile
, enum lc_reason reason
,
898 const char *to_file
, unsigned int file_line
,
901 pfile
->map
= linemap_add (&pfile
->line_maps
, reason
, sysp
,
902 pfile
->line
, to_file
, file_line
);
904 if (pfile
->cb
.file_change
)
905 pfile
->cb
.file_change (pfile
, pfile
->map
);
908 /* Report a warning or error detected by the program we are
909 processing. Use the directive's tokens in the error message. */
911 do_diagnostic (cpp_reader
*pfile
, int code
, int print_dir
)
913 if (_cpp_begin_message (pfile
, code
,
914 pfile
->cur_token
[-1].line
,
915 pfile
->cur_token
[-1].col
))
918 fprintf (stderr
, "#%s ", pfile
->directive
->name
);
919 pfile
->state
.prevent_expansion
++;
920 cpp_output_line (pfile
, stderr
);
921 pfile
->state
.prevent_expansion
--;
926 do_error (cpp_reader
*pfile
)
928 do_diagnostic (pfile
, DL_ERROR
, 1);
932 do_warning (cpp_reader
*pfile
)
934 /* We want #warning diagnostics to be emitted in system headers too. */
935 do_diagnostic (pfile
, DL_WARNING_SYSHDR
, 1);
938 /* Report program identification. */
940 do_ident (cpp_reader
*pfile
)
942 const cpp_token
*str
= cpp_get_token (pfile
);
944 if (str
->type
!= CPP_STRING
)
945 cpp_error (pfile
, DL_ERROR
, "invalid #ident directive");
946 else if (pfile
->cb
.ident
)
947 pfile
->cb
.ident (pfile
, pfile
->directive_line
, &str
->val
.str
);
952 /* Lookup a PRAGMA name in a singly-linked CHAIN. Returns the
953 matching entry, or NULL if none is found. The returned entry could
954 be the start of a namespace chain, or a pragma. */
955 static struct pragma_entry
*
956 lookup_pragma_entry (struct pragma_entry
*chain
, const cpp_hashnode
*pragma
)
958 while (chain
&& chain
->pragma
!= pragma
)
964 /* Create and insert a pragma entry for NAME at the beginning of a
965 singly-linked CHAIN. If handler is NULL, it is a namespace,
966 otherwise it is a pragma and its handler. */
967 static struct pragma_entry
*
968 insert_pragma_entry (cpp_reader
*pfile
, struct pragma_entry
**chain
,
969 const cpp_hashnode
*pragma
, pragma_cb handler
)
971 struct pragma_entry
*new;
973 new = (struct pragma_entry
*)
974 _cpp_aligned_alloc (pfile
, sizeof (struct pragma_entry
));
975 new->pragma
= pragma
;
979 new->u
.handler
= handler
;
992 /* Register a pragma NAME in namespace SPACE. If SPACE is null, it
993 goes in the global namespace. HANDLER is the handler it will call,
994 which must be non-NULL. */
996 cpp_register_pragma (cpp_reader
*pfile
, const char *space
, const char *name
,
999 struct pragma_entry
**chain
= &pfile
->pragmas
;
1000 struct pragma_entry
*entry
;
1001 const cpp_hashnode
*node
;
1008 node
= cpp_lookup (pfile
, U space
, strlen (space
));
1009 entry
= lookup_pragma_entry (*chain
, node
);
1011 entry
= insert_pragma_entry (pfile
, chain
, node
, NULL
);
1012 else if (!entry
->is_nspace
)
1014 chain
= &entry
->u
.space
;
1017 /* Check for duplicates. */
1018 node
= cpp_lookup (pfile
, U name
, strlen (name
));
1019 entry
= lookup_pragma_entry (*chain
, node
);
1022 if (entry
->is_nspace
)
1024 cpp_error (pfile
, DL_ICE
,
1025 "registering \"%s\" as both a pragma and a pragma namespace",
1028 cpp_error (pfile
, DL_ICE
, "#pragma %s %s is already registered",
1031 cpp_error (pfile
, DL_ICE
, "#pragma %s is already registered", name
);
1034 insert_pragma_entry (pfile
, chain
, node
, handler
);
1037 /* Register the pragmas the preprocessor itself handles. */
1039 _cpp_init_internal_pragmas (cpp_reader
*pfile
)
1041 /* Pragmas in the global namespace. */
1042 cpp_register_pragma (pfile
, 0, "once", do_pragma_once
);
1044 /* New GCC-specific pragmas should be put in the GCC namespace. */
1045 cpp_register_pragma (pfile
, "GCC", "poison", do_pragma_poison
);
1046 cpp_register_pragma (pfile
, "GCC", "system_header", do_pragma_system_header
);
1047 cpp_register_pragma (pfile
, "GCC", "dependency", do_pragma_dependency
);
1050 /* Return the number of registered pragmas in PE. */
1053 count_registered_pragmas (struct pragma_entry
*pe
)
1056 for (; pe
!= NULL
; pe
= pe
->next
)
1059 ct
+= count_registered_pragmas (pe
->u
.space
);
1065 /* Save into SD the names of the registered pragmas referenced by PE,
1066 and return a pointer to the next free space in SD. */
1069 save_registered_pragmas (struct pragma_entry
*pe
, char **sd
)
1071 for (; pe
!= NULL
; pe
= pe
->next
)
1074 sd
= save_registered_pragmas (pe
->u
.space
, sd
);
1075 *sd
++ = xmemdup (HT_STR (&pe
->pragma
->ident
),
1076 HT_LEN (&pe
->pragma
->ident
),
1077 HT_LEN (&pe
->pragma
->ident
) + 1);
1082 /* Return a newly-allocated array which saves the names of the
1083 registered pragmas. */
1086 _cpp_save_pragma_names (cpp_reader
*pfile
)
1088 int ct
= count_registered_pragmas (pfile
->pragmas
);
1089 char **result
= xnewvec (char *, ct
);
1090 (void) save_registered_pragmas (pfile
->pragmas
, result
);
1094 /* Restore from SD the names of the registered pragmas referenced by PE,
1095 and return a pointer to the next unused name in SD. */
1098 restore_registered_pragmas (cpp_reader
*pfile
, struct pragma_entry
*pe
,
1101 for (; pe
!= NULL
; pe
= pe
->next
)
1104 sd
= restore_registered_pragmas (pfile
, pe
->u
.space
, sd
);
1105 pe
->pragma
= cpp_lookup (pfile
, U
*sd
, strlen (*sd
));
1112 /* Restore the names of the registered pragmas from SAVED. */
1115 _cpp_restore_pragma_names (cpp_reader
*pfile
, char **saved
)
1117 (void) restore_registered_pragmas (pfile
, pfile
->pragmas
, saved
);
1121 /* Pragmata handling. We handle some, and pass the rest on to the
1122 front end. C99 defines three pragmas and says that no macro
1123 expansion is to be performed on them; whether or not macro
1124 expansion happens for other pragmas is implementation defined.
1125 This implementation never macro-expands the text after #pragma. */
1127 do_pragma (cpp_reader
*pfile
)
1129 const struct pragma_entry
*p
= NULL
;
1130 const cpp_token
*token
;
1131 unsigned int count
= 1;
1133 pfile
->state
.prevent_expansion
++;
1135 token
= cpp_get_token (pfile
);
1136 if (token
->type
== CPP_NAME
)
1138 p
= lookup_pragma_entry (pfile
->pragmas
, token
->val
.node
);
1139 if (p
&& p
->is_nspace
)
1142 token
= cpp_get_token (pfile
);
1143 if (token
->type
== CPP_NAME
)
1144 p
= lookup_pragma_entry (p
->u
.space
, token
->val
.node
);
1150 /* FIXME. This is an awful kludge to get the front ends to update
1151 their notion of line number for diagnostic purposes. The line
1152 number should be passed to the handler and they should do it
1153 themselves. Stand-alone CPP must ignore us, otherwise it will
1154 prefix the directive with spaces, hence the 1. Ugh. */
1155 if (pfile
->cb
.line_change
)
1156 pfile
->cb
.line_change (pfile
, token
, 1);
1159 p
->u
.handler (pfile
);
1160 else if (pfile
->cb
.def_pragma
)
1162 _cpp_backup_tokens (pfile
, count
);
1163 pfile
->cb
.def_pragma (pfile
, pfile
->directive_line
);
1166 pfile
->state
.prevent_expansion
--;
1169 /* Handle #pragma once. */
1171 do_pragma_once (cpp_reader
*pfile
)
1173 if (CPP_OPTION (pfile
, warn_deprecated
))
1174 cpp_error (pfile
, DL_WARNING
, "#pragma once is obsolete");
1176 if (pfile
->buffer
->prev
== NULL
)
1177 cpp_error (pfile
, DL_WARNING
, "#pragma once in main file");
1179 _cpp_never_reread (pfile
->buffer
->inc
);
1184 /* Handle #pragma GCC poison, to poison one or more identifiers so
1185 that the lexer produces a hard error for each subsequent usage. */
1187 do_pragma_poison (cpp_reader
*pfile
)
1189 const cpp_token
*tok
;
1192 pfile
->state
.poisoned_ok
= 1;
1195 tok
= _cpp_lex_token (pfile
);
1196 if (tok
->type
== CPP_EOF
)
1198 if (tok
->type
!= CPP_NAME
)
1200 cpp_error (pfile
, DL_ERROR
, "invalid #pragma GCC poison directive");
1205 if (hp
->flags
& NODE_POISONED
)
1208 if (hp
->type
== NT_MACRO
)
1209 cpp_error (pfile
, DL_WARNING
, "poisoning existing macro \"%s\"",
1211 _cpp_free_definition (hp
);
1212 hp
->flags
|= NODE_POISONED
| NODE_DIAGNOSTIC
;
1214 pfile
->state
.poisoned_ok
= 0;
1217 /* Mark the current header as a system header. This will suppress
1218 some categories of warnings (notably those from -pedantic). It is
1219 intended for use in system libraries that cannot be implemented in
1220 conforming C, but cannot be certain that their headers appear in a
1221 system include directory. To prevent abuse, it is rejected in the
1222 primary source file. */
1224 do_pragma_system_header (cpp_reader
*pfile
)
1226 cpp_buffer
*buffer
= pfile
->buffer
;
1228 if (buffer
->prev
== 0)
1229 cpp_error (pfile
, DL_WARNING
,
1230 "#pragma system_header ignored outside include file");
1234 skip_rest_of_line (pfile
);
1235 cpp_make_system_header (pfile
, 1, 0);
1239 /* Check the modified date of the current include file against a specified
1240 file. Issue a diagnostic, if the specified file is newer. We use this to
1241 determine if a fixed header should be refixed. */
1243 do_pragma_dependency (cpp_reader
*pfile
)
1246 int angle_brackets
, ordering
;
1248 fname
= parse_include (pfile
, &angle_brackets
);
1252 ordering
= _cpp_compare_file_date (pfile
, fname
, angle_brackets
);
1254 cpp_error (pfile
, DL_WARNING
, "cannot find source file %s", fname
);
1255 else if (ordering
> 0)
1257 cpp_error (pfile
, DL_WARNING
, "current file is older than %s", fname
);
1258 if (cpp_get_token (pfile
)->type
!= CPP_EOF
)
1260 _cpp_backup_tokens (pfile
, 1);
1261 do_diagnostic (pfile
, DL_WARNING
, 0);
1265 free ((void *) fname
);
1268 /* Get a token but skip padding. */
1269 static const cpp_token
*
1270 get_token_no_padding (cpp_reader
*pfile
)
1274 const cpp_token
*result
= cpp_get_token (pfile
);
1275 if (result
->type
!= CPP_PADDING
)
1280 /* Check syntax is "(string-literal)". Returns the string on success,
1281 or NULL on failure. */
1282 static const cpp_token
*
1283 get__Pragma_string (cpp_reader
*pfile
)
1285 const cpp_token
*string
;
1287 if (get_token_no_padding (pfile
)->type
!= CPP_OPEN_PAREN
)
1290 string
= get_token_no_padding (pfile
);
1291 if (string
->type
!= CPP_STRING
&& string
->type
!= CPP_WSTRING
)
1294 if (get_token_no_padding (pfile
)->type
!= CPP_CLOSE_PAREN
)
1300 /* Destringize IN into a temporary buffer, by removing the first \ of
1301 \" and \\ sequences, and process the result as a #pragma directive. */
1303 destringize_and_run (cpp_reader
*pfile
, const cpp_string
*in
)
1305 const unsigned char *src
, *limit
;
1306 char *dest
, *result
;
1308 dest
= result
= alloca (in
->len
- 1);
1309 src
= in
->text
+ 1 + (in
->text
[0] == 'L');
1310 limit
= in
->text
+ in
->len
- 1;
1313 /* We know there is a character following the backslash. */
1314 if (*src
== '\\' && (src
[1] == '\\' || src
[1] == '"'))
1320 /* Ugh; an awful kludge. We are really not set up to be lexing
1321 tokens when in the middle of a macro expansion. Use a new
1322 context to force cpp_get_token to lex, and so skip_rest_of_line
1323 doesn't go beyond the end of the text. Also, remember the
1324 current lexing position so we can return to it later.
1326 Something like line-at-a-time lexing should remove the need for
1329 cpp_context
*saved_context
= pfile
->context
;
1330 cpp_token
*saved_cur_token
= pfile
->cur_token
;
1331 tokenrun
*saved_cur_run
= pfile
->cur_run
;
1333 pfile
->context
= xnew (cpp_context
);
1334 pfile
->context
->macro
= 0;
1335 pfile
->context
->prev
= 0;
1336 run_directive (pfile
, T_PRAGMA
, result
, dest
- result
);
1337 free (pfile
->context
);
1338 pfile
->context
= saved_context
;
1339 pfile
->cur_token
= saved_cur_token
;
1340 pfile
->cur_run
= saved_cur_run
;
1344 /* See above comment. For the moment, we'd like
1346 token1 _Pragma ("foo") token2
1356 Getting the line markers is a little tricky. */
1357 if (pfile
->cb
.line_change
)
1358 pfile
->cb
.line_change (pfile
, pfile
->cur_token
, false);
1361 /* Handle the _Pragma operator. */
1363 _cpp_do__Pragma (cpp_reader
*pfile
)
1365 const cpp_token
*string
= get__Pragma_string (pfile
);
1368 destringize_and_run (pfile
, &string
->val
.str
);
1370 cpp_error (pfile
, DL_ERROR
,
1371 "_Pragma takes a parenthesized string literal");
1374 /* Ignore #sccs on all systems. */
1376 do_sccs (cpp_reader
*pfile ATTRIBUTE_UNUSED
)
1380 /* Handle #ifdef. */
1382 do_ifdef (cpp_reader
*pfile
)
1386 if (! pfile
->state
.skipping
)
1388 const cpp_hashnode
*node
= lex_macro_node (pfile
);
1392 skip
= node
->type
!= NT_MACRO
;
1393 _cpp_mark_macro_used (node
);
1398 push_conditional (pfile
, skip
, T_IFDEF
, 0);
1401 /* Handle #ifndef. */
1403 do_ifndef (cpp_reader
*pfile
)
1406 const cpp_hashnode
*node
= 0;
1408 if (! pfile
->state
.skipping
)
1410 node
= lex_macro_node (pfile
);
1414 skip
= node
->type
== NT_MACRO
;
1415 _cpp_mark_macro_used (node
);
1420 push_conditional (pfile
, skip
, T_IFNDEF
, node
);
1423 /* _cpp_parse_expr puts a macro in a "#if !defined ()" expression in
1424 pfile->mi_ind_cmacro so we can handle multiple-include
1425 optimizations. If macro expansion occurs in the expression, we
1426 cannot treat it as a controlling conditional, since the expansion
1427 could change in the future. That is handled by cpp_get_token. */
1429 do_if (cpp_reader
*pfile
)
1433 if (! pfile
->state
.skipping
)
1434 skip
= _cpp_parse_expr (pfile
) == false;
1436 push_conditional (pfile
, skip
, T_IF
, pfile
->mi_ind_cmacro
);
1439 /* Flip skipping state if appropriate and continue without changing
1440 if_stack; this is so that the error message for missing #endif's
1441 etc. will point to the original #if. */
1443 do_else (cpp_reader
*pfile
)
1445 cpp_buffer
*buffer
= pfile
->buffer
;
1446 struct if_stack
*ifs
= buffer
->if_stack
;
1449 cpp_error (pfile
, DL_ERROR
, "#else without #if");
1452 if (ifs
->type
== T_ELSE
)
1454 cpp_error (pfile
, DL_ERROR
, "#else after #else");
1455 cpp_error_with_line (pfile
, DL_ERROR
, ifs
->line
, 0,
1456 "the conditional began here");
1460 /* Skip any future (erroneous) #elses or #elifs. */
1461 pfile
->state
.skipping
= ifs
->skip_elses
;
1462 ifs
->skip_elses
= true;
1464 /* Invalidate any controlling macro. */
1467 /* Only check EOL if was not originally skipping. */
1468 if (!ifs
->was_skipping
&& CPP_OPTION (pfile
, warn_endif_labels
))
1473 /* Handle a #elif directive by not changing if_stack either. See the
1474 comment above do_else. */
1476 do_elif (cpp_reader
*pfile
)
1478 cpp_buffer
*buffer
= pfile
->buffer
;
1479 struct if_stack
*ifs
= buffer
->if_stack
;
1482 cpp_error (pfile
, DL_ERROR
, "#elif without #if");
1485 if (ifs
->type
== T_ELSE
)
1487 cpp_error (pfile
, DL_ERROR
, "#elif after #else");
1488 cpp_error_with_line (pfile
, DL_ERROR
, ifs
->line
, 0,
1489 "the conditional began here");
1493 /* Only evaluate this if we aren't skipping elses. During
1494 evaluation, set skipping to false to get lexer warnings. */
1495 if (ifs
->skip_elses
)
1496 pfile
->state
.skipping
= 1;
1499 pfile
->state
.skipping
= 0;
1500 pfile
->state
.skipping
= ! _cpp_parse_expr (pfile
);
1501 ifs
->skip_elses
= ! pfile
->state
.skipping
;
1504 /* Invalidate any controlling macro. */
1509 /* #endif pops the if stack and resets pfile->state.skipping. */
1511 do_endif (cpp_reader
*pfile
)
1513 cpp_buffer
*buffer
= pfile
->buffer
;
1514 struct if_stack
*ifs
= buffer
->if_stack
;
1517 cpp_error (pfile
, DL_ERROR
, "#endif without #if");
1520 /* Only check EOL if was not originally skipping. */
1521 if (!ifs
->was_skipping
&& CPP_OPTION (pfile
, warn_endif_labels
))
1524 /* If potential control macro, we go back outside again. */
1525 if (ifs
->next
== 0 && ifs
->mi_cmacro
)
1527 pfile
->mi_valid
= true;
1528 pfile
->mi_cmacro
= ifs
->mi_cmacro
;
1531 buffer
->if_stack
= ifs
->next
;
1532 pfile
->state
.skipping
= ifs
->was_skipping
;
1533 obstack_free (&pfile
->buffer_ob
, ifs
);
1537 /* Push an if_stack entry for a preprocessor conditional, and set
1538 pfile->state.skipping to SKIP. If TYPE indicates the conditional
1539 is #if or #ifndef, CMACRO is a potentially controlling macro, and
1540 we need to check here that we are at the top of the file. */
1542 push_conditional (cpp_reader
*pfile
, int skip
, int type
,
1543 const cpp_hashnode
*cmacro
)
1545 struct if_stack
*ifs
;
1546 cpp_buffer
*buffer
= pfile
->buffer
;
1548 ifs
= xobnew (&pfile
->buffer_ob
, struct if_stack
);
1549 ifs
->line
= pfile
->directive_line
;
1550 ifs
->next
= buffer
->if_stack
;
1551 ifs
->skip_elses
= pfile
->state
.skipping
|| !skip
;
1552 ifs
->was_skipping
= pfile
->state
.skipping
;
1554 /* This condition is effectively a test for top-of-file. */
1555 if (pfile
->mi_valid
&& pfile
->mi_cmacro
== 0)
1556 ifs
->mi_cmacro
= cmacro
;
1560 pfile
->state
.skipping
= skip
;
1561 buffer
->if_stack
= ifs
;
1564 /* Read the tokens of the answer into the macro pool, in a directive
1565 of type TYPE. Only commit the memory if we intend it as permanent
1566 storage, i.e. the #assert case. Returns 0 on success, and sets
1567 ANSWERP to point to the answer. */
1569 parse_answer (cpp_reader
*pfile
, struct answer
**answerp
, int type
)
1571 const cpp_token
*paren
;
1572 struct answer
*answer
;
1573 unsigned int acount
;
1575 /* In a conditional, it is legal to not have an open paren. We
1576 should save the following token in this case. */
1577 paren
= cpp_get_token (pfile
);
1579 /* If not a paren, see if we're OK. */
1580 if (paren
->type
!= CPP_OPEN_PAREN
)
1582 /* In a conditional no answer is a test for any answer. It
1583 could be followed by any token. */
1586 _cpp_backup_tokens (pfile
, 1);
1590 /* #unassert with no answer is valid - it removes all answers. */
1591 if (type
== T_UNASSERT
&& paren
->type
== CPP_EOF
)
1594 cpp_error (pfile
, DL_ERROR
, "missing '(' after predicate");
1598 for (acount
= 0;; acount
++)
1601 const cpp_token
*token
= cpp_get_token (pfile
);
1604 if (token
->type
== CPP_CLOSE_PAREN
)
1607 if (token
->type
== CPP_EOF
)
1609 cpp_error (pfile
, DL_ERROR
, "missing ')' to complete answer");
1613 /* struct answer includes the space for one token. */
1614 room_needed
= (sizeof (struct answer
) + acount
* sizeof (cpp_token
));
1616 if (BUFF_ROOM (pfile
->a_buff
) < room_needed
)
1617 _cpp_extend_buff (pfile
, &pfile
->a_buff
, sizeof (struct answer
));
1619 dest
= &((struct answer
*) BUFF_FRONT (pfile
->a_buff
))->first
[acount
];
1622 /* Drop whitespace at start, for answer equivalence purposes. */
1624 dest
->flags
&= ~PREV_WHITE
;
1629 cpp_error (pfile
, DL_ERROR
, "predicate's answer is empty");
1633 answer
= (struct answer
*) BUFF_FRONT (pfile
->a_buff
);
1634 answer
->count
= acount
;
1635 answer
->next
= NULL
;
1641 /* Parses an assertion directive of type TYPE, returning a pointer to
1642 the hash node of the predicate, or 0 on error. If an answer was
1643 supplied, it is placed in ANSWERP, otherwise it is set to 0. */
1644 static cpp_hashnode
*
1645 parse_assertion (cpp_reader
*pfile
, struct answer
**answerp
, int type
)
1647 cpp_hashnode
*result
= 0;
1648 const cpp_token
*predicate
;
1650 /* We don't expand predicates or answers. */
1651 pfile
->state
.prevent_expansion
++;
1654 predicate
= cpp_get_token (pfile
);
1655 if (predicate
->type
== CPP_EOF
)
1656 cpp_error (pfile
, DL_ERROR
, "assertion without predicate");
1657 else if (predicate
->type
!= CPP_NAME
)
1658 cpp_error (pfile
, DL_ERROR
, "predicate must be an identifier");
1659 else if (parse_answer (pfile
, answerp
, type
) == 0)
1661 unsigned int len
= NODE_LEN (predicate
->val
.node
);
1662 unsigned char *sym
= alloca (len
+ 1);
1664 /* Prefix '#' to get it out of macro namespace. */
1666 memcpy (sym
+ 1, NODE_NAME (predicate
->val
.node
), len
);
1667 result
= cpp_lookup (pfile
, sym
, len
+ 1);
1670 pfile
->state
.prevent_expansion
--;
1674 /* Returns a pointer to the pointer to CANDIDATE in the answer chain,
1675 or a pointer to NULL if the answer is not in the chain. */
1676 static struct answer
**
1677 find_answer (cpp_hashnode
*node
, const struct answer
*candidate
)
1680 struct answer
**result
;
1682 for (result
= &node
->value
.answers
; *result
; result
= &(*result
)->next
)
1684 struct answer
*answer
= *result
;
1686 if (answer
->count
== candidate
->count
)
1688 for (i
= 0; i
< answer
->count
; i
++)
1689 if (! _cpp_equiv_tokens (&answer
->first
[i
], &candidate
->first
[i
]))
1692 if (i
== answer
->count
)
1700 /* Test an assertion within a preprocessor conditional. Returns
1701 nonzero on failure, zero on success. On success, the result of
1702 the test is written into VALUE, otherwise the value 0. */
1704 _cpp_test_assertion (cpp_reader
*pfile
, unsigned int *value
)
1706 struct answer
*answer
;
1709 node
= parse_assertion (pfile
, &answer
, T_IF
);
1711 /* For recovery, an erroneous assertion expression is handled as a
1712 failing assertion. */
1716 *value
= (node
->type
== NT_ASSERTION
&&
1717 (answer
== 0 || *find_answer (node
, answer
) != 0));
1718 else if (pfile
->cur_token
[-1].type
== CPP_EOF
)
1719 _cpp_backup_tokens (pfile
, 1);
1721 /* We don't commit the memory for the answer - it's temporary only. */
1725 /* Handle #assert. */
1727 do_assert (cpp_reader
*pfile
)
1729 struct answer
*new_answer
;
1732 node
= parse_assertion (pfile
, &new_answer
, T_ASSERT
);
1735 /* Place the new answer in the answer list. First check there
1736 is not a duplicate. */
1737 new_answer
->next
= 0;
1738 if (node
->type
== NT_ASSERTION
)
1740 if (*find_answer (node
, new_answer
))
1742 cpp_error (pfile
, DL_WARNING
, "\"%s\" re-asserted",
1743 NODE_NAME (node
) + 1);
1746 new_answer
->next
= node
->value
.answers
;
1749 node
->type
= NT_ASSERTION
;
1750 node
->value
.answers
= new_answer
;
1751 BUFF_FRONT (pfile
->a_buff
) += (sizeof (struct answer
)
1752 + (new_answer
->count
- 1)
1753 * sizeof (cpp_token
));
1758 /* Handle #unassert. */
1760 do_unassert (cpp_reader
*pfile
)
1763 struct answer
*answer
;
1765 node
= parse_assertion (pfile
, &answer
, T_UNASSERT
);
1766 /* It isn't an error to #unassert something that isn't asserted. */
1767 if (node
&& node
->type
== NT_ASSERTION
)
1771 struct answer
**p
= find_answer (node
, answer
), *temp
;
1773 /* Remove the answer from the list. */
1778 /* Did we free the last answer? */
1779 if (node
->value
.answers
== 0)
1780 node
->type
= NT_VOID
;
1785 _cpp_free_definition (node
);
1788 /* We don't commit the memory for the answer - it's temporary only. */
1791 /* These are for -D, -U, -A. */
1793 /* Process the string STR as if it appeared as the body of a #define.
1794 If STR is just an identifier, define it with value 1.
1795 If STR has anything after the identifier, then it should
1796 be identifier=definition. */
1798 cpp_define (cpp_reader
*pfile
, const char *str
)
1803 /* Copy the entire option so we can modify it.
1804 Change the first "=" in the string to a space. If there is none,
1805 tack " 1" on the end. */
1807 count
= strlen (str
);
1808 buf
= alloca (count
+ 3);
1809 memcpy (buf
, str
, count
);
1811 p
= strchr (str
, '=');
1821 run_directive (pfile
, T_DEFINE
, buf
, count
);
1824 /* Slight variant of the above for use by initialize_builtins. */
1826 _cpp_define_builtin (cpp_reader
*pfile
, const char *str
)
1828 size_t len
= strlen (str
);
1829 char *buf
= alloca (len
+ 1);
1830 memcpy (buf
, str
, len
);
1832 run_directive (pfile
, T_DEFINE
, buf
, len
);
1835 /* Process MACRO as if it appeared as the body of an #undef. */
1837 cpp_undef (cpp_reader
*pfile
, const char *macro
)
1839 size_t len
= strlen (macro
);
1840 char *buf
= alloca (len
+ 1);
1841 memcpy (buf
, macro
, len
);
1843 run_directive (pfile
, T_UNDEF
, buf
, len
);
1846 /* Process the string STR as if it appeared as the body of a #assert. */
1848 cpp_assert (cpp_reader
*pfile
, const char *str
)
1850 handle_assertion (pfile
, str
, T_ASSERT
);
1853 /* Process STR as if it appeared as the body of an #unassert. */
1855 cpp_unassert (cpp_reader
*pfile
, const char *str
)
1857 handle_assertion (pfile
, str
, T_UNASSERT
);
1860 /* Common code for cpp_assert (-A) and cpp_unassert (-A-). */
1862 handle_assertion (cpp_reader
*pfile
, const char *str
, int type
)
1864 size_t count
= strlen (str
);
1865 const char *p
= strchr (str
, '=');
1867 /* Copy the entire option so we can modify it. Change the first
1868 "=" in the string to a '(', and tack a ')' on the end. */
1869 char *buf
= alloca (count
+ 2);
1871 memcpy (buf
, str
, count
);
1880 run_directive (pfile
, type
, str
, count
);
1883 /* The number of errors for a given reader. */
1885 cpp_errors (cpp_reader
*pfile
)
1887 return pfile
->errors
;
1890 /* The options structure. */
1892 cpp_get_options (cpp_reader
*pfile
)
1894 return &pfile
->opts
;
1897 /* The callbacks structure. */
1899 cpp_get_callbacks (cpp_reader
*pfile
)
1904 /* The line map set. */
1905 const struct line_maps
*
1906 cpp_get_line_maps (cpp_reader
*pfile
)
1908 return &pfile
->line_maps
;
1911 /* Copy the given callbacks structure to our own. */
1913 cpp_set_callbacks (cpp_reader
*pfile
, cpp_callbacks
*cb
)
1918 /* Push a new buffer on the buffer stack. Returns the new buffer; it
1919 doesn't fail. It does not generate a file change call back; that
1920 is the responsibility of the caller. */
1922 cpp_push_buffer (cpp_reader
*pfile
, const uchar
*buffer
, size_t len
,
1923 int from_stage3
, int return_at_eof
)
1925 cpp_buffer
*new = xobnew (&pfile
->buffer_ob
, cpp_buffer
);
1927 /* Clears, amongst other things, if_stack and mi_cmacro. */
1928 memset (new, 0, sizeof (cpp_buffer
));
1930 new->next_line
= new->buf
= buffer
;
1931 new->rlimit
= buffer
+ len
;
1932 new->from_stage3
= from_stage3
;
1933 new->prev
= pfile
->buffer
;
1934 new->return_at_eof
= return_at_eof
;
1935 new->need_line
= true;
1937 pfile
->buffer
= new;
1941 /* Pops a single buffer, with a file change call-back if appropriate.
1942 Then pushes the next -include file, if any remain. */
1944 _cpp_pop_buffer (cpp_reader
*pfile
)
1946 cpp_buffer
*buffer
= pfile
->buffer
;
1947 struct include_file
*inc
= buffer
->inc
;
1948 struct if_stack
*ifs
;
1950 /* Walk back up the conditional stack till we reach its level at
1951 entry to this file, issuing error messages. */
1952 for (ifs
= buffer
->if_stack
; ifs
; ifs
= ifs
->next
)
1953 cpp_error_with_line (pfile
, DL_ERROR
, ifs
->line
, 0,
1954 "unterminated #%s", dtable
[ifs
->type
].name
);
1956 /* In case of a missing #endif. */
1957 pfile
->state
.skipping
= 0;
1959 /* _cpp_do_file_change expects pfile->buffer to be the new one. */
1960 pfile
->buffer
= buffer
->prev
;
1962 free (buffer
->notes
);
1964 /* Free the buffer object now; we may want to push a new buffer
1965 in _cpp_push_next_include_file. */
1966 obstack_free (&pfile
->buffer_ob
, buffer
);
1970 _cpp_pop_file_buffer (pfile
, inc
);
1972 /* Don't generate a callback for popping the main file. */
1974 _cpp_do_file_change (pfile
, LC_LEAVE
, 0, 0, 0);
1978 /* Enter all recognized directives in the hash table. */
1980 _cpp_init_directives (cpp_reader
*pfile
)
1985 for (i
= 0; i
< (unsigned int) N_DIRECTIVES
; i
++)
1987 node
= cpp_lookup (pfile
, dtable
[i
].name
, dtable
[i
].length
);
1988 node
->is_directive
= 1;
1989 node
->directive_index
= i
;