]> git.ipfire.org Git - thirdparty/gcc.git/blame - libcpp/internal.h
cris.c (cris_function_value, [...]): New functions.
[thirdparty/gcc.git] / libcpp / internal.h
CommitLineData
88ae23e7 1/* Part of CPP library.
148e4216
JM
2 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007,
3 2008, 2009 Free Software Foundation, Inc.
4283012f
JL
4
5This program is free software; you can redistribute it and/or modify it
6under the terms of the GNU General Public License as published by the
748086b7 7Free Software Foundation; either version 3, or (at your option) any
4283012f
JL
8later version.
9
10This program is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
748086b7
JJ
16along with this program; see the file COPYING3. If not see
17<http://www.gnu.org/licenses/>. */
4283012f 18
88ae23e7 19/* This header defines all the internal data structures and functions
4f4e53dd
PB
20 that need to be visible across files. It should not be used outside
21 cpplib. */
88ae23e7 22
4f4e53dd
PB
23#ifndef LIBCPP_INTERNAL_H
24#define LIBCPP_INTERNAL_H
bb52fa7f 25
4f4e53dd 26#include "symtab.h"
d8044160 27#include "cpp-id-data.h"
2a967f3d 28
968e08d6 29#if HAVE_ICONV
e6cc3a24
ZW
30#include <iconv.h>
31#else
32#define HAVE_ICONV 0
33typedef int iconv_t; /* dummy */
34#endif
35
4851089f
ILT
36#ifdef __cplusplus
37extern "C" {
38#endif
39
2a967f3d 40struct directive; /* Deliberately incomplete. */
af0d16cd 41struct pending_option;
87ed109f 42struct op;
a8016863 43struct _cpp_strbuf;
6b88314c
ZW
44
45typedef bool (*convert_f) (iconv_t, const unsigned char *, size_t,
a8016863 46 struct _cpp_strbuf *);
6b88314c
ZW
47struct cset_converter
48{
49 convert_f func;
50 iconv_t cd;
b6baa67d 51 int width;
6b88314c 52};
8121d2c3 53
4268e8bb
NB
54#define BITS_PER_CPPCHAR_T (CHAR_BIT * sizeof (cppchar_t))
55
93c80368
NB
56/* Test if a sign is valid within a preprocessing number. */
57#define VALID_SIGN(c, prevc) \
58 (((c) == '+' || (c) == '-') && \
59 ((prevc) == 'e' || (prevc) == 'E' \
bdb05a7b
NB
60 || (((prevc) == 'p' || (prevc) == 'P') \
61 && CPP_OPTION (pfile, extended_numbers))))
93c80368 62
8121d2c3
NB
63#define CPP_OPTION(PFILE, OPTION) ((PFILE)->opts.OPTION)
64#define CPP_BUFFER(PFILE) ((PFILE)->buffer)
26aea073 65#define CPP_BUF_COLUMN(BUF, CUR) ((CUR) - (BUF)->line_base)
8121d2c3
NB
66#define CPP_BUF_COL(BUF) CPP_BUF_COLUMN(BUF, (BUF)->cur)
67
12f9df4e 68#define CPP_INCREMENT_LINE(PFILE, COLS_HINT) do { \
500bee0a
PB
69 const struct line_maps *line_table = PFILE->line_table; \
70 const struct line_map *map = &line_table->maps[line_table->used-1]; \
1bb64668 71 linenum_type line = SOURCE_LINE (map, line_table->highest_line); \
500bee0a 72 linemap_line_start (PFILE->line_table, line + 1, COLS_HINT); \
12f9df4e
PB
73 } while (0)
74
8121d2c3
NB
75/* Maximum nesting of cpp_buffers. We use a static limit, partly for
76 efficiency, and partly to limit runaway recursion. */
77#define CPP_STACK_MAX 200
78
c70f6ed3
NB
79/* Host alignment handling. */
80struct dummy
81{
82 char c;
83 union
84 {
85 double d;
86 int *p;
87 } u;
88};
89
90#define DEFAULT_ALIGNMENT offsetof (struct dummy, u)
91#define CPP_ALIGN2(size, align) (((size) + ((align) - 1)) & ~((align) - 1))
92#define CPP_ALIGN(size) CPP_ALIGN2 (size, DEFAULT_ALIGNMENT)
93
a69cbaac
NB
94#define _cpp_mark_macro_used(NODE) do { \
95 if ((NODE)->type == NT_MACRO && !((NODE)->flags & NODE_BUILTIN)) \
96 (NODE)->value.macro->used = 1; } while (0)
97
644eddaa 98/* A generic memory buffer, and operations on it. */
b8af0ca5
NB
99typedef struct _cpp_buff _cpp_buff;
100struct _cpp_buff
101{
102 struct _cpp_buff *next;
ece54d54 103 unsigned char *base, *cur, *limit;
b8af0ca5
NB
104};
105
6cf87ca4
ZW
106extern _cpp_buff *_cpp_get_buff (cpp_reader *, size_t);
107extern void _cpp_release_buff (cpp_reader *, _cpp_buff *);
108extern void _cpp_extend_buff (cpp_reader *, _cpp_buff **, size_t);
109extern _cpp_buff *_cpp_append_extend_buff (cpp_reader *, _cpp_buff *, size_t);
110extern void _cpp_free_buff (_cpp_buff *);
111extern unsigned char *_cpp_aligned_alloc (cpp_reader *, size_t);
112extern unsigned char *_cpp_unaligned_alloc (cpp_reader *, size_t);
644eddaa 113
8c3b2693 114#define BUFF_ROOM(BUFF) (size_t) ((BUFF)->limit - (BUFF)->cur)
ece54d54
NB
115#define BUFF_FRONT(BUFF) ((BUFF)->cur)
116#define BUFF_LIMIT(BUFF) ((BUFF)->limit)
b8af0ca5 117
ba133c96
NB
118/* #include types. */
119enum include_type {IT_INCLUDE, IT_INCLUDE_NEXT, IT_IMPORT, IT_CMDLINE};
120
4ed5bcfb 121union utoken
8121d2c3 122{
4ed5bcfb
NB
123 const cpp_token *token;
124 const cpp_token **ptoken;
8121d2c3
NB
125};
126
5d8ebbd8 127/* A "run" of tokens; part of a chain of runs. */
5fddcffc
NB
128typedef struct tokenrun tokenrun;
129struct tokenrun
130{
bdcbe496 131 tokenrun *next, *prev;
5fddcffc
NB
132 cpp_token *base, *limit;
133};
134
82eda77e 135/* Accessor macros for struct cpp_context. */
79ba5e3b
NB
136#define FIRST(c) ((c)->u.iso.first)
137#define LAST(c) ((c)->u.iso.last)
138#define CUR(c) ((c)->u.trad.cur)
139#define RLIMIT(c) ((c)->u.trad.rlimit)
82eda77e 140
8121d2c3
NB
141typedef struct cpp_context cpp_context;
142struct cpp_context
143{
144 /* Doubly-linked list. */
145 cpp_context *next, *prev;
146
82eda77e
NB
147 union
148 {
149 /* For ISO macro expansion. Contexts other than the base context
150 are contiguous tokens. e.g. macro expansions, expanded
151 argument tokens. */
152 struct
153 {
154 union utoken first;
155 union utoken last;
156 } iso;
157
158 /* For traditional macro expansion. */
159 struct
160 {
c812785a
RS
161 const unsigned char *cur;
162 const unsigned char *rlimit;
82eda77e
NB
163 } trad;
164 } u;
8121d2c3 165
1e013d2e 166 /* If non-NULL, a buffer used for storage related to this context.
c9e7a609 167 When the context is popped, the buffer is released. */
1e013d2e
NB
168 _cpp_buff *buff;
169
644eddaa
NB
170 /* For a macro context, the macro node, otherwise NULL. */
171 cpp_hashnode *macro;
4ed5bcfb
NB
172
173 /* True if utoken element is token, else ptoken. */
174 bool direct_p;
8121d2c3
NB
175};
176
177struct lexer_state
178{
179 /* Nonzero if first token on line is CPP_HASH. */
180 unsigned char in_directive;
181
a8d0ddaf
ZW
182 /* Nonzero if in a directive that will handle padding tokens itself.
183 #include needs this to avoid problems with computed include and
184 spacing between tokens. */
185 unsigned char directive_wants_padding;
186
cef0d199
NB
187 /* True if we are skipping a failed conditional group. */
188 unsigned char skipping;
189
8121d2c3
NB
190 /* Nonzero if in a directive that takes angle-bracketed headers. */
191 unsigned char angled_headers;
192
d97371e0
NB
193 /* Nonzero if in a #if or #elif directive. */
194 unsigned char in_expression;
195
8121d2c3
NB
196 /* Nonzero to save comments. Turned off if discard_comments, and in
197 all directives apart from #define. */
198 unsigned char save_comments;
199
8121d2c3
NB
200 /* Nonzero if lexing __VA_ARGS__ is valid. */
201 unsigned char va_args_ok;
202
203 /* Nonzero if lexing poisoned identifiers is valid. */
204 unsigned char poisoned_ok;
205
206 /* Nonzero to prevent macro expansion. */
df383483 207 unsigned char prevent_expansion;
8121d2c3
NB
208
209 /* Nonzero when parsing arguments to a function-like macro. */
210 unsigned char parsing_args;
87ed109f 211
c6e83800
ZW
212 /* Nonzero if prevent_expansion is true only because output is
213 being discarded. */
214 unsigned char discarding_output;
215
87ed109f
NB
216 /* Nonzero to skip evaluating part of an expression. */
217 unsigned int skip_eval;
bc4071dd
RH
218
219 /* Nonzero when handling a deferred pragma. */
220 unsigned char in_deferred_pragma;
221
222 /* Nonzero if the deferred pragma being handled allows macro expansion. */
223 unsigned char pragma_allow_expansion;
8121d2c3
NB
224};
225
226/* Special nodes - identifiers with predefined significance. */
227struct spec_nodes
228{
8121d2c3 229 cpp_hashnode *n_defined; /* defined operator */
037313ae
ZW
230 cpp_hashnode *n_true; /* C++ keyword true */
231 cpp_hashnode *n_false; /* C++ keyword false */
8121d2c3
NB
232 cpp_hashnode *n__VA_ARGS__; /* C99 vararg macros */
233};
234
26aea073
NB
235typedef struct _cpp_line_note _cpp_line_note;
236struct _cpp_line_note
237{
238 /* Location in the clean line the note refers to. */
c812785a 239 const unsigned char *pos;
26aea073 240
41c32c98
NB
241 /* Type of note. The 9 'from' trigraph characters represent those
242 trigraphs, '\\' an escaped newline, ' ' an escaped newline with
243 intervening space, and anything else is invalid. */
244 unsigned int type;
26aea073
NB
245};
246
5d8ebbd8 247/* Represents the contents of a file cpplib has read in. */
27e2564a
NB
248struct cpp_buffer
249{
c812785a
RS
250 const unsigned char *cur; /* Current location. */
251 const unsigned char *line_base; /* Start of current physical line. */
252 const unsigned char *next_line; /* Start of to-be-cleaned logical line. */
cf551fba 253
c812785a
RS
254 const unsigned char *buf; /* Entire character buffer. */
255 const unsigned char *rlimit; /* Writable byte at end of file. */
26aea073 256
c812785a
RS
257 _cpp_line_note *notes; /* Array of notes. */
258 unsigned int cur_note; /* Next note to process. */
259 unsigned int notes_used; /* Number of notes. */
260 unsigned int notes_cap; /* Size of allocated array. */
27e2564a 261
27e2564a
NB
262 struct cpp_buffer *prev;
263
8f9b4009
NB
264 /* Pointer into the file table; non-NULL if this is a file buffer.
265 Used for include_next and to record control macros. */
266 struct _cpp_file *file;
27e2564a 267
be8ac3e2
GZ
268 /* Saved value of __TIMESTAMP__ macro - date and time of last modification
269 of the assotiated file. */
270 const unsigned char *timestamp;
271
27e2564a
NB
272 /* Value of if_stack at start of this file.
273 Used to prohibit unmatched #endif (etc) in an include file. */
274 struct if_stack *if_stack;
275
26aea073
NB
276 /* True if we need to get the next clean line. */
277 bool need_line;
27e2564a
NB
278
279 /* True if we have already warned about C++ comments in this file.
280 The warning happens only for C89 extended mode with -pedantic on,
281 or for -Wtraditional, and only once per file (otherwise it would
282 be far too noisy). */
12f9df4e 283 unsigned int warned_cplusplus_comments : 1;
27e2564a
NB
284
285 /* True if we don't process trigraphs and escaped newlines. True
286 for preprocessed input, command line directives, and _Pragma
287 buffers. */
12f9df4e 288 unsigned int from_stage3 : 1;
27e2564a 289
22234f56
PB
290 /* At EOF, a buffer is automatically popped. If RETURN_AT_EOF is
291 true, a CPP_EOF token is then returned. Otherwise, the next
292 token from the enclosing buffer is returned. */
293 unsigned int return_at_eof : 1;
ba133c96 294
12f9df4e 295 /* One for a system header, two for a C system header file that therefore
9ac97460 296 needs to be extern "C" protected in C++, and zero otherwise. */
12f9df4e
PB
297 unsigned char sysp;
298
591e15a1
NB
299 /* The directory of the this buffer's file. Its NAME member is not
300 allocated, so we don't need to worry about freeing it. */
8f9b4009 301 struct cpp_dir dir;
004cb263 302
cf551fba
EC
303 /* Descriptor for converting from the input character set to the
304 source character set. */
305 struct cset_converter input_cset_desc;
27e2564a
NB
306};
307
8121d2c3
NB
308/* A cpp_reader encapsulates the "state" of a pre-processor run.
309 Applying cpp_get_token repeatedly yields a stream of pre-processor
310 tokens. Usually, there is only one cpp_reader object active. */
8121d2c3
NB
311struct cpp_reader
312{
313 /* Top of buffer stack. */
314 cpp_buffer *buffer;
315
d97371e0
NB
316 /* Overlaid buffer (can be different after processing #include). */
317 cpp_buffer *overlaid_buffer;
318
8121d2c3
NB
319 /* Lexer state. */
320 struct lexer_state state;
321
67821e3a 322 /* Source line tracking. */
50f59cd7 323 struct line_maps *line_table;
1444f2ed 324
50410426 325 /* The line of the '#' of the current directive. */
f58f7def 326 source_location directive_line;
8121d2c3 327
b8af0ca5 328 /* Memory buffers. */
8c3b2693 329 _cpp_buff *a_buff; /* Aligned permanent storage. */
ece54d54
NB
330 _cpp_buff *u_buff; /* Unaligned permanent storage. */
331 _cpp_buff *free_buffs; /* Free buffer chain. */
b8af0ca5 332
8121d2c3
NB
333 /* Context stack. */
334 struct cpp_context base_context;
335 struct cpp_context *context;
336
337 /* If in_directive, the directive if known. */
338 const struct directive *directive;
339
21b11495
ZW
340 /* Token generated while handling a directive, if any. */
341 cpp_token directive_result;
342
5ffeb913
TT
343 /* When expanding a macro at top-level, this is the location of the
344 macro invocation. */
345 source_location invocation_location;
346
347 /* True if this call to cpp_get_token should consider setting
348 invocation_location. */
349 bool set_invocation_location;
350
5793b276 351 /* Search paths for include files. */
8f9b4009
NB
352 struct cpp_dir *quote_include; /* "" */
353 struct cpp_dir *bracket_include; /* <> */
354 struct cpp_dir no_search_path; /* No path. */
355
49634b3a
NB
356 /* Chain of all hashed _cpp_file instances. */
357 struct _cpp_file *all_files;
8f9b4009 358
4dc299fb
PB
359 struct _cpp_file *main_file;
360
8f9b4009 361 /* File and directory hash table. */
bf42e45b 362 struct htab *file_hash;
a23ee064 363 struct htab *dir_hash;
97f6bd40 364 struct file_hash_entry_pool *file_hash_entries;
8f9b4009 365
0b4cafec
ILT
366 /* Negative path lookup hash table. */
367 struct htab *nonexistent_file_hash;
368 struct obstack nonexistent_file_ob;
369
8f9b4009
NB
370 /* Nonzero means don't look for #include "foo" the source-file
371 directory. */
372 bool quote_ignores_source_dir;
373
83a00410 374 /* Nonzero if any file has contained #pragma once or #import has
49634b3a
NB
375 been used. */
376 bool seen_once_only;
5793b276 377
6356f892 378 /* Multiple include optimization. */
8121d2c3
NB
379 const cpp_hashnode *mi_cmacro;
380 const cpp_hashnode *mi_ind_cmacro;
6d18adbc 381 bool mi_valid;
8121d2c3 382
5fddcffc
NB
383 /* Lexing. */
384 cpp_token *cur_token;
385 tokenrun base_run, *cur_run;
bdcbe496 386 unsigned int lookaheads;
5fddcffc 387
da7d8304 388 /* Nonzero prevents the lexer from re-using the token runs. */
5fddcffc
NB
389 unsigned int keep_tokens;
390
8121d2c3
NB
391 /* Buffer to hold macro definition string. */
392 unsigned char *macro_buffer;
393 unsigned int macro_buffer_len;
394
6b88314c
ZW
395 /* Descriptor for converting from the source character set to the
396 execution character set. */
397 struct cset_converter narrow_cset_desc;
e6cc3a24 398
b6baa67d
KVH
399 /* Descriptor for converting from the source character set to the
400 UTF-16 execution character set. */
401 struct cset_converter char16_cset_desc;
402
403 /* Descriptor for converting from the source character set to the
404 UTF-32 execution character set. */
405 struct cset_converter char32_cset_desc;
406
6b88314c
ZW
407 /* Descriptor for converting from the source character set to the
408 wide execution character set. */
409 struct cset_converter wide_cset_desc;
e6cc3a24 410
278c4662 411 /* Date and time text. Calculated together if either is requested. */
c812785a
RS
412 const unsigned char *date;
413 const unsigned char *time;
8121d2c3 414
4ed5bcfb
NB
415 /* EOF token, and a token forcing paste avoidance. */
416 cpp_token avoid_paste;
417 cpp_token eof;
418
f4ff5a69 419 /* Opaque handle to the dependencies of mkdeps.c. */
8121d2c3
NB
420 struct deps *deps;
421
422 /* Obstack holding all macro hash nodes. This never shrinks.
a2566ae9 423 See identifiers.c */
2a967f3d 424 struct obstack hash_ob;
8121d2c3
NB
425
426 /* Obstack holding buffer and conditional structures. This is a
a2566ae9 427 real stack. See directives.c. */
2a967f3d 428 struct obstack buffer_ob;
8121d2c3
NB
429
430 /* Pragma table - dynamic, because a library user can add to the
431 list of recognized pragmas. */
432 struct pragma_entry *pragmas;
433
48c4721e 434 /* Call backs to cpplib client. */
8121d2c3
NB
435 struct cpp_callbacks cb;
436
df383483 437 /* Identifier hash table. */
2a967f3d
NB
438 struct ht *hash_table;
439
87ed109f
NB
440 /* Expression parser stack. */
441 struct op *op_stack, *op_limit;
442
8121d2c3
NB
443 /* User visible options. */
444 struct cpp_options opts;
445
446 /* Special nodes - identifiers with predefined significance to the
447 preprocessor. */
448 struct spec_nodes spec_nodes;
449
2a967f3d 450 /* Whether cpplib owns the hashtable. */
8f9b4009 451 bool our_hashtable;
004cb263 452
1a76916c
NB
453 /* Traditional preprocessing output buffer (a logical line). */
454 struct
455 {
c812785a
RS
456 unsigned char *base;
457 unsigned char *limit;
458 unsigned char *cur;
f58f7def 459 source_location first_line;
1a76916c
NB
460 } out;
461
a2566ae9 462 /* Used for buffer overlays by traditional.c. */
c812785a 463 const unsigned char *saved_cur, *saved_rlimit, *saved_line_base;
12f9df4e 464
17211ab5
GK
465 /* A saved list of the defined macros, for dependency checking
466 of precompiled headers. */
467 struct cpp_savedstate *savedstate;
a702045a
OW
468
469 /* Next value of __COUNTER__ macro. */
470 unsigned int counter;
631d0d36
MG
471
472 /* Table of comments, when state.save_comments is true. */
473 cpp_comment_table comments;
8121d2c3
NB
474};
475
f6bbde28 476/* Character classes. Based on the more primitive macros in safe-ctype.h.
88ae23e7 477 If the definition of `numchar' looks odd to you, please look up the
91fcd158
NB
478 definition of a pp-number in the C standard [section 6.4.8 of C99].
479
480 In the unlikely event that characters other than \r and \n enter
a2566ae9 481 the set is_vspace, the macro handle_newline() in lex.c must be
91fcd158 482 updated. */
ae79697b 483#define _dollar_ok(x) ((x) == '$' && CPP_OPTION (pfile, dollars_in_ident))
88ae23e7 484
f6bbde28
ZW
485#define is_idchar(x) (ISIDNUM(x) || _dollar_ok(x))
486#define is_numchar(x) ISIDNUM(x)
487#define is_idstart(x) (ISIDST(x) || _dollar_ok(x))
488#define is_numstart(x) ISDIGIT(x)
489#define is_hspace(x) ISBLANK(x)
490#define is_vspace(x) IS_VSPACE(x)
491#define is_nvspace(x) IS_NVSPACE(x)
492#define is_space(x) IS_SPACE_OR_NUL(x)
88ae23e7 493
f6bbde28 494/* This table is constant if it can be initialized at compile time,
88ae23e7
ZW
495 which is the case if cpp was compiled with GCC >=2.7, or another
496 compiler that supports C99. */
61d0346d 497#if HAVE_DESIGNATED_INITIALIZERS
61d0346d 498extern const unsigned char _cpp_trigraph_map[UCHAR_MAX + 1];
88ae23e7 499#else
61d0346d 500extern unsigned char _cpp_trigraph_map[UCHAR_MAX + 1];
88ae23e7
ZW
501#endif
502
503/* Macros. */
504
12f9df4e
PB
505static inline int cpp_in_system_header (cpp_reader *);
506static inline int
507cpp_in_system_header (cpp_reader *pfile)
508{
509 return pfile->buffer ? pfile->buffer->sysp : 0;
510}
28e0f040
NB
511#define CPP_PEDANTIC(PF) CPP_OPTION (PF, pedantic)
512#define CPP_WTRADITIONAL(PF) CPP_OPTION (PF, warn_traditional)
88ae23e7 513
705e2d28
TT
514static inline int cpp_in_primary_file (cpp_reader *);
515static inline int
516cpp_in_primary_file (cpp_reader *pfile)
517{
518 return pfile->line_table->depth == 1;
519}
520
a2566ae9 521/* In macro.c */
6cf87ca4
ZW
522extern void _cpp_free_definition (cpp_hashnode *);
523extern bool _cpp_create_definition (cpp_reader *, cpp_hashnode *);
524extern void _cpp_pop_context (cpp_reader *);
525extern void _cpp_push_text_context (cpp_reader *, cpp_hashnode *,
c812785a 526 const unsigned char *, size_t);
6cf87ca4
ZW
527extern bool _cpp_save_parameter (cpp_reader *, cpp_macro *, cpp_hashnode *);
528extern bool _cpp_arguments_ok (cpp_reader *, cpp_macro *, const cpp_hashnode *,
529 unsigned int);
c812785a
RS
530extern const unsigned char *_cpp_builtin_macro_text (cpp_reader *,
531 cpp_hashnode *);
bc4071dd
RH
532extern int _cpp_warn_if_unused_macro (cpp_reader *, cpp_hashnode *, void *);
533extern void _cpp_push_token_context (cpp_reader *, cpp_hashnode *,
534 const cpp_token *, unsigned int);
5950c3c9 535extern void _cpp_backup_tokens_direct (cpp_reader *, unsigned int);
bc4071dd 536
a2566ae9 537/* In identifiers.c */
6cf87ca4
ZW
538extern void _cpp_init_hashtable (cpp_reader *, hash_table *);
539extern void _cpp_destroy_hashtable (cpp_reader *);
bb52fa7f 540
a2566ae9 541/* In files.c */
4dc299fb 542typedef struct _cpp_file _cpp_file;
6568f34b
JW
543extern _cpp_file *_cpp_find_file (cpp_reader *, const char *, cpp_dir *,
544 bool, int);
4dc299fb 545extern bool _cpp_find_failed (_cpp_file *);
49634b3a 546extern void _cpp_mark_file_once_only (cpp_reader *, struct _cpp_file *);
6cf87ca4 547extern void _cpp_fake_include (cpp_reader *, const char *);
4dc299fb 548extern bool _cpp_stack_file (cpp_reader *, _cpp_file*, bool);
8f9b4009
NB
549extern bool _cpp_stack_include (cpp_reader *, const char *, int,
550 enum include_type);
6cf87ca4
ZW
551extern int _cpp_compare_file_date (cpp_reader *, const char *, int);
552extern void _cpp_report_missing_guards (cpp_reader *);
8f9b4009
NB
553extern void _cpp_init_files (cpp_reader *);
554extern void _cpp_cleanup_files (cpp_reader *);
555extern void _cpp_pop_file_buffer (cpp_reader *, struct _cpp_file *);
73e61092
GK
556extern bool _cpp_save_file_entries (cpp_reader *pfile, FILE *f);
557extern bool _cpp_read_file_entries (cpp_reader *, FILE *);
be8ac3e2 558extern struct stat *_cpp_get_file_stat (_cpp_file *);
88ae23e7 559
a2566ae9 560/* In expr.c */
d750887f 561extern bool _cpp_parse_expr (cpp_reader *, bool);
6cf87ca4 562extern struct op *_cpp_expand_op_stack (cpp_reader *);
88ae23e7 563
a2566ae9 564/* In lex.c */
6cf87ca4
ZW
565extern void _cpp_process_line_notes (cpp_reader *, int);
566extern void _cpp_clean_line (cpp_reader *);
567extern bool _cpp_get_fresh_line (cpp_reader *);
568extern bool _cpp_skip_block_comment (cpp_reader *);
569extern cpp_token *_cpp_temp_token (cpp_reader *);
570extern const cpp_token *_cpp_lex_token (cpp_reader *);
571extern cpp_token *_cpp_lex_direct (cpp_reader *);
572extern int _cpp_equiv_tokens (const cpp_token *, const cpp_token *);
573extern void _cpp_init_tokenrun (tokenrun *, unsigned int);
45b966db 574
a2566ae9 575/* In init.c. */
6cf87ca4 576extern void _cpp_maybe_push_include_file (cpp_reader *);
cfc93532 577extern const char *cpp_named_operator2name (enum cpp_ttype type);
d7bc7a98 578
a2566ae9 579/* In directives.c */
6cf87ca4
ZW
580extern int _cpp_test_assertion (cpp_reader *, unsigned int *);
581extern int _cpp_handle_directive (cpp_reader *, int);
582extern void _cpp_define_builtin (cpp_reader *, const char *);
583extern char ** _cpp_save_pragma_names (cpp_reader *);
584extern void _cpp_restore_pragma_names (cpp_reader *, char **);
5b9a40df 585extern int _cpp_do__Pragma (cpp_reader *);
6cf87ca4
ZW
586extern void _cpp_init_directives (cpp_reader *);
587extern void _cpp_init_internal_pragmas (cpp_reader *);
588extern void _cpp_do_file_change (cpp_reader *, enum lc_reason, const char *,
1bb64668 589 linenum_type, unsigned int);
6cf87ca4 590extern void _cpp_pop_buffer (cpp_reader *);
12cf91fe 591
ccfc4c91
OW
592/* In directives.c */
593struct _cpp_dir_only_callbacks
594{
595 /* Called to print a block of lines. */
596 void (*print_lines) (int, const void *, size_t);
597 void (*maybe_print_line) (source_location);
598};
599
600extern void _cpp_preprocess_dir_only (cpp_reader *,
601 const struct _cpp_dir_only_callbacks *);
602
a2566ae9 603/* In traditional.c. */
43839642 604extern bool _cpp_scan_out_logical_line (cpp_reader *, cpp_macro *);
6cf87ca4 605extern bool _cpp_read_logical_line_trad (cpp_reader *);
c812785a
RS
606extern void _cpp_overlay_buffer (cpp_reader *pfile, const unsigned char *,
607 size_t);
6cf87ca4
ZW
608extern void _cpp_remove_overlay (cpp_reader *);
609extern bool _cpp_create_trad_definition (cpp_reader *, cpp_macro *);
610extern bool _cpp_expansions_different_trad (const cpp_macro *,
611 const cpp_macro *);
c812785a
RS
612extern unsigned char *_cpp_copy_replacement_text (const cpp_macro *,
613 unsigned char *);
6cf87ca4 614extern size_t _cpp_replacement_text_len (const cpp_macro *);
004cb263 615
a2566ae9 616/* In charset.c. */
50668cf6
GK
617
618/* The normalization state at this point in the sequence.
619 It starts initialized to all zeros, and at the end
620 'level' is the normalization level of the sequence. */
621
622struct normalize_state
623{
624 /* The previous character. */
625 cppchar_t previous;
626 /* The combining class of the previous character. */
627 unsigned char prev_class;
628 /* The lowest normalization level so far. */
629 enum cpp_normalize_level level;
630};
631#define INITIAL_NORMALIZE_STATE { 0, 0, normalized_KC }
632#define NORMALIZE_STATE_RESULT(st) ((st)->level)
633
634/* We saw a character that matches ISIDNUM(), update a
635 normalize_state appropriately. */
636#define NORMALIZE_STATE_UPDATE_IDNUM(st) \
637 ((st)->previous = 0, (st)->prev_class = 0)
638
c812785a 639extern cppchar_t _cpp_valid_ucn (cpp_reader *, const unsigned char **,
50668cf6
GK
640 const unsigned char *, int,
641 struct normalize_state *state);
6b88314c 642extern void _cpp_destroy_iconv (cpp_reader *);
c812785a
RS
643extern unsigned char *_cpp_convert_input (cpp_reader *, const char *,
644 unsigned char *, size_t, size_t,
688e7a53 645 const unsigned char **, off_t *);
16dd5cfe 646extern const char *_cpp_default_encoding (void);
47e20491
GK
647extern cpp_hashnode * _cpp_interpret_identifier (cpp_reader *pfile,
648 const unsigned char *id,
649 size_t len);
1613e52b 650
c31a6508 651/* Utility routines and macros. */
c812785a 652#define DSC(str) (const unsigned char *)str, sizeof str - 1
c31a6508 653
8121d2c3
NB
654/* These are inline functions instead of macros so we can get type
655 checking. */
c812785a
RS
656static inline int ustrcmp (const unsigned char *, const unsigned char *);
657static inline int ustrncmp (const unsigned char *, const unsigned char *,
658 size_t);
659static inline size_t ustrlen (const unsigned char *);
660static inline unsigned char *uxstrdup (const unsigned char *);
661static inline unsigned char *ustrchr (const unsigned char *, int);
662static inline int ufputs (const unsigned char *, FILE *);
8121d2c3 663
be0f1e54
PB
664/* Use a const char for the second parameter since it is usually a literal. */
665static inline int ustrcspn (const unsigned char *, const char *);
666
8121d2c3 667static inline int
c812785a 668ustrcmp (const unsigned char *s1, const unsigned char *s2)
8121d2c3
NB
669{
670 return strcmp ((const char *)s1, (const char *)s2);
671}
672
673static inline int
c812785a 674ustrncmp (const unsigned char *s1, const unsigned char *s2, size_t n)
8121d2c3
NB
675{
676 return strncmp ((const char *)s1, (const char *)s2, n);
677}
678
be0f1e54
PB
679static inline int
680ustrcspn (const unsigned char *s1, const char *s2)
681{
682 return strcspn ((const char *)s1, s2);
683}
684
8121d2c3 685static inline size_t
c812785a 686ustrlen (const unsigned char *s1)
8121d2c3
NB
687{
688 return strlen ((const char *)s1);
689}
690
c812785a
RS
691static inline unsigned char *
692uxstrdup (const unsigned char *s1)
8121d2c3 693{
c812785a 694 return (unsigned char *) xstrdup ((const char *)s1);
8121d2c3
NB
695}
696
c812785a
RS
697static inline unsigned char *
698ustrchr (const unsigned char *s1, int c)
8121d2c3 699{
c812785a 700 return (unsigned char *) strchr ((const char *)s1, c);
8121d2c3
NB
701}
702
703static inline int
c812785a 704ufputs (const unsigned char *s, FILE *f)
8121d2c3
NB
705{
706 return fputs ((const char *)s, f);
707}
708
4851089f
ILT
709#ifdef __cplusplus
710}
711#endif
712
4f4e53dd 713#endif /* ! LIBCPP_INTERNAL_H */