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