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