Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1 | /* Part of CPP library. (Macro and #define handling.) |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 2 | Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1998, |
Tom Tromey | ee38036 | 2007-01-30 15:46:01 +0000 | [diff] [blame] | 3 | 1999, 2000, 2001, 2002, 2003, 2004, 2005, |
| 4 | 2006 Free Software Foundation, Inc. |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 5 | Written by Per Bothner, 1994. |
| 6 | Based on CCCP program by Paul Rubin, June 1986 |
| 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 |
| 11 | Free Software Foundation; either version 2, or (at your option) any |
| 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 |
| 20 | along with this program; if not, write to the Free Software |
Kelley Cook | 200031d | 2005-06-29 02:34:39 +0000 | [diff] [blame] | 21 | Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 22 | |
| 23 | In other words, you are welcome to use, share and improve this program. |
| 24 | You are forbidden to forbid anyone else to use, share and improve |
| 25 | what you give them. Help stamp out software-hoarding! */ |
| 26 | |
| 27 | #include "config.h" |
| 28 | #include "system.h" |
| 29 | #include "cpplib.h" |
Paolo Bonzini | 4f4e53dd | 2004-05-24 10:50:45 +0000 | [diff] [blame] | 30 | #include "internal.h" |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 31 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 32 | typedef struct macro_arg macro_arg; |
| 33 | struct macro_arg |
| 34 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 35 | const cpp_token **first; /* First token in unexpanded argument. */ |
Kazu Hirata | 6d2f888 | 2001-10-10 11:33:39 +0000 | [diff] [blame] | 36 | const cpp_token **expanded; /* Macro-expanded argument. */ |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 37 | const cpp_token *stringified; /* Stringified argument. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 38 | unsigned int count; /* # of tokens in argument. */ |
| 39 | unsigned int expanded_count; /* # of tokens in expanded argument. */ |
| 40 | }; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 41 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 42 | /* Macro expansion. */ |
| 43 | |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 44 | static int enter_macro_context (cpp_reader *, cpp_hashnode *); |
| 45 | static int builtin_macro (cpp_reader *, cpp_hashnode *); |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 46 | static void push_ptoken_context (cpp_reader *, cpp_hashnode *, _cpp_buff *, |
| 47 | const cpp_token **, unsigned int); |
| 48 | static _cpp_buff *collect_args (cpp_reader *, const cpp_hashnode *); |
| 49 | static cpp_context *next_context (cpp_reader *); |
| 50 | static const cpp_token *padding_token (cpp_reader *, const cpp_token *); |
| 51 | static void expand_arg (cpp_reader *, macro_arg *); |
| 52 | static const cpp_token *new_string_token (cpp_reader *, uchar *, unsigned int); |
| 53 | static const cpp_token *stringify_arg (cpp_reader *, macro_arg *); |
| 54 | static void paste_all_tokens (cpp_reader *, const cpp_token *); |
| 55 | static bool paste_tokens (cpp_reader *, const cpp_token **, const cpp_token *); |
| 56 | static void replace_args (cpp_reader *, cpp_hashnode *, cpp_macro *, |
| 57 | macro_arg *); |
| 58 | static _cpp_buff *funlike_invocation_p (cpp_reader *, cpp_hashnode *); |
| 59 | static bool create_iso_definition (cpp_reader *, cpp_macro *); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 60 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 61 | /* #define directive parsing and handling. */ |
| 62 | |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 63 | static cpp_token *alloc_expansion_token (cpp_reader *, cpp_macro *); |
| 64 | static cpp_token *lex_expansion_token (cpp_reader *, cpp_macro *); |
| 65 | static bool warn_of_redefinition (cpp_reader *, const cpp_hashnode *, |
| 66 | const cpp_macro *); |
| 67 | static bool parse_params (cpp_reader *, cpp_macro *); |
| 68 | static void check_trad_stringification (cpp_reader *, const cpp_macro *, |
| 69 | const cpp_string *); |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 70 | |
Neil Booth | a69cbaa | 2002-07-23 22:57:49 +0000 | [diff] [blame] | 71 | /* Emits a warning if NODE is a macro defined in the main file that |
| 72 | has not been used. */ |
| 73 | int |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 74 | _cpp_warn_if_unused_macro (cpp_reader *pfile, cpp_hashnode *node, |
| 75 | void *v ATTRIBUTE_UNUSED) |
Neil Booth | a69cbaa | 2002-07-23 22:57:49 +0000 | [diff] [blame] | 76 | { |
| 77 | if (node->type == NT_MACRO && !(node->flags & NODE_BUILTIN)) |
| 78 | { |
| 79 | cpp_macro *macro = node->value.macro; |
| 80 | |
| 81 | if (!macro->used |
Per Bothner | 50f59cd | 2004-01-19 21:30:18 -0800 | [diff] [blame] | 82 | && MAIN_FILE_P (linemap_lookup (pfile->line_table, macro->line))) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 83 | cpp_error_with_line (pfile, CPP_DL_WARNING, macro->line, 0, |
Neil Booth | a69cbaa | 2002-07-23 22:57:49 +0000 | [diff] [blame] | 84 | "macro \"%s\" is not used", NODE_NAME (node)); |
| 85 | } |
| 86 | |
| 87 | return 1; |
| 88 | } |
| 89 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 90 | /* Allocates and returns a CPP_STRING token, containing TEXT of length |
| 91 | LEN, after null-terminating it. TEXT must be in permanent storage. */ |
| 92 | static const cpp_token * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 93 | new_string_token (cpp_reader *pfile, unsigned char *text, unsigned int len) |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 94 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 95 | cpp_token *token = _cpp_temp_token (pfile); |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 96 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 97 | text[len] = '\0'; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 98 | token->type = CPP_STRING; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 99 | token->val.str.len = len; |
| 100 | token->val.str.text = text; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 101 | token->flags = 0; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 102 | return token; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 105 | static const char * const monthnames[] = |
| 106 | { |
| 107 | "Jan", "Feb", "Mar", "Apr", "May", "Jun", |
| 108 | "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" |
| 109 | }; |
| 110 | |
Zack Weinberg | 21b1149 | 2004-09-09 19:16:56 +0000 | [diff] [blame] | 111 | /* Helper function for builtin_macro. Returns the text generated by |
| 112 | a builtin macro. */ |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 113 | const uchar * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 114 | _cpp_builtin_macro_text (cpp_reader *pfile, cpp_hashnode *node) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 115 | { |
Per Bothner | 12f9df4 | 2004-02-11 07:29:30 -0800 | [diff] [blame] | 116 | const struct line_map *map; |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 117 | const uchar *result = NULL; |
| 118 | unsigned int number = 1; |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 119 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 120 | switch (node->value.builtin) |
| 121 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 122 | default: |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 123 | cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"", |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 124 | NODE_NAME (node)); |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 125 | break; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 126 | |
Grigory Zagorodnev | be8ac3e | 2006-02-18 09:25:31 +0000 | [diff] [blame] | 127 | case BT_TIMESTAMP: |
| 128 | { |
| 129 | cpp_buffer *pbuffer = cpp_get_buffer (pfile); |
| 130 | if (pbuffer->timestamp == NULL) |
| 131 | { |
| 132 | /* Initialize timestamp value of the assotiated file. */ |
| 133 | struct _cpp_file *file = cpp_get_file (pbuffer); |
| 134 | if (file) |
| 135 | { |
| 136 | /* Generate __TIMESTAMP__ string, that represents |
| 137 | the date and time of the last modification |
| 138 | of the current source file. The string constant |
| 139 | looks like "Sun Sep 16 01:03:52 1973". */ |
| 140 | struct tm *tb = NULL; |
| 141 | struct stat *st = _cpp_get_file_stat (file); |
| 142 | if (st) |
| 143 | tb = localtime (&st->st_mtime); |
| 144 | if (tb) |
| 145 | { |
| 146 | char *str = asctime (tb); |
| 147 | size_t len = strlen (str); |
| 148 | unsigned char *buf = _cpp_unaligned_alloc (pfile, len + 2); |
| 149 | buf[0] = '"'; |
| 150 | strcpy ((char *) buf + 1, str); |
| 151 | buf[len] = '"'; |
| 152 | pbuffer->timestamp = buf; |
| 153 | } |
| 154 | else |
| 155 | { |
| 156 | cpp_errno (pfile, CPP_DL_WARNING, |
| 157 | "could not determine file timestamp"); |
| 158 | pbuffer->timestamp = U"\"??? ??? ?? ??:??:?? ????\""; |
| 159 | } |
| 160 | } |
| 161 | } |
| 162 | result = pbuffer->timestamp; |
| 163 | } |
| 164 | break; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 165 | case BT_FILE: |
| 166 | case BT_BASE_FILE: |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 167 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 168 | unsigned int len; |
Neil Booth | 0bda476 | 2000-12-11 07:45:16 +0000 | [diff] [blame] | 169 | const char *name; |
Neil Booth | 562a5c2 | 2002-04-21 18:46:42 +0000 | [diff] [blame] | 170 | uchar *buf; |
Per Bothner | 500bee0 | 2004-04-22 19:22:27 -0700 | [diff] [blame] | 171 | map = linemap_lookup (pfile->line_table, pfile->line_table->highest_line); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 172 | |
Neil Booth | 0bda476 | 2000-12-11 07:45:16 +0000 | [diff] [blame] | 173 | if (node->value.builtin == BT_BASE_FILE) |
Neil Booth | bb74c96 | 2001-08-17 22:23:49 +0000 | [diff] [blame] | 174 | while (! MAIN_FILE_P (map)) |
Per Bothner | 50f59cd | 2004-01-19 21:30:18 -0800 | [diff] [blame] | 175 | map = INCLUDED_FROM (pfile->line_table, map); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 176 | |
Neil Booth | bb74c96 | 2001-08-17 22:23:49 +0000 | [diff] [blame] | 177 | name = map->to_file; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 178 | len = strlen (name); |
Andrew Pinski | 651ed94 | 2005-11-04 00:23:01 +0000 | [diff] [blame] | 179 | buf = _cpp_unaligned_alloc (pfile, len * 2 + 3); |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 180 | result = buf; |
| 181 | *buf = '"'; |
| 182 | buf = cpp_quote_string (buf + 1, (const unsigned char *) name, len); |
| 183 | *buf++ = '"'; |
| 184 | *buf = '\0'; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 185 | } |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 186 | break; |
| 187 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 188 | case BT_INCLUDE_LEVEL: |
Neil Booth | d8693c6 | 2001-08-21 23:05:12 +0000 | [diff] [blame] | 189 | /* The line map depth counts the primary source as level 1, but |
| 190 | historically __INCLUDE_DEPTH__ has called the primary source |
| 191 | level 0. */ |
Per Bothner | 50f59cd | 2004-01-19 21:30:18 -0800 | [diff] [blame] | 192 | number = pfile->line_table->depth - 1; |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 193 | break; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 194 | |
| 195 | case BT_SPECLINE: |
Per Bothner | 500bee0 | 2004-04-22 19:22:27 -0700 | [diff] [blame] | 196 | map = &pfile->line_table->maps[pfile->line_table->used-1]; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 197 | /* If __LINE__ is embedded in a macro, it must expand to the |
| 198 | line of the macro's invocation, not its definition. |
| 199 | Otherwise things like assert() will not work properly. */ |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 200 | if (CPP_OPTION (pfile, traditional)) |
Per Bothner | 500bee0 | 2004-04-22 19:22:27 -0700 | [diff] [blame] | 201 | number = pfile->line_table->highest_line; |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 202 | else |
Per Bothner | 12f9df4 | 2004-02-11 07:29:30 -0800 | [diff] [blame] | 203 | number = pfile->cur_token[-1].src_loc; |
| 204 | number = SOURCE_LINE (map, number); |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 205 | break; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 206 | |
Zack Weinberg | 5279d73 | 2002-05-16 19:03:02 +0000 | [diff] [blame] | 207 | /* __STDC__ has the value 1 under normal circumstances. |
| 208 | However, if (a) we are in a system header, (b) the option |
Zack Weinberg | 2a1dc0d | 2002-05-21 21:55:37 +0000 | [diff] [blame] | 209 | stdc_0_in_system_headers is true (set by target config), and |
| 210 | (c) we are not in strictly conforming mode, then it has the |
Jakub Jelinek | 8390099 | 2006-01-23 22:50:15 +0100 | [diff] [blame] | 211 | value 0. (b) and (c) are already checked in cpp_init_builtins. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 212 | case BT_STDC: |
Jakub Jelinek | 8390099 | 2006-01-23 22:50:15 +0100 | [diff] [blame] | 213 | if (cpp_in_system_header (pfile)) |
| 214 | number = 0; |
| 215 | else |
| 216 | number = 1; |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 217 | break; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 218 | |
| 219 | case BT_DATE: |
| 220 | case BT_TIME: |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 221 | if (pfile->date == NULL) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 222 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 223 | /* Allocate __DATE__ and __TIME__ strings from permanent |
| 224 | storage. We only do this once, and don't generate them |
| 225 | at init time, because time() and localtime() are very |
| 226 | slow on some systems. */ |
Zack Weinberg | 56da720 | 2002-08-02 04:18:16 +0000 | [diff] [blame] | 227 | time_t tt; |
| 228 | struct tm *tb = NULL; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 229 | |
Zack Weinberg | 56da720 | 2002-08-02 04:18:16 +0000 | [diff] [blame] | 230 | /* (time_t) -1 is a legitimate value for "number of seconds |
| 231 | since the Epoch", so we have to do a little dance to |
| 232 | distinguish that from a genuine error. */ |
| 233 | errno = 0; |
| 234 | tt = time(NULL); |
| 235 | if (tt != (time_t)-1 || errno == 0) |
| 236 | tb = localtime (&tt); |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 237 | |
Zack Weinberg | 56da720 | 2002-08-02 04:18:16 +0000 | [diff] [blame] | 238 | if (tb) |
| 239 | { |
| 240 | pfile->date = _cpp_unaligned_alloc (pfile, |
| 241 | sizeof ("\"Oct 11 1347\"")); |
| 242 | sprintf ((char *) pfile->date, "\"%s %2d %4d\"", |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 243 | monthnames[tb->tm_mon], tb->tm_mday, |
| 244 | tb->tm_year + 1900); |
Zack Weinberg | 56da720 | 2002-08-02 04:18:16 +0000 | [diff] [blame] | 245 | |
| 246 | pfile->time = _cpp_unaligned_alloc (pfile, |
| 247 | sizeof ("\"12:34:56\"")); |
| 248 | sprintf ((char *) pfile->time, "\"%02d:%02d:%02d\"", |
| 249 | tb->tm_hour, tb->tm_min, tb->tm_sec); |
| 250 | } |
| 251 | else |
| 252 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 253 | cpp_errno (pfile, CPP_DL_WARNING, |
Zack Weinberg | 56da720 | 2002-08-02 04:18:16 +0000 | [diff] [blame] | 254 | "could not determine date and time"); |
| 255 | |
| 256 | pfile->date = U"\"??? ?? ????\""; |
| 257 | pfile->time = U"\"??:??:??\""; |
| 258 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 259 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 260 | |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 261 | if (node->value.builtin == BT_DATE) |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 262 | result = pfile->date; |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 263 | else |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 264 | result = pfile->time; |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 265 | break; |
Ollie Wild | a702045 | 2007-05-24 20:55:36 +0000 | [diff] [blame] | 266 | |
| 267 | case BT_COUNTER: |
Ollie Wild | ccfc4c9 | 2007-07-30 18:29:20 +0000 | [diff] [blame^] | 268 | if (CPP_OPTION (pfile, directives_only) && pfile->state.in_directive) |
| 269 | cpp_error (pfile, CPP_DL_ERROR, |
| 270 | "__COUNTER__ expanded inside directive with -fdirectives-only"); |
Ollie Wild | a702045 | 2007-05-24 20:55:36 +0000 | [diff] [blame] | 271 | number = pfile->counter++; |
| 272 | break; |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 273 | } |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 274 | |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 275 | if (result == NULL) |
| 276 | { |
| 277 | /* 21 bytes holds all NUL-terminated unsigned 64-bit numbers. */ |
| 278 | result = _cpp_unaligned_alloc (pfile, 21); |
| 279 | sprintf ((char *) result, "%u", number); |
| 280 | } |
| 281 | |
| 282 | return result; |
| 283 | } |
| 284 | |
| 285 | /* Convert builtin macros like __FILE__ to a token and push it on the |
Zack Weinberg | 21b1149 | 2004-09-09 19:16:56 +0000 | [diff] [blame] | 286 | context stack. Also handles _Pragma, for which a new token may not |
| 287 | be created. Returns 1 if it generates a new token context, 0 to |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 288 | return the token to the caller. */ |
| 289 | static int |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 290 | builtin_macro (cpp_reader *pfile, cpp_hashnode *node) |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 291 | { |
| 292 | const uchar *buf; |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 293 | size_t len; |
| 294 | char *nbuf; |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 295 | |
| 296 | if (node->value.builtin == BT_PRAGMA) |
| 297 | { |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 298 | /* Don't interpret _Pragma within directives. The standard is |
| 299 | not clear on this, but to me this makes most sense. */ |
| 300 | if (pfile->state.in_directive) |
| 301 | return 0; |
| 302 | |
| 303 | _cpp_do__Pragma (pfile); |
| 304 | return 1; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 305 | } |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 306 | |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 307 | buf = _cpp_builtin_macro_text (pfile, node); |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 308 | len = ustrlen (buf); |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 309 | nbuf = (char *) alloca (len + 1); |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 310 | memcpy (nbuf, buf, len); |
| 311 | nbuf[len]='\n'; |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 312 | |
Per Bothner | 40de9f7 | 2003-10-02 07:30:34 +0000 | [diff] [blame] | 313 | cpp_push_buffer (pfile, (uchar *) nbuf, len, /* from_stage3 */ true); |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 314 | _cpp_clean_line (pfile); |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 315 | |
| 316 | /* Set pfile->cur_token as required by _cpp_lex_direct. */ |
| 317 | pfile->cur_token = _cpp_temp_token (pfile); |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 318 | _cpp_push_token_context (pfile, NULL, _cpp_lex_direct (pfile), 1); |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 319 | if (pfile->buffer->cur != pfile->buffer->rlimit) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 320 | cpp_error (pfile, CPP_DL_ICE, "invalid built-in macro \"%s\"", |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 321 | NODE_NAME (node)); |
| 322 | _cpp_pop_buffer (pfile); |
| 323 | |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 324 | return 1; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 325 | } |
| 326 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 327 | /* Copies SRC, of length LEN, to DEST, adding backslashes before all |
Andrew Pinski | 651ed94 | 2005-11-04 00:23:01 +0000 | [diff] [blame] | 328 | backslashes and double quotes. DEST must be of sufficient size. |
| 329 | Returns a pointer to the end of the string. */ |
Neil Booth | 562a5c2 | 2002-04-21 18:46:42 +0000 | [diff] [blame] | 330 | uchar * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 331 | cpp_quote_string (uchar *dest, const uchar *src, unsigned int len) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 332 | { |
| 333 | while (len--) |
| 334 | { |
Neil Booth | 562a5c2 | 2002-04-21 18:46:42 +0000 | [diff] [blame] | 335 | uchar c = *src++; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 336 | |
| 337 | if (c == '\\' || c == '"') |
| 338 | { |
| 339 | *dest++ = '\\'; |
| 340 | *dest++ = c; |
| 341 | } |
| 342 | else |
Andrew Pinski | 651ed94 | 2005-11-04 00:23:01 +0000 | [diff] [blame] | 343 | *dest++ = c; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | return dest; |
| 347 | } |
| 348 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 349 | /* Convert a token sequence ARG to a single string token according to |
| 350 | the rules of the ISO C #-operator. */ |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 351 | static const cpp_token * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 352 | stringify_arg (cpp_reader *pfile, macro_arg *arg) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 353 | { |
Neil Booth | 6338b35 | 2003-04-23 22:44:06 +0000 | [diff] [blame] | 354 | unsigned char *dest; |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 355 | unsigned int i, escape_it, backslash_count = 0; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 356 | const cpp_token *source = NULL; |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 357 | size_t len; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 358 | |
Neil Booth | 6338b35 | 2003-04-23 22:44:06 +0000 | [diff] [blame] | 359 | if (BUFF_ROOM (pfile->u_buff) < 3) |
| 360 | _cpp_extend_buff (pfile, &pfile->u_buff, 3); |
| 361 | dest = BUFF_FRONT (pfile->u_buff); |
| 362 | *dest++ = '"'; |
| 363 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 364 | /* Loop, reading in the argument's tokens. */ |
| 365 | for (i = 0; i < arg->count; i++) |
| 366 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 367 | const cpp_token *token = arg->first[i]; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 368 | |
| 369 | if (token->type == CPP_PADDING) |
| 370 | { |
| 371 | if (source == NULL) |
| 372 | source = token->val.source; |
| 373 | continue; |
| 374 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 375 | |
| 376 | escape_it = (token->type == CPP_STRING || token->type == CPP_WSTRING |
Zack Weinberg | cc93758 | 2001-03-07 01:32:01 +0000 | [diff] [blame] | 377 | || token->type == CPP_CHAR || token->type == CPP_WCHAR); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 378 | |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 379 | /* Room for each char being written in octal, initial space and |
Neil Booth | 6338b35 | 2003-04-23 22:44:06 +0000 | [diff] [blame] | 380 | final quote and NUL. */ |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 381 | len = cpp_token_len (token); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 382 | if (escape_it) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 383 | len *= 4; |
Neil Booth | 6338b35 | 2003-04-23 22:44:06 +0000 | [diff] [blame] | 384 | len += 3; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 385 | |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 386 | if ((size_t) (BUFF_LIMIT (pfile->u_buff) - dest) < len) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 387 | { |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 388 | size_t len_so_far = dest - BUFF_FRONT (pfile->u_buff); |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 389 | _cpp_extend_buff (pfile, &pfile->u_buff, len); |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 390 | dest = BUFF_FRONT (pfile->u_buff) + len_so_far; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 391 | } |
| 392 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 393 | /* Leading white space? */ |
Neil Booth | 6338b35 | 2003-04-23 22:44:06 +0000 | [diff] [blame] | 394 | if (dest - 1 != BUFF_FRONT (pfile->u_buff)) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 395 | { |
| 396 | if (source == NULL) |
| 397 | source = token; |
| 398 | if (source->flags & PREV_WHITE) |
| 399 | *dest++ = ' '; |
| 400 | } |
| 401 | source = NULL; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 402 | |
| 403 | if (escape_it) |
| 404 | { |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 405 | _cpp_buff *buff = _cpp_get_buff (pfile, len); |
| 406 | unsigned char *buf = BUFF_FRONT (buff); |
Geoffrey Keating | 47e2049 | 2005-03-12 10:44:06 +0000 | [diff] [blame] | 407 | len = cpp_spell_token (pfile, token, buf, true) - buf; |
Zack Weinberg | dcc229e | 2002-03-14 18:17:18 +0000 | [diff] [blame] | 408 | dest = cpp_quote_string (dest, buf, len); |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 409 | _cpp_release_buff (pfile, buff); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 410 | } |
| 411 | else |
Geoffrey Keating | 47e2049 | 2005-03-12 10:44:06 +0000 | [diff] [blame] | 412 | dest = cpp_spell_token (pfile, token, dest, true); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 413 | |
Neil Booth | 1067694 | 2003-04-22 19:28:00 +0000 | [diff] [blame] | 414 | if (token->type == CPP_OTHER && token->val.str.text[0] == '\\') |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 415 | backslash_count++; |
| 416 | else |
| 417 | backslash_count = 0; |
| 418 | } |
| 419 | |
| 420 | /* Ignore the final \ of invalid string literals. */ |
| 421 | if (backslash_count & 1) |
| 422 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 423 | cpp_error (pfile, CPP_DL_WARNING, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 424 | "invalid string literal, ignoring final '\\'"); |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 425 | dest--; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 426 | } |
| 427 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 428 | /* Commit the memory, including NUL, and return the token. */ |
Neil Booth | 6338b35 | 2003-04-23 22:44:06 +0000 | [diff] [blame] | 429 | *dest++ = '"'; |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 430 | len = dest - BUFF_FRONT (pfile->u_buff); |
| 431 | BUFF_FRONT (pfile->u_buff) = dest + 1; |
| 432 | return new_string_token (pfile, dest - len, len); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 433 | } |
| 434 | |
Kazu Hirata | da7d830 | 2002-09-22 02:03:17 +0000 | [diff] [blame] | 435 | /* Try to paste two tokens. On success, return nonzero. In any |
Neil Booth | c9e7a60 | 2001-09-27 12:59:38 +0000 | [diff] [blame] | 436 | case, PLHS is updated to point to the pasted token, which is |
| 437 | guaranteed to not have the PASTE_LEFT flag set. */ |
| 438 | static bool |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 439 | paste_tokens (cpp_reader *pfile, const cpp_token **plhs, const cpp_token *rhs) |
Neil Booth | d63eefb | 2000-11-20 23:59:26 +0000 | [diff] [blame] | 440 | { |
Jakub Jelinek | de000d2 | 2006-10-12 11:25:59 +0200 | [diff] [blame] | 441 | unsigned char *buf, *end, *lhsend; |
Tom Tromey | fca35e1 | 2007-05-02 19:33:44 +0000 | [diff] [blame] | 442 | cpp_token *lhs; |
Neil Booth | c9e7a60 | 2001-09-27 12:59:38 +0000 | [diff] [blame] | 443 | unsigned int len; |
Neil Booth | d63eefb | 2000-11-20 23:59:26 +0000 | [diff] [blame] | 444 | |
Tom Tromey | fca35e1 | 2007-05-02 19:33:44 +0000 | [diff] [blame] | 445 | len = cpp_token_len (*plhs) + cpp_token_len (rhs) + 1; |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 446 | buf = (unsigned char *) alloca (len); |
Tom Tromey | fca35e1 | 2007-05-02 19:33:44 +0000 | [diff] [blame] | 447 | end = lhsend = cpp_spell_token (pfile, *plhs, buf, false); |
Neil Booth | d63eefb | 2000-11-20 23:59:26 +0000 | [diff] [blame] | 448 | |
Neil Booth | c9e7a60 | 2001-09-27 12:59:38 +0000 | [diff] [blame] | 449 | /* Avoid comment headers, since they are still processed in stage 3. |
| 450 | It is simpler to insert a space here, rather than modifying the |
| 451 | lexer to ignore comments in some circumstances. Simply returning |
| 452 | false doesn't work, since we want to clear the PASTE_LEFT flag. */ |
Tom Tromey | fca35e1 | 2007-05-02 19:33:44 +0000 | [diff] [blame] | 453 | if ((*plhs)->type == CPP_DIV && rhs->type != CPP_EQ) |
Neil Booth | c9e7a60 | 2001-09-27 12:59:38 +0000 | [diff] [blame] | 454 | *end++ = ' '; |
Geoffrey Keating | 47e2049 | 2005-03-12 10:44:06 +0000 | [diff] [blame] | 455 | end = cpp_spell_token (pfile, rhs, end, false); |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 456 | *end = '\n'; |
Neil Booth | d63eefb | 2000-11-20 23:59:26 +0000 | [diff] [blame] | 457 | |
Per Bothner | 40de9f7 | 2003-10-02 07:30:34 +0000 | [diff] [blame] | 458 | cpp_push_buffer (pfile, buf, end - buf, /* from_stage3 */ true); |
Neil Booth | 26aea07 | 2003-04-19 00:22:51 +0000 | [diff] [blame] | 459 | _cpp_clean_line (pfile); |
Neil Booth | d63eefb | 2000-11-20 23:59:26 +0000 | [diff] [blame] | 460 | |
Neil Booth | c9e7a60 | 2001-09-27 12:59:38 +0000 | [diff] [blame] | 461 | /* Set pfile->cur_token as required by _cpp_lex_direct. */ |
| 462 | pfile->cur_token = _cpp_temp_token (pfile); |
Tom Tromey | fca35e1 | 2007-05-02 19:33:44 +0000 | [diff] [blame] | 463 | lhs = _cpp_lex_direct (pfile); |
Jakub Jelinek | de000d2 | 2006-10-12 11:25:59 +0200 | [diff] [blame] | 464 | if (pfile->buffer->cur != pfile->buffer->rlimit) |
| 465 | { |
Tom Tromey | fca35e1 | 2007-05-02 19:33:44 +0000 | [diff] [blame] | 466 | source_location saved_loc = lhs->src_loc; |
| 467 | |
Jakub Jelinek | de000d2 | 2006-10-12 11:25:59 +0200 | [diff] [blame] | 468 | _cpp_pop_buffer (pfile); |
| 469 | _cpp_backup_tokens (pfile, 1); |
| 470 | *lhsend = '\0'; |
Neil Booth | d63eefb | 2000-11-20 23:59:26 +0000 | [diff] [blame] | 471 | |
Tom Tromey | fca35e1 | 2007-05-02 19:33:44 +0000 | [diff] [blame] | 472 | /* We have to remove the PASTE_LEFT flag from the old lhs, but |
| 473 | we want to keep the new location. */ |
| 474 | *lhs = **plhs; |
| 475 | *plhs = lhs; |
| 476 | lhs->src_loc = saved_loc; |
| 477 | lhs->flags &= ~PASTE_LEFT; |
| 478 | |
Jakub Jelinek | de000d2 | 2006-10-12 11:25:59 +0200 | [diff] [blame] | 479 | /* Mandatory error for all apart from assembler. */ |
| 480 | if (CPP_OPTION (pfile, lang) != CLK_ASM) |
| 481 | cpp_error (pfile, CPP_DL_ERROR, |
| 482 | "pasting \"%s\" and \"%s\" does not give a valid preprocessing token", |
| 483 | buf, cpp_token_as_text (pfile, rhs)); |
| 484 | return false; |
| 485 | } |
| 486 | |
Tom Tromey | fca35e1 | 2007-05-02 19:33:44 +0000 | [diff] [blame] | 487 | *plhs = lhs; |
Jakub Jelinek | de000d2 | 2006-10-12 11:25:59 +0200 | [diff] [blame] | 488 | _cpp_pop_buffer (pfile); |
| 489 | return true; |
Neil Booth | d63eefb | 2000-11-20 23:59:26 +0000 | [diff] [blame] | 490 | } |
| 491 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 492 | /* Handles an arbitrarily long sequence of ## operators, with initial |
| 493 | operand LHS. This implementation is left-associative, |
| 494 | non-recursive, and finishes a paste before handling succeeding |
| 495 | ones. If a paste fails, we back up to the RHS of the failing ## |
| 496 | operator before pushing the context containing the result of prior |
| 497 | successful pastes, with the effect that the RHS appears in the |
| 498 | output stream after the pasted LHS normally. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 499 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 500 | paste_all_tokens (cpp_reader *pfile, const cpp_token *lhs) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 501 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 502 | const cpp_token *rhs; |
| 503 | cpp_context *context = pfile->context; |
| 504 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 505 | do |
| 506 | { |
| 507 | /* Take the token directly from the current context. We can do |
| 508 | this, because we are in the replacement list of either an |
| 509 | object-like macro, or a function-like macro with arguments |
| 510 | inserted. In either case, the constraints to #define |
Neil Booth | d63eefb | 2000-11-20 23:59:26 +0000 | [diff] [blame] | 511 | guarantee we have at least one more token. */ |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 512 | if (context->direct_p) |
Neil Booth | 82eda77 | 2002-06-04 13:07:06 +0000 | [diff] [blame] | 513 | rhs = FIRST (context).token++; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 514 | else |
Neil Booth | 82eda77 | 2002-06-04 13:07:06 +0000 | [diff] [blame] | 515 | rhs = *FIRST (context).ptoken++; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 516 | |
| 517 | if (rhs->type == CPP_PADDING) |
| 518 | abort (); |
| 519 | |
Neil Booth | c9e7a60 | 2001-09-27 12:59:38 +0000 | [diff] [blame] | 520 | if (!paste_tokens (pfile, &lhs, rhs)) |
Jakub Jelinek | de000d2 | 2006-10-12 11:25:59 +0200 | [diff] [blame] | 521 | break; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 522 | } |
| 523 | while (rhs->flags & PASTE_LEFT); |
| 524 | |
Neil Booth | c9e7a60 | 2001-09-27 12:59:38 +0000 | [diff] [blame] | 525 | /* Put the resulting token in its own context. */ |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 526 | _cpp_push_token_context (pfile, NULL, lhs, 1); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 527 | } |
| 528 | |
Neil Booth | 1ce676a | 2002-06-09 20:04:17 +0000 | [diff] [blame] | 529 | /* Returns TRUE if the number of arguments ARGC supplied in an |
| 530 | invocation of the MACRO referenced by NODE is valid. An empty |
| 531 | invocation to a macro with no parameters should pass ARGC as zero. |
| 532 | |
| 533 | Note that MACRO cannot necessarily be deduced from NODE, in case |
| 534 | NODE was redefined whilst collecting arguments. */ |
| 535 | bool |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 536 | _cpp_arguments_ok (cpp_reader *pfile, cpp_macro *macro, const cpp_hashnode *node, unsigned int argc) |
Neil Booth | 1ce676a | 2002-06-09 20:04:17 +0000 | [diff] [blame] | 537 | { |
| 538 | if (argc == macro->paramc) |
| 539 | return true; |
| 540 | |
| 541 | if (argc < macro->paramc) |
| 542 | { |
| 543 | /* As an extension, a rest argument is allowed to not appear in |
| 544 | the invocation at all. |
| 545 | e.g. #define debug(format, args...) something |
| 546 | debug("string"); |
| 547 | |
| 548 | This is exactly the same as if there had been an empty rest |
| 549 | argument - debug("string", ). */ |
| 550 | |
| 551 | if (argc + 1 == macro->paramc && macro->variadic) |
| 552 | { |
| 553 | if (CPP_PEDANTIC (pfile) && ! macro->syshdr) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 554 | cpp_error (pfile, CPP_DL_PEDWARN, |
Neil Booth | 1ce676a | 2002-06-09 20:04:17 +0000 | [diff] [blame] | 555 | "ISO C99 requires rest arguments to be used"); |
| 556 | return true; |
| 557 | } |
| 558 | |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 559 | cpp_error (pfile, CPP_DL_ERROR, |
Neil Booth | 1ce676a | 2002-06-09 20:04:17 +0000 | [diff] [blame] | 560 | "macro \"%s\" requires %u arguments, but only %u given", |
| 561 | NODE_NAME (node), macro->paramc, argc); |
| 562 | } |
| 563 | else |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 564 | cpp_error (pfile, CPP_DL_ERROR, |
Neil Booth | 1ce676a | 2002-06-09 20:04:17 +0000 | [diff] [blame] | 565 | "macro \"%s\" passed %u arguments, but takes just %u", |
| 566 | NODE_NAME (node), argc, macro->paramc); |
| 567 | |
| 568 | return false; |
| 569 | } |
| 570 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 571 | /* Reads and returns the arguments to a function-like macro |
| 572 | invocation. Assumes the opening parenthesis has been processed. |
| 573 | If there is an error, emits an appropriate diagnostic and returns |
| 574 | NULL. Each argument is terminated by a CPP_EOF token, for the |
| 575 | future benefit of expand_arg(). */ |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 576 | static _cpp_buff * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 577 | collect_args (cpp_reader *pfile, const cpp_hashnode *node) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 578 | { |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 579 | _cpp_buff *buff, *base_buff; |
| 580 | cpp_macro *macro; |
| 581 | macro_arg *args, *arg; |
| 582 | const cpp_token *token; |
| 583 | unsigned int argc; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 584 | |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 585 | macro = node->value.macro; |
| 586 | if (macro->paramc) |
| 587 | argc = macro->paramc; |
| 588 | else |
| 589 | argc = 1; |
| 590 | buff = _cpp_get_buff (pfile, argc * (50 * sizeof (cpp_token *) |
| 591 | + sizeof (macro_arg))); |
| 592 | base_buff = buff; |
| 593 | args = (macro_arg *) buff->base; |
| 594 | memset (args, 0, argc * sizeof (macro_arg)); |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 595 | buff->cur = (unsigned char *) &args[argc]; |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 596 | arg = args, argc = 0; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 597 | |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 598 | /* Collect the tokens making up each argument. We don't yet know |
| 599 | how many arguments have been supplied, whether too many or too |
| 600 | few. Hence the slightly bizarre usage of "argc" and "arg". */ |
| 601 | do |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 602 | { |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 603 | unsigned int paren_depth = 0; |
| 604 | unsigned int ntokens = 0; |
| 605 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 606 | argc++; |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 607 | arg->first = (const cpp_token **) buff->cur; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 608 | |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 609 | for (;;) |
| 610 | { |
| 611 | /* Require space for 2 new tokens (including a CPP_EOF). */ |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 612 | if ((unsigned char *) &arg->first[ntokens + 2] > buff->limit) |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 613 | { |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 614 | buff = _cpp_append_extend_buff (pfile, buff, |
| 615 | 1000 * sizeof (cpp_token *)); |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 616 | arg->first = (const cpp_token **) buff->cur; |
| 617 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 618 | |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 619 | token = cpp_get_token (pfile); |
| 620 | |
| 621 | if (token->type == CPP_PADDING) |
| 622 | { |
| 623 | /* Drop leading padding. */ |
| 624 | if (ntokens == 0) |
| 625 | continue; |
| 626 | } |
| 627 | else if (token->type == CPP_OPEN_PAREN) |
| 628 | paren_depth++; |
| 629 | else if (token->type == CPP_CLOSE_PAREN) |
| 630 | { |
| 631 | if (paren_depth-- == 0) |
| 632 | break; |
| 633 | } |
| 634 | else if (token->type == CPP_COMMA) |
| 635 | { |
| 636 | /* A comma does not terminate an argument within |
| 637 | parentheses or as part of a variable argument. */ |
| 638 | if (paren_depth == 0 |
| 639 | && ! (macro->variadic && argc == macro->paramc)) |
| 640 | break; |
| 641 | } |
| 642 | else if (token->type == CPP_EOF |
| 643 | || (token->type == CPP_HASH && token->flags & BOL)) |
| 644 | break; |
| 645 | |
| 646 | arg->first[ntokens++] = token; |
| 647 | } |
| 648 | |
| 649 | /* Drop trailing padding. */ |
| 650 | while (ntokens > 0 && arg->first[ntokens - 1]->type == CPP_PADDING) |
| 651 | ntokens--; |
| 652 | |
| 653 | arg->count = ntokens; |
| 654 | arg->first[ntokens] = &pfile->eof; |
| 655 | |
| 656 | /* Terminate the argument. Excess arguments loop back and |
| 657 | overwrite the final legitimate argument, before failing. */ |
| 658 | if (argc <= macro->paramc) |
| 659 | { |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 660 | buff->cur = (unsigned char *) &arg->first[ntokens + 1]; |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 661 | if (argc != macro->paramc) |
| 662 | arg++; |
| 663 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 664 | } |
Neil Booth | e808ec9 | 2002-02-27 07:24:53 +0000 | [diff] [blame] | 665 | while (token->type != CPP_CLOSE_PAREN && token->type != CPP_EOF); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 666 | |
Neil Booth | e808ec9 | 2002-02-27 07:24:53 +0000 | [diff] [blame] | 667 | if (token->type == CPP_EOF) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 668 | { |
Neil Booth | ece54d5 | 2001-09-28 09:40:22 +0000 | [diff] [blame] | 669 | /* We still need the CPP_EOF to end directives, and to end |
| 670 | pre-expansion of a macro argument. Step back is not |
| 671 | unconditional, since we don't want to return a CPP_EOF to our |
| 672 | callers at the end of an -include-d file. */ |
Neil Booth | e808ec9 | 2002-02-27 07:24:53 +0000 | [diff] [blame] | 673 | if (pfile->context->prev || pfile->state.in_directive) |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 674 | _cpp_backup_tokens (pfile, 1); |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 675 | cpp_error (pfile, CPP_DL_ERROR, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 676 | "unterminated argument list invoking macro \"%s\"", |
Neil Booth | a28c5035 | 2001-05-16 22:02:09 +0000 | [diff] [blame] | 677 | NODE_NAME (node)); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 678 | } |
Neil Booth | 1ce676a | 2002-06-09 20:04:17 +0000 | [diff] [blame] | 679 | else |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 680 | { |
Neil Booth | 1ce676a | 2002-06-09 20:04:17 +0000 | [diff] [blame] | 681 | /* A single empty argument is counted as no argument. */ |
| 682 | if (argc == 1 && macro->paramc == 0 && args[0].count == 0) |
| 683 | argc = 0; |
| 684 | if (_cpp_arguments_ok (pfile, macro, node, argc)) |
Neil Booth | 58551c2 | 2002-08-06 20:35:46 +0000 | [diff] [blame] | 685 | { |
| 686 | /* GCC has special semantics for , ## b where b is a varargs |
| 687 | parameter: we remove the comma if b was omitted entirely. |
| 688 | If b was merely an empty argument, the comma is retained. |
| 689 | If the macro takes just one (varargs) parameter, then we |
| 690 | retain the comma only if we are standards conforming. |
| 691 | |
| 692 | If FIRST is NULL replace_args () swallows the comma. */ |
| 693 | if (macro->variadic && (argc < macro->paramc |
| 694 | || (argc == 1 && args[0].count == 0 |
| 695 | && !CPP_OPTION (pfile, std)))) |
| 696 | args[macro->paramc - 1].first = NULL; |
| 697 | return base_buff; |
| 698 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 699 | } |
| 700 | |
Neil Booth | 1ce676a | 2002-06-09 20:04:17 +0000 | [diff] [blame] | 701 | /* An error occurred. */ |
Neil Booth | b8af0ca | 2001-09-26 17:52:50 +0000 | [diff] [blame] | 702 | _cpp_release_buff (pfile, base_buff); |
| 703 | return NULL; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 704 | } |
| 705 | |
Neil Booth | d6da836 | 2001-10-08 06:15:14 +0000 | [diff] [blame] | 706 | /* Search for an opening parenthesis to the macro of NODE, in such a |
| 707 | way that, if none is found, we don't lose the information in any |
| 708 | intervening padding tokens. If we find the parenthesis, collect |
| 709 | the arguments and return the buffer containing them. */ |
| 710 | static _cpp_buff * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 711 | funlike_invocation_p (cpp_reader *pfile, cpp_hashnode *node) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 712 | { |
Neil Booth | d6da836 | 2001-10-08 06:15:14 +0000 | [diff] [blame] | 713 | const cpp_token *token, *padding = NULL; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 714 | |
Neil Booth | d6da836 | 2001-10-08 06:15:14 +0000 | [diff] [blame] | 715 | for (;;) |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 716 | { |
Neil Booth | d6da836 | 2001-10-08 06:15:14 +0000 | [diff] [blame] | 717 | token = cpp_get_token (pfile); |
| 718 | if (token->type != CPP_PADDING) |
| 719 | break; |
| 720 | if (padding == NULL |
| 721 | || (!(padding->flags & PREV_WHITE) && token->val.source == NULL)) |
| 722 | padding = token; |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 723 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 724 | |
Neil Booth | d6da836 | 2001-10-08 06:15:14 +0000 | [diff] [blame] | 725 | if (token->type == CPP_OPEN_PAREN) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 726 | { |
Neil Booth | d6da836 | 2001-10-08 06:15:14 +0000 | [diff] [blame] | 727 | pfile->state.parsing_args = 2; |
| 728 | return collect_args (pfile, node); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 729 | } |
| 730 | |
Neil Booth | 9ac3b1b | 2002-04-21 16:17:55 +0000 | [diff] [blame] | 731 | /* CPP_EOF can be the end of macro arguments, or the end of the |
| 732 | file. We mustn't back up over the latter. Ugh. */ |
| 733 | if (token->type != CPP_EOF || token == &pfile->eof) |
| 734 | { |
| 735 | /* Back up. We may have skipped padding, in which case backing |
| 736 | up more than one token when expanding macros is in general |
| 737 | too difficult. We re-insert it in its own context. */ |
| 738 | _cpp_backup_tokens (pfile, 1); |
| 739 | if (padding) |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 740 | _cpp_push_token_context (pfile, NULL, padding, 1); |
Neil Booth | 9ac3b1b | 2002-04-21 16:17:55 +0000 | [diff] [blame] | 741 | } |
Neil Booth | d6da836 | 2001-10-08 06:15:14 +0000 | [diff] [blame] | 742 | |
| 743 | return NULL; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 744 | } |
| 745 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 746 | /* Push the context of a macro with hash entry NODE onto the context |
| 747 | stack. If we can successfully expand the macro, we push a context |
| 748 | containing its yet-to-be-rescanned replacement list and return one. |
| 749 | Otherwise, we don't push a context and return zero. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 750 | static int |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 751 | enter_macro_context (cpp_reader *pfile, cpp_hashnode *node) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 752 | { |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 753 | /* The presence of a macro invalidates a file's controlling macro. */ |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 754 | pfile->mi_valid = false; |
| 755 | |
Neil Booth | 3620711 | 2002-05-24 19:26:30 +0000 | [diff] [blame] | 756 | pfile->state.angled_headers = false; |
| 757 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 758 | /* Handle standard macros. */ |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 759 | if (! (node->flags & NODE_BUILTIN)) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 760 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 761 | cpp_macro *macro = node->value.macro; |
| 762 | |
Neil Booth | d6da836 | 2001-10-08 06:15:14 +0000 | [diff] [blame] | 763 | if (macro->fun_like) |
| 764 | { |
| 765 | _cpp_buff *buff; |
| 766 | |
| 767 | pfile->state.prevent_expansion++; |
| 768 | pfile->keep_tokens++; |
| 769 | pfile->state.parsing_args = 1; |
| 770 | buff = funlike_invocation_p (pfile, node); |
| 771 | pfile->state.parsing_args = 0; |
| 772 | pfile->keep_tokens--; |
| 773 | pfile->state.prevent_expansion--; |
| 774 | |
| 775 | if (buff == NULL) |
| 776 | { |
| 777 | if (CPP_WTRADITIONAL (pfile) && ! node->value.macro->syshdr) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 778 | cpp_error (pfile, CPP_DL_WARNING, |
Neil Booth | d6da836 | 2001-10-08 06:15:14 +0000 | [diff] [blame] | 779 | "function-like macro \"%s\" must be used with arguments in traditional C", |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 780 | NODE_NAME (node)); |
Neil Booth | d6da836 | 2001-10-08 06:15:14 +0000 | [diff] [blame] | 781 | |
| 782 | return 0; |
| 783 | } |
| 784 | |
Neil Booth | e808ec9 | 2002-02-27 07:24:53 +0000 | [diff] [blame] | 785 | if (macro->paramc > 0) |
| 786 | replace_args (pfile, node, macro, (macro_arg *) buff->base); |
Neil Booth | d6da836 | 2001-10-08 06:15:14 +0000 | [diff] [blame] | 787 | _cpp_release_buff (pfile, buff); |
| 788 | } |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 789 | |
| 790 | /* Disable the macro within its expansion. */ |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 791 | node->flags |= NODE_DISABLED; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 792 | |
Neil Booth | a69cbaa | 2002-07-23 22:57:49 +0000 | [diff] [blame] | 793 | macro->used = 1; |
| 794 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 795 | if (macro->paramc == 0) |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 796 | _cpp_push_token_context (pfile, node, macro->exp.tokens, macro->count); |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 797 | |
| 798 | return 1; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 799 | } |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 800 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 801 | /* Handle built-in macros and the _Pragma operator. */ |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 802 | return builtin_macro (pfile, node); |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 803 | } |
| 804 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 805 | /* Replace the parameters in a function-like macro of NODE with the |
| 806 | actual ARGS, and place the result in a newly pushed token context. |
| 807 | Expand each argument before replacing, unless it is operated upon |
| 808 | by the # or ## operators. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 809 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 810 | replace_args (cpp_reader *pfile, cpp_hashnode *node, cpp_macro *macro, macro_arg *args) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 811 | { |
| 812 | unsigned int i, total; |
| 813 | const cpp_token *src, *limit; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 814 | const cpp_token **dest, **first; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 815 | macro_arg *arg; |
Neil Booth | 1e013d2 | 2001-09-26 21:44:35 +0000 | [diff] [blame] | 816 | _cpp_buff *buff; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 817 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 818 | /* First, fully macro-expand arguments, calculating the number of |
Neil Booth | 1e013d2 | 2001-09-26 21:44:35 +0000 | [diff] [blame] | 819 | tokens in the final expansion as we go. The ordering of the if |
| 820 | statements below is subtle; we must handle stringification before |
| 821 | pasting. */ |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 822 | total = macro->count; |
Neil Booth | 601328b | 2002-05-16 05:53:24 +0000 | [diff] [blame] | 823 | limit = macro->exp.tokens + macro->count; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 824 | |
Neil Booth | 601328b | 2002-05-16 05:53:24 +0000 | [diff] [blame] | 825 | for (src = macro->exp.tokens; src < limit; src++) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 826 | if (src->type == CPP_MACRO_ARG) |
| 827 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 828 | /* Leading and trailing padding tokens. */ |
| 829 | total += 2; |
| 830 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 831 | /* We have an argument. If it is not being stringified or |
| 832 | pasted it is macro-replaced before insertion. */ |
Neil Booth | 6c53ebf | 2000-11-06 18:43:32 +0000 | [diff] [blame] | 833 | arg = &args[src->val.arg_no - 1]; |
Neil Booth | 4c2b647 | 2000-11-11 13:19:01 +0000 | [diff] [blame] | 834 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 835 | if (src->flags & STRINGIFY_ARG) |
| 836 | { |
| 837 | if (!arg->stringified) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 838 | arg->stringified = stringify_arg (pfile, arg); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 839 | } |
| 840 | else if ((src->flags & PASTE_LEFT) |
Neil Booth | 601328b | 2002-05-16 05:53:24 +0000 | [diff] [blame] | 841 | || (src > macro->exp.tokens && (src[-1].flags & PASTE_LEFT))) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 842 | total += arg->count - 1; |
| 843 | else |
| 844 | { |
| 845 | if (!arg->expanded) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 846 | expand_arg (pfile, arg); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 847 | total += arg->expanded_count - 1; |
| 848 | } |
| 849 | } |
| 850 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 851 | /* Now allocate space for the expansion, copy the tokens and replace |
| 852 | the arguments. */ |
Neil Booth | 1e013d2 | 2001-09-26 21:44:35 +0000 | [diff] [blame] | 853 | buff = _cpp_get_buff (pfile, total * sizeof (cpp_token *)); |
| 854 | first = (const cpp_token **) buff->base; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 855 | dest = first; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 856 | |
Neil Booth | 601328b | 2002-05-16 05:53:24 +0000 | [diff] [blame] | 857 | for (src = macro->exp.tokens; src < limit; src++) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 858 | { |
| 859 | unsigned int count; |
| 860 | const cpp_token **from, **paste_flag; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 861 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 862 | if (src->type != CPP_MACRO_ARG) |
| 863 | { |
| 864 | *dest++ = src; |
| 865 | continue; |
| 866 | } |
| 867 | |
| 868 | paste_flag = 0; |
| 869 | arg = &args[src->val.arg_no - 1]; |
| 870 | if (src->flags & STRINGIFY_ARG) |
| 871 | count = 1, from = &arg->stringified; |
| 872 | else if (src->flags & PASTE_LEFT) |
| 873 | count = arg->count, from = arg->first; |
Neil Booth | 601328b | 2002-05-16 05:53:24 +0000 | [diff] [blame] | 874 | else if (src != macro->exp.tokens && (src[-1].flags & PASTE_LEFT)) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 875 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 876 | count = arg->count, from = arg->first; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 877 | if (dest != first) |
| 878 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 879 | if (dest[-1]->type == CPP_COMMA |
| 880 | && macro->variadic |
| 881 | && src->val.arg_no == macro->paramc) |
| 882 | { |
Neil Booth | 58551c2 | 2002-08-06 20:35:46 +0000 | [diff] [blame] | 883 | /* Swallow a pasted comma if from == NULL, otherwise |
| 884 | drop the paste flag. */ |
| 885 | if (from == NULL) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 886 | dest--; |
| 887 | else |
| 888 | paste_flag = dest - 1; |
| 889 | } |
| 890 | /* Remove the paste flag if the RHS is a placemarker. */ |
| 891 | else if (count == 0) |
| 892 | paste_flag = dest - 1; |
| 893 | } |
| 894 | } |
| 895 | else |
| 896 | count = arg->expanded_count, from = arg->expanded; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 897 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 898 | /* Padding on the left of an argument (unless RHS of ##). */ |
Zack Weinberg | a8d0dda | 2003-02-21 18:06:30 +0000 | [diff] [blame] | 899 | if ((!pfile->state.in_directive || pfile->state.directive_wants_padding) |
Neil Booth | 601328b | 2002-05-16 05:53:24 +0000 | [diff] [blame] | 900 | && src != macro->exp.tokens && !(src[-1].flags & PASTE_LEFT)) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 901 | *dest++ = padding_token (pfile, src); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 902 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 903 | if (count) |
| 904 | { |
| 905 | memcpy (dest, from, count * sizeof (cpp_token *)); |
| 906 | dest += count; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 907 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 908 | /* With a non-empty argument on the LHS of ##, the last |
| 909 | token should be flagged PASTE_LEFT. */ |
| 910 | if (src->flags & PASTE_LEFT) |
| 911 | paste_flag = dest - 1; |
| 912 | } |
Neil Booth | 4c2b647 | 2000-11-11 13:19:01 +0000 | [diff] [blame] | 913 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 914 | /* Avoid paste on RHS (even case count == 0). */ |
| 915 | if (!pfile->state.in_directive && !(src->flags & PASTE_LEFT)) |
| 916 | *dest++ = &pfile->avoid_paste; |
Neil Booth | 26ec42e | 2001-01-28 11:22:23 +0000 | [diff] [blame] | 917 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 918 | /* Add a new paste flag, or remove an unwanted one. */ |
| 919 | if (paste_flag) |
| 920 | { |
| 921 | cpp_token *token = _cpp_temp_token (pfile); |
| 922 | token->type = (*paste_flag)->type; |
Jakub Jelinek | 7309671 | 2005-03-04 16:33:23 +0100 | [diff] [blame] | 923 | token->val = (*paste_flag)->val; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 924 | if (src->flags & PASTE_LEFT) |
| 925 | token->flags = (*paste_flag)->flags | PASTE_LEFT; |
| 926 | else |
| 927 | token->flags = (*paste_flag)->flags & ~PASTE_LEFT; |
| 928 | *paste_flag = token; |
| 929 | } |
| 930 | } |
Neil Booth | 4c2b647 | 2000-11-11 13:19:01 +0000 | [diff] [blame] | 931 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 932 | /* Free the expanded arguments. */ |
| 933 | for (i = 0; i < macro->paramc; i++) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 934 | if (args[i].expanded) |
| 935 | free (args[i].expanded); |
| 936 | |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 937 | push_ptoken_context (pfile, node, buff, first, dest - first); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 938 | } |
| 939 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 940 | /* Return a special padding token, with padding inherited from SOURCE. */ |
| 941 | static const cpp_token * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 942 | padding_token (cpp_reader *pfile, const cpp_token *source) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 943 | { |
| 944 | cpp_token *result = _cpp_temp_token (pfile); |
| 945 | |
| 946 | result->type = CPP_PADDING; |
Paolo Bonzini | be0f1e5 | 2005-02-14 08:52:24 +0000 | [diff] [blame] | 947 | |
| 948 | /* Data in GCed data structures cannot be made const so far, so we |
| 949 | need a cast here. */ |
| 950 | result->val.source = (cpp_token *) source; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 951 | result->flags = 0; |
| 952 | return result; |
| 953 | } |
| 954 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 955 | /* Get a new uninitialized context. Create a new one if we cannot |
| 956 | re-use an old one. */ |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 957 | static cpp_context * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 958 | next_context (cpp_reader *pfile) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 959 | { |
| 960 | cpp_context *result = pfile->context->next; |
| 961 | |
| 962 | if (result == 0) |
| 963 | { |
Bernardo Innocenti | 72bb2c3 | 2004-07-24 20:04:42 +0200 | [diff] [blame] | 964 | result = XNEW (cpp_context); |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 965 | result->prev = pfile->context; |
| 966 | result->next = 0; |
| 967 | pfile->context->next = result; |
| 968 | } |
| 969 | |
| 970 | pfile->context = result; |
| 971 | return result; |
| 972 | } |
| 973 | |
| 974 | /* Push a list of pointers to tokens. */ |
| 975 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 976 | push_ptoken_context (cpp_reader *pfile, cpp_hashnode *macro, _cpp_buff *buff, |
| 977 | const cpp_token **first, unsigned int count) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 978 | { |
| 979 | cpp_context *context = next_context (pfile); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 980 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 981 | context->direct_p = false; |
| 982 | context->macro = macro; |
Neil Booth | 1e013d2 | 2001-09-26 21:44:35 +0000 | [diff] [blame] | 983 | context->buff = buff; |
Neil Booth | 82eda77 | 2002-06-04 13:07:06 +0000 | [diff] [blame] | 984 | FIRST (context).ptoken = first; |
| 985 | LAST (context).ptoken = first + count; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 986 | } |
| 987 | |
| 988 | /* Push a list of tokens. */ |
Richard Henderson | bc4071d | 2006-01-04 08:33:38 -0800 | [diff] [blame] | 989 | void |
| 990 | _cpp_push_token_context (cpp_reader *pfile, cpp_hashnode *macro, |
| 991 | const cpp_token *first, unsigned int count) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 992 | { |
| 993 | cpp_context *context = next_context (pfile); |
| 994 | |
| 995 | context->direct_p = true; |
| 996 | context->macro = macro; |
Neil Booth | 1e013d2 | 2001-09-26 21:44:35 +0000 | [diff] [blame] | 997 | context->buff = NULL; |
Neil Booth | 82eda77 | 2002-06-04 13:07:06 +0000 | [diff] [blame] | 998 | FIRST (context).token = first; |
| 999 | LAST (context).token = first + count; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1000 | } |
| 1001 | |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1002 | /* Push a traditional macro's replacement text. */ |
| 1003 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1004 | _cpp_push_text_context (cpp_reader *pfile, cpp_hashnode *macro, |
| 1005 | const uchar *start, size_t len) |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1006 | { |
| 1007 | cpp_context *context = next_context (pfile); |
| 1008 | |
| 1009 | context->direct_p = true; |
| 1010 | context->macro = macro; |
| 1011 | context->buff = NULL; |
| 1012 | CUR (context) = start; |
Neil Booth | 1ce676a | 2002-06-09 20:04:17 +0000 | [diff] [blame] | 1013 | RLIMIT (context) = start + len; |
Neil Booth | 974c43f | 2002-06-13 06:25:28 +0000 | [diff] [blame] | 1014 | macro->flags |= NODE_DISABLED; |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1015 | } |
| 1016 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 1017 | /* Expand an argument ARG before replacing parameters in a |
| 1018 | function-like macro. This works by pushing a context with the |
| 1019 | argument's tokens, and then expanding that into a temporary buffer |
| 1020 | as if it were a normal part of the token stream. collect_args() |
| 1021 | has terminated the argument's tokens with a CPP_EOF so that we know |
| 1022 | when we have fully expanded the argument. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1023 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1024 | expand_arg (cpp_reader *pfile, macro_arg *arg) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1025 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1026 | unsigned int capacity; |
Neil Booth | 56941bf | 2002-09-20 19:44:09 +0000 | [diff] [blame] | 1027 | bool saved_warn_trad; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1028 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1029 | if (arg->count == 0) |
| 1030 | return; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1031 | |
Neil Booth | 56941bf | 2002-09-20 19:44:09 +0000 | [diff] [blame] | 1032 | /* Don't warn about funlike macros when pre-expanding. */ |
| 1033 | saved_warn_trad = CPP_WTRADITIONAL (pfile); |
| 1034 | CPP_WTRADITIONAL (pfile) = 0; |
| 1035 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1036 | /* Loop, reading in the arguments. */ |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1037 | capacity = 256; |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1038 | arg->expanded = XNEWVEC (const cpp_token *, capacity); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1039 | |
Neil Booth | 1e013d2 | 2001-09-26 21:44:35 +0000 | [diff] [blame] | 1040 | push_ptoken_context (pfile, NULL, NULL, arg->first, arg->count + 1); |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1041 | for (;;) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1042 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1043 | const cpp_token *token; |
| 1044 | |
| 1045 | if (arg->expanded_count + 1 >= capacity) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1046 | { |
| 1047 | capacity *= 2; |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1048 | arg->expanded = XRESIZEVEC (const cpp_token *, arg->expanded, |
| 1049 | capacity); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1050 | } |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1051 | |
| 1052 | token = cpp_get_token (pfile); |
| 1053 | |
| 1054 | if (token->type == CPP_EOF) |
| 1055 | break; |
| 1056 | |
| 1057 | arg->expanded[arg->expanded_count++] = token; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1058 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1059 | |
Neil Booth | 1e013d2 | 2001-09-26 21:44:35 +0000 | [diff] [blame] | 1060 | _cpp_pop_context (pfile); |
Neil Booth | 56941bf | 2002-09-20 19:44:09 +0000 | [diff] [blame] | 1061 | |
| 1062 | CPP_WTRADITIONAL (pfile) = saved_warn_trad; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1063 | } |
| 1064 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 1065 | /* Pop the current context off the stack, re-enabling the macro if the |
| 1066 | context represented a macro's replacement list. The context |
| 1067 | structure is not freed so that we can re-use it later. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1068 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1069 | _cpp_pop_context (cpp_reader *pfile) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1070 | { |
Neil Booth | 1e013d2 | 2001-09-26 21:44:35 +0000 | [diff] [blame] | 1071 | cpp_context *context = pfile->context; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1072 | |
Neil Booth | 1e013d2 | 2001-09-26 21:44:35 +0000 | [diff] [blame] | 1073 | if (context->macro) |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 1074 | context->macro->flags &= ~NODE_DISABLED; |
Neil Booth | 1e013d2 | 2001-09-26 21:44:35 +0000 | [diff] [blame] | 1075 | |
| 1076 | if (context->buff) |
| 1077 | _cpp_release_buff (pfile, context->buff); |
| 1078 | |
| 1079 | pfile->context = context->prev; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1080 | } |
| 1081 | |
Martin Schaffner | 48c4721 | 2003-06-25 23:01:10 +0200 | [diff] [blame] | 1082 | /* External routine to get a token. Also used nearly everywhere |
Neil Booth | 7f2f1a6 | 2000-11-14 18:32:06 +0000 | [diff] [blame] | 1083 | internally, except for places where we know we can safely call |
Martin Schaffner | 48c4721 | 2003-06-25 23:01:10 +0200 | [diff] [blame] | 1084 | _cpp_lex_token directly, such as lexing a directive name. |
Neil Booth | 7f2f1a6 | 2000-11-14 18:32:06 +0000 | [diff] [blame] | 1085 | |
| 1086 | Macro expansions and directives are transparently handled, |
| 1087 | including entering included files. Thus tokens are post-macro |
| 1088 | expansion, and after any intervening directives. External callers |
| 1089 | see CPP_EOF only at EOF. Internal callers also see it when meeting |
| 1090 | a directive inside a macro call, when at the end of a directive and |
| 1091 | state.in_directive is still 1, and at the end of argument |
| 1092 | pre-expansion. */ |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1093 | const cpp_token * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1094 | cpp_get_token (cpp_reader *pfile) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1095 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1096 | const cpp_token *result; |
| 1097 | |
Neil Booth | 29b1074 | 2000-11-13 18:40:37 +0000 | [diff] [blame] | 1098 | for (;;) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1099 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1100 | cpp_hashnode *node; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1101 | cpp_context *context = pfile->context; |
| 1102 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1103 | /* Context->prev == 0 <=> base context. */ |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1104 | if (!context->prev) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1105 | result = _cpp_lex_token (pfile); |
Neil Booth | 82eda77 | 2002-06-04 13:07:06 +0000 | [diff] [blame] | 1106 | else if (FIRST (context).token != LAST (context).token) |
Neil Booth | 29b1074 | 2000-11-13 18:40:37 +0000 | [diff] [blame] | 1107 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1108 | if (context->direct_p) |
Neil Booth | 82eda77 | 2002-06-04 13:07:06 +0000 | [diff] [blame] | 1109 | result = FIRST (context).token++; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1110 | else |
Neil Booth | 82eda77 | 2002-06-04 13:07:06 +0000 | [diff] [blame] | 1111 | result = *FIRST (context).ptoken++; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1112 | |
| 1113 | if (result->flags & PASTE_LEFT) |
Neil Booth | ec1a23e | 2001-01-31 07:48:54 +0000 | [diff] [blame] | 1114 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1115 | paste_all_tokens (pfile, result); |
| 1116 | if (pfile->state.in_directive) |
| 1117 | continue; |
| 1118 | return padding_token (pfile, result); |
Neil Booth | ec1a23e | 2001-01-31 07:48:54 +0000 | [diff] [blame] | 1119 | } |
Neil Booth | 29b1074 | 2000-11-13 18:40:37 +0000 | [diff] [blame] | 1120 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1121 | else |
| 1122 | { |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1123 | _cpp_pop_context (pfile); |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1124 | if (pfile->state.in_directive) |
| 1125 | continue; |
| 1126 | return &pfile->avoid_paste; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1127 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1128 | |
Jason Thorpe | 477cdac | 2002-04-07 03:12:23 +0000 | [diff] [blame] | 1129 | if (pfile->state.in_directive && result->type == CPP_COMMENT) |
| 1130 | continue; |
| 1131 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1132 | if (result->type != CPP_NAME) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1133 | break; |
| 1134 | |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1135 | node = result->val.node; |
Neil Booth | 4c2b647 | 2000-11-11 13:19:01 +0000 | [diff] [blame] | 1136 | |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 1137 | if (node->type != NT_MACRO || (result->flags & NO_EXPAND)) |
| 1138 | break; |
Kazu Hirata | df38348 | 2002-05-22 22:02:16 +0000 | [diff] [blame] | 1139 | |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 1140 | if (!(node->flags & NODE_DISABLED)) |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1141 | { |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 1142 | if (!pfile->state.prevent_expansion |
| 1143 | && enter_macro_context (pfile, node)) |
Neil Booth | bd96977 | 2001-02-01 19:13:53 +0000 | [diff] [blame] | 1144 | { |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1145 | if (pfile->state.in_directive) |
| 1146 | continue; |
| 1147 | return padding_token (pfile, result); |
Neil Booth | bd96977 | 2001-02-01 19:13:53 +0000 | [diff] [blame] | 1148 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1149 | } |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 1150 | else |
| 1151 | { |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 1152 | /* Flag this token as always unexpandable. FIXME: move this |
| 1153 | to collect_args()?. */ |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 1154 | cpp_token *t = _cpp_temp_token (pfile); |
| 1155 | t->type = result->type; |
| 1156 | t->flags = result->flags | NO_EXPAND; |
Jakub Jelinek | 7309671 | 2005-03-04 16:33:23 +0100 | [diff] [blame] | 1157 | t->val = result->val; |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 1158 | result = t; |
| 1159 | } |
Neil Booth | a5c3ccc | 2000-10-30 22:29:00 +0000 | [diff] [blame] | 1160 | |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 1161 | break; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1162 | } |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1163 | |
| 1164 | return result; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1165 | } |
| 1166 | |
Neil Booth | 7065e13 | 2001-02-14 07:38:20 +0000 | [diff] [blame] | 1167 | /* Returns true if we're expanding an object-like macro that was |
| 1168 | defined in a system header. Just checks the macro at the top of |
| 1169 | the stack. Used for diagnostic suppression. */ |
| 1170 | int |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1171 | cpp_sys_macro_p (cpp_reader *pfile) |
Neil Booth | 7065e13 | 2001-02-14 07:38:20 +0000 | [diff] [blame] | 1172 | { |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 1173 | cpp_hashnode *node = pfile->context->macro; |
Neil Booth | 7065e13 | 2001-02-14 07:38:20 +0000 | [diff] [blame] | 1174 | |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 1175 | return node && node->value.macro && node->value.macro->syshdr; |
Neil Booth | 7065e13 | 2001-02-14 07:38:20 +0000 | [diff] [blame] | 1176 | } |
| 1177 | |
Neil Booth | af0d16c | 2002-04-22 17:48:02 +0000 | [diff] [blame] | 1178 | /* Read each token in, until end of the current file. Directives are |
| 1179 | transparently processed. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1180 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1181 | cpp_scan_nooutput (cpp_reader *pfile) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1182 | { |
Per Bothner | 22234f5 | 2004-02-18 14:02:39 -0800 | [diff] [blame] | 1183 | /* Request a CPP_EOF token at the end of this file, rather than |
| 1184 | transparently continuing with the including file. */ |
| 1185 | pfile->buffer->return_at_eof = true; |
| 1186 | |
Zack Weinberg | c6e8380 | 2004-06-05 20:58:06 +0000 | [diff] [blame] | 1187 | pfile->state.discarding_output++; |
| 1188 | pfile->state.prevent_expansion++; |
| 1189 | |
Neil Booth | 590e198 | 2002-07-01 12:47:54 +0000 | [diff] [blame] | 1190 | if (CPP_OPTION (pfile, traditional)) |
| 1191 | while (_cpp_read_logical_line_trad (pfile)) |
| 1192 | ; |
| 1193 | else |
| 1194 | while (cpp_get_token (pfile)->type != CPP_EOF) |
| 1195 | ; |
Zack Weinberg | c6e8380 | 2004-06-05 20:58:06 +0000 | [diff] [blame] | 1196 | |
| 1197 | pfile->state.discarding_output--; |
| 1198 | pfile->state.prevent_expansion--; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1199 | } |
| 1200 | |
Jakub Jelinek | 1c90c6f | 2006-06-09 23:13:25 +0200 | [diff] [blame] | 1201 | /* Step back one (or more) tokens. Can only step back more than 1 if |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1202 | they are from the lexer, and not from macro expansion. */ |
Neil Booth | b528a07 | 2000-11-12 11:46:21 +0000 | [diff] [blame] | 1203 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1204 | _cpp_backup_tokens (cpp_reader *pfile, unsigned int count) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1205 | { |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1206 | if (pfile->context->prev == NULL) |
| 1207 | { |
| 1208 | pfile->lookaheads += count; |
| 1209 | while (count--) |
| 1210 | { |
Neil Booth | 3293c3e | 2001-11-19 21:04:49 +0000 | [diff] [blame] | 1211 | pfile->cur_token--; |
| 1212 | if (pfile->cur_token == pfile->cur_run->base |
| 1213 | /* Possible with -fpreprocessed and no leading #line. */ |
| 1214 | && pfile->cur_run->prev != NULL) |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1215 | { |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1216 | pfile->cur_run = pfile->cur_run->prev; |
| 1217 | pfile->cur_token = pfile->cur_run->limit; |
| 1218 | } |
| 1219 | } |
| 1220 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1221 | else |
| 1222 | { |
Neil Booth | bdcbe49 | 2001-09-13 20:05:17 +0000 | [diff] [blame] | 1223 | if (count != 1) |
| 1224 | abort (); |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1225 | if (pfile->context->direct_p) |
Neil Booth | 82eda77 | 2002-06-04 13:07:06 +0000 | [diff] [blame] | 1226 | FIRST (pfile->context).token--; |
Neil Booth | 4ed5bcf | 2001-09-24 22:53:12 +0000 | [diff] [blame] | 1227 | else |
Neil Booth | 82eda77 | 2002-06-04 13:07:06 +0000 | [diff] [blame] | 1228 | FIRST (pfile->context).ptoken--; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1229 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1230 | } |
| 1231 | |
| 1232 | /* #define directive parsing and handling. */ |
| 1233 | |
Kazu Hirata | da7d830 | 2002-09-22 02:03:17 +0000 | [diff] [blame] | 1234 | /* Returns nonzero if a macro redefinition warning is required. */ |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1235 | static bool |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1236 | warn_of_redefinition (cpp_reader *pfile, const cpp_hashnode *node, |
| 1237 | const cpp_macro *macro2) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1238 | { |
| 1239 | const cpp_macro *macro1; |
| 1240 | unsigned int i; |
| 1241 | |
Neil Booth | 618cdda | 2001-02-25 09:43:03 +0000 | [diff] [blame] | 1242 | /* Some redefinitions need to be warned about regardless. */ |
| 1243 | if (node->flags & NODE_WARN) |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1244 | return true; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1245 | |
Neil Booth | 618cdda | 2001-02-25 09:43:03 +0000 | [diff] [blame] | 1246 | /* Redefinition of a macro is allowed if and only if the old and new |
Kazu Hirata | ec5c56d | 2001-08-01 17:57:27 +0000 | [diff] [blame] | 1247 | definitions are the same. (6.10.3 paragraph 2). */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1248 | macro1 = node->value.macro; |
| 1249 | |
Neil Booth | 6618c5d | 2002-06-10 06:03:13 +0000 | [diff] [blame] | 1250 | /* Don't check count here as it can be different in valid |
| 1251 | traditional redefinitions with just whitespace differences. */ |
| 1252 | if (macro1->paramc != macro2->paramc |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1253 | || macro1->fun_like != macro2->fun_like |
Neil Booth | 28e0f04 | 2000-12-09 12:06:37 +0000 | [diff] [blame] | 1254 | || macro1->variadic != macro2->variadic) |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1255 | return true; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1256 | |
| 1257 | /* Check parameter spellings. */ |
| 1258 | for (i = 0; i < macro1->paramc; i++) |
| 1259 | if (macro1->params[i] != macro2->params[i]) |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1260 | return true; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1261 | |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1262 | /* Check the replacement text or tokens. */ |
| 1263 | if (CPP_OPTION (pfile, traditional)) |
Neil Booth | 6618c5d | 2002-06-10 06:03:13 +0000 | [diff] [blame] | 1264 | return _cpp_expansions_different_trad (macro1, macro2); |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1265 | |
DJ Delorie | a7f36da | 2003-06-01 14:55:15 -0400 | [diff] [blame] | 1266 | if (macro1->count != macro2->count) |
| 1267 | return true; |
| 1268 | |
| 1269 | for (i = 0; i < macro1->count; i++) |
| 1270 | if (!_cpp_equiv_tokens (¯o1->exp.tokens[i], ¯o2->exp.tokens[i])) |
| 1271 | return true; |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1272 | |
| 1273 | return false; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1274 | } |
| 1275 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1276 | /* Free the definition of hashnode H. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1277 | void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1278 | _cpp_free_definition (cpp_hashnode *h) |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1279 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1280 | /* Macros and assertions no longer have anything to free. */ |
| 1281 | h->type = NT_VOID; |
| 1282 | /* Clear builtin flag in case of redefinition. */ |
Neil Booth | 644edda | 2001-10-02 12:57:24 +0000 | [diff] [blame] | 1283 | h->flags &= ~(NODE_BUILTIN | NODE_DISABLED); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1284 | } |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1285 | |
Neil Booth | 14baae0 | 2001-09-17 18:26:12 +0000 | [diff] [blame] | 1286 | /* Save parameter NODE to the parameter list of macro MACRO. Returns |
Kazu Hirata | da7d830 | 2002-09-22 02:03:17 +0000 | [diff] [blame] | 1287 | zero on success, nonzero if the parameter is a duplicate. */ |
Neil Booth | c70f6ed | 2002-06-07 06:26:32 +0000 | [diff] [blame] | 1288 | bool |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1289 | _cpp_save_parameter (cpp_reader *pfile, cpp_macro *macro, cpp_hashnode *node) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1290 | { |
Zack Weinberg | 4977bab | 2002-12-16 18:23:00 +0000 | [diff] [blame] | 1291 | unsigned int len; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1292 | /* Constraint 6.10.3.6 - duplicate parameter names. */ |
Zack Weinberg | 4977bab | 2002-12-16 18:23:00 +0000 | [diff] [blame] | 1293 | if (node->flags & NODE_MACRO_ARG) |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1294 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1295 | cpp_error (pfile, CPP_DL_ERROR, "duplicate macro parameter \"%s\"", |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 1296 | NODE_NAME (node)); |
Neil Booth | 23ff022 | 2002-07-17 17:27:14 +0000 | [diff] [blame] | 1297 | return true; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1298 | } |
| 1299 | |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 1300 | if (BUFF_ROOM (pfile->a_buff) |
| 1301 | < (macro->paramc + 1) * sizeof (cpp_hashnode *)) |
| 1302 | _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_hashnode *)); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1303 | |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 1304 | ((cpp_hashnode **) BUFF_FRONT (pfile->a_buff))[macro->paramc++] = node; |
Zack Weinberg | 4977bab | 2002-12-16 18:23:00 +0000 | [diff] [blame] | 1305 | node->flags |= NODE_MACRO_ARG; |
| 1306 | len = macro->paramc * sizeof (union _cpp_hashnode_value); |
| 1307 | if (len > pfile->macro_buffer_len) |
| 1308 | { |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1309 | pfile->macro_buffer = XRESIZEVEC (unsigned char, pfile->macro_buffer, |
| 1310 | len); |
Zack Weinberg | 4977bab | 2002-12-16 18:23:00 +0000 | [diff] [blame] | 1311 | pfile->macro_buffer_len = len; |
| 1312 | } |
| 1313 | ((union _cpp_hashnode_value *) pfile->macro_buffer)[macro->paramc - 1] |
| 1314 | = node->value; |
| 1315 | |
| 1316 | node->value.arg_index = macro->paramc; |
Neil Booth | 23ff022 | 2002-07-17 17:27:14 +0000 | [diff] [blame] | 1317 | return false; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1318 | } |
| 1319 | |
Neil Booth | 23ff022 | 2002-07-17 17:27:14 +0000 | [diff] [blame] | 1320 | /* Check the syntax of the parameters in a MACRO definition. Returns |
| 1321 | false if an error occurs. */ |
| 1322 | static bool |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1323 | parse_params (cpp_reader *pfile, cpp_macro *macro) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1324 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1325 | unsigned int prev_ident = 0; |
| 1326 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1327 | for (;;) |
| 1328 | { |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 1329 | const cpp_token *token = _cpp_lex_token (pfile); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1330 | |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 1331 | switch (token->type) |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1332 | { |
| 1333 | default: |
Jason Thorpe | 477cdac | 2002-04-07 03:12:23 +0000 | [diff] [blame] | 1334 | /* Allow/ignore comments in parameter lists if we are |
| 1335 | preserving comments in macro expansions. */ |
| 1336 | if (token->type == CPP_COMMENT |
| 1337 | && ! CPP_OPTION (pfile, discard_comments_in_macro_exp)) |
| 1338 | continue; |
| 1339 | |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1340 | cpp_error (pfile, CPP_DL_ERROR, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 1341 | "\"%s\" may not appear in macro parameter list", |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 1342 | cpp_token_as_text (pfile, token)); |
Neil Booth | 23ff022 | 2002-07-17 17:27:14 +0000 | [diff] [blame] | 1343 | return false; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1344 | |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1345 | case CPP_NAME: |
| 1346 | if (prev_ident) |
| 1347 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1348 | cpp_error (pfile, CPP_DL_ERROR, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 1349 | "macro parameters must be comma-separated"); |
Neil Booth | 23ff022 | 2002-07-17 17:27:14 +0000 | [diff] [blame] | 1350 | return false; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1351 | } |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1352 | prev_ident = 1; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1353 | |
Neil Booth | c70f6ed | 2002-06-07 06:26:32 +0000 | [diff] [blame] | 1354 | if (_cpp_save_parameter (pfile, macro, token->val.node)) |
Neil Booth | 23ff022 | 2002-07-17 17:27:14 +0000 | [diff] [blame] | 1355 | return false; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1356 | continue; |
| 1357 | |
| 1358 | case CPP_CLOSE_PAREN: |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1359 | if (prev_ident || macro->paramc == 0) |
Neil Booth | 23ff022 | 2002-07-17 17:27:14 +0000 | [diff] [blame] | 1360 | return true; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1361 | |
| 1362 | /* Fall through to pick up the error. */ |
| 1363 | case CPP_COMMA: |
| 1364 | if (!prev_ident) |
| 1365 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1366 | cpp_error (pfile, CPP_DL_ERROR, "parameter name missing"); |
Neil Booth | 23ff022 | 2002-07-17 17:27:14 +0000 | [diff] [blame] | 1367 | return false; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1368 | } |
| 1369 | prev_ident = 0; |
| 1370 | continue; |
| 1371 | |
| 1372 | case CPP_ELLIPSIS: |
Neil Booth | 28e0f04 | 2000-12-09 12:06:37 +0000 | [diff] [blame] | 1373 | macro->variadic = 1; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1374 | if (!prev_ident) |
| 1375 | { |
Neil Booth | c70f6ed | 2002-06-07 06:26:32 +0000 | [diff] [blame] | 1376 | _cpp_save_parameter (pfile, macro, |
| 1377 | pfile->spec_nodes.n__VA_ARGS__); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1378 | pfile->state.va_args_ok = 1; |
Richard Henderson | e5b7921 | 2004-02-19 14:18:50 -0800 | [diff] [blame] | 1379 | if (! CPP_OPTION (pfile, c99) |
| 1380 | && CPP_OPTION (pfile, pedantic) |
| 1381 | && CPP_OPTION (pfile, warn_variadic_macros)) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1382 | cpp_error (pfile, CPP_DL_PEDWARN, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 1383 | "anonymous variadic macros were introduced in C99"); |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1384 | } |
Richard Henderson | e5b7921 | 2004-02-19 14:18:50 -0800 | [diff] [blame] | 1385 | else if (CPP_OPTION (pfile, pedantic) |
| 1386 | && CPP_OPTION (pfile, warn_variadic_macros)) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1387 | cpp_error (pfile, CPP_DL_PEDWARN, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 1388 | "ISO C does not permit named variadic macros"); |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1389 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1390 | /* We're at the end, and just expect a closing parenthesis. */ |
Neil Booth | 345894b | 2001-09-16 13:44:29 +0000 | [diff] [blame] | 1391 | token = _cpp_lex_token (pfile); |
| 1392 | if (token->type == CPP_CLOSE_PAREN) |
Neil Booth | 23ff022 | 2002-07-17 17:27:14 +0000 | [diff] [blame] | 1393 | return true; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1394 | /* Fall through. */ |
| 1395 | |
| 1396 | case CPP_EOF: |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1397 | cpp_error (pfile, CPP_DL_ERROR, "missing ')' in macro parameter list"); |
Neil Booth | 23ff022 | 2002-07-17 17:27:14 +0000 | [diff] [blame] | 1398 | return false; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1399 | } |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1400 | } |
| 1401 | } |
| 1402 | |
Neil Booth | 14baae0 | 2001-09-17 18:26:12 +0000 | [diff] [blame] | 1403 | /* Allocate room for a token from a macro's replacement list. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1404 | static cpp_token * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1405 | alloc_expansion_token (cpp_reader *pfile, cpp_macro *macro) |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1406 | { |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 1407 | if (BUFF_ROOM (pfile->a_buff) < (macro->count + 1) * sizeof (cpp_token)) |
| 1408 | _cpp_extend_buff (pfile, &pfile->a_buff, sizeof (cpp_token)); |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1409 | |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 1410 | return &((cpp_token *) BUFF_FRONT (pfile->a_buff))[macro->count++]; |
Neil Booth | 14baae0 | 2001-09-17 18:26:12 +0000 | [diff] [blame] | 1411 | } |
| 1412 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 1413 | /* Lex a token from the expansion of MACRO, but mark parameters as we |
| 1414 | find them and warn of traditional stringification. */ |
Neil Booth | 14baae0 | 2001-09-17 18:26:12 +0000 | [diff] [blame] | 1415 | static cpp_token * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1416 | lex_expansion_token (cpp_reader *pfile, cpp_macro *macro) |
Neil Booth | 14baae0 | 2001-09-17 18:26:12 +0000 | [diff] [blame] | 1417 | { |
Tom Tromey | ee38036 | 2007-01-30 15:46:01 +0000 | [diff] [blame] | 1418 | cpp_token *token, *saved_cur_token; |
Neil Booth | 14baae0 | 2001-09-17 18:26:12 +0000 | [diff] [blame] | 1419 | |
Tom Tromey | ee38036 | 2007-01-30 15:46:01 +0000 | [diff] [blame] | 1420 | saved_cur_token = pfile->cur_token; |
Neil Booth | 14baae0 | 2001-09-17 18:26:12 +0000 | [diff] [blame] | 1421 | pfile->cur_token = alloc_expansion_token (pfile, macro); |
| 1422 | token = _cpp_lex_direct (pfile); |
Tom Tromey | ee38036 | 2007-01-30 15:46:01 +0000 | [diff] [blame] | 1423 | pfile->cur_token = saved_cur_token; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1424 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 1425 | /* Is this a parameter? */ |
Zack Weinberg | 4977bab | 2002-12-16 18:23:00 +0000 | [diff] [blame] | 1426 | if (token->type == CPP_NAME |
| 1427 | && (token->val.node->flags & NODE_MACRO_ARG) != 0) |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1428 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1429 | token->type = CPP_MACRO_ARG; |
Zack Weinberg | 4977bab | 2002-12-16 18:23:00 +0000 | [diff] [blame] | 1430 | token->val.arg_no = token->val.node->value.arg_index; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1431 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1432 | else if (CPP_WTRADITIONAL (pfile) && macro->paramc > 0 |
| 1433 | && (token->type == CPP_STRING || token->type == CPP_CHAR)) |
| 1434 | check_trad_stringification (pfile, macro, &token->val.str); |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1435 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1436 | return token; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1437 | } |
| 1438 | |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1439 | static bool |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1440 | create_iso_definition (cpp_reader *pfile, cpp_macro *macro) |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1441 | { |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1442 | cpp_token *token; |
Neil Booth | 14baae0 | 2001-09-17 18:26:12 +0000 | [diff] [blame] | 1443 | const cpp_token *ctoken; |
Simon Martin | 126e073 | 2007-05-23 20:58:34 +0000 | [diff] [blame] | 1444 | bool following_paste_op = false; |
| 1445 | const char *paste_op_error_msg = |
| 1446 | N_("'##' cannot appear at either end of a macro expansion"); |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1447 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1448 | /* Get the first token of the expansion (or the '(' of a |
| 1449 | function-like macro). */ |
Neil Booth | 14baae0 | 2001-09-17 18:26:12 +0000 | [diff] [blame] | 1450 | ctoken = _cpp_lex_token (pfile); |
| 1451 | |
| 1452 | if (ctoken->type == CPP_OPEN_PAREN && !(ctoken->flags & PREV_WHITE)) |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1453 | { |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1454 | bool ok = parse_params (pfile, macro); |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 1455 | macro->params = (cpp_hashnode **) BUFF_FRONT (pfile->a_buff); |
| 1456 | if (!ok) |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1457 | return false; |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 1458 | |
Geoffrey Keating | d804416 | 2004-06-09 20:10:13 +0000 | [diff] [blame] | 1459 | /* Success. Commit or allocate the parameter array. */ |
| 1460 | if (pfile->hash_table->alloc_subobject) |
| 1461 | { |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1462 | cpp_hashnode **params = |
| 1463 | (cpp_hashnode **) pfile->hash_table->alloc_subobject |
| 1464 | (sizeof (cpp_hashnode *) * macro->paramc); |
Paolo Bonzini | be0f1e5 | 2005-02-14 08:52:24 +0000 | [diff] [blame] | 1465 | memcpy (params, macro->params, |
| 1466 | sizeof (cpp_hashnode *) * macro->paramc); |
| 1467 | macro->params = params; |
Geoffrey Keating | d804416 | 2004-06-09 20:10:13 +0000 | [diff] [blame] | 1468 | } |
| 1469 | else |
| 1470 | BUFF_FRONT (pfile->a_buff) = (uchar *) ¯o->params[macro->paramc]; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1471 | macro->fun_like = 1; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1472 | } |
Neil Booth | 14baae0 | 2001-09-17 18:26:12 +0000 | [diff] [blame] | 1473 | else if (ctoken->type != CPP_EOF && !(ctoken->flags & PREV_WHITE)) |
Jakub Jelinek | cae064e | 2005-04-05 22:07:06 +0200 | [diff] [blame] | 1474 | { |
| 1475 | /* While ISO C99 requires whitespace before replacement text |
| 1476 | in a macro definition, ISO C90 with TC1 allows there characters |
| 1477 | from the basic source character set. */ |
| 1478 | if (CPP_OPTION (pfile, c99)) |
| 1479 | cpp_error (pfile, CPP_DL_PEDWARN, |
| 1480 | "ISO C99 requires whitespace after the macro name"); |
| 1481 | else |
| 1482 | { |
| 1483 | int warntype = CPP_DL_WARNING; |
| 1484 | switch (ctoken->type) |
| 1485 | { |
| 1486 | case CPP_ATSIGN: |
| 1487 | case CPP_AT_NAME: |
| 1488 | case CPP_OBJC_STRING: |
| 1489 | /* '@' is not in basic character set. */ |
| 1490 | warntype = CPP_DL_PEDWARN; |
| 1491 | break; |
| 1492 | case CPP_OTHER: |
| 1493 | /* Basic character set sans letters, digits and _. */ |
| 1494 | if (strchr ("!\"#%&'()*+,-./:;<=>?[\\]^{|}~", |
| 1495 | ctoken->val.str.text[0]) == NULL) |
| 1496 | warntype = CPP_DL_PEDWARN; |
| 1497 | break; |
| 1498 | default: |
| 1499 | /* All other tokens start with a character from basic |
| 1500 | character set. */ |
| 1501 | break; |
| 1502 | } |
| 1503 | cpp_error (pfile, warntype, |
| 1504 | "missing whitespace after the macro name"); |
| 1505 | } |
| 1506 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1507 | |
Neil Booth | 14baae0 | 2001-09-17 18:26:12 +0000 | [diff] [blame] | 1508 | if (macro->fun_like) |
| 1509 | token = lex_expansion_token (pfile, macro); |
| 1510 | else |
| 1511 | { |
| 1512 | token = alloc_expansion_token (pfile, macro); |
| 1513 | *token = *ctoken; |
| 1514 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1515 | |
| 1516 | for (;;) |
| 1517 | { |
| 1518 | /* Check the stringifying # constraint 6.10.3.2.1 of |
| 1519 | function-like macros when lexing the subsequent token. */ |
| 1520 | if (macro->count > 1 && token[-1].type == CPP_HASH && macro->fun_like) |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1521 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1522 | if (token->type == CPP_MACRO_ARG) |
| 1523 | { |
| 1524 | token->flags &= ~PREV_WHITE; |
| 1525 | token->flags |= STRINGIFY_ARG; |
| 1526 | token->flags |= token[-1].flags & PREV_WHITE; |
| 1527 | token[-1] = token[0]; |
| 1528 | macro->count--; |
| 1529 | } |
| 1530 | /* Let assembler get away with murder. */ |
Neil Booth | bdb05a7 | 2000-11-26 17:31:13 +0000 | [diff] [blame] | 1531 | else if (CPP_OPTION (pfile, lang) != CLK_ASM) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1532 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1533 | cpp_error (pfile, CPP_DL_ERROR, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 1534 | "'#' is not followed by a macro parameter"); |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1535 | return false; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1536 | } |
| 1537 | } |
| 1538 | |
| 1539 | if (token->type == CPP_EOF) |
Simon Martin | 126e073 | 2007-05-23 20:58:34 +0000 | [diff] [blame] | 1540 | { |
| 1541 | /* Paste operator constraint 6.10.3.3.1: |
| 1542 | Token-paste ##, can appear in both object-like and |
| 1543 | function-like macros, but not at the end. */ |
| 1544 | if (following_paste_op) |
| 1545 | { |
| 1546 | cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); |
| 1547 | return false; |
| 1548 | } |
| 1549 | break; |
| 1550 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1551 | |
| 1552 | /* Paste operator constraint 6.10.3.3.1. */ |
| 1553 | if (token->type == CPP_PASTE) |
| 1554 | { |
| 1555 | /* Token-paste ##, can appear in both object-like and |
Simon Martin | 126e073 | 2007-05-23 20:58:34 +0000 | [diff] [blame] | 1556 | function-like macros, but not at the beginning. */ |
| 1557 | if (macro->count == 1) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1558 | { |
Simon Martin | 126e073 | 2007-05-23 20:58:34 +0000 | [diff] [blame] | 1559 | cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg); |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1560 | return false; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1561 | } |
| 1562 | |
Simon Martin | 126e073 | 2007-05-23 20:58:34 +0000 | [diff] [blame] | 1563 | --macro->count; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1564 | token[-1].flags |= PASTE_LEFT; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1565 | } |
| 1566 | |
Simon Martin | 126e073 | 2007-05-23 20:58:34 +0000 | [diff] [blame] | 1567 | following_paste_op = (token->type == CPP_PASTE); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1568 | token = lex_expansion_token (pfile, macro); |
| 1569 | } |
| 1570 | |
Neil Booth | 601328b | 2002-05-16 05:53:24 +0000 | [diff] [blame] | 1571 | macro->exp.tokens = (cpp_token *) BUFF_FRONT (pfile->a_buff); |
Geoffrey Keating | d804416 | 2004-06-09 20:10:13 +0000 | [diff] [blame] | 1572 | macro->traditional = 0; |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 1573 | |
Neil Booth | 4c2b647 | 2000-11-11 13:19:01 +0000 | [diff] [blame] | 1574 | /* Don't count the CPP_EOF. */ |
| 1575 | macro->count--; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1576 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 1577 | /* Clear whitespace on first token for warn_of_redefinition(). */ |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 1578 | if (macro->count) |
Neil Booth | 601328b | 2002-05-16 05:53:24 +0000 | [diff] [blame] | 1579 | macro->exp.tokens[0].flags &= ~PREV_WHITE; |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 1580 | |
Geoffrey Keating | d804416 | 2004-06-09 20:10:13 +0000 | [diff] [blame] | 1581 | /* Commit or allocate the memory. */ |
| 1582 | if (pfile->hash_table->alloc_subobject) |
| 1583 | { |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1584 | cpp_token *tokns = |
| 1585 | (cpp_token *) pfile->hash_table->alloc_subobject (sizeof (cpp_token) |
| 1586 | * macro->count); |
Geoffrey Keating | d804416 | 2004-06-09 20:10:13 +0000 | [diff] [blame] | 1587 | memcpy (tokns, macro->exp.tokens, sizeof (cpp_token) * macro->count); |
| 1588 | macro->exp.tokens = tokns; |
| 1589 | } |
| 1590 | else |
| 1591 | BUFF_FRONT (pfile->a_buff) = (uchar *) ¯o->exp.tokens[macro->count]; |
Neil Booth | 8c3b269 | 2001-09-30 10:03:11 +0000 | [diff] [blame] | 1592 | |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1593 | return true; |
| 1594 | } |
Neil Booth | 44ed91a | 2000-10-29 11:37:18 +0000 | [diff] [blame] | 1595 | |
Kazu Hirata | da7d830 | 2002-09-22 02:03:17 +0000 | [diff] [blame] | 1596 | /* Parse a macro and save its expansion. Returns nonzero on success. */ |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1597 | bool |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1598 | _cpp_create_definition (cpp_reader *pfile, cpp_hashnode *node) |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1599 | { |
| 1600 | cpp_macro *macro; |
| 1601 | unsigned int i; |
| 1602 | bool ok; |
| 1603 | |
Geoffrey Keating | d804416 | 2004-06-09 20:10:13 +0000 | [diff] [blame] | 1604 | if (pfile->hash_table->alloc_subobject) |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1605 | macro = (cpp_macro *) pfile->hash_table->alloc_subobject |
| 1606 | (sizeof (cpp_macro)); |
Geoffrey Keating | d804416 | 2004-06-09 20:10:13 +0000 | [diff] [blame] | 1607 | else |
| 1608 | macro = (cpp_macro *) _cpp_aligned_alloc (pfile, sizeof (cpp_macro)); |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1609 | macro->line = pfile->directive_line; |
| 1610 | macro->params = 0; |
| 1611 | macro->paramc = 0; |
| 1612 | macro->variadic = 0; |
Neil Booth | 23345bb | 2003-03-14 21:47:50 +0000 | [diff] [blame] | 1613 | macro->used = !CPP_OPTION (pfile, warn_unused_macros); |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1614 | macro->count = 0; |
| 1615 | macro->fun_like = 0; |
Neil Booth | 7065e13 | 2001-02-14 07:38:20 +0000 | [diff] [blame] | 1616 | /* To suppress some diagnostics. */ |
Per Bothner | 12f9df4 | 2004-02-11 07:29:30 -0800 | [diff] [blame] | 1617 | macro->syshdr = pfile->buffer && pfile->buffer->sysp != 0; |
Neil Booth | 7065e13 | 2001-02-14 07:38:20 +0000 | [diff] [blame] | 1618 | |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1619 | if (CPP_OPTION (pfile, traditional)) |
| 1620 | ok = _cpp_create_trad_definition (pfile, macro); |
| 1621 | else |
| 1622 | { |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1623 | ok = create_iso_definition (pfile, macro); |
| 1624 | |
Tom Tromey | ee38036 | 2007-01-30 15:46:01 +0000 | [diff] [blame] | 1625 | /* We set the type for SEEN_EOL() in directives.c. |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1626 | |
| 1627 | Longer term we should lex the whole line before coming here, |
| 1628 | and just copy the expansion. */ |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1629 | |
| 1630 | /* Stop the lexer accepting __VA_ARGS__. */ |
| 1631 | pfile->state.va_args_ok = 0; |
| 1632 | } |
| 1633 | |
| 1634 | /* Clear the fast argument lookup indices. */ |
| 1635 | for (i = macro->paramc; i-- > 0; ) |
Zack Weinberg | 4977bab | 2002-12-16 18:23:00 +0000 | [diff] [blame] | 1636 | { |
| 1637 | struct cpp_hashnode *node = macro->params[i]; |
| 1638 | node->flags &= ~ NODE_MACRO_ARG; |
| 1639 | node->value = ((union _cpp_hashnode_value *) pfile->macro_buffer)[i]; |
| 1640 | } |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1641 | |
| 1642 | if (!ok) |
| 1643 | return ok; |
| 1644 | |
Neil Booth | c2734e0 | 2002-07-26 16:29:31 +0000 | [diff] [blame] | 1645 | if (node->type == NT_MACRO) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1646 | { |
Neil Booth | a69cbaa | 2002-07-23 22:57:49 +0000 | [diff] [blame] | 1647 | if (CPP_OPTION (pfile, warn_unused_macros)) |
| 1648 | _cpp_warn_if_unused_macro (pfile, node, NULL); |
| 1649 | |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1650 | if (warn_of_redefinition (pfile, node, macro)) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1651 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1652 | cpp_error_with_line (pfile, CPP_DL_PEDWARN, pfile->directive_line, 0, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 1653 | "\"%s\" redefined", NODE_NAME (node)); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1654 | |
Neil Booth | 618cdda | 2001-02-25 09:43:03 +0000 | [diff] [blame] | 1655 | if (node->type == NT_MACRO && !(node->flags & NODE_BUILTIN)) |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1656 | cpp_error_with_line (pfile, CPP_DL_PEDWARN, |
Neil Booth | cbc69f8 | 2002-06-05 20:27:12 +0000 | [diff] [blame] | 1657 | node->value.macro->line, 0, |
| 1658 | "this is the location of the previous definition"); |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1659 | } |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1660 | } |
| 1661 | |
Neil Booth | c2734e0 | 2002-07-26 16:29:31 +0000 | [diff] [blame] | 1662 | if (node->type != NT_VOID) |
| 1663 | _cpp_free_definition (node); |
| 1664 | |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1665 | /* Enter definition in hash table. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1666 | node->type = NT_MACRO; |
| 1667 | node->value.macro = macro; |
Neil Booth | a28c5035 | 2001-05-16 22:02:09 +0000 | [diff] [blame] | 1668 | if (! ustrncmp (NODE_NAME (node), DSC ("__STDC_"))) |
Neil Booth | 618cdda | 2001-02-25 09:43:03 +0000 | [diff] [blame] | 1669 | node->flags |= NODE_WARN; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1670 | |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1671 | return ok; |
Zack Weinberg | 711b882 | 2000-07-18 00:59:49 +0000 | [diff] [blame] | 1672 | } |
| 1673 | |
Neil Booth | d15a58c | 2002-01-03 18:32:55 +0000 | [diff] [blame] | 1674 | /* Warn if a token in STRING matches one of a function-like MACRO's |
| 1675 | parameters. */ |
Kaveh R. Ghazi | e1aa514 | 2000-09-10 03:41:50 +0000 | [diff] [blame] | 1676 | static void |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1677 | check_trad_stringification (cpp_reader *pfile, const cpp_macro *macro, |
| 1678 | const cpp_string *string) |
Kaveh R. Ghazi | e1aa514 | 2000-09-10 03:41:50 +0000 | [diff] [blame] | 1679 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1680 | unsigned int i, len; |
Neil Booth | 6338b35 | 2003-04-23 22:44:06 +0000 | [diff] [blame] | 1681 | const uchar *p, *q, *limit; |
Kazu Hirata | df38348 | 2002-05-22 22:02:16 +0000 | [diff] [blame] | 1682 | |
Kaveh R. Ghazi | e1aa514 | 2000-09-10 03:41:50 +0000 | [diff] [blame] | 1683 | /* Loop over the string. */ |
Neil Booth | 6338b35 | 2003-04-23 22:44:06 +0000 | [diff] [blame] | 1684 | limit = string->text + string->len - 1; |
| 1685 | for (p = string->text + 1; p < limit; p = q) |
Kaveh R. Ghazi | e1aa514 | 2000-09-10 03:41:50 +0000 | [diff] [blame] | 1686 | { |
Kaveh R. Ghazi | e1aa514 | 2000-09-10 03:41:50 +0000 | [diff] [blame] | 1687 | /* Find the start of an identifier. */ |
Greg McGary | 61c16b1 | 2000-09-15 21:25:02 +0000 | [diff] [blame] | 1688 | while (p < limit && !is_idstart (*p)) |
| 1689 | p++; |
Kaveh R. Ghazi | e1aa514 | 2000-09-10 03:41:50 +0000 | [diff] [blame] | 1690 | |
| 1691 | /* Find the end of the identifier. */ |
| 1692 | q = p; |
Greg McGary | 61c16b1 | 2000-09-15 21:25:02 +0000 | [diff] [blame] | 1693 | while (q < limit && is_idchar (*q)) |
| 1694 | q++; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1695 | |
| 1696 | len = q - p; |
| 1697 | |
Kaveh R. Ghazi | e1aa514 | 2000-09-10 03:41:50 +0000 | [diff] [blame] | 1698 | /* Loop over the function macro arguments to see if the |
| 1699 | identifier inside the string matches one of them. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1700 | for (i = 0; i < macro->paramc; i++) |
| 1701 | { |
| 1702 | const cpp_hashnode *node = macro->params[i]; |
Kaveh R. Ghazi | e1aa514 | 2000-09-10 03:41:50 +0000 | [diff] [blame] | 1703 | |
Neil Booth | 2a967f3 | 2001-05-20 06:26:45 +0000 | [diff] [blame] | 1704 | if (NODE_LEN (node) == len |
| 1705 | && !memcmp (p, NODE_NAME (node), len)) |
Kaveh R. Ghazi | e1aa514 | 2000-09-10 03:41:50 +0000 | [diff] [blame] | 1706 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1707 | cpp_error (pfile, CPP_DL_WARNING, |
Zack Weinberg | f458d1d | 2002-02-27 18:48:07 +0000 | [diff] [blame] | 1708 | "macro argument \"%s\" would be stringified in traditional C", |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 1709 | NODE_NAME (node)); |
Kaveh R. Ghazi | e1aa514 | 2000-09-10 03:41:50 +0000 | [diff] [blame] | 1710 | break; |
| 1711 | } |
| 1712 | } |
| 1713 | } |
| 1714 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1715 | |
Neil Booth | 7096171 | 2001-06-23 11:34:41 +0000 | [diff] [blame] | 1716 | /* Returns the name, arguments and expansion of a macro, in a format |
| 1717 | suitable to be read back in again, and therefore also for DWARF 2 |
| 1718 | debugging info. e.g. "PASTE(X, Y) X ## Y", or "MACNAME EXPANSION". |
| 1719 | Caller is expected to generate the "#define" bit if needed. The |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1720 | returned text is temporary, and automatically freed later. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1721 | const unsigned char * |
Zack Weinberg | 6cf87ca | 2003-06-17 06:17:44 +0000 | [diff] [blame] | 1722 | cpp_macro_definition (cpp_reader *pfile, const cpp_hashnode *node) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1723 | { |
| 1724 | unsigned int i, len; |
| 1725 | const cpp_macro *macro = node->value.macro; |
| 1726 | unsigned char *buffer; |
| 1727 | |
| 1728 | if (node->type != NT_MACRO || (node->flags & NODE_BUILTIN)) |
| 1729 | { |
John David Anglin | 0527bc4 | 2003-11-01 22:56:54 +0000 | [diff] [blame] | 1730 | cpp_error (pfile, CPP_DL_ICE, |
Neil Booth | ebef4e8 | 2002-04-14 18:42:47 +0000 | [diff] [blame] | 1731 | "invalid hash type %d in cpp_macro_definition", node->type); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1732 | return 0; |
| 1733 | } |
| 1734 | |
| 1735 | /* Calculate length. */ |
Neil Booth | 8dc901d | 2002-05-29 19:30:07 +0000 | [diff] [blame] | 1736 | len = NODE_LEN (node) + 2; /* ' ' and NUL. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1737 | if (macro->fun_like) |
| 1738 | { |
Jim Blandy | 64d0826 | 2002-04-05 00:12:40 +0000 | [diff] [blame] | 1739 | len += 4; /* "()" plus possible final ".." of named |
| 1740 | varargs (we have + 1 below). */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1741 | for (i = 0; i < macro->paramc; i++) |
Jim Blandy | 64d0826 | 2002-04-05 00:12:40 +0000 | [diff] [blame] | 1742 | len += NODE_LEN (macro->params[i]) + 1; /* "," */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1743 | } |
| 1744 | |
Eric Christopher | 6da55c0 | 2005-02-15 23:18:04 +0000 | [diff] [blame] | 1745 | /* This should match below where we fill in the buffer. */ |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 1746 | if (CPP_OPTION (pfile, traditional)) |
| 1747 | len += _cpp_replacement_text_len (macro); |
| 1748 | else |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1749 | { |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 1750 | for (i = 0; i < macro->count; i++) |
| 1751 | { |
| 1752 | cpp_token *token = ¯o->exp.tokens[i]; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1753 | |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 1754 | if (token->type == CPP_MACRO_ARG) |
| 1755 | len += NODE_LEN (macro->params[token->val.arg_no - 1]); |
| 1756 | else |
Eric Christopher | 6da55c0 | 2005-02-15 23:18:04 +0000 | [diff] [blame] | 1757 | len += cpp_token_len (token); |
| 1758 | |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 1759 | if (token->flags & STRINGIFY_ARG) |
| 1760 | len++; /* "#" */ |
| 1761 | if (token->flags & PASTE_LEFT) |
| 1762 | len += 3; /* " ##" */ |
Eric Christopher | 6da55c0 | 2005-02-15 23:18:04 +0000 | [diff] [blame] | 1763 | if (token->flags & PREV_WHITE) |
| 1764 | len++; /* " " */ |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 1765 | } |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1766 | } |
| 1767 | |
| 1768 | if (len > pfile->macro_buffer_len) |
Alexandre Oliva | 4b49c36 | 2001-01-09 09:30:43 +0000 | [diff] [blame] | 1769 | { |
Gabriel Dos Reis | c3f829c | 2005-05-28 15:52:48 +0000 | [diff] [blame] | 1770 | pfile->macro_buffer = XRESIZEVEC (unsigned char, |
| 1771 | pfile->macro_buffer, len); |
Alexandre Oliva | 4b49c36 | 2001-01-09 09:30:43 +0000 | [diff] [blame] | 1772 | pfile->macro_buffer_len = len; |
| 1773 | } |
Neil Booth | 7096171 | 2001-06-23 11:34:41 +0000 | [diff] [blame] | 1774 | |
| 1775 | /* Fill in the buffer. Start with the macro name. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1776 | buffer = pfile->macro_buffer; |
Neil Booth | 7096171 | 2001-06-23 11:34:41 +0000 | [diff] [blame] | 1777 | memcpy (buffer, NODE_NAME (node), NODE_LEN (node)); |
| 1778 | buffer += NODE_LEN (node); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1779 | |
| 1780 | /* Parameter names. */ |
| 1781 | if (macro->fun_like) |
| 1782 | { |
| 1783 | *buffer++ = '('; |
| 1784 | for (i = 0; i < macro->paramc; i++) |
| 1785 | { |
| 1786 | cpp_hashnode *param = macro->params[i]; |
| 1787 | |
| 1788 | if (param != pfile->spec_nodes.n__VA_ARGS__) |
| 1789 | { |
Neil Booth | a28c5035 | 2001-05-16 22:02:09 +0000 | [diff] [blame] | 1790 | memcpy (buffer, NODE_NAME (param), NODE_LEN (param)); |
| 1791 | buffer += NODE_LEN (param); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1792 | } |
| 1793 | |
| 1794 | if (i + 1 < macro->paramc) |
Kazu Hirata | df38348 | 2002-05-22 22:02:16 +0000 | [diff] [blame] | 1795 | /* Don't emit a space after the comma here; we're trying |
| 1796 | to emit a Dwarf-friendly definition, and the Dwarf spec |
| 1797 | forbids spaces in the argument list. */ |
Jim Blandy | 64d0826 | 2002-04-05 00:12:40 +0000 | [diff] [blame] | 1798 | *buffer++ = ','; |
Neil Booth | 28e0f04 | 2000-12-09 12:06:37 +0000 | [diff] [blame] | 1799 | else if (macro->variadic) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1800 | *buffer++ = '.', *buffer++ = '.', *buffer++ = '.'; |
| 1801 | } |
| 1802 | *buffer++ = ')'; |
| 1803 | } |
| 1804 | |
Jim Blandy | e37b38d | 2002-03-19 21:43:39 +0000 | [diff] [blame] | 1805 | /* The Dwarf spec requires a space after the macro name, even if the |
| 1806 | definition is the empty string. */ |
| 1807 | *buffer++ = ' '; |
| 1808 | |
Neil Booth | 278c466 | 2002-06-19 05:40:08 +0000 | [diff] [blame] | 1809 | if (CPP_OPTION (pfile, traditional)) |
| 1810 | buffer = _cpp_copy_replacement_text (macro, buffer); |
| 1811 | else if (macro->count) |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1812 | /* Expansion tokens. */ |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1813 | { |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1814 | for (i = 0; i < macro->count; i++) |
| 1815 | { |
Neil Booth | 601328b | 2002-05-16 05:53:24 +0000 | [diff] [blame] | 1816 | cpp_token *token = ¯o->exp.tokens[i]; |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1817 | |
| 1818 | if (token->flags & PREV_WHITE) |
| 1819 | *buffer++ = ' '; |
| 1820 | if (token->flags & STRINGIFY_ARG) |
| 1821 | *buffer++ = '#'; |
| 1822 | |
| 1823 | if (token->type == CPP_MACRO_ARG) |
| 1824 | { |
Neil Booth | a28c5035 | 2001-05-16 22:02:09 +0000 | [diff] [blame] | 1825 | memcpy (buffer, |
Eric Christopher | 6da55c0 | 2005-02-15 23:18:04 +0000 | [diff] [blame] | 1826 | NODE_NAME (macro->params[token->val.arg_no - 1]), |
| 1827 | NODE_LEN (macro->params[token->val.arg_no - 1])); |
| 1828 | buffer += NODE_LEN (macro->params[token->val.arg_no - 1]); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1829 | } |
| 1830 | else |
Geoffrey Keating | 47e2049 | 2005-03-12 10:44:06 +0000 | [diff] [blame] | 1831 | buffer = cpp_spell_token (pfile, token, buffer, false); |
Neil Booth | 93c80368 | 2000-10-28 17:59:06 +0000 | [diff] [blame] | 1832 | |
| 1833 | if (token->flags & PASTE_LEFT) |
| 1834 | { |
| 1835 | *buffer++ = ' '; |
| 1836 | *buffer++ = '#'; |
| 1837 | *buffer++ = '#'; |
| 1838 | /* Next has PREV_WHITE; see _cpp_create_definition. */ |
| 1839 | } |
| 1840 | } |
| 1841 | } |
| 1842 | |
| 1843 | *buffer = '\0'; |
| 1844 | return pfile->macro_buffer; |
| 1845 | } |