]> git.ipfire.org Git - thirdparty/gcc.git/blame - libcpp/internal.h
libstdc++: Pretty printers for _Bit_reference and _Bit_iterator
[thirdparty/gcc.git] / libcpp / internal.h
CommitLineData
88ae23e7 1/* Part of CPP library.
8d9254fc 2 Copyright (C) 1997-2020 Free Software Foundation, Inc.
4283012f
JL
3
4This program is free software; you can redistribute it and/or modify it
5under the terms of the GNU General Public License as published by the
748086b7 6Free Software Foundation; either version 3, or (at your option) any
4283012f
JL
7later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
748086b7
JJ
15along with this program; see the file COPYING3. If not see
16<http://www.gnu.org/licenses/>. */
4283012f 17
88ae23e7 18/* This header defines all the internal data structures and functions
4f4e53dd
PB
19 that need to be visible across files. It should not be used outside
20 cpplib. */
88ae23e7 21
4f4e53dd
PB
22#ifndef LIBCPP_INTERNAL_H
23#define LIBCPP_INTERNAL_H
bb52fa7f 24
4f4e53dd 25#include "symtab.h"
abcd1775 26#include "cpplib.h"
2a967f3d 27
968e08d6 28#if HAVE_ICONV
e6cc3a24
ZW
29#include <iconv.h>
30#else
31#define HAVE_ICONV 0
32typedef int iconv_t; /* dummy */
33#endif
34
4851089f
ILT
35#ifdef __cplusplus
36extern "C" {
37#endif
38
2a967f3d 39struct directive; /* Deliberately incomplete. */
af0d16cd 40struct pending_option;
87ed109f 41struct op;
a8016863 42struct _cpp_strbuf;
6b88314c
ZW
43
44typedef bool (*convert_f) (iconv_t, const unsigned char *, size_t,
a8016863 45 struct _cpp_strbuf *);
6b88314c
ZW
46struct cset_converter
47{
48 convert_f func;
49 iconv_t cd;
b6baa67d 50 int width;
6b88314c 51};
8121d2c3 52
4268e8bb
NB
53#define BITS_PER_CPPCHAR_T (CHAR_BIT * sizeof (cppchar_t))
54
93c80368
NB
55/* Test if a sign is valid within a preprocessing number. */
56#define VALID_SIGN(c, prevc) \
57 (((c) == '+' || (c) == '-') && \
58 ((prevc) == 'e' || (prevc) == 'E' \
bdb05a7b
NB
59 || (((prevc) == 'p' || (prevc) == 'P') \
60 && CPP_OPTION (pfile, extended_numbers))))
93c80368 61
7057e645
ESR
62#define DIGIT_SEP(c) ((c) == '\'' && CPP_OPTION (pfile, digit_separators))
63
8121d2c3
NB
64#define CPP_OPTION(PFILE, OPTION) ((PFILE)->opts.OPTION)
65#define CPP_BUFFER(PFILE) ((PFILE)->buffer)
26aea073 66#define CPP_BUF_COLUMN(BUF, CUR) ((CUR) - (BUF)->line_base)
8121d2c3
NB
67#define CPP_BUF_COL(BUF) CPP_BUF_COLUMN(BUF, (BUF)->cur)
68
12f9df4e 69#define CPP_INCREMENT_LINE(PFILE, COLS_HINT) do { \
99b1c316 70 const class line_maps *line_table = PFILE->line_table; \
0e50b624 71 const struct line_map_ordinary *map = \
46427374 72 LINEMAPS_LAST_ORDINARY_MAP (line_table); \
1bb64668 73 linenum_type line = SOURCE_LINE (map, line_table->highest_line); \
500bee0a 74 linemap_line_start (PFILE->line_table, line + 1, COLS_HINT); \
12f9df4e
PB
75 } while (0)
76
c70f6ed3
NB
77/* Host alignment handling. */
78struct dummy
79{
80 char c;
81 union
82 {
83 double d;
84 int *p;
85 } u;
86};
87
88#define DEFAULT_ALIGNMENT offsetof (struct dummy, u)
89#define CPP_ALIGN2(size, align) (((size) + ((align) - 1)) & ~((align) - 1))
90#define CPP_ALIGN(size) CPP_ALIGN2 (size, DEFAULT_ALIGNMENT)
91
3f6677f4
NS
92#define _cpp_mark_macro_used(NODE) \
93 (cpp_user_macro_p (NODE) ? (NODE)->value.macro->used = 1 : 0)
a69cbaac 94
644eddaa 95/* A generic memory buffer, and operations on it. */
b8af0ca5
NB
96typedef struct _cpp_buff _cpp_buff;
97struct _cpp_buff
98{
99 struct _cpp_buff *next;
ece54d54 100 unsigned char *base, *cur, *limit;
b8af0ca5
NB
101};
102
6cf87ca4
ZW
103extern _cpp_buff *_cpp_get_buff (cpp_reader *, size_t);
104extern void _cpp_release_buff (cpp_reader *, _cpp_buff *);
105extern void _cpp_extend_buff (cpp_reader *, _cpp_buff **, size_t);
106extern _cpp_buff *_cpp_append_extend_buff (cpp_reader *, _cpp_buff *, size_t);
107extern void _cpp_free_buff (_cpp_buff *);
108extern unsigned char *_cpp_aligned_alloc (cpp_reader *, size_t);
109extern unsigned char *_cpp_unaligned_alloc (cpp_reader *, size_t);
644eddaa 110
8c3b2693 111#define BUFF_ROOM(BUFF) (size_t) ((BUFF)->limit - (BUFF)->cur)
ece54d54
NB
112#define BUFF_FRONT(BUFF) ((BUFF)->cur)
113#define BUFF_LIMIT(BUFF) ((BUFF)->limit)
b8af0ca5 114
ba133c96 115/* #include types. */
a0be978a
NS
116enum include_type
117 {
118 /* Directive-based including mechanisms. */
119 IT_INCLUDE, /* #include */
120 IT_INCLUDE_NEXT, /* #include_next */
121 IT_IMPORT, /* #import */
122
123 /* Non-directive including mechanisms. */
124 IT_CMDLINE, /* -include */
125 IT_DEFAULT, /* forced header */
6bf2ff0d 126 IT_MAIN, /* main, start on line 1 */
d1c566d7
NS
127 IT_PRE_MAIN, /* main, but there will be a preamble before line
128 1 */
b0d11f1e
NS
129
130 IT_DIRECTIVE_HWM = IT_IMPORT + 1, /* Directives below this. */
68710ac7 131 IT_HEADER_HWM = IT_DEFAULT + 1 /* Header files below this. */
a0be978a 132 };
ba133c96 133
4ed5bcfb 134union utoken
8121d2c3 135{
4ed5bcfb
NB
136 const cpp_token *token;
137 const cpp_token **ptoken;
8121d2c3
NB
138};
139
5d8ebbd8 140/* A "run" of tokens; part of a chain of runs. */
5fddcffc
NB
141typedef struct tokenrun tokenrun;
142struct tokenrun
143{
bdcbe496 144 tokenrun *next, *prev;
5fddcffc
NB
145 cpp_token *base, *limit;
146};
147
82eda77e 148/* Accessor macros for struct cpp_context. */
79ba5e3b
NB
149#define FIRST(c) ((c)->u.iso.first)
150#define LAST(c) ((c)->u.iso.last)
151#define CUR(c) ((c)->u.trad.cur)
152#define RLIMIT(c) ((c)->u.trad.rlimit)
82eda77e 153
92582b75
TT
154/* This describes some additional data that is added to the macro
155 token context of type cpp_context, when -ftrack-macro-expansion is
156 on. */
157typedef struct
158{
159 /* The node of the macro we are referring to. */
160 cpp_hashnode *macro_node;
161 /* This buffer contains an array of virtual locations. The virtual
162 location at index 0 is the virtual location of the token at index
163 0 in the current instance of cpp_context; similarly for all the
164 other virtual locations. */
620e594b 165 location_t *virt_locs;
92582b75
TT
166 /* This is a pointer to the current virtual location. This is used
167 to iterate over the virtual locations while we iterate over the
168 tokens they belong to. */
620e594b 169 location_t *cur_virt_loc;
92582b75
TT
170} macro_context;
171
172/* The kind of tokens carried by a cpp_context. */
173enum context_tokens_kind {
174 /* This is the value of cpp_context::tokens_kind if u.iso.first
175 contains an instance of cpp_token **. */
176 TOKENS_KIND_INDIRECT,
177 /* This is the value of cpp_context::tokens_kind if u.iso.first
178 contains an instance of cpp_token *. */
179 TOKENS_KIND_DIRECT,
180 /* This is the value of cpp_context::tokens_kind when the token
181 context contains tokens resulting from macro expansion. In that
182 case struct cpp_context::macro points to an instance of struct
183 macro_context. This is used only when the
184 -ftrack-macro-expansion flag is on. */
185 TOKENS_KIND_EXTENDED
186};
187
8121d2c3
NB
188typedef struct cpp_context cpp_context;
189struct cpp_context
190{
191 /* Doubly-linked list. */
192 cpp_context *next, *prev;
193
82eda77e
NB
194 union
195 {
196 /* For ISO macro expansion. Contexts other than the base context
197 are contiguous tokens. e.g. macro expansions, expanded
198 argument tokens. */
199 struct
200 {
201 union utoken first;
202 union utoken last;
203 } iso;
204
205 /* For traditional macro expansion. */
206 struct
207 {
c812785a
RS
208 const unsigned char *cur;
209 const unsigned char *rlimit;
82eda77e
NB
210 } trad;
211 } u;
8121d2c3 212
1e013d2e 213 /* If non-NULL, a buffer used for storage related to this context.
c9e7a609 214 When the context is popped, the buffer is released. */
1e013d2e
NB
215 _cpp_buff *buff;
216
92582b75
TT
217 /* If tokens_kind is TOKEN_KIND_EXTENDED, then (as we thus are in a
218 macro context) this is a pointer to an instance of macro_context.
219 Otherwise if tokens_kind is *not* TOKEN_KIND_EXTENDED, then, if
220 we are in a macro context, this is a pointer to an instance of
221 cpp_hashnode, representing the name of the macro this context is
222 for. If we are not in a macro context, then this is just NULL.
223 Note that when tokens_kind is TOKEN_KIND_EXTENDED, the memory
224 used by the instance of macro_context pointed to by this member
225 is de-allocated upon de-allocation of the instance of struct
226 cpp_context. */
227 union
228 {
229 macro_context *mc;
230 cpp_hashnode *macro;
231 } c;
4ed5bcfb 232
92582b75
TT
233 /* This determines the type of tokens held by this context. */
234 enum context_tokens_kind tokens_kind;
8121d2c3
NB
235};
236
237struct lexer_state
238{
056f95ec
NS
239 /* 1 if we're handling a directive. 2 if it's an include-like
240 directive. */
8121d2c3
NB
241 unsigned char in_directive;
242
a8d0ddaf
ZW
243 /* Nonzero if in a directive that will handle padding tokens itself.
244 #include needs this to avoid problems with computed include and
245 spacing between tokens. */
246 unsigned char directive_wants_padding;
247
cef0d199
NB
248 /* True if we are skipping a failed conditional group. */
249 unsigned char skipping;
250
8121d2c3
NB
251 /* Nonzero if in a directive that takes angle-bracketed headers. */
252 unsigned char angled_headers;
253
d97371e0
NB
254 /* Nonzero if in a #if or #elif directive. */
255 unsigned char in_expression;
256
8121d2c3
NB
257 /* Nonzero to save comments. Turned off if discard_comments, and in
258 all directives apart from #define. */
259 unsigned char save_comments;
260
fb771b9d 261 /* Nonzero if lexing __VA_ARGS__ and __VA_OPT__ are valid. */
8121d2c3
NB
262 unsigned char va_args_ok;
263
264 /* Nonzero if lexing poisoned identifiers is valid. */
265 unsigned char poisoned_ok;
266
267 /* Nonzero to prevent macro expansion. */
df383483 268 unsigned char prevent_expansion;
8121d2c3
NB
269
270 /* Nonzero when parsing arguments to a function-like macro. */
271 unsigned char parsing_args;
87ed109f 272
c6e83800
ZW
273 /* Nonzero if prevent_expansion is true only because output is
274 being discarded. */
275 unsigned char discarding_output;
276
87ed109f
NB
277 /* Nonzero to skip evaluating part of an expression. */
278 unsigned int skip_eval;
bc4071dd 279
7cf3f604 280 /* Nonzero when tokenizing a deferred pragma. */
bc4071dd
RH
281 unsigned char in_deferred_pragma;
282
c9c3d5f2
NS
283 /* Count to token that is a header-name. */
284 unsigned char directive_file_token;
285
bc4071dd
RH
286 /* Nonzero if the deferred pragma being handled allows macro expansion. */
287 unsigned char pragma_allow_expansion;
8121d2c3
NB
288};
289
290/* Special nodes - identifiers with predefined significance. */
291struct spec_nodes
292{
8121d2c3 293 cpp_hashnode *n_defined; /* defined operator */
037313ae
ZW
294 cpp_hashnode *n_true; /* C++ keyword true */
295 cpp_hashnode *n_false; /* C++ keyword false */
8121d2c3 296 cpp_hashnode *n__VA_ARGS__; /* C99 vararg macros */
fb771b9d 297 cpp_hashnode *n__VA_OPT__; /* C++ vararg macros */
c9c3d5f2
NS
298
299 enum {M_EXPORT, M_MODULE, M_IMPORT, M__IMPORT, M_HWM};
300
301 /* C++20 modules, only set when module_directives is in effect.
302 incoming variants [0], outgoing ones [1] */
303 cpp_hashnode *n_modules[M_HWM][2];
8121d2c3
NB
304};
305
26aea073
NB
306typedef struct _cpp_line_note _cpp_line_note;
307struct _cpp_line_note
308{
309 /* Location in the clean line the note refers to. */
c812785a 310 const unsigned char *pos;
26aea073 311
41c32c98
NB
312 /* Type of note. The 9 'from' trigraph characters represent those
313 trigraphs, '\\' an escaped newline, ' ' an escaped newline with
00a81b8b
JM
314 intervening space, 0 represents a note that has already been handled,
315 and anything else is invalid. */
41c32c98 316 unsigned int type;
26aea073
NB
317};
318
5d8ebbd8 319/* Represents the contents of a file cpplib has read in. */
27e2564a
NB
320struct cpp_buffer
321{
c812785a
RS
322 const unsigned char *cur; /* Current location. */
323 const unsigned char *line_base; /* Start of current physical line. */
324 const unsigned char *next_line; /* Start of to-be-cleaned logical line. */
cf551fba 325
c812785a
RS
326 const unsigned char *buf; /* Entire character buffer. */
327 const unsigned char *rlimit; /* Writable byte at end of file. */
28937f11
JJ
328 const unsigned char *to_free; /* Pointer that should be freed when
329 popping the buffer. */
26aea073 330
c812785a
RS
331 _cpp_line_note *notes; /* Array of notes. */
332 unsigned int cur_note; /* Next note to process. */
333 unsigned int notes_used; /* Number of notes. */
334 unsigned int notes_cap; /* Size of allocated array. */
27e2564a 335
27e2564a
NB
336 struct cpp_buffer *prev;
337
8f9b4009
NB
338 /* Pointer into the file table; non-NULL if this is a file buffer.
339 Used for include_next and to record control macros. */
340 struct _cpp_file *file;
27e2564a 341
be8ac3e2
GZ
342 /* Saved value of __TIMESTAMP__ macro - date and time of last modification
343 of the assotiated file. */
344 const unsigned char *timestamp;
345
27e2564a
NB
346 /* Value of if_stack at start of this file.
347 Used to prohibit unmatched #endif (etc) in an include file. */
348 struct if_stack *if_stack;
349
26aea073 350 /* True if we need to get the next clean line. */
a0be978a 351 bool need_line : 1;
27e2564a
NB
352
353 /* True if we have already warned about C++ comments in this file.
354 The warning happens only for C89 extended mode with -pedantic on,
355 or for -Wtraditional, and only once per file (otherwise it would
356 be far too noisy). */
a0be978a 357 bool warned_cplusplus_comments : 1;
27e2564a
NB
358
359 /* True if we don't process trigraphs and escaped newlines. True
360 for preprocessed input, command line directives, and _Pragma
361 buffers. */
a0be978a 362 bool from_stage3 : 1;
27e2564a 363
22234f56
PB
364 /* At EOF, a buffer is automatically popped. If RETURN_AT_EOF is
365 true, a CPP_EOF token is then returned. Otherwise, the next
366 token from the enclosing buffer is returned. */
a0be978a 367 bool return_at_eof : 1;
ba133c96 368
12f9df4e 369 /* One for a system header, two for a C system header file that therefore
9ac97460 370 needs to be extern "C" protected in C++, and zero otherwise. */
12f9df4e
PB
371 unsigned char sysp;
372
591e15a1
NB
373 /* The directory of the this buffer's file. Its NAME member is not
374 allocated, so we don't need to worry about freeing it. */
8f9b4009 375 struct cpp_dir dir;
004cb263 376
cf551fba
EC
377 /* Descriptor for converting from the input character set to the
378 source character set. */
379 struct cset_converter input_cset_desc;
27e2564a
NB
380};
381
17e7cb85
KT
382/* The list of saved macros by push_macro pragma. */
383struct def_pragma_macro {
384 /* Chain element to previous saved macro. */
385 struct def_pragma_macro *next;
386 /* Name of the macro. */
387 char *name;
388 /* The stored macro content. */
d6874138
KT
389 unsigned char *definition;
390
391 /* Definition line number. */
620e594b 392 location_t line;
d6874138
KT
393 /* If macro defined in system header. */
394 unsigned int syshdr : 1;
395 /* Nonzero if it has been expanded or had its existence tested. */
396 unsigned int used : 1;
397
398 /* Mark if we save an undefined macro. */
399 unsigned int is_undef : 1;
aa23e73b
JJ
400 /* Nonzero if it was a builtin macro. */
401 unsigned int is_builtin : 1;
17e7cb85
KT
402};
403
8121d2c3
NB
404/* A cpp_reader encapsulates the "state" of a pre-processor run.
405 Applying cpp_get_token repeatedly yields a stream of pre-processor
406 tokens. Usually, there is only one cpp_reader object active. */
8121d2c3
NB
407struct cpp_reader
408{
409 /* Top of buffer stack. */
410 cpp_buffer *buffer;
411
d97371e0
NB
412 /* Overlaid buffer (can be different after processing #include). */
413 cpp_buffer *overlaid_buffer;
414
8121d2c3
NB
415 /* Lexer state. */
416 struct lexer_state state;
417
67821e3a 418 /* Source line tracking. */
99b1c316 419 class line_maps *line_table;
1444f2ed 420
50410426 421 /* The line of the '#' of the current directive. */
620e594b 422 location_t directive_line;
8121d2c3 423
b8af0ca5 424 /* Memory buffers. */
8c3b2693 425 _cpp_buff *a_buff; /* Aligned permanent storage. */
ece54d54
NB
426 _cpp_buff *u_buff; /* Unaligned permanent storage. */
427 _cpp_buff *free_buffs; /* Free buffer chain. */
b8af0ca5 428
8121d2c3
NB
429 /* Context stack. */
430 struct cpp_context base_context;
431 struct cpp_context *context;
432
433 /* If in_directive, the directive if known. */
434 const struct directive *directive;
435
21b11495
ZW
436 /* Token generated while handling a directive, if any. */
437 cpp_token directive_result;
438
5ffeb913
TT
439 /* When expanding a macro at top-level, this is the location of the
440 macro invocation. */
620e594b 441 location_t invocation_location;
5ffeb913 442
f8abc9ba
DS
443 /* This is the node representing the macro being expanded at
444 top-level. The value of this data member is valid iff
a0be978a 445 cpp_in_macro_expansion_p() returns TRUE. */
f8abc9ba
DS
446 cpp_hashnode *top_most_macro_node;
447
828a7f76
DS
448 /* Nonzero if we are about to expand a macro. Note that if we are
449 really expanding a macro, the function macro_of_context returns
450 the macro being expanded and this flag is set to false. Client
a0be978a 451 code should use the function cpp_in_macro_expansion_p to know if we
828a7f76
DS
452 are either about to expand a macro, or are actually expanding
453 one. */
454 bool about_to_expand_macro_p;
5ffeb913 455
5793b276 456 /* Search paths for include files. */
8f9b4009
NB
457 struct cpp_dir *quote_include; /* "" */
458 struct cpp_dir *bracket_include; /* <> */
459 struct cpp_dir no_search_path; /* No path. */
460
49634b3a
NB
461 /* Chain of all hashed _cpp_file instances. */
462 struct _cpp_file *all_files;
8f9b4009 463
4dc299fb
PB
464 struct _cpp_file *main_file;
465
8f9b4009 466 /* File and directory hash table. */
bf42e45b 467 struct htab *file_hash;
a23ee064 468 struct htab *dir_hash;
97f6bd40 469 struct file_hash_entry_pool *file_hash_entries;
8f9b4009 470
0b4cafec
ILT
471 /* Negative path lookup hash table. */
472 struct htab *nonexistent_file_hash;
473 struct obstack nonexistent_file_ob;
474
8f9b4009
NB
475 /* Nonzero means don't look for #include "foo" the source-file
476 directory. */
477 bool quote_ignores_source_dir;
478
83a00410 479 /* Nonzero if any file has contained #pragma once or #import has
49634b3a
NB
480 been used. */
481 bool seen_once_only;
5793b276 482
6356f892 483 /* Multiple include optimization. */
8121d2c3
NB
484 const cpp_hashnode *mi_cmacro;
485 const cpp_hashnode *mi_ind_cmacro;
6d18adbc 486 bool mi_valid;
8121d2c3 487
5fddcffc
NB
488 /* Lexing. */
489 cpp_token *cur_token;
490 tokenrun base_run, *cur_run;
bdcbe496 491 unsigned int lookaheads;
5fddcffc 492
da7d8304 493 /* Nonzero prevents the lexer from re-using the token runs. */
5fddcffc
NB
494 unsigned int keep_tokens;
495
8121d2c3
NB
496 /* Buffer to hold macro definition string. */
497 unsigned char *macro_buffer;
498 unsigned int macro_buffer_len;
499
6b88314c
ZW
500 /* Descriptor for converting from the source character set to the
501 execution character set. */
502 struct cset_converter narrow_cset_desc;
e6cc3a24 503
2c6e3f55
JJ
504 /* Descriptor for converting from the source character set to the
505 UTF-8 execution character set. */
506 struct cset_converter utf8_cset_desc;
507
b6baa67d
KVH
508 /* Descriptor for converting from the source character set to the
509 UTF-16 execution character set. */
510 struct cset_converter char16_cset_desc;
511
512 /* Descriptor for converting from the source character set to the
513 UTF-32 execution character set. */
514 struct cset_converter char32_cset_desc;
515
6b88314c
ZW
516 /* Descriptor for converting from the source character set to the
517 wide execution character set. */
518 struct cset_converter wide_cset_desc;
e6cc3a24 519
278c4662 520 /* Date and time text. Calculated together if either is requested. */
c812785a
RS
521 const unsigned char *date;
522 const unsigned char *time;
8121d2c3 523
4b5f564a
NS
524 /* Time stamp, set idempotently lazily. */
525 time_t time_stamp;
526 int time_stamp_kind; /* Or errno. */
174f6622 527
5abe05b4 528 /* A token forcing paste avoidance, and one demarking macro arguments. */
4ed5bcfb 529 cpp_token avoid_paste;
5abe05b4 530 cpp_token endarg;
4ed5bcfb 531
f4ff5a69 532 /* Opaque handle to the dependencies of mkdeps.c. */
99b1c316 533 class mkdeps *deps;
8121d2c3
NB
534
535 /* Obstack holding all macro hash nodes. This never shrinks.
a2566ae9 536 See identifiers.c */
2a967f3d 537 struct obstack hash_ob;
8121d2c3
NB
538
539 /* Obstack holding buffer and conditional structures. This is a
a2566ae9 540 real stack. See directives.c. */
2a967f3d 541 struct obstack buffer_ob;
8121d2c3
NB
542
543 /* Pragma table - dynamic, because a library user can add to the
544 list of recognized pragmas. */
545 struct pragma_entry *pragmas;
546
48c4721e 547 /* Call backs to cpplib client. */
8121d2c3
NB
548 struct cpp_callbacks cb;
549
df383483 550 /* Identifier hash table. */
2a967f3d
NB
551 struct ht *hash_table;
552
87ed109f
NB
553 /* Expression parser stack. */
554 struct op *op_stack, *op_limit;
555
8121d2c3
NB
556 /* User visible options. */
557 struct cpp_options opts;
558
559 /* Special nodes - identifiers with predefined significance to the
560 preprocessor. */
561 struct spec_nodes spec_nodes;
562
2a967f3d 563 /* Whether cpplib owns the hashtable. */
8f9b4009 564 bool our_hashtable;
004cb263 565
1a76916c
NB
566 /* Traditional preprocessing output buffer (a logical line). */
567 struct
568 {
c812785a
RS
569 unsigned char *base;
570 unsigned char *limit;
571 unsigned char *cur;
620e594b 572 location_t first_line;
1a76916c
NB
573 } out;
574
a2566ae9 575 /* Used for buffer overlays by traditional.c. */
c812785a 576 const unsigned char *saved_cur, *saved_rlimit, *saved_line_base;
12f9df4e 577
17211ab5
GK
578 /* A saved list of the defined macros, for dependency checking
579 of precompiled headers. */
580 struct cpp_savedstate *savedstate;
a702045a
OW
581
582 /* Next value of __COUNTER__ macro. */
583 unsigned int counter;
631d0d36
MG
584
585 /* Table of comments, when state.save_comments is true. */
586 cpp_comment_table comments;
17e7cb85
KT
587
588 /* List of saved macros by push_macro. */
589 struct def_pragma_macro *pushed_macros;
e3dfef44 590
f3f6029d 591 /* If non-zero, the lexer will use this location for the next token
e3dfef44 592 instead of getting a location from the linemap. */
620e594b 593 location_t forced_token_location;
9844497a
NS
594
595 /* Location identifying the main source file -- intended to be line
596 zero of said file. */
597 location_t main_loc;
8121d2c3
NB
598};
599
f6bbde28 600/* Character classes. Based on the more primitive macros in safe-ctype.h.
88ae23e7 601 If the definition of `numchar' looks odd to you, please look up the
91fcd158
NB
602 definition of a pp-number in the C standard [section 6.4.8 of C99].
603
604 In the unlikely event that characters other than \r and \n enter
a2566ae9 605 the set is_vspace, the macro handle_newline() in lex.c must be
91fcd158 606 updated. */
ae79697b 607#define _dollar_ok(x) ((x) == '$' && CPP_OPTION (pfile, dollars_in_ident))
88ae23e7 608
f6bbde28
ZW
609#define is_idchar(x) (ISIDNUM(x) || _dollar_ok(x))
610#define is_numchar(x) ISIDNUM(x)
611#define is_idstart(x) (ISIDST(x) || _dollar_ok(x))
612#define is_numstart(x) ISDIGIT(x)
613#define is_hspace(x) ISBLANK(x)
614#define is_vspace(x) IS_VSPACE(x)
615#define is_nvspace(x) IS_NVSPACE(x)
616#define is_space(x) IS_SPACE_OR_NUL(x)
88ae23e7 617
18f5df94
JJ
618#define SEEN_EOL() (pfile->cur_token[-1].type == CPP_EOF)
619
f6bbde28 620/* This table is constant if it can be initialized at compile time,
88ae23e7
ZW
621 which is the case if cpp was compiled with GCC >=2.7, or another
622 compiler that supports C99. */
61d0346d 623#if HAVE_DESIGNATED_INITIALIZERS
61d0346d 624extern const unsigned char _cpp_trigraph_map[UCHAR_MAX + 1];
88ae23e7 625#else
61d0346d 626extern unsigned char _cpp_trigraph_map[UCHAR_MAX + 1];
88ae23e7
ZW
627#endif
628
c5d725c0
NS
629#if !defined (HAVE_UCHAR) && !defined (IN_GCC)
630typedef unsigned char uchar;
631#endif
632
633#define UC (const uchar *) /* Intended use: UC"string" */
634
bf425849 635/* Accessors. */
88ae23e7 636
bf425849
NS
637inline int
638_cpp_in_system_header (cpp_reader *pfile)
12f9df4e
PB
639{
640 return pfile->buffer ? pfile->buffer->sysp : 0;
641}
e3339d0f
JM
642#define CPP_PEDANTIC(PF) CPP_OPTION (PF, cpp_pedantic)
643#define CPP_WTRADITIONAL(PF) CPP_OPTION (PF, cpp_warn_traditional)
88ae23e7 644
bf425849
NS
645/* Return true if we're in the main file (unless it's considered to be
646 an include file in its own right. */
647inline int
648_cpp_in_main_source_file (cpp_reader *pfile)
705e2d28 649{
9844497a
NS
650 return (!CPP_OPTION (pfile, main_search)
651 && pfile->buffer->file == pfile->main_file);
705e2d28
TT
652}
653
ad1a3914
NS
654/* True if NODE is a macro for the purposes of ifdef, defined etc. */
655inline bool _cpp_defined_macro_p (cpp_hashnode *node)
656{
657 /* Do not treat conditional macros as being defined. This is due to
658 the powerpc port using conditional macros for 'vector', 'bool',
659 and 'pixel' to act as conditional keywords. This messes up tests
660 like #ifndef bool. */
661 return cpp_macro_p (node) && !(node->flags & NODE_CONDITIONAL);
662}
663
a2566ae9 664/* In macro.c */
13f93cf5
NS
665extern bool _cpp_notify_macro_use (cpp_reader *pfile, cpp_hashnode *node,
666 location_t);
667inline bool _cpp_maybe_notify_macro_use (cpp_reader *pfile, cpp_hashnode *node,
e9a2e208 668 location_t loc)
3f6677f4
NS
669{
670 if (!(node->flags & NODE_USED))
13f93cf5
NS
671 return _cpp_notify_macro_use (pfile, node, loc);
672 return true;
3f6677f4 673}
10f04917 674extern cpp_macro *_cpp_new_macro (cpp_reader *, cpp_macro_kind, void *);
6cf87ca4
ZW
675extern void _cpp_free_definition (cpp_hashnode *);
676extern bool _cpp_create_definition (cpp_reader *, cpp_hashnode *);
677extern void _cpp_pop_context (cpp_reader *);
678extern void _cpp_push_text_context (cpp_reader *, cpp_hashnode *,
c812785a 679 const unsigned char *, size_t);
729a01f7 680extern bool _cpp_save_parameter (cpp_reader *, unsigned, cpp_hashnode *,
be5ffc59 681 cpp_hashnode *);
729a01f7 682extern void _cpp_unsave_parameters (cpp_reader *, unsigned);
6cf87ca4
ZW
683extern bool _cpp_arguments_ok (cpp_reader *, cpp_macro *, const cpp_hashnode *,
684 unsigned int);
c812785a 685extern const unsigned char *_cpp_builtin_macro_text (cpp_reader *,
64824205 686 cpp_hashnode *,
620e594b 687 location_t = 0);
bc4071dd
RH
688extern int _cpp_warn_if_unused_macro (cpp_reader *, cpp_hashnode *, void *);
689extern void _cpp_push_token_context (cpp_reader *, cpp_hashnode *,
690 const cpp_token *, unsigned int);
5950c3c9 691extern void _cpp_backup_tokens_direct (cpp_reader *, unsigned int);
bc4071dd 692
a2566ae9 693/* In identifiers.c */
0823efed 694extern void _cpp_init_hashtable (cpp_reader *, cpp_hash_table *);
6cf87ca4 695extern void _cpp_destroy_hashtable (cpp_reader *);
bb52fa7f 696
a2566ae9 697/* In files.c */
4623a6f2
NS
698enum _cpp_find_file_kind
699 { _cpp_FFK_NORMAL, _cpp_FFK_FAKE, _cpp_FFK_PRE_INCLUDE, _cpp_FFK_HAS_INCLUDE };
6568f34b 700extern _cpp_file *_cpp_find_file (cpp_reader *, const char *, cpp_dir *,
4623a6f2 701 int angle, _cpp_find_file_kind, location_t);
4dc299fb 702extern bool _cpp_find_failed (_cpp_file *);
49634b3a 703extern void _cpp_mark_file_once_only (cpp_reader *, struct _cpp_file *);
6cf87ca4 704extern void _cpp_fake_include (cpp_reader *, const char *);
b0d11f1e 705extern bool _cpp_stack_file (cpp_reader *, _cpp_file*, include_type, location_t);
8f9b4009 706extern bool _cpp_stack_include (cpp_reader *, const char *, int,
620e594b 707 enum include_type, location_t);
6cf87ca4
ZW
708extern int _cpp_compare_file_date (cpp_reader *, const char *, int);
709extern void _cpp_report_missing_guards (cpp_reader *);
8f9b4009
NB
710extern void _cpp_init_files (cpp_reader *);
711extern void _cpp_cleanup_files (cpp_reader *);
28937f11
JJ
712extern void _cpp_pop_file_buffer (cpp_reader *, struct _cpp_file *,
713 const unsigned char *);
73e61092
GK
714extern bool _cpp_save_file_entries (cpp_reader *pfile, FILE *f);
715extern bool _cpp_read_file_entries (cpp_reader *, FILE *);
b492b686 716extern const char *_cpp_get_file_name (_cpp_file *);
be8ac3e2 717extern struct stat *_cpp_get_file_stat (_cpp_file *);
a15f7cb8
ESR
718extern bool _cpp_has_header (cpp_reader *, const char *, int,
719 enum include_type);
88ae23e7 720
a2566ae9 721/* In expr.c */
d750887f 722extern bool _cpp_parse_expr (cpp_reader *, bool);
6cf87ca4 723extern struct op *_cpp_expand_op_stack (cpp_reader *);
88ae23e7 724
a2566ae9 725/* In lex.c */
6cf87ca4
ZW
726extern void _cpp_process_line_notes (cpp_reader *, int);
727extern void _cpp_clean_line (cpp_reader *);
728extern bool _cpp_get_fresh_line (cpp_reader *);
729extern bool _cpp_skip_block_comment (cpp_reader *);
730extern cpp_token *_cpp_temp_token (cpp_reader *);
731extern const cpp_token *_cpp_lex_token (cpp_reader *);
732extern cpp_token *_cpp_lex_direct (cpp_reader *);
be5ffc59 733extern unsigned char *_cpp_spell_ident_ucns (unsigned char *, cpp_hashnode *);
6cf87ca4
ZW
734extern int _cpp_equiv_tokens (const cpp_token *, const cpp_token *);
735extern void _cpp_init_tokenrun (tokenrun *, unsigned int);
17e7cb85 736extern cpp_hashnode *_cpp_lex_identifier (cpp_reader *, const char *);
ad2305ad 737extern int _cpp_remaining_tokens_num_in_context (cpp_context *);
b0c084b7 738extern void _cpp_init_lexer (void);
10f04917
NS
739static inline void *_cpp_reserve_room (cpp_reader *pfile, size_t have,
740 size_t extra)
741{
742 if (BUFF_ROOM (pfile->a_buff) < (have + extra))
743 _cpp_extend_buff (pfile, &pfile->a_buff, extra);
744 return BUFF_FRONT (pfile->a_buff);
745}
746extern void *_cpp_commit_buff (cpp_reader *pfile, size_t size);
45b966db 747
a2566ae9 748/* In init.c. */
6cf87ca4 749extern void _cpp_maybe_push_include_file (cpp_reader *);
cfc93532 750extern const char *cpp_named_operator2name (enum cpp_ttype type);
aa23e73b
JJ
751extern void _cpp_restore_special_builtin (cpp_reader *pfile,
752 struct def_pragma_macro *);
d7bc7a98 753
a2566ae9 754/* In directives.c */
6cf87ca4 755extern int _cpp_test_assertion (cpp_reader *, unsigned int *);
a0be978a 756extern int _cpp_handle_directive (cpp_reader *, bool);
6cf87ca4
ZW
757extern void _cpp_define_builtin (cpp_reader *, const char *);
758extern char ** _cpp_save_pragma_names (cpp_reader *);
759extern void _cpp_restore_pragma_names (cpp_reader *, char **);
620e594b 760extern int _cpp_do__Pragma (cpp_reader *, location_t);
6cf87ca4
ZW
761extern void _cpp_init_directives (cpp_reader *);
762extern void _cpp_init_internal_pragmas (cpp_reader *);
763extern void _cpp_do_file_change (cpp_reader *, enum lc_reason, const char *,
1bb64668 764 linenum_type, unsigned int);
6cf87ca4 765extern void _cpp_pop_buffer (cpp_reader *);
a15f7cb8 766extern char *_cpp_bracket_include (cpp_reader *);
12cf91fe 767
a2566ae9 768/* In traditional.c. */
fb136e35 769extern bool _cpp_scan_out_logical_line (cpp_reader *, cpp_macro *, bool);
6cf87ca4 770extern bool _cpp_read_logical_line_trad (cpp_reader *);
c812785a
RS
771extern void _cpp_overlay_buffer (cpp_reader *pfile, const unsigned char *,
772 size_t);
6cf87ca4 773extern void _cpp_remove_overlay (cpp_reader *);
10f04917 774extern cpp_macro *_cpp_create_trad_definition (cpp_reader *);
6cf87ca4
ZW
775extern bool _cpp_expansions_different_trad (const cpp_macro *,
776 const cpp_macro *);
c812785a
RS
777extern unsigned char *_cpp_copy_replacement_text (const cpp_macro *,
778 unsigned char *);
6cf87ca4 779extern size_t _cpp_replacement_text_len (const cpp_macro *);
004cb263 780
a2566ae9 781/* In charset.c. */
50668cf6
GK
782
783/* The normalization state at this point in the sequence.
784 It starts initialized to all zeros, and at the end
785 'level' is the normalization level of the sequence. */
786
787struct normalize_state
788{
d3f4ff8b 789 /* The previous starter character. */
50668cf6 790 cppchar_t previous;
d3f4ff8b
JM
791 /* The combining class of the previous character (whether or not a
792 starter). */
50668cf6
GK
793 unsigned char prev_class;
794 /* The lowest normalization level so far. */
795 enum cpp_normalize_level level;
796};
797#define INITIAL_NORMALIZE_STATE { 0, 0, normalized_KC }
798#define NORMALIZE_STATE_RESULT(st) ((st)->level)
799
d3f4ff8b 800/* We saw a character C that matches ISIDNUM(), update a
50668cf6 801 normalize_state appropriately. */
d3f4ff8b
JM
802#define NORMALIZE_STATE_UPDATE_IDNUM(st, c) \
803 ((st)->previous = (c), (st)->prev_class = 0)
50668cf6 804
fbb22910
PC
805extern bool _cpp_valid_ucn (cpp_reader *, const unsigned char **,
806 const unsigned char *, int,
807 struct normalize_state *state,
88fa5555
DM
808 cppchar_t *,
809 source_range *char_range,
810 cpp_string_location_reader *loc_reader);
7d112d66
LH
811
812extern bool _cpp_valid_utf8 (cpp_reader *pfile,
813 const uchar **pstr,
814 const uchar *limit,
815 int identifier_pos,
816 struct normalize_state *nst,
817 cppchar_t *cp);
818
6b88314c 819extern void _cpp_destroy_iconv (cpp_reader *);
c812785a
RS
820extern unsigned char *_cpp_convert_input (cpp_reader *, const char *,
821 unsigned char *, size_t, size_t,
688e7a53 822 const unsigned char **, off_t *);
16dd5cfe 823extern const char *_cpp_default_encoding (void);
47e20491
GK
824extern cpp_hashnode * _cpp_interpret_identifier (cpp_reader *pfile,
825 const unsigned char *id,
826 size_t len);
1613e52b 827
c31a6508 828/* Utility routines and macros. */
c812785a 829#define DSC(str) (const unsigned char *)str, sizeof str - 1
c31a6508 830
8121d2c3
NB
831/* These are inline functions instead of macros so we can get type
832 checking. */
c812785a
RS
833static inline int ustrcmp (const unsigned char *, const unsigned char *);
834static inline int ustrncmp (const unsigned char *, const unsigned char *,
835 size_t);
836static inline size_t ustrlen (const unsigned char *);
0c1dace3
PC
837static inline const unsigned char *uxstrdup (const unsigned char *);
838static inline const unsigned char *ustrchr (const unsigned char *, int);
c812785a 839static inline int ufputs (const unsigned char *, FILE *);
8121d2c3 840
be0f1e54
PB
841/* Use a const char for the second parameter since it is usually a literal. */
842static inline int ustrcspn (const unsigned char *, const char *);
843
8121d2c3 844static inline int
c812785a 845ustrcmp (const unsigned char *s1, const unsigned char *s2)
8121d2c3
NB
846{
847 return strcmp ((const char *)s1, (const char *)s2);
848}
849
850static inline int
c812785a 851ustrncmp (const unsigned char *s1, const unsigned char *s2, size_t n)
8121d2c3
NB
852{
853 return strncmp ((const char *)s1, (const char *)s2, n);
854}
855
be0f1e54
PB
856static inline int
857ustrcspn (const unsigned char *s1, const char *s2)
858{
859 return strcspn ((const char *)s1, s2);
860}
861
8121d2c3 862static inline size_t
c812785a 863ustrlen (const unsigned char *s1)
8121d2c3
NB
864{
865 return strlen ((const char *)s1);
866}
867
0c1dace3 868static inline const unsigned char *
c812785a 869uxstrdup (const unsigned char *s1)
8121d2c3 870{
0c1dace3 871 return (const unsigned char *) xstrdup ((const char *)s1);
8121d2c3
NB
872}
873
0c1dace3 874static inline const unsigned char *
c812785a 875ustrchr (const unsigned char *s1, int c)
8121d2c3 876{
0c1dace3 877 return (const unsigned char *) strchr ((const char *)s1, c);
8121d2c3
NB
878}
879
880static inline int
c812785a 881ufputs (const unsigned char *s, FILE *f)
8121d2c3
NB
882{
883 return fputs ((const char *)s, f);
884}
885
1f8ac759 886/* In line-map.c. */
46427374
TT
887
888/* Create and return a virtual location for a token that is part of a
889 macro expansion-list at a macro expansion point. See the comment
890 inside struct line_map_macro to see what an expansion-list exactly
891 is.
892
893 A call to this function must come after a call to
894 linemap_enter_macro.
895
896 MAP is the map into which the source location is created. TOKEN_NO
897 is the index of the token in the macro replacement-list, starting
898 at number 0.
899
900 ORIG_LOC is the location of the token outside of this macro
901 expansion. If the token comes originally from the macro
902 definition, it is the locus in the macro definition; otherwise it
903 is a location in the context of the caller of this macro expansion
904 (which is a virtual location or a source location if the caller is
905 itself a macro expansion or not).
906
907 MACRO_DEFINITION_LOC is the location in the macro definition,
908 either of the token itself or of a macro parameter that it
909 replaces. */
620e594b
DM
910location_t linemap_add_macro_token (const line_map_macro *,
911 unsigned int,
912 location_t,
913 location_t);
46427374
TT
914
915/* Return the source line number corresponding to source location
916 LOCATION. SET is the line map set LOCATION comes from. If
917 LOCATION is the location of token that is part of the
918 expansion-list of a macro expansion return the line number of the
919 macro expansion point. */
99b1c316 920int linemap_get_expansion_line (class line_maps *,
620e594b 921 location_t);
46427374
TT
922
923/* Return the path of the file corresponding to source code location
924 LOCATION.
925
926 If LOCATION is the location of a token that is part of the
927 replacement-list of a macro expansion return the file path of the
928 macro expansion point.
929
930 SET is the line map set LOCATION comes from. */
99b1c316 931const char* linemap_get_expansion_filename (class line_maps *,
620e594b 932 location_t);
46427374 933
4851089f
ILT
934#ifdef __cplusplus
935}
936#endif
937
4f4e53dd 938#endif /* ! LIBCPP_INTERNAL_H */