Merge trunk version 195164 into gupc branch.
[official-gcc.git] / libcpp / internal.h
blob7731666aba9a076dc428865508d1c37d73ba060c
1 /* Part of CPP library.
2 Copyright (C) 1997-2013 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the
6 Free Software Foundation; either version 3, or (at your option) any
7 later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; see the file COPYING3. If not see
16 <http://www.gnu.org/licenses/>. */
18 /* This header defines all the internal data structures and functions
19 that need to be visible across files. It should not be used outside
20 cpplib. */
22 #ifndef LIBCPP_INTERNAL_H
23 #define LIBCPP_INTERNAL_H
25 #include "symtab.h"
26 #include "cpp-id-data.h"
28 #if HAVE_ICONV
29 #include <iconv.h>
30 #else
31 #define HAVE_ICONV 0
32 typedef int iconv_t; /* dummy */
33 #endif
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
39 struct directive; /* Deliberately incomplete. */
40 struct pending_option;
41 struct op;
42 struct _cpp_strbuf;
44 typedef bool (*convert_f) (iconv_t, const unsigned char *, size_t,
45 struct _cpp_strbuf *);
46 struct cset_converter
48 convert_f func;
49 iconv_t cd;
50 int width;
53 #define BITS_PER_CPPCHAR_T (CHAR_BIT * sizeof (cppchar_t))
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' \
59 || (((prevc) == 'p' || (prevc) == 'P') \
60 && CPP_OPTION (pfile, extended_numbers))))
62 #define CPP_OPTION(PFILE, OPTION) ((PFILE)->opts.OPTION)
63 #define CPP_BUFFER(PFILE) ((PFILE)->buffer)
64 #define CPP_BUF_COLUMN(BUF, CUR) ((CUR) - (BUF)->line_base)
65 #define CPP_BUF_COL(BUF) CPP_BUF_COLUMN(BUF, (BUF)->cur)
67 #define CPP_INCREMENT_LINE(PFILE, COLS_HINT) do { \
68 const struct line_maps *line_table = PFILE->line_table; \
69 const struct line_map *map = \
70 LINEMAPS_LAST_ORDINARY_MAP (line_table); \
71 linenum_type line = SOURCE_LINE (map, line_table->highest_line); \
72 linemap_line_start (PFILE->line_table, line + 1, COLS_HINT); \
73 } while (0)
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
79 /* Host alignment handling. */
80 struct dummy
82 char c;
83 union
85 double d;
86 int *p;
87 } u;
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)
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)
98 /* A generic memory buffer, and operations on it. */
99 typedef struct _cpp_buff _cpp_buff;
100 struct _cpp_buff
102 struct _cpp_buff *next;
103 unsigned char *base, *cur, *limit;
106 extern _cpp_buff *_cpp_get_buff (cpp_reader *, size_t);
107 extern void _cpp_release_buff (cpp_reader *, _cpp_buff *);
108 extern void _cpp_extend_buff (cpp_reader *, _cpp_buff **, size_t);
109 extern _cpp_buff *_cpp_append_extend_buff (cpp_reader *, _cpp_buff *, size_t);
110 extern void _cpp_free_buff (_cpp_buff *);
111 extern unsigned char *_cpp_aligned_alloc (cpp_reader *, size_t);
112 extern unsigned char *_cpp_unaligned_alloc (cpp_reader *, size_t);
114 #define BUFF_ROOM(BUFF) (size_t) ((BUFF)->limit - (BUFF)->cur)
115 #define BUFF_FRONT(BUFF) ((BUFF)->cur)
116 #define BUFF_LIMIT(BUFF) ((BUFF)->limit)
118 /* #include types. */
119 enum include_type {IT_INCLUDE, IT_INCLUDE_NEXT, IT_IMPORT, IT_CMDLINE, IT_DEFAULT};
121 union utoken
123 const cpp_token *token;
124 const cpp_token **ptoken;
127 /* A "run" of tokens; part of a chain of runs. */
128 typedef struct tokenrun tokenrun;
129 struct tokenrun
131 tokenrun *next, *prev;
132 cpp_token *base, *limit;
135 /* Accessor macros for struct cpp_context. */
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)
141 /* This describes some additional data that is added to the macro
142 token context of type cpp_context, when -ftrack-macro-expansion is
143 on. */
144 typedef struct
146 /* The node of the macro we are referring to. */
147 cpp_hashnode *macro_node;
148 /* This buffer contains an array of virtual locations. The virtual
149 location at index 0 is the virtual location of the token at index
150 0 in the current instance of cpp_context; similarly for all the
151 other virtual locations. */
152 source_location *virt_locs;
153 /* This is a pointer to the current virtual location. This is used
154 to iterate over the virtual locations while we iterate over the
155 tokens they belong to. */
156 source_location *cur_virt_loc;
157 } macro_context;
159 /* The kind of tokens carried by a cpp_context. */
160 enum context_tokens_kind {
161 /* This is the value of cpp_context::tokens_kind if u.iso.first
162 contains an instance of cpp_token **. */
163 TOKENS_KIND_INDIRECT,
164 /* This is the value of cpp_context::tokens_kind if u.iso.first
165 contains an instance of cpp_token *. */
166 TOKENS_KIND_DIRECT,
167 /* This is the value of cpp_context::tokens_kind when the token
168 context contains tokens resulting from macro expansion. In that
169 case struct cpp_context::macro points to an instance of struct
170 macro_context. This is used only when the
171 -ftrack-macro-expansion flag is on. */
172 TOKENS_KIND_EXTENDED
175 typedef struct cpp_context cpp_context;
176 struct cpp_context
178 /* Doubly-linked list. */
179 cpp_context *next, *prev;
181 union
183 /* For ISO macro expansion. Contexts other than the base context
184 are contiguous tokens. e.g. macro expansions, expanded
185 argument tokens. */
186 struct
188 union utoken first;
189 union utoken last;
190 } iso;
192 /* For traditional macro expansion. */
193 struct
195 const unsigned char *cur;
196 const unsigned char *rlimit;
197 } trad;
198 } u;
200 /* If non-NULL, a buffer used for storage related to this context.
201 When the context is popped, the buffer is released. */
202 _cpp_buff *buff;
204 /* If tokens_kind is TOKEN_KIND_EXTENDED, then (as we thus are in a
205 macro context) this is a pointer to an instance of macro_context.
206 Otherwise if tokens_kind is *not* TOKEN_KIND_EXTENDED, then, if
207 we are in a macro context, this is a pointer to an instance of
208 cpp_hashnode, representing the name of the macro this context is
209 for. If we are not in a macro context, then this is just NULL.
210 Note that when tokens_kind is TOKEN_KIND_EXTENDED, the memory
211 used by the instance of macro_context pointed to by this member
212 is de-allocated upon de-allocation of the instance of struct
213 cpp_context. */
214 union
216 macro_context *mc;
217 cpp_hashnode *macro;
218 } c;
220 /* This determines the type of tokens held by this context. */
221 enum context_tokens_kind tokens_kind;
224 struct lexer_state
226 /* Nonzero if first token on line is CPP_HASH. */
227 unsigned char in_directive;
229 /* Nonzero if in a directive that will handle padding tokens itself.
230 #include needs this to avoid problems with computed include and
231 spacing between tokens. */
232 unsigned char directive_wants_padding;
234 /* True if we are skipping a failed conditional group. */
235 unsigned char skipping;
237 /* Nonzero if in a directive that takes angle-bracketed headers. */
238 unsigned char angled_headers;
240 /* Nonzero if in a #if or #elif directive. */
241 unsigned char in_expression;
243 /* Nonzero to save comments. Turned off if discard_comments, and in
244 all directives apart from #define. */
245 unsigned char save_comments;
247 /* Nonzero if lexing __VA_ARGS__ is valid. */
248 unsigned char va_args_ok;
250 /* Nonzero if lexing poisoned identifiers is valid. */
251 unsigned char poisoned_ok;
253 /* Nonzero to prevent macro expansion. */
254 unsigned char prevent_expansion;
256 /* Nonzero when parsing arguments to a function-like macro. */
257 unsigned char parsing_args;
259 /* Nonzero if prevent_expansion is true only because output is
260 being discarded. */
261 unsigned char discarding_output;
263 /* Nonzero to skip evaluating part of an expression. */
264 unsigned int skip_eval;
266 /* Nonzero when handling a deferred pragma. */
267 unsigned char in_deferred_pragma;
269 /* Nonzero if the deferred pragma being handled allows macro expansion. */
270 unsigned char pragma_allow_expansion;
273 /* Special nodes - identifiers with predefined significance. */
274 struct spec_nodes
276 cpp_hashnode *n_defined; /* defined operator */
277 cpp_hashnode *n_true; /* C++ keyword true */
278 cpp_hashnode *n_false; /* C++ keyword false */
279 cpp_hashnode *n__VA_ARGS__; /* C99 vararg macros */
282 typedef struct _cpp_line_note _cpp_line_note;
283 struct _cpp_line_note
285 /* Location in the clean line the note refers to. */
286 const unsigned char *pos;
288 /* Type of note. The 9 'from' trigraph characters represent those
289 trigraphs, '\\' an escaped newline, ' ' an escaped newline with
290 intervening space, 0 represents a note that has already been handled,
291 and anything else is invalid. */
292 unsigned int type;
295 /* Represents the contents of a file cpplib has read in. */
296 struct cpp_buffer
298 const unsigned char *cur; /* Current location. */
299 const unsigned char *line_base; /* Start of current physical line. */
300 const unsigned char *next_line; /* Start of to-be-cleaned logical line. */
302 const unsigned char *buf; /* Entire character buffer. */
303 const unsigned char *rlimit; /* Writable byte at end of file. */
305 _cpp_line_note *notes; /* Array of notes. */
306 unsigned int cur_note; /* Next note to process. */
307 unsigned int notes_used; /* Number of notes. */
308 unsigned int notes_cap; /* Size of allocated array. */
310 struct cpp_buffer *prev;
312 /* Pointer into the file table; non-NULL if this is a file buffer.
313 Used for include_next and to record control macros. */
314 struct _cpp_file *file;
316 /* Saved value of __TIMESTAMP__ macro - date and time of last modification
317 of the assotiated file. */
318 const unsigned char *timestamp;
320 /* Value of if_stack at start of this file.
321 Used to prohibit unmatched #endif (etc) in an include file. */
322 struct if_stack *if_stack;
324 /* True if we need to get the next clean line. */
325 bool need_line;
327 /* True if we have already warned about C++ comments in this file.
328 The warning happens only for C89 extended mode with -pedantic on,
329 or for -Wtraditional, and only once per file (otherwise it would
330 be far too noisy). */
331 unsigned int warned_cplusplus_comments : 1;
333 /* True if we don't process trigraphs and escaped newlines. True
334 for preprocessed input, command line directives, and _Pragma
335 buffers. */
336 unsigned int from_stage3 : 1;
338 /* At EOF, a buffer is automatically popped. If RETURN_AT_EOF is
339 true, a CPP_EOF token is then returned. Otherwise, the next
340 token from the enclosing buffer is returned. */
341 unsigned int return_at_eof : 1;
343 /* One for a system header, two for a C system header file that therefore
344 needs to be extern "C" protected in C++, and zero otherwise. */
345 unsigned char sysp;
347 /* The directory of the this buffer's file. Its NAME member is not
348 allocated, so we don't need to worry about freeing it. */
349 struct cpp_dir dir;
351 /* Descriptor for converting from the input character set to the
352 source character set. */
353 struct cset_converter input_cset_desc;
356 /* The list of saved macros by push_macro pragma. */
357 struct def_pragma_macro {
358 /* Chain element to previous saved macro. */
359 struct def_pragma_macro *next;
360 /* Name of the macro. */
361 char *name;
362 /* The stored macro content. */
363 unsigned char *definition;
365 /* Definition line number. */
366 source_location line;
367 /* If macro defined in system header. */
368 unsigned int syshdr : 1;
369 /* Nonzero if it has been expanded or had its existence tested. */
370 unsigned int used : 1;
372 /* Mark if we save an undefined macro. */
373 unsigned int is_undef : 1;
376 /* A cpp_reader encapsulates the "state" of a pre-processor run.
377 Applying cpp_get_token repeatedly yields a stream of pre-processor
378 tokens. Usually, there is only one cpp_reader object active. */
379 struct cpp_reader
381 /* Top of buffer stack. */
382 cpp_buffer *buffer;
384 /* Overlaid buffer (can be different after processing #include). */
385 cpp_buffer *overlaid_buffer;
387 /* Lexer state. */
388 struct lexer_state state;
390 /* Source line tracking. */
391 struct line_maps *line_table;
393 /* The line of the '#' of the current directive. */
394 source_location directive_line;
396 /* Memory buffers. */
397 _cpp_buff *a_buff; /* Aligned permanent storage. */
398 _cpp_buff *u_buff; /* Unaligned permanent storage. */
399 _cpp_buff *free_buffs; /* Free buffer chain. */
401 /* Context stack. */
402 struct cpp_context base_context;
403 struct cpp_context *context;
405 /* If in_directive, the directive if known. */
406 const struct directive *directive;
408 /* Token generated while handling a directive, if any. */
409 cpp_token directive_result;
411 /* When expanding a macro at top-level, this is the location of the
412 macro invocation. */
413 source_location invocation_location;
415 /* Nonzero if we are about to expand a macro. Note that if we are
416 really expanding a macro, the function macro_of_context returns
417 the macro being expanded and this flag is set to false. Client
418 code should use the function in_macro_expansion_p to know if we
419 are either about to expand a macro, or are actually expanding
420 one. */
421 bool about_to_expand_macro_p;
423 /* Search paths for include files. */
424 struct cpp_dir *quote_include; /* "" */
425 struct cpp_dir *bracket_include; /* <> */
426 struct cpp_dir no_search_path; /* No path. */
428 /* Chain of all hashed _cpp_file instances. */
429 struct _cpp_file *all_files;
431 struct _cpp_file *main_file;
433 /* File and directory hash table. */
434 struct htab *file_hash;
435 struct htab *dir_hash;
436 struct file_hash_entry_pool *file_hash_entries;
438 /* Negative path lookup hash table. */
439 struct htab *nonexistent_file_hash;
440 struct obstack nonexistent_file_ob;
442 /* Nonzero means don't look for #include "foo" the source-file
443 directory. */
444 bool quote_ignores_source_dir;
446 /* Nonzero if any file has contained #pragma once or #import has
447 been used. */
448 bool seen_once_only;
450 /* Multiple include optimization. */
451 const cpp_hashnode *mi_cmacro;
452 const cpp_hashnode *mi_ind_cmacro;
453 bool mi_valid;
455 /* Lexing. */
456 cpp_token *cur_token;
457 tokenrun base_run, *cur_run;
458 unsigned int lookaheads;
460 /* Nonzero prevents the lexer from re-using the token runs. */
461 unsigned int keep_tokens;
463 /* Buffer to hold macro definition string. */
464 unsigned char *macro_buffer;
465 unsigned int macro_buffer_len;
467 /* Descriptor for converting from the source character set to the
468 execution character set. */
469 struct cset_converter narrow_cset_desc;
471 /* Descriptor for converting from the source character set to the
472 UTF-8 execution character set. */
473 struct cset_converter utf8_cset_desc;
475 /* Descriptor for converting from the source character set to the
476 UTF-16 execution character set. */
477 struct cset_converter char16_cset_desc;
479 /* Descriptor for converting from the source character set to the
480 UTF-32 execution character set. */
481 struct cset_converter char32_cset_desc;
483 /* Descriptor for converting from the source character set to the
484 wide execution character set. */
485 struct cset_converter wide_cset_desc;
487 /* Date and time text. Calculated together if either is requested. */
488 const unsigned char *date;
489 const unsigned char *time;
491 /* EOF token, and a token forcing paste avoidance. */
492 cpp_token avoid_paste;
493 cpp_token eof;
495 /* Opaque handle to the dependencies of mkdeps.c. */
496 struct deps *deps;
498 /* Obstack holding all macro hash nodes. This never shrinks.
499 See identifiers.c */
500 struct obstack hash_ob;
502 /* Obstack holding buffer and conditional structures. This is a
503 real stack. See directives.c. */
504 struct obstack buffer_ob;
506 /* Pragma table - dynamic, because a library user can add to the
507 list of recognized pragmas. */
508 struct pragma_entry *pragmas;
510 /* Call backs to cpplib client. */
511 struct cpp_callbacks cb;
513 /* Identifier hash table. */
514 struct ht *hash_table;
516 /* Expression parser stack. */
517 struct op *op_stack, *op_limit;
519 /* User visible options. */
520 struct cpp_options opts;
522 /* Special nodes - identifiers with predefined significance to the
523 preprocessor. */
524 struct spec_nodes spec_nodes;
526 /* Whether cpplib owns the hashtable. */
527 bool our_hashtable;
529 /* Traditional preprocessing output buffer (a logical line). */
530 struct
532 unsigned char *base;
533 unsigned char *limit;
534 unsigned char *cur;
535 source_location first_line;
536 } out;
538 /* Used for buffer overlays by traditional.c. */
539 const unsigned char *saved_cur, *saved_rlimit, *saved_line_base;
541 /* A saved list of the defined macros, for dependency checking
542 of precompiled headers. */
543 struct cpp_savedstate *savedstate;
545 /* Next value of __COUNTER__ macro. */
546 unsigned int counter;
548 /* Table of comments, when state.save_comments is true. */
549 cpp_comment_table comments;
551 /* List of saved macros by push_macro. */
552 struct def_pragma_macro *pushed_macros;
554 /* If non-null, the lexer will use this location for the next token
555 instead of getting a location from the linemap. */
556 source_location *forced_token_location_p;
559 /* Character classes. Based on the more primitive macros in safe-ctype.h.
560 If the definition of `numchar' looks odd to you, please look up the
561 definition of a pp-number in the C standard [section 6.4.8 of C99].
563 In the unlikely event that characters other than \r and \n enter
564 the set is_vspace, the macro handle_newline() in lex.c must be
565 updated. */
566 #define _dollar_ok(x) ((x) == '$' && CPP_OPTION (pfile, dollars_in_ident))
568 #define is_idchar(x) (ISIDNUM(x) || _dollar_ok(x))
569 #define is_numchar(x) ISIDNUM(x)
570 #define is_idstart(x) (ISIDST(x) || _dollar_ok(x))
571 #define is_numstart(x) ISDIGIT(x)
572 #define is_hspace(x) ISBLANK(x)
573 #define is_vspace(x) IS_VSPACE(x)
574 #define is_nvspace(x) IS_NVSPACE(x)
575 #define is_space(x) IS_SPACE_OR_NUL(x)
577 /* This table is constant if it can be initialized at compile time,
578 which is the case if cpp was compiled with GCC >=2.7, or another
579 compiler that supports C99. */
580 #if HAVE_DESIGNATED_INITIALIZERS
581 extern const unsigned char _cpp_trigraph_map[UCHAR_MAX + 1];
582 #else
583 extern unsigned char _cpp_trigraph_map[UCHAR_MAX + 1];
584 #endif
586 /* Macros. */
588 static inline int cpp_in_system_header (cpp_reader *);
589 static inline int
590 cpp_in_system_header (cpp_reader *pfile)
592 return pfile->buffer ? pfile->buffer->sysp : 0;
594 #define CPP_PEDANTIC(PF) CPP_OPTION (PF, cpp_pedantic)
595 #define CPP_WTRADITIONAL(PF) CPP_OPTION (PF, cpp_warn_traditional)
597 static inline int cpp_in_primary_file (cpp_reader *);
598 static inline int
599 cpp_in_primary_file (cpp_reader *pfile)
601 return pfile->line_table->depth == 1;
604 /* In macro.c */
605 extern void _cpp_free_definition (cpp_hashnode *);
606 extern bool _cpp_create_definition (cpp_reader *, cpp_hashnode *);
607 extern void _cpp_pop_context (cpp_reader *);
608 extern void _cpp_push_text_context (cpp_reader *, cpp_hashnode *,
609 const unsigned char *, size_t);
610 extern bool _cpp_save_parameter (cpp_reader *, cpp_macro *, cpp_hashnode *);
611 extern bool _cpp_arguments_ok (cpp_reader *, cpp_macro *, const cpp_hashnode *,
612 unsigned int);
613 extern const unsigned char *_cpp_builtin_macro_text (cpp_reader *,
614 cpp_hashnode *);
615 extern int _cpp_warn_if_unused_macro (cpp_reader *, cpp_hashnode *, void *);
616 extern void _cpp_push_token_context (cpp_reader *, cpp_hashnode *,
617 const cpp_token *, unsigned int);
618 extern void _cpp_backup_tokens_direct (cpp_reader *, unsigned int);
620 /* In identifiers.c */
621 extern void _cpp_init_hashtable (cpp_reader *, cpp_hash_table *);
622 extern void _cpp_destroy_hashtable (cpp_reader *);
624 /* In files.c */
625 typedef struct _cpp_file _cpp_file;
626 extern _cpp_file *_cpp_find_file (cpp_reader *, const char *, cpp_dir *,
627 bool, int, bool);
628 extern bool _cpp_find_failed (_cpp_file *);
629 extern void _cpp_mark_file_once_only (cpp_reader *, struct _cpp_file *);
630 extern void _cpp_fake_include (cpp_reader *, const char *);
631 extern bool _cpp_stack_file (cpp_reader *, _cpp_file*, bool);
632 extern bool _cpp_stack_include (cpp_reader *, const char *, int,
633 enum include_type);
634 extern int _cpp_compare_file_date (cpp_reader *, const char *, int);
635 extern void _cpp_report_missing_guards (cpp_reader *);
636 extern void _cpp_init_files (cpp_reader *);
637 extern void _cpp_cleanup_files (cpp_reader *);
638 extern void _cpp_pop_file_buffer (cpp_reader *, struct _cpp_file *);
639 extern bool _cpp_save_file_entries (cpp_reader *pfile, FILE *f);
640 extern bool _cpp_read_file_entries (cpp_reader *, FILE *);
641 extern const char *_cpp_get_file_name (_cpp_file *);
642 extern struct stat *_cpp_get_file_stat (_cpp_file *);
644 /* In expr.c */
645 extern bool _cpp_parse_expr (cpp_reader *, bool);
646 extern struct op *_cpp_expand_op_stack (cpp_reader *);
648 /* In lex.c */
649 extern void _cpp_process_line_notes (cpp_reader *, int);
650 extern void _cpp_clean_line (cpp_reader *);
651 extern bool _cpp_get_fresh_line (cpp_reader *);
652 extern bool _cpp_skip_block_comment (cpp_reader *);
653 extern cpp_token *_cpp_temp_token (cpp_reader *);
654 extern const cpp_token *_cpp_lex_token (cpp_reader *);
655 extern cpp_token *_cpp_lex_direct (cpp_reader *);
656 extern int _cpp_equiv_tokens (const cpp_token *, const cpp_token *);
657 extern void _cpp_init_tokenrun (tokenrun *, unsigned int);
658 extern cpp_hashnode *_cpp_lex_identifier (cpp_reader *, const char *);
659 extern int _cpp_remaining_tokens_num_in_context (cpp_context *);
660 extern void _cpp_init_lexer (void);
662 /* In init.c. */
663 extern void _cpp_maybe_push_include_file (cpp_reader *);
664 extern const char *cpp_named_operator2name (enum cpp_ttype type);
666 /* In directives.c */
667 extern int _cpp_test_assertion (cpp_reader *, unsigned int *);
668 extern int _cpp_handle_directive (cpp_reader *, int);
669 extern void _cpp_define_builtin (cpp_reader *, const char *);
670 extern char ** _cpp_save_pragma_names (cpp_reader *);
671 extern void _cpp_restore_pragma_names (cpp_reader *, char **);
672 extern int _cpp_do__Pragma (cpp_reader *);
673 extern void _cpp_init_directives (cpp_reader *);
674 extern void _cpp_init_internal_pragmas (cpp_reader *);
675 extern void _cpp_do_file_change (cpp_reader *, enum lc_reason, const char *,
676 linenum_type, unsigned int);
677 extern void _cpp_pop_buffer (cpp_reader *);
679 /* In directives.c */
680 struct _cpp_dir_only_callbacks
682 /* Called to print a block of lines. */
683 void (*print_lines) (int, const void *, size_t);
684 void (*maybe_print_line) (source_location);
687 extern void _cpp_preprocess_dir_only (cpp_reader *,
688 const struct _cpp_dir_only_callbacks *);
690 /* In traditional.c. */
691 extern bool _cpp_scan_out_logical_line (cpp_reader *, cpp_macro *);
692 extern bool _cpp_read_logical_line_trad (cpp_reader *);
693 extern void _cpp_overlay_buffer (cpp_reader *pfile, const unsigned char *,
694 size_t);
695 extern void _cpp_remove_overlay (cpp_reader *);
696 extern bool _cpp_create_trad_definition (cpp_reader *, cpp_macro *);
697 extern bool _cpp_expansions_different_trad (const cpp_macro *,
698 const cpp_macro *);
699 extern unsigned char *_cpp_copy_replacement_text (const cpp_macro *,
700 unsigned char *);
701 extern size_t _cpp_replacement_text_len (const cpp_macro *);
703 /* In charset.c. */
705 /* The normalization state at this point in the sequence.
706 It starts initialized to all zeros, and at the end
707 'level' is the normalization level of the sequence. */
709 struct normalize_state
711 /* The previous character. */
712 cppchar_t previous;
713 /* The combining class of the previous character. */
714 unsigned char prev_class;
715 /* The lowest normalization level so far. */
716 enum cpp_normalize_level level;
718 #define INITIAL_NORMALIZE_STATE { 0, 0, normalized_KC }
719 #define NORMALIZE_STATE_RESULT(st) ((st)->level)
721 /* We saw a character that matches ISIDNUM(), update a
722 normalize_state appropriately. */
723 #define NORMALIZE_STATE_UPDATE_IDNUM(st) \
724 ((st)->previous = 0, (st)->prev_class = 0)
726 extern cppchar_t _cpp_valid_ucn (cpp_reader *, const unsigned char **,
727 const unsigned char *, int,
728 struct normalize_state *state);
729 extern void _cpp_destroy_iconv (cpp_reader *);
730 extern unsigned char *_cpp_convert_input (cpp_reader *, const char *,
731 unsigned char *, size_t, size_t,
732 const unsigned char **, off_t *);
733 extern const char *_cpp_default_encoding (void);
734 extern cpp_hashnode * _cpp_interpret_identifier (cpp_reader *pfile,
735 const unsigned char *id,
736 size_t len);
738 /* Utility routines and macros. */
739 #define DSC(str) (const unsigned char *)str, sizeof str - 1
741 /* These are inline functions instead of macros so we can get type
742 checking. */
743 static inline int ustrcmp (const unsigned char *, const unsigned char *);
744 static inline int ustrncmp (const unsigned char *, const unsigned char *,
745 size_t);
746 static inline size_t ustrlen (const unsigned char *);
747 static inline const unsigned char *uxstrdup (const unsigned char *);
748 static inline const unsigned char *ustrchr (const unsigned char *, int);
749 static inline int ufputs (const unsigned char *, FILE *);
751 /* Use a const char for the second parameter since it is usually a literal. */
752 static inline int ustrcspn (const unsigned char *, const char *);
754 static inline int
755 ustrcmp (const unsigned char *s1, const unsigned char *s2)
757 return strcmp ((const char *)s1, (const char *)s2);
760 static inline int
761 ustrncmp (const unsigned char *s1, const unsigned char *s2, size_t n)
763 return strncmp ((const char *)s1, (const char *)s2, n);
766 static inline int
767 ustrcspn (const unsigned char *s1, const char *s2)
769 return strcspn ((const char *)s1, s2);
772 static inline size_t
773 ustrlen (const unsigned char *s1)
775 return strlen ((const char *)s1);
778 static inline const unsigned char *
779 uxstrdup (const unsigned char *s1)
781 return (const unsigned char *) xstrdup ((const char *)s1);
784 static inline const unsigned char *
785 ustrchr (const unsigned char *s1, int c)
787 return (const unsigned char *) strchr ((const char *)s1, c);
790 static inline int
791 ufputs (const unsigned char *s, FILE *f)
793 return fputs ((const char *)s, f);
796 /* In line-map.c. */
798 /* Create a macro map. A macro map encodes source locations of tokens
799 that are part of a macro replacement-list, at a macro expansion
800 point. See the extensive comments of struct line_map and struct
801 line_map_macro, in line-map.h.
803 This map shall be created when the macro is expanded. The map
804 encodes the source location of the expansion point of the macro as
805 well as the "original" source location of each token that is part
806 of the macro replacement-list. If a macro is defined but never
807 expanded, it has no macro map. SET is the set of maps the macro
808 map should be part of. MACRO_NODE is the macro which the new macro
809 map should encode source locations for. EXPANSION is the location
810 of the expansion point of MACRO. For function-like macros
811 invocations, it's best to make it point to the closing parenthesis
812 of the macro, rather than the the location of the first character
813 of the macro. NUM_TOKENS is the number of tokens that are part of
814 the replacement-list of MACRO. */
815 const struct line_map *linemap_enter_macro (struct line_maps *,
816 struct cpp_hashnode*,
817 source_location,
818 unsigned int);
820 /* Create and return a virtual location for a token that is part of a
821 macro expansion-list at a macro expansion point. See the comment
822 inside struct line_map_macro to see what an expansion-list exactly
825 A call to this function must come after a call to
826 linemap_enter_macro.
828 MAP is the map into which the source location is created. TOKEN_NO
829 is the index of the token in the macro replacement-list, starting
830 at number 0.
832 ORIG_LOC is the location of the token outside of this macro
833 expansion. If the token comes originally from the macro
834 definition, it is the locus in the macro definition; otherwise it
835 is a location in the context of the caller of this macro expansion
836 (which is a virtual location or a source location if the caller is
837 itself a macro expansion or not).
839 MACRO_DEFINITION_LOC is the location in the macro definition,
840 either of the token itself or of a macro parameter that it
841 replaces. */
842 source_location linemap_add_macro_token (const struct line_map *,
843 unsigned int,
844 source_location,
845 source_location);
847 /* Return the source line number corresponding to source location
848 LOCATION. SET is the line map set LOCATION comes from. If
849 LOCATION is the location of token that is part of the
850 expansion-list of a macro expansion return the line number of the
851 macro expansion point. */
852 int linemap_get_expansion_line (struct line_maps *,
853 source_location);
855 /* Return the path of the file corresponding to source code location
856 LOCATION.
858 If LOCATION is the location of a token that is part of the
859 replacement-list of a macro expansion return the file path of the
860 macro expansion point.
862 SET is the line map set LOCATION comes from. */
863 const char* linemap_get_expansion_filename (struct line_maps *,
864 source_location);
866 #ifdef __cplusplus
868 #endif
870 #endif /* ! LIBCPP_INTERNAL_H */