Neil Booth | a949941 | 2000-11-09 21:18:15 +0000 | [diff] [blame] | 1 | /* CPP Library. (Directive handling.) |
Jeff Law | 5e7b4e2 | 2000-02-25 22:59:31 -0700 | [diff] [blame] | 2 | Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, |
Tom Tromey | 705e2d2 | 2007-01-04 15:32:26 +0000 | [diff] [blame] | 3 | 1999, 2000, 2001, 2002, 2003, 2004, 2005, |
Joseph Myers | 148e421 | 2009-03-29 23:56:07 +0100 | [diff] [blame] | 4 | 2007, 2008, 2009 Free Software Foundation, Inc. |
Richard Kenner | 4c8cc61 | 1997-02-16 08:08:25 -0500 | [diff] [blame] | 5 | Contributed by Per Bothner, 1994-95. |
Richard Kenner | d8bfa78 | 1997-01-03 08:19:34 -0500 | [diff] [blame] | 6 | Based on CCCP program by Paul Rubin, June 1986 |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 7 | Adapted to ANSI C, Richard Stallman, Jan 1987 |
| 8 | |
| 9 | This program is free software; you can redistribute it and/or modify it |
| 10 | under the terms of the GNU General Public License as published by the |
Jakub Jelinek | 748086b | 2009-04-09 17:00:19 +0200 | [diff] [blame] | 11 | Free Software Foundation; either version 3, or (at your option) any |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 12 | later version. |
| 13 | |
| 14 | This program is distributed in the hope that it will be useful, |
| 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | GNU General Public License for more details. |
| 18 | |
| 19 | You should have received a copy of the GNU General Public License |
Jakub Jelinek | 748086b | 2009-04-09 17:00:19 +0200 | [diff] [blame] | 20 | along with this program; see the file COPYING3. If not see |
| 21 | <http://www.gnu.org/licenses/>. */ |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 22 | |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 23 | #include "config.h" |
Kaveh R. Ghazi | b04cd507 | 1998-03-30 12:05:54 +0000 | [diff] [blame] | 24 | #include "system.h" |
Jeff Law | 956d695 | 1997-12-06 17:31:01 -0700 | [diff] [blame] | 25 | #include "cpplib.h" |
Paolo Bonzini | 4f4e53dd | 2004-05-24 10:50:45 +0000 | [diff] [blame] | 26 | #include "internal.h" |
Zack Weinberg | c6e8380 | 2004-06-05 20:58:06 +0000 | [diff] [blame] | 27 | #include "mkdeps.h" |
Zack Weinberg | c71f835 | 2000-07-05 05:33:57 +0000 | [diff] [blame] | 28 | #include "obstack.h" |
Jeff Law | 956d695 | 1997-12-06 17:31:01 -0700 | [diff] [blame] | 29 | |
Zack Weinberg | 88ae23e | 2000-03-08 23:35:19 +0000 | [diff] [blame] | 30 | /* Stack of conditionals currently in progress |
| 31 | (including both successful and failing conditionals). */ |
Zack Weinberg | 88ae23e | 2000-03-08 23:35:19 +0000 | [diff] [blame] | 32 | struct if_stack |
| 33 | { |
| 34 | struct if_stack *next; |
Manuel López-Ibáñez | 1bb6466 | 2008-07-21 09:33:38 +0000 | [diff] [blame] | 35 | linenum_type line; /* Line where condition started. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 36 | const cpp_hashnode *mi_cmacro;/* macro name for #ifndef around entire file */ |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 37 | bool skip_elses; /* Can future #else / #elif be skipped? */ |
| 38 | bool was_skipping; /* If were skipping on entry. */ |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 39 | int type; /* Most recent conditional for diagnostics. */ |
Zack Weinberg | 88ae23e | 2000-03-08 23:35:19 +0000 | [diff] [blame] | 40 | }; |
Zack Weinberg | 88ae23e | 2000-03-08 23:35:19 +0000 | [diff] [blame] | 41 | |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 42 | /* Contains a registered pragma or pragma namespace. */ |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 43 | typedef void (*pragma_cb) (cpp_reader *); |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 44 | struct pragma_entry |
| 45 | { |
| 46 | struct pragma_entry *next; |
Neil Booth | 4b115ff | 2001-10-14 23:04:13 +0000 | [diff] [blame] | 47 | const cpp_hashnode *pragma; /* Name and length. */ |
Zack Weinberg | 21b1149 | 2004-09-09 19:16:56 +0000 | [diff] [blame] | 48 | bool is_nspace; |
| 49 | bool is_internal; |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 50 | bool is_deferred; |
| 51 | bool allow_expansion; |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 52 | union { |
| 53 | pragma_cb handler; |
| 54 | struct pragma_entry *space; |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 55 | unsigned int ident; |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 56 | } u; |
| 57 | }; |
| 58 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 59 | /* Values for the origin field of struct directive. KANDR directives |
| 60 | come from traditional (K&R) C. STDC89 directives come from the |
| 61 | 1989 C standard. EXTENSION directives are extensions. */ |
| 62 | #define KANDR 0 |
| 63 | #define STDC89 1 |
| 64 | #define EXTENSION 2 |
| 65 | |
| 66 | /* Values for the flags field of struct directive. COND indicates a |
| 67 | conditional; IF_COND an opening conditional. INCL means to treat |
| 68 | "..." and <...> as q-char and h-char sequences respectively. IN_I |
| 69 | means this directive should be handled even if -fpreprocessed is in |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 70 | effect (these are the directives with callback hooks). |
| 71 | |
Neil Booth | d97371e | 2002-06-18 06:27:40 +0000 | [diff] [blame] | 72 | EXPAND is set on directives that are always macro-expanded. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 73 | #define COND (1 << 0) |
| 74 | #define IF_COND (1 << 1) |
| 75 | #define INCL (1 << 2) |
| 76 | #define IN_I (1 << 3) |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 77 | #define EXPAND (1 << 4) |
Tom Tromey | 899015a | 2008-05-13 14:50:27 +0000 | [diff] [blame] | 78 | #define DEPRECATED (1 << 5) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 79 | |
| 80 | /* Defines one #-directive, including how to handle it. */ |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 81 | typedef void (*directive_handler) (cpp_reader *); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 82 | typedef struct directive directive; |
| 83 | struct directive |
| 84 | { |
| 85 | directive_handler handler; /* Function to handle directive. */ |
Neil Booth | 562a5c2 | 2002-04-21 18:46:42 +0000 | [diff] [blame] | 86 | const uchar *name; /* Name of directive. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 87 | unsigned short length; /* Length of name. */ |
| 88 | unsigned char origin; /* Origin of directive. */ |
| 89 | unsigned char flags; /* Flags describing this directive. */ |
| 90 | }; |
| 91 | |
Zack Weinberg | 1316f1f | 2000-02-06 07:53:50 +0000 | [diff] [blame] | 92 | /* Forward declarations. */ |
| 93 | |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 94 | static void skip_rest_of_line (cpp_reader *); |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 95 | static void check_eol (cpp_reader *, bool); |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 96 | static void start_directive (cpp_reader *); |
| 97 | static void prepare_directive_trad (cpp_reader *); |
| 98 | static void end_directive (cpp_reader *, int); |
| 99 | static void directive_diagnostics (cpp_reader *, const directive *, int); |
| 100 | static void run_directive (cpp_reader *, int, const char *, size_t); |
| 101 | static char *glue_header_name (cpp_reader *); |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 102 | static const char *parse_include (cpp_reader *, int *, const cpp_token ***, |
| 103 | source_location *); |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 104 | static void push_conditional (cpp_reader *, int, int, const cpp_hashnode *); |
| 105 | static unsigned int read_flag (cpp_reader *, unsigned int); |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 106 | static bool strtolinenum (const uchar *, size_t, linenum_type *, bool *); |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 107 | static void do_diagnostic (cpp_reader *, int, int); |
Tom Tromey | ee1c2a1 | 2007-01-12 19:46:49 +0000 | [diff] [blame] | 108 | static cpp_hashnode *lex_macro_node (cpp_reader *, bool); |
Geoffrey Keating | d1bd0de | 2003-07-11 08:33:21 +0000 | [diff] [blame] | 109 | static int undefine_macros (cpp_reader *, cpp_hashnode *, void *); |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 110 | static void do_include_common (cpp_reader *, enum include_type); |
| 111 | static struct pragma_entry *lookup_pragma_entry (struct pragma_entry *, |
| 112 | const cpp_hashnode *); |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 113 | static int count_registered_pragmas (struct pragma_entry *); |
| 114 | static char ** save_registered_pragmas (struct pragma_entry *, char **); |
| 115 | static char ** restore_registered_pragmas (cpp_reader *, struct pragma_entry *, |
| 116 | char **); |
| 117 | static void do_pragma_once (cpp_reader *); |
| 118 | static void do_pragma_poison (cpp_reader *); |
| 119 | static void do_pragma_system_header (cpp_reader *); |
| 120 | static void do_pragma_dependency (cpp_reader *); |
| 121 | static void do_linemarker (cpp_reader *); |
| 122 | static const cpp_token *get_token_no_padding (cpp_reader *); |
| 123 | static const cpp_token *get__Pragma_string (cpp_reader *); |
| 124 | static void destringize_and_run (cpp_reader *, const cpp_string *); |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 125 | static int parse_answer (cpp_reader *, struct answer **, int, source_location); |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 126 | static cpp_hashnode *parse_assertion (cpp_reader *, struct answer **, int); |
| 127 | static struct answer ** find_answer (cpp_hashnode *, const struct answer *); |
| 128 | static void handle_assertion (cpp_reader *, const char *, int); |
Kai Tietz | 17e7cb8 | 2009-11-11 18:37:19 +0000 | [diff] [blame] | 129 | static void do_pragma_push_macro (cpp_reader *); |
| 130 | static void do_pragma_pop_macro (cpp_reader *); |
Kaveh R. Ghazi | 487a6e0 | 1998-05-19 08:42:48 +0000 | [diff] [blame] | 131 | |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 132 | /* This is the table of directive handlers. It is ordered by |
| 133 | frequency of occurrence; the numbers at the end are directive |
| 134 | counts from all the source code I have lying around (egcs and libc |
| 135 | CVS as of 1999-05-18, plus grub-0.5.91, linux-2.2.9, and |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 136 | pcmcia-cs-3.0.9). This is no longer important as directive lookup |
Tom Tromey | 899015a | 2008-05-13 14:50:27 +0000 | [diff] [blame] | 137 | is now O(1). All extensions other than #warning, #include_next, |
| 138 | and #import are deprecated. The name is where the extension |
| 139 | appears to have come from. */ |
Jeff Law | e9a25f7 | 1997-11-02 14:19:36 -0700 | [diff] [blame] | 140 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 141 | #define DIRECTIVE_TABLE \ |
| 142 | D(define, T_DEFINE = 0, KANDR, IN_I) /* 270554 */ \ |
Neil Booth | d97371e | 2002-06-18 06:27:40 +0000 | [diff] [blame] | 143 | D(include, T_INCLUDE, KANDR, INCL | EXPAND) /* 52262 */ \ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 144 | D(endif, T_ENDIF, KANDR, COND) /* 45855 */ \ |
| 145 | D(ifdef, T_IFDEF, KANDR, COND | IF_COND) /* 22000 */ \ |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 146 | D(if, T_IF, KANDR, COND | IF_COND | EXPAND) /* 18162 */ \ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 147 | D(else, T_ELSE, KANDR, COND) /* 9863 */ \ |
| 148 | D(ifndef, T_IFNDEF, KANDR, COND | IF_COND) /* 9675 */ \ |
| 149 | D(undef, T_UNDEF, KANDR, IN_I) /* 4837 */ \ |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 150 | D(line, T_LINE, KANDR, EXPAND) /* 2465 */ \ |
| 151 | D(elif, T_ELIF, STDC89, COND | EXPAND) /* 610 */ \ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 152 | D(error, T_ERROR, STDC89, 0) /* 475 */ \ |
| 153 | D(pragma, T_PRAGMA, STDC89, IN_I) /* 195 */ \ |
| 154 | D(warning, T_WARNING, EXTENSION, 0) /* 22 */ \ |
Neil Booth | d97371e | 2002-06-18 06:27:40 +0000 | [diff] [blame] | 155 | D(include_next, T_INCLUDE_NEXT, EXTENSION, INCL | EXPAND) /* 19 */ \ |
Neil Vachharajani | 2214382 | 2009-10-10 00:34:21 +0000 | [diff] [blame] | 156 | D(ident, T_IDENT, EXTENSION, IN_I) /* 11 */ \ |
Neil Booth | d97371e | 2002-06-18 06:27:40 +0000 | [diff] [blame] | 157 | D(import, T_IMPORT, EXTENSION, INCL | EXPAND) /* 0 ObjC */ \ |
Tom Tromey | 899015a | 2008-05-13 14:50:27 +0000 | [diff] [blame] | 158 | D(assert, T_ASSERT, EXTENSION, DEPRECATED) /* 0 SVR4 */ \ |
| 159 | D(unassert, T_UNASSERT, EXTENSION, DEPRECATED) /* 0 SVR4 */ \ |
Neil Vachharajani | 2214382 | 2009-10-10 00:34:21 +0000 | [diff] [blame] | 160 | D(sccs, T_SCCS, EXTENSION, IN_I) /* 0 SVR4? */ |
Zack Weinberg | 1ed17cd | 2005-05-12 18:31:38 +0000 | [diff] [blame] | 161 | |
| 162 | /* #sccs is synonymous with #ident. */ |
| 163 | #define do_sccs do_ident |
Zack Weinberg | 07aa0b0 | 2000-04-01 22:55:25 +0000 | [diff] [blame] | 164 | |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 165 | /* Use the table to generate a series of prototypes, an enum for the |
| 166 | directive names, and an array of directive handlers. */ |
| 167 | |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 168 | #define D(name, t, o, f) static void do_##name (cpp_reader *); |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 169 | DIRECTIVE_TABLE |
| 170 | #undef D |
| 171 | |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 172 | #define D(n, tag, o, f) tag, |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 173 | enum |
| 174 | { |
| 175 | DIRECTIVE_TABLE |
| 176 | N_DIRECTIVES |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 177 | }; |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 178 | #undef D |
| 179 | |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 180 | #define D(name, t, origin, flags) \ |
Kaveh R. Ghazi | 9a23858 | 2003-06-16 19:14:22 +0000 | [diff] [blame] | 181 | { do_##name, (const uchar *) #name, \ |
| 182 | sizeof #name - 1, origin, flags }, |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 183 | static const directive dtable[] = |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 184 | { |
| 185 | DIRECTIVE_TABLE |
| 186 | }; |
| 187 | #undef D |
| 188 | #undef DIRECTIVE_TABLE |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 189 | |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 190 | /* Wrapper struct directive for linemarkers. |
| 191 | The origin is more or less true - the original K+R cpp |
| 192 | did use this notation in its preprocessed output. */ |
| 193 | static const directive linemarker_dir = |
| 194 | { |
Kris Van Hees | b6baa67 | 2008-04-18 13:58:08 +0000 | [diff] [blame] | 195 | do_linemarker, UC"#", 1, KANDR, IN_I |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 196 | }; |
| 197 | |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 198 | #define SEEN_EOL() (pfile->cur_token[-1].type == CPP_EOF) |
Neil Booth | 67821e3 | 2001-08-05 17:31:25 +0000 | [diff] [blame] | 199 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 200 | /* Skip any remaining tokens in a directive. */ |
| 201 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 202 | skip_rest_of_line (cpp_reader *pfile) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 203 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 204 | /* Discard all stacked contexts. */ |
Neil Booth | 8128ccc | 2002-11-18 20:43:40 +0000 | [diff] [blame] | 205 | while (pfile->context->prev) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 206 | _cpp_pop_context (pfile); |
| 207 | |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 208 | /* Sweep up all tokens remaining on the line. */ |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 209 | if (! SEEN_EOL ()) |
| 210 | while (_cpp_lex_token (pfile)->type != CPP_EOF) |
| 211 | ; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 212 | } |
| 213 | |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 214 | /* Ensure there are no stray tokens at the end of a directive. If |
| 215 | EXPAND is true, tokens macro-expanding to nothing are allowed. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 216 | static void |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 217 | check_eol (cpp_reader *pfile, bool expand) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 218 | { |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 219 | if (! SEEN_EOL () && (expand |
| 220 | ? cpp_get_token (pfile) |
| 221 | : _cpp_lex_token (pfile))->type != CPP_EOF) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 222 | cpp_error (pfile, CPP_DL_PEDWARN, "extra tokens at end of #%s directive", |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 223 | pfile->directive->name); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 224 | } |
| 225 | |
Ian Lance Taylor | cbc43ae | 2005-10-04 18:06:19 +0000 | [diff] [blame] | 226 | /* Ensure there are no stray tokens other than comments at the end of |
| 227 | a directive, and gather the comments. */ |
| 228 | static const cpp_token ** |
| 229 | check_eol_return_comments (cpp_reader *pfile) |
| 230 | { |
| 231 | size_t c; |
| 232 | size_t capacity = 8; |
| 233 | const cpp_token **buf; |
| 234 | |
| 235 | buf = XNEWVEC (const cpp_token *, capacity); |
| 236 | c = 0; |
| 237 | if (! SEEN_EOL ()) |
| 238 | { |
| 239 | while (1) |
| 240 | { |
| 241 | const cpp_token *tok; |
| 242 | |
| 243 | tok = _cpp_lex_token (pfile); |
| 244 | if (tok->type == CPP_EOF) |
| 245 | break; |
| 246 | if (tok->type != CPP_COMMENT) |
| 247 | cpp_error (pfile, CPP_DL_PEDWARN, |
| 248 | "extra tokens at end of #%s directive", |
| 249 | pfile->directive->name); |
| 250 | else |
| 251 | { |
| 252 | if (c + 1 >= capacity) |
| 253 | { |
| 254 | capacity *= 2; |
| 255 | buf = XRESIZEVEC (const cpp_token *, buf, capacity); |
| 256 | } |
| 257 | buf[c] = tok; |
| 258 | ++c; |
| 259 | } |
| 260 | } |
| 261 | } |
| 262 | buf[c] = NULL; |
| 263 | return buf; |
| 264 | } |
| 265 | |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 266 | /* Called when entering a directive, _Pragma or command-line directive. */ |
| 267 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 268 | start_directive (cpp_reader *pfile) |
Zack Weinberg | c5a0473 | 2000-04-25 19:32:36 +0000 | [diff] [blame] | 269 | { |
Neil Booth | 7f2f1a6 | 2000-11-14 18:32:06 +0000 | [diff] [blame] | 270 | /* Setup in-directive state. */ |
| 271 | pfile->state.in_directive = 1; |
| 272 | pfile->state.save_comments = 0; |
Zack Weinberg | 21b1149 | 2004-09-09 19:16:56 +0000 | [diff] [blame] | 273 | pfile->directive_result.type = CPP_PADDING; |
Neil Booth | 7f2f1a6 | 2000-11-14 18:32:06 +0000 | [diff] [blame] | 274 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 275 | /* Some handlers need the position of the # for diagnostics. */ |
Per Bothner | 500bee0 | 2004-04-22 19:22:27 -0700 | [diff] [blame] | 276 | pfile->directive_line = pfile->line_table->highest_line; |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | /* Called when leaving a directive, _Pragma or command-line directive. */ |
| 280 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 281 | end_directive (cpp_reader *pfile, int skip_line) |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 282 | { |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 283 | if (pfile->state.in_deferred_pragma) |
| 284 | ; |
| 285 | else if (CPP_OPTION (pfile, traditional)) |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 286 | { |
Neil Booth | d97371e | 2002-06-18 06:27:40 +0000 | [diff] [blame] | 287 | /* Revert change of prepare_directive_trad. */ |
| 288 | pfile->state.prevent_expansion--; |
| 289 | |
Neil Booth | b66377c | 2002-06-13 21:16:00 +0000 | [diff] [blame] | 290 | if (pfile->directive != &dtable[T_DEFINE]) |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 291 | _cpp_remove_overlay (pfile); |
| 292 | } |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 293 | /* We don't skip for an assembler #. */ |
Neil Booth | b66377c | 2002-06-13 21:16:00 +0000 | [diff] [blame] | 294 | else if (skip_line) |
Neil Booth | 67821e3 | 2001-08-05 17:31:25 +0000 | [diff] [blame] | 295 | { |
| 296 | skip_rest_of_line (pfile); |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 297 | if (!pfile->keep_tokens) |
| 298 | { |
| 299 | pfile->cur_run = &pfile->base_run; |
| 300 | pfile->cur_token = pfile->base_run.base; |
| 301 | } |
Neil Booth | 67821e3 | 2001-08-05 17:31:25 +0000 | [diff] [blame] | 302 | } |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 303 | |
| 304 | /* Restore state. */ |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 305 | pfile->state.save_comments = ! CPP_OPTION (pfile, discard_comments); |
| 306 | pfile->state.in_directive = 0; |
Neil Booth | d97371e | 2002-06-18 06:27:40 +0000 | [diff] [blame] | 307 | pfile->state.in_expression = 0; |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 308 | pfile->state.angled_headers = 0; |
| 309 | pfile->directive = 0; |
| 310 | } |
| 311 | |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 312 | /* Prepare to handle the directive in pfile->directive. */ |
| 313 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 314 | prepare_directive_trad (cpp_reader *pfile) |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 315 | { |
Neil Booth | 951a076 | 2002-06-27 06:01:58 +0000 | [diff] [blame] | 316 | if (pfile->directive != &dtable[T_DEFINE]) |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 317 | { |
Neil Booth | b66377c | 2002-06-13 21:16:00 +0000 | [diff] [blame] | 318 | bool no_expand = (pfile->directive |
| 319 | && ! (pfile->directive->flags & EXPAND)); |
Neil Booth | 974c43f | 2002-06-13 06:25:28 +0000 | [diff] [blame] | 320 | bool was_skipping = pfile->state.skipping; |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 321 | |
Neil Booth | d97371e | 2002-06-18 06:27:40 +0000 | [diff] [blame] | 322 | pfile->state.in_expression = (pfile->directive == &dtable[T_IF] |
| 323 | || pfile->directive == &dtable[T_ELIF]); |
Neil Booth | 45f2492 | 2003-12-12 07:00:29 +0000 | [diff] [blame] | 324 | if (pfile->state.in_expression) |
| 325 | pfile->state.skipping = false; |
| 326 | |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 327 | if (no_expand) |
| 328 | pfile->state.prevent_expansion++; |
Zack Weinberg | 4383964 | 2003-07-13 17:34:18 +0000 | [diff] [blame] | 329 | _cpp_scan_out_logical_line (pfile, NULL); |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 330 | if (no_expand) |
| 331 | pfile->state.prevent_expansion--; |
Neil Booth | 45f2492 | 2003-12-12 07:00:29 +0000 | [diff] [blame] | 332 | |
Neil Booth | 974c43f | 2002-06-13 06:25:28 +0000 | [diff] [blame] | 333 | pfile->state.skipping = was_skipping; |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 334 | _cpp_overlay_buffer (pfile, pfile->out.base, |
| 335 | pfile->out.cur - pfile->out.base); |
| 336 | } |
Neil Booth | d97371e | 2002-06-18 06:27:40 +0000 | [diff] [blame] | 337 | |
| 338 | /* Stop ISO C from expanding anything. */ |
| 339 | pfile->state.prevent_expansion++; |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 340 | } |
| 341 | |
Kazu Hirata | da7d830 | 2002-09-22 02:03:17 +0000 | [diff] [blame] | 342 | /* Output diagnostics for a directive DIR. INDENTED is nonzero if |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 343 | the '#' was indented. */ |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 344 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 345 | directive_diagnostics (cpp_reader *pfile, const directive *dir, int indented) |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 346 | { |
Tom Tromey | 899015a | 2008-05-13 14:50:27 +0000 | [diff] [blame] | 347 | /* Issue -pedantic or deprecated warnings for extensions. We let |
| 348 | -pedantic take precedence if both are applicable. */ |
| 349 | if (! pfile->state.skipping) |
| 350 | { |
| 351 | if (dir->origin == EXTENSION |
| 352 | && !(dir == &dtable[T_IMPORT] && CPP_OPTION (pfile, objc)) |
| 353 | && CPP_PEDANTIC (pfile)) |
| 354 | cpp_error (pfile, CPP_DL_PEDWARN, "#%s is a GCC extension", dir->name); |
| 355 | else if (((dir->flags & DEPRECATED) != 0 |
| 356 | || (dir == &dtable[T_IMPORT] && !CPP_OPTION (pfile, objc))) |
| 357 | && CPP_OPTION (pfile, warn_deprecated)) |
| 358 | cpp_error (pfile, CPP_DL_WARNING, "#%s is a deprecated GCC extension", |
| 359 | dir->name); |
| 360 | } |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 361 | |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 362 | /* Traditionally, a directive is ignored unless its # is in |
| 363 | column 1. Therefore in code intended to work with K+R |
| 364 | compilers, directives added by C89 must have their # |
| 365 | indented, and directives present in traditional C must not. |
| 366 | This is true even of directives in skipped conditional |
| 367 | blocks. #elif cannot be used at all. */ |
| 368 | if (CPP_WTRADITIONAL (pfile)) |
| 369 | { |
| 370 | if (dir == &dtable[T_ELIF]) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 371 | cpp_error (pfile, CPP_DL_WARNING, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 372 | "suggest not using #elif in traditional C"); |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 373 | else if (indented && dir->origin == KANDR) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 374 | cpp_error (pfile, CPP_DL_WARNING, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 375 | "traditional C ignores #%s with the # indented", |
| 376 | dir->name); |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 377 | else if (!indented && dir->origin != KANDR) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 378 | cpp_error (pfile, CPP_DL_WARNING, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 379 | "suggest hiding #%s from traditional C with an indented #", |
| 380 | dir->name); |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 381 | } |
| 382 | } |
| 383 | |
Kazu Hirata | da7d830 | 2002-09-22 02:03:17 +0000 | [diff] [blame] | 384 | /* Check if we have a known directive. INDENTED is nonzero if the |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 385 | '#' of the directive was indented. This function is in this file |
Gabriel Dos Reis | a2566ae | 2005-01-02 01:32:21 +0000 | [diff] [blame] | 386 | to save unnecessarily exporting dtable etc. to lex.c. Returns |
Kazu Hirata | da7d830 | 2002-09-22 02:03:17 +0000 | [diff] [blame] | 387 | nonzero if the line of tokens has been handled, zero if we should |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 388 | continue processing the line. */ |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 389 | int |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 390 | _cpp_handle_directive (cpp_reader *pfile, int indented) |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 391 | { |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 392 | const directive *dir = 0; |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 393 | const cpp_token *dname; |
Neil Booth | e808ec9 | 2002-02-27 07:24:53 +0000 | [diff] [blame] | 394 | bool was_parsing_args = pfile->state.parsing_args; |
Zack Weinberg | c6e8380 | 2004-06-05 20:58:06 +0000 | [diff] [blame] | 395 | bool was_discarding_output = pfile->state.discarding_output; |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 396 | int skip = 1; |
| 397 | |
Zack Weinberg | c6e8380 | 2004-06-05 20:58:06 +0000 | [diff] [blame] | 398 | if (was_discarding_output) |
| 399 | pfile->state.prevent_expansion = 0; |
| 400 | |
Neil Booth | e808ec9 | 2002-02-27 07:24:53 +0000 | [diff] [blame] | 401 | if (was_parsing_args) |
| 402 | { |
| 403 | if (CPP_OPTION (pfile, pedantic)) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 404 | cpp_error (pfile, CPP_DL_PEDWARN, |
Neil Booth | e808ec9 | 2002-02-27 07:24:53 +0000 | [diff] [blame] | 405 | "embedding a directive within macro arguments is not portable"); |
| 406 | pfile->state.parsing_args = 0; |
| 407 | pfile->state.prevent_expansion = 0; |
| 408 | } |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 409 | start_directive (pfile); |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 410 | dname = _cpp_lex_token (pfile); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 411 | |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 412 | if (dname->type == CPP_NAME) |
Neil Booth | 0d9f234 | 2000-09-18 18:43:05 +0000 | [diff] [blame] | 413 | { |
Joseph Myers | 9a0c618 | 2009-05-10 15:27:32 +0100 | [diff] [blame] | 414 | if (dname->val.node.node->is_directive) |
| 415 | dir = &dtable[dname->val.node.node->directive_index]; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 416 | } |
Kazu Hirata | 05713b8 | 2002-09-15 18:24:08 +0000 | [diff] [blame] | 417 | /* We do not recognize the # followed by a number extension in |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 418 | assembler code. */ |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 419 | else if (dname->type == CPP_NUMBER && CPP_OPTION (pfile, lang) != CLK_ASM) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 420 | { |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 421 | dir = &linemarker_dir; |
| 422 | if (CPP_PEDANTIC (pfile) && ! CPP_OPTION (pfile, preprocessed) |
| 423 | && ! pfile->state.skipping) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 424 | cpp_error (pfile, CPP_DL_PEDWARN, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 425 | "style of line directive is a GCC extension"); |
Neil Booth | 0d9f234 | 2000-09-18 18:43:05 +0000 | [diff] [blame] | 426 | } |
| 427 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 428 | if (dir) |
Neil Booth | 0d9f234 | 2000-09-18 18:43:05 +0000 | [diff] [blame] | 429 | { |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 430 | /* If we have a directive that is not an opening conditional, |
| 431 | invalidate any control macro. */ |
| 432 | if (! (dir->flags & IF_COND)) |
| 433 | pfile->mi_valid = false; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 434 | |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 435 | /* Kluge alert. In order to be sure that code like this |
| 436 | |
| 437 | #define HASH # |
| 438 | HASH define foo bar |
| 439 | |
| 440 | does not cause '#define foo bar' to get executed when |
| 441 | compiled with -save-temps, we recognize directives in |
Gabriel Dos Reis | a2566ae | 2005-01-02 01:32:21 +0000 | [diff] [blame] | 442 | -fpreprocessed mode only if the # is in column 1. macro.c |
Ollie Wild | ccfc4c9 | 2007-07-30 18:29:20 +0000 | [diff] [blame] | 443 | puts a space in front of any '#' at the start of a macro. |
| 444 | |
| 445 | We exclude the -fdirectives-only case because macro expansion |
| 446 | has not been performed yet, and block comments can cause spaces |
| 447 | to preceed the directive. */ |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 448 | if (CPP_OPTION (pfile, preprocessed) |
Ollie Wild | ccfc4c9 | 2007-07-30 18:29:20 +0000 | [diff] [blame] | 449 | && !CPP_OPTION (pfile, directives_only) |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 450 | && (indented || !(dir->flags & IN_I))) |
Zack Weinberg | 6d4587f | 2001-05-10 00:07:23 +0000 | [diff] [blame] | 451 | { |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 452 | skip = 0; |
| 453 | dir = 0; |
Zack Weinberg | 6d4587f | 2001-05-10 00:07:23 +0000 | [diff] [blame] | 454 | } |
| 455 | else |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 456 | { |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 457 | /* In failed conditional groups, all non-conditional |
| 458 | directives are ignored. Before doing that, whether |
| 459 | skipping or not, we should lex angle-bracketed headers |
| 460 | correctly, and maybe output some diagnostics. */ |
| 461 | pfile->state.angled_headers = dir->flags & INCL; |
Zack Weinberg | a8d0dda | 2003-02-21 18:06:30 +0000 | [diff] [blame] | 462 | pfile->state.directive_wants_padding = dir->flags & INCL; |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 463 | if (! CPP_OPTION (pfile, preprocessed)) |
| 464 | directive_diagnostics (pfile, dir, indented); |
| 465 | if (pfile->state.skipping && !(dir->flags & COND)) |
| 466 | dir = 0; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 467 | } |
| 468 | } |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 469 | else if (dname->type == CPP_EOF) |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 470 | ; /* CPP_EOF is the "null directive". */ |
| 471 | else |
Neil Booth | 0d9f234 | 2000-09-18 18:43:05 +0000 | [diff] [blame] | 472 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 473 | /* An unknown directive. Don't complain about it in assembly |
| 474 | source: we don't know where the comments are, and # may |
| 475 | introduce assembler pseudo-ops. Don't complain about invalid |
| 476 | directives in skipped conditional groups (6.10 p4). */ |
Neil Booth | bdb05a7 | 2000-11-26 17:31:13 +0000 | [diff] [blame] | 477 | if (CPP_OPTION (pfile, lang) == CLK_ASM) |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 478 | skip = 0; |
| 479 | else if (!pfile->state.skipping) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 480 | cpp_error (pfile, CPP_DL_ERROR, "invalid preprocessing directive #%s", |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 481 | cpp_token_as_text (pfile, dname)); |
Neil Booth | 0d9f234 | 2000-09-18 18:43:05 +0000 | [diff] [blame] | 482 | } |
| 483 | |
Neil Booth | d1a5868 | 2002-06-28 06:26:54 +0000 | [diff] [blame] | 484 | pfile->directive = dir; |
| 485 | if (CPP_OPTION (pfile, traditional)) |
| 486 | prepare_directive_trad (pfile); |
| 487 | |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 488 | if (dir) |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 489 | pfile->directive->handler (pfile); |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 490 | else if (skip == 0) |
| 491 | _cpp_backup_tokens (pfile, 1); |
| 492 | |
| 493 | end_directive (pfile, skip); |
Jakub Jelinek | 765d600 | 2008-01-25 10:01:27 +0100 | [diff] [blame] | 494 | if (was_parsing_args && !pfile->state.in_deferred_pragma) |
Neil Booth | e808ec9 | 2002-02-27 07:24:53 +0000 | [diff] [blame] | 495 | { |
| 496 | /* Restore state when within macro args. */ |
| 497 | pfile->state.parsing_args = 2; |
| 498 | pfile->state.prevent_expansion = 1; |
Neil Booth | e808ec9 | 2002-02-27 07:24:53 +0000 | [diff] [blame] | 499 | } |
Zack Weinberg | c6e8380 | 2004-06-05 20:58:06 +0000 | [diff] [blame] | 500 | if (was_discarding_output) |
| 501 | pfile->state.prevent_expansion = 1; |
Neil Booth | fe6c2db | 2000-11-15 19:25:22 +0000 | [diff] [blame] | 502 | return skip; |
Zack Weinberg | c5a0473 | 2000-04-25 19:32:36 +0000 | [diff] [blame] | 503 | } |
| 504 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 505 | /* Directive handler wrapper used by the command line option |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 506 | processor. BUF is \n terminated. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 507 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 508 | run_directive (cpp_reader *pfile, int dir_no, const char *buf, size_t count) |
Zack Weinberg | 3fdc651 | 1999-03-16 13:10:15 +0000 | [diff] [blame] | 509 | { |
Neil Booth | 562a5c2 | 2002-04-21 18:46:42 +0000 | [diff] [blame] | 510 | cpp_push_buffer (pfile, (const uchar *) buf, count, |
Per Bothner | 40de9f7 | 2003-10-02 07:30:34 +0000 | [diff] [blame] | 511 | /* from_stage3 */ true); |
Neil Booth | 0bda476 | 2000-12-11 07:45:16 +0000 | [diff] [blame] | 512 | start_directive (pfile); |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 513 | |
| 514 | /* This is a short-term fix to prevent a leading '#' being |
| 515 | interpreted as a directive. */ |
| 516 | _cpp_clean_line (pfile); |
| 517 | |
Neil Booth | f71aebb | 2001-05-27 18:06:00 +0000 | [diff] [blame] | 518 | pfile->directive = &dtable[dir_no]; |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 519 | if (CPP_OPTION (pfile, traditional)) |
| 520 | prepare_directive_trad (pfile); |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 521 | pfile->directive->handler (pfile); |
Neil Booth | 0bda476 | 2000-12-11 07:45:16 +0000 | [diff] [blame] | 522 | end_directive (pfile, 1); |
Neil Booth | ef6e958 | 2001-08-04 12:01:59 +0000 | [diff] [blame] | 523 | _cpp_pop_buffer (pfile); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 524 | } |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 525 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 526 | /* Checks for validity the macro name in #define, #undef, #ifdef and |
Tom Tromey | ee1c2a1 | 2007-01-12 19:46:49 +0000 | [diff] [blame] | 527 | #ifndef directives. IS_DEF_OR_UNDEF is true if this call is |
| 528 | processing a #define or #undefine directive, and false |
| 529 | otherwise. */ |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 530 | static cpp_hashnode * |
Tom Tromey | ee1c2a1 | 2007-01-12 19:46:49 +0000 | [diff] [blame] | 531 | lex_macro_node (cpp_reader *pfile, bool is_def_or_undef) |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 532 | { |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 533 | const cpp_token *token = _cpp_lex_token (pfile); |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 534 | |
Zack Weinberg | 92936ec | 2000-07-19 20:18:08 +0000 | [diff] [blame] | 535 | /* The token immediately after #define must be an identifier. That |
Zack Weinberg | b8363a2 | 2001-07-01 18:48:13 +0000 | [diff] [blame] | 536 | identifier may not be "defined", per C99 6.10.8p4. |
| 537 | In C++, it may not be any of the "named operators" either, |
| 538 | per C++98 [lex.digraph], [lex.key]. |
| 539 | Finally, the identifier may not have been poisoned. (In that case |
Neil Booth | 1d63a28 | 2002-06-28 20:27:14 +0000 | [diff] [blame] | 540 | the lexer has issued the error message for us.) */ |
Zack Weinberg | b8363a2 | 2001-07-01 18:48:13 +0000 | [diff] [blame] | 541 | |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 542 | if (token->type == CPP_NAME) |
| 543 | { |
Joseph Myers | 9a0c618 | 2009-05-10 15:27:32 +0100 | [diff] [blame] | 544 | cpp_hashnode *node = token->val.node.node; |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 545 | |
Tom Tromey | ee1c2a1 | 2007-01-12 19:46:49 +0000 | [diff] [blame] | 546 | if (is_def_or_undef && node == pfile->spec_nodes.n_defined) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 547 | cpp_error (pfile, CPP_DL_ERROR, |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 548 | "\"defined\" cannot be used as a macro name"); |
| 549 | else if (! (node->flags & NODE_POISONED)) |
| 550 | return node; |
| 551 | } |
| 552 | else if (token->flags & NAMED_OP) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 553 | cpp_error (pfile, CPP_DL_ERROR, |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 554 | "\"%s\" cannot be used as a macro name as it is an operator in C++", |
Joseph Myers | 9a0c618 | 2009-05-10 15:27:32 +0100 | [diff] [blame] | 555 | NODE_NAME (token->val.node.node)); |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 556 | else if (token->type == CPP_EOF) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 557 | cpp_error (pfile, CPP_DL_ERROR, "no macro name given in #%s directive", |
Neil Booth | 1a76916 | 2002-06-11 05:36:17 +0000 | [diff] [blame] | 558 | pfile->directive->name); |
| 559 | else |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 560 | cpp_error (pfile, CPP_DL_ERROR, "macro names must be identifiers"); |
Zack Weinberg | b8363a2 | 2001-07-01 18:48:13 +0000 | [diff] [blame] | 561 | |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 562 | return NULL; |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 563 | } |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 564 | |
Gabriel Dos Reis | a2566ae | 2005-01-02 01:32:21 +0000 | [diff] [blame] | 565 | /* Process a #define directive. Most work is done in macro.c. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 566 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 567 | do_define (cpp_reader *pfile) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 568 | { |
Tom Tromey | ee1c2a1 | 2007-01-12 19:46:49 +0000 | [diff] [blame] | 569 | cpp_hashnode *node = lex_macro_node (pfile, true); |
Zack Weinberg | ff2b53e | 2000-04-06 07:56:14 +0000 | [diff] [blame] | 570 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 571 | if (node) |
| 572 | { |
Neil Booth | 1d63a28 | 2002-06-28 20:27:14 +0000 | [diff] [blame] | 573 | /* If we have been requested to expand comments into macros, |
| 574 | then re-enable saving of comments. */ |
| 575 | pfile->state.save_comments = |
| 576 | ! CPP_OPTION (pfile, discard_comments_in_macro_exp); |
| 577 | |
Joseph Myers | 93d45d9 | 2008-04-02 20:42:53 +0100 | [diff] [blame] | 578 | if (pfile->cb.before_define) |
| 579 | pfile->cb.before_define (pfile); |
| 580 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 581 | if (_cpp_create_definition (pfile, node)) |
| 582 | if (pfile->cb.define) |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 583 | pfile->cb.define (pfile, pfile->directive_line, node); |
Joseph Myers | 93d45d9 | 2008-04-02 20:42:53 +0100 | [diff] [blame] | 584 | |
| 585 | node->flags &= ~NODE_USED; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 586 | } |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 587 | } |
| 588 | |
Neil Booth | 5d8ebbd | 2002-01-03 21:43:09 +0000 | [diff] [blame] | 589 | /* Handle #undef. Mark the identifier NT_VOID in the hash table. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 590 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 591 | do_undef (cpp_reader *pfile) |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 592 | { |
Tom Tromey | ee1c2a1 | 2007-01-12 19:46:49 +0000 | [diff] [blame] | 593 | cpp_hashnode *node = lex_macro_node (pfile, true); |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 594 | |
Neil Booth | 45f2492 | 2003-12-12 07:00:29 +0000 | [diff] [blame] | 595 | if (node) |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 596 | { |
Joseph Myers | 93d45d9 | 2008-04-02 20:42:53 +0100 | [diff] [blame] | 597 | if (pfile->cb.before_define) |
| 598 | pfile->cb.before_define (pfile); |
| 599 | |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 600 | if (pfile->cb.undef) |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 601 | pfile->cb.undef (pfile, pfile->directive_line, node); |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 602 | |
Neil Booth | 45f2492 | 2003-12-12 07:00:29 +0000 | [diff] [blame] | 603 | /* 6.10.3.5 paragraph 2: [#undef] is ignored if the specified |
| 604 | identifier is not currently defined as a macro name. */ |
| 605 | if (node->type == NT_MACRO) |
| 606 | { |
| 607 | if (node->flags & NODE_WARN) |
| 608 | cpp_error (pfile, CPP_DL_WARNING, |
| 609 | "undefining \"%s\"", NODE_NAME (node)); |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 610 | |
Neil Booth | 45f2492 | 2003-12-12 07:00:29 +0000 | [diff] [blame] | 611 | if (CPP_OPTION (pfile, warn_unused_macros)) |
| 612 | _cpp_warn_if_unused_macro (pfile, node, NULL); |
Neil Booth | a69cbaa | 2002-07-23 22:57:49 +0000 | [diff] [blame] | 613 | |
Neil Booth | 45f2492 | 2003-12-12 07:00:29 +0000 | [diff] [blame] | 614 | _cpp_free_definition (node); |
| 615 | } |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 616 | } |
Neil Booth | 45f2492 | 2003-12-12 07:00:29 +0000 | [diff] [blame] | 617 | |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 618 | check_eol (pfile, false); |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 619 | } |
| 620 | |
Geoffrey Keating | d1bd0de | 2003-07-11 08:33:21 +0000 | [diff] [blame] | 621 | /* Undefine a single macro/assertion/whatever. */ |
| 622 | |
| 623 | static int |
Zack Weinberg | c6e8380 | 2004-06-05 20:58:06 +0000 | [diff] [blame] | 624 | undefine_macros (cpp_reader *pfile ATTRIBUTE_UNUSED, cpp_hashnode *h, |
Geoffrey Keating | d1bd0de | 2003-07-11 08:33:21 +0000 | [diff] [blame] | 625 | void *data_p ATTRIBUTE_UNUSED) |
| 626 | { |
Zack Weinberg | c6e8380 | 2004-06-05 20:58:06 +0000 | [diff] [blame] | 627 | /* Body of _cpp_free_definition inlined here for speed. |
| 628 | Macros and assertions no longer have anything to free. */ |
| 629 | h->type = NT_VOID; |
Joseph Myers | 93d45d9 | 2008-04-02 20:42:53 +0100 | [diff] [blame] | 630 | h->flags &= ~(NODE_POISONED|NODE_BUILTIN|NODE_DISABLED|NODE_USED); |
Geoffrey Keating | d1bd0de | 2003-07-11 08:33:21 +0000 | [diff] [blame] | 631 | return 1; |
| 632 | } |
| 633 | |
| 634 | /* Undefine all macros and assertions. */ |
| 635 | |
| 636 | void |
| 637 | cpp_undef_all (cpp_reader *pfile) |
| 638 | { |
| 639 | cpp_forall_identifiers (pfile, undefine_macros, NULL); |
| 640 | } |
| 641 | |
| 642 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 643 | /* Helper routine used by parse_include. Reinterpret the current line |
| 644 | as an h-char-sequence (< ... >); we are looking at the first token |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 645 | after the <. Returns a malloced filename. */ |
| 646 | static char * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 647 | glue_header_name (cpp_reader *pfile) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 648 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 649 | const cpp_token *token; |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 650 | char *buffer; |
Neil Booth | 2450e0b | 2002-02-23 20:21:39 +0000 | [diff] [blame] | 651 | size_t len, total_len = 0, capacity = 1024; |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 652 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 653 | /* To avoid lexed tokens overwriting our glued name, we can only |
| 654 | allocate from the string pool once we've lexed everything. */ |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 655 | buffer = XNEWVEC (char, capacity); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 656 | for (;;) |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 657 | { |
Zack Weinberg | a8d0dda | 2003-02-21 18:06:30 +0000 | [diff] [blame] | 658 | token = get_token_no_padding (pfile); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 659 | |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 660 | if (token->type == CPP_GREATER) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 661 | break; |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 662 | if (token->type == CPP_EOF) |
| 663 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 664 | cpp_error (pfile, CPP_DL_ERROR, "missing terminating > character"); |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 665 | break; |
| 666 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 667 | |
Neil Booth | 5932565 | 2003-04-24 20:03:57 +0000 | [diff] [blame] | 668 | len = cpp_token_len (token) + 2; /* Leading space, terminating \0. */ |
Neil Booth | 2450e0b | 2002-02-23 20:21:39 +0000 | [diff] [blame] | 669 | if (total_len + len > capacity) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 670 | { |
Neil Booth | 2450e0b | 2002-02-23 20:21:39 +0000 | [diff] [blame] | 671 | capacity = (capacity + len) * 2; |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 672 | buffer = XRESIZEVEC (char, buffer, capacity); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 673 | } |
| 674 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 675 | if (token->flags & PREV_WHITE) |
Neil Booth | 2450e0b | 2002-02-23 20:21:39 +0000 | [diff] [blame] | 676 | buffer[total_len++] = ' '; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 677 | |
Geoffrey Keating | 47e2049 | 2005-03-12 10:44:06 +0000 | [diff] [blame] | 678 | total_len = (cpp_spell_token (pfile, token, (uchar *) &buffer[total_len], |
| 679 | true) |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 680 | - (uchar *) buffer); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 681 | } |
| 682 | |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 683 | buffer[total_len] = '\0'; |
| 684 | return buffer; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 685 | } |
| 686 | |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 687 | /* Returns the file name of #include, #include_next, #import and |
| 688 | #pragma dependency. The string is malloced and the caller should |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 689 | free it. Returns NULL on error. LOCATION is the source location |
| 690 | of the file name. */ |
| 691 | |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 692 | static const char * |
Ian Lance Taylor | cbc43ae | 2005-10-04 18:06:19 +0000 | [diff] [blame] | 693 | parse_include (cpp_reader *pfile, int *pangle_brackets, |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 694 | const cpp_token ***buf, source_location *location) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 695 | { |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 696 | char *fname; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 697 | const cpp_token *header; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 698 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 699 | /* Allow macro expansion. */ |
Zack Weinberg | a8d0dda | 2003-02-21 18:06:30 +0000 | [diff] [blame] | 700 | header = get_token_no_padding (pfile); |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 701 | *location = header->src_loc; |
Jakub Jelinek | 2c6e3f5 | 2009-10-19 23:41:15 +0200 | [diff] [blame] | 702 | if ((header->type == CPP_STRING && header->val.str.text[0] != 'R') |
| 703 | || header->type == CPP_HEADER_NAME) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 704 | { |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 705 | fname = XNEWVEC (char, header->val.str.len - 1); |
Neil Booth | 6338b35 | 2003-04-23 22:44:06 +0000 | [diff] [blame] | 706 | memcpy (fname, header->val.str.text + 1, header->val.str.len - 2); |
| 707 | fname[header->val.str.len - 2] = '\0'; |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 708 | *pangle_brackets = header->type == CPP_HEADER_NAME; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 709 | } |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 710 | else if (header->type == CPP_LESS) |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 711 | { |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 712 | fname = glue_header_name (pfile); |
| 713 | *pangle_brackets = 1; |
| 714 | } |
| 715 | else |
| 716 | { |
| 717 | const unsigned char *dir; |
| 718 | |
| 719 | if (pfile->directive == &dtable[T_PRAGMA]) |
Kris Van Hees | b6baa67 | 2008-04-18 13:58:08 +0000 | [diff] [blame] | 720 | dir = UC"pragma dependency"; |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 721 | else |
| 722 | dir = pfile->directive->name; |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 723 | cpp_error (pfile, CPP_DL_ERROR, "#%s expects \"FILENAME\" or <FILENAME>", |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 724 | dir); |
| 725 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 726 | return NULL; |
Richard Kenner | cfb3ee1 | 1997-04-13 14:30:13 -0400 | [diff] [blame] | 727 | } |
| 728 | |
Tom Tromey | cda5e67 | 2007-08-18 17:54:11 +0000 | [diff] [blame] | 729 | if (pfile->directive == &dtable[T_PRAGMA]) |
| 730 | { |
| 731 | /* This pragma allows extra tokens after the file name. */ |
| 732 | } |
| 733 | else if (buf == NULL || CPP_OPTION (pfile, discard_comments)) |
Joseph Myers | 61cc822 | 2009-04-18 21:25:07 +0100 | [diff] [blame] | 734 | check_eol (pfile, true); |
Ian Lance Taylor | cbc43ae | 2005-10-04 18:06:19 +0000 | [diff] [blame] | 735 | else |
| 736 | { |
| 737 | /* If we are not discarding comments, then gather them while |
| 738 | doing the eol check. */ |
| 739 | *buf = check_eol_return_comments (pfile); |
| 740 | } |
| 741 | |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 742 | return fname; |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 743 | } |
| 744 | |
Neil Booth | ba133c9 | 2001-03-15 07:57:13 +0000 | [diff] [blame] | 745 | /* Handle #include, #include_next and #import. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 746 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 747 | do_include_common (cpp_reader *pfile, enum include_type type) |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 748 | { |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 749 | const char *fname; |
| 750 | int angle_brackets; |
Ian Lance Taylor | cbc43ae | 2005-10-04 18:06:19 +0000 | [diff] [blame] | 751 | const cpp_token **buf = NULL; |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 752 | source_location location; |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 753 | |
Ian Lance Taylor | cbc43ae | 2005-10-04 18:06:19 +0000 | [diff] [blame] | 754 | /* Re-enable saving of comments if requested, so that the include |
| 755 | callback can dump comments which follow #include. */ |
| 756 | pfile->state.save_comments = ! CPP_OPTION (pfile, discard_comments); |
| 757 | |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 758 | fname = parse_include (pfile, &angle_brackets, &buf, &location); |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 759 | if (!fname) |
Ian Lance Taylor | cbc43ae | 2005-10-04 18:06:19 +0000 | [diff] [blame] | 760 | { |
| 761 | if (buf) |
| 762 | XDELETEVEC (buf); |
| 763 | return; |
| 764 | } |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 765 | |
Nathanael Nerode | 2830382 | 2004-11-28 22:28:13 +0000 | [diff] [blame] | 766 | if (!*fname) |
| 767 | { |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 768 | cpp_error_with_line (pfile, CPP_DL_ERROR, location, 0, |
| 769 | "empty filename in #%s", |
| 770 | pfile->directive->name); |
Ian Lance Taylor | cbc43ae | 2005-10-04 18:06:19 +0000 | [diff] [blame] | 771 | XDELETEVEC (fname); |
| 772 | if (buf) |
| 773 | XDELETEVEC (buf); |
Nathanael Nerode | 2830382 | 2004-11-28 22:28:13 +0000 | [diff] [blame] | 774 | return; |
| 775 | } |
| 776 | |
Zack Weinberg | 3963c2e | 2003-02-12 17:01:53 +0000 | [diff] [blame] | 777 | /* Prevent #include recursion. */ |
Per Bothner | 50f59cd | 2004-01-19 21:30:18 -0800 | [diff] [blame] | 778 | if (pfile->line_table->depth >= CPP_STACK_MAX) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 779 | cpp_error (pfile, CPP_DL_ERROR, "#include nested too deeply"); |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 780 | else |
Neil Booth | 09b8225 | 2001-07-29 22:27:20 +0000 | [diff] [blame] | 781 | { |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 782 | /* Get out of macro context, if we are. */ |
| 783 | skip_rest_of_line (pfile); |
| 784 | |
| 785 | if (pfile->cb.include) |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 786 | pfile->cb.include (pfile, pfile->directive_line, |
Ian Lance Taylor | cbc43ae | 2005-10-04 18:06:19 +0000 | [diff] [blame] | 787 | pfile->directive->name, fname, angle_brackets, |
| 788 | buf); |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 789 | |
Neil Booth | 8f9b400 | 2003-07-29 22:26:13 +0000 | [diff] [blame] | 790 | _cpp_stack_include (pfile, fname, angle_brackets, type); |
Neil Booth | 09b8225 | 2001-07-29 22:27:20 +0000 | [diff] [blame] | 791 | } |
| 792 | |
Ian Lance Taylor | cbc43ae | 2005-10-04 18:06:19 +0000 | [diff] [blame] | 793 | XDELETEVEC (fname); |
| 794 | if (buf) |
| 795 | XDELETEVEC (buf); |
Neil Booth | ba133c9 | 2001-03-15 07:57:13 +0000 | [diff] [blame] | 796 | } |
| 797 | |
| 798 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 799 | do_include (cpp_reader *pfile) |
Neil Booth | ba133c9 | 2001-03-15 07:57:13 +0000 | [diff] [blame] | 800 | { |
| 801 | do_include_common (pfile, IT_INCLUDE); |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 802 | } |
| 803 | |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 804 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 805 | do_import (cpp_reader *pfile) |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 806 | { |
Neil Booth | ba133c9 | 2001-03-15 07:57:13 +0000 | [diff] [blame] | 807 | do_include_common (pfile, IT_IMPORT); |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 808 | } |
Zack Weinberg | 3caee4a | 1999-04-26 16:41:02 +0000 | [diff] [blame] | 809 | |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 810 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 811 | do_include_next (cpp_reader *pfile) |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 812 | { |
Zack Weinberg | 3963c2e | 2003-02-12 17:01:53 +0000 | [diff] [blame] | 813 | enum include_type type = IT_INCLUDE_NEXT; |
| 814 | |
| 815 | /* If this is the primary source file, warn and use the normal |
| 816 | search logic. */ |
Tom Tromey | 705e2d2 | 2007-01-04 15:32:26 +0000 | [diff] [blame] | 817 | if (cpp_in_primary_file (pfile)) |
Zack Weinberg | 3963c2e | 2003-02-12 17:01:53 +0000 | [diff] [blame] | 818 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 819 | cpp_error (pfile, CPP_DL_WARNING, |
Zack Weinberg | 3963c2e | 2003-02-12 17:01:53 +0000 | [diff] [blame] | 820 | "#include_next in primary source file"); |
| 821 | type = IT_INCLUDE; |
| 822 | } |
| 823 | do_include_common (pfile, type); |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 824 | } |
| 825 | |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 826 | /* Subroutine of do_linemarker. Read possible flags after file name. |
| 827 | LAST is the last flag seen; 0 if this is the first flag. Return the |
| 828 | flag if it is valid, 0 at the end of the directive. Otherwise |
| 829 | complain. */ |
Neil Booth | 642ce43 | 2000-12-07 23:17:56 +0000 | [diff] [blame] | 830 | static unsigned int |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 831 | read_flag (cpp_reader *pfile, unsigned int last) |
Jason Merrill | d3a34a0 | 1999-08-14 00:42:07 +0000 | [diff] [blame] | 832 | { |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 833 | const cpp_token *token = _cpp_lex_token (pfile); |
Jason Merrill | d3a34a0 | 1999-08-14 00:42:07 +0000 | [diff] [blame] | 834 | |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 835 | if (token->type == CPP_NUMBER && token->val.str.len == 1) |
Jason Merrill | d3a34a0 | 1999-08-14 00:42:07 +0000 | [diff] [blame] | 836 | { |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 837 | unsigned int flag = token->val.str.text[0] - '0'; |
Neil Booth | 28e0f04 | 2000-12-09 12:06:37 +0000 | [diff] [blame] | 838 | |
| 839 | if (flag > last && flag <= 4 |
| 840 | && (flag != 4 || last == 3) |
| 841 | && (flag != 2 || last == 0)) |
| 842 | return flag; |
Jason Merrill | d3a34a0 | 1999-08-14 00:42:07 +0000 | [diff] [blame] | 843 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 844 | |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 845 | if (token->type != CPP_EOF) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 846 | cpp_error (pfile, CPP_DL_ERROR, "invalid flag \"%s\" in line directive", |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 847 | cpp_token_as_text (pfile, token)); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 848 | return 0; |
Jason Merrill | d3a34a0 | 1999-08-14 00:42:07 +0000 | [diff] [blame] | 849 | } |
| 850 | |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 851 | /* Subroutine of do_line and do_linemarker. Convert a number in STR, |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 852 | of length LEN, to binary; store it in NUMP, and return false if the |
| 853 | number was well-formed, true if not. WRAPPED is set to true if the |
| 854 | number did not fit into 'unsigned long'. */ |
| 855 | static bool |
| 856 | strtolinenum (const uchar *str, size_t len, linenum_type *nump, bool *wrapped) |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 857 | { |
Manuel López-Ibáñez | 1bb6466 | 2008-07-21 09:33:38 +0000 | [diff] [blame] | 858 | linenum_type reg = 0; |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 859 | linenum_type reg_prev = 0; |
| 860 | |
Neil Booth | 562a5c2 | 2002-04-21 18:46:42 +0000 | [diff] [blame] | 861 | uchar c; |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 862 | *wrapped = false; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 863 | while (len--) |
| 864 | { |
| 865 | c = *str++; |
| 866 | if (!ISDIGIT (c)) |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 867 | return true; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 868 | reg *= 10; |
| 869 | reg += c - '0'; |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 870 | if (reg < reg_prev) |
| 871 | *wrapped = true; |
| 872 | reg_prev = reg; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 873 | } |
| 874 | *nump = reg; |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 875 | return false; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 876 | } |
| 877 | |
Zack Weinberg | 5538ada | 1999-02-04 06:36:54 -0500 | [diff] [blame] | 878 | /* Interpret #line command. |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 879 | Note that the filename string (if any) is a true string constant |
| 880 | (escapes are interpreted), unlike in #line. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 881 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 882 | do_line (cpp_reader *pfile) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 883 | { |
Per Bothner | 500bee0 | 2004-04-22 19:22:27 -0700 | [diff] [blame] | 884 | const struct line_maps *line_table = pfile->line_table; |
| 885 | const struct line_map *map = &line_table->maps[line_table->used - 1]; |
Devang Patel | 2203a88 | 2005-02-28 11:04:19 -0800 | [diff] [blame] | 886 | |
| 887 | /* skip_rest_of_line() may cause line table to be realloc()ed so note down |
| 888 | sysp right now. */ |
| 889 | |
| 890 | unsigned char map_sysp = map->sysp; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 891 | const cpp_token *token; |
Per Bothner | 12f9df4 | 2004-02-11 07:29:30 -0800 | [diff] [blame] | 892 | const char *new_file = map->to_file; |
Manuel López-Ibáñez | 1bb6466 | 2008-07-21 09:33:38 +0000 | [diff] [blame] | 893 | linenum_type new_lineno; |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 894 | |
Neil Booth | 27e2564 | 2000-11-27 08:00:04 +0000 | [diff] [blame] | 895 | /* C99 raised the minimum limit on #line numbers. */ |
Manuel López-Ibáñez | 1bb6466 | 2008-07-21 09:33:38 +0000 | [diff] [blame] | 896 | linenum_type cap = CPP_OPTION (pfile, c99) ? 2147483647 : 32767; |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 897 | bool wrapped; |
Neil Booth | 18a9d8f | 2001-09-16 11:23:56 +0000 | [diff] [blame] | 898 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 899 | /* #line commands expand macros. */ |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 900 | token = cpp_get_token (pfile); |
| 901 | if (token->type != CPP_NUMBER |
Manuel López-Ibáñez | 1bb6466 | 2008-07-21 09:33:38 +0000 | [diff] [blame] | 902 | || strtolinenum (token->val.str.text, token->val.str.len, |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 903 | &new_lineno, &wrapped)) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 904 | { |
Tom Tromey | 33ae483 | 2008-01-03 17:58:26 +0000 | [diff] [blame] | 905 | if (token->type == CPP_EOF) |
| 906 | cpp_error (pfile, CPP_DL_ERROR, "unexpected end of file after #line"); |
| 907 | else |
| 908 | cpp_error (pfile, CPP_DL_ERROR, |
| 909 | "\"%s\" after #line is not a positive integer", |
| 910 | cpp_token_as_text (pfile, token)); |
Zack Weinberg | 9ec7291 | 2000-08-09 19:41:12 +0000 | [diff] [blame] | 911 | return; |
Kazu Hirata | df38348 | 2002-05-22 22:02:16 +0000 | [diff] [blame] | 912 | } |
Zack Weinberg | 5538ada | 1999-02-04 06:36:54 -0500 | [diff] [blame] | 913 | |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 914 | if (CPP_PEDANTIC (pfile) && (new_lineno == 0 || new_lineno > cap || wrapped)) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 915 | cpp_error (pfile, CPP_DL_PEDWARN, "line number out of range"); |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 916 | else if (wrapped) |
| 917 | cpp_error (pfile, CPP_DL_WARNING, "line number out of range"); |
Zack Weinberg | 5538ada | 1999-02-04 06:36:54 -0500 | [diff] [blame] | 918 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 919 | token = cpp_get_token (pfile); |
| 920 | if (token->type == CPP_STRING) |
Zack Weinberg | 5538ada | 1999-02-04 06:36:54 -0500 | [diff] [blame] | 921 | { |
Zack Weinberg | e6cc3a2 | 2003-07-05 00:24:00 +0000 | [diff] [blame] | 922 | cpp_string s = { 0, 0 }; |
Eric Christopher | 423e95e | 2004-02-12 02:25:03 +0000 | [diff] [blame] | 923 | if (cpp_interpret_string_notranslate (pfile, &token->val.str, 1, |
Jerry Quinn | f1bf410 | 2009-07-18 03:22:16 +0000 | [diff] [blame] | 924 | &s, CPP_STRING)) |
Zack Weinberg | e6cc3a2 | 2003-07-05 00:24:00 +0000 | [diff] [blame] | 925 | new_file = (const char *)s.text; |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 926 | check_eol (pfile, true); |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 927 | } |
| 928 | else if (token->type != CPP_EOF) |
| 929 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 930 | cpp_error (pfile, CPP_DL_ERROR, "\"%s\" is not a valid filename", |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 931 | cpp_token_as_text (pfile, token)); |
| 932 | return; |
| 933 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 934 | |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 935 | skip_rest_of_line (pfile); |
Joseph Myers | c7f9c0b | 2009-04-18 18:36:28 +0100 | [diff] [blame] | 936 | _cpp_do_file_change (pfile, LC_RENAME_VERBATIM, new_file, new_lineno, |
Devang Patel | 2203a88 | 2005-02-28 11:04:19 -0800 | [diff] [blame] | 937 | map_sysp); |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 938 | } |
| 939 | |
| 940 | /* Interpret the # 44 "file" [flags] notation, which has slightly |
| 941 | different syntax and semantics from #line: Flags are allowed, |
| 942 | and we never complain about the line number being too big. */ |
| 943 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 944 | do_linemarker (cpp_reader *pfile) |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 945 | { |
Per Bothner | 500bee0 | 2004-04-22 19:22:27 -0700 | [diff] [blame] | 946 | const struct line_maps *line_table = pfile->line_table; |
| 947 | const struct line_map *map = &line_table->maps[line_table->used - 1]; |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 948 | const cpp_token *token; |
Per Bothner | 12f9df4 | 2004-02-11 07:29:30 -0800 | [diff] [blame] | 949 | const char *new_file = map->to_file; |
Manuel López-Ibáñez | 1bb6466 | 2008-07-21 09:33:38 +0000 | [diff] [blame] | 950 | linenum_type new_lineno; |
Per Bothner | 12f9df4 | 2004-02-11 07:29:30 -0800 | [diff] [blame] | 951 | unsigned int new_sysp = map->sysp; |
Joseph Myers | c7f9c0b | 2009-04-18 18:36:28 +0100 | [diff] [blame] | 952 | enum lc_reason reason = LC_RENAME_VERBATIM; |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 953 | int flag; |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 954 | bool wrapped; |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 955 | |
| 956 | /* Back up so we can get the number again. Putting this in |
| 957 | _cpp_handle_directive risks two calls to _cpp_backup_tokens in |
| 958 | some circumstances, which can segfault. */ |
| 959 | _cpp_backup_tokens (pfile, 1); |
| 960 | |
| 961 | /* #line commands expand macros. */ |
| 962 | token = cpp_get_token (pfile); |
| 963 | if (token->type != CPP_NUMBER |
Manuel López-Ibáñez | 1bb6466 | 2008-07-21 09:33:38 +0000 | [diff] [blame] | 964 | || strtolinenum (token->val.str.text, token->val.str.len, |
Manuel López-Ibáñez | 3b8f20a | 2008-07-22 09:45:58 +0000 | [diff] [blame] | 965 | &new_lineno, &wrapped)) |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 966 | { |
Tom Tromey | 33ae483 | 2008-01-03 17:58:26 +0000 | [diff] [blame] | 967 | /* Unlike #line, there does not seem to be a way to get an EOF |
| 968 | here. So, it should be safe to always spell the token. */ |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 969 | cpp_error (pfile, CPP_DL_ERROR, |
| 970 | "\"%s\" after # is not a positive integer", |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 971 | cpp_token_as_text (pfile, token)); |
| 972 | return; |
Kazu Hirata | df38348 | 2002-05-22 22:02:16 +0000 | [diff] [blame] | 973 | } |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 974 | |
| 975 | token = cpp_get_token (pfile); |
| 976 | if (token->type == CPP_STRING) |
| 977 | { |
Zack Weinberg | e6cc3a2 | 2003-07-05 00:24:00 +0000 | [diff] [blame] | 978 | cpp_string s = { 0, 0 }; |
Eric Christopher | 423e95e | 2004-02-12 02:25:03 +0000 | [diff] [blame] | 979 | if (cpp_interpret_string_notranslate (pfile, &token->val.str, |
Jerry Quinn | f1bf410 | 2009-07-18 03:22:16 +0000 | [diff] [blame] | 980 | 1, &s, CPP_STRING)) |
Zack Weinberg | e6cc3a2 | 2003-07-05 00:24:00 +0000 | [diff] [blame] | 981 | new_file = (const char *)s.text; |
Eric Christopher | cf551fb | 2004-01-16 22:37:49 +0000 | [diff] [blame] | 982 | |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 983 | new_sysp = 0; |
| 984 | flag = read_flag (pfile, 0); |
| 985 | if (flag == 1) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 986 | { |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 987 | reason = LC_ENTER; |
| 988 | /* Fake an include for cpp_included (). */ |
| 989 | _cpp_fake_include (pfile, new_file); |
| 990 | flag = read_flag (pfile, flag); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 991 | } |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 992 | else if (flag == 2) |
| 993 | { |
| 994 | reason = LC_LEAVE; |
| 995 | flag = read_flag (pfile, flag); |
| 996 | } |
| 997 | if (flag == 3) |
| 998 | { |
| 999 | new_sysp = 1; |
| 1000 | flag = read_flag (pfile, flag); |
| 1001 | if (flag == 4) |
| 1002 | new_sysp = 2; |
| 1003 | } |
Jakub Jelinek | 9d30f27 | 2006-12-29 09:15:08 +0100 | [diff] [blame] | 1004 | pfile->buffer->sysp = new_sysp; |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 1005 | |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 1006 | check_eol (pfile, false); |
Zack Weinberg | ff2b53e | 2000-04-06 07:56:14 +0000 | [diff] [blame] | 1007 | } |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1008 | else if (token->type != CPP_EOF) |
Neil Booth | 27e2564 | 2000-11-27 08:00:04 +0000 | [diff] [blame] | 1009 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1010 | cpp_error (pfile, CPP_DL_ERROR, "\"%s\" is not a valid filename", |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1011 | cpp_token_as_text (pfile, token)); |
Neil Booth | 27e2564 | 2000-11-27 08:00:04 +0000 | [diff] [blame] | 1012 | return; |
| 1013 | } |
Zack Weinberg | 941e09b | 1998-12-15 11:17:06 +0000 | [diff] [blame] | 1014 | |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1015 | skip_rest_of_line (pfile); |
Manuel López-Ibáñez | 00b0c19 | 2009-05-13 23:17:55 +0000 | [diff] [blame] | 1016 | |
| 1017 | /* Compensate for the increment in linemap_add that occurs in |
| 1018 | _cpp_do_file_change. We're currently at the start of the line |
| 1019 | *following* the #line directive. A separate source_location for this |
| 1020 | location makes no sense (until we do the LC_LEAVE), and |
| 1021 | complicates LAST_SOURCE_LINE_LOCATION. */ |
| 1022 | pfile->line_table->highest_location--; |
| 1023 | |
Neil Booth | bb74c96 | 2001-08-17 22:23:49 +0000 | [diff] [blame] | 1024 | _cpp_do_file_change (pfile, reason, new_file, new_lineno, new_sysp); |
Neil Booth | 27e2564 | 2000-11-27 08:00:04 +0000 | [diff] [blame] | 1025 | } |
| 1026 | |
Neil Booth | 67821e3 | 2001-08-05 17:31:25 +0000 | [diff] [blame] | 1027 | /* Arrange the file_change callback. pfile->line has changed to |
Neil Booth | 47d89cf | 2001-08-11 07:33:39 +0000 | [diff] [blame] | 1028 | FILE_LINE of TO_FILE, for reason REASON. SYSP is 1 for a system |
Joseph Myers | a1f300c | 2001-11-23 02:05:19 +0000 | [diff] [blame] | 1029 | header, 2 for a system header that needs to be extern "C" protected, |
Neil Booth | 47d89cf | 2001-08-11 07:33:39 +0000 | [diff] [blame] | 1030 | and zero otherwise. */ |
Neil Booth | eb1f4d9 | 2000-12-18 19:00:26 +0000 | [diff] [blame] | 1031 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1032 | _cpp_do_file_change (cpp_reader *pfile, enum lc_reason reason, |
Manuel López-Ibáñez | 1bb6466 | 2008-07-21 09:33:38 +0000 | [diff] [blame] | 1033 | const char *to_file, linenum_type file_line, |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1034 | unsigned int sysp) |
Neil Booth | 27e2564 | 2000-11-27 08:00:04 +0000 | [diff] [blame] | 1035 | { |
Per Bothner | 12f9df4 | 2004-02-11 07:29:30 -0800 | [diff] [blame] | 1036 | const struct line_map *map = linemap_add (pfile->line_table, reason, sysp, |
| 1037 | to_file, file_line); |
Per Bothner | 500bee0 | 2004-04-22 19:22:27 -0700 | [diff] [blame] | 1038 | if (map != NULL) |
| 1039 | linemap_line_start (pfile->line_table, map->to_line, 127); |
Neil Booth | d82fc10 | 2001-08-02 23:03:31 +0000 | [diff] [blame] | 1040 | |
Neil Booth | eb1f4d9 | 2000-12-18 19:00:26 +0000 | [diff] [blame] | 1041 | if (pfile->cb.file_change) |
Per Bothner | 12f9df4 | 2004-02-11 07:29:30 -0800 | [diff] [blame] | 1042 | pfile->cb.file_change (pfile, map); |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1043 | } |
Zack Weinberg | 941e09b | 1998-12-15 11:17:06 +0000 | [diff] [blame] | 1044 | |
Neil Booth | 5d8ebbd | 2002-01-03 21:43:09 +0000 | [diff] [blame] | 1045 | /* Report a warning or error detected by the program we are |
| 1046 | processing. Use the directive's tokens in the error message. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1047 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1048 | do_diagnostic (cpp_reader *pfile, int code, int print_dir) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1049 | { |
Tom Tromey | 5d6342e | 2008-05-21 21:52:57 +0000 | [diff] [blame] | 1050 | const unsigned char *dir_name; |
| 1051 | unsigned char *line; |
| 1052 | source_location src_loc = pfile->cur_token[-1].src_loc; |
| 1053 | |
| 1054 | if (print_dir) |
| 1055 | dir_name = pfile->directive->name; |
| 1056 | else |
| 1057 | dir_name = NULL; |
| 1058 | pfile->state.prevent_expansion++; |
| 1059 | line = cpp_output_line_to_string (pfile, dir_name); |
| 1060 | pfile->state.prevent_expansion--; |
| 1061 | |
| 1062 | cpp_error_with_line (pfile, code, src_loc, 0, "%s", line); |
| 1063 | free (line); |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1064 | } |
| 1065 | |
Neil Booth | 838f313 | 2000-09-24 10:42:09 +0000 | [diff] [blame] | 1066 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1067 | do_error (cpp_reader *pfile) |
Neil Booth | 838f313 | 2000-09-24 10:42:09 +0000 | [diff] [blame] | 1068 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1069 | do_diagnostic (pfile, CPP_DL_ERROR, 1); |
Neil Booth | 838f313 | 2000-09-24 10:42:09 +0000 | [diff] [blame] | 1070 | } |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1071 | |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1072 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1073 | do_warning (cpp_reader *pfile) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1074 | { |
Neil Booth | 2f87897 | 2001-04-08 10:01:18 +0000 | [diff] [blame] | 1075 | /* We want #warning diagnostics to be emitted in system headers too. */ |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1076 | do_diagnostic (pfile, CPP_DL_WARNING_SYSHDR, 1); |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1077 | } |
| 1078 | |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1079 | /* Report program identification. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1080 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1081 | do_ident (cpp_reader *pfile) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1082 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1083 | const cpp_token *str = cpp_get_token (pfile); |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1084 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1085 | if (str->type != CPP_STRING) |
Zack Weinberg | 1ed17cd | 2005-05-12 18:31:38 +0000 | [diff] [blame] | 1086 | cpp_error (pfile, CPP_DL_ERROR, "invalid #%s directive", |
| 1087 | pfile->directive->name); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1088 | else if (pfile->cb.ident) |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1089 | pfile->cb.ident (pfile, pfile->directive_line, &str->val.str); |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1090 | |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 1091 | check_eol (pfile, false); |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1092 | } |
| 1093 | |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1094 | /* Lookup a PRAGMA name in a singly-linked CHAIN. Returns the |
| 1095 | matching entry, or NULL if none is found. The returned entry could |
| 1096 | be the start of a namespace chain, or a pragma. */ |
| 1097 | static struct pragma_entry * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1098 | lookup_pragma_entry (struct pragma_entry *chain, const cpp_hashnode *pragma) |
Nathan Sidwell | 8244337 | 2000-06-23 10:56:09 +0000 | [diff] [blame] | 1099 | { |
Neil Booth | 4b115ff | 2001-10-14 23:04:13 +0000 | [diff] [blame] | 1100 | while (chain && chain->pragma != pragma) |
| 1101 | chain = chain->next; |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1102 | |
| 1103 | return chain; |
| 1104 | } |
| 1105 | |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1106 | /* Create and insert a blank pragma entry at the beginning of a |
| 1107 | singly-linked CHAIN. */ |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1108 | static struct pragma_entry * |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1109 | new_pragma_entry (cpp_reader *pfile, struct pragma_entry **chain) |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1110 | { |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1111 | struct pragma_entry *new_entry; |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1112 | |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1113 | new_entry = (struct pragma_entry *) |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1114 | _cpp_aligned_alloc (pfile, sizeof (struct pragma_entry)); |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1115 | |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1116 | memset (new_entry, 0, sizeof (struct pragma_entry)); |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1117 | new_entry->next = *chain; |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1118 | |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1119 | *chain = new_entry; |
| 1120 | return new_entry; |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1121 | } |
| 1122 | |
| 1123 | /* Register a pragma NAME in namespace SPACE. If SPACE is null, it |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1124 | goes in the global namespace. */ |
| 1125 | static struct pragma_entry * |
| 1126 | register_pragma_1 (cpp_reader *pfile, const char *space, const char *name, |
| 1127 | bool allow_name_expansion) |
Nathan Sidwell | 8244337 | 2000-06-23 10:56:09 +0000 | [diff] [blame] | 1128 | { |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1129 | struct pragma_entry **chain = &pfile->pragmas; |
| 1130 | struct pragma_entry *entry; |
Neil Booth | 4b115ff | 2001-10-14 23:04:13 +0000 | [diff] [blame] | 1131 | const cpp_hashnode *node; |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1132 | |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1133 | if (space) |
| 1134 | { |
Kris Van Hees | b6baa67 | 2008-04-18 13:58:08 +0000 | [diff] [blame] | 1135 | node = cpp_lookup (pfile, UC space, strlen (space)); |
Neil Booth | 4b115ff | 2001-10-14 23:04:13 +0000 | [diff] [blame] | 1136 | entry = lookup_pragma_entry (*chain, node); |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1137 | if (!entry) |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1138 | { |
| 1139 | entry = new_pragma_entry (pfile, chain); |
| 1140 | entry->pragma = node; |
| 1141 | entry->is_nspace = true; |
| 1142 | entry->allow_expansion = allow_name_expansion; |
| 1143 | } |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1144 | else if (!entry->is_nspace) |
| 1145 | goto clash; |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1146 | else if (entry->allow_expansion != allow_name_expansion) |
| 1147 | { |
| 1148 | cpp_error (pfile, CPP_DL_ICE, |
| 1149 | "registering pragmas in namespace \"%s\" with mismatched " |
| 1150 | "name expansion", space); |
| 1151 | return NULL; |
| 1152 | } |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1153 | chain = &entry->u.space; |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1154 | } |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1155 | else if (allow_name_expansion) |
| 1156 | { |
| 1157 | cpp_error (pfile, CPP_DL_ICE, |
| 1158 | "registering pragma \"%s\" with name expansion " |
| 1159 | "and no namespace", name); |
| 1160 | return NULL; |
| 1161 | } |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1162 | |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1163 | /* Check for duplicates. */ |
Kris Van Hees | b6baa67 | 2008-04-18 13:58:08 +0000 | [diff] [blame] | 1164 | node = cpp_lookup (pfile, UC name, strlen (name)); |
Neil Booth | 4b115ff | 2001-10-14 23:04:13 +0000 | [diff] [blame] | 1165 | entry = lookup_pragma_entry (*chain, node); |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1166 | if (entry == NULL) |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1167 | { |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1168 | entry = new_pragma_entry (pfile, chain); |
| 1169 | entry->pragma = node; |
| 1170 | return entry; |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1171 | } |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1172 | |
| 1173 | if (entry->is_nspace) |
| 1174 | clash: |
| 1175 | cpp_error (pfile, CPP_DL_ICE, |
| 1176 | "registering \"%s\" as both a pragma and a pragma namespace", |
| 1177 | NODE_NAME (node)); |
| 1178 | else if (space) |
| 1179 | cpp_error (pfile, CPP_DL_ICE, "#pragma %s %s is already registered", |
| 1180 | space, name); |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1181 | else |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1182 | cpp_error (pfile, CPP_DL_ICE, "#pragma %s is already registered", name); |
| 1183 | |
| 1184 | return NULL; |
| 1185 | } |
| 1186 | |
| 1187 | /* Register a cpplib internal pragma SPACE NAME with HANDLER. */ |
| 1188 | static void |
| 1189 | register_pragma_internal (cpp_reader *pfile, const char *space, |
| 1190 | const char *name, pragma_cb handler) |
| 1191 | { |
| 1192 | struct pragma_entry *entry; |
| 1193 | |
| 1194 | entry = register_pragma_1 (pfile, space, name, false); |
| 1195 | entry->is_internal = true; |
| 1196 | entry->u.handler = handler; |
Zack Weinberg | 21b1149 | 2004-09-09 19:16:56 +0000 | [diff] [blame] | 1197 | } |
| 1198 | |
| 1199 | /* Register a pragma NAME in namespace SPACE. If SPACE is null, it |
| 1200 | goes in the global namespace. HANDLER is the handler it will call, |
Daniel Jacobowitz | b5b3e36 | 2004-11-23 23:25:40 +0000 | [diff] [blame] | 1201 | which must be non-NULL. If ALLOW_EXPANSION is set, allow macro |
| 1202 | expansion while parsing pragma NAME. This function is exported |
| 1203 | from libcpp. */ |
Zack Weinberg | 21b1149 | 2004-09-09 19:16:56 +0000 | [diff] [blame] | 1204 | void |
| 1205 | cpp_register_pragma (cpp_reader *pfile, const char *space, const char *name, |
Daniel Jacobowitz | b5b3e36 | 2004-11-23 23:25:40 +0000 | [diff] [blame] | 1206 | pragma_cb handler, bool allow_expansion) |
Zack Weinberg | 21b1149 | 2004-09-09 19:16:56 +0000 | [diff] [blame] | 1207 | { |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1208 | struct pragma_entry *entry; |
| 1209 | |
| 1210 | if (!handler) |
| 1211 | { |
| 1212 | cpp_error (pfile, CPP_DL_ICE, "registering pragma with NULL handler"); |
| 1213 | return; |
| 1214 | } |
| 1215 | |
| 1216 | entry = register_pragma_1 (pfile, space, name, false); |
| 1217 | if (entry) |
| 1218 | { |
| 1219 | entry->allow_expansion = allow_expansion; |
| 1220 | entry->u.handler = handler; |
| 1221 | } |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1222 | } |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1223 | |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1224 | /* Similarly, but create mark the pragma for deferred processing. |
| 1225 | When found, a CPP_PRAGMA token will be insertted into the stream |
| 1226 | with IDENT in the token->u.pragma slot. */ |
| 1227 | void |
| 1228 | cpp_register_deferred_pragma (cpp_reader *pfile, const char *space, |
| 1229 | const char *name, unsigned int ident, |
| 1230 | bool allow_expansion, bool allow_name_expansion) |
| 1231 | { |
| 1232 | struct pragma_entry *entry; |
| 1233 | |
| 1234 | entry = register_pragma_1 (pfile, space, name, allow_name_expansion); |
| 1235 | if (entry) |
| 1236 | { |
| 1237 | entry->is_deferred = true; |
| 1238 | entry->allow_expansion = allow_expansion; |
| 1239 | entry->u.ident = ident; |
| 1240 | } |
| 1241 | } |
| 1242 | |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1243 | /* Register the pragmas the preprocessor itself handles. */ |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1244 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1245 | _cpp_init_internal_pragmas (cpp_reader *pfile) |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1246 | { |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1247 | /* Pragmas in the global namespace. */ |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1248 | register_pragma_internal (pfile, 0, "once", do_pragma_once); |
Kai Tietz | 17e7cb8 | 2009-11-11 18:37:19 +0000 | [diff] [blame] | 1249 | register_pragma_internal (pfile, 0, "push_macro", do_pragma_push_macro); |
| 1250 | register_pragma_internal (pfile, 0, "pop_macro", do_pragma_pop_macro); |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1251 | |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1252 | /* New GCC-specific pragmas should be put in the GCC namespace. */ |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1253 | register_pragma_internal (pfile, "GCC", "poison", do_pragma_poison); |
| 1254 | register_pragma_internal (pfile, "GCC", "system_header", |
| 1255 | do_pragma_system_header); |
| 1256 | register_pragma_internal (pfile, "GCC", "dependency", do_pragma_dependency); |
Nathan Sidwell | 8244337 | 2000-06-23 10:56:09 +0000 | [diff] [blame] | 1257 | } |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1258 | |
Geoffrey Keating | 17211ab | 2003-01-10 02:22:34 +0000 | [diff] [blame] | 1259 | /* Return the number of registered pragmas in PE. */ |
| 1260 | |
| 1261 | static int |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1262 | count_registered_pragmas (struct pragma_entry *pe) |
Geoffrey Keating | 17211ab | 2003-01-10 02:22:34 +0000 | [diff] [blame] | 1263 | { |
| 1264 | int ct = 0; |
| 1265 | for (; pe != NULL; pe = pe->next) |
| 1266 | { |
| 1267 | if (pe->is_nspace) |
| 1268 | ct += count_registered_pragmas (pe->u.space); |
| 1269 | ct++; |
| 1270 | } |
| 1271 | return ct; |
| 1272 | } |
| 1273 | |
| 1274 | /* Save into SD the names of the registered pragmas referenced by PE, |
| 1275 | and return a pointer to the next free space in SD. */ |
| 1276 | |
| 1277 | static char ** |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1278 | save_registered_pragmas (struct pragma_entry *pe, char **sd) |
Geoffrey Keating | 17211ab | 2003-01-10 02:22:34 +0000 | [diff] [blame] | 1279 | { |
| 1280 | for (; pe != NULL; pe = pe->next) |
| 1281 | { |
| 1282 | if (pe->is_nspace) |
| 1283 | sd = save_registered_pragmas (pe->u.space, sd); |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1284 | *sd++ = (char *) xmemdup (HT_STR (&pe->pragma->ident), |
| 1285 | HT_LEN (&pe->pragma->ident), |
| 1286 | HT_LEN (&pe->pragma->ident) + 1); |
Geoffrey Keating | 17211ab | 2003-01-10 02:22:34 +0000 | [diff] [blame] | 1287 | } |
| 1288 | return sd; |
| 1289 | } |
| 1290 | |
| 1291 | /* Return a newly-allocated array which saves the names of the |
| 1292 | registered pragmas. */ |
| 1293 | |
| 1294 | char ** |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1295 | _cpp_save_pragma_names (cpp_reader *pfile) |
Geoffrey Keating | 17211ab | 2003-01-10 02:22:34 +0000 | [diff] [blame] | 1296 | { |
| 1297 | int ct = count_registered_pragmas (pfile->pragmas); |
Bernardo Innocenti | 72bb2c3 | 2004-07-24 20:04:42 +0200 | [diff] [blame] | 1298 | char **result = XNEWVEC (char *, ct); |
Geoffrey Keating | 17211ab | 2003-01-10 02:22:34 +0000 | [diff] [blame] | 1299 | (void) save_registered_pragmas (pfile->pragmas, result); |
| 1300 | return result; |
| 1301 | } |
| 1302 | |
| 1303 | /* Restore from SD the names of the registered pragmas referenced by PE, |
| 1304 | and return a pointer to the next unused name in SD. */ |
| 1305 | |
| 1306 | static char ** |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1307 | restore_registered_pragmas (cpp_reader *pfile, struct pragma_entry *pe, |
| 1308 | char **sd) |
Geoffrey Keating | 17211ab | 2003-01-10 02:22:34 +0000 | [diff] [blame] | 1309 | { |
| 1310 | for (; pe != NULL; pe = pe->next) |
| 1311 | { |
| 1312 | if (pe->is_nspace) |
| 1313 | sd = restore_registered_pragmas (pfile, pe->u.space, sd); |
Kris Van Hees | b6baa67 | 2008-04-18 13:58:08 +0000 | [diff] [blame] | 1314 | pe->pragma = cpp_lookup (pfile, UC *sd, strlen (*sd)); |
Geoffrey Keating | 17211ab | 2003-01-10 02:22:34 +0000 | [diff] [blame] | 1315 | free (*sd); |
| 1316 | sd++; |
| 1317 | } |
| 1318 | return sd; |
| 1319 | } |
| 1320 | |
| 1321 | /* Restore the names of the registered pragmas from SAVED. */ |
| 1322 | |
| 1323 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1324 | _cpp_restore_pragma_names (cpp_reader *pfile, char **saved) |
Geoffrey Keating | 17211ab | 2003-01-10 02:22:34 +0000 | [diff] [blame] | 1325 | { |
| 1326 | (void) restore_registered_pragmas (pfile, pfile->pragmas, saved); |
| 1327 | free (saved); |
| 1328 | } |
| 1329 | |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1330 | /* Pragmata handling. We handle some, and pass the rest on to the |
| 1331 | front end. C99 defines three pragmas and says that no macro |
| 1332 | expansion is to be performed on them; whether or not macro |
| 1333 | expansion happens for other pragmas is implementation defined. |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1334 | This implementation allows for a mix of both, since GCC did not |
| 1335 | traditionally macro expand its (few) pragmas, whereas OpenMP |
| 1336 | specifies that macro expansion should happen. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1337 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1338 | do_pragma (cpp_reader *pfile) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1339 | { |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1340 | const struct pragma_entry *p = NULL; |
Alexandre Oliva | e2e1fa5 | 2003-09-24 23:53:07 +0000 | [diff] [blame] | 1341 | const cpp_token *token, *pragma_token = pfile->cur_token; |
Jakub Jelinek | 1c90c6f | 2006-06-09 23:13:25 +0200 | [diff] [blame] | 1342 | cpp_token ns_token; |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1343 | unsigned int count = 1; |
Zack Weinberg | 3caee4a | 1999-04-26 16:41:02 +0000 | [diff] [blame] | 1344 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1345 | pfile->state.prevent_expansion++; |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1346 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1347 | token = cpp_get_token (pfile); |
Jakub Jelinek | 1c90c6f | 2006-06-09 23:13:25 +0200 | [diff] [blame] | 1348 | ns_token = *token; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1349 | if (token->type == CPP_NAME) |
Alexandre Oliva | 0172e2b | 2000-02-27 06:24:27 +0000 | [diff] [blame] | 1350 | { |
Joseph Myers | 9a0c618 | 2009-05-10 15:27:32 +0100 | [diff] [blame] | 1351 | p = lookup_pragma_entry (pfile->pragmas, token->val.node.node); |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1352 | if (p && p->is_nspace) |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1353 | { |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1354 | bool allow_name_expansion = p->allow_expansion; |
| 1355 | if (allow_name_expansion) |
| 1356 | pfile->state.prevent_expansion--; |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1357 | token = cpp_get_token (pfile); |
| 1358 | if (token->type == CPP_NAME) |
Joseph Myers | 9a0c618 | 2009-05-10 15:27:32 +0100 | [diff] [blame] | 1359 | p = lookup_pragma_entry (p->u.space, token->val.node.node); |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1360 | else |
| 1361 | p = NULL; |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1362 | if (allow_name_expansion) |
| 1363 | pfile->state.prevent_expansion++; |
| 1364 | count = 2; |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1365 | } |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1366 | } |
| 1367 | |
Zack Weinberg | 3da3d58 | 2004-10-27 17:29:29 +0000 | [diff] [blame] | 1368 | if (p) |
Alexandre Oliva | e2e1fa5 | 2003-09-24 23:53:07 +0000 | [diff] [blame] | 1369 | { |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1370 | if (p->is_deferred) |
Zack Weinberg | 3da3d58 | 2004-10-27 17:29:29 +0000 | [diff] [blame] | 1371 | { |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1372 | pfile->directive_result.src_loc = pragma_token->src_loc; |
| 1373 | pfile->directive_result.type = CPP_PRAGMA; |
| 1374 | pfile->directive_result.flags = pragma_token->flags; |
| 1375 | pfile->directive_result.val.pragma = p->u.ident; |
| 1376 | pfile->state.in_deferred_pragma = true; |
| 1377 | pfile->state.pragma_allow_expansion = p->allow_expansion; |
| 1378 | if (!p->allow_expansion) |
Daniel Jacobowitz | b5b3e36 | 2004-11-23 23:25:40 +0000 | [diff] [blame] | 1379 | pfile->state.prevent_expansion++; |
Zack Weinberg | 3da3d58 | 2004-10-27 17:29:29 +0000 | [diff] [blame] | 1380 | } |
| 1381 | else |
| 1382 | { |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1383 | /* Since the handler below doesn't get the line number, that |
| 1384 | it might need for diagnostics, make sure it has the right |
| 1385 | numbers in place. */ |
| 1386 | if (pfile->cb.line_change) |
| 1387 | (*pfile->cb.line_change) (pfile, pragma_token, false); |
| 1388 | if (p->allow_expansion) |
| 1389 | pfile->state.prevent_expansion--; |
| 1390 | (*p->u.handler) (pfile); |
| 1391 | if (p->allow_expansion) |
| 1392 | pfile->state.prevent_expansion++; |
Zack Weinberg | 3da3d58 | 2004-10-27 17:29:29 +0000 | [diff] [blame] | 1393 | } |
Zack Weinberg | 21b1149 | 2004-09-09 19:16:56 +0000 | [diff] [blame] | 1394 | } |
Neil Booth | d82fc10 | 2001-08-02 23:03:31 +0000 | [diff] [blame] | 1395 | else if (pfile->cb.def_pragma) |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1396 | { |
Jakub Jelinek | 1c90c6f | 2006-06-09 23:13:25 +0200 | [diff] [blame] | 1397 | if (count == 1 || pfile->context->prev == NULL) |
| 1398 | _cpp_backup_tokens (pfile, count); |
| 1399 | else |
| 1400 | { |
| 1401 | /* Invalid name comes from macro expansion, _cpp_backup_tokens |
| 1402 | won't allow backing 2 tokens. */ |
| 1403 | /* ??? The token buffer is leaked. Perhaps if def_pragma hook |
| 1404 | reads both tokens, we could perhaps free it, but if it doesn't, |
| 1405 | we don't know the exact lifespan. */ |
| 1406 | cpp_token *toks = XNEWVEC (cpp_token, 2); |
| 1407 | toks[0] = ns_token; |
| 1408 | toks[0].flags |= NO_EXPAND; |
| 1409 | toks[1] = *token; |
| 1410 | toks[1].flags |= NO_EXPAND; |
| 1411 | _cpp_push_token_context (pfile, NULL, toks, 2); |
| 1412 | } |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1413 | pfile->cb.def_pragma (pfile, pfile->directive_line); |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1414 | } |
Neil Booth | a5da89c | 2001-10-14 17:44:00 +0000 | [diff] [blame] | 1415 | |
Neil Booth | 9729389 | 2001-09-14 22:04:46 +0000 | [diff] [blame] | 1416 | pfile->state.prevent_expansion--; |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1417 | } |
| 1418 | |
Neil Booth | 5d8ebbd | 2002-01-03 21:43:09 +0000 | [diff] [blame] | 1419 | /* Handle #pragma once. */ |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1420 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1421 | do_pragma_once (cpp_reader *pfile) |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1422 | { |
Tom Tromey | 705e2d2 | 2007-01-04 15:32:26 +0000 | [diff] [blame] | 1423 | if (cpp_in_primary_file (pfile)) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1424 | cpp_error (pfile, CPP_DL_WARNING, "#pragma once in main file"); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1425 | |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 1426 | check_eol (pfile, false); |
Neil Booth | 49634b3 | 2003-08-02 16:29:46 +0000 | [diff] [blame] | 1427 | _cpp_mark_file_once_only (pfile, pfile->buffer->file); |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1428 | } |
| 1429 | |
Kai Tietz | 17e7cb8 | 2009-11-11 18:37:19 +0000 | [diff] [blame] | 1430 | /* Handle #pragma push_macro(STRING). */ |
| 1431 | static void |
| 1432 | do_pragma_push_macro (cpp_reader *pfile) |
| 1433 | { |
| 1434 | char *macroname, *dest; |
| 1435 | const char *limit, *src; |
| 1436 | const cpp_token *txt; |
| 1437 | struct def_pragma_macro *c; |
| 1438 | |
| 1439 | txt = get__Pragma_string (pfile); |
| 1440 | if (!txt) |
| 1441 | { |
| 1442 | source_location src_loc = pfile->cur_token[-1].src_loc; |
| 1443 | cpp_error_with_line (pfile, CPP_DL_ERROR, src_loc, 0, |
| 1444 | "invalid #pragma push_macro directive"); |
| 1445 | check_eol (pfile, false); |
| 1446 | skip_rest_of_line (pfile); |
| 1447 | return; |
| 1448 | } |
| 1449 | dest = macroname = (char *) alloca (txt->val.str.len + 2); |
| 1450 | src = (const char *) (txt->val.str.text + 1 + (txt->val.str.text[0] == 'L')); |
| 1451 | limit = (const char *) (txt->val.str.text + txt->val.str.len - 1); |
| 1452 | while (src < limit) |
| 1453 | { |
| 1454 | /* We know there is a character following the backslash. */ |
| 1455 | if (*src == '\\' && (src[1] == '\\' || src[1] == '"')) |
| 1456 | src++; |
| 1457 | *dest++ = *src++; |
| 1458 | } |
| 1459 | *dest = 0; |
| 1460 | check_eol (pfile, false); |
| 1461 | skip_rest_of_line (pfile); |
| 1462 | c = XNEW (struct def_pragma_macro); |
| 1463 | c->name = XNEWVAR (char, strlen (macroname) + 1); |
| 1464 | strcpy (c->name, macroname); |
| 1465 | c->next = pfile->pushed_macros; |
| 1466 | c->value = cpp_push_definition (pfile, c->name); |
| 1467 | pfile->pushed_macros = c; |
| 1468 | } |
| 1469 | |
| 1470 | /* Handle #pragma pop_macro(STRING). */ |
| 1471 | static void |
| 1472 | do_pragma_pop_macro (cpp_reader *pfile) |
| 1473 | { |
| 1474 | char *macroname, *dest; |
| 1475 | const char *limit, *src; |
| 1476 | const cpp_token *txt; |
| 1477 | struct def_pragma_macro *l = NULL, *c = pfile->pushed_macros; |
| 1478 | txt = get__Pragma_string (pfile); |
| 1479 | if (!txt) |
| 1480 | { |
| 1481 | source_location src_loc = pfile->cur_token[-1].src_loc; |
| 1482 | cpp_error_with_line (pfile, CPP_DL_ERROR, src_loc, 0, |
| 1483 | "invalid #pragma pop_macro directive"); |
| 1484 | check_eol (pfile, false); |
| 1485 | skip_rest_of_line (pfile); |
| 1486 | return; |
| 1487 | } |
| 1488 | dest = macroname = (char *) alloca (txt->val.str.len + 2); |
| 1489 | src = (const char *) (txt->val.str.text + 1 + (txt->val.str.text[0] == 'L')); |
| 1490 | limit = (const char *) (txt->val.str.text + txt->val.str.len - 1); |
| 1491 | while (src < limit) |
| 1492 | { |
| 1493 | /* We know there is a character following the backslash. */ |
| 1494 | if (*src == '\\' && (src[1] == '\\' || src[1] == '"')) |
| 1495 | src++; |
| 1496 | *dest++ = *src++; |
| 1497 | } |
| 1498 | *dest = 0; |
| 1499 | check_eol (pfile, false); |
| 1500 | skip_rest_of_line (pfile); |
| 1501 | |
| 1502 | while (c != NULL) |
| 1503 | { |
| 1504 | if (!strcmp (c->name, macroname)) |
| 1505 | { |
| 1506 | if (!l) |
| 1507 | pfile->pushed_macros = c->next; |
| 1508 | else |
| 1509 | l->next = c->next; |
| 1510 | cpp_pop_definition (pfile, c->name, c->value); |
| 1511 | free (c->name); |
| 1512 | free (c); |
| 1513 | break; |
| 1514 | } |
| 1515 | l = c; |
| 1516 | c = c->next; |
| 1517 | } |
| 1518 | } |
| 1519 | |
Neil Booth | c3bf3e6 | 2002-05-09 17:14:22 +0000 | [diff] [blame] | 1520 | /* Handle #pragma GCC poison, to poison one or more identifiers so |
| 1521 | that the lexer produces a hard error for each subsequent usage. */ |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1522 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1523 | do_pragma_poison (cpp_reader *pfile) |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1524 | { |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 1525 | const cpp_token *tok; |
Zack Weinberg | f8f769e | 2000-05-28 05:56:38 +0000 | [diff] [blame] | 1526 | cpp_hashnode *hp; |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1527 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1528 | pfile->state.poisoned_ok = 1; |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1529 | for (;;) |
| 1530 | { |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 1531 | tok = _cpp_lex_token (pfile); |
| 1532 | if (tok->type == CPP_EOF) |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1533 | break; |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 1534 | if (tok->type != CPP_NAME) |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1535 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1536 | cpp_error (pfile, CPP_DL_ERROR, |
| 1537 | "invalid #pragma GCC poison directive"); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1538 | break; |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1539 | } |
| 1540 | |
Joseph Myers | 9a0c618 | 2009-05-10 15:27:32 +0100 | [diff] [blame] | 1541 | hp = tok->val.node.node; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1542 | if (hp->flags & NODE_POISONED) |
| 1543 | continue; |
| 1544 | |
| 1545 | if (hp->type == NT_MACRO) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1546 | cpp_error (pfile, CPP_DL_WARNING, "poisoning existing macro \"%s\"", |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 1547 | NODE_NAME (hp)); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1548 | _cpp_free_definition (hp); |
| 1549 | hp->flags |= NODE_POISONED | NODE_DIAGNOSTIC; |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1550 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1551 | pfile->state.poisoned_ok = 0; |
Zack Weinberg | a2a76ce | 2000-02-11 20:17:27 +0000 | [diff] [blame] | 1552 | } |
Zack Weinberg | 2c0b35c | 2000-05-17 18:07:16 +0000 | [diff] [blame] | 1553 | |
| 1554 | /* Mark the current header as a system header. This will suppress |
| 1555 | some categories of warnings (notably those from -pedantic). It is |
| 1556 | intended for use in system libraries that cannot be implemented in |
| 1557 | conforming C, but cannot be certain that their headers appear in a |
| 1558 | system include directory. To prevent abuse, it is rejected in the |
| 1559 | primary source file. */ |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1560 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1561 | do_pragma_system_header (cpp_reader *pfile) |
Zack Weinberg | 2c0b35c | 2000-05-17 18:07:16 +0000 | [diff] [blame] | 1562 | { |
Tom Tromey | 705e2d2 | 2007-01-04 15:32:26 +0000 | [diff] [blame] | 1563 | if (cpp_in_primary_file (pfile)) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1564 | cpp_error (pfile, CPP_DL_WARNING, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 1565 | "#pragma system_header ignored outside include file"); |
Zack Weinberg | 2c0b35c | 2000-05-17 18:07:16 +0000 | [diff] [blame] | 1566 | else |
Neil Booth | d82fc10 | 2001-08-02 23:03:31 +0000 | [diff] [blame] | 1567 | { |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 1568 | check_eol (pfile, false); |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1569 | skip_rest_of_line (pfile); |
Neil Booth | d82fc10 | 2001-08-02 23:03:31 +0000 | [diff] [blame] | 1570 | cpp_make_system_header (pfile, 1, 0); |
| 1571 | } |
Zack Weinberg | 2c0b35c | 2000-05-17 18:07:16 +0000 | [diff] [blame] | 1572 | } |
Nathan Sidwell | f3f751a | 2000-06-30 09:47:49 +0000 | [diff] [blame] | 1573 | |
| 1574 | /* Check the modified date of the current include file against a specified |
| 1575 | file. Issue a diagnostic, if the specified file is newer. We use this to |
| 1576 | determine if a fixed header should be refixed. */ |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1577 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1578 | do_pragma_dependency (cpp_reader *pfile) |
Nathan Sidwell | f3f751a | 2000-06-30 09:47:49 +0000 | [diff] [blame] | 1579 | { |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 1580 | const char *fname; |
| 1581 | int angle_brackets, ordering; |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 1582 | source_location location; |
Kazu Hirata | df38348 | 2002-05-22 22:02:16 +0000 | [diff] [blame] | 1583 | |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 1584 | fname = parse_include (pfile, &angle_brackets, NULL, &location); |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 1585 | if (!fname) |
Zack Weinberg | 58fea6a | 2000-08-02 01:13:45 +0000 | [diff] [blame] | 1586 | return; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 1587 | |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 1588 | ordering = _cpp_compare_file_date (pfile, fname, angle_brackets); |
Nathan Sidwell | f3f751a | 2000-06-30 09:47:49 +0000 | [diff] [blame] | 1589 | if (ordering < 0) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1590 | cpp_error (pfile, CPP_DL_WARNING, "cannot find source file %s", fname); |
Nathan Sidwell | f3f751a | 2000-06-30 09:47:49 +0000 | [diff] [blame] | 1591 | else if (ordering > 0) |
| 1592 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1593 | cpp_error (pfile, CPP_DL_WARNING, |
| 1594 | "current file is older than %s", fname); |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1595 | if (cpp_get_token (pfile)->type != CPP_EOF) |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1596 | { |
| 1597 | _cpp_backup_tokens (pfile, 1); |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1598 | do_diagnostic (pfile, CPP_DL_WARNING, 0); |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1599 | } |
Nathan Sidwell | f3f751a | 2000-06-30 09:47:49 +0000 | [diff] [blame] | 1600 | } |
Neil Booth | 74eb4b3 | 2003-04-21 19:21:59 +0000 | [diff] [blame] | 1601 | |
Kaveh R. Ghazi | fad205f | 2003-06-16 21:41:10 +0000 | [diff] [blame] | 1602 | free ((void *) fname); |
Nathan Sidwell | f3f751a | 2000-06-30 09:47:49 +0000 | [diff] [blame] | 1603 | } |
| 1604 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1605 | /* Get a token but skip padding. */ |
| 1606 | static const cpp_token * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1607 | get_token_no_padding (cpp_reader *pfile) |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1608 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1609 | for (;;) |
| 1610 | { |
| 1611 | const cpp_token *result = cpp_get_token (pfile); |
| 1612 | if (result->type != CPP_PADDING) |
| 1613 | return result; |
| 1614 | } |
| 1615 | } |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1616 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1617 | /* Check syntax is "(string-literal)". Returns the string on success, |
| 1618 | or NULL on failure. */ |
| 1619 | static const cpp_token * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1620 | get__Pragma_string (cpp_reader *pfile) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1621 | { |
| 1622 | const cpp_token *string; |
Tom Tromey | 5b9a40d | 2007-10-31 14:50:13 +0000 | [diff] [blame] | 1623 | const cpp_token *paren; |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1624 | |
Tom Tromey | 5b9a40d | 2007-10-31 14:50:13 +0000 | [diff] [blame] | 1625 | paren = get_token_no_padding (pfile); |
| 1626 | if (paren->type == CPP_EOF) |
| 1627 | _cpp_backup_tokens (pfile, 1); |
| 1628 | if (paren->type != CPP_OPEN_PAREN) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1629 | return NULL; |
| 1630 | |
| 1631 | string = get_token_no_padding (pfile); |
Tom Tromey | 5b9a40d | 2007-10-31 14:50:13 +0000 | [diff] [blame] | 1632 | if (string->type == CPP_EOF) |
| 1633 | _cpp_backup_tokens (pfile, 1); |
Kris Van Hees | b6baa67 | 2008-04-18 13:58:08 +0000 | [diff] [blame] | 1634 | if (string->type != CPP_STRING && string->type != CPP_WSTRING |
Jakub Jelinek | 2c6e3f5 | 2009-10-19 23:41:15 +0200 | [diff] [blame] | 1635 | && string->type != CPP_STRING32 && string->type != CPP_STRING16 |
| 1636 | && string->type != CPP_UTF8STRING) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1637 | return NULL; |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1638 | |
Tom Tromey | 5b9a40d | 2007-10-31 14:50:13 +0000 | [diff] [blame] | 1639 | paren = get_token_no_padding (pfile); |
| 1640 | if (paren->type == CPP_EOF) |
| 1641 | _cpp_backup_tokens (pfile, 1); |
| 1642 | if (paren->type != CPP_CLOSE_PAREN) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1643 | return NULL; |
| 1644 | |
| 1645 | return string; |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1646 | } |
| 1647 | |
Neil Booth | 8706281 | 2001-10-20 09:00:53 +0000 | [diff] [blame] | 1648 | /* Destringize IN into a temporary buffer, by removing the first \ of |
| 1649 | \" and \\ sequences, and process the result as a #pragma directive. */ |
| 1650 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1651 | destringize_and_run (cpp_reader *pfile, const cpp_string *in) |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1652 | { |
| 1653 | const unsigned char *src, *limit; |
Neil Booth | 8706281 | 2001-10-20 09:00:53 +0000 | [diff] [blame] | 1654 | char *dest, *result; |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1655 | cpp_context *saved_context; |
| 1656 | cpp_token *saved_cur_token; |
| 1657 | tokenrun *saved_cur_run; |
| 1658 | cpp_token *toks; |
| 1659 | int count; |
Tom Tromey | 14ccf80 | 2008-03-13 21:10:07 +0000 | [diff] [blame] | 1660 | const struct directive *save_directive; |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1661 | |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1662 | dest = result = (char *) alloca (in->len - 1); |
Neil Booth | 6338b35 | 2003-04-23 22:44:06 +0000 | [diff] [blame] | 1663 | src = in->text + 1 + (in->text[0] == 'L'); |
| 1664 | limit = in->text + in->len - 1; |
| 1665 | while (src < limit) |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1666 | { |
| 1667 | /* We know there is a character following the backslash. */ |
| 1668 | if (*src == '\\' && (src[1] == '\\' || src[1] == '"')) |
| 1669 | src++; |
| 1670 | *dest++ = *src++; |
| 1671 | } |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 1672 | *dest = '\n'; |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1673 | |
Neil Booth | 8128ccc | 2002-11-18 20:43:40 +0000 | [diff] [blame] | 1674 | /* Ugh; an awful kludge. We are really not set up to be lexing |
| 1675 | tokens when in the middle of a macro expansion. Use a new |
| 1676 | context to force cpp_get_token to lex, and so skip_rest_of_line |
| 1677 | doesn't go beyond the end of the text. Also, remember the |
| 1678 | current lexing position so we can return to it later. |
Neil Booth | 79ba5e3 | 2002-09-03 21:55:40 +0000 | [diff] [blame] | 1679 | |
Neil Booth | 8128ccc | 2002-11-18 20:43:40 +0000 | [diff] [blame] | 1680 | Something like line-at-a-time lexing should remove the need for |
| 1681 | this. */ |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1682 | saved_context = pfile->context; |
| 1683 | saved_cur_token = pfile->cur_token; |
| 1684 | saved_cur_run = pfile->cur_run; |
Neil Booth | 8128ccc | 2002-11-18 20:43:40 +0000 | [diff] [blame] | 1685 | |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1686 | pfile->context = XNEW (cpp_context); |
| 1687 | pfile->context->macro = 0; |
| 1688 | pfile->context->prev = 0; |
Jakub Jelinek | 1c90c6f | 2006-06-09 23:13:25 +0200 | [diff] [blame] | 1689 | pfile->context->next = 0; |
Neil Booth | 79ba5e3 | 2002-09-03 21:55:40 +0000 | [diff] [blame] | 1690 | |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1691 | /* Inline run_directive, since we need to delay the _cpp_pop_buffer |
| 1692 | until we've read all of the tokens that we want. */ |
| 1693 | cpp_push_buffer (pfile, (const uchar *) result, dest - result, |
| 1694 | /* from_stage3 */ true); |
| 1695 | /* ??? Antique Disgusting Hack. What does this do? */ |
| 1696 | if (pfile->buffer->prev) |
| 1697 | pfile->buffer->file = pfile->buffer->prev->file; |
Neil Booth | 79ba5e3 | 2002-09-03 21:55:40 +0000 | [diff] [blame] | 1698 | |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1699 | start_directive (pfile); |
| 1700 | _cpp_clean_line (pfile); |
Tom Tromey | 14ccf80 | 2008-03-13 21:10:07 +0000 | [diff] [blame] | 1701 | save_directive = pfile->directive; |
| 1702 | pfile->directive = &dtable[T_PRAGMA]; |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1703 | do_pragma (pfile); |
| 1704 | end_directive (pfile, 1); |
Tom Tromey | 14ccf80 | 2008-03-13 21:10:07 +0000 | [diff] [blame] | 1705 | pfile->directive = save_directive; |
Neil Booth | 79ba5e3 | 2002-09-03 21:55:40 +0000 | [diff] [blame] | 1706 | |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1707 | /* We always insert at least one token, the directive result. It'll |
| 1708 | either be a CPP_PADDING or a CPP_PRAGMA. In the later case, we |
| 1709 | need to insert *all* of the tokens, including the CPP_PRAGMA_EOL. */ |
Neil Booth | 79ba5e3 | 2002-09-03 21:55:40 +0000 | [diff] [blame] | 1710 | |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1711 | /* If we're not handling the pragma internally, read all of the tokens from |
| 1712 | the string buffer now, while the string buffer is still installed. */ |
| 1713 | /* ??? Note that the token buffer allocated here is leaked. It's not clear |
| 1714 | to me what the true lifespan of the tokens are. It would appear that |
| 1715 | the lifespan is the entire parse of the main input stream, in which case |
| 1716 | this may not be wrong. */ |
| 1717 | if (pfile->directive_result.type == CPP_PRAGMA) |
| 1718 | { |
| 1719 | int maxcount; |
Neil Booth | 79ba5e3 | 2002-09-03 21:55:40 +0000 | [diff] [blame] | 1720 | |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1721 | count = 1; |
| 1722 | maxcount = 50; |
| 1723 | toks = XNEWVEC (cpp_token, maxcount); |
| 1724 | toks[0] = pfile->directive_result; |
| 1725 | |
| 1726 | do |
| 1727 | { |
| 1728 | if (count == maxcount) |
| 1729 | { |
| 1730 | maxcount = maxcount * 3 / 2; |
| 1731 | toks = XRESIZEVEC (cpp_token, toks, maxcount); |
| 1732 | } |
Jakub Jelinek | 1c90c6f | 2006-06-09 23:13:25 +0200 | [diff] [blame] | 1733 | toks[count] = *cpp_get_token (pfile); |
| 1734 | /* Macros have been already expanded by cpp_get_token |
| 1735 | if the pragma allowed expansion. */ |
| 1736 | toks[count++].flags |= NO_EXPAND; |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 1737 | } |
| 1738 | while (toks[count-1].type != CPP_PRAGMA_EOL); |
| 1739 | } |
| 1740 | else |
| 1741 | { |
| 1742 | count = 1; |
| 1743 | toks = XNEW (cpp_token); |
| 1744 | toks[0] = pfile->directive_result; |
| 1745 | |
| 1746 | /* If we handled the entire pragma internally, make sure we get the |
| 1747 | line number correct for the next token. */ |
| 1748 | if (pfile->cb.line_change) |
| 1749 | pfile->cb.line_change (pfile, pfile->cur_token, false); |
| 1750 | } |
| 1751 | |
| 1752 | /* Finish inlining run_directive. */ |
| 1753 | pfile->buffer->file = NULL; |
| 1754 | _cpp_pop_buffer (pfile); |
| 1755 | |
| 1756 | /* Reset the old macro state before ... */ |
| 1757 | XDELETE (pfile->context); |
| 1758 | pfile->context = saved_context; |
| 1759 | pfile->cur_token = saved_cur_token; |
| 1760 | pfile->cur_run = saved_cur_run; |
| 1761 | |
| 1762 | /* ... inserting the new tokens we collected. */ |
| 1763 | _cpp_push_token_context (pfile, NULL, toks, count); |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1764 | } |
| 1765 | |
Tom Tromey | 5b9a40d | 2007-10-31 14:50:13 +0000 | [diff] [blame] | 1766 | /* Handle the _Pragma operator. Return 0 on error, 1 if ok. */ |
| 1767 | int |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1768 | _cpp_do__Pragma (cpp_reader *pfile) |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1769 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1770 | const cpp_token *string = get__Pragma_string (pfile); |
Zack Weinberg | 21b1149 | 2004-09-09 19:16:56 +0000 | [diff] [blame] | 1771 | pfile->directive_result.type = CPP_PADDING; |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1772 | |
Neil Booth | 79ba5e3 | 2002-09-03 21:55:40 +0000 | [diff] [blame] | 1773 | if (string) |
Tom Tromey | 5b9a40d | 2007-10-31 14:50:13 +0000 | [diff] [blame] | 1774 | { |
| 1775 | destringize_and_run (pfile, &string->val.str); |
| 1776 | return 1; |
| 1777 | } |
| 1778 | cpp_error (pfile, CPP_DL_ERROR, |
| 1779 | "_Pragma takes a parenthesized string literal"); |
| 1780 | return 0; |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1781 | } |
| 1782 | |
Neil Booth | 5d8ebbd | 2002-01-03 21:43:09 +0000 | [diff] [blame] | 1783 | /* Handle #ifdef. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1784 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1785 | do_ifdef (cpp_reader *pfile) |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 1786 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1787 | int skip = 1; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 1788 | |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1789 | if (! pfile->state.skipping) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1790 | { |
Joseph Myers | 93d45d9 | 2008-04-02 20:42:53 +0100 | [diff] [blame] | 1791 | cpp_hashnode *node = lex_macro_node (pfile, false); |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 1792 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1793 | if (node) |
Neil Booth | a69cbaa | 2002-07-23 22:57:49 +0000 | [diff] [blame] | 1794 | { |
| 1795 | skip = node->type != NT_MACRO; |
| 1796 | _cpp_mark_macro_used (node); |
Joseph Myers | 93d45d9 | 2008-04-02 20:42:53 +0100 | [diff] [blame] | 1797 | if (!(node->flags & NODE_USED)) |
| 1798 | { |
| 1799 | node->flags |= NODE_USED; |
| 1800 | if (node->type == NT_MACRO) |
| 1801 | { |
| 1802 | if (pfile->cb.used_define) |
| 1803 | pfile->cb.used_define (pfile, pfile->directive_line, node); |
| 1804 | } |
| 1805 | else |
| 1806 | { |
| 1807 | if (pfile->cb.used_undef) |
| 1808 | pfile->cb.used_undef (pfile, pfile->directive_line, node); |
| 1809 | } |
| 1810 | } |
Arnaud Charlet | 3de8a54 | 2009-11-20 08:18:16 +0000 | [diff] [blame^] | 1811 | if (pfile->cb.used) |
| 1812 | pfile->cb.used (pfile, pfile->directive_line, node); |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 1813 | check_eol (pfile, false); |
Neil Booth | a69cbaa | 2002-07-23 22:57:49 +0000 | [diff] [blame] | 1814 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1815 | } |
| 1816 | |
| 1817 | push_conditional (pfile, skip, T_IFDEF, 0); |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 1818 | } |
| 1819 | |
Neil Booth | 5d8ebbd | 2002-01-03 21:43:09 +0000 | [diff] [blame] | 1820 | /* Handle #ifndef. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1821 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1822 | do_ifndef (cpp_reader *pfile) |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 1823 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1824 | int skip = 1; |
Joseph Myers | 93d45d9 | 2008-04-02 20:42:53 +0100 | [diff] [blame] | 1825 | cpp_hashnode *node = 0; |
Zack Weinberg | 168d373 | 2000-03-14 06:34:11 +0000 | [diff] [blame] | 1826 | |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1827 | if (! pfile->state.skipping) |
Jakub Jelinek | 5af7e2c | 2000-06-08 00:27:57 +0200 | [diff] [blame] | 1828 | { |
Tom Tromey | ee1c2a1 | 2007-01-12 19:46:49 +0000 | [diff] [blame] | 1829 | node = lex_macro_node (pfile, false); |
Geoffrey Keating | b43db0b | 2000-12-02 22:28:44 +0000 | [diff] [blame] | 1830 | |
| 1831 | if (node) |
Neil Booth | a69cbaa | 2002-07-23 22:57:49 +0000 | [diff] [blame] | 1832 | { |
| 1833 | skip = node->type == NT_MACRO; |
| 1834 | _cpp_mark_macro_used (node); |
Joseph Myers | 93d45d9 | 2008-04-02 20:42:53 +0100 | [diff] [blame] | 1835 | if (!(node->flags & NODE_USED)) |
| 1836 | { |
| 1837 | node->flags |= NODE_USED; |
| 1838 | if (node->type == NT_MACRO) |
| 1839 | { |
| 1840 | if (pfile->cb.used_define) |
| 1841 | pfile->cb.used_define (pfile, pfile->directive_line, node); |
| 1842 | } |
| 1843 | else |
| 1844 | { |
| 1845 | if (pfile->cb.used_undef) |
| 1846 | pfile->cb.used_undef (pfile, pfile->directive_line, node); |
| 1847 | } |
| 1848 | } |
Arnaud Charlet | 3de8a54 | 2009-11-20 08:18:16 +0000 | [diff] [blame^] | 1849 | if (pfile->cb.used) |
| 1850 | pfile->cb.used (pfile, pfile->directive_line, node); |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 1851 | check_eol (pfile, false); |
Neil Booth | a69cbaa | 2002-07-23 22:57:49 +0000 | [diff] [blame] | 1852 | } |
Jakub Jelinek | 5af7e2c | 2000-06-08 00:27:57 +0200 | [diff] [blame] | 1853 | } |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 1854 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1855 | push_conditional (pfile, skip, T_IFNDEF, node); |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1856 | } |
| 1857 | |
Neil Booth | 6d18adb | 2001-07-29 17:27:57 +0000 | [diff] [blame] | 1858 | /* _cpp_parse_expr puts a macro in a "#if !defined ()" expression in |
| 1859 | pfile->mi_ind_cmacro so we can handle multiple-include |
Kazu Hirata | 6356f89 | 2003-06-12 19:01:08 +0000 | [diff] [blame] | 1860 | optimizations. If macro expansion occurs in the expression, we |
Neil Booth | 6d18adb | 2001-07-29 17:27:57 +0000 | [diff] [blame] | 1861 | cannot treat it as a controlling conditional, since the expansion |
| 1862 | could change in the future. That is handled by cpp_get_token. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1863 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1864 | do_if (cpp_reader *pfile) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1865 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1866 | int skip = 1; |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1867 | |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1868 | if (! pfile->state.skipping) |
Tom Tromey | d750887 | 2008-05-30 14:25:09 +0000 | [diff] [blame] | 1869 | skip = _cpp_parse_expr (pfile, true) == false; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1870 | |
Neil Booth | 6d18adb | 2001-07-29 17:27:57 +0000 | [diff] [blame] | 1871 | push_conditional (pfile, skip, T_IF, pfile->mi_ind_cmacro); |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1872 | } |
| 1873 | |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1874 | /* Flip skipping state if appropriate and continue without changing |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 1875 | if_stack; this is so that the error message for missing #endif's |
| 1876 | etc. will point to the original #if. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1877 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1878 | do_else (cpp_reader *pfile) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1879 | { |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1880 | cpp_buffer *buffer = pfile->buffer; |
| 1881 | struct if_stack *ifs = buffer->if_stack; |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 1882 | |
| 1883 | if (ifs == NULL) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1884 | cpp_error (pfile, CPP_DL_ERROR, "#else without #if"); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1885 | else |
Zack Weinberg | 40ea76d | 2000-02-06 07:30:25 +0000 | [diff] [blame] | 1886 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1887 | if (ifs->type == T_ELSE) |
| 1888 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1889 | cpp_error (pfile, CPP_DL_ERROR, "#else after #else"); |
| 1890 | cpp_error_with_line (pfile, CPP_DL_ERROR, ifs->line, 0, |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1891 | "the conditional began here"); |
| 1892 | } |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1893 | ifs->type = T_ELSE; |
| 1894 | |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1895 | /* Skip any future (erroneous) #elses or #elifs. */ |
| 1896 | pfile->state.skipping = ifs->skip_elses; |
| 1897 | ifs->skip_elses = true; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1898 | |
| 1899 | /* Invalidate any controlling macro. */ |
| 1900 | ifs->mi_cmacro = 0; |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1901 | |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1902 | /* Only check EOL if was not originally skipping. */ |
Phil Edwards | 909de5d | 2002-03-22 21:59:04 +0000 | [diff] [blame] | 1903 | if (!ifs->was_skipping && CPP_OPTION (pfile, warn_endif_labels)) |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 1904 | check_eol (pfile, false); |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1905 | } |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1906 | } |
| 1907 | |
Neil Booth | 5d8ebbd | 2002-01-03 21:43:09 +0000 | [diff] [blame] | 1908 | /* Handle a #elif directive by not changing if_stack either. See the |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1909 | comment above do_else. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1910 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1911 | do_elif (cpp_reader *pfile) |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 1912 | { |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1913 | cpp_buffer *buffer = pfile->buffer; |
| 1914 | struct if_stack *ifs = buffer->if_stack; |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 1915 | |
| 1916 | if (ifs == NULL) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1917 | cpp_error (pfile, CPP_DL_ERROR, "#elif without #if"); |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1918 | else |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 1919 | { |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1920 | if (ifs->type == T_ELSE) |
| 1921 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1922 | cpp_error (pfile, CPP_DL_ERROR, "#elif after #else"); |
| 1923 | cpp_error_with_line (pfile, CPP_DL_ERROR, ifs->line, 0, |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1924 | "the conditional began here"); |
| 1925 | } |
| 1926 | ifs->type = T_ELIF; |
| 1927 | |
Tom Tromey | d750887 | 2008-05-30 14:25:09 +0000 | [diff] [blame] | 1928 | if (! ifs->was_skipping) |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1929 | { |
Tom Tromey | d750887 | 2008-05-30 14:25:09 +0000 | [diff] [blame] | 1930 | bool value; |
| 1931 | /* The standard mandates that the expression be parsed even |
| 1932 | if we are skipping elses at this point -- the lexical |
| 1933 | restrictions on #elif only apply to skipped groups, but |
| 1934 | this group is not being skipped. Temporarily set |
| 1935 | skipping to false to get lexer warnings. */ |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1936 | pfile->state.skipping = 0; |
Tom Tromey | d750887 | 2008-05-30 14:25:09 +0000 | [diff] [blame] | 1937 | value = _cpp_parse_expr (pfile, false); |
| 1938 | if (ifs->skip_elses) |
| 1939 | pfile->state.skipping = 1; |
| 1940 | else |
| 1941 | { |
| 1942 | pfile->state.skipping = ! value; |
| 1943 | ifs->skip_elses = value; |
| 1944 | } |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1945 | } |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1946 | |
| 1947 | /* Invalidate any controlling macro. */ |
| 1948 | ifs->mi_cmacro = 0; |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 1949 | } |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 1950 | } |
| 1951 | |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1952 | /* #endif pops the if stack and resets pfile->state.skipping. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1953 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1954 | do_endif (cpp_reader *pfile) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1955 | { |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1956 | cpp_buffer *buffer = pfile->buffer; |
| 1957 | struct if_stack *ifs = buffer->if_stack; |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1958 | |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 1959 | if (ifs == NULL) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1960 | cpp_error (pfile, CPP_DL_ERROR, "#endif without #if"); |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1961 | else |
| 1962 | { |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1963 | /* Only check EOL if was not originally skipping. */ |
Phil Edwards | 909de5d | 2002-03-22 21:59:04 +0000 | [diff] [blame] | 1964 | if (!ifs->was_skipping && CPP_OPTION (pfile, warn_endif_labels)) |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 1965 | check_eol (pfile, false); |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1966 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1967 | /* If potential control macro, we go back outside again. */ |
| 1968 | if (ifs->next == 0 && ifs->mi_cmacro) |
| 1969 | { |
Neil Booth | 6d18adb | 2001-07-29 17:27:57 +0000 | [diff] [blame] | 1970 | pfile->mi_valid = true; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1971 | pfile->mi_cmacro = ifs->mi_cmacro; |
| 1972 | } |
| 1973 | |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1974 | buffer->if_stack = ifs->next; |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1975 | pfile->state.skipping = ifs->was_skipping; |
Neil Booth | 2a967f3 | 2001-05-20 06:26:45 +0000 | [diff] [blame] | 1976 | obstack_free (&pfile->buffer_ob, ifs); |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 1977 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1978 | } |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 1979 | |
Neil Booth | 5d8ebbd | 2002-01-03 21:43:09 +0000 | [diff] [blame] | 1980 | /* Push an if_stack entry for a preprocessor conditional, and set |
| 1981 | pfile->state.skipping to SKIP. If TYPE indicates the conditional |
| 1982 | is #if or #ifndef, CMACRO is a potentially controlling macro, and |
| 1983 | we need to check here that we are at the top of the file. */ |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 1984 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1985 | push_conditional (cpp_reader *pfile, int skip, int type, |
| 1986 | const cpp_hashnode *cmacro) |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 1987 | { |
| 1988 | struct if_stack *ifs; |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1989 | cpp_buffer *buffer = pfile->buffer; |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 1990 | |
Bernardo Innocenti | 72bb2c3 | 2004-07-24 20:04:42 +0200 | [diff] [blame] | 1991 | ifs = XOBNEW (&pfile->buffer_ob, struct if_stack); |
Neil Booth | 5041042 | 2001-09-15 10:18:03 +0000 | [diff] [blame] | 1992 | ifs->line = pfile->directive_line; |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1993 | ifs->next = buffer->if_stack; |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 1994 | ifs->skip_elses = pfile->state.skipping || !skip; |
| 1995 | ifs->was_skipping = pfile->state.skipping; |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 1996 | ifs->type = type; |
Neil Booth | 6d18adb | 2001-07-29 17:27:57 +0000 | [diff] [blame] | 1997 | /* This condition is effectively a test for top-of-file. */ |
| 1998 | if (pfile->mi_valid && pfile->mi_cmacro == 0) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1999 | ifs->mi_cmacro = cmacro; |
| 2000 | else |
| 2001 | ifs->mi_cmacro = 0; |
Zack Weinberg | ea4a453 | 2000-05-29 16:19:32 +0000 | [diff] [blame] | 2002 | |
Neil Booth | cef0d19 | 2001-07-26 06:02:47 +0000 | [diff] [blame] | 2003 | pfile->state.skipping = skip; |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 2004 | buffer->if_stack = ifs; |
Zack Weinberg | 7061aa5 | 1998-12-15 11:09:16 +0000 | [diff] [blame] | 2005 | } |
| 2006 | |
Neil Booth | 5d8ebbd | 2002-01-03 21:43:09 +0000 | [diff] [blame] | 2007 | /* Read the tokens of the answer into the macro pool, in a directive |
| 2008 | of type TYPE. Only commit the memory if we intend it as permanent |
| 2009 | storage, i.e. the #assert case. Returns 0 on success, and sets |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 2010 | ANSWERP to point to the answer. PRED_LOC is the location of the |
| 2011 | predicate. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2012 | static int |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 2013 | parse_answer (cpp_reader *pfile, struct answer **answerp, int type, |
| 2014 | source_location pred_loc) |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2015 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 2016 | const cpp_token *paren; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2017 | struct answer *answer; |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 2018 | unsigned int acount; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2019 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2020 | /* In a conditional, it is legal to not have an open paren. We |
| 2021 | should save the following token in this case. */ |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 2022 | paren = cpp_get_token (pfile); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2023 | |
| 2024 | /* If not a paren, see if we're OK. */ |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 2025 | if (paren->type != CPP_OPEN_PAREN) |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2026 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2027 | /* In a conditional no answer is a test for any answer. It |
| 2028 | could be followed by any token. */ |
| 2029 | if (type == T_IF) |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 2030 | { |
| 2031 | _cpp_backup_tokens (pfile, 1); |
| 2032 | return 0; |
| 2033 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2034 | |
| 2035 | /* #unassert with no answer is valid - it removes all answers. */ |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 2036 | if (type == T_UNASSERT && paren->type == CPP_EOF) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2037 | return 0; |
| 2038 | |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 2039 | cpp_error_with_line (pfile, CPP_DL_ERROR, pred_loc, 0, |
| 2040 | "missing '(' after predicate"); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2041 | return 1; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2042 | } |
| 2043 | |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 2044 | for (acount = 0;; acount++) |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2045 | { |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 2046 | size_t room_needed; |
| 2047 | const cpp_token *token = cpp_get_token (pfile); |
| 2048 | cpp_token *dest; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2049 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2050 | if (token->type == CPP_CLOSE_PAREN) |
| 2051 | break; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2052 | |
| 2053 | if (token->type == CPP_EOF) |
| 2054 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 2055 | cpp_error (pfile, CPP_DL_ERROR, "missing ')' to complete answer"); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2056 | return 1; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2057 | } |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 2058 | |
| 2059 | /* struct answer includes the space for one token. */ |
| 2060 | room_needed = (sizeof (struct answer) + acount * sizeof (cpp_token)); |
| 2061 | |
| 2062 | if (BUFF_ROOM (pfile->a_buff) < room_needed) |
| 2063 | _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (struct answer)); |
| 2064 | |
| 2065 | dest = &((struct answer *) BUFF_FRONT (pfile->a_buff))->first[acount]; |
| 2066 | *dest = *token; |
| 2067 | |
| 2068 | /* Drop whitespace at start, for answer equivalence purposes. */ |
| 2069 | if (acount == 0) |
| 2070 | dest->flags &= ~PREV_WHITE; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2071 | } |
| 2072 | |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 2073 | if (acount == 0) |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2074 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 2075 | cpp_error (pfile, CPP_DL_ERROR, "predicate's answer is empty"); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2076 | return 1; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2077 | } |
| 2078 | |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 2079 | answer = (struct answer *) BUFF_FRONT (pfile->a_buff); |
| 2080 | answer->count = acount; |
| 2081 | answer->next = NULL; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2082 | *answerp = answer; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2083 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2084 | return 0; |
| 2085 | } |
| 2086 | |
Neil Booth | 5d8ebbd | 2002-01-03 21:43:09 +0000 | [diff] [blame] | 2087 | /* Parses an assertion directive of type TYPE, returning a pointer to |
| 2088 | the hash node of the predicate, or 0 on error. If an answer was |
| 2089 | supplied, it is placed in ANSWERP, otherwise it is set to 0. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2090 | static cpp_hashnode * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2091 | parse_assertion (cpp_reader *pfile, struct answer **answerp, int type) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2092 | { |
| 2093 | cpp_hashnode *result = 0; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 2094 | const cpp_token *predicate; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2095 | |
| 2096 | /* We don't expand predicates or answers. */ |
| 2097 | pfile->state.prevent_expansion++; |
| 2098 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2099 | *answerp = 0; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 2100 | predicate = cpp_get_token (pfile); |
| 2101 | if (predicate->type == CPP_EOF) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 2102 | cpp_error (pfile, CPP_DL_ERROR, "assertion without predicate"); |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 2103 | else if (predicate->type != CPP_NAME) |
Manuel López-Ibáñez | a28fbdb | 2009-06-23 16:30:58 +0000 | [diff] [blame] | 2104 | cpp_error_with_line (pfile, CPP_DL_ERROR, predicate->src_loc, 0, |
| 2105 | "predicate must be an identifier"); |
| 2106 | else if (parse_answer (pfile, answerp, type, predicate->src_loc) == 0) |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2107 | { |
Joseph Myers | 9a0c618 | 2009-05-10 15:27:32 +0100 | [diff] [blame] | 2108 | unsigned int len = NODE_LEN (predicate->val.node.node); |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 2109 | unsigned char *sym = (unsigned char *) alloca (len + 1); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2110 | |
| 2111 | /* Prefix '#' to get it out of macro namespace. */ |
| 2112 | sym[0] = '#'; |
Joseph Myers | 9a0c618 | 2009-05-10 15:27:32 +0100 | [diff] [blame] | 2113 | memcpy (sym + 1, NODE_NAME (predicate->val.node.node), len); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2114 | result = cpp_lookup (pfile, sym, len + 1); |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2115 | } |
| 2116 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2117 | pfile->state.prevent_expansion--; |
| 2118 | return result; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2119 | } |
| 2120 | |
Neil Booth | 5d8ebbd | 2002-01-03 21:43:09 +0000 | [diff] [blame] | 2121 | /* Returns a pointer to the pointer to CANDIDATE in the answer chain, |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2122 | or a pointer to NULL if the answer is not in the chain. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2123 | static struct answer ** |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2124 | find_answer (cpp_hashnode *node, const struct answer *candidate) |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2125 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2126 | unsigned int i; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2127 | struct answer **result; |
| 2128 | |
| 2129 | for (result = &node->value.answers; *result; result = &(*result)->next) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2130 | { |
| 2131 | struct answer *answer = *result; |
| 2132 | |
| 2133 | if (answer->count == candidate->count) |
| 2134 | { |
| 2135 | for (i = 0; i < answer->count; i++) |
| 2136 | if (! _cpp_equiv_tokens (&answer->first[i], &candidate->first[i])) |
| 2137 | break; |
| 2138 | |
| 2139 | if (i == answer->count) |
| 2140 | break; |
| 2141 | } |
| 2142 | } |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2143 | |
| 2144 | return result; |
| 2145 | } |
| 2146 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2147 | /* Test an assertion within a preprocessor conditional. Returns |
Kazu Hirata | da7d830 | 2002-09-22 02:03:17 +0000 | [diff] [blame] | 2148 | nonzero on failure, zero on success. On success, the result of |
Hans-Peter Nilsson | 2402645 | 2002-11-29 22:41:04 +0000 | [diff] [blame] | 2149 | the test is written into VALUE, otherwise the value 0. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2150 | int |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2151 | _cpp_test_assertion (cpp_reader *pfile, unsigned int *value) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2152 | { |
| 2153 | struct answer *answer; |
| 2154 | cpp_hashnode *node; |
| 2155 | |
| 2156 | node = parse_assertion (pfile, &answer, T_IF); |
Hans-Peter Nilsson | 2402645 | 2002-11-29 22:41:04 +0000 | [diff] [blame] | 2157 | |
| 2158 | /* For recovery, an erroneous assertion expression is handled as a |
| 2159 | failing assertion. */ |
| 2160 | *value = 0; |
| 2161 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2162 | if (node) |
| 2163 | *value = (node->type == NT_ASSERTION && |
| 2164 | (answer == 0 || *find_answer (node, answer) != 0)); |
Neil Booth | 9131890 | 2002-05-26 18:42:21 +0000 | [diff] [blame] | 2165 | else if (pfile->cur_token[-1].type == CPP_EOF) |
| 2166 | _cpp_backup_tokens (pfile, 1); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2167 | |
| 2168 | /* We don't commit the memory for the answer - it's temporary only. */ |
| 2169 | return node == 0; |
| 2170 | } |
| 2171 | |
Neil Booth | 5d8ebbd | 2002-01-03 21:43:09 +0000 | [diff] [blame] | 2172 | /* Handle #assert. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 2173 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2174 | do_assert (cpp_reader *pfile) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 2175 | { |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2176 | struct answer *new_answer; |
| 2177 | cpp_hashnode *node; |
Kazu Hirata | df38348 | 2002-05-22 22:02:16 +0000 | [diff] [blame] | 2178 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2179 | node = parse_assertion (pfile, &new_answer, T_ASSERT); |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2180 | if (node) |
| 2181 | { |
Geoffrey Keating | d804416 | 2004-06-09 20:10:13 +0000 | [diff] [blame] | 2182 | size_t answer_size; |
| 2183 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2184 | /* Place the new answer in the answer list. First check there |
| 2185 | is not a duplicate. */ |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2186 | new_answer->next = 0; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2187 | if (node->type == NT_ASSERTION) |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2188 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2189 | if (*find_answer (node, new_answer)) |
| 2190 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 2191 | cpp_error (pfile, CPP_DL_WARNING, "\"%s\" re-asserted", |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 2192 | NODE_NAME (node) + 1); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2193 | return; |
| 2194 | } |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2195 | new_answer->next = node->value.answers; |
| 2196 | } |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 2197 | |
Geoffrey Keating | d804416 | 2004-06-09 20:10:13 +0000 | [diff] [blame] | 2198 | answer_size = sizeof (struct answer) + ((new_answer->count - 1) |
| 2199 | * sizeof (cpp_token)); |
| 2200 | /* Commit or allocate storage for the object. */ |
| 2201 | if (pfile->hash_table->alloc_subobject) |
| 2202 | { |
| 2203 | struct answer *temp_answer = new_answer; |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 2204 | new_answer = (struct answer *) pfile->hash_table->alloc_subobject |
| 2205 | (answer_size); |
Geoffrey Keating | d804416 | 2004-06-09 20:10:13 +0000 | [diff] [blame] | 2206 | memcpy (new_answer, temp_answer, answer_size); |
| 2207 | } |
| 2208 | else |
| 2209 | BUFF_FRONT (pfile->a_buff) += answer_size; |
| 2210 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2211 | node->type = NT_ASSERTION; |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2212 | node->value.answers = new_answer; |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 2213 | check_eol (pfile, false); |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2214 | } |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 2215 | } |
Zack Weinberg | 7061aa5 | 1998-12-15 11:09:16 +0000 | [diff] [blame] | 2216 | |
Neil Booth | 5d8ebbd | 2002-01-03 21:43:09 +0000 | [diff] [blame] | 2217 | /* Handle #unassert. */ |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 2218 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2219 | do_unassert (cpp_reader *pfile) |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 2220 | { |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2221 | cpp_hashnode *node; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2222 | struct answer *answer; |
Kazu Hirata | df38348 | 2002-05-22 22:02:16 +0000 | [diff] [blame] | 2223 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2224 | node = parse_assertion (pfile, &answer, T_UNASSERT); |
| 2225 | /* It isn't an error to #unassert something that isn't asserted. */ |
| 2226 | if (node && node->type == NT_ASSERTION) |
Zack Weinberg | 7061aa5 | 1998-12-15 11:09:16 +0000 | [diff] [blame] | 2227 | { |
Zack Weinberg | 041c319 | 2000-07-04 01:58:21 +0000 | [diff] [blame] | 2228 | if (answer) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2229 | { |
| 2230 | struct answer **p = find_answer (node, answer), *temp; |
| 2231 | |
| 2232 | /* Remove the answer from the list. */ |
| 2233 | temp = *p; |
| 2234 | if (temp) |
| 2235 | *p = temp->next; |
| 2236 | |
| 2237 | /* Did we free the last answer? */ |
| 2238 | if (node->value.answers == 0) |
| 2239 | node->type = NT_VOID; |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 2240 | |
Joseph Myers | a5cb563 | 2009-04-18 16:28:40 +0100 | [diff] [blame] | 2241 | check_eol (pfile, false); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2242 | } |
| 2243 | else |
| 2244 | _cpp_free_definition (node); |
Zack Weinberg | 7061aa5 | 1998-12-15 11:09:16 +0000 | [diff] [blame] | 2245 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2246 | |
| 2247 | /* We don't commit the memory for the answer - it's temporary only. */ |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 2248 | } |
Per Bothner | 7f2935c | 1995-03-16 13:59:07 -0800 | [diff] [blame] | 2249 | |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2250 | /* These are for -D, -U, -A. */ |
| 2251 | |
| 2252 | /* Process the string STR as if it appeared as the body of a #define. |
| 2253 | If STR is just an identifier, define it with value 1. |
| 2254 | If STR has anything after the identifier, then it should |
Kazu Hirata | ec5c56d | 2001-08-01 17:57:27 +0000 | [diff] [blame] | 2255 | be identifier=definition. */ |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2256 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2257 | cpp_define (cpp_reader *pfile, const char *str) |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2258 | { |
Jason Merrill | 86373e7 | 2009-09-12 15:46:45 -0400 | [diff] [blame] | 2259 | char *buf; |
| 2260 | const char *p; |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2261 | size_t count; |
| 2262 | |
Kazu Hirata | df38348 | 2002-05-22 22:02:16 +0000 | [diff] [blame] | 2263 | /* Copy the entire option so we can modify it. |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2264 | Change the first "=" in the string to a space. If there is none, |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2265 | tack " 1" on the end. */ |
| 2266 | |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2267 | count = strlen (str); |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 2268 | buf = (char *) alloca (count + 3); |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2269 | memcpy (buf, str, count); |
| 2270 | |
| 2271 | p = strchr (str, '='); |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2272 | if (p) |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2273 | buf[p - str] = ' '; |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2274 | else |
| 2275 | { |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2276 | buf[count++] = ' '; |
| 2277 | buf[count++] = '1'; |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2278 | } |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 2279 | buf[count] = '\n'; |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2280 | |
Neil Booth | 29401c3 | 2001-08-22 20:37:20 +0000 | [diff] [blame] | 2281 | run_directive (pfile, T_DEFINE, buf, count); |
Zack Weinberg | 2c8f051 | 2000-08-29 18:37:37 +0000 | [diff] [blame] | 2282 | } |
| 2283 | |
Daniel Franke | 28f6862 | 2008-04-22 14:04:32 -0400 | [diff] [blame] | 2284 | |
| 2285 | /* Use to build macros to be run through cpp_define() as |
| 2286 | described above. |
| 2287 | Example: cpp_define_formatted (pfile, "MACRO=%d", value); */ |
| 2288 | |
| 2289 | void |
| 2290 | cpp_define_formatted (cpp_reader *pfile, const char *fmt, ...) |
| 2291 | { |
| 2292 | char *ptr = NULL; |
| 2293 | |
| 2294 | va_list ap; |
| 2295 | va_start (ap, fmt); |
| 2296 | vasprintf (&ptr, fmt, ap); |
| 2297 | va_end (ap); |
| 2298 | |
| 2299 | cpp_define (pfile, ptr); |
| 2300 | free (ptr); |
| 2301 | } |
| 2302 | |
| 2303 | |
Neil Booth | ad2a084 | 2000-12-17 00:13:54 +0000 | [diff] [blame] | 2304 | /* Slight variant of the above for use by initialize_builtins. */ |
Zack Weinberg | 2c8f051 | 2000-08-29 18:37:37 +0000 | [diff] [blame] | 2305 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2306 | _cpp_define_builtin (cpp_reader *pfile, const char *str) |
Zack Weinberg | 2c8f051 | 2000-08-29 18:37:37 +0000 | [diff] [blame] | 2307 | { |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 2308 | size_t len = strlen (str); |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 2309 | char *buf = (char *) alloca (len + 1); |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 2310 | memcpy (buf, str, len); |
| 2311 | buf[len] = '\n'; |
| 2312 | run_directive (pfile, T_DEFINE, buf, len); |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2313 | } |
| 2314 | |
| 2315 | /* Process MACRO as if it appeared as the body of an #undef. */ |
| 2316 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2317 | cpp_undef (cpp_reader *pfile, const char *macro) |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2318 | { |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 2319 | size_t len = strlen (macro); |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 2320 | char *buf = (char *) alloca (len + 1); |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 2321 | memcpy (buf, macro, len); |
| 2322 | buf[len] = '\n'; |
| 2323 | run_directive (pfile, T_UNDEF, buf, len); |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2324 | } |
| 2325 | |
Richard Henderson | 121de39 | 2007-03-30 14:12:53 -0700 | [diff] [blame] | 2326 | /* If STR is a defined macro, return its definition node, else return NULL. */ |
| 2327 | cpp_macro * |
| 2328 | cpp_push_definition (cpp_reader *pfile, const char *str) |
| 2329 | { |
Kai Tietz | 17e7cb8 | 2009-11-11 18:37:19 +0000 | [diff] [blame] | 2330 | cpp_hashnode *node = _cpp_lex_identifier (pfile, str); |
Richard Henderson | 121de39 | 2007-03-30 14:12:53 -0700 | [diff] [blame] | 2331 | if (node && node->type == NT_MACRO) |
| 2332 | return node->value.macro; |
| 2333 | else |
| 2334 | return NULL; |
| 2335 | } |
| 2336 | |
| 2337 | /* Replace a previous definition DFN of the macro STR. If DFN is NULL, |
| 2338 | then the macro should be undefined. */ |
| 2339 | void |
| 2340 | cpp_pop_definition (cpp_reader *pfile, const char *str, cpp_macro *dfn) |
| 2341 | { |
Kai Tietz | 17e7cb8 | 2009-11-11 18:37:19 +0000 | [diff] [blame] | 2342 | cpp_hashnode *node = _cpp_lex_identifier (pfile, str); |
Richard Henderson | 121de39 | 2007-03-30 14:12:53 -0700 | [diff] [blame] | 2343 | if (node == NULL) |
| 2344 | return; |
| 2345 | |
Joseph Myers | 93d45d9 | 2008-04-02 20:42:53 +0100 | [diff] [blame] | 2346 | if (pfile->cb.before_define) |
| 2347 | pfile->cb.before_define (pfile); |
| 2348 | |
Richard Henderson | 121de39 | 2007-03-30 14:12:53 -0700 | [diff] [blame] | 2349 | if (node->type == NT_MACRO) |
| 2350 | { |
| 2351 | if (pfile->cb.undef) |
| 2352 | pfile->cb.undef (pfile, pfile->directive_line, node); |
| 2353 | if (CPP_OPTION (pfile, warn_unused_macros)) |
| 2354 | _cpp_warn_if_unused_macro (pfile, node, NULL); |
| 2355 | } |
| 2356 | if (node->type != NT_VOID) |
| 2357 | _cpp_free_definition (node); |
| 2358 | |
| 2359 | if (dfn) |
| 2360 | { |
| 2361 | node->type = NT_MACRO; |
| 2362 | node->value.macro = dfn; |
| 2363 | if (! ustrncmp (NODE_NAME (node), DSC ("__STDC_"))) |
| 2364 | node->flags |= NODE_WARN; |
| 2365 | |
| 2366 | if (pfile->cb.define) |
| 2367 | pfile->cb.define (pfile, pfile->directive_line, node); |
| 2368 | } |
| 2369 | } |
| 2370 | |
Kazu Hirata | ec5c56d | 2001-08-01 17:57:27 +0000 | [diff] [blame] | 2371 | /* Process the string STR as if it appeared as the body of a #assert. */ |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2372 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2373 | cpp_assert (cpp_reader *pfile, const char *str) |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2374 | { |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2375 | handle_assertion (pfile, str, T_ASSERT); |
Zack Weinberg | 45b966d | 2000-03-13 22:01:08 +0000 | [diff] [blame] | 2376 | } |
| 2377 | |
Kazu Hirata | ec5c56d | 2001-08-01 17:57:27 +0000 | [diff] [blame] | 2378 | /* Process STR as if it appeared as the body of an #unassert. */ |
Zack Weinberg | 0b22d65 | 1999-03-15 18:42:46 +0000 | [diff] [blame] | 2379 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2380 | cpp_unassert (cpp_reader *pfile, const char *str) |
Zack Weinberg | 0b22d65 | 1999-03-15 18:42:46 +0000 | [diff] [blame] | 2381 | { |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2382 | handle_assertion (pfile, str, T_UNASSERT); |
Kazu Hirata | df38348 | 2002-05-22 22:02:16 +0000 | [diff] [blame] | 2383 | } |
Zack Weinberg | 0b22d65 | 1999-03-15 18:42:46 +0000 | [diff] [blame] | 2384 | |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2385 | /* Common code for cpp_assert (-A) and cpp_unassert (-A-). */ |
| 2386 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2387 | handle_assertion (cpp_reader *pfile, const char *str, int type) |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2388 | { |
| 2389 | size_t count = strlen (str); |
| 2390 | const char *p = strchr (str, '='); |
| 2391 | |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 2392 | /* Copy the entire option so we can modify it. Change the first |
| 2393 | "=" in the string to a '(', and tack a ')' on the end. */ |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 2394 | char *buf = (char *) alloca (count + 2); |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 2395 | |
| 2396 | memcpy (buf, str, count); |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2397 | if (p) |
| 2398 | { |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2399 | buf[p - str] = '('; |
| 2400 | buf[count++] = ')'; |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2401 | } |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 2402 | buf[count] = '\n'; |
| 2403 | str = buf; |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2404 | |
Neil Booth | 29401c3 | 2001-08-22 20:37:20 +0000 | [diff] [blame] | 2405 | run_directive (pfile, type, str, count); |
Neil Booth | 8636812 | 2000-10-31 23:34:59 +0000 | [diff] [blame] | 2406 | } |
| 2407 | |
Neil Booth | 7e96d76 | 2001-01-13 01:00:01 +0000 | [diff] [blame] | 2408 | /* The options structure. */ |
| 2409 | cpp_options * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2410 | cpp_get_options (cpp_reader *pfile) |
Neil Booth | 7e96d76 | 2001-01-13 01:00:01 +0000 | [diff] [blame] | 2411 | { |
| 2412 | return &pfile->opts; |
| 2413 | } |
| 2414 | |
| 2415 | /* The callbacks structure. */ |
| 2416 | cpp_callbacks * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2417 | cpp_get_callbacks (cpp_reader *pfile) |
Neil Booth | 7e96d76 | 2001-01-13 01:00:01 +0000 | [diff] [blame] | 2418 | { |
| 2419 | return &pfile->cb; |
| 2420 | } |
| 2421 | |
| 2422 | /* Copy the given callbacks structure to our own. */ |
| 2423 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2424 | cpp_set_callbacks (cpp_reader *pfile, cpp_callbacks *cb) |
Neil Booth | 7e96d76 | 2001-01-13 01:00:01 +0000 | [diff] [blame] | 2425 | { |
| 2426 | pfile->cb = *cb; |
| 2427 | } |
| 2428 | |
Zack Weinberg | c6e8380 | 2004-06-05 20:58:06 +0000 | [diff] [blame] | 2429 | /* The dependencies structure. (Creates one if it hasn't already been.) */ |
| 2430 | struct deps * |
| 2431 | cpp_get_deps (cpp_reader *pfile) |
| 2432 | { |
| 2433 | if (!pfile->deps) |
| 2434 | pfile->deps = deps_init (); |
| 2435 | return pfile->deps; |
| 2436 | } |
| 2437 | |
Neil Booth | eb1f4d9 | 2000-12-18 19:00:26 +0000 | [diff] [blame] | 2438 | /* Push a new buffer on the buffer stack. Returns the new buffer; it |
| 2439 | doesn't fail. It does not generate a file change call back; that |
| 2440 | is the responsibility of the caller. */ |
Zack Weinberg | c71f835 | 2000-07-05 05:33:57 +0000 | [diff] [blame] | 2441 | cpp_buffer * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2442 | cpp_push_buffer (cpp_reader *pfile, const uchar *buffer, size_t len, |
Per Bothner | 40de9f7 | 2003-10-02 07:30:34 +0000 | [diff] [blame] | 2443 | int from_stage3) |
Zack Weinberg | c71f835 | 2000-07-05 05:33:57 +0000 | [diff] [blame] | 2444 | { |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 2445 | cpp_buffer *new_buffer = XOBNEW (&pfile->buffer_ob, cpp_buffer); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2446 | |
Neil Booth | fde8434 | 2001-08-06 21:07:41 +0000 | [diff] [blame] | 2447 | /* Clears, amongst other things, if_stack and mi_cmacro. */ |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 2448 | memset (new_buffer, 0, sizeof (cpp_buffer)); |
Neil Booth | ad2a084 | 2000-12-17 00:13:54 +0000 | [diff] [blame] | 2449 | |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 2450 | new_buffer->next_line = new_buffer->buf = buffer; |
| 2451 | new_buffer->rlimit = buffer + len; |
| 2452 | new_buffer->from_stage3 = from_stage3; |
| 2453 | new_buffer->prev = pfile->buffer; |
| 2454 | new_buffer->need_line = true; |
Neil Booth | 0bda476 | 2000-12-11 07:45:16 +0000 | [diff] [blame] | 2455 | |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 2456 | pfile->buffer = new_buffer; |
Eric Christopher | cf551fb | 2004-01-16 22:37:49 +0000 | [diff] [blame] | 2457 | |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 2458 | return new_buffer; |
Zack Weinberg | c71f835 | 2000-07-05 05:33:57 +0000 | [diff] [blame] | 2459 | } |
| 2460 | |
Neil Booth | af0d16c | 2002-04-22 17:48:02 +0000 | [diff] [blame] | 2461 | /* Pops a single buffer, with a file change call-back if appropriate. |
| 2462 | Then pushes the next -include file, if any remain. */ |
Neil Booth | ef6e958 | 2001-08-04 12:01:59 +0000 | [diff] [blame] | 2463 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2464 | _cpp_pop_buffer (cpp_reader *pfile) |
Zack Weinberg | c71f835 | 2000-07-05 05:33:57 +0000 | [diff] [blame] | 2465 | { |
Neil Booth | fde8434 | 2001-08-06 21:07:41 +0000 | [diff] [blame] | 2466 | cpp_buffer *buffer = pfile->buffer; |
Neil Booth | 8f9b400 | 2003-07-29 22:26:13 +0000 | [diff] [blame] | 2467 | struct _cpp_file *inc = buffer->file; |
Neil Booth | ad2a084 | 2000-12-17 00:13:54 +0000 | [diff] [blame] | 2468 | struct if_stack *ifs; |
Zack Weinberg | c71f835 | 2000-07-05 05:33:57 +0000 | [diff] [blame] | 2469 | |
Neil Booth | fde8434 | 2001-08-06 21:07:41 +0000 | [diff] [blame] | 2470 | /* Walk back up the conditional stack till we reach its level at |
| 2471 | entry to this file, issuing error messages. */ |
| 2472 | for (ifs = buffer->if_stack; ifs; ifs = ifs->next) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 2473 | cpp_error_with_line (pfile, CPP_DL_ERROR, ifs->line, 0, |
Neil Booth | fde8434 | 2001-08-06 21:07:41 +0000 | [diff] [blame] | 2474 | "unterminated #%s", dtable[ifs->type].name); |
| 2475 | |
Neil Booth | 9729389 | 2001-09-14 22:04:46 +0000 | [diff] [blame] | 2476 | /* In case of a missing #endif. */ |
Neil Booth | 67821e3 | 2001-08-05 17:31:25 +0000 | [diff] [blame] | 2477 | pfile->state.skipping = 0; |
Neil Booth | 29401c3 | 2001-08-22 20:37:20 +0000 | [diff] [blame] | 2478 | |
Neil Booth | af0d16c | 2002-04-22 17:48:02 +0000 | [diff] [blame] | 2479 | /* _cpp_do_file_change expects pfile->buffer to be the new one. */ |
Neil Booth | 29401c3 | 2001-08-22 20:37:20 +0000 | [diff] [blame] | 2480 | pfile->buffer = buffer->prev; |
| 2481 | |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 2482 | free (buffer->notes); |
| 2483 | |
Neil Booth | af0d16c | 2002-04-22 17:48:02 +0000 | [diff] [blame] | 2484 | /* Free the buffer object now; we may want to push a new buffer |
| 2485 | in _cpp_push_next_include_file. */ |
| 2486 | obstack_free (&pfile->buffer_ob, buffer); |
Neil Booth | 29401c3 | 2001-08-22 20:37:20 +0000 | [diff] [blame] | 2487 | |
Neil Booth | af0d16c | 2002-04-22 17:48:02 +0000 | [diff] [blame] | 2488 | if (inc) |
| 2489 | { |
| 2490 | _cpp_pop_file_buffer (pfile, inc); |
| 2491 | |
Per Bothner | 40de9f7 | 2003-10-02 07:30:34 +0000 | [diff] [blame] | 2492 | _cpp_do_file_change (pfile, LC_LEAVE, 0, 0, 0); |
Neil Booth | af0d16c | 2002-04-22 17:48:02 +0000 | [diff] [blame] | 2493 | } |
Zack Weinberg | c71f835 | 2000-07-05 05:33:57 +0000 | [diff] [blame] | 2494 | } |
| 2495 | |
Kazu Hirata | 05713b8 | 2002-09-15 18:24:08 +0000 | [diff] [blame] | 2496 | /* Enter all recognized directives in the hash table. */ |
Zack Weinberg | c71f835 | 2000-07-05 05:33:57 +0000 | [diff] [blame] | 2497 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 2498 | _cpp_init_directives (cpp_reader *pfile) |
Zack Weinberg | c71f835 | 2000-07-05 05:33:57 +0000 | [diff] [blame] | 2499 | { |
Neil Booth | 766ee68 | 2001-01-29 19:20:12 +0000 | [diff] [blame] | 2500 | unsigned int i; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2501 | cpp_hashnode *node; |
Zack Weinberg | bfb9dc7 | 2000-07-08 19:00:39 +0000 | [diff] [blame] | 2502 | |
John David Anglin | 37b8524 | 2001-03-02 01:11:50 +0000 | [diff] [blame] | 2503 | for (i = 0; i < (unsigned int) N_DIRECTIVES; i++) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2504 | { |
Neil Booth | 766ee68 | 2001-01-29 19:20:12 +0000 | [diff] [blame] | 2505 | node = cpp_lookup (pfile, dtable[i].name, dtable[i].length); |
Zack Weinberg | 4977bab | 2002-12-16 18:23:00 +0000 | [diff] [blame] | 2506 | node->is_directive = 1; |
| 2507 | node->directive_index = i; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 2508 | } |
Zack Weinberg | c71f835 | 2000-07-05 05:33:57 +0000 | [diff] [blame] | 2509 | } |